-- MySQL dump 10.13  Distrib 5.7.43, for Linux (x86_64)
--
-- Host: localhost    Database: getmadto_WP6JA
-- ------------------------------------------------------
-- Server version	5.7.43

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

--
-- Table structure for table `cuB_actionscheduler_actions`
--

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

--
-- Dumping data for table `cuB_actionscheduler_actions`
--

LOCK TABLES `cuB_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `cuB_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `cuB_actionscheduler_actions` VALUES (55901,'aioseo_send_usage_data','pending','2022-08-22 12:59:32','2022-08-22 08:59:32','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1661173172;s:18:\"\0*\0first_timestamp\";i:1640030459;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1661173172;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',1,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(56427,'aioseo_image_sitemap_scan','complete','2022-08-22 11:12:50','2022-08-22 07:12:50','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1661166770;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1661166770;}',1,1,'2022-08-22 11:21:59','2022-08-22 07:21:59',0,NULL),(56428,'aioseo_cache_prune','pending','2022-08-23 11:21:59','2022-08-23 07:21:59','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1661253719;s:18:\"\0*\0first_timestamp\";i:1639376028;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1661253719;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',1,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(56429,'aioseo_image_sitemap_scan','pending','2022-08-22 11:36:59','2022-08-22 07:36:59','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1661168219;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1661168219;}',1,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL);
/*!40000 ALTER TABLE `cuB_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_actionscheduler_claims`
--

DROP TABLE IF EXISTS `cuB_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_actionscheduler_claims`
--

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

--
-- Table structure for table `cuB_actionscheduler_groups`
--

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

--
-- Dumping data for table `cuB_actionscheduler_groups`
--

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

--
-- Table structure for table `cuB_actionscheduler_logs`
--

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

--
-- Dumping data for table `cuB_actionscheduler_logs`
--

LOCK TABLES `cuB_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `cuB_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `cuB_actionscheduler_logs` VALUES (21984,55901,'action created','2022-08-15 12:59:32','2022-08-15 08:59:32'),(23405,56427,'action created','2022-08-22 10:57:50','2022-08-22 06:57:50'),(23409,56428,'action created','2022-08-22 11:21:59','2022-08-22 07:21:59'),(23410,56427,'action started via Async Request','2022-08-22 11:21:59','2022-08-22 07:21:59'),(23411,56429,'action created','2022-08-22 11:21:59','2022-08-22 07:21:59'),(23412,56427,'action complete via Async Request','2022-08-22 11:21:59','2022-08-22 07:21:59');
/*!40000 ALTER TABLE `cuB_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_aioseo_cache`
--

DROP TABLE IF EXISTS `cuB_aioseo_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_aioseo_cache` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(80) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `expiration` datetime DEFAULT NULL,
  `created` datetime NOT NULL,
  `updated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `ndx_aioseo_cache_key` (`key`),
  KEY `ndx_aioseo_cache_expiration` (`expiration`)
) ENGINE=InnoDB AUTO_INCREMENT=4067 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_aioseo_cache`
--

LOCK TABLES `cuB_aioseo_cache` WRITE;
/*!40000 ALTER TABLE `cuB_aioseo_cache` DISABLE KEYS */;
INSERT INTO `cuB_aioseo_cache` VALUES (2,'addon_check_for_updates','b:1;','2022-08-22 11:57:44','2022-04-04 05:28:06','2022-08-22 10:57:44'),(4,'aioseo_sitemap_sitemap.xml','a:3:{s:6:\"counts\";a:0:{}s:8:\"datetime\";a:149:{s:25:\"https://www.getmad.today/\";a:2:{s:4:\"date\";s:13:\"July 25, 2022\";s:4:\"time\";s:7:\"8:36 am\";}s:67:\"https://www.getmad.today/news-events-articles/lomad-event-calendar/\";a:2:{s:4:\"date\";s:15:\"August 16, 2022\";s:4:\"time\";s:7:\"3:36 pm\";}s:50:\"https://www.getmad.today/attorney/buehler-vicki-l/\";a:2:{s:4:\"date\";s:15:\"August 11, 2022\";s:4:\"time\";s:7:\"4:11 pm\";}s:60:\"https://www.getmad.today/the-team/workers-compensation-team/\";a:2:{s:4:\"date\";s:15:\"August 11, 2022\";s:4:\"time\";s:7:\"4:03 pm\";}s:49:\"https://www.getmad.today/attorney/huang-bingchen/\";a:2:{s:4:\"date\";s:15:\"August 11, 2022\";s:4:\"time\";s:7:\"3:23 pm\";}s:53:\"https://www.getmad.today/attorney/harada-satoko-suki/\";a:2:{s:4:\"date\";s:15:\"August 11, 2022\";s:4:\"time\";s:7:\"3:21 pm\";}s:56:\"https://www.getmad.today/attorney/christman-cassandra-e/\";a:2:{s:4:\"date\";s:15:\"August 11, 2022\";s:4:\"time\";s:7:\"3:15 pm\";}s:50:\"https://www.getmad.today/attorney/kornacki-paul-b/\";a:2:{s:4:\"date\";s:15:\"August 11, 2022\";s:4:\"time\";s:7:\"3:14 pm\";}s:52:\"https://www.getmad.today/attorney/shannon-brendan-t/\";a:2:{s:4:\"date\";s:15:\"August 11, 2022\";s:4:\"time\";s:7:\"3:13 pm\";}s:34:\"https://www.getmad.today/the-team/\";a:2:{s:4:\"date\";s:15:\"August 11, 2022\";s:4:\"time\";s:7:\"2:11 pm\";}s:34:\"https://www.getmad.today/site-map/\";a:2:{s:4:\"date\";s:15:\"August 11, 2022\";s:4:\"time\";s:7:\"2:04 pm\";}s:47:\"https://www.getmad.today/about/vicki-l-buehler/\";a:2:{s:4:\"date\";s:15:\"August 11, 2022\";s:4:\"time\";s:7:\"1:55 pm\";}s:33:\"https://www.getmad.today/lomadtv/\";a:2:{s:4:\"date\";s:14:\"August 8, 2022\";s:4:\"time\";s:7:\"1:29 pm\";}s:63:\"https://www.getmad.today/news-events-articles/lomad-newsletter/\";a:2:{s:4:\"date\";s:14:\"August 4, 2022\";s:4:\"time\";s:7:\"2:05 pm\";}s:42:\"https://www.getmad.today/the-team/careers/\";a:2:{s:4:\"date\";s:13:\"July 25, 2022\";s:4:\"time\";s:7:\"1:37 pm\";}s:71:\"https://www.getmad.today/blog/2022/05/interview-with-leaders-voice-usa/\";a:2:{s:4:\"date\";s:12:\"June 2, 2022\";s:4:\"time\";s:7:\"3:28 pm\";}s:46:\"https://www.getmad.today/news-events-articles/\";a:2:{s:4:\"date\";s:12:\"June 1, 2022\";s:4:\"time\";s:7:\"2:47 pm\";}s:50:\"https://www.getmad.today/client-resources/slu-php/\";a:2:{s:4:\"date\";s:12:\"May 24, 2022\";s:4:\"time\";s:7:\"2:20 pm\";}s:47:\"https://www.getmad.today/attorney/gray-katrina/\";a:2:{s:4:\"date\";s:11:\"May 9, 2022\";s:4:\"time\";s:7:\"9:53 am\";}s:44:\"https://www.getmad.today/attorney/lua-maria/\";a:2:{s:4:\"date\";s:11:\"May 4, 2022\";s:4:\"time\";s:8:\"12:21 pm\";}s:49:\"https://www.getmad.today/attorney/prince-brian-k/\";a:2:{s:4:\"date\";s:11:\"May 4, 2022\";s:4:\"time\";s:8:\"10:52 am\";}s:51:\"https://www.getmad.today/attorney/mackey-shannan-m/\";a:2:{s:4:\"date\";s:11:\"May 4, 2022\";s:4:\"time\";s:8:\"10:51 am\";}s:53:\"https://www.getmad.today/attorney/machelor-kristin-m/\";a:2:{s:4:\"date\";s:11:\"May 4, 2022\";s:4:\"time\";s:8:\"10:51 am\";}s:47:\"https://www.getmad.today/attorney/gould-andrew/\";a:2:{s:4:\"date\";s:11:\"May 4, 2022\";s:4:\"time\";s:8:\"10:51 am\";}s:47:\"https://www.getmad.today/attorney/frances-mary/\";a:2:{s:4:\"date\";s:11:\"May 4, 2022\";s:4:\"time\";s:8:\"10:50 am\";}s:51:\"https://www.getmad.today/attorney/diegelman-neil-a/\";a:2:{s:4:\"date\";s:11:\"May 4, 2022\";s:4:\"time\";s:8:\"10:50 am\";}s:48:\"https://www.getmad.today/attorney/day-melissa-a/\";a:2:{s:4:\"date\";s:11:\"May 4, 2022\";s:4:\"time\";s:8:\"10:50 am\";}s:49:\"https://www.getmad.today/attorney/daly-melanie-a/\";a:2:{s:4:\"date\";s:11:\"May 4, 2022\";s:4:\"time\";s:8:\"10:50 am\";}s:50:\"https://www.getmad.today/attorney/cousins-james-b/\";a:2:{s:4:\"date\";s:11:\"May 4, 2022\";s:4:\"time\";s:8:\"10:50 am\";}s:52:\"https://www.getmad.today/client-resources/max-rates/\";a:2:{s:4:\"date\";s:14:\"April 21, 2022\";s:4:\"time\";s:7:\"9:34 am\";}s:57:\"https://www.getmad.today/legal-assistants-and-paralegals/\";a:2:{s:4:\"date\";s:14:\"April 20, 2022\";s:4:\"time\";s:7:\"2:14 pm\";}s:45:\"https://www.getmad.today/about/kelsey-x-kunz/\";a:2:{s:4:\"date\";s:17:\"February 28, 2022\";s:4:\"time\";s:7:\"2:58 pm\";}s:75:\"https://www.getmad.today/blog/2022/02/oral-argument-video-burns-v-varriale/\";a:2:{s:4:\"date\";s:17:\"February 11, 2022\";s:4:\"time\";s:7:\"3:30 pm\";}s:82:\"https://www.getmad.today/client-resources/case-law-updates-lomad-case-law-updates/\";a:2:{s:4:\"date\";s:16:\"February 9, 2022\";s:4:\"time\";s:7:\"8:57 pm\";}s:48:\"https://www.getmad.today/about/alexandra-m-rizk/\";a:2:{s:4:\"date\";s:16:\"February 7, 2022\";s:4:\"time\";s:7:\"3:42 am\";}s:47:\"https://www.getmad.today/about/kierria-a-jones/\";a:2:{s:4:\"date\";s:16:\"February 4, 2022\";s:4:\"time\";s:7:\"1:07 am\";}s:48:\"https://www.getmad.today/about/maxwell-j-doldan/\";a:2:{s:4:\"date\";s:16:\"February 4, 2022\";s:4:\"time\";s:7:\"1:05 am\";}s:42:\"https://www.getmad.today/client-resources/\";a:2:{s:4:\"date\";s:16:\"January 21, 2022\";s:4:\"time\";s:8:\"10:49 am\";}s:51:\"https://www.getmad.today/about/danielle-f-draschan/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"9:18 pm\";}s:50:\"https://www.getmad.today/about/thomas-m-dickinson/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"8:53 pm\";}s:50:\"https://www.getmad.today/about/rebecca-c-brashear/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"8:52 pm\";}s:50:\"https://www.getmad.today/about/justice-c-williams/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"8:47 pm\";}s:45:\"https://www.getmad.today/about/jody-l-guiher/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"8:44 pm\";}s:49:\"https://www.getmad.today/about/jillian-m-chavers/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"8:43 pm\";}s:49:\"https://www.getmad.today/about/jessica-m-stevens/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"8:41 pm\";}s:49:\"https://www.getmad.today/about/jenny-l-malkowski/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"8:39 pm\";}s:48:\"https://www.getmad.today/about/corrine-n-newman/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"8:38 pm\";}s:46:\"https://www.getmad.today/about/daniel-h-flynn/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"8:37 pm\";}s:44:\"https://www.getmad.today/about/elena-n-camp/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"8:35 pm\";}s:31:\"https://www.getmad.today/about/\";a:2:{s:4:\"date\";s:17:\"December 30, 2021\";s:4:\"time\";s:8:\"10:58 am\";}s:73:\"https://www.getmad.today/amherst-workers-compensation-defense-law-office/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"8:25 am\";}s:87:\"https://www.getmad.today/blog/2020/07/another-win-for-the-law-offices-of-melissa-a-day/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"6:00 am\";}s:62:\"https://www.getmad.today/blog/2020/07/successful-disallowance/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:59 am\";}s:119:\"https://www.getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:59 am\";}s:66:\"https://www.getmad.today/blog/2021/01/success-with-wcl-section-18/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:59 am\";}s:108:\"https://www.getmad.today/blog/2021/01/how-change-in-conditions-for-classified-claimants-changed-drastically/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:59 am\";}s:114:\"https://www.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:59 am\";}s:102:\"https://www.getmad.today/blog/2021/02/no-error-of-law-or-fact-in-an-application-for-full-board-review/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:59 am\";}s:73:\"https://www.getmad.today/blog/2021/02/independent-contractor-or-employee/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:59 am\";}s:115:\"https://www.getmad.today/blog/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:59 am\";}s:135:\"https://www.getmad.today/blog/2021/02/occupational-disease-claims-after-matter-of-pinnacle-industries-ii-llc-2019-ny-wrk-comp-g2020587/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:58 am\";}s:84:\"https://www.getmad.today/blog/2021/03/genduso-and-total-joint-replacement-schedules/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:58 am\";}s:96:\"https://www.getmad.today/blog/2021/03/thoughts-on-thinking-a-strange-title-about-practicing-law/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:58 am\";}s:115:\"https://www.getmad.today/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:58 am\";}s:110:\"https://www.getmad.today/blog/2021/04/section-44-not-even-a-portion-of-liability-for-the-occupational-disease/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:58 am\";}s:69:\"https://www.getmad.today/blog/2021/04/an-interesting-ime-development/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:58 am\";}s:69:\"https://www.getmad.today/blog/2021/04/never-give-in-disallowance-win/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:58 am\";}s:96:\"https://www.getmad.today/blog/2021/04/social-media-and-fraud-youd-be-surprised-what-people-post/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:58 am\";}s:104:\"https://www.getmad.today/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:58 am\";}s:33:\"https://www.getmad.today/privacy/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:132:\"https://www.getmad.today/blog/2021/05/employers-do-not-have-to-prove-prejudice-by-late-notice-but-it-certainly-doesnt-hurt-to-do-so/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:36:\"https://www.getmad.today/disclaimer/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:33:\"https://www.getmad.today/contact/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:51:\"https://www.getmad.today/client-resources/ppd-caps/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:115:\"https://www.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:77:\"https://www.getmad.today/blog/2021/05/labor-market-attachment-and-retirement/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:86:\"https://www.getmad.today/blog/2021/06/stipulations-reimbursements-underpayments-oh-my/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:93:\"https://www.getmad.today/blog/2021/06/third-deparment-decision-disputing-causal-relationship/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:54:\"https://www.getmad.today/blog/2021/07/its-no-accident/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:90:\"https://www.getmad.today/blog/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:96:\"https://www.getmad.today/blog/2021/07/carpal-tunnel-and-causal-relation-not-always-so-clear-cut/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:76:\"https://www.getmad.today/blog/2021/07/an-exploration-of-legal-apportionment/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:56 am\";}s:71:\"https://www.getmad.today/blog/2021/08/disallowance-due-to-intoxication/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:56 am\";}s:74:\"https://www.getmad.today/blog/2021/08/surveillance-social-mediasection-32/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:56 am\";}s:118:\"https://www.getmad.today/blog/2021/08/using-the-contralateral-limb-as-a-baseline-for-calculating-schedule-loss-of-use/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:56 am\";}s:55:\"https://www.getmad.today/blog/2015/07/mds-jds-and-ttds/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:54 am\";}s:188:\"https://www.getmad.today/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\";a:2:{s:4:\"date\";s:17:\"November 19, 2021\";s:4:\"time\";s:8:\"12:33 pm\";}s:188:\"https://www.getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\";a:2:{s:4:\"date\";s:17:\"November 19, 2021\";s:4:\"time\";s:8:\"12:31 pm\";}s:82:\"https://www.getmad.today/blog/2016/10/to-wean-or-not-to-wean-that-is-the-question/\";a:2:{s:4:\"date\";s:17:\"November 19, 2021\";s:4:\"time\";s:8:\"12:17 pm\";}s:127:\"https://www.getmad.today/blog/2018/03/ricky-costner-jr-18-year-old-slain-by-a-deranged-co-worker-honored-by-family-and-friends/\";a:2:{s:4:\"date\";s:17:\"November 19, 2021\";s:4:\"time\";s:8:\"12:16 pm\";}s:70:\"https://www.getmad.today/blog/2013/04/did-you-know-25-a-is-going-away/\";a:2:{s:4:\"date\";s:17:\"November 19, 2021\";s:4:\"time\";s:8:\"12:16 pm\";}s:60:\"https://www.getmad.today/blog/2015/11/an-employee-cannot-be/\";a:2:{s:4:\"date\";s:17:\"November 19, 2021\";s:4:\"time\";s:8:\"12:16 pm\";}s:51:\"https://www.getmad.today/blog/2013/01/did-you-know/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:114:\"https://www.getmad.today/blog/2013/01/why-why-do-judges-even-set-deadlines-for-the-submission-of-memoranda-of-law/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:234:\"https://www.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:154:\"https://www.getmad.today/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:144:\"https://www.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:223:\"https://www.getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:202:\"https://www.getmad.today/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:148:\"https://www.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:155:\"https://www.getmad.today/blog/2013/08/did-you-know-the-2nd-circuit-certified-a-question-to-the-ny-court-of-appeals-on-the-exclusivity-provision-of-the-wcl/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:151:\"https://www.getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:128:\"https://www.getmad.today/blog/2013/01/did-you-know-implementation-of-the-changes-to-the-mtg-has-been-delayed-until-march-1-2013/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:114:\"https://www.getmad.today/blog/2013/01/did-you-know-wcl-%c2%a7153v-benefits-may-now-be-capped-under-wcl-%c2%a7153w/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:238:\"https://www.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:166:\"https://www.getmad.today/blog/2013/02/did-you-know-governor-cuomos-budget-proposes-to-eliminate-mandatory-deposits-into-the-atf-and-to-close-the-fund-to-new-deposits/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:113:\"https://www.getmad.today/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:127:\"https://www.getmad.today/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:184:\"https://www.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:74:\"https://www.getmad.today/blog/2015/02/an-underwriting-nightmare-come-true/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:71:\"https://www.getmad.today/blog/2015/02/hearing-loss-becomes-hearing-win/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:236:\"https://www.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:195:\"https://www.getmad.today/blog/2013/12/did-you-know-the-board-has-retired-the-concept-of-the-compensable-retirement-the-death-knell-of-the-trifecta-zamora-and-the-so-called-compensable-retirement/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:80:\"https://www.getmad.today/blog/2015/07/liability-for-treatment-by-social-workers/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:78:\"https://www.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:107:\"https://www.getmad.today/blog/2015/06/imes-the-next-summer-movie-blockbuster-or-just-another-ime-gone-bust/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:73:\"https://www.getmad.today/blog/2015/06/wcbs-regulatory-agenda-may-include/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:61:\"https://www.getmad.today/blog/2015/07/hot-dogs-or-hamburgers/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:66:\"https://www.getmad.today/blog/2015/08/claims-handling-performance/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:58:\"https://www.getmad.today/blog/2015/08/answers-to-the-quiz/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:52:\"https://www.getmad.today/blog/2015/08/average-wages/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:74:\"https://www.getmad.today/blog/2015/08/non-acute-pain-treatment-guidelines/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:60:\"https://www.getmad.today/blog/2015/11/ny-allows-employer-to/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:64:\"https://www.getmad.today/blog/2015/10/vocational-and-functional/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:57:\"https://www.getmad.today/blog/2015/09/challenge-yourself/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:72:\"https://www.getmad.today/blog/2015/09/labor-market-attachment-refresher/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:60:\"https://www.getmad.today/blog/2015/09/summer-is-almost-over/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:55:\"https://www.getmad.today/blog/2016/10/happy-hallo-wean/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:53:\"https://www.getmad.today/blog/2016/04/reopened-cases/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:58:\"https://www.getmad.today/blog/2018/05/youre-claiming-what/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:145:\"https://www.getmad.today/blog/2017/01/back-to-the-future-the-return-of-wcl-252-b-fact-finding-without-judges-and-legal-reasoning-without-lawyers/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:150:\"https://www.getmad.today/blog/2018/05/united-states-supreme-court-is-considering-a-petition-for-a-writ-of-certiorari-of-the-american-economy-decision/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:116:\"https://www.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:110:\"https://www.getmad.today/blog/2017/02/permanent-partial-disability-safety-netwhat-to-expect-from-wcl-%c2%a735/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:142:\"https://www.getmad.today/blog/2017/10/court-of-appeals-upholds-2013-amendment-to-section-25-a-marking-the-end-for-the-fund-for-reopened-cases/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:192:\"https://www.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:83:\"https://www.getmad.today/blog/2018/05/new-slu-guidelines-presentation-by-the-board/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:77:\"https://www.getmad.today/blog/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:61:\"https://www.getmad.today/blog/2016/12/its-the-holiday-season/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:66:\"https://www.getmad.today/blog/2018/12/appeals-inventory-and-forms/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:119:\"https://www.getmad.today/blog/2018/05/proposed-changes-submitted-seeking-to-expand-the-boards-legal-internship-program/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:101:\"https://www.getmad.today/blog/2020/06/proposed-changes-to-%c2%a7%c2%a7300-22-and-300-23-overpayments/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:57:\"https://www.getmad.today/blog/2019/05/a-new-quest-begins/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:56:\"https://www.getmad.today/blog/2019/05/lwec-incontinence/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:149:\"https://www.getmad.today/blog/2019/05/claimants-conviction-of-unlawful-manufacture-of-methamphetamine-does-not-amount-to-a-violation-under-wcl-114-a/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:122:\"https://www.getmad.today/blog/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:112:\"https://www.getmad.today/blog/2019/07/melissa-a-day-esq-invited-to-join-buffalo-business-first-leadership-trust/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:148:\"https://www.getmad.today/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:81:\"https://www.getmad.today/blog/2020/07/a-win-for-the-law-offices-of-melissa-a-day/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}}s:10:\"pagination\";a:2:{s:7:\"showing\";i:149;s:5:\"total\";i:149;}}','2022-09-21 11:09:21','2022-04-04 05:41:29','2022-08-22 11:09:21'),(2820,'addons','a:8:{i:0;O:8:\"stdClass\":22:{s:3:\"sku\";s:16:\"aioseo-image-seo\";s:4:\"name\";s:9:\"Image SEO\";s:7:\"version\";s:5:\"1.0.0\";s:5:\"image\";N;s:4:\"icon\";s:13:\"svg-image-seo\";s:6:\"levels\";a:6:{i:0;s:10:\"individual\";i:1;s:8:\"business\";i:2;s:6:\"agency\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";i:5;s:5:\"elite\";}s:13:\"currentLevels\";a:3:{i:0;s:4:\"plus\";i:1;s:3:\"pro\";i:2;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:147:\"<p>Globally control the Title attribute and Alt text for images in your content. These attributes are essential for both accessibility and SEO.</p>\";s:18:\"descriptionVersion\";i:0;s:10:\"productUrl\";s:62:\"https://thelomad.com/getmad.today/wp-contentaioseo.com/image-seo\";s:12:\"learnMoreUrl\";s:62:\"https://thelomad.com/getmad.today/wp-contentaioseo.com/image-seo\";s:9:\"manageUrl\";s:78:\"https://thelomad.com/getmad.today/wp-contentroute#aioseo-search-appearance:media\";s:8:\"basename\";s:37:\"aioseo-image-seo/aioseo-image-seo.php\";s:9:\"installed\";b:0;s:8:\"isActive\";b:0;s:10:\"canInstall\";b:0;s:11:\"canActivate\";b:0;s:9:\"canUpdate\";b:0;s:10:\"capability\";s:33:\"aioseo_search_appearance_settings\";s:14:\"minimumVersion\";s:5:\"0.0.0\";s:17:\"hasMinimumVersion\";b:0;}i:1;O:8:\"stdClass\":22:{s:3:\"sku\";s:20:\"aioseo-video-sitemap\";s:4:\"name\";s:13:\"Video Sitemap\";s:7:\"version\";s:5:\"1.0.0\";s:5:\"image\";N;s:4:\"icon\";s:16:\"svg-sitemaps-pro\";s:6:\"levels\";a:5:{i:0;s:10:\"individual\";i:1;s:8:\"business\";i:2;s:6:\"agency\";i:3;s:3:\"pro\";i:4;s:5:\"elite\";}s:13:\"currentLevels\";a:2:{i:0;s:3:\"pro\";i:1;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:242:\"<p>The Video Sitemap works in much the same way as the XML Sitemap module, it generates an XML Sitemap specifically for video content on your site. Search engines use this information to display rich snippet information in search results.</p>\";s:18:\"descriptionVersion\";i:0;s:10:\"productUrl\";s:66:\"https://thelomad.com/getmad.today/wp-contentaioseo.com/video-sitemap\";s:12:\"learnMoreUrl\";s:66:\"https://thelomad.com/getmad.today/wp-contentaioseo.com/video-sitemap\";s:9:\"manageUrl\";s:77:\"https://thelomad.com/getmad.today/wp-contentroute#aioseo-sitemaps:video-sitemap\";s:8:\"basename\";s:45:\"aioseo-video-sitemap/aioseo-video-sitemap.php\";s:9:\"installed\";b:0;s:8:\"isActive\";b:0;s:10:\"canInstall\";b:0;s:11:\"canActivate\";b:0;s:9:\"canUpdate\";b:0;s:10:\"capability\";s:23:\"aioseo_sitemap_settings\";s:14:\"minimumVersion\";s:5:\"0.0.0\";s:17:\"hasMinimumVersion\";b:0;}i:2;O:8:\"stdClass\":22:{s:3:\"sku\";s:21:\"aioseo-local-business\";s:4:\"name\";s:18:\"Local Business SEO\";s:7:\"version\";s:5:\"1.0.0\";s:5:\"image\";N;s:4:\"icon\";s:18:\"svg-local-business\";s:6:\"levels\";a:5:{i:0;s:8:\"business\";i:1;s:6:\"agency\";i:2;s:4:\"plus\";i:3;s:3:\"pro\";i:4;s:5:\"elite\";}s:13:\"currentLevels\";a:3:{i:0;s:4:\"plus\";i:1;s:3:\"pro\";i:2;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:252:\"<p>Local Business schema markup enables you to tell Google about your business, including your business name, address and phone number, opening hours and price range. This information may be displayed as a Knowledge Graph card or business carousel.</p>\";s:18:\"descriptionVersion\";i:0;s:10:\"productUrl\";s:67:\"https://thelomad.com/getmad.today/wp-contentaioseo.com/local-business\";s:12:\"learnMoreUrl\";s:67:\"https://thelomad.com/getmad.today/wp-contentaioseo.com/local-business\";s:9:\"manageUrl\";s:74:\"https://thelomad.com/getmad.today/wp-contentroute#aioseo-local-seo:locations\";s:8:\"basename\";s:47:\"aioseo-local-business/aioseo-local-business.php\";s:9:\"installed\";b:0;s:8:\"isActive\";b:0;s:10:\"canInstall\";b:0;s:11:\"canActivate\";b:0;s:9:\"canUpdate\";b:0;s:10:\"capability\";s:25:\"aioseo_local_seo_settings\";s:14:\"minimumVersion\";s:5:\"0.0.0\";s:17:\"hasMinimumVersion\";b:0;}i:3;O:8:\"stdClass\":22:{s:3:\"sku\";s:19:\"aioseo-news-sitemap\";s:4:\"name\";s:12:\"News Sitemap\";s:7:\"version\";s:5:\"1.0.0\";s:5:\"image\";N;s:4:\"icon\";s:16:\"svg-sitemaps-pro\";s:6:\"levels\";a:4:{i:0;s:8:\"business\";i:1;s:6:\"agency\";i:2;s:3:\"pro\";i:3;s:5:\"elite\";}s:13:\"currentLevels\";a:2:{i:0;s:3:\"pro\";i:1;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:283:\"<p>Our Google News Sitemap lets you control which content you submit to Google News and only contains articles that were published in the last 48 hours. In order to submit a News Sitemap to Google, you must have added your site to Google’s Publisher Center and had it approved.</p>\";s:18:\"descriptionVersion\";i:0;s:10:\"productUrl\";s:65:\"https://thelomad.com/getmad.today/wp-contentaioseo.com/news-sitemap\";s:12:\"learnMoreUrl\";s:65:\"https://thelomad.com/getmad.today/wp-contentaioseo.com/news-sitemap\";s:9:\"manageUrl\";s:76:\"https://thelomad.com/getmad.today/wp-contentroute#aioseo-sitemaps:news-sitemap\";s:8:\"basename\";s:43:\"aioseo-news-sitemap/aioseo-news-sitemap.php\";s:9:\"installed\";b:0;s:8:\"isActive\";b:0;s:10:\"canInstall\";b:0;s:11:\"canActivate\";b:0;s:9:\"canUpdate\";b:0;s:10:\"capability\";s:23:\"aioseo_sitemap_settings\";s:14:\"minimumVersion\";s:5:\"0.0.0\";s:17:\"hasMinimumVersion\";b:0;}i:4;O:8:\"stdClass\":22:{s:3:\"sku\";s:16:\"aioseo-redirects\";s:4:\"name\";s:19:\"Redirection Manager\";s:7:\"version\";s:5:\"1.0.0\";s:5:\"image\";N;s:4:\"icon\";s:12:\"svg-redirect\";s:6:\"levels\";a:4:{i:0;s:6:\"agency\";i:1;s:8:\"business\";i:2;s:3:\"pro\";i:3;s:5:\"elite\";}s:13:\"currentLevels\";a:2:{i:0;s:3:\"pro\";i:1;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:274:\"<p>Our Redirection Manager allows you to easily create and manage redirects for your broken links to avoid confusing search engines and users, as well as losing valuable backlinks. It even automatically sends users and search engines from your old URLs to your new ones.</p>\";s:18:\"descriptionVersion\";i:0;s:10:\"productUrl\";s:82:\"https://thelomad.com/getmad.today/wp-contentaioseo.com/features/redirection-manager/\";s:12:\"learnMoreUrl\";s:82:\"https://thelomad.com/getmad.today/wp-contentaioseo.com/features/redirection-manager/\";s:9:\"manageUrl\";s:64:\"https://thelomad.com/getmad.today/wp-contentroute#aioseo-redirects\";s:8:\"basename\";s:37:\"aioseo-redirects/aioseo-redirects.php\";s:9:\"installed\";b:0;s:8:\"isActive\";b:0;s:10:\"canInstall\";b:0;s:11:\"canActivate\";b:0;s:9:\"canUpdate\";b:0;s:10:\"capability\";s:25:\"aioseo_redirects_settings\";s:14:\"minimumVersion\";s:5:\"0.0.0\";s:17:\"hasMinimumVersion\";b:0;}i:5;O:8:\"stdClass\":22:{s:3:\"sku\";s:21:\"aioseo-link-assistant\";s:4:\"name\";s:14:\"Link Assistant\";s:7:\"version\";s:5:\"1.0.0\";s:5:\"image\";N;s:4:\"icon\";s:18:\"svg-link-assistant\";s:6:\"levels\";a:3:{i:0;s:6:\"agency\";i:1;s:3:\"pro\";i:2;s:5:\"elite\";}s:13:\"currentLevels\";a:2:{i:0;s:3:\"pro\";i:1;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:282:\"<p>Super-charge your SEO with Link Assistant! Get relevant suggestions for adding internal links to older content as well as finding any orphaned posts that have no internal links. Use our reporting feature to see all link suggestions or add them directly from any page or post.</p>\";s:18:\"descriptionVersion\";i:0;s:10:\"productUrl\";s:85:\"https://thelomad.com/getmad.today/wp-contentaioseo.com/feature/internal-link-assistant/\";s:12:\"learnMoreUrl\";s:85:\"https://thelomad.com/getmad.today/wp-contentaioseo.com/feature/internal-link-assistant/\";s:9:\"manageUrl\";s:69:\"https://thelomad.com/getmad.today/wp-contentroute#aioseo-link-assistant\";s:8:\"basename\";s:47:\"aioseo-link-assistant/aioseo-link-assistant.php\";s:9:\"installed\";b:0;s:8:\"isActive\";b:0;s:10:\"canInstall\";b:0;s:11:\"canActivate\";b:0;s:9:\"canUpdate\";b:0;s:10:\"capability\";s:17:\"aioseo_manage_seo\";s:14:\"minimumVersion\";s:5:\"0.0.0\";s:17:\"hasMinimumVersion\";b:0;}i:6;O:8:\"stdClass\":23:{s:3:\"sku\";s:16:\"aioseo-index-now\";s:4:\"name\";s:8:\"IndexNow\";s:7:\"version\";s:5:\"1.0.0\";s:5:\"image\";N;s:4:\"icon\";s:16:\"svg-sitemaps-pro\";s:6:\"levels\";a:6:{i:0;s:6:\"agency\";i:1;s:8:\"business\";i:2;s:5:\"basic\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";i:5;s:5:\"elite\";}s:13:\"currentLevels\";a:4:{i:0;s:5:\"basic\";i:1;s:4:\"plus\";i:2;s:3:\"pro\";i:3;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:192:\"<p>Add IndexNow support to instantly notify search engines when your content has changed. This helps the search engines to prioritize the changes on your website and helps you rank faster.</p>\";s:18:\"descriptionVersion\";i:0;s:11:\"downloadUrl\";s:0:\"\";s:10:\"productUrl\";s:63:\"https://thelomad.com/getmad.today/wp-contentaioseo.com/index-now/\";s:12:\"learnMoreUrl\";s:63:\"https://thelomad.com/getmad.today/wp-contentaioseo.com/index-now/\";s:9:\"manageUrl\";s:79:\"https://thelomad.com/getmad.today/wp-contentroute#aioseo-settings:webmaster-tools\";s:8:\"basename\";s:37:\"aioseo-index-now/aioseo-index-now.php\";s:9:\"installed\";b:0;s:8:\"isActive\";b:0;s:10:\"canInstall\";b:0;s:11:\"canActivate\";b:0;s:9:\"canUpdate\";b:0;s:10:\"capability\";s:23:\"aioseo_general_settings\";s:14:\"minimumVersion\";s:5:\"0.0.0\";s:17:\"hasMinimumVersion\";b:0;}i:7;O:8:\"stdClass\":23:{s:3:\"sku\";s:15:\"aioseo-rest-api\";s:4:\"name\";s:8:\"REST API\";s:7:\"version\";s:5:\"1.0.0\";s:5:\"image\";N;s:4:\"icon\";s:8:\"svg-code\";s:6:\"levels\";a:3:{i:0;s:4:\"plus\";i:1;s:3:\"pro\";i:2;s:5:\"elite\";}s:13:\"currentLevels\";a:3:{i:0;s:4:\"plus\";i:1;s:3:\"pro\";i:2;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:136:\"<p>Manage your post and term SEO meta via the WordPress REST API. This addon also works seamlessly with headless WordPress installs.</p>\";s:18:\"descriptionVersion\";i:0;s:11:\"downloadUrl\";s:0:\"\";s:10:\"productUrl\";s:70:\"https://thelomad.com/getmad.today/wp-contentaioseo.com/feature/rest-api/\";s:12:\"learnMoreUrl\";s:70:\"https://thelomad.com/getmad.today/wp-contentaioseo.com/feature/rest-api/\";s:9:\"manageUrl\";N;s:8:\"basename\";s:35:\"aioseo-rest-api/aioseo-rest-api.php\";s:9:\"installed\";b:0;s:8:\"isActive\";b:0;s:10:\"canInstall\";b:0;s:11:\"canActivate\";b:0;s:9:\"canUpdate\";b:0;s:10:\"capability\";N;s:14:\"minimumVersion\";s:5:\"0.0.0\";s:17:\"hasMinimumVersion\";b:0;}}','2022-08-23 11:33:00','2022-07-11 06:23:48','2022-08-22 11:33:00'),(3209,'admin_notifications_update','i:1661227845;','2022-08-23 04:10:45','2022-07-25 00:21:53','2022-08-22 04:10:45'),(3284,'aioseo_sitemap_sitemap.xml.gz','a:3:{s:6:\"counts\";a:0:{}s:8:\"datetime\";a:149:{s:25:\"https://www.getmad.today/\";a:2:{s:4:\"date\";s:13:\"July 25, 2022\";s:4:\"time\";s:7:\"8:36 am\";}s:67:\"https://www.getmad.today/news-events-articles/lomad-event-calendar/\";a:2:{s:4:\"date\";s:15:\"August 16, 2022\";s:4:\"time\";s:7:\"3:36 pm\";}s:50:\"https://www.getmad.today/attorney/buehler-vicki-l/\";a:2:{s:4:\"date\";s:15:\"August 11, 2022\";s:4:\"time\";s:7:\"4:11 pm\";}s:60:\"https://www.getmad.today/the-team/workers-compensation-team/\";a:2:{s:4:\"date\";s:15:\"August 11, 2022\";s:4:\"time\";s:7:\"4:03 pm\";}s:49:\"https://www.getmad.today/attorney/huang-bingchen/\";a:2:{s:4:\"date\";s:15:\"August 11, 2022\";s:4:\"time\";s:7:\"3:23 pm\";}s:53:\"https://www.getmad.today/attorney/harada-satoko-suki/\";a:2:{s:4:\"date\";s:15:\"August 11, 2022\";s:4:\"time\";s:7:\"3:21 pm\";}s:56:\"https://www.getmad.today/attorney/christman-cassandra-e/\";a:2:{s:4:\"date\";s:15:\"August 11, 2022\";s:4:\"time\";s:7:\"3:15 pm\";}s:50:\"https://www.getmad.today/attorney/kornacki-paul-b/\";a:2:{s:4:\"date\";s:15:\"August 11, 2022\";s:4:\"time\";s:7:\"3:14 pm\";}s:52:\"https://www.getmad.today/attorney/shannon-brendan-t/\";a:2:{s:4:\"date\";s:15:\"August 11, 2022\";s:4:\"time\";s:7:\"3:13 pm\";}s:34:\"https://www.getmad.today/the-team/\";a:2:{s:4:\"date\";s:15:\"August 11, 2022\";s:4:\"time\";s:7:\"2:11 pm\";}s:34:\"https://www.getmad.today/site-map/\";a:2:{s:4:\"date\";s:15:\"August 11, 2022\";s:4:\"time\";s:7:\"2:04 pm\";}s:47:\"https://www.getmad.today/about/vicki-l-buehler/\";a:2:{s:4:\"date\";s:15:\"August 11, 2022\";s:4:\"time\";s:7:\"1:55 pm\";}s:33:\"https://www.getmad.today/lomadtv/\";a:2:{s:4:\"date\";s:14:\"August 8, 2022\";s:4:\"time\";s:7:\"1:29 pm\";}s:63:\"https://www.getmad.today/news-events-articles/lomad-newsletter/\";a:2:{s:4:\"date\";s:14:\"August 4, 2022\";s:4:\"time\";s:7:\"2:05 pm\";}s:42:\"https://www.getmad.today/the-team/careers/\";a:2:{s:4:\"date\";s:13:\"July 25, 2022\";s:4:\"time\";s:7:\"1:37 pm\";}s:71:\"https://www.getmad.today/blog/2022/05/interview-with-leaders-voice-usa/\";a:2:{s:4:\"date\";s:12:\"June 2, 2022\";s:4:\"time\";s:7:\"3:28 pm\";}s:46:\"https://www.getmad.today/news-events-articles/\";a:2:{s:4:\"date\";s:12:\"June 1, 2022\";s:4:\"time\";s:7:\"2:47 pm\";}s:50:\"https://www.getmad.today/client-resources/slu-php/\";a:2:{s:4:\"date\";s:12:\"May 24, 2022\";s:4:\"time\";s:7:\"2:20 pm\";}s:47:\"https://www.getmad.today/attorney/gray-katrina/\";a:2:{s:4:\"date\";s:11:\"May 9, 2022\";s:4:\"time\";s:7:\"9:53 am\";}s:44:\"https://www.getmad.today/attorney/lua-maria/\";a:2:{s:4:\"date\";s:11:\"May 4, 2022\";s:4:\"time\";s:8:\"12:21 pm\";}s:49:\"https://www.getmad.today/attorney/prince-brian-k/\";a:2:{s:4:\"date\";s:11:\"May 4, 2022\";s:4:\"time\";s:8:\"10:52 am\";}s:51:\"https://www.getmad.today/attorney/mackey-shannan-m/\";a:2:{s:4:\"date\";s:11:\"May 4, 2022\";s:4:\"time\";s:8:\"10:51 am\";}s:53:\"https://www.getmad.today/attorney/machelor-kristin-m/\";a:2:{s:4:\"date\";s:11:\"May 4, 2022\";s:4:\"time\";s:8:\"10:51 am\";}s:47:\"https://www.getmad.today/attorney/gould-andrew/\";a:2:{s:4:\"date\";s:11:\"May 4, 2022\";s:4:\"time\";s:8:\"10:51 am\";}s:47:\"https://www.getmad.today/attorney/frances-mary/\";a:2:{s:4:\"date\";s:11:\"May 4, 2022\";s:4:\"time\";s:8:\"10:50 am\";}s:51:\"https://www.getmad.today/attorney/diegelman-neil-a/\";a:2:{s:4:\"date\";s:11:\"May 4, 2022\";s:4:\"time\";s:8:\"10:50 am\";}s:48:\"https://www.getmad.today/attorney/day-melissa-a/\";a:2:{s:4:\"date\";s:11:\"May 4, 2022\";s:4:\"time\";s:8:\"10:50 am\";}s:49:\"https://www.getmad.today/attorney/daly-melanie-a/\";a:2:{s:4:\"date\";s:11:\"May 4, 2022\";s:4:\"time\";s:8:\"10:50 am\";}s:50:\"https://www.getmad.today/attorney/cousins-james-b/\";a:2:{s:4:\"date\";s:11:\"May 4, 2022\";s:4:\"time\";s:8:\"10:50 am\";}s:52:\"https://www.getmad.today/client-resources/max-rates/\";a:2:{s:4:\"date\";s:14:\"April 21, 2022\";s:4:\"time\";s:7:\"9:34 am\";}s:57:\"https://www.getmad.today/legal-assistants-and-paralegals/\";a:2:{s:4:\"date\";s:14:\"April 20, 2022\";s:4:\"time\";s:7:\"2:14 pm\";}s:45:\"https://www.getmad.today/about/kelsey-x-kunz/\";a:2:{s:4:\"date\";s:17:\"February 28, 2022\";s:4:\"time\";s:7:\"2:58 pm\";}s:75:\"https://www.getmad.today/blog/2022/02/oral-argument-video-burns-v-varriale/\";a:2:{s:4:\"date\";s:17:\"February 11, 2022\";s:4:\"time\";s:7:\"3:30 pm\";}s:82:\"https://www.getmad.today/client-resources/case-law-updates-lomad-case-law-updates/\";a:2:{s:4:\"date\";s:16:\"February 9, 2022\";s:4:\"time\";s:7:\"8:57 pm\";}s:48:\"https://www.getmad.today/about/alexandra-m-rizk/\";a:2:{s:4:\"date\";s:16:\"February 7, 2022\";s:4:\"time\";s:7:\"3:42 am\";}s:47:\"https://www.getmad.today/about/kierria-a-jones/\";a:2:{s:4:\"date\";s:16:\"February 4, 2022\";s:4:\"time\";s:7:\"1:07 am\";}s:48:\"https://www.getmad.today/about/maxwell-j-doldan/\";a:2:{s:4:\"date\";s:16:\"February 4, 2022\";s:4:\"time\";s:7:\"1:05 am\";}s:42:\"https://www.getmad.today/client-resources/\";a:2:{s:4:\"date\";s:16:\"January 21, 2022\";s:4:\"time\";s:8:\"10:49 am\";}s:51:\"https://www.getmad.today/about/danielle-f-draschan/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"9:18 pm\";}s:50:\"https://www.getmad.today/about/thomas-m-dickinson/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"8:53 pm\";}s:50:\"https://www.getmad.today/about/rebecca-c-brashear/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"8:52 pm\";}s:50:\"https://www.getmad.today/about/justice-c-williams/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"8:47 pm\";}s:45:\"https://www.getmad.today/about/jody-l-guiher/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"8:44 pm\";}s:49:\"https://www.getmad.today/about/jillian-m-chavers/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"8:43 pm\";}s:49:\"https://www.getmad.today/about/jessica-m-stevens/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"8:41 pm\";}s:49:\"https://www.getmad.today/about/jenny-l-malkowski/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"8:39 pm\";}s:48:\"https://www.getmad.today/about/corrine-n-newman/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"8:38 pm\";}s:46:\"https://www.getmad.today/about/daniel-h-flynn/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"8:37 pm\";}s:44:\"https://www.getmad.today/about/elena-n-camp/\";a:2:{s:4:\"date\";s:16:\"January 12, 2022\";s:4:\"time\";s:7:\"8:35 pm\";}s:31:\"https://www.getmad.today/about/\";a:2:{s:4:\"date\";s:17:\"December 30, 2021\";s:4:\"time\";s:8:\"10:58 am\";}s:73:\"https://www.getmad.today/amherst-workers-compensation-defense-law-office/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"8:25 am\";}s:87:\"https://www.getmad.today/blog/2020/07/another-win-for-the-law-offices-of-melissa-a-day/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"6:00 am\";}s:62:\"https://www.getmad.today/blog/2020/07/successful-disallowance/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:59 am\";}s:119:\"https://www.getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:59 am\";}s:66:\"https://www.getmad.today/blog/2021/01/success-with-wcl-section-18/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:59 am\";}s:108:\"https://www.getmad.today/blog/2021/01/how-change-in-conditions-for-classified-claimants-changed-drastically/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:59 am\";}s:114:\"https://www.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:59 am\";}s:102:\"https://www.getmad.today/blog/2021/02/no-error-of-law-or-fact-in-an-application-for-full-board-review/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:59 am\";}s:73:\"https://www.getmad.today/blog/2021/02/independent-contractor-or-employee/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:59 am\";}s:115:\"https://www.getmad.today/blog/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:59 am\";}s:135:\"https://www.getmad.today/blog/2021/02/occupational-disease-claims-after-matter-of-pinnacle-industries-ii-llc-2019-ny-wrk-comp-g2020587/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:58 am\";}s:84:\"https://www.getmad.today/blog/2021/03/genduso-and-total-joint-replacement-schedules/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:58 am\";}s:96:\"https://www.getmad.today/blog/2021/03/thoughts-on-thinking-a-strange-title-about-practicing-law/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:58 am\";}s:115:\"https://www.getmad.today/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:58 am\";}s:110:\"https://www.getmad.today/blog/2021/04/section-44-not-even-a-portion-of-liability-for-the-occupational-disease/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:58 am\";}s:69:\"https://www.getmad.today/blog/2021/04/an-interesting-ime-development/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:58 am\";}s:69:\"https://www.getmad.today/blog/2021/04/never-give-in-disallowance-win/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:58 am\";}s:96:\"https://www.getmad.today/blog/2021/04/social-media-and-fraud-youd-be-surprised-what-people-post/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:58 am\";}s:104:\"https://www.getmad.today/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:58 am\";}s:33:\"https://www.getmad.today/privacy/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:132:\"https://www.getmad.today/blog/2021/05/employers-do-not-have-to-prove-prejudice-by-late-notice-but-it-certainly-doesnt-hurt-to-do-so/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:36:\"https://www.getmad.today/disclaimer/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:33:\"https://www.getmad.today/contact/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:51:\"https://www.getmad.today/client-resources/ppd-caps/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:115:\"https://www.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:77:\"https://www.getmad.today/blog/2021/05/labor-market-attachment-and-retirement/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:86:\"https://www.getmad.today/blog/2021/06/stipulations-reimbursements-underpayments-oh-my/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:93:\"https://www.getmad.today/blog/2021/06/third-deparment-decision-disputing-causal-relationship/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:54:\"https://www.getmad.today/blog/2021/07/its-no-accident/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:90:\"https://www.getmad.today/blog/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:96:\"https://www.getmad.today/blog/2021/07/carpal-tunnel-and-causal-relation-not-always-so-clear-cut/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:57 am\";}s:76:\"https://www.getmad.today/blog/2021/07/an-exploration-of-legal-apportionment/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:56 am\";}s:71:\"https://www.getmad.today/blog/2021/08/disallowance-due-to-intoxication/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:56 am\";}s:74:\"https://www.getmad.today/blog/2021/08/surveillance-social-mediasection-32/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:56 am\";}s:118:\"https://www.getmad.today/blog/2021/08/using-the-contralateral-limb-as-a-baseline-for-calculating-schedule-loss-of-use/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:56 am\";}s:55:\"https://www.getmad.today/blog/2015/07/mds-jds-and-ttds/\";a:2:{s:4:\"date\";s:17:\"November 30, 2021\";s:4:\"time\";s:7:\"5:54 am\";}s:188:\"https://www.getmad.today/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\";a:2:{s:4:\"date\";s:17:\"November 19, 2021\";s:4:\"time\";s:8:\"12:33 pm\";}s:188:\"https://www.getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\";a:2:{s:4:\"date\";s:17:\"November 19, 2021\";s:4:\"time\";s:8:\"12:31 pm\";}s:82:\"https://www.getmad.today/blog/2016/10/to-wean-or-not-to-wean-that-is-the-question/\";a:2:{s:4:\"date\";s:17:\"November 19, 2021\";s:4:\"time\";s:8:\"12:17 pm\";}s:127:\"https://www.getmad.today/blog/2018/03/ricky-costner-jr-18-year-old-slain-by-a-deranged-co-worker-honored-by-family-and-friends/\";a:2:{s:4:\"date\";s:17:\"November 19, 2021\";s:4:\"time\";s:8:\"12:16 pm\";}s:70:\"https://www.getmad.today/blog/2013/04/did-you-know-25-a-is-going-away/\";a:2:{s:4:\"date\";s:17:\"November 19, 2021\";s:4:\"time\";s:8:\"12:16 pm\";}s:60:\"https://www.getmad.today/blog/2015/11/an-employee-cannot-be/\";a:2:{s:4:\"date\";s:17:\"November 19, 2021\";s:4:\"time\";s:8:\"12:16 pm\";}s:51:\"https://www.getmad.today/blog/2013/01/did-you-know/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:114:\"https://www.getmad.today/blog/2013/01/why-why-do-judges-even-set-deadlines-for-the-submission-of-memoranda-of-law/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:234:\"https://www.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:154:\"https://www.getmad.today/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:144:\"https://www.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:223:\"https://www.getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:202:\"https://www.getmad.today/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:148:\"https://www.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:155:\"https://www.getmad.today/blog/2013/08/did-you-know-the-2nd-circuit-certified-a-question-to-the-ny-court-of-appeals-on-the-exclusivity-provision-of-the-wcl/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:151:\"https://www.getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:128:\"https://www.getmad.today/blog/2013/01/did-you-know-implementation-of-the-changes-to-the-mtg-has-been-delayed-until-march-1-2013/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:114:\"https://www.getmad.today/blog/2013/01/did-you-know-wcl-%c2%a7153v-benefits-may-now-be-capped-under-wcl-%c2%a7153w/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:238:\"https://www.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:166:\"https://www.getmad.today/blog/2013/02/did-you-know-governor-cuomos-budget-proposes-to-eliminate-mandatory-deposits-into-the-atf-and-to-close-the-fund-to-new-deposits/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:113:\"https://www.getmad.today/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:127:\"https://www.getmad.today/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:184:\"https://www.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:74:\"https://www.getmad.today/blog/2015/02/an-underwriting-nightmare-come-true/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:71:\"https://www.getmad.today/blog/2015/02/hearing-loss-becomes-hearing-win/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:236:\"https://www.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:195:\"https://www.getmad.today/blog/2013/12/did-you-know-the-board-has-retired-the-concept-of-the-compensable-retirement-the-death-knell-of-the-trifecta-zamora-and-the-so-called-compensable-retirement/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:80:\"https://www.getmad.today/blog/2015/07/liability-for-treatment-by-social-workers/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:78:\"https://www.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:107:\"https://www.getmad.today/blog/2015/06/imes-the-next-summer-movie-blockbuster-or-just-another-ime-gone-bust/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:73:\"https://www.getmad.today/blog/2015/06/wcbs-regulatory-agenda-may-include/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:61:\"https://www.getmad.today/blog/2015/07/hot-dogs-or-hamburgers/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:66:\"https://www.getmad.today/blog/2015/08/claims-handling-performance/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:58:\"https://www.getmad.today/blog/2015/08/answers-to-the-quiz/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:52:\"https://www.getmad.today/blog/2015/08/average-wages/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:74:\"https://www.getmad.today/blog/2015/08/non-acute-pain-treatment-guidelines/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:60:\"https://www.getmad.today/blog/2015/11/ny-allows-employer-to/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:64:\"https://www.getmad.today/blog/2015/10/vocational-and-functional/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:57:\"https://www.getmad.today/blog/2015/09/challenge-yourself/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:72:\"https://www.getmad.today/blog/2015/09/labor-market-attachment-refresher/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:60:\"https://www.getmad.today/blog/2015/09/summer-is-almost-over/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:55:\"https://www.getmad.today/blog/2016/10/happy-hallo-wean/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:53:\"https://www.getmad.today/blog/2016/04/reopened-cases/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:58:\"https://www.getmad.today/blog/2018/05/youre-claiming-what/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:145:\"https://www.getmad.today/blog/2017/01/back-to-the-future-the-return-of-wcl-252-b-fact-finding-without-judges-and-legal-reasoning-without-lawyers/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:150:\"https://www.getmad.today/blog/2018/05/united-states-supreme-court-is-considering-a-petition-for-a-writ-of-certiorari-of-the-american-economy-decision/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:116:\"https://www.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:110:\"https://www.getmad.today/blog/2017/02/permanent-partial-disability-safety-netwhat-to-expect-from-wcl-%c2%a735/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:142:\"https://www.getmad.today/blog/2017/10/court-of-appeals-upholds-2013-amendment-to-section-25-a-marking-the-end-for-the-fund-for-reopened-cases/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:192:\"https://www.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:83:\"https://www.getmad.today/blog/2018/05/new-slu-guidelines-presentation-by-the-board/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:77:\"https://www.getmad.today/blog/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:61:\"https://www.getmad.today/blog/2016/12/its-the-holiday-season/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:66:\"https://www.getmad.today/blog/2018/12/appeals-inventory-and-forms/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:119:\"https://www.getmad.today/blog/2018/05/proposed-changes-submitted-seeking-to-expand-the-boards-legal-internship-program/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:101:\"https://www.getmad.today/blog/2020/06/proposed-changes-to-%c2%a7%c2%a7300-22-and-300-23-overpayments/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:57:\"https://www.getmad.today/blog/2019/05/a-new-quest-begins/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:56:\"https://www.getmad.today/blog/2019/05/lwec-incontinence/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:149:\"https://www.getmad.today/blog/2019/05/claimants-conviction-of-unlawful-manufacture-of-methamphetamine-does-not-amount-to-a-violation-under-wcl-114-a/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:122:\"https://www.getmad.today/blog/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:112:\"https://www.getmad.today/blog/2019/07/melissa-a-day-esq-invited-to-join-buffalo-business-first-leadership-trust/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:148:\"https://www.getmad.today/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}s:81:\"https://www.getmad.today/blog/2020/07/a-win-for-the-law-offices-of-melissa-a-day/\";a:2:{s:4:\"date\";s:15:\"August 18, 2021\";s:4:\"time\";s:7:\"2:24 am\";}}s:10:\"pagination\";a:2:{s:7:\"showing\";i:149;s:5:\"total\";i:149;}}','2022-09-21 05:02:24','2022-07-27 04:00:07','2022-08-22 05:02:24'),(3511,'attachment_url_to_post_id_7c8f9456b7b630e330463b8fa40b73738496f15d','s:5:\"47838\";','2022-08-22 11:58:24','2022-08-03 03:09:03','2022-08-21 11:58:24'),(4066,'admin_help_docs','s:75982:\"{\"categories\":{\"getting-started\":\"Getting Started\",\"advanced-settings\":\"Advanced Settings\",\"display-settings\":\"Display Settings\",\"general-seo-topics\":\"General SEO Topics\",\"feature-manager\":\"Feature Manager\",\"installation\":\"Installation\"},\"docs\":{\"111476\":{\"title\":\"Displaying a List of Locations on Your Site\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/displaying-a-list-of-locations-on-your-site\\/\",\"categories\":[\"content-blocks\",\"local-business-seo\"]},\"111473\":{\"title\":\"Displaying Your Business Location Information on Your Site\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/displaying-your-business-location-information-on-your-site\\/\",\"categories\":[\"content-blocks\",\"local-business-seo\"]},\"111459\":{\"title\":\"Displaying Opening Hours on Your Site\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/displaying-opening-hours-on-your-site\\/\",\"categories\":[\"content-blocks\",\"local-business-seo\"]},\"111455\":{\"title\":\"Adding a Map of Your Location to Your Site\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/adding-a-map-of-your-location-to-your-site\\/\",\"categories\":[\"content-blocks\",\"local-business-seo\"]},\"111450\":{\"title\":\"Adding Breadcrumbs to Your Site Using the AIOSEO Breadcrumbs Block\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/adding-breadcrumbs-to-your-site-using-the-aioseo-breadcrumbs-block\\/\",\"categories\":[\"breadcrumbs\",\"content-blocks\"]},\"109878\":{\"title\":\"Adding a Redirect When You Delete Content\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/adding-a-redirect-when-you-delete-content\\/\",\"categories\":[\"redirection-manager\"]},\"109829\":{\"title\":\"Redirecting 404 Content Not Found Using All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/redirecting-404-content-not-found-using-all-in-one-seo\\/\",\"categories\":[\"redirection-manager\"]},\"109916\":{\"title\":\"Using the Image SEO Features in All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/using-the-image-seo-features-in-all-in-one-seo\\/\",\"categories\":[\"image-seo\"]},\"104857\":{\"title\":\"Adding a Table of Contents to Your Site Using All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/adding-a-table-of-contents-to-your-site-using-all-in-one-seo\\/\",\"categories\":[\"content-blocks\"]},\"104616\":{\"title\":\"Adding FAQs to Your Site Using All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/adding-faqs-to-your-site-using-all-in-one-seo\\/\",\"categories\":[\"content-blocks\"]},\"104595\":{\"title\":\"Automatic Redirects When Changing the Post Slug\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/automatic-redirects-when-changing-the-post-slug\\/\",\"categories\":[\"redirection-manager\"]},\"103415\":{\"title\":\"Removing Published Date from Article Schema\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/removing-published-date-from-article-schema\\/\",\"categories\":[\"developer-documentation\"]},\"101250\":{\"title\":\"Outputting AIOSEO\'s data in the HEAD without using wp_head()\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/outputting-aioseos-data-in-the-head-without-using-wp_head\\/\",\"categories\":[\"developer-documentation\"]},\"100154\":{\"title\":\"Automatic Redirects When You Delete Content\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/automatic-redirects-when-you-delete-content\\/\",\"categories\":[\"redirection-manager\"]},\"98532\":{\"title\":\"Localizing AIOSEO Data via the Translations API\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/localizing-aioseo-data-via-the-translations-api\\/\",\"categories\":[\"developer-documentation\"]},\"98576\":{\"title\":\"aioseo_sitemap_term\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_sitemap_term\\/\",\"categories\":[\"developer-documentation\"]},\"98575\":{\"title\":\"aioseo_sitemap_post\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_sitemap_post\\/\",\"categories\":[\"developer-documentation\"]},\"98566\":{\"title\":\"aioseo_save_term\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_save_term\\/\",\"categories\":[\"developer-documentation\"]},\"98565\":{\"title\":\"aioseo_save_post\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_save_post\\/\",\"categories\":[\"developer-documentation\"]},\"98557\":{\"title\":\"aioseo_get_term\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_get_term\\/\",\"categories\":[\"developer-documentation\"]},\"98554\":{\"title\":\"aioseo_get_post\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_get_post\\/\",\"categories\":[\"developer-documentation\"]},\"93967\":{\"title\":\"Importing URLs into the XML Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/importing-urls-into-the-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"93822\":{\"title\":\"How to Use Crawl Cleanup to Increase Search Engine Crawl Quota\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/crawl-cleanup-best-practices\\/\",\"categories\":[\"advanced-settings\"]},\"90584\":{\"title\":\"How to Add a Temporary Administrator Login to Your Site\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-add-a-temporary-administrator-login-to-your-site\\/\",\"categories\":[\"frequently-asked-questions\",\"troubleshooting\"]},\"88927\":{\"title\":\"Dashboard Widgets in All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/dashboard-widgets-in-all-in-one-seo\\/\",\"categories\":[\"dashboard\"]},\"86198\":{\"title\":\"How to Strip the Category Base in WordPress\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-strip-the-category-base-in-wordpress\\/\",\"categories\":[\"category-tag-settings\"]},\"84322\":{\"title\":\"Running shortcodes in All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/running-shortcodes\\/\",\"categories\":[\"advanced-settings\"]},\"84156\":{\"title\":\"Translating Your SEO with WPML\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/translating-your-seo-with-wpml\\/\",\"categories\":[\"post-page-settings\"]},\"80219\":{\"title\":\"How to Verify Your Site with Microsoft Clarity\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-verify-your-site-with-microsoft-clarity\\/\",\"categories\":[\"webmaster-tools\"]},\"79928\":{\"title\":\"How to Handle Issues With Installing All in One SEO Pro\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-handle-issues-with-installing-all-in-one-seo-pro\\/\",\"categories\":[\"installation\"]},\"79149\":{\"title\":\"Fetching &amp; Updating AIOSEO Data via the WordPress REST API\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/fetching-updating-aioseo-data-via-the-wordpress-rest-api\\/\",\"categories\":[\"developer-documentation\",\"rest-api\"]},\"77593\":{\"title\":\"How To Fix Javascript Errors\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-fix-javascript-errors\\/\",\"categories\":[\"troubleshooting\"]},\"77589\":{\"title\":\"Browser Support Policy\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/browser-support-policy\\/\",\"categories\":[\"frequently-asked-questions\"]},\"75143\":{\"title\":\"How to Redirect a Post from the Edit Post Screen\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-redirect-a-post-from-the-edit-post-screen\\/\",\"categories\":[\"post-page-settings\",\"redirection-manager\"]},\"75686\":{\"title\":\"Preventing the Modified Date for Content from Changing\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/preventing-the-modified-date-for-content-from-changing\\/\",\"categories\":[\"post-page-settings\"]},\"73002\":{\"title\":\"Page Builder Integrations\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/page-builder-integrations\\/\",\"categories\":[\"home-page-settings\",\"post-page-settings\",\"third-party-integrations\",\"truseo\"]},\"73003\":{\"title\":\"Integrating with IndexNow to Instantly Re-index Your Content\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/integrating-with-indexnow-to-instantly-re-index-your-content\\/\",\"categories\":[\"indexnow\",\"webmaster-tools\"]},\"72711\":{\"title\":\"aioseo_page_builder_integration_disable\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_page_builder_integration_disable\\/\",\"categories\":[\"filter-hooks\"]},\"68444\":{\"title\":\"An Introduction to Link Assistant \\u2014 The Easy Way to Manage Onsite Links\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/introduction-to-link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69559\":{\"title\":\"Using the Link Assistant in All in One SEO Pro\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69594\":{\"title\":\"Internal Links in the Links Report in Link Assistant\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/internal-links-in-the-links-report-in-link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69596\":{\"title\":\"External Links in the Links Report in Link Assistant\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/external-links-in-the-links-report-in-link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69921\":{\"title\":\"Link Suggestions in the Links Report in Link Assistant\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/link-suggestions-in-the-links-report-in-link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69602\":{\"title\":\"Affiliate Links in the Links Report in Link Assistant\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/affiliate-links-in-the-links-report-in-link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69761\":{\"title\":\"Using the Domains Report in Link Assistant\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/using-the-domains-report-in-link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69770\":{\"title\":\"Link Assistant Settings\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/link-assistant-settings\\/\",\"categories\":[\"link-assistant\"]},\"68431\":{\"title\":\"aioseo_sitemap_images\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_sitemap_images\\/\",\"categories\":[\"filter-hooks\"]},\"66833\":{\"title\":\"Why Is N\\/A Displayed Instead of a Score For My Content?\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/why-is-na-displayed-instead-of-a-score-for-my-content\\/\",\"categories\":[\"frequently-asked-questions\",\"truseo\"]},\"18824\":{\"title\":\"Local Business SEO for a Single Location\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/local-business-seo-for-a-single-location\\/\",\"categories\":[\"local-business-seo\",\"schema-settings\"]},\"35828\":{\"title\":\"Local Business SEO for Multiple Locations\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/local-business-seo-for-multiple-locations\\/\",\"categories\":[\"local-business-seo\"]},\"58476\":{\"title\":\"aioseo_public_taxonomies\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_public_taxonomies\\/\",\"categories\":[\"filter-hooks\"]},\"58475\":{\"title\":\"aioseo_public_post_types\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_public_post_types\\/\",\"categories\":[\"filter-hooks\"]},\"64776\":{\"title\":\"How Long Does it Take For My Content to Appear on Google?\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-long-does-it-take-for-my-content-to-appear-on-google\\/\",\"categories\":[\"frequently-asked-questions\"]},\"35926\":{\"title\":\"Adding a Location in Local SEO Addon\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/adding-a-location-in-local-seo-addon\\/\",\"categories\":[\"local-business-seo\"]},\"61020\":{\"title\":\"How to Display a Favicon in Search Results\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-display-a-favicon-in-search-results\\/\",\"categories\":[\"frequently-asked-questions\",\"general-seo-topics\"]},\"35956\":{\"title\":\"Displaying Locations on Your Site\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/displaying-locations-on-your-site\\/\",\"categories\":[\"local-business-seo\"]},\"56330\":{\"title\":\"aioseo_sitemap_indexes\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_sitemap_indexes\\/\",\"categories\":[\"filter-hooks\"]},\"52689\":{\"title\":\"aioseo_flyout_menu_enable\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_flyout_menu_disable\\/\",\"categories\":[\"filter-hooks\"]},\"45698\":{\"title\":\"Displaying your Business Information and Star Ratings on a Map\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/using-places-on-your-maps\\/\",\"categories\":[\"local-business-seo\"]},\"49268\":{\"title\":\"aioseo_access_control_excluded_roles\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_access_control_excluded_roles\\/\",\"categories\":[\"filter-hooks\"]},\"44555\":{\"title\":\"Setting up Google Maps for Local SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-up-google-maps\\/\",\"categories\":[\"local-business-seo\"]},\"48189\":{\"title\":\"How to Create an HTML Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/html-sitemap\\/\",\"categories\":[\"html-sitemap\"]},\"48365\":{\"title\":\"Using a Widget to Display Your HTML Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/using-a-widget-to-display-your-html-sitemap\\/\",\"categories\":[\"html-sitemap\"]},\"48361\":{\"title\":\"Using PHP Code to Display Your HTML Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/function-html-sitemap\\/\",\"categories\":[\"html-sitemap\"]},\"48260\":{\"title\":\"Using a Block to Display Your HTML Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/using-a-block-to-display-your-html-sitemap\\/\",\"categories\":[\"content-blocks\",\"html-sitemap\"]},\"48222\":{\"title\":\"aioseo_breadcrumbs_separator_symbol\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_breadcrumbs_separator_symbol\\/\",\"categories\":[\"filter-hooks\"]},\"48227\":{\"title\":\"aioseo_breadcrumbs_template\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_breadcrumbs_template\\/\",\"categories\":[\"filter-hooks\"]},\"48231\":{\"title\":\"aioseo_breadcrumbs_trail\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_breadcrumbs_trail\\/\",\"categories\":[\"filter-hooks\"]},\"48232\":{\"title\":\"aioseo_breadcrumbs_link_current_item\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_breadcrumbs_link_current_item\\/\",\"categories\":[\"filter-hooks\"]},\"48233\":{\"title\":\"aioseo_breadcrumbs_show_current_item\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_breadcrumbs_show_current_item\\/\",\"categories\":[\"filter-hooks\"]},\"48219\":{\"title\":\"aioseo_breadcrumbs_output\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_breadcrumbs_output\\/\",\"categories\":[\"filter-hooks\"]},\"48223\":{\"title\":\"aioseo_breadcrumbs_separator\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_breadcrumbs_separator\\/\",\"categories\":[\"filter-hooks\"]},\"48238\":{\"title\":\"Using a Shortcode to Display Your HTML Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/shortcode-html-sitemap\\/\",\"categories\":[\"html-sitemap\"]},\"45805\":{\"title\":\"aioseo_sitemap_exclude_terms\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_sitemap_exclude_terms\\/\",\"categories\":[\"filter-hooks\"]},\"45804\":{\"title\":\"aioseo_sitemap_exclude_posts\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_sitemap_exclude_posts\\/\",\"categories\":[\"filter-hooks\"]},\"61002\":{\"title\":\"How to Create a Google Maps API Key\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-create-a-google-maps-api-key\\/\",\"categories\":[\"local-business-seo\"]},\"45528\":{\"title\":\"aioseo_schema_output\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_schema_output\\/\",\"categories\":[\"filter-hooks\"]},\"42995\":{\"title\":\"Using the Headline Analyzer in All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/using-the-headline-analyzer-in-all-in-one-seo\\/\",\"categories\":[\"headline-analyzer\"]},\"42683\":{\"title\":\"How to Perform a Full Site Redirect\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/full-site-redirects\\/\",\"categories\":[\"redirection-manager\"]},\"50988\":{\"title\":\"Displaying Maps on Your Site\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/displaying-maps-on-your-site\\/\",\"categories\":[\"local-business-seo\"]},\"42999\":{\"title\":\"How to Disable the Headline Analyzer\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-disable-the-headline-analyzer\\/\",\"categories\":[\"headline-analyzer\"]},\"42975\":{\"title\":\"Installing Addons for All in One SEO Pro\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/installing-addons-for-all-in-one-seo-pro\\/\",\"categories\":[\"installation\"]},\"42854\":{\"title\":\"Creating a Pass Through Redirect\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/creating-a-pass-through-redirect\\/\",\"categories\":[\"redirection-manager\"]},\"41800\":{\"title\":\"Using Custom Rules in the Redirection Manager\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/redirection-manager-custom-rules\\/\",\"categories\":[\"redirection-manager\"]},\"42224\":{\"title\":\"Resetting the Settings in All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/resetting-the-settings-in-all-in-one-seo\\/\",\"categories\":[\"database-tools\"]},\"41884\":{\"title\":\"Setting the Site Name for Facebook\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-site-name-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"41862\":{\"title\":\"How to Get Google to Display the Sitelinks Search Box\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-get-google-to-display-the-sitelinks-search-box\\/\",\"categories\":[\"schema-settings\"]},\"41851\":{\"title\":\"Setting the SEO Title and Description Format for the Search Results Page\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-the-search-results-page\\/\",\"categories\":[\"content-type-settings\",\"search-appearance\"]},\"41811\":{\"title\":\"SEO Analysis Unable to Connect to Your Site\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/seo-analysis-unable-to-connect-to-your-site\\/\",\"categories\":[\"seo-analysis\",\"troubleshooting\"]},\"41280\":{\"title\":\"How to Renew Your AIOSEO License\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-renew-your-aioseo-license\\/\",\"categories\":[\"frequently-asked-questions\",\"getting-started\"]},\"41077\":{\"title\":\"Update WordPress: WordPress Versions Supported by AIOSEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/update-wordpress\\/\",\"categories\":[\"troubleshooting\"]},\"40587\":{\"title\":\"How to Open the Browser Error Console\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-open-the-browser-error-console\\/\",\"categories\":[\"troubleshooting\"]},\"40582\":{\"title\":\"How to Enable Debugging in WordPress\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-enable-debugging-in-wordpress\\/\",\"categories\":[\"troubleshooting\"]},\"40148\":{\"title\":\"What is TruSEO?\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/what-is-truseo\\/\",\"categories\":[\"frequently-asked-questions\",\"truseo\"]},\"39494\":{\"title\":\"Redirecting Attachment Pages\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/redirecting-attachment-pages\\/\",\"categories\":[\"media-settings\",\"search-appearance\"]},\"66310\":{\"title\":\"Selecting the Google Maps APIs to use with All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/selecting-the-google-maps-apis-to-use-with-all-in-one-seo\\/\",\"categories\":[\"local-business-seo\"]},\"38915\":{\"title\":\"Setting Up and Using Breadcrumbs Templates\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-up-and-using-breadcrumbs-templates\\/\",\"categories\":[\"breadcrumbs\"]},\"38610\":{\"title\":\"Displaying Breadcrumbs On Your Site\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/displaying-breadcrumbs-on-your-site\\/\",\"categories\":[\"breadcrumbs\"]},\"36048\":{\"title\":\"Function: aioseo_breadcrumbs()\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/function-aioseo_breadcrumbs\\/\",\"categories\":[\"breadcrumbs\"]},\"36047\":{\"title\":\"Shortcode: [aioseo_breadcrumbs]\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/shortcode-aioseo_breadcrumbs\\/\",\"categories\":[\"breadcrumbs\"]},\"38240\":{\"title\":\"aioseo_social_image_ignore_cover_block\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_social_image_ignore_cover_block\\/\",\"categories\":[\"filter-hooks\"]},\"37961\":{\"title\":\"aioseo_classic_editor_disable_emoji_script\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_classic_editor_disable_emoji_script\\/\",\"categories\":[\"filter-hooks\"]},\"34923\":{\"title\":\"How to Redirect a Post or Page in All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-redirect-a-post-or-page-in-all-in-one-seo\\/\",\"categories\":[\"redirection-manager\"]},\"34977\":{\"title\":\"How to Redirect Multiple URLs to the Same Destination\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-redirect-multiple-urls-to-the-same-destination\\/\",\"categories\":[\"redirection-manager\"]},\"35604\":{\"title\":\"Automatic Redirects When URLs Change in Content\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/automatic-redirects-when-urls-change-in-content\\/\",\"categories\":[\"redirection-manager\"]},\"31460\":{\"title\":\"Enhanced Search Query Conflict\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/enhanced-search-query-conflict\\/\",\"categories\":[\"local-business-seo\"]},\"30850\":{\"title\":\"aioseo_local_business_info_email_icon\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_info_email_icon\\/\",\"categories\":[\"filter-hooks\"]},\"30839\":{\"title\":\"aioseo_local_business_info_location_icon\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_info_location_icon\\/\",\"categories\":[\"filter-hooks\"]},\"30756\":{\"title\":\"aioseo_local_business_get_locations_by_category_posts\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_get_locations_by_category_posts\\/\",\"categories\":[\"filter-hooks\"]},\"30755\":{\"title\":\"aioseo_local_business_get_locations_by_category_args\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_get_locations_by_category_args\\/\",\"categories\":[\"filter-hooks\"]},\"30754\":{\"title\":\"aioseo_local_business_get_location_categories\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_get_location_categories\\/\",\"categories\":[\"filter-hooks\"]},\"30751\":{\"title\":\"aioseo_local_business_get_locations_posts\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_get_locations_posts\\/\",\"categories\":[\"filter-hooks\"]},\"30753\":{\"title\":\"aioseo_local_business_get_location_category_args\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_get_location_category_args\\/\",\"categories\":[\"filter-hooks\"]},\"30759\":{\"title\":\"aioseo_local_business_output_business_info_instance\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_output_business_info_instance\\/\",\"categories\":[\"filter-hooks\"]},\"30760\":{\"title\":\"aioseo_local_business_output_business_info_location_data\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_output_business_info_location_data\\/\",\"categories\":[\"filter-hooks\"]},\"30761\":{\"title\":\"aioseo_local_business_output_location_category_instance\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_output_location_category_instance\\/\",\"categories\":[\"filter-hooks\"]},\"30764\":{\"title\":\"aioseo_local_business_output_location_category_location_data\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_output_location_category_location_data\\/\",\"categories\":[\"filter-hooks\"]},\"30765\":{\"title\":\"aioseo_local_business_output_opening_hours_instance\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_output_opening_hours_instance\\/\",\"categories\":[\"filter-hooks\"]},\"30766\":{\"title\":\"aioseo_local_business_output_opening_hours_data\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_output_opening_hours_data\\/\",\"categories\":[\"filter-hooks\"]},\"30849\":{\"title\":\"aioseo_local_business_info_phone_icon\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_info_phone_icon\\/\",\"categories\":[\"filter-hooks\"]},\"30851\":{\"title\":\"aioseo_local_business_opening_hours_icon\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_opening_hours_icon\\/\",\"categories\":[\"filter-hooks\"]},\"30398\":{\"title\":\"aioseo_local_business_post_type_name\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_post_type_name\\/\",\"categories\":[\"filter-hooks\"]},\"30551\":{\"title\":\"aioseo_local_business_post_type_slug\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_post_type_slug\\/\",\"categories\":[\"filter-hooks\"]},\"30556\":{\"title\":\"aioseo_local_business_post_type_single_label\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_post_type_single_label\\/\",\"categories\":[\"filter-hooks\"]},\"30559\":{\"title\":\"aioseo_local_business_post_type_plural_label\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_post_type_plural_label\\/\",\"categories\":[\"filter-hooks\"]},\"30560\":{\"title\":\"aioseo_local_business_post_type\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_post_type\\/\",\"categories\":[\"filter-hooks\"]},\"30563\":{\"title\":\"aioseo_local_business_taxonomy_name\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_taxonomy_name\\/\",\"categories\":[\"filter-hooks\"]},\"30564\":{\"title\":\"aioseo_local_business_taxonomy_slug\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_taxonomy_slug\\/\",\"categories\":[\"filter-hooks\"]},\"35609\":{\"title\":\"Choosing Which Redirect Type to Use\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/choosing-which-redirect-type-to-use\\/\",\"categories\":[\"redirection-manager\"]},\"35599\":{\"title\":\"Importing Redirects From Other Plugins\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/importing-redirects-from-other-plugins\\/\",\"categories\":[\"redirection-manager\"]},\"35588\":{\"title\":\"Exporting and Importing Redirects\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/exporting-and-importing-redirects\\/\",\"categories\":[\"redirection-manager\"]},\"35579\":{\"title\":\"Logging 404 Errors in All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/logging-404-errors-in-all-in-one-seo\\/\",\"categories\":[\"redirection-manager\"]},\"35552\":{\"title\":\"Logging Redirects in All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/logging-redirects-in-all-in-one-seo\\/\",\"categories\":[\"redirection-manager\"]},\"35570\":{\"title\":\"Redirect GDPR Privacy Information\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/redirect-gdpr-privacy-information\\/\",\"categories\":[\"redirection-manager\"]},\"30863\":{\"title\":\"Local Business SEO - Template overrides\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/local-business-seo-template-overrides\\/\",\"categories\":[\"local-business-seo\"]},\"35133\":{\"title\":\"aioseo_twitter_tags\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_twitter_tags\\/\",\"categories\":[\"filter-hooks\"]},\"35132\":{\"title\":\"aioseo_facebook_tags\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_facebook_tags\\/\",\"categories\":[\"filter-hooks\"]},\"34993\":{\"title\":\"Ignoring Case Sensitivity in Redirects\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/ignoring-case-sensitivity-in-redirects\\/\",\"categories\":[\"redirection-manager\"]},\"34983\":{\"title\":\"Ignoring the Trailing Slash in Redirects\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/ignoring-the-trailing-slash-in-redirects\\/\",\"categories\":[\"redirection-manager\"]},\"36104\":{\"title\":\"Using Query Parameters With Redirects\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/using-query-parameters-with-redirects\\/\",\"categories\":[\"redirection-manager\"]},\"30565\":{\"title\":\"aioseo_local_business_taxonomy\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_taxonomy\\/\",\"categories\":[\"filter-hooks\"]},\"36115\":{\"title\":\"Caching of Redirects in the Browser\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/caching-of-redirects-in-the-browser\\/\",\"categories\":[\"redirection-manager\"]},\"34701\":{\"title\":\"Adding WooCommerce Product Attributes to SEO Title or Description\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/adding-woocommerce-product-attributes-to-seo-title-or-description\\/\",\"categories\":[\"post-page-settings\",\"search-appearance\",\"woocommerce\"]},\"36111\":{\"title\":\"Selecting the Redirect Method in Redirects\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/selecting-the-redirect-method-in-redirects\\/\",\"categories\":[\"redirection-manager\"]},\"40115\":{\"title\":\"Redirect Manager Cannot Detect Your Server\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/redirect-manager-unknown-web-server\\/\",\"categories\":[\"redirection-manager\"]},\"36369\":{\"title\":\"Using Regex in the Redirection Manager\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/redirect-manager-regex\\/\",\"categories\":[\"redirection-manager\"]},\"31442\":{\"title\":\"Shortcode: [aioseo_local_opening_hours]\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/shortcode-aioseo_local_opening_hours\\/\",\"categories\":[\"local-business-seo\"]},\"31443\":{\"title\":\"Shortcode: [aioseo_local_locations]\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/shortcode-aioseo_local_locations\\/\",\"categories\":[\"local-business-seo\"]},\"34179\":{\"title\":\"Using the Smart Tags in Titles and Descriptions\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/using-the-smart-tags-in-titles-and-descriptions\\/\",\"categories\":[\"post-page-settings\",\"search-appearance\"]},\"31441\":{\"title\":\"Shortcode: [aioseo_local_business_info]\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/shortcode-aioseo_local_business_info\\/\",\"categories\":[\"local-business-seo\"]},\"46122\":{\"title\":\"Shortcode: [aioseo_local_map]\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/shortcode-aioseo_local_map\\/\",\"categories\":[\"local-business-seo\"]},\"33507\":{\"title\":\"What\'s The Difference Between TruSEO and Page Analysis?\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/whats-the-difference-between-truseo-and-page-analysis\\/\",\"categories\":[\"frequently-asked-questions\",\"post-page-settings\",\"truseo\"]},\"33310\":{\"title\":\"Setting Noindex for RSS Feeds\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-noindex-for-rss-feeds\\/\",\"categories\":[\"advanced-settings\",\"search-appearance\"]},\"33130\":{\"title\":\"aioseo_disable_shortcode_parsing\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_disable_shortcode_parsing\\/\",\"categories\":[\"filter-hooks\"]},\"32085\":{\"title\":\"aioseo_conflicting_shortcodes\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_conflicting_shortcodes\\/\",\"categories\":[\"filter-hooks\"]},\"31992\":{\"title\":\"aioseo_schema_graphs\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_schema_graphs\\/\",\"categories\":[\"filter-hooks\"]},\"31589\":{\"title\":\"Understanding the TruSEO Page Analysis Recommendations\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/understanding-the-truseo-page-analysis-recommendations\\/\",\"categories\":[\"post-page-settings\",\"truseo\"]},\"31456\":{\"title\":\"Function: aioseo_local_locations()\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/function-aioseo_local_locations\\/\",\"categories\":[\"local-business-seo\"]},\"31455\":{\"title\":\"Function: aioseo_local_opening_hours()\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/function-aioseo_local_opening_hours\\/\",\"categories\":[\"local-business-seo\"]},\"31451\":{\"title\":\"Function: aioseo_local_business_info()\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/function-aioseo_local_business_info\\/\",\"categories\":[\"local-business-seo\"]},\"46123\":{\"title\":\"Function: aioseo_local_map()\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/function-aioseo_local_map\\/\",\"categories\":[\"local-business-seo\"]},\"31042\":{\"title\":\"Getting Keyphrase Suggestions From Semrush\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/getting-keyphrase-suggestions-from-semrush\\/\",\"categories\":[\"post-page-settings\",\"truseo\"]},\"30773\":{\"title\":\"aioseo_local_business_address_tag_value\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_address_tag_value\\/\",\"categories\":[\"filter-hooks\"]},\"30770\":{\"title\":\"aioseo_local_business_address_tags\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_address_tags\\/\",\"categories\":[\"filter-hooks\"]},\"30567\":{\"title\":\"aioseo_local_business_get_locations_args\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_get_locations_args\\/\",\"categories\":[\"filter-hooks\"]},\"30752\":{\"title\":\"aioseo_local_business_get_location\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_local_business_get_location\\/\",\"categories\":[\"filter-hooks\"]},\"30728\":{\"title\":\"Unable to Save Settings Due to Cloudflare Firewall Rules\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/unable-to-save-settings-due-to-cloudflare-firewall-rules\\/\",\"categories\":[\"troubleshooting\"]},\"30318\":{\"title\":\"aioseo_flush_output_buffer\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_flush_output_buffer\\/\",\"categories\":[\"filter-hooks\"]},\"18813\":{\"title\":\"Installing All in One SEO Pro\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/installing-all-in-one-seo-pro\\/\",\"categories\":[\"getting-started\",\"installation\"]},\"18973\":{\"title\":\"Beginners Guide for All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/quick-start-guide\\/\",\"categories\":[\"getting-started\"]},\"18820\":{\"title\":\"Setting the SEO Title and Description for Your Content\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-seo-title-and-description-for-your-content\\/\",\"categories\":[\"getting-started\",\"post-page-settings\"]},\"18902\":{\"title\":\"How to Create an XML Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-create-an-xml-sitemap\\/\",\"categories\":[\"getting-started\",\"xml-sitemap\"]},\"18859\":{\"title\":\"Beginners Guide to Social Networks Settings for Facebook\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/beginners-guide-to-social-networks-settings-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"getting-started\",\"social-networks\"]},\"18857\":{\"title\":\"Beginners Guide to Social Networks Settings for Twitter\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/beginners-guide-to-social-networks-settings-for-twitter\\/\",\"categories\":[\"getting-started\",\"social-networks\",\"twitter-settings\"]},\"29991\":{\"title\":\"aioseo_disable_link_format\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_disable_link_format\\/\",\"categories\":[\"filter-hooks\"]},\"27841\":{\"title\":\"aioseo_thumbnail_size\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_thumbnail_size\\/\",\"categories\":[\"filter-hooks\"]},\"27844\":{\"title\":\"Displaying Additional Twitter Data for Written By and Reading Time\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/displaying-additional-twitter-data-for-written-by-and-reading-time\\/\",\"categories\":[\"social-networks\",\"twitter-settings\"]},\"27494\":{\"title\":\"aioseo_meta_views\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_meta_views\\/\",\"categories\":[\"filter-hooks\"]},\"27363\":{\"title\":\"Using the SEO Analysis Tool\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/using-the-seo-analysis-tool\\/\",\"categories\":[\"seo-analysis\"]},\"27272\":{\"title\":\"Importing Settings From Other Plugins\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/importing-settings-from-other-plugins\\/\",\"categories\":[\"importer-exporter\",\"seo-data-importer\"]},\"27268\":{\"title\":\"Backing Up and Restoring AIOSEO Settings\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/backing-up-and-restoring-aioseo-settings\\/\",\"categories\":[\"importer-exporter\"]},\"27259\":{\"title\":\"Importing and Exporting AIOSEO Settings and Meta Data\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/importing-and-exporting-aioseo-settings-and-meta-data\\/\",\"categories\":[\"importer-exporter\"]},\"26641\":{\"title\":\"Setting FAQ Page Schema Markup in Your Content\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-faq-page-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"26640\":{\"title\":\"Setting Software Application Schema Markup in Your Content\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-software-application-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"26639\":{\"title\":\"Setting Recipe Schema Markup in Your Content\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-recipe-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"26638\":{\"title\":\"Setting Product Schema Markup in Your Content\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-product-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"26637\":{\"title\":\"Setting Course Schema Markup in Your Content\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-course-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"26450\":{\"title\":\"Blank Title Formats Have Been Detected\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/blank-title-formats-detected\\/\",\"categories\":[\"troubleshooting\"]},\"25802\":{\"title\":\"aioseo_sitemap_additional_pages\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_sitemap_additional_pages\\/\",\"categories\":[\"filter-hooks\"]},\"24928\":{\"title\":\"Including Custom Fields in the TruSEO Page Analysis\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/including-custom-fields-in-the-seo-page-analysis\\/\",\"categories\":[\"content-type-settings\",\"search-appearance\",\"truseo\"]},\"24285\":{\"title\":\"aioseo_prev_link\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_prev_link\\/\",\"categories\":[\"filter-hooks\"]},\"24284\":{\"title\":\"aioseo_next_link\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_next_link\\/\",\"categories\":[\"filter-hooks\"]},\"23717\":{\"title\":\"aioseo_canonical_url\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_canonical_url\\/\",\"categories\":[\"filter-hooks\"]},\"23604\":{\"title\":\"aioseo_schema_breadcrumbs_home\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_schema_breadcrumbs_home\\/\",\"categories\":[\"filter-hooks\"]},\"23448\":{\"title\":\"aioseo_schema_disable\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_schema_disable\\/\",\"categories\":[\"filter-hooks\"]},\"23447\":{\"title\":\"aioseo_robots_meta\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_robots_meta\\/\",\"categories\":[\"filter-hooks\"]},\"23446\":{\"title\":\"aioseo_disable\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_disable\\/\",\"categories\":[\"filter-hooks\"]},\"23441\":{\"title\":\"aioseo_generate_descriptions_from_content\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_generate_descriptions_from_content\\/\",\"categories\":[\"filter-hooks\"]},\"23438\":{\"title\":\"aioseo_disable_title_rewrites\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_disable_title_rewrites\\/\",\"categories\":[\"filter-hooks\"]},\"23437\":{\"title\":\"aioseo_post_metabox_priority\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_post_metabox_priority\\/\",\"categories\":[\"filter-hooks\"]},\"23436\":{\"title\":\"aioseo_show_seo_news\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_show_seo_news\\/\",\"categories\":[\"filter-hooks\"]},\"23433\":{\"title\":\"aioseo_show_in_admin_bar\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_show_in_admin_bar\\/\",\"categories\":[\"filter-hooks\"]},\"23423\":{\"title\":\"aioseo_keywords\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_keywords\\/\",\"categories\":[\"filter-hooks\"]},\"23350\":{\"title\":\"aioseo_title\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_title\\/\",\"categories\":[\"filter-hooks\"]},\"23351\":{\"title\":\"aioseo_description\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo_description\\/\",\"categories\":[\"filter-hooks\"]},\"23415\":{\"title\":\"Troubleshooting Action Scheduler issues with AIOSEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/troubleshooting-action-scheduler-issues\\/\",\"categories\":[\"troubleshooting\"]},\"20504\":{\"title\":\"Where Did my SEO Keywords go in All in One SEO v4.0?\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/where-did-my-seo-keywords-go-in-all-in-one-seo-v4-0\\/\",\"categories\":[\"advanced-settings\",\"frequently-asked-questions\",\"post-page-settings\",\"search-appearance\"]},\"18792\":{\"title\":\"Sitemap rewrite rules for NGINX\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/xml-sitemap-rewrite-rules-for-nginx\\/\",\"categories\":[\"rss-sitemap\",\"video-sitemap\",\"xml-sitemap\"]},\"18793\":{\"title\":\"Unfiltered HTML Capability is Required\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/unfiltered-html-capability\\/\",\"categories\":[\"troubleshooting\"]},\"18794\":{\"title\":\"Deprecated Open Graph Settings in All in One SEO version 4.0\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/deprecated-opengraph-settings\\/\",\"categories\":[\"social-networks\"]},\"18795\":{\"title\":\"Why does the character counter for SEO titles show a different count?\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/why-does-the-character-counter-for-seo-titles-show-a-different-count\\/\",\"categories\":[\"frequently-asked-questions\",\"post-page-settings\"]},\"18796\":{\"title\":\"Adding nofollow, sponsored, UGC and title attributes to links\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/adding-nofollow-sponsored-and-title-attributes-to-links\\/\",\"categories\":[\"post-page-settings\"]},\"18797\":{\"title\":\"Setting the SEO for WooCommerce Content\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-seo-for-woocommerce-content\\/\",\"categories\":[\"search-appearance\",\"woocommerce\"]},\"18798\":{\"title\":\"All in One SEO uses the WordPress REST API\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/aioseo-uses-rest-api\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18799\":{\"title\":\"How to Remove All Settings and Data When you Uninstall All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-remove-all-settings-and-data-when-you-uninstall-all-in-one-seo\\/\",\"categories\":[\"advanced-settings\",\"general-settings\"]},\"18800\":{\"title\":\"How to Disable TruSEO Content Analysis\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-disable-truseo-content-analysis\\/\",\"categories\":[\"advanced-settings\",\"general-settings\",\"truseo\"]},\"18801\":{\"title\":\"Enabling Automatic Updates for All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/enabling-automatic-updates-for-all-in-one-seo\\/\",\"categories\":[\"advanced-settings\",\"general-settings\"]},\"18802\":{\"title\":\"Hiding Plugin Notifications in the Notifications Center\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/hiding-plugin-notifications-in-the-notifications-center\\/\",\"categories\":[\"advanced-settings\",\"general-settings\"]},\"18803\":{\"title\":\"How to Hide the AIOSEO Settings on the Edit Content Screens in WordPress\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-hide-the-aioseo-settings-on-the-edit-content-screens-in-wordpress\\/\",\"categories\":[\"advanced-settings\",\"content-type-settings\",\"post-page-settings\",\"search-appearance\"]},\"18804\":{\"title\":\"Setting Noindex and Nofollow on Paginated Content\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-noindex-and-nofollow-on-paginated-content\\/\",\"categories\":[\"advanced-settings\",\"search-appearance\"]},\"18805\":{\"title\":\"Setting Unique SEO Titles and Descriptions for Paginated Content\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-unique-seo-titles-and-descriptions-for-paginated-content\\/\",\"categories\":[\"advanced-settings\",\"search-appearance\"]},\"18806\":{\"title\":\"Setting the SEO Title and Description Format for Custom Post Type Archives\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-custom-post-type-archives\\/\",\"categories\":[\"archive-settings\",\"search-appearance\"]},\"18807\":{\"title\":\"Keyword Settings\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/keyword-settings\\/\",\"categories\":[\"advanced-settings\",\"search-appearance\"]},\"18808\":{\"title\":\"Using the Quick Edit Feature in All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/using-the-quick-edit-feature-in-all-in-one-seo\\/\",\"categories\":[\"post-page-settings\"]},\"18809\":{\"title\":\"How to FTP to your web server\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-ftp-to-your-web-server\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18810\":{\"title\":\"How to manually install All in One SEO Pro when the file is too big\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-manually-install-all-in-one-seo-pro-when-the-file-is-too-big\\/\",\"categories\":[\"frequently-asked-questions\",\"installation\"]},\"18811\":{\"title\":\"How to Upgrade From All in One SEO Lite to Pro\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-upgrade-from-all-in-one-seo-lite-to-pro\\/\",\"categories\":[\"getting-started\",\"installation\"]},\"18812\":{\"title\":\"Installation instructions for WordPress.com Users\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/installation-instructions-for-wordpress-com-users\\/\",\"categories\":[\"installation\"]},\"18814\":{\"title\":\"Configuring the Twitter Settings for Your Content\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/configuring-the-twitter-settings-for-your-content\\/\",\"categories\":[\"post-page-settings\",\"social-networks\",\"twitter-settings\"]},\"18815\":{\"title\":\"Configuring the Facebook Settings for Your Content\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/configuring-the-facebook-settings-for-your-content\\/\",\"categories\":[\"facebook-settings\",\"post-page-settings\",\"social-networks\"]},\"18816\":{\"title\":\"Hiding the AIOSEO Column on Taxonomy Screens\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/hiding-the-aioseo-column-on-taxonomy-screens\\/\",\"categories\":[\"advanced-settings\",\"category-tag-settings\",\"general-settings\"]},\"18817\":{\"title\":\"Setting the Schema Type for Individual Content\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-schema-type-for-individual-content\\/\",\"categories\":[\"post-page-settings\",\"schema-settings\"]},\"18818\":{\"title\":\"Setting the Sitemap Priority and Frequency for Individual Content\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-sitemap-priority-and-frequency-for-individual-content\\/\",\"categories\":[\"post-page-settings\",\"xml-sitemap\"]},\"18819\":{\"title\":\"Setting the Robots Meta for Individual Content\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-robots-meta-for-individual-content\\/\",\"categories\":[\"post-page-settings\"]},\"18821\":{\"title\":\"Individual Post\\/Page Settings\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/post-settings\\/\",\"categories\":[\"post-page-settings\"]},\"18822\":{\"title\":\"Bad Bot Blocker\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/bad-bot-blocker\\/\",\"categories\":[\"bad-bot-blocker\"]},\"18823\":{\"title\":\"How to Fix a 404 Error When Viewing Your Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-fix-a-404-error-when-viewing-your-sitemap\\/\",\"categories\":[\"frequently-asked-questions\",\"google-news-sitemap\",\"rss-sitemap\",\"troubleshooting\",\"video-sitemap\",\"xml-sitemap\"]},\"18825\":{\"title\":\"When to use NOINDEX or the robots.txt?\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/when-to-use-noindex-or-the-robots-txt\\/\",\"categories\":[\"frequently-asked-questions\",\"robots-txt\",\"search-appearance\"]},\"18826\":{\"title\":\"Support for Videos Embedded Using the Media Library\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/support-for-videos-embedded-using-the-media-library\\/\",\"categories\":[\"video-sitemap\"]},\"18827\":{\"title\":\"Supported Videos\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/supported-videos\\/\",\"categories\":[\"video-sitemap\"]},\"18828\":{\"title\":\"Performance Settings\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/performance-settings\\/\",\"categories\":[\"performance\"]},\"18830\":{\"title\":\"Setting the SEO Title and Description Format for Author and Date Archives\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-author-and-date-archives\\/\",\"categories\":[\"archive-settings\",\"search-appearance\"]},\"18831\":{\"title\":\"Custom Fields in Titles and Descriptions\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/custom-fields-in-titles-and-descriptions\\/\",\"categories\":[\"content-type-settings\",\"post-page-settings\",\"search-appearance\"]},\"18832\":{\"title\":\"Using the Focus Keyphrase to Analyze Your Content\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/using-the-focus-keyphrase-to-analyze-your-content\\/\",\"categories\":[\"frequently-asked-questions\",\"post-page-settings\",\"truseo\"]},\"18833\":{\"title\":\"Using the Robots.txt Tool in All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/using-the-robots-txt-tool-in-all-in-one-seo\\/\",\"categories\":[\"robots-txt\"]},\"18834\":{\"title\":\"Using the Robots Meta Settings in All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/using-the-robots-meta-settings-in-all-in-one-seo\\/\",\"categories\":[\"advanced-settings\",\"archive-settings\",\"category-tag-settings\",\"content-type-settings\",\"media-settings\",\"post-page-settings\",\"search-appearance\",\"taxonomy-settings\"]},\"18835\":{\"title\":\"Noindex Settings in All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/noindex-settings\\/\",\"categories\":[\"search-appearance\"]},\"18836\":{\"title\":\"Configuring the Schema Settings in All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/configuring-the-schema-settings-in-all-in-one-seo\\/\",\"categories\":[\"schema-settings\",\"search-appearance\"]},\"18837\":{\"title\":\"A Guide to Schema.org Markup for Rich Snippets\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/a-guide-to-schema-org-markup-for-rich-snippets\\/\",\"categories\":[\"general-seo-topics\",\"schema-settings\"]},\"18838\":{\"title\":\"Hiding the AIOSEO Admin Bar Menu\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/hiding-the-aioseo-admin-bar-menu\\/\",\"categories\":[\"advanced-settings\",\"general-settings\"]},\"18839\":{\"title\":\"Hiding the AIOSEO Dashboard Widget\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/hiding-the-aioseo-dashboard-widget\\/\",\"categories\":[\"advanced-settings\",\"general-settings\"]},\"18840\":{\"title\":\"Hiding the AIOSEO Column on All Posts Screens\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/hiding-the-aioseo-column-on-all-posts-screens\\/\",\"categories\":[\"advanced-settings\",\"general-settings\"]},\"18841\":{\"title\":\"Display Settings\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/display-settings\\/\",\"categories\":[\"display-settings\"]},\"18842\":{\"title\":\"Setting the SEO Title and Description Format for Media Attachments\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-media-attachments\\/\",\"categories\":[\"media-settings\",\"search-appearance\"]},\"18843\":{\"title\":\"Showing or Hiding Your Content in Search Results\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/showing-or-hiding-your-content-in-search-results\\/\",\"categories\":[\"archive-settings\",\"category-tag-settings\",\"content-type-settings\",\"media-settings\",\"post-page-settings\",\"search-appearance\",\"taxonomy-settings\"]},\"18844\":{\"title\":\"Content Type Settings\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/custom-post-type-settings\\/\",\"categories\":[\"content-type-settings\",\"search-appearance\"]},\"18845\":{\"title\":\"What Are Media Attachments and Should I Submit Them to Search Engines?\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/what-are-media-attachments-and-should-i-submit-them-to-search-engines\\/\",\"categories\":[\"frequently-asked-questions\",\"media-settings\"]},\"18846\":{\"title\":\"Setting the SEO Title and Description Format for Custom Taxonomies\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-custom-taxonomies\\/\",\"categories\":[\"category-tag-settings\",\"search-appearance\",\"taxonomy-settings\"]},\"18847\":{\"title\":\"Setting the SEO Title and Description Format for Custom Post Types\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-custom-post-types\\/\",\"categories\":[\"content-type-settings\",\"search-appearance\"]},\"18848\":{\"title\":\"Setting the SEO Title and Description Format for Tags\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-tags\\/\",\"categories\":[\"category-tag-settings\",\"search-appearance\",\"taxonomy-settings\"]},\"18849\":{\"title\":\"Setting the SEO Title and Description Format for Categories\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-categories\\/\",\"categories\":[\"category-tag-settings\",\"search-appearance\",\"taxonomy-settings\"]},\"18850\":{\"title\":\"Setting the SEO Title and Description Format for Pages\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-pages\\/\",\"categories\":[\"content-type-settings\",\"post-page-settings\",\"search-appearance\"]},\"18851\":{\"title\":\"Setting the SEO Title and Description Format for Posts\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-posts\\/\",\"categories\":[\"content-type-settings\",\"post-page-settings\",\"search-appearance\"]},\"18852\":{\"title\":\"Title Settings\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/title-settings\\/\",\"categories\":[\"search-appearance\"]},\"18853\":{\"title\":\"Setting the SEO for Your Home Page\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-seo-for-your-home-page\\/\",\"categories\":[\"home-page-settings\",\"search-appearance\"]},\"18854\":{\"title\":\"General Settings\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/general-settings\\/\",\"categories\":[\"general-settings\"]},\"18855\":{\"title\":\"How to Add Your License Key in All in One SEO Pro\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-add-your-license-key-in-all-in-one-seo-pro\\/\",\"categories\":[\"general-settings\",\"getting-started\"]},\"18856\":{\"title\":\"Canonical URLs in All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/canonical-urls-in-all-in-one-seo\\/\",\"categories\":[\"advanced-settings\",\"search-appearance\"]},\"18858\":{\"title\":\"Adding non-WordPress Content to the Video Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/adding-non-wordpress-content-to-the-video-sitemap\\/\",\"categories\":[\"video-sitemap\"]},\"18860\":{\"title\":\"Troubleshooting Problems With Sharing Content on Twitter\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/troubleshooting-problems-with-sharing-content-on-twitter\\/\",\"categories\":[\"social-networks\",\"troubleshooting\",\"twitter-settings\"]},\"18861\":{\"title\":\"Troubleshooting Problems With Sharing Content on Facebook\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/troubleshooting-problems-with-sharing-content-on-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\",\"troubleshooting\"]},\"18862\":{\"title\":\"Getting Started With Pinterest Rich Pins\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/using-social-meta-for-pinterest-rich-pins\\/\",\"categories\":[\"pinterest-settings\",\"social-networks\"]},\"18863\":{\"title\":\"Setting the Content Publisher for Twitter\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-content-publisher-for-twitter\\/\",\"categories\":[\"social-networks\",\"twitter-settings\"]},\"18865\":{\"title\":\"Submitting a Sitemap to Yandex\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/submitting-a-sitemap-to-yandex\\/\",\"categories\":[\"rss-sitemap\",\"video-sitemap\",\"xml-sitemap\"]},\"18866\":{\"title\":\"Submitting a Sitemap to Bing\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/submitting-a-sitemap-to-bing\\/\",\"categories\":[\"bing-webmaster-tools\",\"rss-sitemap\",\"video-sitemap\",\"xml-sitemap\"]},\"18867\":{\"title\":\"Submitting a Sitemap to Google\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/submitting-a-sitemap-to-google\\/\",\"categories\":[\"google-news-sitemap\",\"google-search-console\",\"rss-sitemap\",\"video-sitemap\",\"xml-sitemap\"]},\"18868\":{\"title\":\"Including Date and Author Archives in Your XML Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/including-date-and-author-archives-in-your-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"18869\":{\"title\":\"Choosing Which Content to Include in Your Video Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/choosing-which-content-to-include-in-your-video-sitemap\\/\",\"categories\":[\"video-sitemap\"]},\"18870\":{\"title\":\"Choosing Which Content to Include in Your XML Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/choosing-which-content-to-include-in-your-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"18871\":{\"title\":\"Using Sitemap Indexes and Pagination\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/using-sitemap-indexes-and-pagination\\/\",\"categories\":[\"video-sitemap\",\"xml-sitemap\"]},\"18872\":{\"title\":\"How to Disable Sitemaps in All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-disable-sitemaps-in-all-in-one-seo\\/\",\"categories\":[\"google-news-sitemap\",\"rss-sitemap\",\"video-sitemap\",\"xml-sitemap\"]},\"18873\":{\"title\":\"Baidu Webmaster Tools Verification\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/baidu-webmaster-tools-verification\\/\",\"categories\":[\"webmaster-tools\",\"webmaster-verification\"]},\"18874\":{\"title\":\"Setting Twitter Social Meta for Your Homepage\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-twitter-social-meta-for-your-homepage\\/\",\"categories\":[\"home-page-settings\",\"social-networks\",\"twitter-settings\"]},\"18875\":{\"title\":\"Setting Facebook Social Meta for Your Homepage\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-facebook-social-meta-for-your-homepage\\/\",\"categories\":[\"facebook-settings\",\"home-page-settings\",\"social-networks\"]},\"18876\":{\"title\":\"Setting the Card Type for Twitter\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-card-type-for-twitter\\/\",\"categories\":[\"social-networks\",\"twitter-settings\"]},\"18877\":{\"title\":\"Setting the Object Types for Facebook\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-object-types-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18879\":{\"title\":\"Setting the Priority and Frequency for Content in the Video Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-priority-and-frequency-for-content-in-the-video-sitemap\\/\",\"categories\":[\"video-sitemap\"]},\"18880\":{\"title\":\"Setting the Priority and Frequency for Content in the XML Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-priority-and-frequency-for-content-in-the-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"18881\":{\"title\":\"How to Exclude Content from Your RSS Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-exclude-content-from-your-rss-sitemap\\/\",\"categories\":[\"rss-sitemap\"]},\"18882\":{\"title\":\"How to Exclude Content from Your Google News Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-exclude-content-from-your-google-news-sitemap\\/\",\"categories\":[\"google-news-sitemap\"]},\"18883\":{\"title\":\"How to Exclude Content from Your Video Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-exclude-content-from-your-video-sitemap\\/\",\"categories\":[\"video-sitemap\"]},\"18884\":{\"title\":\"How to Exclude Content from Your XML Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-exclude-content-from-your-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"18885\":{\"title\":\"Setting Article Tags for Facebook\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-article-tags-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18886\":{\"title\":\"Setting the Content Author for Twitter\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-content-author-for-twitter\\/\",\"categories\":[\"social-networks\",\"twitter-settings\"]},\"18887\":{\"title\":\"Setting the Content Author for Facebook\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-content-author-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18888\":{\"title\":\"Setting the Content Publisher for Facebook\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-the-content-publisher-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18889\":{\"title\":\"How to Create a Google News Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-create-a-google-news-sitemap\\/\",\"categories\":[\"google-news-sitemap\"]},\"18890\":{\"title\":\"Including Videos in Custom Fields in Your Video Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/including-videos-in-custom-fields-in-your-video-sitemap\\/\",\"categories\":[\"video-sitemap\"]},\"18891\":{\"title\":\"What is a Dynamically Generated Sitemap and Why is it Better to Use?\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/what-is-a-dynamically-generated-sitemap-and-why-is-it-better-to-use\\/\",\"categories\":[\"frequently-asked-questions\",\"video-sitemap\",\"xml-sitemap\"]},\"18892\":{\"title\":\"How to Create a Video Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-create-a-video-sitemap\\/\",\"categories\":[\"video-sitemap\"]},\"18893\":{\"title\":\"Adding Your Facebook Admin ID\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/adding-your-facebook-admin-id\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18894\":{\"title\":\"Adding Your Facebook App ID\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/adding-your-facebook-app-id\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18895\":{\"title\":\"Access Control Settings\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/access-control-settings\\/\",\"categories\":[\"access-control-settings\"]},\"18896\":{\"title\":\"Advanced Settings for Google Analytics\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/advanced-settings-for-google-analytics\\/\",\"categories\":[\"google-analytics\"]},\"18897\":{\"title\":\"Miscellaneous Site Verification\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/miscellaneous-site-verification\\/\",\"categories\":[\"webmaster-tools\",\"webmaster-verification\"]},\"18898\":{\"title\":\"Displaying Your Social Media Profiles in Knowledge Panel\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/displaying-your-social-media-profiles-in-knowledge-panel\\/\",\"categories\":[\"schema-settings\",\"social-networks\"]},\"18899\":{\"title\":\"How to Create an RSS Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-create-an-rss-sitemap\\/\",\"categories\":[\"rss-sitemap\"]},\"18900\":{\"title\":\"Excluding Images from the XML Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/excluding-images-from-the-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"18901\":{\"title\":\"Adding non-WordPress Content to the XML Sitemap\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/adding-non-wordpress-content-to-the-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"18903\":{\"title\":\"Setting a Default Image for Twitter\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-a-default-image-for-twitter\\/\",\"categories\":[\"social-networks\",\"twitter-settings\"]},\"18904\":{\"title\":\"Setting a Default Image for Facebook\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-a-default-image-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18905\":{\"title\":\"Setting a Title Separator\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-a-title-separator\\/\",\"categories\":[\"search-appearance\"]},\"18906\":{\"title\":\"How to Protect Your Content With RSS Content Settings\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-protect-your-content-with-rss-content-settings\\/\",\"categories\":[\"rss-content-settings\"]},\"18907\":{\"title\":\"How to Connect Your Site with Google Tag Manager\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-connect-your-site-with-google-tag-manager\\/\",\"categories\":[\"google-analytics\"]},\"18908\":{\"title\":\"How to Connect Your Site with Google Analytics\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-connect-your-site-with-google-analytics\\/\",\"categories\":[\"google-analytics\"]},\"18909\":{\"title\":\"How to Verify Your Site with Pinterest\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-verify-your-site-with-pinterest\\/\",\"categories\":[\"pinterest-settings\",\"social-networks\",\"webmaster-tools\",\"webmaster-verification\"]},\"18910\":{\"title\":\"How to Verify Your Site with Yandex Webmaster Tools\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-verify-your-site-with-yandex-webmaster-tools\\/\",\"categories\":[\"webmaster-tools\",\"webmaster-verification\"]},\"18911\":{\"title\":\"How to Verify Your Site with Bing Webmaster Tools\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-verify-your-site-with-bing-webmaster-tools\\/\",\"categories\":[\"bing-webmaster-tools\",\"webmaster-tools\",\"webmaster-verification\"]},\"18912\":{\"title\":\"How to Verify Your Site with Google Search Console\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-verify-your-site-with-google-search-console\\/\",\"categories\":[\"google-search-console\",\"webmaster-tools\",\"webmaster-verification\"]},\"18913\":{\"title\":\"Usage Tracking\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/usage-tracking\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18915\":{\"title\":\"How do I use All in One SEO in my language?\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-do-i-use-all-in-one-seo-in-my-language\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18920\":{\"title\":\"NGINX rewrite rules for Robots.txt\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/nginx-rewrite-rules-for-robots-txt\\/\",\"categories\":[\"robots-txt\"]},\"18927\":{\"title\":\"Supported PHP Versions for All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/supported-php-version\\/\",\"categories\":[\"troubleshooting\"]},\"18929\":{\"title\":\"Using a different CDN for script enqueuing\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/using-a-different-cdn-for-script-enqueuing\\/\",\"categories\":[\"troubleshooting\"]},\"18930\":{\"title\":\"How do I get Google to show sitelinks for my site?\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-do-i-get-google-to-show-sitelinks-for-my-site\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18954\":{\"title\":\"How does the import process for SEO data work?\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-does-the-import-process-for-seo-data-work\\/\",\"categories\":[\"frequently-asked-questions\",\"importer-exporter\"]},\"18960\":{\"title\":\"Robots.txt Editor for Multisite Networks\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/robots-txt-editor-for-multisite-networks\\/\",\"categories\":[\"robots-txt\"]},\"18961\":{\"title\":\"What are the minimum requirements for All in One SEO?\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/what-are-the-minimum-requirements-for-all-in-one-seo-pack\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18964\":{\"title\":\"How do I use your API code examples?\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-do-i-use-your-api-code-examples\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18969\":{\"title\":\"XML Parsing Error - This page contains the following errors\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/this-page-contains-the-following-errors\\/\",\"categories\":[\"google-news-sitemap\",\"troubleshooting\",\"video-sitemap\",\"xml-sitemap\"]},\"18972\":{\"title\":\"The File Editor or Robots.txt modules are missing\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/the-file-editor-or-robots-txt-modules-are-missing\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18977\":{\"title\":\"Excluding the XML Sitemap from caching\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/excluding-the-xml-sitemap-from-caching\\/\",\"categories\":[\"xml-sitemap\"]},\"18982\":{\"title\":\"Why doesn\'t the title and description I set appear in search results?\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/why-doesnt-the-title-and-description-i-set-appear-in-search-results\\/\",\"categories\":[\"frequently-asked-questions\",\"post-page-settings\"]},\"18983\":{\"title\":\"Can I remove the date from Google search results?\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/can-i-remove-the-date-from-google-search-results\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18985\":{\"title\":\"Setting up HTTPS SSL\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/setting-up-https-ssl\\/\",\"categories\":[\"general-seo-topics\"]},\"18995\":{\"title\":\"How to Increase the WordPress PHP Memory Limit\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/increase-wordpress-php-memory-limit\\/\",\"categories\":[\"troubleshooting\"]},\"19002\":{\"title\":\"Checking Index Status in Google Search Results\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/checking-index-status-in-google-search-results\\/\",\"categories\":[\"general-seo-topics\"]},\"19006\":{\"title\":\"SEO Data Importer\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/seo-data-importer\\/\",\"categories\":[\"seo-data-importer\"]},\"19008\":{\"title\":\"How to troubleshoot issues with All in One SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/how-to-troubleshoot-issues-with-all-in-one-seo-pack\\/\",\"categories\":[\"troubleshooting\"]},\"19010\":{\"title\":\"Quality Guidelines for SEO Titles and Descriptions\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/quality-guidelines-for-seo-titles-and-descriptions\\/\",\"categories\":[\"general-seo-topics\"]},\"19016\":{\"title\":\"Top Tips for Good On-Page SEO\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/top-tips-for-good-on-page-seo\\/\",\"categories\":[\"general-seo-topics\"]},\"19017\":{\"title\":\"Meta Descriptions\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/meta-descriptions\\/\",\"categories\":[\"general-seo-topics\"]},\"19028\":{\"title\":\"What is SEO meta?\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/what-is-seo-meta\\/\",\"categories\":[\"getting-started\"]},\"19029\":{\"title\":\"Social Meta Settings - Individual Page\\/Post Settings\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/social-meta-settings-individual-pagepost-settings\\/\",\"categories\":[\"post-page-settings\",\"social-networks\"]},\"19030\":{\"title\":\"File Editor Module\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/file-editor-module\\/\",\"categories\":[\"file-editor\"]},\"19031\":{\"title\":\"Social Meta Settings\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/social-meta-module\\/\",\"categories\":[\"social-networks\"]},\"19032\":{\"title\":\"Importer & Exporter Module\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/importer-exporter-module\\/\",\"categories\":[\"importer-exporter\"]},\"19034\":{\"title\":\"Feature Manager\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/feature-manager\\/\",\"categories\":[\"feature-manager\"]},\"19035\":{\"title\":\"Advanced Settings for All in One SEO Pack\",\"url\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentaioseo.com\\/docs\\/all-in-one-seo-pack-advanced-settings\\/\",\"categories\":[\"advanced-settings\"]}}}\";','2022-08-25 12:29:53','2022-08-18 12:29:53','2022-08-18 12:29:53');
/*!40000 ALTER TABLE `cuB_aioseo_cache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_aioseo_links`
--

DROP TABLE IF EXISTS `cuB_aioseo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_aioseo_links` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL,
  `linked_post_id` bigint(20) unsigned DEFAULT NULL,
  `internal` tinyint(1) NOT NULL DEFAULT '0',
  `external` tinyint(1) NOT NULL DEFAULT '0',
  `affiliate` tinyint(1) NOT NULL DEFAULT '0',
  `url` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `hostname` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `anchor` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `phrase` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `phrase_html` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `paragraph` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `paragraph_html` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created` datetime NOT NULL,
  `updated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `ndx_aioseo_links_post_id` (`post_id`),
  KEY `ndx_aioseo_links_hostname` (`hostname`(10))
) ENGINE=InnoDB AUTO_INCREMENT=357 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_aioseo_links`
--

LOCK TABLES `cuB_aioseo_links` WRITE;
/*!40000 ALTER TABLE `cuB_aioseo_links` DISABLE KEYS */;
INSERT INTO `cuB_aioseo_links` VALUES (1,45971,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.thomsonreuters.com/en/privacy-statement.html','thomsonreuters.com','Thomson Reuters Privacy Statement','To learn more about the Thomson Reuters privacy policy and the data that might be collected, please visit: Thomson Reuters Privacy Statement.','To learn more about the Thomson Reuters privacy policy and the data that might be collected, please visit: <a href=\"https://thelomad.com/getmad.today/wp-contentwww.thomsonreuters.com/en/privacy-statement.html\" target=\"_blank\" rel=\"noopener noreferrer\">Thomson Reuters Privacy Statement</a>.','Our law firm partners with FindLaw, a Thomson Reuters business. To learn more about the Thomson Reuters privacy policy and the data that might be collected, please visit: Thomson Reuters Privacy Statement.','Our law firm partners with FindLaw, a Thomson Reuters business. To learn more about the Thomson Reuters privacy policy and the data that might be collected, please visit: <a href=\"https://thelomad.com/getmad.today/wp-contentwww.thomsonreuters.com/en/privacy-statement.html\" target=\"_blank\" rel=\"noopener noreferrer\">Thomson Reuters Privacy Statement</a>.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(2,46166,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/reporter/3dseries/2007/2007_07498.htm','nycourts.gov','Burns v. Varialle, 9 N.Y.3d 207, 879 N.E.2d 140, 849 N.Y.S.2d 1.','Melissa has extensive appellate experience and has briefed well over 50 cases at various appellate divisions including successfully arguing Burns v. Varialle, 9 N.Y.3d 207, 879 N.E.2d 140, 849 N.Y.S.2d 1.','Melissa has extensive appellate experience and has briefed well over 50 cases at various appellate divisions including successfully arguing <a href=\"https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/reporter/3dseries/2007/2007_07498.htm\" target=\"_blank\" rel=\"noopener\">Burns v. Varialle, 9 N.Y.3d 207, 879 N.E.2d 140, 849 N.Y.S.2d 1.</a>','Melissa has extensive appellate experience and has briefed well over 50 cases at various appellate divisions including successfully arguing Burns v. Varialle, 9 N.Y.3d 207, 879 N.E.2d 140, 849 N.Y.S.2d 1.','Melissa has extensive appellate experience and has briefed well over 50 cases at various appellate divisions including successfully arguing Burns v. Varialle, 9 N.Y.3d 207, 879 N.E.2d 140, 849 N.Y.S.2d 1.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(3,46222,45927,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/contact/','3602675.findlaw5.flsitebuilder.com','online contact form','To contact us, call [nap_phone id=\"LOCAL-REGULAR-NUMBER-1\"] or fill out our online contact form.','To contact us, call [nap_phone id=\"LOCAL-REGULAR-NUMBER-1\"] or fill out our <a href=\"/contact/\">online contact form</a>.','To contact us, call [nap_phone id=\"LOCAL-REGULAR-NUMBER-1\"] or fill out our online contact form.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Kristen_Degnan_pp.jpg\" url=\"/about/kristen-b-degnan/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/about/kristen-b-degnan/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]Kristen B. Degnan[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]Of Counsel','To contact us, call [nap_phone id=\"LOCAL-REGULAR-NUMBER-1\"] or fill out our <a href=\"/contact/\">online contact form</a>.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Kristen_Degnan_pp.jpg\" url=\"/about/kristen-b-degnan/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/about/kristen-b-degnan/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h3>Kristen B. Degnan</h3>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h4>Of Counsel','2022-04-04 07:15:10','2022-04-04 07:15:10'),(4,46222,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/kristen-b-degnan/','3602675.findlaw5.flsitebuilder.com','Read more','Read more','<a role=\"link\" href=\"/about/kristen-b-degnan/\">Read more</a>','Kristen Degnan is a trial attorney experienced in civil defense litigation in the areas of premises and automobile liability, lead paint, labor law, products liability, No-fault and toxic torts. Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row3\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Teresa_Cleary_pp.jpg\" url=\"/about/teresa-cleary/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/about/teresa-cleary/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]Teresa Cleary[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]Paralegal','Kristen Degnan is a trial attorney experienced in civil defense litigation in the areas of premises and automobile liability, lead paint, labor law, products liability, No-fault and toxic torts. <a role=\"link\" href=\"/about/kristen-b-degnan/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row3\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Teresa_Cleary_pp.jpg\" url=\"/about/teresa-cleary/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/about/teresa-cleary/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h3>Teresa Cleary</h3>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h4>Paralegal','2022-04-04 07:15:10','2022-04-04 07:15:10'),(5,46222,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/teresa-cleary/','3602675.findlaw5.flsitebuilder.com','Read more','Read more','<a role=\"link\" href=\"/about/teresa-cleary/\">Read more</a>','Kristen Degnan is a trial attorney experienced in civil defense litigation in the areas of premises and automobile liability, lead paint, labor law, products liability, No-fault and toxic torts. Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row3\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Teresa_Cleary_pp.jpg\" url=\"/about/teresa-cleary/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/about/teresa-cleary/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]Teresa Cleary[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]Paralegal','Kristen Degnan is a trial attorney experienced in civil defense litigation in the areas of premises and automobile liability, lead paint, labor law, products liability, No-fault and toxic torts. <a role=\"link\" href=\"/about/kristen-b-degnan/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row3\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Teresa_Cleary_pp.jpg\" url=\"/about/teresa-cleary/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/about/teresa-cleary/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h3>Teresa Cleary</h3>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h4>Paralegal','2022-04-04 07:15:10','2022-04-04 07:15:10'),(6,48693,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comtel:+1-716-276-0670','3602675.findlaw5.flsitebuilder.com','(716) 276-0670','(716) 276-0670','<a role=\"link\" href=\"tel:+1-716-276-0670\" data-wpel-link=\"internal\">(716) 276-0670</a>','(716) 276-0670','(716) 276-0670','2022-04-04 07:15:10','2022-04-04 07:15:10'),(7,48693,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:nostwald@madwcdefense.com','3602675.findlaw5.flsitebuilder.com','Email Me','Email Me','<a class=\"btn-email-staff\" role=\"link\" href=\"mailto:nostwald@madwcdefense.com\">Email Me</a>','Email Me','<a class=\"btn-email-staff\" role=\"link\" href=\"mailto:nostwald@madwcdefense.com\">Email Me</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(8,6,45927,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/contact/','3602675.findlaw5.flsitebuilder.com','online contact form',', contact us today by calling [nap_phone id=\"LOCAL-REGULAR-NUMBER-1\"] or filling out our online contact form.',', contact us today by calling [nap_phone id=\"LOCAL-REGULAR-NUMBER-1\"] or filling out our <a href=\"/contact/\">online contact form</a>.','We believe that the best pathway to success involves working with our clients, not just for our clients. That means our clients can expect us to be highly responsive and to work with them to build the best strategies for success.[/et_pb_text][et_pb_text ul_type=\"none\" ul_position=\"inside\" ul_item_indent=\"1px\" admin_label=\"Content-2\" module_class=\"fl-lightlinks\" _builder_version=\"4.3.2\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.55em\" ul_text_color=\"#333\" ul_font_size=\"18px\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]If you are ready to get M.A.D., contact us today by calling [nap_phone id=\"LOCAL-REGULAR-NUMBER-1\"] or filling out our online contact form.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"BADGES\" _builder_version=\"4.3.2\" background_color=\"#f5f5f5\" custom_padding=\"100px||100px||true|false\" custom_padding_tablet=\"60px||60px||true|false\" custom_padding_phone=\"50px||50px||true|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" make_equal=\"on\" _builder_version=\"4.11.4\" width=\"90%\" max_width=\"1000px\" custom_margin=\"0px||||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.3.2\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/03/badge.jpg\" align=\"center\" _builder_version=\"4.14.2\" max_width=\"200px\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"buffalo badge\" sticky_enabled=\"0\" alt=\"buffalo badge\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.3.2\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/11/MULTI-114764-1-ap3.jpg\" align=\"center\" _builder_version=\"4.3.2\" max_width=\"200px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.3.2\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/11/CUSTOM-975884-1.jpg\" align=\"center\" _builder_version=\"4.3.2\" max_width=\"200px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.3.2\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/11/women-owned-2021-1.jpg\" align=\"center\" _builder_version=\"4.3.2\" max_width=\"200px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" make_equal=\"on\" _builder_version=\"4.11.4\" width=\"90%\" max_width=\"1000px\" custom_margin=\"20px||||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.3.2\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/11/CUSTOM-870784-cmyk.png\" align=\"center\" _builder_version=\"4.3.2\" max_width=\"200px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.3.2\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/11/women2020-1.jpg\" align=\"center\" _builder_version=\"4.3.2\" max_width=\"200px\" custom_padding=\"5px|||||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.3.2\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/11/101814-cmyk-1.png\" align=\"center\" _builder_version=\"4.3.2\" max_width=\"200px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.3.2\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"TESTIMONIAL\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.8)\" background_color_gradient_end=\"rgba(255,255,255,0.8)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_108033031-D.jpg\" background_size=\"initial\" custom_padding=\"100px||100px||true|false\" custom_padding_tablet=\"70px||70px||true|false\" custom_padding_phone=\"50px||50px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_108033031-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_108033031-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.3.2\" width=\"90%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Heading (H2)\" _builder_version=\"4.3.2\" text_font=\"Playfair Display||||||||\" text_font_size=\"25px\" header_font=\"||||||||\" header_2_font=\"|600|||||||\" header_2_text_align=\"center\" header_2_text_color=\"#211865\" header_2_font_size=\"38px\" header_3_font=\"|600|||||||\" header_4_font=\"|600|||||||\" header_5_font=\"|600|||||||\" header_6_font=\"|600|||||||\" text_orientation=\"center\" width_last_edited=\"off|phone\" max_width_last_edited=\"off|phone\" custom_margin=\"||0px||false|false\" custom_padding=\"||15px||false|false\" custom_padding_tablet=\"||||false|false\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"off|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|phone\" header_text_align_last_edited=\"off|phone\" header_font_size_last_edited=\"off|tablet\" header_2_text_align_tablet=\"center\" header_2_text_align_phone=\"\" header_2_text_align_last_edited=\"on|desktop\" header_2_font_size_tablet=\"35px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\" header_2_2_font_size_phone=\"32px\" header_3_2_font_size_phone=\"32px\" header_4_2_font_size_phone=\"32px\" header_5_2_font_size_phone=\"32px\" header_6_2_font_size_phone=\"32px\" header_2_2_font_size_tablet=\"35px\" header_3_2_font_size_tablet=\"35px\" header_4_2_font_size_tablet=\"35px\" header_5_2_font_size_tablet=\"35px\" header_6_2_font_size_tablet=\"35px\" header_2_2_font_size_last_edited=\"on|phone\" header_3_2_font_size_last_edited=\"on|phone\" header_4_2_font_size_last_edited=\"on|phone\" header_5_2_font_size_last_edited=\"on|phone\" header_6_2_font_size_last_edited=\"on|phone\"]Testimonials','weight=\"3px\" disabled_on=\"off|off|off\" _builder_version=\"4.3.2\" width=\"175px\" module_alignment=\"left\" min_height=\"3px\" height=\"3px\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_text admin_label=\"Content-1\" _builder_version=\"4.3.2\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.55em\" custom_padding=\"20px||15px||false|false\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<p>It is not that difficult to find a workers’ compensation defense firm in New York. However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy. Most firms will simply ask you to submit information and then update you as the process goes on. We believe that the best pathway to success involves working with our clients, not just for our clients. That means our clients can expect us to be highly responsive and to work with them to build the best strategies for success.[/et_pb_text][et_pb_text ul_type=\"none\" ul_position=\"inside\" ul_item_indent=\"1px\" admin_label=\"Content-2\" module_class=\"fl-lightlinks\" _builder_version=\"4.3.2\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.55em\" ul_text_color=\"#333\" ul_font_size=\"18px\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<p>If you are ready to get M.A.D., contact us today by calling [nap_phone id=\"LOCAL-REGULAR-NUMBER-1\"] or filling out our <a href=\"/contact/\">online contact form</a>.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"BADGES\" _builder_version=\"4.3.2\" background_color=\"#f5f5f5\" custom_padding=\"100px||100px||true|false\" custom_padding_tablet=\"60px||60px||true|false\" custom_padding_phone=\"50px||50px||true|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" make_equal=\"on\" _builder_version=\"4.11.4\" width=\"90%\" max_width=\"1000px\" custom_margin=\"0px||||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.3.2\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/03/badge.jpg\" align=\"center\" _builder_version=\"4.14.2\" max_width=\"200px\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"buffalo badge\" sticky_enabled=\"0\" alt=\"buffalo badge\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.3.2\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/11/MULTI-114764-1-ap3.jpg\" align=\"center\" _builder_version=\"4.3.2\" max_width=\"200px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.3.2\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/11/CUSTOM-975884-1.jpg\" align=\"center\" _builder_version=\"4.3.2\" max_width=\"200px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.3.2\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/11/women-owned-2021-1.jpg\" align=\"center\" _builder_version=\"4.3.2\" max_width=\"200px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" make_equal=\"on\" _builder_version=\"4.11.4\" width=\"90%\" max_width=\"1000px\" custom_margin=\"20px||||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.3.2\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/11/CUSTOM-870784-cmyk.png\" align=\"center\" _builder_version=\"4.3.2\" max_width=\"200px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.3.2\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/11/women2020-1.jpg\" align=\"center\" _builder_version=\"4.3.2\" max_width=\"200px\" custom_padding=\"5px|||||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.3.2\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/11/101814-cmyk-1.png\" align=\"center\" _builder_version=\"4.3.2\" max_width=\"200px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.3.2\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"TESTIMONIAL\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.8)\" background_color_gradient_end=\"rgba(255,255,255,0.8)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_108033031-D.jpg\" background_size=\"initial\" custom_padding=\"100px||100px||true|false\" custom_padding_tablet=\"70px||70px||true|false\" custom_padding_phone=\"50px||50px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_108033031-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_108033031-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.3.2\" width=\"90%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Heading (H2)\" _builder_version=\"4.3.2\" text_font=\"Playfair Display||||||||\" text_font_size=\"25px\" header_font=\"||||||||\" header_2_font=\"|600|||||||\" header_2_text_align=\"center\" header_2_text_color=\"#211865\" header_2_font_size=\"38px\" header_3_font=\"|600|||||||\" header_4_font=\"|600|||||||\" header_5_font=\"|600|||||||\" header_6_font=\"|600|||||||\" text_orientation=\"center\" width_last_edited=\"off|phone\" max_width_last_edited=\"off|phone\" custom_margin=\"||0px||false|false\" custom_padding=\"||15px||false|false\" custom_padding_tablet=\"||||false|false\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"off|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|phone\" header_text_align_last_edited=\"off|phone\" header_font_size_last_edited=\"off|tablet\" header_2_text_align_tablet=\"center\" header_2_text_align_phone=\"\" header_2_text_align_last_edited=\"on|desktop\" header_2_font_size_tablet=\"35px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\" header_2_2_font_size_phone=\"32px\" header_3_2_font_size_phone=\"32px\" header_4_2_font_size_phone=\"32px\" header_5_2_font_size_phone=\"32px\" header_6_2_font_size_phone=\"32px\" header_2_2_font_size_tablet=\"35px\" header_3_2_font_size_tablet=\"35px\" header_4_2_font_size_tablet=\"35px\" header_5_2_font_size_tablet=\"35px\" header_6_2_font_size_tablet=\"35px\" header_2_2_font_size_last_edited=\"on|phone\" header_3_2_font_size_last_edited=\"on|phone\" header_4_2_font_size_last_edited=\"on|phone\" header_5_2_font_size_last_edited=\"on|phone\" header_6_2_font_size_last_edited=\"on|phone\"]<p style=\"padding-bottom: 10px !important;color: #333\">Testimonials','2022-04-04 07:15:10','2022-04-04 07:15:10'),(9,14,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.thomsonreuters.com/en/privacy-statement.html','thomsonreuters.com','Thomson Reuters Privacy Statement','To learn more about the Thomson Reuters privacy policy and the data that might be collected, please visit: Thomson Reuters Privacy Statement.','To learn more about the Thomson Reuters privacy policy and the data that might be collected, please visit: <a href=\"https://thelomad.com/getmad.today/wp-contentwww.thomsonreuters.com/en/privacy-statement.html\" target=\"_blank\" rel=\"noopener noreferrer\">Thomson Reuters Privacy Statement</a>.','Our law firm partners with FindLaw, a Thomson Reuters business. To learn more about the Thomson Reuters privacy policy and the data that might be collected, please visit: Thomson Reuters Privacy Statement.','Our law firm partners with FindLaw, a Thomson Reuters business. To learn more about the Thomson Reuters privacy policy and the data that might be collected, please visit: <a href=\"https://thelomad.com/getmad.today/wp-contentwww.thomsonreuters.com/en/privacy-statement.html\" target=\"_blank\" rel=\"noopener noreferrer\">Thomson Reuters Privacy Statement</a>.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(10,45925,45927,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/contact/','3602675.findlaw5.flsitebuilder.com','online contact form','Contact us by calling [nap_phone id=\"LOCAL-REGULAR-NUMBER-1\"] or fill out our online contact form.','</strong>Contact us by calling [nap_phone id=\"LOCAL-REGULAR-NUMBER-1\"] or fill out our <a href=\"/contact/\">online contact form</a>.','If you are tired of not having an attorney who is your partner, don’t get angry, GET MAD. Contact us by calling [nap_phone id=\"LOCAL-REGULAR-NUMBER-1\"] or fill out our online contact form.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','If you are tired of not having an attorney who is your partner, don’t get angry,<strong> GET MAD. </strong>Contact us by calling [nap_phone id=\"LOCAL-REGULAR-NUMBER-1\"] or fill out our <a href=\"/contact/\">online contact form</a>.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section','2022-04-04 07:15:10','2022-04-04 07:15:10'),(11,46101,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comtel:+1-716-650-5283','3602675.findlaw5.flsitebuilder.com','(716) 650-5283','(716) 650-5283','<a href=\"tel:+1-716-650-5283\" data-wpel-link=\"internal\" role=\"link\">(716) 650-5283</a>','(716) 650-5283','(716) 650-5283','2022-04-04 07:15:10','2022-04-04 07:15:10'),(12,46101,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:dflynn@madwcdefense.com','3602675.findlaw5.flsitebuilder.com','Email Me','Email Me','<a class=\"btn-email-staff\" href=\"mailto:dflynn@madwcdefense.com\" role=\"link\">Email Me</a>','Email Me','<a class=\"btn-email-staff\" href=\"mailto:dflynn@madwcdefense.com\" role=\"link\">Email Me</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(13,46129,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comtel:+1-716-650-5263','3602675.findlaw5.flsitebuilder.com','(716) 650-5263','(716) 650-5263','<a href=\"tel:+1-716-650-5263\" data-wpel-link=\"internal\" role=\"link\">(716) 650-5263</a>','(716) 650-5263','(716) 650-5263','2022-04-04 07:15:10','2022-04-04 07:15:10'),(14,46129,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:ecamp@madwcdefense.com','3602675.findlaw5.flsitebuilder.com','Email Me','Email Me','<a class=\"btn-email-staff\" href=\"mailto:ecamp@madwcdefense.com\" role=\"link\">Email Me</a>','Email Me','<a class=\"btn-email-staff\" href=\"mailto:ecamp@madwcdefense.com\" role=\"link\">Email Me</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(15,46130,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comtel:+1-716-247-6532','3602675.findlaw5.flsitebuilder.com','(716) 247-6532','(716) 247-6532','<a href=\"tel:+1-716-247-6532\" data-wpel-link=\"internal\" role=\"link\">(716) 247-6532</a>','(716) 247-6532','(716) 247-6532','2022-04-04 07:15:10','2022-04-04 07:15:10'),(16,46130,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:hkim@madwcdefense.com','3602675.findlaw5.flsitebuilder.com','Email Me','Email Me','<a class=\"btn-email-staff\" href=\"mailto:hkim@madwcdefense.com\" role=\"link\">Email Me</a>','Email Me','<a class=\"btn-email-staff\" href=\"mailto:hkim@madwcdefense.com\" role=\"link\">Email Me</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(17,46132,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comtel:+1-716-458-1822','3602675.findlaw5.flsitebuilder.com','(716) 458-1822','(716) 458-1822','<a href=\"tel:+1-716-458-1822\" data-wpel-link=\"internal\" role=\"link\">(716) 458-1822</a>','(716) 458-1822','(716) 458-1822','2022-04-04 07:15:10','2022-04-04 07:15:10'),(18,46132,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:jmalkowski@madwcdefense.com','3602675.findlaw5.flsitebuilder.com','Email Me','Email Me','<a class=\"btn-email-staff\" href=\"mailto:jmalkowski@madwcdefense.com\" role=\"link\">Email Me</a>','Email Me','<a class=\"btn-email-staff\" href=\"mailto:jmalkowski@madwcdefense.com\" role=\"link\">Email Me</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(19,46119,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comtel:+1-716-204-7617','3602675.findlaw5.flsitebuilder.com','(716) 204-7617','(716) 204-7617','<a href=\"tel:+1-716-204-7617\" data-wpel-link=\"internal\" role=\"link\">(716) 204-7617</a>','(716) 204-7617','(716) 204-7617','2022-04-04 07:15:10','2022-04-04 07:15:10'),(20,46119,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:jchavers@madwcdefense.com','3602675.findlaw5.flsitebuilder.com','Email Me','Email Me','<a class=\"btn-email-staff\" href=\"mailto:jchavers@madwcdefense.com\" role=\"link\">Email Me</a>','Email Me','<a class=\"btn-email-staff\" href=\"mailto:jchavers@madwcdefense.com\" role=\"link\">Email Me</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(21,46121,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comtel:+1-716-650-5288','3602675.findlaw5.flsitebuilder.com','(716) 650-5288','(716) 650-5288','<a href=\"tel:+1-716-650-5288\" data-wpel-link=\"internal\" role=\"link\">(716) 650-5288</a>','(716) 650-5288','(716) 650-5288','2022-04-04 07:15:10','2022-04-04 07:15:10'),(22,46121,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:jguiher@madwcdefense.com','3602675.findlaw5.flsitebuilder.com','Email Me','Email Me','<a class=\"btn-email-staff\" href=\"mailto:jguiher@madwcdefense.com\" role=\"link\">Email Me</a>','Email Me','<a class=\"btn-email-staff\" href=\"mailto:jguiher@madwcdefense.com\" role=\"link\">Email Me</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(23,46122,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comtel:+1-716-650-5268','3602675.findlaw5.flsitebuilder.com','(716) 650-5268','(716) 650-5268','<a href=\"tel:+1-716-650-5268\" data-wpel-link=\"internal\" role=\"link\">(716) 650-5268</a>','(716) 650-5268','(716) 650-5268','2022-04-04 07:15:10','2022-04-04 07:15:10'),(24,46122,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:jwilliams@madwcdefense.com','3602675.findlaw5.flsitebuilder.com','Email Me','Email Me','<a class=\"btn-email-staff\" href=\"mailto:jwilliams@madwcdefense.com\" role=\"link\">Email Me</a>','Email Me','<a class=\"btn-email-staff\" href=\"mailto:jwilliams@madwcdefense.com\" role=\"link\">Email Me</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(25,46171,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comtel:+1-716-250-2879','3602675.findlaw5.flsitebuilder.com','(716) 250-2879','(716) 250-2879','<a href=\"tel:+1-716-250-2879\" data-wpel-link=\"internal\" role=\"link\">(716) 250-2879</a>','(716) 250-2879','(716) 250-2879','2022-04-04 07:15:10','2022-04-04 07:15:10'),(26,46171,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:rbrashear@madwcdefense.com','3602675.findlaw5.flsitebuilder.com','Email Me','Email Me','<a class=\"btn-email-staff\" href=\"mailto:rbrashear@madwcdefense.com\" role=\"link\">Email Me</a>','Email Me','<a class=\"btn-email-staff\" href=\"mailto:rbrashear@madwcdefense.com\" role=\"link\">Email Me</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(27,46179,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comtel:+1-716-250-9286','3602675.findlaw5.flsitebuilder.com','(716) 250-9286','(716) 250-9286','<a href=\"tel:+1-716-250-9286\" data-wpel-link=\"internal\" role=\"link\">(716) 250-9286</a>','(716) 250-9286','(716) 250-9286','2022-04-04 07:15:10','2022-04-04 07:15:10'),(28,46179,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:tdickinson@madwcdefense.com','3602675.findlaw5.flsitebuilder.com','Email Me','Email Me','<a class=\"btn-email-staff\" href=\"mailto:tdickinson@madwcdefense.com\" role=\"link\">Email Me</a>','Email Me','<a class=\"btn-email-staff\" href=\"mailto:tdickinson@madwcdefense.com\" role=\"link\">Email Me</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(29,46189,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/the-teams/workers-compensation-team/','3602675.findlaw5.flsitebuilder.com','Click here to learn more about our Attorneys!','Click here to learn more about our Attorneys!','<a href=\"/the-teams/workers-compensation-team/\">Click here to learn more about our Attorneys!</a>','Click here to learn more about our Attorneys!','Click here to learn more about our Attorneys!','2022-04-04 07:15:10','2022-04-04 07:15:10'),(30,46189,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/support-staff/','3602675.findlaw5.flsitebuilder.com','Click here to learn more about our Legal Assistants and Paralegals!','Click here to learn more about our Legal Assistants and Paralegals!','<a href=\"/support-staff/\">Click here to learn more about our Legal Assistants and Paralegals!</a>','Click here to learn more about our Legal Assistants and Paralegals![/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|desktop\" admin_label=\"Attorney\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" custom_margin=\"10px||||false|false\" custom_padding=\"0px||0px||true|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||0px||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Heading (H2)\" _builder_version=\"4.3.2\" text_font=\"Playfair Display||||||||\" text_font_size=\"25px\" header_font=\"||||||||\" header_2_font=\"|600|||||||\" header_2_text_align=\"left\" header_2_text_color=\"#211865\" header_3_font=\"|600|||||||\" header_4_font=\"|600|||||||\" header_5_font=\"|600|||||||\" header_6_font=\"|600|||||||\" width_last_edited=\"off|phone\" max_width_last_edited=\"off|phone\" custom_margin=\"||0px||false|false\" custom_padding=\"||15px||false|false\" custom_padding_tablet=\"||||false|false\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"off|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|phone\" header_text_align_last_edited=\"off|phone\" header_font_size_last_edited=\"off|tablet\" header_2_text_align_tablet=\"left\" header_2_text_align_phone=\"\" header_2_text_align_last_edited=\"on|phone\" header_2_font_size_last_edited=\"off|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|phone\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\" header_2_2_font_size_phone=\"32px\" header_3_2_font_size_phone=\"32px\" header_4_2_font_size_phone=\"32px\" header_5_2_font_size_phone=\"32px\" header_6_2_font_size_phone=\"32px\" header_2_2_font_size_tablet=\"35px\" header_3_2_font_size_tablet=\"35px\" header_4_2_font_size_tablet=\"35px\" header_5_2_font_size_tablet=\"35px\" header_6_2_font_size_tablet=\"35px\" header_2_2_font_size_last_edited=\"on|phone\" header_3_2_font_size_last_edited=\"on|phone\" header_4_2_font_size_last_edited=\"on|phone\" header_5_2_font_size_last_edited=\"on|phone\" header_6_2_font_size_last_edited=\"on|phone\"]LOMAD Featured Attorney[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|||0px|false|false\" custom_padding=\"30px|20px|30px|20px|true|true\" box_shadow_style=\"preset3\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/mackey_shannan_m.jpg\" url=\"/attorney/prince-brian-k/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.14.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#2e5591|\" text_text_color=\"#2e5591\" text_font_size=\"23px\" text_line_height=\"1.4em\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/prince-brian-k/\" hover_enabled=\"0\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]Shannan M. Mackey[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_text_color=\"#2e5591\" text_font_size=\"18px\" text_line_height=\"1.4em\" hover_enabled=\"0\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]My Legal Superpower: My ability to see the entirety of a case, even last minute.','<a href=\"/support-staff/\">Click here to learn more about our Legal Assistants and Paralegals!</a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|desktop\" admin_label=\"Attorney\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" custom_margin=\"10px||||false|false\" custom_padding=\"0px||0px||true|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||0px||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Heading (H2)\" _builder_version=\"4.3.2\" text_font=\"Playfair Display||||||||\" text_font_size=\"25px\" header_font=\"||||||||\" header_2_font=\"|600|||||||\" header_2_text_align=\"left\" header_2_text_color=\"#211865\" header_3_font=\"|600|||||||\" header_4_font=\"|600|||||||\" header_5_font=\"|600|||||||\" header_6_font=\"|600|||||||\" width_last_edited=\"off|phone\" max_width_last_edited=\"off|phone\" custom_margin=\"||0px||false|false\" custom_padding=\"||15px||false|false\" custom_padding_tablet=\"||||false|false\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"off|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|phone\" header_text_align_last_edited=\"off|phone\" header_font_size_last_edited=\"off|tablet\" header_2_text_align_tablet=\"left\" header_2_text_align_phone=\"\" header_2_text_align_last_edited=\"on|phone\" header_2_font_size_last_edited=\"off|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|phone\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\" header_2_2_font_size_phone=\"32px\" header_3_2_font_size_phone=\"32px\" header_4_2_font_size_phone=\"32px\" header_5_2_font_size_phone=\"32px\" header_6_2_font_size_phone=\"32px\" header_2_2_font_size_tablet=\"35px\" header_3_2_font_size_tablet=\"35px\" header_4_2_font_size_tablet=\"35px\" header_5_2_font_size_tablet=\"35px\" header_6_2_font_size_tablet=\"35px\" header_2_2_font_size_last_edited=\"on|phone\" header_3_2_font_size_last_edited=\"on|phone\" header_4_2_font_size_last_edited=\"on|phone\" header_5_2_font_size_last_edited=\"on|phone\" header_6_2_font_size_last_edited=\"on|phone\"]<h2 style=\"padding-top: 0px !important\">LOMAD Featured Attorney</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|||0px|false|false\" custom_padding=\"30px|20px|30px|20px|true|true\" box_shadow_style=\"preset3\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/mackey_shannan_m.jpg\" url=\"/attorney/prince-brian-k/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.14.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#2e5591|\" text_text_color=\"#2e5591\" text_font_size=\"23px\" text_line_height=\"1.4em\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/prince-brian-k/\" hover_enabled=\"0\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>Shannan M. Mackey[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_text_color=\"#2e5591\" text_font_size=\"18px\" text_line_height=\"1.4em\" hover_enabled=\"0\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>My Legal Superpower: My ability to see the entirety of a case, even last minute.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(49,46193,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:Careers@madwcdefense.com','3602675.findlaw5.flsitebuilder.com','Careers@madwcdefense.com','Send a resume and cover letter to Careers@madwcdefense.com to begin the process!','Send a resume and cover letter to <a href=\"mailto:Careers@madwcdefense.com\">Careers@madwcdefense.com</a> to begin the process!','Send a resume and cover letter to Careers@madwcdefense.com to begin the process! You can see our list of benefits below.','Send a resume and cover letter to <a href=\"mailto:Careers@madwcdefense.com\">Careers@madwcdefense.com</a> to begin the process! You can see our list of benefits below.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(50,46229,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentgetmad.today/webinars/','getmad.today','LOMAD TV','LOMAD TV','<a href=\"https://thelomad.com/getmad.today/wp-contentgetmad.today/webinars/\">LOMAD TV</a>','LOMAD TV','<a href=\"https://thelomad.com/getmad.today/wp-contentgetmad.today/webinars/\">LOMAD TV</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(51,46229,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/lomad-newsletter/','3602675.findlaw5.flsitebuilder.com','LOMAD Magazine','LOMAD Magazine','<a href=\"/blog/lomad-newsletter/\">LOMAD Magazine</a>','LOMAD Magazine','<a href=\"/blog/lomad-newsletter/\">LOMAD Magazine</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(52,46229,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/','3602675.findlaw5.flsitebuilder.com','Blog','Blog','<a href=\"/blog/\">Blog</a>','Blog','<a href=\"/blog/\">Blog</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(53,46229,46236,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/client-resources/case-law-updates-lomad-case-law-updates/','3602675.findlaw5.flsitebuilder.com','LOMAD Case Law Updates','LOMAD Case Law Updates','<a href=\"/client-resources/case-law-updates-lomad-case-law-updates/\">LOMAD Case Law Updates</a>','LOMAD Case Law Updates','<a href=\"/client-resources/case-law-updates-lomad-case-law-updates/\">LOMAD Case Law Updates</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(54,46229,46231,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/client-resources/ppd-caps/','3602675.findlaw5.flsitebuilder.com','PPD Caps','PPD Caps','<a href=\"/client-resources/ppd-caps/\">PPD Caps</a>','PPD Caps','<a href=\"/client-resources/ppd-caps/\">PPD Caps</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(55,46229,46233,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/client-resources/max-rates/','3602675.findlaw5.flsitebuilder.com','Max Rates','Max Rates','<a href=\"/client-resources/max-rates/\">Max Rates</a>','Max Rates','<a href=\"/client-resources/max-rates/\">Max Rates</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(56,46229,46234,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/client-resources/slu-php/','3602675.findlaw5.flsitebuilder.com','SLU/PHP','SLU/PHP','<a href=\"/client-resources/slu-php/\">SLU/PHP</a>','SLU/PHP','<a href=\"/client-resources/slu-php/\">SLU/PHP</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(57,46229,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.linkedin.com/groups/2302270/','linkedin.com','New York Workers\' Compensation Forum','New York Workers\' Compensation Forum','<a href=\"https://thelomad.com/getmad.today/wp-contentwww.linkedin.com/groups/2302270/\" target=\"_blank\" rel=\"noopener\">New York Workers\' Compensation Forum</a>','New York Workers\' Compensation Forum','<a href=\"https://thelomad.com/getmad.today/wp-contentwww.linkedin.com/groups/2302270/\" target=\"_blank\" rel=\"noopener\">New York Workers\' Compensation Forum</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(58,46236,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:jcousins@madwcdefense.com','3602675.findlaw5.flsitebuilder.com','jcousins@madwcdefense.com','To obtain access to this valuable and expansive resource, please email jcousins@madwcdefense.com','To obtain access to this valuable and expansive resource, please email <a href=\"mailto:jcousins@madwcdefense.com\">jcousins@madwcdefense.com</a>','To obtain access to this valuable and expansive resource, please email jcousins@madwcdefense.com','To obtain access to this valuable and expansive resource, please email <a href=\"mailto:jcousins@madwcdefense.com\">jcousins@madwcdefense.com</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(59,46236,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/02/2016CaseLawUpdate.pdf','3602675.findlaw5.flsitebuilder.com','LOMAD Case Law Update 2016','LOMAD Case Law Update 2016','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/02/2016CaseLawUpdate.pdf\">LOMAD Case Law Update 2016</a>','LOMAD Case Law Update 2016','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/02/2016CaseLawUpdate.pdf\">LOMAD Case Law Update 2016</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(60,46236,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/02/2017CaseLawUpdate.pdf','3602675.findlaw5.flsitebuilder.com','LOMAD Case Law Update 2017','LOMAD Case Law Update 2017','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/02/2017CaseLawUpdate.pdf\">LOMAD Case Law Update 2017</a>','LOMAD Case Law Update 2017','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/02/2017CaseLawUpdate.pdf\">LOMAD Case Law Update 2017</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(61,46236,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/02/2018CaseLawUpdate.pdf','3602675.findlaw5.flsitebuilder.com','LOMAD Case Law Update 2018','LOMAD Case Law Update 2018','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/02/2018CaseLawUpdate.pdf\">LOMAD Case Law Update 2018</a>','LOMAD Case Law Update 2018','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/02/2018CaseLawUpdate.pdf\">LOMAD Case Law Update 2018</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(62,46236,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/02/2019CaseLawUpdate.pdf','3602675.findlaw5.flsitebuilder.com','LOMAD Case Law Update 2019','LOMAD Case Law Update 2019','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/02/2019CaseLawUpdate.pdf\">LOMAD Case Law Update 2019</a>','LOMAD Case Law Update 2019','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/02/2019CaseLawUpdate.pdf\">LOMAD Case Law Update 2019</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(63,46236,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/02/2020CaseLawUpdate.pdf','3602675.findlaw5.flsitebuilder.com','LOMAD Case Law Update 2020','LOMAD Case Law Update 2020','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/02/2020CaseLawUpdate.pdf\">LOMAD Case Law Update 2020</a>','LOMAD Case Law Update 2020','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/02/2020CaseLawUpdate.pdf\">LOMAD Case Law Update 2020</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(64,46236,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/02/2021CaseLawUpdate.pdf','3602675.findlaw5.flsitebuilder.com','LOMAD Case Law Update 2021','LOMAD Case Law Update 2021','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/02/2021CaseLawUpdate.pdf\">LOMAD Case Law Update 2021</a>','LOMAD Case Law Update 2021','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/02/2021CaseLawUpdate.pdf\">LOMAD Case Law Update 2021</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(65,46244,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:Mail@Madwcdefense.com','3602675.findlaw5.flsitebuilder.com','Mail@Madwcdefense.com','Email us at Mail@Madwcdefense.com!','Email us at <a href=\"mailto:Mail@Madwcdefense.com\">Mail@Madwcdefense.com</a>!','Want to be a part of our mailing list? Email us at Mail@Madwcdefense.com!','<strong>Want to be a part of our mailing list? Email us at <a href=\"mailto:Mail@Madwcdefense.com\">Mail@Madwcdefense.com</a>!</strong>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(66,48023,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comtel:+1-716-250-9973','3602675.findlaw5.flsitebuilder.com','(716) 250-9973','(716) 250-9973','<a href=\"tel:+1-716-250-9973\" data-wpel-link=\"internal\" role=\"link\">(716) 250-9973</a>','(716) 250-9973','(716) 250-9973','2022-04-04 07:15:10','2022-04-04 07:15:10'),(67,48023,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:ddraschan@madwcdefense.com','3602675.findlaw5.flsitebuilder.com','Email Me','Email Me','<a class=\"btn-email-staff\" href=\"mailto:ddraschan@madwcdefense.com\" role=\"link\">Email Me</a>','Email Me','<a class=\"btn-email-staff\" href=\"mailto:ddraschan@madwcdefense.com\" role=\"link\">Email Me</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(68,48020,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comtel:+1-716-650-5266','3602675.findlaw5.flsitebuilder.com','(716) 650-5266','(716) 650-5266','<a href=\"tel:+1-716-650-5266\" data-wpel-link=\"internal\" role=\"link\">(716) 650-5266</a>','(716) 650-5266','(716) 650-5266','2022-04-04 07:15:10','2022-04-04 07:15:10'),(69,48020,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:cnewman@madwcdefense.com','3602675.findlaw5.flsitebuilder.com','Email Me','Email Me','<a class=\"btn-email-staff\" href=\"mailto:cnewman@madwcdefense.com\" role=\"link\">Email Me</a>','Email Me','<a class=\"btn-email-staff\" href=\"mailto:cnewman@madwcdefense.com\" role=\"link\">Email Me</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(70,48022,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comtel:+1-716-800-3833','3602675.findlaw5.flsitebuilder.com','(716) 800-3833','(716) 800-3833','<a href=\"tel:+1-716-800-3833\" data-wpel-link=\"internal\" role=\"link\">(716) 800-3833</a>','(716) 800-3833','(716) 800-3833','2022-04-04 07:15:10','2022-04-04 07:15:10'),(71,48022,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:jstevens@madwcdefense.com','3602675.findlaw5.flsitebuilder.com','Email Me','Email Me','<a class=\"btn-email-staff\" href=\"mailto:jstevens@madwcdefense.com\" role=\"link\">Email Me</a>','Email Me','<a class=\"btn-email-staff\" href=\"mailto:jstevens@madwcdefense.com\" role=\"link\">Email Me</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(76,48276,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.google.com/maps/dir//thelomad.com/getmad.today/wp-contentThe+Law+Offices+of+Melissa+A.+Day,+PLLC,+636+N+French+Rd+Suite+3,+Buffalo,+NY+14228/@43.035876,-78.80089,15z/data=!4m9!4m8!1m0!1m5!1m1!1s0x89d373fde4cbb1eb:0xb4996ff231a9a5a2!2m2!1d-78.8008993!2d43.0356493!3e0','google.com','Map & Directions','Map & Directions','<a href=\"https://thelomad.com/getmad.today/wp-contentwww.google.com/maps/dir//thelomad.com/getmad.today/wp-contentThe+Law+Offices+of+Melissa+A.+Day,+PLLC,+636+N+French+Rd+Suite+3,+Buffalo,+NY+14228/@43.035876,-78.80089,15z/data=!4m9!4m8!1m0!1m5!1m1!1s0x89d373fde4cbb1eb:0xb4996ff231a9a5a2!2m2!1d-78.8008993!2d43.0356493!3e0\" target=\"_blank\" rel=\"noopener\">Map &amp; Directions</a>','Map & Directions','<a href=\"https://thelomad.com/getmad.today/wp-contentwww.google.com/maps/dir//thelomad.com/getmad.today/wp-contentThe+Law+Offices+of+Melissa+A.+Day,+PLLC,+636+N+French+Rd+Suite+3,+Buffalo,+NY+14228/@43.035876,-78.80089,15z/data=!4m9!4m8!1m0!1m5!1m1!1s0x89d373fde4cbb1eb:0xb4996ff231a9a5a2!2m2!1d-78.8008993!2d43.0356493!3e0\" target=\"_blank\" rel=\"noopener\">Map &amp; Directions</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(93,48685,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comtel:+1-716-407-0304','3602675.findlaw5.flsitebuilder.com','(716) 407-0304','(716) 407-0304','<a href=\"tel:+1-716-407-0304\">(716) 407-0304</a>','(716) 407-0304','(716) 407-0304','2022-04-04 07:15:10','2022-04-04 07:15:10'),(94,48685,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:arizk@madwcdefense.com','3602675.findlaw5.flsitebuilder.com','Email Me','Email Me','<a class=\"btn-email-staff\" href=\"mailto:arizk@madwcdefense.com\">Email Me</a>','Email Me','<a class=\"btn-email-staff\" href=\"mailto:arizk@madwcdefense.com\">Email Me</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(95,48689,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comtel:+1-716-250-9503','3602675.findlaw5.flsitebuilder.com','(716) 250-9503','(716) 250-9503','<a role=\"link\" href=\"tel:+1-716-250-9503\" data-wpel-link=\"internal\">(716) 250-9503</a>','(716) 250-9503','(716) 250-9503','2022-04-04 07:15:10','2022-04-04 07:15:10'),(96,48689,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:kjones@madwcdefense.com','3602675.findlaw5.flsitebuilder.com','Email Me','Email Me','<a class=\"btn-email-staff\" role=\"link\" href=\"mailto:kjones@madwcdefense.com\">Email Me</a>','Email Me','<a class=\"btn-email-staff\" role=\"link\" href=\"mailto:kjones@madwcdefense.com\">Email Me</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(97,48691,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comtel:+1-716-755-4353','3602675.findlaw5.flsitebuilder.com','(716) 755-4353','(716) 755-4353','<a role=\"link\" href=\"tel:+1-716-755-4353\" data-wpel-link=\"internal\">(716) 755-4353</a>','(716) 755-4353','(716) 755-4353','2022-04-04 07:15:10','2022-04-04 07:15:10'),(98,48691,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:mdoldan@madwcdefense.com','3602675.findlaw5.flsitebuilder.com','Email Me','Email Me','<a class=\"btn-email-staff\" role=\"link\" href=\"mailto:mdoldan@madwcdefense.com\">Email Me</a>','Email Me','<a class=\"btn-email-staff\" role=\"link\" href=\"mailto:mdoldan@madwcdefense.com\">Email Me</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(99,48823,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comtel:+1-716-755-2445','3602675.findlaw5.flsitebuilder.com','(716) 755-2445','(716) 755-2445','<a role=\"link\" href=\"tel:+1-716-755-2445\" data-wpel-link=\"internal\">(716) 755-2445</a>','(716) 755-2445','(716) 755-2445','2022-04-04 07:15:10','2022-04-04 07:15:10'),(100,48823,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:kkunz@madwcdefense.com','3602675.findlaw5.flsitebuilder.com','Email Me','Email Me','<a class=\"btn-email-staff\" role=\"link\" href=\"mailto:kkunz@madwcdefense.com\">Email Me</a>','Email Me','<a class=\"btn-email-staff\" role=\"link\" href=\"mailto:kkunz@madwcdefense.com\">Email Me</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(101,46077,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentvimeo.com/676362013','vimeo.com','Click here','Click here to see a video of the oral argument.','<a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/676362013\">Click here</a> to see a video of the oral argument.','Licht, Esq., and successfully arguing this influential case at the Court of Appeals is the highlight of my career as an attorney, but having the privilege or working with the team at LOMAD is the highlight of my entire professional career. Click here to see a video of the oral argument.','Licht, Esq., and successfully arguing this influential case at the Court of Appeals is the highlight of my career as an attorney, but having the privilege or working with the team at LOMAD is the highlight of my entire professional career. <a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/676362013\">Click here</a> to see a video of the oral argument.</li>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(102,46559,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/01/SummaryRegChanges.pdf','3602675.findlaw5.flsitebuilder.com','Summary Regarding Changes (PDF)','Summary Regarding Changes (PDF)','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/01/SummaryRegChanges.pdf\" target=\"_blank\" rel=\"noopener\">Summary Regarding Changes (PDF)</a>','Summary Regarding Changes (PDF)','Summary Regarding Changes (PDF)','2022-04-04 07:15:10','2022-04-04 07:15:10'),(103,46557,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentpublications.budget.ny.gov/eBudget1314/fy1314artVIIbills/PPGGArticleVII.pdfhttps://thelomad.com/getmad.today/wp-content','publications.budget.ny.gov','Public Protection and General Government Bill','Public Protection and General Government Bill','<a href=\"https://thelomad.com/getmad.today/wp-contentpublications.budget.ny.gov/eBudget1314/fy1314artVIIbills/PPGGArticleVII.pdfhttps://thelomad.com/getmad.today/wp-content\" target=\"_blank\" rel=\"noopener\">Public Protection and General Government Bill</a>','Public Protection and General Government Bill','<a href=\"https://thelomad.com/getmad.today/wp-contentpublications.budget.ny.gov/eBudget1314/fy1314artVIIbills/PPGGArticleVII.pdfhttps://thelomad.com/getmad.today/wp-content\" target=\"_blank\" rel=\"noopener\">Public Protection and General Government Bill</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(104,46555,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.wkbw.com/news/crime/Drug-Raids-In-Buffalo-123833394.html','wkbw.com','https://thelomad.com/getmad.today/wp-contentwww.wkbw.com/news/crime/Drug-Raids-In-Buffalo-123833394.html','For more on this story see, WKBW News, “Drug Raids In Buffalo”, https://thelomad.com/getmad.today/wp-contentwww.wkbw.com/news/crime/Drug-Raids-In-Buffalo-123833394.html.','For more on this story see, WKBW News, “Drug Raids In Buffalo”, <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wkbw.com/news/crime/Drug-Raids-In-Buffalo-123833394.html\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.wkbw.com/news/crime/Drug-Raids-In-Buffalo-123833394.html</a>.','On June 14, 2011, the DEA and local Western New York law enforcement personnel,200 in all, sought to arrest 17 members of the violent “The Camp street Boys”gang. For more on this story see, WKBW News, “Drug Raids In Buffalo”, https://thelomad.com/getmad.today/wp-contentwww.wkbw.com/news/crime/Drug-Raids-In-Buffalo-123833394.html. Also see, https://thelomad.com/getmad.today/wp-contentwww.justice.gov/dea/divisions/nyc/2011/nyc061611a.shtml.','On June 14, 2011, the DEA and local Western New York law enforcement personnel,200 in all, sought to arrest 17 members of the violent “The Camp street Boys”gang. For more on this story see, WKBW News, “Drug Raids In Buffalo”, <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wkbw.com/news/crime/Drug-Raids-In-Buffalo-123833394.html\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.wkbw.com/news/crime/Drug-Raids-In-Buffalo-123833394.html</a>. Also see, https://thelomad.com/getmad.today/wp-contentwww.justice.gov/dea/divisions/nyc/2011/nyc061611a.shtml.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(105,46553,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/03/Hudson-Valley-DDSO.pdf','3602675.findlaw5.flsitebuilder.com','Hudson Valley DDSO','Hudson Valley DDSO','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/03/Hudson-Valley-DDSO.pdf\" target=\"_blank\" rel=\"noopener\">Hudson Valley DDSO</a>','In Hudson Valley DDSO, 2013 NY Wrk. Comp.','In Hudson Valley DDSO, 2013 NY Wrk. Comp.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(106,46549,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentassembly.state.ny.us/leg/?default_fld=&#038;bn=S00076&#038;term=2013&#038;Summary=Y&#038;Actions=Y&#038;Votes=Y&#038;Memo=Y&#038;Text=Y','assembly.state.ny.us','BILL NUMBER: S76','BILL NUMBER: S76','<a href=\"https://thelomad.com/getmad.today/wp-contentassembly.state.ny.us/leg/?default_fld=&amp;bn=S00076&amp;term=2013&amp;Summary=Y&amp;Actions=Y&amp;Votes=Y&amp;Memo=Y&amp;Text=Y\" target=\"_blank\" rel=\"noopener\">BILL NUMBER: S76</a>','BILL NUMBER: S76','<a href=\"https://thelomad.com/getmad.today/wp-contentassembly.state.ny.us/leg/?default_fld=&amp;bn=S00076&amp;term=2013&amp;Summary=Y&amp;Actions=Y&amp;Votes=Y&amp;Memo=Y&amp;Text=Y\" target=\"_blank\" rel=\"noopener\">BILL NUMBER: S76</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(107,46549,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/04/Senate-Bill-S76.pdf','3602675.findlaw5.flsitebuilder.com','Senate Bill S76','Senate Bill S76','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/04/Senate-Bill-S76.pdf\" target=\"_blank\" rel=\"noopener\">Senate Bill S76</a>','Senate Bill S76','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/04/Senate-Bill-S76.pdf\" target=\"_blank\" rel=\"noopener\">Senate Bill S76</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(108,46543,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/07/Treatment-Outside-MTG-is-Pre-Determined-as-Not-Medically-Necessary.pdf','3602675.findlaw5.flsitebuilder.com','Treatment Outside MTG is Pre-Determined as Not Medically Necessary','Treatment Outside MTG is Pre-Determined as Not Medically Necessary','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/07/Treatment-Outside-MTG-is-Pre-Determined-as-Not-Medically-Necessary.pdf\" target=\"_blank\" rel=\"noopener\">Treatment Outside MTG is Pre-Determined as Not Medically Necessary</a>','Treatment Outside MTG is Pre-Determined as Not Medically Necessary','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/07/Treatment-Outside-MTG-is-Pre-Determined-as-Not-Medically-Necessary.pdf\" target=\"_blank\" rel=\"noopener\">Treatment Outside MTG is Pre-Determined as Not Medically Necessary</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(109,46541,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/08/Challenge-to-the-Closing-of-the-25-a-Fund.pdf','3602675.findlaw5.flsitebuilder.com','Challenge to the Closing of the 25-a Fund','Challenge to the Closing of the 25-a Fund','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/08/Challenge-to-the-Closing-of-the-25-a-Fund.pdf\" target=\"_blank\" rel=\"noopener\">Challenge to the Closing of the 25-a Fund</a>','Challenge to the Closing of the 25-a Fund','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/08/Challenge-to-the-Closing-of-the-25-a-Fund.pdf\" target=\"_blank\" rel=\"noopener\">Challenge to the Closing of the 25-a Fund</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(110,46540,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/hallock_v._koubek.pdf','getmad.today','hallock_v._koubek','hallock_v._koubek','<a href=\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/hallock_v._koubek.pdf\" target=\"_blank\" rel=\"noopener\">hallock_v._koubek</a>','hallock_v._koubek','<a href=\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/hallock_v._koubek.pdf\" target=\"_blank\" rel=\"noopener\">hallock_v._koubek</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(111,46512,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:bpr@wcb.ny.gov','3602675.findlaw5.flsitebuilder.com','bpr@wcb.ny.gov','bpr@wcb.ny.gov','<a href=\"mailto:bpr@wcb.ny.gov\" target=\"_blank\" rel=\"noopener\">bpr@wcb.ny.gov</a>','bpr@wcb.ny.gov','<a href=\"mailto:bpr@wcb.ny.gov\" target=\"_blank\" rel=\"noopener\">bpr@wcb.ny.gov</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(112,46511,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_630.jsp#!','wcb.ny.gov','https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_630.jsp#!','See https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_630.jsp#!','See <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_630.jsp#!\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_630.jsp#!</a>','See https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_630.jsp#!','See https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_630.jsp#!','2022-04-04 07:15:10','2022-04-04 07:15:10'),(113,46511,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_630.jsp#!','wcb.ny.gov','https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_630.jsp#!','See https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_630.jsp#!','See <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_630.jsp#!\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_630.jsp#!</a>','See https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_630.jsp#!','See https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_630.jsp#!','2022-04-04 07:15:10','2022-04-04 07:15:10'),(114,46504,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2014/11/ZERO-PERCENT-LWEC-Redacted-.pdf','3602675.findlaw5.flsitebuilder.com','ZERO PERCENT LWEC Redacted','ZERO PERCENT LWEC Redacted','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2014/11/ZERO-PERCENT-LWEC-Redacted-.pdf\" target=\"_blank\" rel=\"noopener\">ZERO PERCENT LWEC Redacted</a>','ZERO PERCENT LWEC Redacted','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2014/11/ZERO-PERCENT-LWEC-Redacted-.pdf\" target=\"_blank\" rel=\"noopener\">ZERO PERCENT LWEC Redacted</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(115,46503,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/ctapps/Decisions/2014/Nov14/181opn14-Decision.pdf','nycourts.gov','Matter of Maureen Kigin, Appellant, v. State of New York Workers’ Compensation Board et al','See, Matter of Maureen Kigin, Appellant, v. State of New York Workers’ Compensation Board et al.','See, <a href=\"https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/ctapps/Decisions/2014/Nov14/181opn14-Decision.pdf\" target=\"_blank\" rel=\"noopener\">Matter of Maureen Kigin, Appellant, v. State of New York Workers’ Compensation Board et al</a>.','See, Matter of Maureen Kigin, Appellant, v. State of New York Workers’ Compensation Board et al.','See, <a href=\"https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/ctapps/Decisions/2014/Nov14/181opn14-Decision.pdf\" target=\"_blank\" rel=\"noopener\">Matter of Maureen Kigin, Appellant, v. State of New York Workers’ Compensation Board et al</a>., Respondents. No. 181. Argued 10/14/14 and Decided 11/20/14 .','2022-04-04 07:15:10','2022-04-04 07:15:10'),(116,46502,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/hcpp/MedicalTreatmentGuidelines/Non-AcutePainMTG2014.pdf','wcb.ny.gov','Non-Acute Pain Medical Treatment Guidelines (“NAP MTG”)','The Board has announced the adoption of the Non-Acute Pain Medical Treatment Guidelines (“NAP MTG”).','The Board has announced the adoption of the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/hcpp/MedicalTreatmentGuidelines/Non-AcutePainMTG2014.pdf\" target=\"_blank\" rel=\"noopener\">Non-Acute Pain Medical Treatment Guidelines (“NAP MTG”)</a>.','The Board has announced the adoption of the Non-Acute Pain Medical Treatment Guidelines (“NAP MTG”). As with the other MTGs for the neck, back, knee, shoulder and carpal tunnel syndrome, there are 22 guiding principles which provide a general framework for all the MTGs. The emphasis is on FUNCTIONAL ABILITIES, OBJECTIVE EVIDENCE of the treatment’s efficacy and ACTIVE INTERVENTIONS.','The Board has announced the adoption of the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/hcpp/MedicalTreatmentGuidelines/Non-AcutePainMTG2014.pdf\" target=\"_blank\" rel=\"noopener\">Non-Acute Pain Medical Treatment Guidelines (“NAP MTG”)</a>. As with the other MTGs for the neck, back, knee, shoulder and carpal tunnel syndrome, there are 22 guiding principles which provide a general framework for all the MTGs. The emphasis is on FUNCTIONAL ABILITIES, OBJECTIVE EVIDENCE of the treatment’s efficacy and ACTIVE INTERVENTIONS.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(117,46502,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:mday@getMAD.today','3602675.findlaw5.flsitebuilder.com','contact us','For additional information, please feel free to contact us for an in-house or online presentation about the new on-Acute Pain Medical Treatment Guidelines.','For additional information, please feel free to <a href=\"mailto:mday@getMAD.today\" target=\"_blank\" rel=\"noopener\">contact us</a> for an in-house or online presentation about the new on-Acute Pain Medical Treatment Guidelines.','For additional information, please feel free to contact us for an in-house or online presentation about the new on-Acute Pain Medical Treatment Guidelines.','For additional information, please feel free to <a href=\"mailto:mday@getMAD.today\" target=\"_blank\" rel=\"noopener\">contact us</a> for an in-house or online presentation about the new on-Acute Pain Medical Treatment Guidelines.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(118,46499,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.bcnys.org/inside/wc/2010/crossexamregs.pdf','bcnys.org','https://thelomad.com/getmad.today/wp-contentwww.bcnys.org/inside/wc/2010/crossexamregs.pdf','A copy of the 2010 draft is reproduced below and can also be found at the following link: https://thelomad.com/getmad.today/wp-contentwww.bcnys.org/inside/wc/2010/crossexamregs.pdf.','A copy of the 2010 draft is reproduced below and can also be found at the following link: <a href=\"https://thelomad.com/getmad.today/wp-contentwww.bcnys.org/inside/wc/2010/crossexamregs.pdf\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.bcnys.org/inside/wc/2010/crossexamregs.pdf</a>.','A copy of the 2010 draft is reproduced below and can also be found at the following link: https://thelomad.com/getmad.today/wp-contentwww.bcnys.org/inside/wc/2010/crossexamregs.pdf.','A copy of the 2010 draft is reproduced below and can also be found at the following link: <a href=\"https://thelomad.com/getmad.today/wp-contentwww.bcnys.org/inside/wc/2010/crossexamregs.pdf\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.bcnys.org/inside/wc/2010/crossexamregs.pdf</a>.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(119,46499,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:regulations@wcb.ny.gov','3602675.findlaw5.flsitebuilder.com','regulations@wcb.ny.gov',', Schenectady, NY 12305-2318, (518) 486-9564, e-mail: regulations@wcb.ny.gov.',', Schenectady, NY 12305-2318, (518) 486-9564, e-mail: <a href=\"mailto:regulations@wcb.ny.gov\" target=\"_blank\" rel=\"noopener\">regulations@wcb.ny.gov</a>.','As indicated by the Board in connection with its publication ‘in the NYS Register of its 2015 Regulatory Agenda you can get additional information or submit written comments concerning this and other items on the Regulatory Agenda by contacting Heather M. MacMaster, Associate Attorney, Workers’ Compensation Board, 328 State St., Schenectady, NY 12305-2318, (518) 486-9564, e-mail: regulations@wcb.ny.gov.','As indicated by the Board in connection with its publication ‘in the NYS Register of its 2015 Regulatory Agenda you can get additional information or <strong>submit written comments</strong> concerning this and other items on the Regulatory Agenda by contacting Heather M. MacMaster, Associate Attorney, Workers’ Compensation Board, 328 State St., Schenectady, NY 12305-2318, (518) 486-9564, e-mail: <a href=\"mailto:regulations@wcb.ny.gov\" target=\"_blank\" rel=\"noopener\">regulations@wcb.ny.gov</a>.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(120,46486,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:mday@getMAD.today','3602675.findlaw5.flsitebuilder.com','mday@getMAD.today',' To obtain an answer key immediately, contact mday@getMAD.today.',' To obtain an answer key immediately, contact <a href=\"mailto:mday@getMAD.today\" target=\"_blank\" rel=\"noopener\">mday@getMAD.today</a>.',' To obtain an answer key immediately, contact mday@getMAD.today.',' To obtain an answer key immediately, contact <a href=\"mailto:mday@getMAD.today\" target=\"_blank\" rel=\"noopener\">mday@getMAD.today</a>.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(121,46482,6,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com#_ftn1','3602675.findlaw5.flsitebuilder.com','[1]','[1]   A July 2014 report by the CDC indicates that each day 46 people die from an overdose of prescription painkillers in the United States.','<a href=\"#_ftn1\" name=\"_ftnref1\">[1]</a>   A July 2014 report by the CDC indicates that each day 46 people die from an overdose of prescription painkillers in the United States.','[1]   A July 2014 report by the CDC indicates that each day 46 people die from an overdose of prescription painkillers in the United States.','[1]   A July 2014 report by the CDC indicates that each day 46 people die from an overdose of prescription painkillers in the United States.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(122,46482,6,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com#_ftn2','3602675.findlaw5.flsitebuilder.com','[2]','[2]  Finally, as reported by the CDC in 2007, the costs of opioid abuse totaled “about $55.','<a href=\"#_ftn2\" name=\"_ftnref2\">[2]</a>  Finally, as reported by the CDC in 2007, the costs of opioid abuse totaled “about $55.','[2]  Finally, as reported by the CDC in 2007, the costs of opioid abuse totaled “about $55.','25 states, that it found that New York and Louisiana had the highest amount of narcotic use within Workers’ Compensation cases.<a href=\"#_ftn1\" name=\"_ftnref1\">[1]</a>   A July 2014 report by the CDC indicates that each day 46 people die from an overdose of prescription painkillers in the United States.<a href=\"#_ftn2\" name=\"_ftnref2\">[2]</a>  Finally, as reported by the CDC in 2007, the costs of opioid abuse totaled “about $55.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(123,46482,6,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com#_ftn3','3602675.findlaw5.flsitebuilder.com','[3]','” [3]  Even the introduction to the Non-Acute Pain Guidelines indicates that the Guidelines were drafted in response to the dramatic increase in use of opioids to treat chronic non-cancer pain.','” <a href=\"#_ftn3\" name=\"_ftnref3\">[3]</a>  Even the introduction to the Non-Acute Pain Guidelines indicates that the Guidelines were drafted in response to the dramatic increase in use of opioids to treat chronic non-cancer pain.','” [3]  Even the introduction to the Non-Acute Pain Guidelines indicates that the Guidelines were drafted in response to the dramatic increase in use of opioids to treat chronic non-cancer pain.','” <a href=\"#_ftn3\" name=\"_ftnref3\">[3]</a>  Even the introduction to the Non-Acute Pain Guidelines indicates that the Guidelines were drafted in response to the dramatic increase in use of opioids to treat chronic non-cancer pain.  The significant cost of opioid medications is not only borne by carriers, but also by claimants.  The medication itself is expensive, the risks of use of these medications are significant; add to that the possibility of overdose, and the personal and financial costs become immeasurable.  All of these reasons fashioned the backdrop for the implementation of the Non-Acute Pain','2022-04-04 07:15:10','2022-04-04 07:15:10'),(124,46482,6,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com#_ftnref1','3602675.findlaw5.flsitebuilder.com','[1]','[1] https://thelomad.com/getmad.today/wp-contentwww.','<a href=\"#_ftnref1\" name=\"_ftn1\">[1]</a> https://thelomad.com/getmad.today/wp-contentwww.','[1] https://thelomad.com/getmad.today/wp-contentwww.wcrinet.org/result/use_narcotics2_result.html.','[1] https://thelomad.com/getmad.today/wp-contentwww.wcrinet.org/result/use_narcotics2_result.html.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(125,46482,6,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com#_ftnref2','3602675.findlaw5.flsitebuilder.com','[2]','[2] https://thelomad.com/getmad.today/wp-contentwww.','<a href=\"#_ftnref2\" name=\"_ftn2\">[2]</a> https://thelomad.com/getmad.today/wp-contentwww.','[2] https://thelomad.com/getmad.today/wp-contentwww.cdc.gov/vitalsigns/opioid-prescribing/','[2] https://thelomad.com/getmad.today/wp-contentwww.cdc.gov/vitalsigns/opioid-prescribing/','2022-04-04 07:15:10','2022-04-04 07:15:10'),(126,46482,6,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com#_ftnref3','3602675.findlaw5.flsitebuilder.com','[3]','[3] https://thelomad.com/getmad.today/wp-contentwww.','<a href=\"#_ftnref3\" name=\"_ftn3\">[3]</a> https://thelomad.com/getmad.today/wp-contentwww.','[3] https://thelomad.com/getmad.today/wp-contentwww.','[3] https://thelomad.com/getmad.today/wp-contentwww.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(127,46480,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/forms/c240.pdf','wcb.ny.gov','https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/forms/c240.pdf','https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/forms/c240.pdf','<a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/forms/c240.pdf\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/forms/c240.pdf</a>','https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/forms/c240.pdf','<a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/forms/c240.pdf\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/forms/c240.pdf</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(128,46450,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&#038;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&#038;_butType=4&#038;_butStat=0&#038;_butNum=7&#038;_butInline=1&#038;_butinfo=NY%20WORK%20COMP%2014&#038;_fmtstr=FULL&#038;docnum=3&#038;_startdoc=1&#038;wchp=dGLzVzB-zSkAb&#038;_md5=7d957a56f4603e2ea6acfc6d96284951','lexis.com','WCL § 14(3)','  Having properly calculated the claimant’s average weekly wage under the statutory formula provided by WCL § 14(3) and ','  Having properly calculated the claimant’s average weekly wage under the statutory formula provided by <a href=\"https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&amp;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&amp;_butType=4&amp;_butStat=0&amp;_butNum=7&amp;_butInline=1&amp;_butinfo=NY%20WORK%20COMP%2014&amp;_fmtstr=FULL&amp;docnum=3&amp;_startdoc=1&amp;wchp=dGLzVzB-zSkAb&amp;_md5=7d957a56f4603e2ea6acfc6d96284951\" target=\"_blank\" rel=\"noopener\">WCL § 14(3)</a> and ','  Having properly calculated the claimant’s average weekly wage under the statutory formula provided by WCL § 14(3) and ',' summer months when the claimant would not usually be receiving wages because the averaging provisions that determine AWW spread seasonal wages over an entire year.  Having properly calculated the claimant’s average weekly wage under the statutory formula provided by <a href=\"https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&amp;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&amp;_butType=4&amp;_butStat=0&amp;_butNum=7&amp;_butInline=1&amp;_butinfo=NY%20WORK%20COMP%2014&amp;_fmtstr=FULL&amp;docnum=3&amp;_startdoc=1&amp;wchp=dGLzVzB-zSkAb&amp;_md5=7d957a56f4603e2ea6acfc6d96284951\" target=\"_blank\" rel=\"noopener\">WCL § 14(3)</a> and ','2022-04-04 07:15:10','2022-04-04 07:15:10'),(129,46450,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&#038;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&#038;_butType=4&#038;_butStat=0&#038;_butNum=8&#038;_butInline=1&#038;_butinfo=NY%20WORK%20COMP%2014&#038;_fmtstr=FULL&#038;docnum=3&#038;_startdoc=1&#038;wchp=dGLzVzB-zSkAb&#038;_md5=75bec0b2ce1d16a3c6da61614f25c57b','lexis.com','WCL § 14(4)','WCL § 14(4) for calculating an employee’s average weekly wage, seasonal periods of unemployment, such as are customarily experienced by school teachers and other school district employees, are fully accounted for by using a 200 multiple, instead of the 260 multiple or 300 multiple provided by ','<a href=\"https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&amp;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&amp;_butType=4&amp;_butStat=0&amp;_butNum=8&amp;_butInline=1&amp;_butinfo=NY%20WORK%20COMP%2014&amp;_fmtstr=FULL&amp;docnum=3&amp;_startdoc=1&amp;wchp=dGLzVzB-zSkAb&amp;_md5=75bec0b2ce1d16a3c6da61614f25c57b\" target=\"_blank\" rel=\"noopener\">WCL § 14(4)</a> for calculating an employee’s average weekly wage, seasonal periods of unemployment, such as are customarily experienced by school teachers and other school district employees, are fully accounted for by using a 200 multiple, instead of the 260 multiple or 300 multiple provided by ','Where an employment is seasonal, a carrier cannot suspend compensation benefits during the summer months when the claimant would not usually be receiving wages because the averaging provisions that determine AWW spread seasonal wages over an entire year.  Having properly calculated the claimant’s average weekly wage under the statutory formula provided by WCL § 14(3) and WCL § 14(4) for calculating an employee’s average weekly wage, seasonal periods of unemployment, such as are customarily experienced by school teachers and other school district employees, are fully accounted for by using a 200 multiple, instead of the 260 multiple or 300 multiple provided by WCL § 14(1) for full time, year round five or six day workers. If the employee was denied compensation benefits during the summer months, the fact that a claimant was not regularly employed during that time period would be accounted for twice; once in the calculation of average weekly wage, and then again in determining the compensable periods of disability.','Where an employment is seasonal, a carrier cannot suspend compensation benefits during the summer months when the claimant would not usually be receiving wages because the averaging provisions that determine AWW spread seasonal wages over an entire year.  Having properly calculated the claimant’s average weekly wage under the statutory formula provided by <a href=\"https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&amp;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&amp;_butType=4&amp;_butStat=0&amp;_butNum=7&amp;_butInline=1&amp;_butinfo=NY%20WORK%20COMP%2014&amp;_fmtstr=FULL&amp;docnum=3&amp;_startdoc=1&amp;wchp=dGLzVzB-zSkAb&amp;_md5=7d957a56f4603e2ea6acfc6d96284951\" target=\"_blank\" rel=\"noopener\">WCL § 14(3)</a> and <a href=\"https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&amp;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&amp;_butType=4&amp;_butStat=0&amp;_butNum=8&amp;_butInline=1&amp;_butinfo=NY%20WORK%20COMP%2014&amp;_fmtstr=FULL&amp;docnum=3&amp;_startdoc=1&amp;wchp=dGLzVzB-zSkAb&amp;_md5=75bec0b2ce1d16a3c6da61614f25c57b\" target=\"_blank\" rel=\"noopener\">WCL § 14(4)</a> for calculating an employee’s average weekly wage, seasonal periods of unemployment, such as are customarily experienced by school teachers and other school district employees, are fully accounted for by using a 200 multiple, instead of the 260 multiple or 300 multiple provided by <a href=\"https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&amp;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&amp;_butType=4&amp;_butStat=0&amp;_butNum=9&amp;_butInline=1&amp;_butinfo=NY%20WORK%20COMP%2014&amp;_fmtstr=FULL&amp;docnum=3&amp;_startdoc=1&amp;wchp=dGLzVzB-zSkAb&amp;_md5=26730495bb8eb27dee66bf357766c397\" target=\"_blank\" rel=\"noopener\">WCL § 14(1)</a> for full time, year round five or six day workers. If the employee was denied compensation benefits during the summer months, the fact that a claimant was not regularly employed during that time period would be accounted for twice; once in the calculation of average weekly wage, and then again in determining the compensable periods of disability.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(130,46450,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&#038;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&#038;_butType=4&#038;_butStat=0&#038;_butNum=9&#038;_butInline=1&#038;_butinfo=NY%20WORK%20COMP%2014&#038;_fmtstr=FULL&#038;docnum=3&#038;_startdoc=1&#038;wchp=dGLzVzB-zSkAb&#038;_md5=26730495bb8eb27dee66bf357766c397','lexis.com','WCL § 14(1)','WCL § 14(1) for full time, year round five or six day workers.','<a href=\"https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&amp;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&amp;_butType=4&amp;_butStat=0&amp;_butNum=9&amp;_butInline=1&amp;_butinfo=NY%20WORK%20COMP%2014&amp;_fmtstr=FULL&amp;docnum=3&amp;_startdoc=1&amp;wchp=dGLzVzB-zSkAb&amp;_md5=26730495bb8eb27dee66bf357766c397\" target=\"_blank\" rel=\"noopener\">WCL § 14(1)</a> for full time, year round five or six day workers.','Where an employment is seasonal, a carrier cannot suspend compensation benefits during the summer months when the claimant would not usually be receiving wages because the averaging provisions that determine AWW spread seasonal wages over an entire year.  Having properly calculated the claimant’s average weekly wage under the statutory formula provided by WCL § 14(3) and WCL § 14(4) for calculating an employee’s average weekly wage, seasonal periods of unemployment, such as are customarily experienced by school teachers and other school district employees, are fully accounted for by using a 200 multiple, instead of the 260 multiple or 300 multiple provided by WCL § 14(1) for full time, year round five or six day workers. If the employee was denied compensation benefits during the summer months, the fact that a claimant was not regularly employed during that time period would be accounted for twice; once in the calculation of average weekly wage, and then again in determining the compensable periods of disability.','Where an employment is seasonal, a carrier cannot suspend compensation benefits during the summer months when the claimant would not usually be receiving wages because the averaging provisions that determine AWW spread seasonal wages over an entire year.  Having properly calculated the claimant’s average weekly wage under the statutory formula provided by <a href=\"https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&amp;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&amp;_butType=4&amp;_butStat=0&amp;_butNum=7&amp;_butInline=1&amp;_butinfo=NY%20WORK%20COMP%2014&amp;_fmtstr=FULL&amp;docnum=3&amp;_startdoc=1&amp;wchp=dGLzVzB-zSkAb&amp;_md5=7d957a56f4603e2ea6acfc6d96284951\" target=\"_blank\" rel=\"noopener\">WCL § 14(3)</a> and <a href=\"https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&amp;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&amp;_butType=4&amp;_butStat=0&amp;_butNum=8&amp;_butInline=1&amp;_butinfo=NY%20WORK%20COMP%2014&amp;_fmtstr=FULL&amp;docnum=3&amp;_startdoc=1&amp;wchp=dGLzVzB-zSkAb&amp;_md5=75bec0b2ce1d16a3c6da61614f25c57b\" target=\"_blank\" rel=\"noopener\">WCL § 14(4)</a> for calculating an employee’s average weekly wage, seasonal periods of unemployment, such as are customarily experienced by school teachers and other school district employees, are fully accounted for by using a 200 multiple, instead of the 260 multiple or 300 multiple provided by <a href=\"https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&amp;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&amp;_butType=4&amp;_butStat=0&amp;_butNum=9&amp;_butInline=1&amp;_butinfo=NY%20WORK%20COMP%2014&amp;_fmtstr=FULL&amp;docnum=3&amp;_startdoc=1&amp;wchp=dGLzVzB-zSkAb&amp;_md5=26730495bb8eb27dee66bf357766c397\" target=\"_blank\" rel=\"noopener\">WCL § 14(1)</a> for full time, year round five or six day workers. If the employee was denied compensation benefits during the summer months, the fact that a claimant was not regularly employed during that time period would be accounted for twice; once in the calculation of average weekly wage, and then again in determining the compensable periods of disability.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(131,46448,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentadvance.lexis.com/Auth/Replay?targetUrl=/ContentViewExternalAccess%3FdocId%3D%2Fshared%2Fdocument%2Fadministrative-materials%2Furn%3AcontentItem%3A539Y-D7R0-01WV-S0YJ-00000-00%26Hcsi%3D271075%26title%3D2011%20NY%20Wrk.%20Comp.%20LEXIS%202999%26vendorreportId%3D%26pageno%3D10%26activeRptr%3DPAGE_7559','advance.lexis.com','2011 NY Wrk. Comp. LEXIS 2999, 10-14',', 2011 NY Wrk. Comp. LEXIS 2999, 10-14.','</u>, <a href=\"https://thelomad.com/getmad.today/wp-contentadvance.lexis.com/Auth/Replay?targetUrl=/ContentViewExternalAccess%3FdocId%3D%2Fshared%2Fdocument%2Fadministrative-materials%2Furn%3AcontentItem%3A539Y-D7R0-01WV-S0YJ-00000-00%26Hcsi%3D271075%26title%3D2011%20NY%20Wrk.%20Comp.%20LEXIS%202999%26vendorreportId%3D%26pageno%3D10%26activeRptr%3DPAGE_7559\" target=\"_blank\" rel=\"noopener\">2011 NY Wrk. Comp. LEXIS 2999, 10-14</a>.',', 2011 NY Wrk. Comp. LEXIS 2999, 10-14.','<u>Erie County Medical Ctr. Corp.</u>, <a href=\"https://thelomad.com/getmad.today/wp-contentadvance.lexis.com/Auth/Replay?targetUrl=/ContentViewExternalAccess%3FdocId%3D%2Fshared%2Fdocument%2Fadministrative-materials%2Furn%3AcontentItem%3A539Y-D7R0-01WV-S0YJ-00000-00%26Hcsi%3D271075%26title%3D2011%20NY%20Wrk.%20Comp.%20LEXIS%202999%26vendorreportId%3D%26pageno%3D10%26activeRptr%3DPAGE_7559\" target=\"_blank\" rel=\"noopener\">2011 NY Wrk. Comp. LEXIS 2999, 10-14</a>.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(132,46442,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/hcpp/PrefProviderOrg/ActivePPOList.pdf','wcb.ny.gov','here',' A link to the active PPOs can be found here.',' A link to the active PPOs can be found <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/hcpp/PrefProviderOrg/ActivePPOList.pdf\" target=\"_blank\" rel=\"noopener\">here</a>.',' A link to the active PPOs can be found here.',' A link to the active PPOs can be found <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/hcpp/PrefProviderOrg/ActivePPOList.pdf\" target=\"_blank\" rel=\"noopener\">here</a>.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(133,46439,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2016/04/25-a-Unconstitutional.pdf','3602675.findlaw5.flsitebuilder.com','THE NEWLY REOPENED FUND FOR REOPENED CASES – THE FIRST DEPARTMENT DECLARES THE RETROACTIVE APPLICATION OF 25-A UNCONSTITUTIONAL!','THE NEWLY REOPENED FUND FOR REOPENED CASES – THE FIRST DEPARTMENT DECLARES THE RETROACTIVE APPLICATION OF 25-A UNCONSTITUTIONAL!','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2016/04/25-a-Unconstitutional.pdf\" target=\"_blank\" rel=\"noopener\">THE NEWLY REOPENED FUND FOR REOPENED CASES – THE FIRST DEPARTMENT DECLARES THE RETROACTIVE APPLICATION OF 25-A UNCONSTITUTIONAL!</a>','THE NEWLY REOPENED FUND FOR REOPENED CASES – THE FIRST DEPARTMENT DECLARES THE RETROACTIVE APPLICATION OF 25-A UNCONSTITUTIONAL!','THE NEWLY REOPENED FUND FOR REOPENED CASES – THE FIRST DEPARTMENT DECLARES THE RETROACTIVE APPLICATION OF 25-A UNCONSTITUTIONAL!','2022-04-04 07:15:10','2022-04-04 07:15:10'),(134,46436,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2016/10/Opioid-Decision.pdf','3602675.findlaw5.flsitebuilder.com','Decision','Decision','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2016/10/Opioid-Decision.pdf\" target=\"_blank\" rel=\"noopener\">Decision</a>','The Board Panel, in a recent October 2016 Decision, considered the issue of whether a Claimant’s opioid medications were appropriate.','The Board Panel, in a recent October 2016 Decision, considered the issue of whether a Claimant’s opioid medications were appropriate.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(135,46433,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_892.jsp','wcb.ny.gov','https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_892.jsp','https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_892.jsp','<a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_892.jsp\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_892.jsp</a>','https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_892.jsp','<a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_892.jsp\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_892.jsp</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(136,46422,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/06/EBRB-1-finding-that-MTGs-apply-out-of-state_Redacted.pdf','3602675.findlaw5.flsitebuilder.com','EBRB-1 finding that MTGs apply out of state_Redacted','For a copy of the decision please click on the following link: EBRB-1 finding that MTGs apply out of state_Redacted.','For a copy of the decision please click on the following link: <a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/06/EBRB-1-finding-that-MTGs-apply-out-of-state_Redacted.pdf\" target=\"_blank\" rel=\"noopener\">EBRB-1 finding that MTGs apply out of state_Redacted</a>.','For a copy of the decision please click on the following link: EBRB-1 finding that MTGs apply out of state_Redacted.','For a copy of the decision please click on the following link: <a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/06/EBRB-1-finding-that-MTGs-apply-out-of-state_Redacted.pdf\" target=\"_blank\" rel=\"noopener\">EBRB-1 finding that MTGs apply out of state_Redacted</a>.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(137,46420,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/ctapps/Decisions/2017/Oct17/96opn17-Decision.pdf','nycourts.gov','https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/ctapps/Decisions/2017/Oct17/96opn17-Decision.pdf','The entire American Economy decision can be found here:   https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/ctapps/Decisions/2017/Oct17/96opn17-Decision.pdf','The entire <u>American Economy</u> decision can be found here:   <a href=\"https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/ctapps/Decisions/2017/Oct17/96opn17-Decision.pdf\">https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/ctapps/Decisions/2017/Oct17/96opn17-Decision.pdf</a>','The entire American Economy decision can be found here:   https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/ctapps/Decisions/2017/Oct17/96opn17-Decision.pdf','The entire <u>American Economy</u> decision can be found here:   <a href=\"https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/ctapps/Decisions/2017/Oct17/96opn17-Decision.pdf\">https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/ctapps/Decisions/2017/Oct17/96opn17-Decision.pdf</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(138,46418,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.crowdrise.com/rickycostnerjrculina/fundraiser/melissaday1/setup_success/member','crowdrise.com','https://thelomad.com/getmad.today/wp-contentwww.crowdrise.com/rickycostnerjrculina/fundraiser/melissaday1/setup_success/member','https://thelomad.com/getmad.today/wp-contentwww.crowdrise.com/rickycostnerjrculina/fundraiser/melissaday1/setup_success/member.','<a href=\"https://thelomad.com/getmad.today/wp-contentwww.crowdrise.com/rickycostnerjrculina/fundraiser/melissaday1/setup_success/member\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.crowdrise.com/rickycostnerjrculina/fundraiser/melissaday1/setup_success/member</a>.','https://thelomad.com/getmad.today/wp-contentwww.crowdrise.com/rickycostnerjrculina/fundraiser/melissaday1/setup_success/member.','<a href=\"https://thelomad.com/getmad.today/wp-contentwww.crowdrise.com/rickycostnerjrculina/fundraiser/melissaday1/setup_success/member\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.crowdrise.com/rickycostnerjrculina/fundraiser/melissaday1/setup_success/member</a>.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(139,46414,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.supremecourt.gov/DocketPDF/17/17-1179/25081/20171226172748924_Liberty%20Mutual%20-%20APPENDIX%20-%20cert.%20extension%20application.pdf','supremecourt.gov','American Economy Insurance Company','Plaintiffs in the American Economy Insurance Company case have filed a','Plaintiffs in the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.supremecourt.gov/DocketPDF/17/17-1179/25081/20171226172748924_Liberty%20Mutual%20-%20APPENDIX%20-%20cert.%20extension%20application.pdf\" target=\"_blank\" rel=\"noopener\"><em>American Economy Insurance Company</em></a> case have filed a','Plaintiffs in the American Economy Insurance Company case have filed a Petition for a Writ of Certiorari in the United States Supreme Court.  The petition is the mechanism by which plaintiffs request Supreme Court review of the Court of Appeals’ decision finding that the amendment to the statute in 2013 which closed the fund for reopened cases to any claim after 1/1/14 was constitutional. Plaintiffs seek to present their arguments to the Supreme Court that the 2013 amendment violates the U.S.','Plaintiffs in the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.supremecourt.gov/DocketPDF/17/17-1179/25081/20171226172748924_Liberty%20Mutual%20-%20APPENDIX%20-%20cert.%20extension%20application.pdf\" target=\"_blank\" rel=\"noopener\"><em>American Economy Insurance Company</em></a> case have filed a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.supremecourt.gov/DocketPDF/17/17-1179/36170/20180221174511203_17-____%20--%20AEIC%20v.%20NY%20--%20cert.%20petition.pdf\" target=\"_blank\" rel=\"noopener\">Petition for a Writ of Certiorari in the United States Supreme Court</a>.  The petition is the mechanism by which plaintiffs request Supreme Court review of the Court of Appeals’ decision finding that the amendment to the statute in 2013 which closed the fund for reopened cases to any claim after 1/1/14 was cons','2022-04-04 07:15:10','2022-04-04 07:15:10'),(140,46414,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.supremecourt.gov/DocketPDF/17/17-1179/36170/20180221174511203_17-____%20--%20AEIC%20v.%20NY%20--%20cert.%20petition.pdf','supremecourt.gov','Petition for a Writ of Certiorari in the United States Supreme Court','Petition for a Writ of Certiorari in the United States Supreme Court.','<a href=\"https://thelomad.com/getmad.today/wp-contentwww.supremecourt.gov/DocketPDF/17/17-1179/36170/20180221174511203_17-____%20--%20AEIC%20v.%20NY%20--%20cert.%20petition.pdf\" target=\"_blank\" rel=\"noopener\">Petition for a Writ of Certiorari in the United States Supreme Court</a>.','Plaintiffs in the American Economy Insurance Company case have filed a Petition for a Writ of Certiorari in the United States Supreme Court.  The petition is the mechanism by which plaintiffs request Supreme Court review of the Court of Appeals’ decision finding that the amendment to the statute in 2013 which closed the fund for reopened cases to any claim after 1/1/14 was constitutional. Plaintiffs seek to present their arguments to the Supreme Court that the 2013 amendment violates the U.S.','Plaintiffs in the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.supremecourt.gov/DocketPDF/17/17-1179/25081/20171226172748924_Liberty%20Mutual%20-%20APPENDIX%20-%20cert.%20extension%20application.pdf\" target=\"_blank\" rel=\"noopener\"><em>American Economy Insurance Company</em></a> case have filed a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.supremecourt.gov/DocketPDF/17/17-1179/36170/20180221174511203_17-____%20--%20AEIC%20v.%20NY%20--%20cert.%20petition.pdf\" target=\"_blank\" rel=\"noopener\">Petition for a Writ of Certiorari in the United States Supreme Court</a>.  The petition is the mechanism by which plaintiffs request Supreme Court review of the Court of Appeals’ decision finding that the amendment to the statute in 2013 which closed the fund for reopened cases to any claim after 1/1/14 was cons','2022-04-04 07:15:10','2022-04-04 07:15:10'),(141,46414,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.supremecourt.gov/search.aspx?filename=/docket/docketfiles/html/public/17-1179.html','supremecourt.gov','the case has been distributed for Conference on 5/31/18','According to information on the Supreme Court’s website, the case has been distributed for Conference on 5/31/18.','According to information on the Supreme Court’s website, <a href=\"https://thelomad.com/getmad.today/wp-contentwww.supremecourt.gov/search.aspx?filename=/docket/docketfiles/html/public/17-1179.html\" target=\"_blank\" rel=\"noopener\">the case has been distributed for Conference on 5/31/18</a>.','According to information on the Supreme Court’s website, the case has been distributed for Conference on 5/31/18.','According to information on the Supreme Court’s website, <a href=\"https://thelomad.com/getmad.today/wp-contentwww.supremecourt.gov/search.aspx?filename=/docket/docketfiles/html/public/17-1179.html\" target=\"_blank\" rel=\"noopener\">the case has been distributed for Conference on 5/31/18</a>.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(142,46388,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/reporter/3dseries/2018/2018_00586.htm','nycourts.gov','https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/reporter/3dseries/2018/2018_00586.htm','2018) which may be viewed in its entirety here:  https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/reporter/3dseries/2018/2018_00586.htm.','2018) which may be viewed in its entirety here:  <a href=\"https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/reporter/3dseries/2018/2018_00586.htm\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/reporter/3dseries/2018/2018_00586.htm</a>.','2018) which may be viewed in its entirety here:  https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/reporter/3dseries/2018/2018_00586.htm.','2018 in Matter of Yonkosky v. Town of Hamburg, 2018 NY Slip Op 00586, 158 AD3d 860 (3d Dept. 2018) which may be viewed in its entirety here:  <a href=\"https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/reporter/3dseries/2018/2018_00586.htm\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/reporter/3dseries/2018/2018_00586.htm</a>.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(143,46386,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_1119.jsp','wcb.ny.gov','https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_1119.jsp','Rodriguez, Chair of the WCB issued Subject 046-1119, https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_1119.jsp, touting the Board’s dubious accomplishment in having reduced the appeals inventory to 3,297 applications awaiting a determination and brandishing a statistic that 92% were decided in less than 6 months.','Rodriguez, Chair of the WCB issued Subject 046-1119, <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_1119.jsp\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_1119.jsp</a>, touting the Board’s dubious accomplishment in having reduced the appeals inventory to 3,297 applications awaiting a determination and brandishing a statistic that 92% were decided in less than 6 months.','On November 23, 2018, Clarissa M. Rodriguez, Chair of the WCB issued Subject 046-1119, https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_1119.jsp, touting the Board’s dubious accomplishment in having reduced the appeals inventory to 3,297 applications awaiting a determination and brandishing a statistic that 92% were decided in less than 6 months.','On November 23, 2018, Clarissa M. Rodriguez, Chair of the WCB issued Subject 046-1119, <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_1119.jsp\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_1119.jsp</a>, touting the Board’s dubious accomplishment in having reduced the appeals inventory to 3,297 applications awaiting a determination and brandishing a statistic that 92% were decided in less than 6 months.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(144,46387,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_1067.jsp','wcb.ny.gov','Subject Number 046-1067','The Board has received a number of inquiries associated with Subject Number 046-1067, specifically related to the timing of the implementation of forms associated with Schedule Loss of Use evaluations.','The Board has received a number of inquiries associated with <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_1067.jsp\" target=\"_blank\" rel=\"noopener\">Subject Number 046-1067</a>, specifically related to the timing of the implementation of forms associated with Schedule Loss of Use evaluations.','The Board has received a number of inquiries associated with Subject Number 046-1067, specifically related to the timing of the implementation of forms associated with Schedule Loss of Use evaluations.','The Board has received a number of inquiries associated with <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_1067.jsp\" target=\"_blank\" rel=\"noopener\">Subject Number 046-1067</a>, specifically related to the timing of the implementation of forms associated with Schedule Loss of Use evaluations.','2022-04-04 07:15:10','2022-04-04 07:15:10'),(145,46381,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527345.pdf','decisions.courts.state.ny.us','https://thelomad.com/getmad.today/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527345.pdf','Saulsbury/Federal Signal, https://thelomad.com/getmad.today/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527345.pdf','Saulsbury/Federal Signal</u>, <a href=\"https://thelomad.com/getmad.today/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527345.pdf\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527345.pdf</a>','Stone v. Saulsbury/Federal Signal, https://thelomad.com/getmad.today/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527345.pdf','<u>Stone v. Saulsbury/Federal Signal</u>, <a href=\"https://thelomad.com/getmad.today/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527345.pdf\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527345.pdf</a>','2022-04-04 07:15:10','2022-04-04 07:15:10'),(146,46383,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527808.pdf','decisions.courts.state.ny.us','https://thelomad.com/getmad.today/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527808.pdf','Visiting Nurses Home Care, https://thelomad.com/getmad.today/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527808.pdf.','Visiting Nurses Home Care, </u><a href=\"https://thelomad.com/getmad.today/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527808.pdf\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527808.pdf</a>.','Scott v. Visiting Nurses Home Care, https://thelomad.com/getmad.today/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527808.pdf.','<u>Scott v. Visiting Nurses Home Care, </u><a href=\"https://thelomad.com/getmad.today/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527808.pdf\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527808.pdf</a>.','2022-04-04 07:15:11','2022-04-04 07:15:11'),(147,46380,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/melissa-a-day/','3602675.findlaw5.flsitebuilder.com','insurance carriers','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted to the Bar in 1997.','Melissa began her practice defending workers’ compensation <a href=\"/about/melissa-a-day/\">insurance carriers</a> and self-insured employers since shortly after she was admitted to the Bar in 1997.','Melissa was chosen for membership by the Buffalo Business First Leadership Trust Selection Committee due to her experience, leadership and influence in the local business landscape and beyond. Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted to the Bar in 1997. She has over 20 years of general workers’ compensation defense experience, and has extensive appellate experience at various appellate divisions, including successfully arguing Burns v.','Melissa was chosen for membership by the Buffalo Business First Leadership Trust Selection Committee due to her experience, leadership and influence in the local business landscape and beyond. Melissa began her practice defending workers’ compensation <a href=\"/about/melissa-a-day/\">insurance carriers</a> and self-insured employers since shortly after she was admitted to the Bar in 1997. She has over 20 years of general workers’ compensation defense experience, and has extensive appellate experience at various appellate divisions, including successfully arguing <a href=\"https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/reporter/3dseries/2007/2007_07498.htm\" target=\"_blank\" rel=\"noopener\">Burns v. Varialle, 9 N.Y.3d 207, 879 N.E.2d 140, 849 N.Y.S.2d 1.</a> Melissa is extremely well versed in workers’ compensation subrogation issues and general liability defense and also frequently lectures on and blogs about recent developments in Workers’ Compensation Law. She is the Founder, Owner and Moderator of the Linkedin Group, New York Workers’ Compensation Forum which currently boasts nearly 1,600 members. She is a member of several legal professional memberships, including, New York Self Insured Association, Buffalo Clams Association, Self-Insured Association of the Niagara Frontier and Notre Dame Club of Buffalo/Western NY. Melissa’s degrees are from Canisius College where she receiv','2022-04-04 07:15:11','2022-04-04 07:15:11'),(148,46380,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/reporter/3dseries/2007/2007_07498.htm','nycourts.gov','Burns v. Varialle, 9 N.Y.3d 207, 879 N.E.2d 140, 849 N.Y.S.2d 1.','She has over 20 years of general workers’ compensation defense experience, and has extensive appellate experience at various appellate divisions, including successfully arguing Burns v. Varialle, 9 N.Y.3d 207, 879 N.E.2d 140, 849 N.Y.S.2d 1. Melissa is extremely well versed in workers’ compensation subrogation issues and general liability defense and also frequently lectures on and blogs about recent developments in Workers’ Compensation Law.','She has over 20 years of general workers’ compensation defense experience, and has extensive appellate experience at various appellate divisions, including successfully arguing <a href=\"https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/reporter/3dseries/2007/2007_07498.htm\" target=\"_blank\" rel=\"noopener\">Burns v. Varialle, 9 N.Y.3d 207, 879 N.E.2d 140, 849 N.Y.S.2d 1.</a> Melissa is extremely well versed in workers’ compensation subrogation issues and general liability defense and also frequently lectures on and blogs about recent developments in Workers’ Compensation Law.','She has over 20 years of general workers’ compensation defense experience, and has extensive appellate experience at various appellate divisions, including successfully arguing Burns v. Varialle, 9 N.Y.3d 207, 879 N.E.2d 140, 849 N.Y.S.2d 1. Melissa is extremely well versed in workers’ compensation subrogation issues and general liability defense and also frequently lectures on and blogs about recent developments in Workers’ Compensation Law.','she was admitted to the Bar in 1997. She has over 20 years of general workers’ compensation defense experience, and has extensive appellate experience at various appellate divisions, including successfully arguing <a href=\"https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/reporter/3dseries/2007/2007_07498.htm\" target=\"_blank\" rel=\"noopener\">Burns v. Varialle, 9 N.Y.3d 207, 879 N.E.2d 140, 849 N.Y.S.2d 1.</a> Melissa is extremely well versed in workers’ compensation subrogation issues and general liability defense and also frequently lectures on and blogs about recent developments in Workers’ Compensation Law. She is the Founder, Owner and Moderator of the Linkedin Group, New York Workers’ Compensation Forum which currently boasts nearly 1,600 members. She is a member of several legal professional memberships, including, New York Self Insured Association, Buffalo Clams Association, Self-Insured Association of the Niagara Frontier and Notre Dame Club of Buffalo/Western NY. Melissa’s degrees are from Canisius College where she received a B.A. in English and from Notre Dame Law','2022-04-04 07:15:11','2022-04-04 07:15:11'),(149,46378,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:regulations@wcb.ny.gov','3602675.findlaw5.flsitebuilder.com','regulations@wcb.ny.gov','  To submit comments email regulations@wcb.ny.gov.','  To submit comments email <a href=\"mailto:regulations@wcb.ny.gov\" target=\"_blank\" rel=\"noopener\">regulations@wcb.ny.gov</a>.','  To submit comments email regulations@wcb.ny.gov.','  To submit comments email <a href=\"mailto:regulations@wcb.ny.gov\" target=\"_blank\" rel=\"noopener\">regulations@wcb.ny.gov</a>. The 60 day comment period will end on August 7, 2020.','2022-04-04 07:15:11','2022-04-04 07:15:11'),(150,46329,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/hcpp/ImpairmentGuidelines/SLU-FAQs.jsp','wcb.ny.gov','https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/hcpp/ImpairmentGuidelines/SLU-FAQs.jsp',' https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/hcpp/ImpairmentGuidelines/SLU-FAQs.jsp',' <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/hcpp/ImpairmentGuidelines/SLU-FAQs.jsp\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/hcpp/ImpairmentGuidelines/SLU-FAQs.jsp</a>',' https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/hcpp/ImpairmentGuidelines/SLU-FAQs.jsp',' https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/hcpp/ImpairmentGuidelines/SLU-FAQs.jsp','2022-04-04 07:15:11','2022-04-04 07:15:11'),(151,48934,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentvimeo.com/676362013','vimeo.com','click here','You can now watch a video of the oral argument from this case - click here to watch the video.','You can now watch a video of the oral argument from this case - <a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/676362013\"><strong>click here</strong></a> to watch the video.','3d 207 (2007), has been the highlight of Melissa Day\'s career as an attorney. You can now watch a video of the oral argument from this case - click here to watch the video.','3d 207 (2007), has been the highlight of Melissa Day\'s career as an attorney. You can now watch a video of the oral argument from this case - <a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/676362013\"><strong>click here</strong></a> to watch the video.','2022-04-04 07:15:11','2022-04-04 07:15:11'),(152,48934,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:mday@getMAD.today','3602675.findlaw5.flsitebuilder.com','mday@getMAD.today','You can request a password by sending an e-mail to Melissa Day at mday@getMAD.today','You can request a password by sending an e-mail to Melissa Day at <a role=\"link\" href=\"mailto:mday@getMAD.today\">mday@getMAD.today</a>','The video does require a password to view. You can request a password by sending an e-mail to Melissa Day at mday@getMAD.today','The video does require a password to view. You can request a password by sending an e-mail to Melissa Day at <a role=\"link\" href=\"mailto:mday@getMAD.today\">mday@getMAD.today</a>','2022-04-04 07:15:11','2022-04-04 07:15:11'),(238,46191,46077,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/day-melissa-a/','3602675.findlaw5.flsitebuilder.com','Read more','Read more','<a href=\"/attorney/day-melissa-a/\">Read more</a>','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]James B. Cousins[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]James B.','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. <a href=\"/attorney/day-melissa-a/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]<h2>James B. Cousins</h2>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">James B.','2022-04-11 20:14:58','2022-04-11 20:14:58'),(239,46191,46073,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/cousins-james-b','3602675.findlaw5.flsitebuilder.com','Read more','Read more','<a role=\"link\" href=\"/attorney/cousins-james-b\">Read more</a>','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]James B. Cousins[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]James B.','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. <a href=\"/attorney/day-melissa-a/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]<h2>James B. Cousins</h2>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">James B.','2022-04-11 20:14:58','2022-04-11 20:14:58'),(240,46191,46091,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/prince-brian-k/','3602675.findlaw5.flsitebuilder.com','Read more','Read more','<a role=\"link\" href=\"/attorney/prince-brian-k/\">Read more</a>','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]James B. Cousins[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]James B.','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. <a href=\"/attorney/day-melissa-a/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]<h2>James B. Cousins</h2>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">James B.','2022-04-11 20:14:58','2022-04-11 20:14:58'),(241,46191,46089,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/mackey-shannan-m-/','3602675.findlaw5.flsitebuilder.com','Read more','Read more','<a role=\"link\" href=\"/attorney/mackey-shannan-m-/\">Read more</a>','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]James B. Cousins[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]James B.','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. <a href=\"/attorney/day-melissa-a/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]<h2>James B. Cousins</h2>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">James B.','2022-04-11 20:14:58','2022-04-11 20:14:58'),(242,46191,46085,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/kornacki-paul-b-/','3602675.findlaw5.flsitebuilder.com','Read more','My Legal Superpower: 20 plus years of experience in Workers’ Compensation Read more','My Legal Superpower: 20 plus years of experience in Workers’ Compensation <a role=\"link\" href=\"/attorney/kornacki-paul-b-/\">Read more</a>','My Legal Superpower: 20 plus years of experience in Workers’ Compensation Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row7\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/Cassie_Christman_pp.jpg\" url=\"/attorney/christman-cassandra-e/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]Cassandra E. Christman','My Legal Superpower: 20 plus years of experience in Workers’ Compensation <a role=\"link\" href=\"/attorney/kornacki-paul-b-/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row7\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/Cassie_Christman_pp.jpg\" url=\"/attorney/christman-cassandra-e/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Cassandra E. Christman</span>','2022-04-11 20:14:58','2022-04-11 20:14:58'),(243,46191,46071,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/christman-cassandra-e/','3602675.findlaw5.flsitebuilder.com','Read more','Read more','<a role=\"link\" href=\"/attorney/christman-cassandra-e/\">Read more</a>','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]James B. Cousins[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]James B.','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. <a href=\"/attorney/day-melissa-a/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]<h2>James B. Cousins</h2>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">James B.','2022-04-11 20:14:58','2022-04-11 20:14:58'),(244,46191,46075,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/daly-melanie-a/','3602675.findlaw5.flsitebuilder.com','Read more','Read more','<a role=\"link\" href=\"/attorney/daly-melanie-a/\">Read more</a>','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]James B. Cousins[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]James B.','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. <a href=\"/attorney/day-melissa-a/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]<h2>James B. Cousins</h2>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">James B.','2022-04-11 20:14:58','2022-04-11 20:14:58'),(245,46191,46079,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/diegelman-neil-a/','3602675.findlaw5.flsitebuilder.com','Read More','Read More','<a role=\"link\" href=\"/attorney/diegelman-neil-a/\">Read More</a>','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]James B. Cousins[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]James B.','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. <a href=\"/attorney/day-melissa-a/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]<h2>James B. Cousins</h2>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">James B.','2022-04-11 20:14:58','2022-04-11 20:14:58'),(246,46191,46083,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/hatten-alexis-d/','3602675.findlaw5.flsitebuilder.com','Read more','Read more','<a role=\"link\" href=\"/attorney/hatten-alexis-d/\">Read more</a>','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]James B. Cousins[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]James B.','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. <a href=\"/attorney/day-melissa-a/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]<h2>James B. Cousins</h2>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">James B.','2022-04-11 20:14:58','2022-04-11 20:14:58'),(247,46191,46081,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/gray-katrina/','3602675.findlaw5.flsitebuilder.com','Read more','Read more','<a role=\"link\" href=\"/attorney/gray-katrina/\">Read more</a>','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]James B. Cousins[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]James B.','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. <a href=\"/attorney/day-melissa-a/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]<h2>James B. Cousins</h2>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">James B.','2022-04-11 20:14:58','2022-04-11 20:14:58'),(248,46191,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/buehler-vicki-l/','3602675.findlaw5.flsitebuilder.com','Read more','Read more','<a role=\"link\" href=\"/attorney/buehler-vicki-l/\">Read more</a>','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]James B. Cousins[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]James B.','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. <a href=\"/attorney/day-melissa-a/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]<h2>James B. Cousins</h2>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">James B.','2022-04-11 20:14:58','2022-04-11 20:14:58'),(249,46191,48168,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/shannon-brendan-t/','3602675.findlaw5.flsitebuilder.com','Read More','Read More','<a role=\"link\" href=\"/attorney/shannon-brendan-t/\">Read More</a>','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]James B. Cousins[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]James B.','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. <a href=\"/attorney/day-melissa-a/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]<h2>James B. Cousins</h2>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">James B.','2022-04-11 20:14:58','2022-04-11 20:14:58'),(250,46191,47314,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/gould-andrew/','3602675.findlaw5.flsitebuilder.com','Read more','Read more','<a role=\"link\" href=\"/attorney/gould-andrew/\">Read more</a>','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]James B. Cousins[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]James B.','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. <a href=\"/attorney/day-melissa-a/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]<h2>James B. Cousins</h2>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">James B.','2022-04-11 20:14:58','2022-04-11 20:14:58'),(251,46191,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/huang-bingchen-x/','3602675.findlaw5.flsitebuilder.com','Read More','Read More','<a role=\"link\" href=\"/attorney/huang-bingchen-x/\">Read More</a>','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]James B. Cousins[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]James B.','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. <a href=\"/attorney/day-melissa-a/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]<h2>James B. Cousins</h2>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">James B.','2022-04-11 20:14:58','2022-04-11 20:14:58'),(252,46191,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/harada-satoko-suki-x/','3602675.findlaw5.flsitebuilder.com','Read More','Read More','<a role=\"link\" href=\"/attorney/harada-satoko-suki-x/\">Read More</a>','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]James B. Cousins[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]James B.','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. <a href=\"/attorney/day-melissa-a/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]<h2>James B. Cousins</h2>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">James B.','2022-04-11 20:14:58','2022-04-11 20:14:58'),(253,46191,47861,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/frances-mary/','3602675.findlaw5.flsitebuilder.com','Read more','Read more','<a role=\"link\" href=\"/attorney/frances-mary/\">Read more</a>','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]James B. Cousins[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]James B.','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. <a href=\"/attorney/day-melissa-a/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]<h2>James B. Cousins</h2>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">James B.','2022-04-11 20:14:58','2022-04-11 20:14:58'),(254,46191,48606,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/machelor-kristin-m/','3602675.findlaw5.flsitebuilder.com','Read More','Read More','<a role=\"link\" href=\"/attorney/machelor-kristin-m/\">Read More</a>','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]James B. Cousins[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]James B.','My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. <a href=\"/attorney/day-melissa-a/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.14.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/cousins-james-b/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" disabled=\"on\" global_colors_info=\"{}\"]<h2>James B. Cousins</h2>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">James B.','2022-04-11 20:14:58','2022-04-11 20:14:58'),(330,48410,46179,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/thomas-m-dickinson/','3602675.findlaw5.flsitebuilder.com','Read more','Read more','<a role=\"link\" href=\"/about/thomas-m-dickinson/\">Read more</a>','During his tenure at Special Funds, Tom defended the interests ... Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]Elena N. Camp','During his tenure at Special Funds, Tom defended the interests ... <a role=\"link\" href=\"/about/thomas-m-dickinson/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Elena N. Camp</span>','2022-04-20 18:14:51','2022-04-20 18:14:51'),(331,48410,46129,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/elena-n-camp/','3602675.findlaw5.flsitebuilder.com','Read more','Read more','<a role=\"link\" href=\"/about/elena-n-camp/\">Read more</a>','During his tenure at Special Funds, Tom defended the interests ... Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]Elena N. Camp','During his tenure at Special Funds, Tom defended the interests ... <a role=\"link\" href=\"/about/thomas-m-dickinson/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Elena N. Camp</span>','2022-04-20 18:14:51','2022-04-20 18:14:51'),(332,48410,46171,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/rebecca-c-brashear/','3602675.findlaw5.flsitebuilder.com','Read more','Read more','<a role=\"link\" href=\"/about/rebecca-c-brashear/\">Read more</a>','During his tenure at Special Funds, Tom defended the interests ... Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]Elena N. Camp','During his tenure at Special Funds, Tom defended the interests ... <a role=\"link\" href=\"/about/thomas-m-dickinson/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Elena N. Camp</span>','2022-04-20 18:14:51','2022-04-20 18:14:51'),(333,48410,46119,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/jillian-m-chavers/','3602675.findlaw5.flsitebuilder.com','Read more','Read more','<a role=\"link\" href=\"/about/jillian-m-chavers/\">Read more</a>','During his tenure at Special Funds, Tom defended the interests ... Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]Elena N. Camp','During his tenure at Special Funds, Tom defended the interests ... <a role=\"link\" href=\"/about/thomas-m-dickinson/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Elena N. Camp</span>','2022-04-20 18:14:51','2022-04-20 18:14:51'),(334,48410,46101,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/daniel-h-flynn/','3602675.findlaw5.flsitebuilder.com','Read more','Read more','<a role=\"link\" href=\"/about/daniel-h-flynn/\">Read more</a>','During his tenure at Special Funds, Tom defended the interests ... Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]Elena N. Camp','During his tenure at Special Funds, Tom defended the interests ... <a role=\"link\" href=\"/about/thomas-m-dickinson/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Elena N. Camp</span>','2022-04-20 18:14:51','2022-04-20 18:14:51'),(335,48410,46121,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/jody-l-guiher/','3602675.findlaw5.flsitebuilder.com','Read more','Read more','<a role=\"link\" href=\"/about/jody-l-guiher/\">Read more</a>','During his tenure at Special Funds, Tom defended the interests ... Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]Elena N. Camp','During his tenure at Special Funds, Tom defended the interests ... <a role=\"link\" href=\"/about/thomas-m-dickinson/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Elena N. Camp</span>','2022-04-20 18:14:51','2022-04-20 18:14:51'),(336,48410,46132,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/jenny-l-malkowski/','3602675.findlaw5.flsitebuilder.com','Read more','Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row24\" module_class=\"fl-feature\" _builder_version=\"4.','<a role=\"link\" href=\"/about/jenny-l-malkowski/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row24\" module_class=\"fl-feature\" _builder_version=\"4.','She has worked extensively in the legal field for more than 10 years in various areas of ... Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row24\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/11/Justice-WIlliams.jpg\" url=\"/about/justice-c-williams/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]Justice C. Williams','She has worked extensively in the legal field for more than 10 years in various areas of ... <a role=\"link\" href=\"/about/jenny-l-malkowski/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row24\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/11/Justice-WIlliams.jpg\" url=\"/about/justice-c-williams/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Justice C. Williams</span>','2022-04-20 18:14:51','2022-04-20 18:14:51'),(337,48410,46122,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/justice-c-williams/','3602675.findlaw5.flsitebuilder.com','Read more','Read more','<a role=\"link\" href=\"/about/justice-c-williams/\">Read more</a>','During his tenure at Special Funds, Tom defended the interests ... Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]Elena N. Camp','During his tenure at Special Funds, Tom defended the interests ... <a role=\"link\" href=\"/about/thomas-m-dickinson/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Elena N. Camp</span>','2022-04-20 18:14:51','2022-04-20 18:14:51'),(338,48410,48023,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/danielle-f-draschan/','3602675.findlaw5.flsitebuilder.com','Read More','Read More','<a role=\"link\" href=\"/about/danielle-f-draschan/\">Read More</a>','During his tenure at Special Funds, Tom defended the interests ... Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]Elena N. Camp','During his tenure at Special Funds, Tom defended the interests ... <a role=\"link\" href=\"/about/thomas-m-dickinson/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Elena N. Camp</span>','2022-04-20 18:14:51','2022-04-20 18:14:51'),(339,48410,48022,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/jessica-m-stevens/','3602675.findlaw5.flsitebuilder.com','Read More','Read More','<a role=\"link\" href=\"/about/jessica-m-stevens/\">Read More</a>','During his tenure at Special Funds, Tom defended the interests ... Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]Elena N. Camp','During his tenure at Special Funds, Tom defended the interests ... <a role=\"link\" href=\"/about/thomas-m-dickinson/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Elena N. Camp</span>','2022-04-20 18:14:51','2022-04-20 18:14:51'),(340,48410,48020,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/corrine-n-newman/','3602675.findlaw5.flsitebuilder.com','Read More','Read More','<a role=\"link\" href=\"/about/corrine-n-newman/\">Read More</a>','During his tenure at Special Funds, Tom defended the interests ... Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]Elena N. Camp','During his tenure at Special Funds, Tom defended the interests ... <a role=\"link\" href=\"/about/thomas-m-dickinson/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Elena N. Camp</span>','2022-04-20 18:14:51','2022-04-20 18:14:51'),(341,48410,48823,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/kelsey-x-kunz/','3602675.findlaw5.flsitebuilder.com','Read More','Read More','<a role=\"link\" href=\"/about/kelsey-x-kunz/\">Read More</a>','During his tenure at Special Funds, Tom defended the interests ... Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]Elena N. Camp','During his tenure at Special Funds, Tom defended the interests ... <a role=\"link\" href=\"/about/thomas-m-dickinson/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Elena N. Camp</span>','2022-04-20 18:14:51','2022-04-20 18:14:51'),(342,48410,48685,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/alexandra-m-rizk/','3602675.findlaw5.flsitebuilder.com','Read More','Read More','<a role=\"link\" href=\"/about/alexandra-m-rizk/\">Read More</a>','During his tenure at Special Funds, Tom defended the interests ... Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]Elena N. Camp','During his tenure at Special Funds, Tom defended the interests ... <a role=\"link\" href=\"/about/thomas-m-dickinson/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Elena N. Camp</span>','2022-04-20 18:14:51','2022-04-20 18:14:51'),(343,48410,48691,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/maxwell-j-doldan/','3602675.findlaw5.flsitebuilder.com','Read More','Read More','<a role=\"link\" href=\"/about/maxwell-j-doldan/\">Read More</a>','During his tenure at Special Funds, Tom defended the interests ... Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]Elena N. Camp','During his tenure at Special Funds, Tom defended the interests ... <a role=\"link\" href=\"/about/thomas-m-dickinson/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Elena N. Camp</span>','2022-04-20 18:14:51','2022-04-20 18:14:51'),(344,48410,48689,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/kierria-a-jones/','3602675.findlaw5.flsitebuilder.com','Read More','Read More','<a role=\"link\" href=\"/about/kierria-a-jones/\">Read More</a>','During his tenure at Special Funds, Tom defended the interests ... Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]Elena N. Camp','During his tenure at Special Funds, Tom defended the interests ... <a role=\"link\" href=\"/about/thomas-m-dickinson/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row14\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Elena N. Camp</span>','2022-04-20 18:14:51','2022-04-20 18:14:51'),(353,48173,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentv.ringcentral.com/conf/on/109954692','v.ringcentral.com','“Lawyers and Friends”','Check out LOMADtv – click on the picture below to join us live on the 4th Friday of each month at noon for our new series “Lawyers and Friends”!','<h2>Check out LOMADtv – click on the picture below to join us live on the 4th Friday of each month at noon for our new series <strong><a href=\"https://thelomad.com/getmad.today/wp-contentv.ringcentral.com/conf/on/109954692\">“Lawyers and Friends”</a>!','Check out LOMADtv – click on the picture below to join us live on the 4th Friday of each month at noon for our new series “Lawyers and Friends”![/et_pb_text][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/01/holiday-photo.png\" align=\"center\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]Having trouble clicking the link in the picture above? CLICK HERE instead.[/et_pb_text][et_pb_text admin_label=\"Testimonial\" _builder_version=\"4.3.2\" custom_margin=\"15px||15px||true|false\" custom_padding=\"20px|20px|20px|20px|true|true\" border_width_all=\"1px\" border_color_all=\"rgba(0,0,0,0.15)\" global_colors_info=\"{}\"]Studio Audience Reviews','Check out LOMADtv – click on the picture below to join us live on the 4th Friday of each month at noon for our new series <strong><a href=\"https://thelomad.com/getmad.today/wp-contentv.ringcentral.com/conf/on/109954692\">“Lawyers and Friends”</a>!</strong></h2>[/et_pb_text][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/01/holiday-photo.png\" align=\"center\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h3>Having trouble clicking the link in the picture above? <a href=\"https://thelomad.com/getmad.today/wp-contentv.ringcentral.com/conf/on/109954692\"><strong>CLICK HERE</strong></a> instead.</h3>[/et_pb_text][et_pb_text admin_label=\"Testimonial\" _builder_version=\"4.3.2\" custom_margin=\"15px||15px||true|false\" custom_padding=\"20px|20px|20px|20px|true|true\" border_width_all=\"1px\" border_color_all=\"rgba(0,0,0,0.15)\" global_colors_info=\"{}\"]<h3><span style=\"text-decoration: underline\">Studio Audience Reviews</span>','2022-04-29 18:19:47','2022-04-29 18:19:47'),(354,48173,0,0,1,0,'https://thelomad.com/getmad.today/wp-contentv.ringcentral.com/conf/on/109954692','v.ringcentral.com','CLICK HERE','CLICK HERE instead.','<a href=\"https://thelomad.com/getmad.today/wp-contentv.ringcentral.com/conf/on/109954692\"><strong>CLICK HERE</strong></a> instead.','Check out LOMADtv – click on the picture below to join us live on the 4th Friday of each month at noon for our new series “Lawyers and Friends”![/et_pb_text][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/01/holiday-photo.png\" align=\"center\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]Having trouble clicking the link in the picture above? CLICK HERE instead.[/et_pb_text][et_pb_text admin_label=\"Testimonial\" _builder_version=\"4.3.2\" custom_margin=\"15px||15px||true|false\" custom_padding=\"20px|20px|20px|20px|true|true\" border_width_all=\"1px\" border_color_all=\"rgba(0,0,0,0.15)\" global_colors_info=\"{}\"]Studio Audience Reviews','Check out LOMADtv – click on the picture below to join us live on the 4th Friday of each month at noon for our new series <strong><a href=\"https://thelomad.com/getmad.today/wp-contentv.ringcentral.com/conf/on/109954692\">“Lawyers and Friends”</a>!</strong></h2>[/et_pb_text][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/01/holiday-photo.png\" align=\"center\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h3>Having trouble clicking the link in the picture above? <a href=\"https://thelomad.com/getmad.today/wp-contentv.ringcentral.com/conf/on/109954692\"><strong>CLICK HERE</strong></a> instead.</h3>[/et_pb_text][et_pb_text admin_label=\"Testimonial\" _builder_version=\"4.3.2\" custom_margin=\"15px||15px||true|false\" custom_padding=\"20px|20px|20px|20px|true|true\" border_width_all=\"1px\" border_color_all=\"rgba(0,0,0,0.15)\" global_colors_info=\"{}\"]<h3><span style=\"text-decoration: underline\">Studio Audience Reviews</span>','2022-04-29 18:19:47','2022-04-29 18:19:47'),(355,48173,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:mday@getMAD.today','3602675.findlaw5.flsitebuilder.com','mday@getMAD.today','If there is a specific webinar you want to view in the archives just email mday@getMAD.today for a password.','If there is a specific webinar you want to view in the archives just email <a href=\"mailto:mday@getMAD.today\">mday@getMAD.today</a> for a password.','The Breakfast Club are morning webinars that are held once a month on Friday.The Basic Issues of Compensability series is a lunch time series happening monthly on a Monday.They have different presenters and record the presentations as well and post them to this page for future viewing. If there is a specific webinar you want to view in the archives just email mday@getMAD.today for a password.-Erin GrecoService Improvement Specialist[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" custom_margin=\"48px|||||\" custom_padding=\"7px|||||\" global_colors_info=\"{}\"]Select a video below','The Breakfast Club are morning webinars that are held once a month on Friday.<br />The Basic Issues of Compensability series is a lunch time series happening monthly on a Monday.<br />They have different presenters and record the presentations as well and post them to this page for future viewing. If there is a specific webinar you want to view in the archives just email <a href=\"mailto:mday@getMAD.today\">mday@getMAD.today</a> for a password.<br />-Erin Greco<br />Service Improvement Specialist[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" custom_margin=\"48px|||||\" custom_padding=\"7px|||||\" global_colors_info=\"{}\"]<h3>Select a video below','2022-04-29 18:19:47','2022-04-29 18:19:47'),(356,48173,0,1,0,0,'https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.commailto:mday@getMAD.today','3602675.findlaw5.flsitebuilder.com','mday@getMAD.today','You can request a password for any of the videos listed below by sending an e-mail to Melissa Day at mday@getMAD.today','You can request a password for any of the videos listed below by sending an e-mail to Melissa Day at <a href=\"mailto:mday@getMAD.today\">mday@getMAD.today</a>','The videos do require a password to view, however. You can request a password for any of the videos listed below by sending an e-mail to Melissa Day at mday@getMAD.today[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Videos List\" _builder_version=\"4.3.2\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" hover_enabled=\"0\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" custom_margin=\"21px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]Virtual Lawyers and Friends','the re-run! Click on a link to one of the videos down below to see any video. The videos do require a password to view, however. You can request a password for any of the videos listed below by sending an e-mail to Melissa Day at <a href=\"mailto:mday@getMAD.today\">mday@getMAD.today</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Videos List\" _builder_version=\"4.3.2\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" hover_enabled=\"0\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" custom_margin=\"21px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Virtual Lawyers and Friends','2022-04-29 18:19:47','2022-04-29 18:19:47');
/*!40000 ALTER TABLE `cuB_aioseo_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_aioseo_links_post_relationships`
--

DROP TABLE IF EXISTS `cuB_aioseo_links_post_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_aioseo_links_post_relationships` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL,
  `suggestion_post_id` bigint(20) unsigned NOT NULL,
  `prioritized` tinyint(1) NOT NULL DEFAULT '0',
  `created` datetime NOT NULL,
  `updated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `ndx_aioseo_links_post_relationships_post_id_suggestion_post_id` (`post_id`,`suggestion_post_id`),
  KEY `ndx_aioseo_links_post_relationships_post_id` (`post_id`),
  KEY `ndx_aioseo_links_post_relationships_suggestion_post_id` (`suggestion_post_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_aioseo_links_post_relationships`
--

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

--
-- Table structure for table `cuB_aioseo_links_suggestions`
--

DROP TABLE IF EXISTS `cuB_aioseo_links_suggestions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_aioseo_links_suggestions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL,
  `linked_post_id` bigint(20) unsigned NOT NULL,
  `anchor` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `phrase` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `phrase_html` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `original_phrase_html` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `paragraph` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `paragraph_html` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `dismissed` tinyint(1) NOT NULL DEFAULT '0',
  `created` datetime NOT NULL,
  `updated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `ndx_aioseo_links_suggestions_post_id` (`post_id`),
  KEY `ndx_aioseo_links_suggestions_linked_post_id` (`linked_post_id`),
  KEY `ndx_aioseo_links_suggestions_phrase` (`phrase`(10))
) ENGINE=InnoDB AUTO_INCREMENT=844 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_aioseo_links_suggestions`
--

LOCK TABLES `cuB_aioseo_links_suggestions` WRITE;
/*!40000 ALTER TABLE `cuB_aioseo_links_suggestions` DISABLE KEYS */;
INSERT INTO `cuB_aioseo_links_suggestions` VALUES (1,46091,46350,'work accident to him, but actually denied any accident','We were able to get concessions from her PA that she never disclosed a work accident to him, but actually denied any accident','We were able to get concessions from her PA that she never disclosed a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">work accident to him, but actually denied any accident</a>','We were able to get concessions from her PA that she never disclosed a work accident to him, but actually denied any accident','My first disallowance when I first started Workers\' Compensation for a claimant who requested time off work, was denied, and just so happened to have an accident the day before the time she previously requested off is one of my favorite wins. We were able to get concessions from her PA that she never disclosed a work accident to him, but actually denied any accident. This was my favorite case because it was my first time taking claimant testimony and I got plenty of objections which would make me stumble and more nervous, and I felt humiliated for asking so many questions about the inconsistencies in the record because “asked and answered” was a frequent objection.','We were able to get concessions from her PA that she never disclosed a work accident to him, but actually denied any accident. This was my favorite case because it was my first time taking claimant testimony and I got plenty of objections which would make me stumble and more nervous, and I felt humiliated for asking so many questions about the inconsistencies in the record because “asked and answered” was a frequent objection. However, my intuition was correct and I prevailed on the same inconsistencies claimant’s counsel continued to object to questions regarding.</li>',0,'2022-04-04 07:49:20','2022-04-04 07:49:20'),(2,46541,46383,'amendments to WCL §25-a with respect to its retroactive','I would expect further litigation in connection with the amendments to WCL §25-a with respect to its retroactive application once the amendment becomes effective on January 1, 2014','I would expect further litigation in connection with the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/\">amendments to WCL §25-a with respect to its retroactive</a> application once the amendment becomes effective on January 1, 2014','I would expect further litigation in connection with the amendments to WCL §25-a with respect to its retroactive application once the amendment becomes effective on January 1, 2014','I would expect further litigation in connection with the amendments to WCL §25-a with respect to its retroactive application once the amendment becomes effective on January 1, 2014. Given the language in the statute permitting an application for WCL-25-a relief to be filed for those claims which are ripe for adjudication of the issue prior to the effective date of the amendment, the legislature may have solved the retroactivity problem which was adjudicated in the decision of the Matter of Mills v.','I would expect further litigation in connection with the amendments to WCL §25-a with respect to its retroactive application once the amendment becomes effective on January 1, 2014.',0,'2022-04-04 07:49:23','2022-04-04 07:49:23'),(3,46345,46561,'claimant tried to say that she hadn’t disclosed','The claimant tried to say that she hadn’t disclosed the business because she didn’t think of it as her own business because she had “opened the business for her family” and her brother did the actual cleaning work, but she admitted that the business license was in her name, she had bought tickets to go out of state for training, she had purchased the products and rented storage space to store them, the commercial vehicle was in her name, and she was the only person who could access the business bank accounts','The <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">claimant tried to say that she hadn’t disclosed</a> the business because she didn’t think of it as her own business because she had “opened the business for her family” and her brother did the actual cleaning work, but she admitted that the business license was in her name, she had bought tickets to go out of state for training, she had purchased the products and rented storage space to store them, the commercial vehicle was in her name, and she was the only person who could access the business bank accounts','The claimant tried to say that she hadn’t disclosed the business because she didn’t think of it as her own business because she had “opened the business for her family” and her brother did the actual cleaning work, but she admitted that the business license was in her name, she had bought tickets to go out of state for training, she had purchased the products and rented storage space to store them, the commercial vehicle was in her name, and she was the only person who could access the business bank accounts','We raised fraud.  The claimant tried to say that she hadn’t disclosed the business because she didn’t think of it as her own business because she had “opened the business for her family” and her brother did the actual cleaning work, but she admitted that the business license was in her name, she had bought tickets to go out of state for training, she had purchased the products and rented storage space to store them, the commercial vehicle was in her name, and she was the only person who could access the business bank accounts.  The judge implemented a lifetime ban. ','the claimant posted about her new carpet-cleaning business on Facebook, trying to drum up interest.  We went digging and were able to turn up further posts about a business the claimant started, which led us to a business license in her name.  Our investigators then set up a sting operation and were able to film the claimant engaging in work activities.  We raised fraud.  The claimant tried to say that she hadn’t disclosed the business because she didn’t think of it as her own business because she had “opened the business for her family” and her brother did the actual cleaning work, but she admitted that the business license was in her name, she had bought tickets to go out of state for training, she had purchased the products and rented storage space to store them, the commercial vehicle was in her name, and she was the only person who could access the business bank accounts.',0,'2022-04-04 07:49:28','2022-04-04 07:49:28'),(4,46345,46561,'claimant didn’t disclose','On another case, a claimant didn’t disclose that he was selling guns','On another case, a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">claimant didn’t disclose</a> that he was selling guns','On another case, a claimant didn’t disclose that he was selling guns','I was once involved in a case where we realized the claimant was working as a clown (no, I’m not kidding!) and although she tried to say it was therapeutic, her social media was full of posts advertising her various gigs and discussing her rates.  On another case, a claimant didn’t disclose that he was selling guns.  His social media was clean – but his wife’s Facebook posts were full of videos of the claimant and his family at gun shows, the claimant sitting behind a sales booth and demonstrating various guns for sale, sales advertisements, and directions to call the claimant’s cell phone to arrange appointments. ','one social media account, and most of us have several: Facebook, Instagram, TikTok, Twitter, the list goes on and grows by the day!  I was once involved in a case where we realized the claimant was working as a clown (no, I’m not kidding!) and although she tried to say it was therapeutic, her social media was full of posts advertising her various gigs and discussing her rates.  On another case, a claimant didn’t disclose that he was selling guns.  His social media was clean – but his wife’s Facebook posts were full of videos of the claimant and his family at gun shows, the claimant sitting behind a sales booth and demonstrating various guns',0,'2022-04-04 07:49:28','2022-04-04 07:49:28'),(5,46345,46371,'claimant engaging in work','Our investigators then set up a sting operation and were able to film the claimant engaging in work activities','Our investigators then set up a sting operation and were able to film the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant engaging in work</a> activities','Our investigators then set up a sting operation and were able to film the claimant engaging in work activities','We went digging and were able to turn up further posts about a business the claimant started, which led us to a business license in her name.  Our investigators then set up a sting operation and were able to film the claimant engaging in work activities.  We raised fraud. ','Our investigators then set up a sting operation and were able to film the claimant engaging in work activities.',0,'2022-04-04 07:49:28','2022-04-04 07:49:28'),(6,46331,46371,'claimant in this victory was working','It was undisputed that the claimant in this victory was working without restrictions at the time of her injury','It was undisputed that the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant in this victory was working</a> without restrictions at the time of her injury','It was undisputed that the claimant in this victory was working without restrictions at the time of her injury','It was undisputed that the claimant in this victory was working without restrictions at the time of her injury.  She had to pass a physical demonstrating she was able to perform the job prior to being hired. ','It was undisputed that the claimant in this victory was working without restrictions at the time of her injury.',0,'2022-04-04 08:56:18','2022-04-04 08:56:18'),(7,46331,46371,'claimant eventually went out of work','The claimant eventually went out of work','The <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant eventually went out of work</a>','The claimant eventually went out of work','The claimant eventually went out of work.  After a hard-litigated controversy the claim was established but she was found unattached. ','The claimant eventually went out of work.  After a hard-litigated controversy the claim was established but she was found unattached.  She was required to demonstrate attachment, and in that attempt she produced a resume and gave testimony regarding her prior application for Social Security Disability.  The claimant testified she stopped working after her MVA and did not work again for five years until she started this new job.',0,'2022-04-04 08:56:18','2022-04-04 08:56:18'),(8,46331,46561,'claimant testified','The claimant testified she stopped working after her MVA and did not work again for five years until she started this new job','The <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">claimant testified</a> she stopped working after her MVA and did not work again for five years until she started this new job','The claimant testified she stopped working after her MVA and did not work again for five years until she started this new job','She was required to demonstrate attachment, and in that attempt she produced a resume and gave testimony regarding her prior application for Social Security Disability.  The claimant testified she stopped working after her MVA and did not work again for five years until she started this new job.','The claimant eventually went out of work.  After a hard-litigated controversy the claim was established but she was found unattached.  She was required to demonstrate attachment, and in that attempt she produced a resume and gave testimony regarding her prior application for Social Security Disability.  The claimant testified she stopped working after her MVA and did not work again for five years until she started this new job.',0,'2022-04-04 08:56:18','2022-04-04 08:56:18'),(9,46331,46422,'medical records clearly demonstrated no ongoing history of treatment','The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA','The <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">medical records clearly demonstrated no ongoing history of treatment</a> due to the earlier MVA','The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA','We obtained the medical records.  The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA.  We did not however, leave it at that.','the medical records.  The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA.',0,'2022-04-04 08:56:18','2022-04-04 08:56:18'),(10,46331,46422,'claimant indicated she did not have ongoing treatment','Furthermore, the claimant indicated she did not have ongoing treatment at the time of her Workers’ Compensation injury and was completely healed','Furthermore, the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">claimant indicated she did not have ongoing treatment</a> at the time of her Workers’ Compensation injury and was completely healed','Furthermore, the claimant indicated she did not have ongoing treatment at the time of her Workers’ Compensation injury and was completely healed','He felt that the claimant’s MVA five years before this instant injury was too far removed in time.  Furthermore, the claimant indicated she did not have ongoing treatment at the time of her Workers’ Compensation injury and was completely healed.  He indicated it was not relevant to her current disability.','Furthermore, the claimant indicated she did not have ongoing treatment at the time of her Workers’ Compensation injury and was completely healed.',0,'2022-04-04 08:56:18','2022-04-04 08:56:18'),(11,46331,46502,'medical records clearly demonstrated no ongoing history of treatment','The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA','The <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">medical records clearly demonstrated no ongoing history of treatment</a> due to the earlier MVA','The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA','We obtained the medical records.  The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA.  We did not however, leave it at that.','the medical records.  The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA.',0,'2022-04-04 08:56:18','2022-04-04 08:56:18'),(12,46331,46503,'medical records clearly demonstrated no ongoing history of treatment','The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA','The <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">medical records clearly demonstrated no ongoing history of treatment</a> due to the earlier MVA','The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA','We obtained the medical records.  The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA.  We did not however, leave it at that.','the medical records.  The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA.',0,'2022-04-04 08:56:18','2022-04-04 08:56:18'),(13,46331,46506,'medical records clearly demonstrated no ongoing history of treatment','The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA','The <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">medical records clearly demonstrated no ongoing history of treatment</a> due to the earlier MVA','The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA','We obtained the medical records.  The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA.  We did not however, leave it at that.','the medical records.  The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA.',0,'2022-04-04 08:56:18','2022-04-04 08:56:18'),(14,46331,46543,'medical records clearly demonstrated no ongoing history of treatment','The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA','The <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\">medical records clearly demonstrated no ongoing history of treatment</a> due to the earlier MVA','The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA','We obtained the medical records.  The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA.  We did not however, leave it at that.','the medical records.  The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA.',0,'2022-04-04 08:56:18','2022-04-04 08:56:18'),(15,46331,46541,'obtained the claimant’s insurance','We also obtained the claimant’s insurance claim history','We also <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\">obtained the claimant’s insurance</a> claim history','We also obtained the claimant’s insurance claim history','We also obtained the claimant’s insurance claim history.  From that we were able to determine that the claimant had over a dozen lawsuits due to injuries in the past few years. ','We also obtained the claimant’s insurance claim history.',0,'2022-04-04 08:56:18','2022-04-04 08:56:18'),(16,46331,46549,'disabled in a compensation sense based on the totality','We used all of her prior attachment testimony against her to demonstrate that she was disabled in a compensation sense based on the totality of the evidence','We used all of her prior attachment testimony against her to demonstrate that she was <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">disabled in a compensation sense based on the totality</a> of the evidence','We used all of her prior attachment testimony against her to demonstrate that she was disabled in a compensation sense based on the totality of the evidence','We argued that the standard was whether the claimant was disabled in a compensation sense.  We used all of her prior attachment testimony against her to demonstrate that she was disabled in a compensation sense based on the totality of the evidence.  The WCLJ found that 50% of the claim was unrelated.','we argued that the standard was not whether the claimant’s condition was active and symptomatic.  All evidence indicated it was not.  We argued that the standard was whether the claimant was disabled in a compensation sense.  We used all of her prior attachment testimony against her to demonstrate that she was disabled in a compensation sense based on the totality of the evidence.',0,'2022-04-04 08:56:18','2022-04-04 08:56:18'),(17,46331,46549,'claimant was disabled','We argued that the standard was whether the claimant was disabled in a compensation sense','We argued that the standard was whether the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">claimant was disabled</a> in a compensation sense','We argued that the standard was whether the claimant was disabled in a compensation sense','All evidence indicated it was not.  We argued that the standard was whether the claimant was disabled in a compensation sense.  We used all of her prior attachment testimony against her to demonstrate that she was disabled in a compensation sense based on the totality of the evidence. ','we argued that the standard was not whether the claimant’s condition was active and symptomatic.  All evidence indicated it was not.  We argued that the standard was whether the claimant was disabled in a compensation sense.  We used all of her prior attachment testimony against her to demonstrate that she was disabled in a compensation sense',0,'2022-04-04 08:56:18','2022-04-04 08:56:18'),(18,46331,46553,'disabled in a compensation sense based on the totality','We used all of her prior attachment testimony against her to demonstrate that she was disabled in a compensation sense based on the totality of the evidence','We used all of her prior attachment testimony against her to demonstrate that she was <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">disabled in a compensation sense based on the totality</a> of the evidence','We used all of her prior attachment testimony against her to demonstrate that she was disabled in a compensation sense based on the totality of the evidence','We argued that the standard was whether the claimant was disabled in a compensation sense.  We used all of her prior attachment testimony against her to demonstrate that she was disabled in a compensation sense based on the totality of the evidence.  The WCLJ found that 50% of the claim was unrelated.','we argued that the standard was not whether the claimant’s condition was active and symptomatic.  All evidence indicated it was not.  We argued that the standard was whether the claimant was disabled in a compensation sense.  We used all of her prior attachment testimony against her to demonstrate that she was disabled in a compensation sense based on the totality of the evidence.',0,'2022-04-04 08:56:18','2022-04-04 08:56:18'),(19,46331,46553,'claimant was disabled','We argued that the standard was whether the claimant was disabled in a compensation sense','We argued that the standard was whether the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">claimant was disabled</a> in a compensation sense','We argued that the standard was whether the claimant was disabled in a compensation sense','All evidence indicated it was not.  We argued that the standard was whether the claimant was disabled in a compensation sense.  We used all of her prior attachment testimony against her to demonstrate that she was disabled in a compensation sense based on the totality of the evidence. ','we argued that the standard was not whether the claimant’s condition was active and symptomatic.  All evidence indicated it was not.  We argued that the standard was whether the claimant was disabled in a compensation sense.  We used all of her prior attachment testimony against her to demonstrate that she was disabled in a compensation sense',0,'2022-04-04 08:56:18','2022-04-04 08:56:18'),(20,46436,46502,'opioid therapy is functional restoration – not merely pain','The goal of opioid therapy is functional restoration – not merely pain elimination','The goal of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">opioid therapy is functional restoration – not merely pain</a> elimination','The goal of opioid therapy is functional restoration – not merely pain elimination','The Board also held that the Guideline’s standards of care require a multi-disciplinary approach to pain management that is function-oriented and goal-specific.  The goal of opioid therapy is functional restoration – not merely pain elimination.  The Board discussed that the NAP Guidelines provide that weaning from opioids can be done at a decrease of 10% per week without significant health risks to the claimant. ','The Board specifically indicated there was not enough evidence to demonstrate that Dr. Salcedo was transitioning this claimant’s care into the standards set forth within the NAP Guidelines.  The Board also held that the Guideline’s standards of care require a multi-disciplinary approach to pain management that is function-oriented and goal-specific.  The goal of opioid therapy is functional restoration – not merely pain elimination.',0,'2022-04-04 08:56:22','2022-04-04 08:56:22'),(21,46436,46502,'chronic opioid use and pain','Salcedo’s testimony was taken, and he indicated that the claimant had chronic opioid use and pain tolerance, along with dependency','Salcedo’s testimony was taken, and he indicated that the claimant had <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">chronic opioid use and pain</a> tolerance, along with dependency','Salcedo’s testimony was taken, and he indicated that the claimant had chronic opioid use and pain tolerance, along with dependency','Dr. Salcedo’s testimony was taken, and he indicated that the claimant had chronic opioid use and pain tolerance, along with dependency.  The doctor indicated he was in the process of weaning, but then described a generic plan to reduce the claimant’s intake.','Salcedo’s testimony was taken, and he indicated that the claimant had chronic opioid use and pain tolerance, along with dependency.',0,'2022-04-04 08:56:22','2022-04-04 08:56:22'),(22,46436,46502,'treatment facilities for addiction management','When rendering a final conclusion in this claim, they noted that the Office of Alcoholism and Substance Abuse Services in the State of New York provides a list of certified inpatient and outpatient treatment facilities for addiction management','When rendering a final conclusion in this claim, they noted that the Office of Alcoholism and Substance Abuse Services in the State of New York provides a list of certified inpatient and outpatient <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">treatment facilities for addiction management</a>','When rendering a final conclusion in this claim, they noted that the Office of Alcoholism and Substance Abuse Services in the State of New York provides a list of certified inpatient and outpatient treatment facilities for addiction management','When rendering a final conclusion in this claim, they noted that the Office of Alcoholism and Substance Abuse Services in the State of New York provides a list of certified inpatient and outpatient treatment facilities for addiction management.  They directed the carrier to cover the costs of the claimant addiction treatment program, 30 days’ worth of medication fill following the Decision, and payment for any narcotic prescription thereafter, only if written by an addiction treatment program provider.','When rendering a final conclusion in this claim, they noted that the Office of Alcoholism and Substance Abuse Services in the State of New York provides a list of certified inpatient and outpatient treatment facilities for addiction management.  They directed the carrier to cover the costs of the claimant addiction treatment program, 30 days’ worth of medication fill following the Decision, and payment for any narcotic prescription thereafter, only if written by an addiction treatment program provider.',0,'2022-04-04 08:56:22','2022-04-04 08:56:22'),(23,46436,46502,'cost of the addiction treatment','The Decision also indicates that once non-compliance with the NAP Guidelines has been found that Carriers are liable for the payment of one last time-specific fill, and only for scripts filled by an authorized addiction specialist thereafter, along with the cost of the addiction treatment program','The Decision also indicates that once non-compliance with the NAP Guidelines has been found that Carriers are liable for the payment of one last time-specific fill, and only for scripts filled by an authorized addiction specialist thereafter, along with the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">cost of the addiction treatment</a> program','The Decision also indicates that once non-compliance with the NAP Guidelines has been found that Carriers are liable for the payment of one last time-specific fill, and only for scripts filled by an authorized addiction specialist thereafter, along with the cost of the addiction treatment program','The Board is directing claimants to take action on behalf of themselves for their own care. The Decision also indicates that once non-compliance with the NAP Guidelines has been found that Carriers are liable for the payment of one last time-specific fill, and only for scripts filled by an authorized addiction specialist thereafter, along with the cost of the addiction treatment program.  Based on the language of this Decision, payment of the program and the scripts through the program, even if it is not a WC authorized provider, is required.','<li>The Board is directing claimants to take action on behalf of themselves for their own care. The Decision also indicates that once non-compliance with the NAP Guidelines has been found that Carriers are liable for the payment of one last time-specific fill, and only for scripts filled by an authorized addiction specialist thereafter, along with the cost of the addiction treatment program.  Based on the language of this Decision, payment of the program and the scripts through the program',0,'2022-04-04 08:56:22','2022-04-04 08:56:22'),(24,46436,46502,'pain management treatment','He had rotated through a number of pain management treatment providers with the most recent provider, Dr','He had rotated through a number of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">pain management treatment</a> providers with the most recent provider, Dr','He had rotated through a number of pain management treatment providers with the most recent provider, Dr','He was also on opioid medications since the inception of the claim in 2002.  He had rotated through a number of pain management treatment providers with the most recent provider, Dr. Salcedo, starting treatment in 2011.','he claimant was classified with a permanent total disability. He was also on opioid medications since the inception of the claim in 2002.  He had rotated through a number of pain management treatment providers with the most recent provider, Dr.',0,'2022-04-04 08:56:22','2022-04-04 08:56:22'),(25,46436,46502,'opioid medications','He was also on opioid medications since the inception of the claim in 2002','He was also on <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">opioid medications</a> since the inception of the claim in 2002','He was also on opioid medications since the inception of the claim in 2002','Significantly, in this case the claimant was classified with a permanent total disability. He was also on opioid medications since the inception of the claim in 2002.  He had rotated through a number of pain management treatment providers with the most recent provider, Dr.','he claimant was classified with a permanent total disability. He was also on opioid medications since the inception of the claim in 2002.',0,'2022-04-04 08:56:22','2022-04-04 08:56:22'),(26,46436,46502,'opioid medications','While with this practice group, the claimant was rotated through numerous opioid medications with none providing any objective functional improvement in his condition','While with this practice group, the claimant was rotated through numerous <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">opioid medications</a> with none providing any objective functional improvement in his condition','While with this practice group, the claimant was rotated through numerous opioid medications with none providing any objective functional improvement in his condition','Salcedo, starting treatment in 2011. While with this practice group, the claimant was rotated through numerous opioid medications with none providing any objective functional improvement in his condition.  The claimant’s current medications were: Soma 250mg, Lunesta 3mg, Exalgo 16mg, Fentora 800mg, and Klonopin.','While with this practice group, the claimant was rotated through numerous opioid medications with none providing any objective functional improvement in his condition.',0,'2022-04-04 08:56:22','2022-04-04 08:56:22'),(27,46436,46502,'opioid medications','Salcedo sought authorization for Evzio, which temporarily reverses the side effects of opioid medications in situations of overdose','Salcedo sought authorization for Evzio, which temporarily reverses the side effects of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">opioid medications</a> in situations of overdose','Salcedo sought authorization for Evzio, which temporarily reverses the side effects of opioid medications in situations of overdose','Interestingly, Dr. Salcedo sought authorization for Evzio, which temporarily reverses the side effects of opioid medications in situations of overdose.','Salcedo sought authorization for Evzio, which temporarily reverses the side effects of opioid medications in situations of overdose.',0,'2022-04-04 08:56:22','2022-04-04 08:56:22'),(28,46436,46502,'opioid medications','Salcedo recommended rotating the claimant’s opioid medications by shifting the claimant from Exalgo to Belbuca and then weaning the claimant off of Fentora','Salcedo recommended rotating the claimant’s <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">opioid medications</a> by shifting the claimant from Exalgo to Belbuca and then weaning the claimant off of Fentora','Salcedo recommended rotating the claimant’s opioid medications by shifting the claimant from Exalgo to Belbuca and then weaning the claimant off of Fentora','Thereafter, Dr. Salcedo recommended rotating the claimant’s opioid medications by shifting the claimant from Exalgo to Belbuca and then weaning the claimant off of Fentora.  The provider’s reasoning for the transition of medications was that the current regimen does not provide any functional gains.','Salcedo, starting treatment in 2011. While with this practice group, the claimant was rotated through numerous opioid medications with none providing any objective functional improvement in his condition.  The claimant’s current medications were: Soma 250mg, Lunesta 3mg, Exalgo 16mg, Fentora',0,'2022-04-04 08:56:22','2022-04-04 08:56:22'),(29,46436,46502,'pain management','The Board also held that the Guideline’s standards of care require a multi-disciplinary approach to pain management that is function-oriented and goal-specific','The Board also held that the Guideline’s standards of care require a multi-disciplinary approach to <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">pain management</a> that is function-oriented and goal-specific','The Board also held that the Guideline’s standards of care require a multi-disciplinary approach to pain management that is function-oriented and goal-specific','Salcedo was transitioning this claimant’s care into the standards set forth within the NAP Guidelines.  The Board also held that the Guideline’s standards of care require a multi-disciplinary approach to pain management that is function-oriented and goal-specific.  The goal of opioid therapy is functional restoration – not merely pain elimination. ','The Board specifically indicated there was not enough evidence to demonstrate that Dr. Salcedo was transitioning this claimant’s care into the standards set forth within the NAP Guidelines.  The Board also held that the Guideline’s standards of care require a multi-disciplinary approach to pain management that is function-oriented and goal-specific.',0,'2022-04-04 08:56:22','2022-04-04 08:56:22'),(30,46436,46342,'medications since the inception of the claim','He was also on opioid medications since the inception of the claim in 2002','He was also on opioid <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">medications since the inception of the claim</a> in 2002','He was also on opioid medications since the inception of the claim in 2002','Significantly, in this case the claimant was classified with a permanent total disability. He was also on opioid medications since the inception of the claim in 2002.  He had rotated through a number of pain management treatment providers with the most recent provider, Dr.','he claimant was classified with a permanent total disability. He was also on opioid medications since the inception of the claim in 2002.',0,'2022-04-04 08:56:22','2022-04-04 08:56:22'),(31,46436,46342,'opinion that the medications','Grammar, who reiterated his opinion that the medications deviated from the NAP Guidelines, and that weaning could take six to eight weeks, with prolonged weaning taking a period of six to eight months','Grammar, who reiterated his <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">opinion that the medications</a> deviated from the NAP Guidelines, and that weaning could take six to eight weeks, with prolonged weaning taking a period of six to eight months','Grammar, who reiterated his opinion that the medications deviated from the NAP Guidelines, and that weaning could take six to eight weeks, with prolonged weaning taking a period of six to eight months','An addendum was sought from Dr. Grammar, who reiterated his opinion that the medications deviated from the NAP Guidelines, and that weaning could take six to eight weeks, with prolonged weaning taking a period of six to eight months.','Grammar, who reiterated his opinion that the medications deviated from the NAP Guidelines, and that weaning could take six to eight weeks, with prolonged weaning taking a period of six to eight months.',0,'2022-04-04 08:56:22','2022-04-04 08:56:22'),(32,46436,46482,'pain management treatment','He had rotated through a number of pain management treatment providers with the most recent provider, Dr','He had rotated through a number of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/non-acute-pain-treatment-guidelines/\">pain management treatment</a> providers with the most recent provider, Dr','He had rotated through a number of pain management treatment providers with the most recent provider, Dr','He was also on opioid medications since the inception of the claim in 2002.  He had rotated through a number of pain management treatment providers with the most recent provider, Dr. Salcedo, starting treatment in 2011.','he claimant was classified with a permanent total disability. He was also on opioid medications since the inception of the claim in 2002.  He had rotated through a number of pain management treatment providers with the most recent provider, Dr.',0,'2022-04-04 08:56:22','2022-04-04 08:56:22'),(33,46436,46422,'claimant was rotated through numerous opioid medications','While with this practice group, the claimant was rotated through numerous opioid medications with none providing any objective functional improvement in his condition','While with this practice group, the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">claimant was rotated through numerous opioid medications</a> with none providing any objective functional improvement in his condition','While with this practice group, the claimant was rotated through numerous opioid medications with none providing any objective functional improvement in his condition','Salcedo, starting treatment in 2011. While with this practice group, the claimant was rotated through numerous opioid medications with none providing any objective functional improvement in his condition.  The claimant’s current medications were: Soma 250mg, Lunesta 3mg, Exalgo 16mg, Fentora 800mg, and Klonopin.','While with this practice group, the claimant was rotated through numerous opioid medications with none providing any objective functional improvement in his condition.',0,'2022-04-04 08:56:22','2022-04-04 08:56:22'),(34,46436,46561,'testified that the claimant','He also testified that the claimant failed to demonstrate any functional gains','He also <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">testified that the claimant</a> failed to demonstrate any functional gains','He also testified that the claimant failed to demonstrate any functional gains','The doctor indicated he was in the process of weaning, but then described a generic plan to reduce the claimant’s intake. He also testified that the claimant failed to demonstrate any functional gains. The described plan was to circulate and rotate new opioids to determine claimant’s best functionality.','he indicated that the claimant had chronic opioid use and pain tolerance, along with dependency.  The doctor indicated he was in the process of weaning, but then described a generic plan to reduce the claimant’s intake. He also testified that the claimant failed to demonstrate any functional gains.',0,'2022-04-04 08:56:22','2022-04-04 08:56:22'),(35,46436,46553,'claimant failed to demonstrate any functional','He also testified that the claimant failed to demonstrate any functional gains','He also testified that the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">claimant failed to demonstrate any functional</a> gains','He also testified that the claimant failed to demonstrate any functional gains','The doctor indicated he was in the process of weaning, but then described a generic plan to reduce the claimant’s intake. He also testified that the claimant failed to demonstrate any functional gains. The described plan was to circulate and rotate new opioids to determine claimant’s best functionality.','he indicated that the claimant had chronic opioid use and pain tolerance, along with dependency.  The doctor indicated he was in the process of weaning, but then described a generic plan to reduce the claimant’s intake. He also testified that the claimant failed to demonstrate any functional gains.',0,'2022-04-04 08:56:22','2022-04-04 08:56:22'),(36,46436,46553,'functional improvement','The basis for this appeal was that opioid rotation was inappropriate in the absence of objective functional improvement from the use of opioid medications','The basis for this appeal was that opioid rotation was inappropriate in the absence of objective <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">functional improvement</a> from the use of opioid medications','The basis for this appeal was that opioid rotation was inappropriate in the absence of objective functional improvement from the use of opioid medications','Again, an appeal of this decision was filed. The basis for this appeal was that opioid rotation was inappropriate in the absence of objective functional improvement from the use of opioid medications.','the claimant was classified with a permanent total disability. He was also on opioid medications since the inception of the claim in 2002.  He had rotated through a number of pain management treatment providers with the most recent provider, Dr. Salcedo, starting treatment in 2011. While with this practice group, the claimant was rotated through numerous opioid medications with none providing any objective functional improvement in his condition.  The claimant’s current medications',0,'2022-04-04 08:56:22','2022-04-04 08:56:22'),(37,46436,46369,'review of the facts','After a thorough review of the facts of both appeals, the Board noted, importantly, that long term opioid users, although given the protection of Subject Number 046 – 457, were still required to come into compliance with the NAP Guidelines','After a thorough <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/02/no-error-of-law-or-fact-in-an-application-for-full-board-review/\">review of the facts</a> of both appeals, the Board noted, importantly, that long term opioid users, although given the protection of Subject Number 046 – 457, were still required to come into compliance with the NAP Guidelines','After a thorough review of the facts of both appeals, the Board noted, importantly, that long term opioid users, although given the protection of Subject Number 046 – 457, were still required to come into compliance with the NAP Guidelines','After a thorough review of the facts of both appeals, the Board noted, importantly, that long term opioid users, although given the protection of Subject Number 046 – 457, were still required to come into compliance with the NAP Guidelines.  The Board specifically held that the Subject Number and the Guidelines are not in conflict with each other, but rather the Guidelines make clear that the goal for long-term opioid users is to be transitioned into the standards of care set forth within the NAP Guidelines.','After a thorough review of the facts of both appeals, the Board noted, importantly, that long term opioid users, although given the protection of Subject Number 046 – 457, were still required to come into compliance with the NAP Guidelines.  The Board specifically held that the Subject Number and the Guidelines are not in conflict with each other, but rather the Guidelines make clear that the goal for long-term opioid users is to be transitioned into the standards of care set forth within the NAP Guidelines.',0,'2022-04-04 08:56:22','2022-04-04 08:56:22'),(38,46436,46543,'specifically found the claimant’s current medications','The Board specifically found the claimant’s current medications were not in compliance with NAP Guidelines, that any further opioid use must be consistent with the NAP Guidelines, and that compliance must be insured through urine screening','The Board <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\">specifically found the claimant’s current medications</a> were not in compliance with NAP Guidelines, that any further opioid use must be consistent with the NAP Guidelines, and that compliance must be insured through urine screening','The Board specifically found the claimant’s current medications were not in compliance with NAP Guidelines, that any further opioid use must be consistent with the NAP Guidelines, and that compliance must be insured through urine screening','The Board specifically found the claimant’s current medications were not in compliance with NAP Guidelines, that any further opioid use must be consistent with the NAP Guidelines, and that compliance must be insured through urine screening.','The Board specifically found the claimant’s current medications were not in compliance with NAP Guidelines, that any further opioid use must be consistent with the NAP Guidelines, and that compliance must be insured through urine screening.',0,'2022-04-04 08:56:22','2022-04-04 08:56:22'),(39,46423,46236,'case law','existing case law on TID, nor a claimant’s right to obtain such a status','existing <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/client-resources/case-law-updates-lomad-case-law-updates/\">case law</a> on TID, nor a claimant’s right to obtain such a status','existing case law on TID, nor a claimant’s right to obtain such a status','Notably too, §35(2) states specifically that no provision of the section shall be read to “derogate or impair”  existing case law on TID, nor a claimant’s right to obtain such a status.','existing case law on TID, nor a claimant’s right to obtain such a status.',0,'2022-04-04 08:56:23','2022-04-04 08:56:23'),(40,46423,46236,'case law','In addition, this section incorporates existing case law on total industrial disability','In addition, this section incorporates existing <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/client-resources/case-law-updates-lomad-case-law-updates/\">case law</a> on total industrial disability','In addition, this section incorporates existing case law on total industrial disability','Section 35 requires the Commissioner of Labor to survey and recommend best practices for return-to-work programs. In addition, this section incorporates existing case law on total industrial disability. For those with loss of wage earning capacity of 80 percent or greater, the bill additionally allows claimants to seek an exemption on extreme hardship grounds.','In addition, this section incorporates existing case law on total industrial disability.',0,'2022-04-04 08:56:23','2022-04-04 08:56:23'),(41,46423,46374,'claims after 2007 –','The effect of this amendment is unknown because the panel has reported no cases discussing such a redetermination, and it is fair to assume, based on the age of the amendment, that cases are not yet, or only just now, becoming ripe on this issue (the cap is 8.65 years, and LWEC, and §35, apply for all claims after 2007 – so allowing for time for treatment, surgery, etc, plus the litigation time for classification, in theory, 81% claimants may just now be approaching the end of their caps.)','The effect of this amendment is unknown because the panel has reported no cases discussing such a redetermination, and it is fair to assume, based on the age of the amendment, that cases are not yet, or only just now, becoming ripe on this issue (the cap is 8.65 years, and LWEC, and §35, apply for all <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claims after 2007 –</a> so allowing for time for treatment, surgery, etc, plus the litigation time for classification, in theory, 81% claimants may just now be approaching the end of their caps.)','The effect of this amendment is unknown because the panel has reported no cases discussing such a redetermination, and it is fair to assume, based on the age of the amendment, that cases are not yet, or only just now, becoming ripe on this issue (the cap is 8.65 years, and LWEC, and §35, apply for all claims after 2007 – so allowing for time for treatment, surgery, etc, plus the litigation time for classification, in theory, 81% claimants may just now be approaching the end of their caps.)','The effect of this amendment is unknown because the panel has reported no cases discussing such a redetermination, and it is fair to assume, based on the age of the amendment, that cases are not yet, or only just now, becoming ripe on this issue (the cap is 8.65 years, and LWEC, and §35, apply for all claims after 2007 – so allowing for time for treatment, surgery, etc, plus the litigation time for classification, in theory, 81% claimants may just now be approaching the end of their caps.)','The effect of this amendment is unknown because the panel has reported no cases discussing such a redetermination, and it is fair to assume, based on the age of the amendment, that cases are not yet, or only just now, becoming ripe on this issue (the cap is 8.65 years, and LWEC, and §35, apply for all claims after 2007 – so allowing for time for treatment, surgery, etc, plus the litigation time for classification, in theory, 81% claimants may just now be approaching the end of their caps.',0,'2022-04-04 08:56:23','2022-04-04 08:56:23'),(42,46423,46421,'claims after 2007 –','The effect of this amendment is unknown because the panel has reported no cases discussing such a redetermination, and it is fair to assume, based on the age of the amendment, that cases are not yet, or only just now, becoming ripe on this issue (the cap is 8.65 years, and LWEC, and §35, apply for all claims after 2007 – so allowing for time for treatment, surgery, etc, plus the litigation time for classification, in theory, 81% claimants may just now be approaching the end of their caps.)','The effect of this amendment is unknown because the panel has reported no cases discussing such a redetermination, and it is fair to assume, based on the age of the amendment, that cases are not yet, or only just now, becoming ripe on this issue (the cap is 8.65 years, and LWEC, and §35, apply for all <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">claims after 2007 –</a> so allowing for time for treatment, surgery, etc, plus the litigation time for classification, in theory, 81% claimants may just now be approaching the end of their caps.)','The effect of this amendment is unknown because the panel has reported no cases discussing such a redetermination, and it is fair to assume, based on the age of the amendment, that cases are not yet, or only just now, becoming ripe on this issue (the cap is 8.65 years, and LWEC, and §35, apply for all claims after 2007 – so allowing for time for treatment, surgery, etc, plus the litigation time for classification, in theory, 81% claimants may just now be approaching the end of their caps.)','The effect of this amendment is unknown because the panel has reported no cases discussing such a redetermination, and it is fair to assume, based on the age of the amendment, that cases are not yet, or only just now, becoming ripe on this issue (the cap is 8.65 years, and LWEC, and §35, apply for all claims after 2007 – so allowing for time for treatment, surgery, etc, plus the litigation time for classification, in theory, 81% claimants may just now be approaching the end of their caps.)','The effect of this amendment is unknown because the panel has reported no cases discussing such a redetermination, and it is fair to assume, based on the age of the amendment, that cases are not yet, or only just now, becoming ripe on this issue (the cap is 8.65 years, and LWEC, and §35, apply for all claims after 2007 – so allowing for time for treatment, surgery, etc, plus the litigation time for classification, in theory, 81% claimants may just now be approaching the end of their caps.',0,'2022-04-04 08:56:23','2022-04-04 08:56:23'),(43,46423,46503,'proof including the possibility of medical','Considering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the claimant’s burden should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating proof including the possibility of medical evidence reflecting a deterioration, to establish entitlement','Considering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the claimant’s burden should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">proof including the possibility of medical</a> evidence reflecting a deterioration, to establish entitlement','Considering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the claimant’s burden should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating proof including the possibility of medical evidence reflecting a deterioration, to establish entitlement','Considering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the claimant’s burden should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating proof including the possibility of medical evidence reflecting a deterioration, to establish entitlement.  Our analysis reflects that financial hardship will be a threshold test.','Considering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the claimant’s burden should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating proof including the possibility of medical evidence reflecting a deterioration, to establish entitlement.',0,'2022-04-04 08:56:23','2022-04-04 08:56:23'),(44,46423,46503,'burden of proof','From our view, we think the two clearest factors of relevance are the (1) timing of the application and (2) burden of proof resting on the claimant','From our view, we think the two clearest factors of relevance are the (1) timing of the application and (2) <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">burden of proof</a> resting on the claimant','From our view, we think the two clearest factors of relevance are the (1) timing of the application and (2) burden of proof resting on the claimant','In our opinion, §35(3) is going to have many of the same growing pains that the rest of the reforms have had.  From our view, we think the two clearest factors of relevance are the (1) timing of the application and (2) burden of proof resting on the claimant.  Reading the statute, we think any application made after the caps expire is late and thus not actionable. ','From our view, we think the two clearest factors of relevance are the (1) timing of the application and (2) burden of proof resting on the claimant.  Reading the statute, we think any application made after the caps expire is late and thus not actionable.  Further, we think it will be up to the claimant',0,'2022-04-04 08:56:23','2022-04-04 08:56:23'),(45,46423,46420,'section incorporates existing case','In addition, this section incorporates existing case law on total industrial disability','In addition, this <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/court-of-appeals-upholds-2013-amendment-to-section-25-a-marking-the-end-for-the-fund-for-reopened-cases/\">section incorporates existing case</a> law on total industrial disability','In addition, this section incorporates existing case law on total industrial disability','Section 35 requires the Commissioner of Labor to survey and recommend best practices for return-to-work programs. In addition, this section incorporates existing case law on total industrial disability. For those with loss of wage earning capacity of 80 percent or greater, the bill additionally allows claimants to seek an exemption on extreme hardship grounds.','In addition, this section incorporates existing case law on total industrial disability.',0,'2022-04-04 08:56:23','2022-04-04 08:56:23'),(46,46423,46504,'loss of wage earning capacity','For those with loss of wage earning capacity of 80 percent or greater, the bill additionally allows claimants to seek an exemption on extreme hardship grounds','For those with <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">loss of wage earning capacity</a> of 80 percent or greater, <strong>the bill additionally allows claimants to seek an exemption on extreme hardship grounds','For those with loss of wage earning capacity of 80 percent or greater, <strong>the bill additionally allows claimants to seek an exemption on extreme hardship grounds','In addition, this section incorporates existing case law on total industrial disability. For those with loss of wage earning capacity of 80 percent or greater, the bill additionally allows claimants to seek an exemption on extreme hardship grounds. This provision provides an exemption for extreme financial hardship, while allowing judges to take into account factors in addition to claimants’ income and other available resources.','for permanent partial disability claimants who surpass their number of maximum benefit weeks. Section 35 requires the Commissioner of Labor to survey and recommend best practices for return-to-work programs. In addition, this section incorporates existing case law on total industrial disability. For those with loss of wage earning capacity of 80 percent or greater, <strong>the bill additionally allows claimants to seek an exemption on extreme hardship grounds.',0,'2022-04-04 08:56:23','2022-04-04 08:56:23'),(47,46423,46509,'loss of wage earning capacity','For those with loss of wage earning capacity of 80 percent or greater, the bill additionally allows claimants to seek an exemption on extreme hardship grounds','For those with <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">loss of wage earning capacity</a> of 80 percent or greater, <strong>the bill additionally allows claimants to seek an exemption on extreme hardship grounds','For those with loss of wage earning capacity of 80 percent or greater, <strong>the bill additionally allows claimants to seek an exemption on extreme hardship grounds','In addition, this section incorporates existing case law on total industrial disability. For those with loss of wage earning capacity of 80 percent or greater, the bill additionally allows claimants to seek an exemption on extreme hardship grounds. This provision provides an exemption for extreme financial hardship, while allowing judges to take into account factors in addition to claimants’ income and other available resources.','for permanent partial disability claimants who surpass their number of maximum benefit weeks. Section 35 requires the Commissioner of Labor to survey and recommend best practices for return-to-work programs. In addition, this section incorporates existing case law on total industrial disability. For those with loss of wage earning capacity of 80 percent or greater, <strong>the bill additionally allows claimants to seek an exemption on extreme hardship grounds.',0,'2022-04-04 08:56:23','2022-04-04 08:56:23'),(48,46423,46549,'bill additionally allows claimants','For those with loss of wage earning capacity of 80 percent or greater, the bill additionally allows claimants to seek an exemption on extreme hardship grounds','For those with loss of wage earning capacity of 80 percent or greater, <strong>the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">bill additionally allows claimants</a> to seek an exemption on extreme hardship grounds','For those with loss of wage earning capacity of 80 percent or greater, <strong>the bill additionally allows claimants to seek an exemption on extreme hardship grounds','In addition, this section incorporates existing case law on total industrial disability. For those with loss of wage earning capacity of 80 percent or greater, the bill additionally allows claimants to seek an exemption on extreme hardship grounds. This provision provides an exemption for extreme financial hardship, while allowing judges to take into account factors in addition to claimants’ income and other available resources.','for permanent partial disability claimants who surpass their number of maximum benefit weeks. Section 35 requires the Commissioner of Labor to survey and recommend best practices for return-to-work programs. In addition, this section incorporates existing case law on total industrial disability. For those with loss of wage earning capacity of 80 percent or greater, <strong>the bill additionally allows claimants to seek an exemption on extreme hardship grounds.',0,'2022-04-04 08:56:23','2022-04-04 08:56:23'),(49,46423,46549,'permanently partially disabled','This provision provides an exemption for extreme financial hardship, while allowing judges to take into account factors in addition to claimants’ income and other available resources. Finally, the Commissioner of Labor is directed to track those who are classified as permanently partially disabled over time','This provision provides an exemption for extreme financial hardship, while allowing judges to take into account factors in addition to claimants’ income and other available resources.</strong> Finally, the Commissioner of Labor is directed to track those who are classified as <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">permanently partially disabled</a> over time','This provision provides an exemption for extreme financial hardship, while allowing judges to take into account factors in addition to claimants’ income and other available resources.</strong> Finally, the Commissioner of Labor is directed to track those who are classified as permanently partially disabled over time','This provision provides an exemption for extreme financial hardship, while allowing judges to take into account factors in addition to claimants’ income and other available resources. Finally, the Commissioner of Labor is directed to track those who are classified as permanently partially disabled over time','this section incorporates existing case law on total industrial disability. For those with loss of wage earning capacity of 80 percent or greater, <strong>the bill additionally allows claimants to seek an exemption on extreme hardship grounds. This provision provides an exemption for extreme financial hardship, while allowing judges to take into account factors in addition to claimants’ income and other available resources.</strong> Finally, the Commissioner of Labor is directed to track those who are classified as permanently partially disabled over time.',0,'2022-04-04 08:56:23','2022-04-04 08:56:23'),(50,46423,46372,'change in medical condition, non-occupational medical conditions,','This makes us believe the inquiry will look at the claimant’s financial status which seems to be a necessary component of proving an entitlement to the safety net but that “factors in addition to claimants’ income and other available resources”, such as change in medical condition, non-occupational medical conditions, aging and other factors can also be considered in proving “extreme hardship.”','This makes us believe the inquiry will look at the claimant’s financial status which seems to be a necessary component of proving an entitlement to the safety net but that “factors in addition to claimants’ income and other available resources”, such as <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/how-change-in-conditions-for-classified-claimants-changed-drastically/\">change in medical condition, non-occupational medical conditions,</a> aging and other factors can also be considered in proving “extreme hardship.”','This makes us believe the inquiry will look at the claimant’s financial status which seems to be a necessary component of proving an entitlement to the safety net but that “factors in addition to claimants’ income and other available resources”, such as change in medical condition, non-occupational medical conditions, aging and other factors can also be considered in proving “extreme hardship.”','This makes us believe the inquiry will look at the claimant’s financial status which seems to be a necessary component of proving an entitlement to the safety net but that “factors in addition to claimants’ income and other available resources”, such as change in medical condition, non-occupational medical conditions, aging and other factors can also be considered in proving “extreme hardship.”','This makes us believe the inquiry will look at the claimant’s financial status which seems to be a necessary component of proving an entitlement to the safety net but that “factors in addition to claimants’ income and other available resources”, such as change in medical condition, non-occupational medical conditions, aging and other factors can also be considered in proving “extreme hardship.”',0,'2022-04-04 08:56:23','2022-04-04 08:56:23'),(51,46423,46511,'defense and shaping the application','Looking to way other laws have used that term may be useful in preparing a defense and shaping the application of the law in terms of developing favorable case law driven factors','Looking to way other laws have used that term may be useful in preparing a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">defense and shaping the application</a> of the law in terms of developing favorable case law driven factors','Looking to way other laws have used that term may be useful in preparing a defense and shaping the application of the law in terms of developing favorable case law driven factors','Looking to way other laws have used that term may be useful in preparing a defense and shaping the application of the law in terms of developing favorable case law driven factors.  “Extreme hardship” is used in immigration law, and those courts have rejected “common results” of deportation as extreme hardship saying that the to qualify, the results would need to be unusual or beyond what would normally be expected. ','Looking to way other laws have used that term may be useful in preparing a defense and shaping the application of the law in terms of developing favorable case law driven factors.',0,'2022-04-04 08:56:23','2022-04-04 08:56:23'),(52,46423,46344,'claimant’s burden','Considering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the claimant’s burden should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating proof including the possibility of medical evidence reflecting a deterioration, to establish entitlement','Considering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\">claimant’s burden</a> should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating proof including the possibility of medical evidence reflecting a deterioration, to establish entitlement','Considering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the claimant’s burden should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating proof including the possibility of medical evidence reflecting a deterioration, to establish entitlement','Considering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the claimant’s burden should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating proof including the possibility of medical evidence reflecting a deterioration, to establish entitlement.  Our analysis reflects that financial hardship will be a threshold test.','Considering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the claimant’s burden should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating proof including the possibility of medical evidence reflecting a deterioration, to establish entitlement.',0,'2022-04-04 08:56:23','2022-04-04 08:56:23'),(53,46423,46543,'including the possibility of medical','Considering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the claimant’s burden should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating proof including the possibility of medical evidence reflecting a deterioration, to establish entitlement','Considering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the claimant’s burden should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating proof <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\">including the possibility of medical</a> evidence reflecting a deterioration, to establish entitlement','Considering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the claimant’s burden should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating proof including the possibility of medical evidence reflecting a deterioration, to establish entitlement','Considering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the claimant’s burden should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating proof including the possibility of medical evidence reflecting a deterioration, to establish entitlement.  Our analysis reflects that financial hardship will be a threshold test.','Considering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the claimant’s burden should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating proof including the possibility of medical evidence reflecting a deterioration, to establish entitlement.',0,'2022-04-04 08:56:23','2022-04-04 08:56:23'),(54,46423,46340,'medical evidence','Considering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the claimant’s burden should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating proof including the possibility of medical evidence reflecting a deterioration, to establish entitlement','Considering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the claimant’s burden should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating proof including the possibility of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\">medical evidence</a> reflecting a deterioration, to establish entitlement','Considering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the claimant’s burden should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating proof including the possibility of medical evidence reflecting a deterioration, to establish entitlement','Considering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the claimant’s burden should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating proof including the possibility of medical evidence reflecting a deterioration, to establish entitlement.  Our analysis reflects that financial hardship will be a threshold test.','Considering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the claimant’s burden should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating proof including the possibility of medical evidence reflecting a deterioration, to establish entitlement.',0,'2022-04-04 08:56:23','2022-04-04 08:56:23'),(56,46129,46387,'board – from workers’ compensation','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond','She has extensive experience as a paralegal and legal assistant across the legal <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\">board – from workers’ compensation</a> to property tax assessment, criminal, matrimonial, and beyond','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond','Elena is excited to a part of a lively group whose foremost goal is to foster strong partnerships with their clients, leading to a proactive rather than a reactive approach to strategies and goals. She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond. Over the past few years, she has honed her customer service and organizational skills, becoming a detail-oriented, proactive and intelligent assistant to the attorneys with whom she worked.','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond.',0,'2022-04-04 10:15:44','2022-04-04 10:15:44'),(57,46129,46508,'board – from workers’ compensation','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond','She has extensive experience as a paralegal and legal assistant across the legal <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/12/did-you-know-the-board-has-retired-the-concept-of-the-compensable-retirement-the-death-knell-of-the-trifecta-zamora-and-the-so-called-compensable-retirement/\">board – from workers’ compensation</a> to property tax assessment, criminal, matrimonial, and beyond','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond','Elena is excited to a part of a lively group whose foremost goal is to foster strong partnerships with their clients, leading to a proactive rather than a reactive approach to strategies and goals. She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond. Over the past few years, she has honed her customer service and organizational skills, becoming a detail-oriented, proactive and intelligent assistant to the attorneys with whom she worked.','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond.',0,'2022-04-04 10:15:44','2022-04-04 10:15:44'),(58,46129,46512,'board – from workers’ compensation','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond','She has extensive experience as a paralegal and legal assistant across the legal <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">board – from workers’ compensation</a> to property tax assessment, criminal, matrimonial, and beyond','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond','Elena is excited to a part of a lively group whose foremost goal is to foster strong partnerships with their clients, leading to a proactive rather than a reactive approach to strategies and goals. She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond. Over the past few years, she has honed her customer service and organizational skills, becoming a detail-oriented, proactive and intelligent assistant to the attorneys with whom she worked.','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond.',0,'2022-04-04 10:15:44','2022-04-04 10:15:44'),(59,46129,46555,'board – from workers’ compensation','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond','She has extensive experience as a paralegal and legal assistant across the legal <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">board – from workers’ compensation</a> to property tax assessment, criminal, matrimonial, and beyond','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond','Elena is excited to a part of a lively group whose foremost goal is to foster strong partnerships with their clients, leading to a proactive rather than a reactive approach to strategies and goals. She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond. Over the past few years, she has honed her customer service and organizational skills, becoming a detail-oriented, proactive and intelligent assistant to the attorneys with whom she worked.','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond.',0,'2022-04-04 10:15:44','2022-04-04 10:15:44'),(60,46129,46421,'– from workers’ compensation','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond','She has extensive experience as a paralegal and legal assistant across the legal board <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">– from workers’ compensation</a> to property tax assessment, criminal, matrimonial, and beyond','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond','Elena is excited to a part of a lively group whose foremost goal is to foster strong partnerships with their clients, leading to a proactive rather than a reactive approach to strategies and goals. She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond. Over the past few years, she has honed her customer service and organizational skills, becoming a detail-oriented, proactive and intelligent assistant to the attorneys with whom she worked.','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond.',0,'2022-04-04 10:15:44','2022-04-04 10:15:44'),(61,46129,46486,'workers’ compensation','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond','She has extensive experience as a paralegal and legal assistant across the legal board – from <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> to property tax assessment, criminal, matrimonial, and beyond','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond','Elena is excited to a part of a lively group whose foremost goal is to foster strong partnerships with their clients, leading to a proactive rather than a reactive approach to strategies and goals. She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond. Over the past few years, she has honed her customer service and organizational skills, becoming a detail-oriented, proactive and intelligent assistant to the attorneys with whom she worked.','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond.',0,'2022-04-04 10:15:44','2022-04-04 10:15:44'),(62,46351,46371,'– the phrase literally includes the work','The funny part is, the term “Think Tank” is packed with undertones of scholarship – the phrase literally includes the work “think”','The funny part is, the term “Think Tank” is packed with undertones of scholarship <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">– the phrase literally includes the work</a> “think”','The funny part is, the term “Think Tank” is packed with undertones of scholarship – the phrase literally includes the work “think”','The funny part is, the term “Think Tank” is packed with undertones of scholarship – the phrase literally includes the work “think”!  In that limited sense, Law Firms should be assessed by their clients in this way – does a ','The funny part is, the term “Think Tank” is packed with undertones of scholarship – the phrase literally includes the work “think”!',0,'2022-04-04 10:15:49','2022-04-04 10:15:49'),(63,46351,46512,'– the phrase literally includes','The funny part is, the term “Think Tank” is packed with undertones of scholarship – the phrase literally includes the work “think”','The funny part is, the term “Think Tank” is packed with undertones of scholarship <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">– the phrase literally includes</a> the work “think”','The funny part is, the term “Think Tank” is packed with undertones of scholarship – the phrase literally includes the work “think”','The funny part is, the term “Think Tank” is packed with undertones of scholarship – the phrase literally includes the work “think”!  In that limited sense, Law Firms should be assessed by their clients in this way – does a ','The funny part is, the term “Think Tank” is packed with undertones of scholarship – the phrase literally includes the work “think”!',0,'2022-04-04 10:15:49','2022-04-04 10:15:49'),(64,46478,46511,'carrier if the employer','An employer…shall file with the..board and with the carrier if the employer is insured, upon a form prescribed by the chair, a report of any accident resulting in personal injury which has caused or will cause a loss of time from regular duties of one day beyond the working day or shift on which the accident occurred, or which has required or will require medical treatment beyond ordinary first aid or more than two treatments by a person rendering first aid…','An employer…shall file with the..board and with the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">carrier if the employer</a> is insured, upon a form prescribed by the chair, a report of any accident resulting in personal injury which has caused or will cause a loss of time from regular duties of one day beyond the working day or shift on which the accident occurred, or which has required or will require medical treatment beyond ordinary first aid or more than two treatments by a person rendering first aid…','An employer…shall file with the..board and with the carrier if the employer is insured, upon a form prescribed by the chair, a report of any accident resulting in personal injury which has caused or will cause a loss of time from regular duties of one day beyond the working day or shift on which the accident occurred, or which has required or will require medical treatment beyond ordinary first aid or more than two treatments by a person rendering first aid…','An employer…shall file with the..board and with the carrier if the employer is insured, upon a form prescribed by the chair, a report of any accident resulting in personal injury which has caused or will cause a loss of time from regular duties of one day beyond the working day or shift on which the accident occurred, or which has required or will require medical treatment beyond ordinary first aid or more than two treatments by a person rendering first aid…','An employer…shall file with the..board and with the carrier if the employer is insured, upon a form prescribed by the chair, a report of any accident resulting in personal injury which has caused or will cause a loss of time from regular duties of one day beyond the working day or shift on which the accident occurred, or which has required or will require medical treatment beyond ordinary first aid or more than two treatments by a person rendering first aid…',0,'2022-04-04 11:42:43','2022-04-04 11:42:43'),(65,46478,46546,'carrier if the employer','An employer…shall file with the..board and with the carrier if the employer is insured, upon a form prescribed by the chair, a report of any accident resulting in personal injury which has caused or will cause a loss of time from regular duties of one day beyond the working day or shift on which the accident occurred, or which has required or will require medical treatment beyond ordinary first aid or more than two treatments by a person rendering first aid…','An employer…shall file with the..board and with the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">carrier if the employer</a> is insured, upon a form prescribed by the chair, a report of any accident resulting in personal injury which has caused or will cause a loss of time from regular duties of one day beyond the working day or shift on which the accident occurred, or which has required or will require medical treatment beyond ordinary first aid or more than two treatments by a person rendering first aid…','An employer…shall file with the..board and with the carrier if the employer is insured, upon a form prescribed by the chair, a report of any accident resulting in personal injury which has caused or will cause a loss of time from regular duties of one day beyond the working day or shift on which the accident occurred, or which has required or will require medical treatment beyond ordinary first aid or more than two treatments by a person rendering first aid…','An employer…shall file with the..board and with the carrier if the employer is insured, upon a form prescribed by the chair, a report of any accident resulting in personal injury which has caused or will cause a loss of time from regular duties of one day beyond the working day or shift on which the accident occurred, or which has required or will require medical treatment beyond ordinary first aid or more than two treatments by a person rendering first aid…','An employer…shall file with the..board and with the carrier if the employer is insured, upon a form prescribed by the chair, a report of any accident resulting in personal injury which has caused or will cause a loss of time from regular duties of one day beyond the working day or shift on which the accident occurred, or which has required or will require medical treatment beyond ordinary first aid or more than two treatments by a person rendering first aid…',0,'2022-04-04 11:42:43','2022-04-04 11:42:43'),(66,46071,46342,'unanimously gave causal relationship','This was a favorite win because all the doctors, including the IME, unanimously gave causal relationship','This was a favorite win because all the doctors, including the IME, <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">unanimously gave causal relationship</a>','This was a favorite win because all the doctors, including the IME, unanimously gave causal relationship','My other favorite win was a disallowance for a claimant who was alleging chemical exposure in the work place, but was never exposed to the chemical. This was a favorite win because all the doctors, including the IME, unanimously gave causal relationship. However, just in time for writing the Memorandum of Law, ','This was a favorite win because all the doctors, including the IME, unanimously gave causal relationship. However, just in time for writing the Memorandum of Law,  a new Third Department case came down stating that if the doctor’s opinions are based on a faulty premise, they are not credible. The case had a very similar fact pattern including an IME which also gave causal relationship. Through witness testimony we were able to prove the chemical exposure claimant alleged occurred never actually occurred, and therefore every doctor in the claim based their opinion of the faulty premise that there was an exposure. The claim was ultimately disallowed, as the WCLJ credited the testimony of the lay witnesses over the claimant.</li>',0,'2022-04-04 11:42:49','2022-04-04 11:42:49'),(67,46071,46342,'causal relationship','The case had a very similar fact pattern including an IME which also gave causal relationship','The case had a very similar fact pattern including an IME which also gave <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">causal relationship</a>','The case had a very similar fact pattern including an IME which also gave causal relationship','a new Third Department case came down stating that if the doctor’s opinions are based on a faulty premise, they are not credible. The case had a very similar fact pattern including an IME which also gave causal relationship. Through witness testimony we were able to prove the chemical exposure claimant alleged occurred never actually occurred, and therefore every doctor in the claim based their opinion of the faulty premise that there was an exposure.','ther favorite win was a disallowance for a claimant who was alleging chemical exposure in the work place, but was never exposed to the chemical. This was a favorite win because all the doctors, including the IME, unanimously gave causal relationship. However, just in time for writing the Memorandum of Law,  a new Third Department case came down stating that if the doctor’s opinions are based on a faulty premise, they are not credible. The case had a very similar fact pattern including an IME which also gave causal relationship. Through witness testimony we were able to prove the chemical exposure claimant alleged occurred never actually occurred, and therefore every doctor in the claim based their opinion of the faulty premise that there was an exposure. The claim was ultimately disallowed, as the WCLJ credited the testimony of the lay witnesses over the claimant.</li>',0,'2022-04-04 11:42:49','2022-04-04 11:42:49'),(68,46071,46338,'causal relationship','This was a favorite win because all the doctors, including the IME, unanimously gave causal relationship','This was a favorite win because all the doctors, including the IME, unanimously gave <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/06/third-deparment-decision-disputing-causal-relationship/\">causal relationship</a>','This was a favorite win because all the doctors, including the IME, unanimously gave causal relationship','My other favorite win was a disallowance for a claimant who was alleging chemical exposure in the work place, but was never exposed to the chemical. This was a favorite win because all the doctors, including the IME, unanimously gave causal relationship. However, just in time for writing the Memorandum of Law, ','This was a favorite win because all the doctors, including the IME, unanimously gave causal relationship. However, just in time for writing the Memorandum of Law,  a new Third Department case came down stating that if the doctor’s opinions are based on a faulty premise, they are not credible. The case had a very similar fact pattern including an IME which also gave causal relationship. Through witness testimony we were able to prove the chemical exposure claimant alleged occurred never actually occurred, and therefore every doctor in the claim based their opinion of the faulty premise that there was an exposure. The claim was ultimately disallowed, as the WCLJ credited the testimony of the lay witnesses over the claimant.</li>',0,'2022-04-04 11:42:49','2022-04-04 11:42:49'),(69,46071,46338,'causal relationship','The case had a very similar fact pattern including an IME which also gave causal relationship','The case had a very similar fact pattern including an IME which also gave <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/06/third-deparment-decision-disputing-causal-relationship/\">causal relationship</a>','The case had a very similar fact pattern including an IME which also gave causal relationship','a new Third Department case came down stating that if the doctor’s opinions are based on a faulty premise, they are not credible. The case had a very similar fact pattern including an IME which also gave causal relationship. Through witness testimony we were able to prove the chemical exposure claimant alleged occurred never actually occurred, and therefore every doctor in the claim based their opinion of the faulty premise that there was an exposure.','ther favorite win was a disallowance for a claimant who was alleging chemical exposure in the work place, but was never exposed to the chemical. This was a favorite win because all the doctors, including the IME, unanimously gave causal relationship. However, just in time for writing the Memorandum of Law,  a new Third Department case came down stating that if the doctor’s opinions are based on a faulty premise, they are not credible. The case had a very similar fact pattern including an IME which also gave causal relationship. Through witness testimony we were able to prove the chemical exposure claimant alleged occurred never actually occurred, and therefore every doctor in the claim based their opinion of the faulty premise that there was an exposure. The claim was ultimately disallowed, as the WCLJ credited the testimony of the lay witnesses over the claimant.</li>',0,'2022-04-04 11:42:49','2022-04-04 11:42:49'),(70,46071,46344,'causal relationship','This was a favorite win because all the doctors, including the IME, unanimously gave causal relationship','This was a favorite win because all the doctors, including the IME, unanimously gave <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\">causal relationship</a>','This was a favorite win because all the doctors, including the IME, unanimously gave causal relationship','My other favorite win was a disallowance for a claimant who was alleging chemical exposure in the work place, but was never exposed to the chemical. This was a favorite win because all the doctors, including the IME, unanimously gave causal relationship. However, just in time for writing the Memorandum of Law, ','This was a favorite win because all the doctors, including the IME, unanimously gave causal relationship. However, just in time for writing the Memorandum of Law,  a new Third Department case came down stating that if the doctor’s opinions are based on a faulty premise, they are not credible. The case had a very similar fact pattern including an IME which also gave causal relationship. Through witness testimony we were able to prove the chemical exposure claimant alleged occurred never actually occurred, and therefore every doctor in the claim based their opinion of the faulty premise that there was an exposure. The claim was ultimately disallowed, as the WCLJ credited the testimony of the lay witnesses over the claimant.</li>',0,'2022-04-04 11:42:49','2022-04-04 11:42:49'),(71,46071,46344,'causal relationship','The case had a very similar fact pattern including an IME which also gave causal relationship','The case had a very similar fact pattern including an IME which also gave <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\">causal relationship</a>','The case had a very similar fact pattern including an IME which also gave causal relationship','a new Third Department case came down stating that if the doctor’s opinions are based on a faulty premise, they are not credible. The case had a very similar fact pattern including an IME which also gave causal relationship. Through witness testimony we were able to prove the chemical exposure claimant alleged occurred never actually occurred, and therefore every doctor in the claim based their opinion of the faulty premise that there was an exposure.','ther favorite win was a disallowance for a claimant who was alleging chemical exposure in the work place, but was never exposed to the chemical. This was a favorite win because all the doctors, including the IME, unanimously gave causal relationship. However, just in time for writing the Memorandum of Law,  a new Third Department case came down stating that if the doctor’s opinions are based on a faulty premise, they are not credible. The case had a very similar fact pattern including an IME which also gave causal relationship. Through witness testimony we were able to prove the chemical exposure claimant alleged occurred never actually occurred, and therefore every doctor in the claim based their opinion of the faulty premise that there was an exposure. The claim was ultimately disallowed, as the WCLJ credited the testimony of the lay witnesses over the claimant.</li>',0,'2022-04-04 11:42:49','2022-04-04 11:42:49'),(72,46071,46553,'claimant alleged','Through witness testimony we were able to prove the chemical exposure claimant alleged occurred never actually occurred, and therefore every doctor in the claim based their opinion of the faulty premise that there was an exposure','Through witness testimony we were able to prove the chemical exposure <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">claimant alleged</a> occurred never actually occurred, and therefore every doctor in the claim based their opinion of the faulty premise that there was an exposure','Through witness testimony we were able to prove the chemical exposure claimant alleged occurred never actually occurred, and therefore every doctor in the claim based their opinion of the faulty premise that there was an exposure','The case had a very similar fact pattern including an IME which also gave causal relationship. Through witness testimony we were able to prove the chemical exposure claimant alleged occurred never actually occurred, and therefore every doctor in the claim based their opinion of the faulty premise that there was an exposure. The claim was ultimately disallowed, as the WCLJ credited the testimony of the lay witnesses over the claimant.','Through witness testimony we were able to prove the chemical exposure claimant alleged occurred never actually occurred, and therefore every doctor in the claim based their opinion of the faulty premise that there was an exposure.',0,'2022-04-04 11:42:49','2022-04-04 11:42:49'),(81,46145,46422,'medical depositions and claimant','Over five years of handling thousands of claims, his vast experience includes handling representation at hearings, settlement negotiations, medical depositions and claimant and witness testimony','Over five years of handling thousands of claims, his vast experience includes handling representation at hearings, settlement negotiations, <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">medical depositions and claimant</a> and witness testimony','Over five years of handling thousands of claims, his vast experience includes handling representation at hearings, settlement negotiations, medical depositions and claimant and witness testimony','Neil’s primary focus has continued, defending insurance carriers, third-party administrators and self-insured employers. Over five years of handling thousands of claims, his vast experience includes handling representation at hearings, settlement negotiations, medical depositions and claimant and witness testimony.','Over five years of handling thousands of claims, his vast experience includes handling representation at hearings, settlement negotiations, medical depositions and claimant and witness testimony.',0,'2022-04-04 11:57:54','2022-04-04 11:57:54'),(82,46501,46236,'case law','Evidence about a workers’ regular use of hearing protection, according to case law, can be probative evidence on the issue of exposure, but as with almost every line of precedent issued by the Board, cases are fact sensitive','Evidence about a workers’ regular use of hearing protection, according to <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/client-resources/case-law-updates-lomad-case-law-updates/\">case law</a>, can be probative evidence on the issue of exposure, but as with almost every line of precedent issued by the Board, cases are fact sensitive','Evidence about a workers’ regular use of hearing protection, according to case law, can be probative evidence on the issue of exposure, but as with almost every line of precedent issued by the Board, cases are fact sensitive','Therein lies the first real problem in defending a hearing loss claim: an employer’s preventative measures are guided by OSHA regulations which are specific –specific to the point of expressing “safe” decibel levels of exposure in time-weighted averages — and the WCL simply tells us the “injurious exposure” to loud noise causes hearing loss. Evidence about a workers’ regular use of hearing protection, according to case law, can be probative evidence on the issue of exposure, but as with almost every line of precedent issued by the Board, cases are fact sensitive. That fact is most clearly demonstrated by the Appellate Division’s ruling in Zham v.','Evidence about a workers’ regular use of hearing protection, according to case law, can be probative evidence on the issue of exposure, but as with almost every line of precedent issued by the Board, cases are fact sensitive.',0,'2022-04-04 11:57:54','2022-04-04 11:57:54'),(83,46501,46561,'claimant testified','The claimant testified that for the bulk of her employment, she worked in a room adjacent to the plant floor that was “quiet” and she confirmed her normal workplace was comparable to the WCB courtroom where her testimony was being taken','The <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">claimant testified</a> that for the bulk of her employment, she worked in a room adjacent to the plant floor that was “quiet” and she confirmed her normal workplace was comparable to the WCB courtroom where her testimony was being taken','The claimant testified that for the bulk of her employment, she worked in a room adjacent to the plant floor that was “quiet” and she confirmed her normal workplace was comparable to the WCB courtroom where her testimony was being taken','The employer in this matter had taken painstaking efforts to implement and enforce an OSHA-compliant hearing conservation program and required all workers to utilize hearing protection “wall to wall” and conducted annual screenings and annual soundmapping to confirm that noise levels and sound-damping measures were safe for its employees. The claimant testified that for the bulk of her employment, she worked in a room adjacent to the plant floor that was “quiet” and she confirmed her normal workplace was comparable to the WCB courtroom where her testimony was being taken. Although the claimant testified she had spent time on a daily basis around the “loud” machines, she had strictly complied with the employer’s hearing conservation program and had worn hearing protection without fail for the last thirty years of her employment.','The Law Office of Melissa A. Day won a disallowance of an occupational hearing loss claim involving a 45-year employee of a large manufacturing employer who alleged hearing loss due to exposure to presses, grinding machines and other heavy fabricating equipment. The employer in this matter had taken painstaking efforts to implement and enforce an OSHA-compliant hearing conservation program and required all workers to utilize hearing protection “wall to wall” and conducted annual screenings and annual soundmapping to confirm that noise levels and sound-damping measures were safe for its employees. The claimant testified that for the bulk of her employment, she worked in a room adjacent to the plant floor that was “quiet” and she confirmed her normal workplace was comparable to the WCB courtroom where her testimony was being taken.',0,'2022-04-04 11:57:54','2022-04-04 11:57:54'),(84,46501,46561,'claimant testified','Although the claimant testified she had spent time on a daily basis around the “loud” machines, she had strictly complied with the employer’s hearing conservation program and had worn hearing protection without fail for the last thirty years of her employment','Although the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">claimant testified</a> she had spent time on a daily basis around the “loud” machines, she had strictly complied with the employer’s hearing conservation program and had worn hearing protection without fail for the last thirty years of her employment','Although the claimant testified she had spent time on a daily basis around the “loud” machines, she had strictly complied with the employer’s hearing conservation program and had worn hearing protection without fail for the last thirty years of her employment','The claimant testified that for the bulk of her employment, she worked in a room adjacent to the plant floor that was “quiet” and she confirmed her normal workplace was comparable to the WCB courtroom where her testimony was being taken. Although the claimant testified she had spent time on a daily basis around the “loud” machines, she had strictly complied with the employer’s hearing conservation program and had worn hearing protection without fail for the last thirty years of her employment. Claimant’s treating physician found a minimal loss of hearing, while the employer’s consultant found even less hearing – less than 0% according to the Board’s formula.','Although the claimant testified she had spent time on a daily basis around the “loud” machines, she had strictly complied with the employer’s hearing conservation program and had worn hearing protection without fail for the last thirty years of her employment.',0,'2022-04-04 11:57:54','2022-04-04 11:57:54'),(85,46501,46332,'causally related','much of her recent time [at work] in an office setting” and that the treating physician’s history of exposure did not include the use of hearing protection for the last 30+ years, only the last 6, and there was insufficient evidence of a causally related occupational hearing loss','much of her recent time [at work] in an office setting” and that the treating physician’s history of exposure did not include the use of hearing protection for the last 30+ years, only the last 6, and there was insufficient evidence of a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/07/carpal-tunnel-and-causal-relation-not-always-so-clear-cut/\">causally related</a> occupational hearing loss','much of her recent time [at work] in an office setting” and that the treating physician’s history of exposure did not include the use of hearing protection for the last 30+ years, only the last 6, and there was insufficient evidence of a causally related occupational hearing loss','. . much of her recent time [at work] in an office setting” and that the treating physician’s history of exposure did not include the use of hearing protection for the last 30+ years, only the last 6, and there was insufficient evidence of a causally related occupational hearing loss.','much of her recent time [at work] in an office setting” and that the treating physician’s history of exposure did not include the use of hearing protection for the last 30+ years, only the last 6, and there was insufficient evidence of a causally related occupational hearing loss.',0,'2022-04-04 11:57:54','2022-04-04 11:57:54'),(86,46501,46367,'causally related','much of her recent time [at work] in an office setting” and that the treating physician’s history of exposure did not include the use of hearing protection for the last 30+ years, only the last 6, and there was insufficient evidence of a causally related occupational hearing loss','much of her recent time [at work] in an office setting” and that the treating physician’s history of exposure did not include the use of hearing protection for the last 30+ years, only the last 6, and there was insufficient evidence of a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/\">causally related</a> occupational hearing loss','much of her recent time [at work] in an office setting” and that the treating physician’s history of exposure did not include the use of hearing protection for the last 30+ years, only the last 6, and there was insufficient evidence of a causally related occupational hearing loss','. . much of her recent time [at work] in an office setting” and that the treating physician’s history of exposure did not include the use of hearing protection for the last 30+ years, only the last 6, and there was insufficient evidence of a causally related occupational hearing loss.','much of her recent time [at work] in an office setting” and that the treating physician’s history of exposure did not include the use of hearing protection for the last 30+ years, only the last 6, and there was insufficient evidence of a causally related occupational hearing loss.',0,'2022-04-04 11:57:54','2022-04-04 11:57:54'),(87,46501,46350,'working relationship with the employer','Hearing Loss claims can be won, but what this case illustrates is that a well-coordinated defense is absolutely necessary; and marshalling the facts necessary to present a successful defense requires a close working relationship with the employer and its personnel','Hearing Loss claims can be won, but what this case illustrates is that a well-coordinated defense is absolutely necessary; and marshalling the facts necessary to present a successful defense requires a close <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">working relationship with the employer</a> and its personnel','Hearing Loss claims can be won, but what this case illustrates is that a well-coordinated defense is absolutely necessary; and marshalling the facts necessary to present a successful defense requires a close working relationship with the employer and its personnel','Hearing Loss claims can be won, but what this case illustrates is that a well-coordinated defense is absolutely necessary; and marshalling the facts necessary to present a successful defense requires a close working relationship with the employer and its personnel. Good facts do make good law, but knowing your client is the only way to get either.','Hearing Loss claims can be won, but what this case illustrates is that a well-coordinated defense is absolutely necessary; and marshalling the facts necessary to present a successful defense requires a close working relationship with the employer and its personnel.',0,'2022-04-04 11:57:54','2022-04-04 11:57:54'),(88,46501,46369,'facts do make good law','Good facts do make good law, but knowing your client is the only way to get either.','Good <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/02/no-error-of-law-or-fact-in-an-application-for-full-board-review/\">facts do make good law</a>, but knowing your client is the only way to get either.','Good facts do make good law, but knowing your client is the only way to get either.','Hearing Loss claims can be won, but what this case illustrates is that a well-coordinated defense is absolutely necessary; and marshalling the facts necessary to present a successful defense requires a close working relationship with the employer and its personnel. Good facts do make good law, but knowing your client is the only way to get either.','Good facts do make good law, but knowing your client is the only way to get either.',0,'2022-04-04 11:57:54','2022-04-04 11:57:54'),(89,46413,46372,'classifiable instead of scheduled should he or she change','If a doctor reviews the permanent impairment guidelines and decides that the decision should be classifiable instead of scheduled should he or she change forms','If a doctor reviews the permanent impairment guidelines and decides that the decision should be <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/how-change-in-conditions-for-classified-claimants-changed-drastically/\">classifiable instead of scheduled should he or she change</a> forms','If a doctor reviews the permanent impairment guidelines and decides that the decision should be classifiable instead of scheduled should he or she change forms','If a doctor reviews the permanent impairment guidelines and decides that the decision should be classifiable instead of scheduled should he or she change forms?','If a doctor reviews the permanent impairment guidelines and decides that the decision should be classifiable instead of scheduled should he or she change forms?',0,'2022-04-04 11:57:57','2022-04-04 11:57:57'),(90,46413,46372,'condition should be classified','The doctor could conclude that an extremity condition should be classified','The doctor could conclude that an extremity <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/how-change-in-conditions-for-classified-claimants-changed-drastically/\">condition should be classified</a>','The doctor could conclude that an extremity condition should be classified','Hence wouldn’t providing a doctor with only the SLU forms be an improper attempt to influence the doctor’s opinion?  The doctor could conclude that an extremity condition should be classified?','The Board has held in Board Panel decisions that suggesting to an IME doctor in a cover letter that permanency should result in a SLU is an improper attempt to influence the doctor’s opinion on permanency.  Hence wouldn’t providing a doctor with only the SLU forms be an improper attempt to influence the doctor’s opinion?  The doctor could conclude that an extremity condition should be classified?',0,'2022-04-04 11:57:57','2022-04-04 11:57:57'),(91,46413,46374,'claimant has multiple injuries to extremities from one claim','If a claimant has multiple injuries to extremities from one claim should the doctors use a SLU form for each schedulable body part','If a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claimant has multiple injuries to extremities from one claim</a> should the doctors use a SLU form for each schedulable body part','If a claimant has multiple injuries to extremities from one claim should the doctors use a SLU form for each schedulable body part','If a claimant has multiple injuries to extremities from one claim should the doctors use a SLU form for each schedulable body part?','If a claimant has multiple injuries to extremities from one claim should the doctors use a SLU form for each schedulable body part?',0,'2022-04-04 11:57:57','2022-04-04 11:57:57'),(92,46413,46387,'form for each schedulable','If a claimant has multiple injuries to extremities from one claim should the doctors use a SLU form for each schedulable body part','If a claimant has multiple injuries to extremities from one claim should the doctors use a SLU <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\">form for each schedulable</a> body part','If a claimant has multiple injuries to extremities from one claim should the doctors use a SLU form for each schedulable body part','If a claimant has multiple injuries to extremities from one claim should the doctors use a SLU form for each schedulable body part?','If a claimant has multiple injuries to extremities from one claim should the doctors use a SLU form for each schedulable body part?',0,'2022-04-04 11:57:57','2022-04-04 11:57:57'),(93,46422,46482,'guidelines applied to a nonresident claimant’s treatment','State of New York Worker’s Compensation Board, 24 NY3d 459 (2014), the board expressly overruled any prior authority to the contrary and found that the guidelines applied to a nonresident claimant’s treatment out-of-state','State of New York Worker’s Compensation Board</em>, 24 NY3d 459 (2014), the board expressly overruled any prior authority to the contrary and found that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/non-acute-pain-treatment-guidelines/\">guidelines applied to a nonresident claimant’s treatment</a> out-of-state','State of New York Worker’s Compensation Board</em>, 24 NY3d 459 (2014), the board expressly overruled any prior authority to the contrary and found that the guidelines applied to a nonresident claimant’s treatment out-of-state','Noting that the guidelines had previously been found to be “instructive” for treatment rendered to claimants living outside the state, and relying on the decision in Kigin v. State of New York Worker’s Compensation Board, 24 NY3d 459 (2014), the board expressly overruled any prior authority to the contrary and found that the guidelines applied to a nonresident claimant’s treatment out-of-state.','state. Noting that the guidelines had previously been found to be “instructive” for treatment rendered to claimants living outside the state, and relying on the decision in <em>Kigin v. State of New York Worker’s Compensation Board</em>, 24 NY3d 459 (2014), the board expressly overruled any prior authority to the contrary and found that the guidelines applied to a nonresident claimant’s treatment out-of-state.',0,'2022-04-04 11:57:58','2022-04-04 11:57:58'),(94,46422,46502,'guidelines applied to a nonresident claimant’s treatment','State of New York Worker’s Compensation Board, 24 NY3d 459 (2014), the board expressly overruled any prior authority to the contrary and found that the guidelines applied to a nonresident claimant’s treatment out-of-state','State of New York Worker’s Compensation Board</em>, 24 NY3d 459 (2014), the board expressly overruled any prior authority to the contrary and found that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">guidelines applied to a nonresident claimant’s treatment</a> out-of-state','State of New York Worker’s Compensation Board</em>, 24 NY3d 459 (2014), the board expressly overruled any prior authority to the contrary and found that the guidelines applied to a nonresident claimant’s treatment out-of-state','Noting that the guidelines had previously been found to be “instructive” for treatment rendered to claimants living outside the state, and relying on the decision in Kigin v. State of New York Worker’s Compensation Board, 24 NY3d 459 (2014), the board expressly overruled any prior authority to the contrary and found that the guidelines applied to a nonresident claimant’s treatment out-of-state.','state. Noting that the guidelines had previously been found to be “instructive” for treatment rendered to claimants living outside the state, and relying on the decision in <em>Kigin v. State of New York Worker’s Compensation Board</em>, 24 NY3d 459 (2014), the board expressly overruled any prior authority to the contrary and found that the guidelines applied to a nonresident claimant’s treatment out-of-state.',0,'2022-04-04 11:57:58','2022-04-04 11:57:58'),(95,46422,46506,'guidelines applied to a nonresident claimant’s treatment','State of New York Worker’s Compensation Board, 24 NY3d 459 (2014), the board expressly overruled any prior authority to the contrary and found that the guidelines applied to a nonresident claimant’s treatment out-of-state','State of New York Worker’s Compensation Board</em>, 24 NY3d 459 (2014), the board expressly overruled any prior authority to the contrary and found that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">guidelines applied to a nonresident claimant’s treatment</a> out-of-state','State of New York Worker’s Compensation Board</em>, 24 NY3d 459 (2014), the board expressly overruled any prior authority to the contrary and found that the guidelines applied to a nonresident claimant’s treatment out-of-state','Noting that the guidelines had previously been found to be “instructive” for treatment rendered to claimants living outside the state, and relying on the decision in Kigin v. State of New York Worker’s Compensation Board, 24 NY3d 459 (2014), the board expressly overruled any prior authority to the contrary and found that the guidelines applied to a nonresident claimant’s treatment out-of-state.','state. Noting that the guidelines had previously been found to be “instructive” for treatment rendered to claimants living outside the state, and relying on the decision in <em>Kigin v. State of New York Worker’s Compensation Board</em>, 24 NY3d 459 (2014), the board expressly overruled any prior authority to the contrary and found that the guidelines applied to a nonresident claimant’s treatment out-of-state.',0,'2022-04-04 11:57:58','2022-04-04 11:57:58'),(96,46422,46506,'medical standard for appropriate medical care','The MTGs provide an evidence based medical standard for appropriate medical care','The MTGs provide an evidence based <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">medical standard for appropriate medical care</a>','The MTGs provide an evidence based medical standard for appropriate medical care','The MTGs provide an evidence based medical standard for appropriate medical care. The standards for treatment contained in the MTG ensure that claimants receive the most effective medical care as recommended by best practices in the medical community, and as adopted by the Board in consultation with medical specialists.','The MTGs provide an evidence based medical standard for appropriate medical care. The standards for treatment contained in the MTG ensure that claimants receive the most effective medical care as recommended by best practices in the medical community, and as adopted by the Board in consultation with medical specialists. Such recommended treatment and care should be rendered without regard to the location of the claimant’s home or the medical provider’s practice. As such, the Board Panel finds that the MTGs apply regardless of where or by whom the treatment is rendered.',0,'2022-04-04 11:57:58','2022-04-04 11:57:58'),(97,46422,46340,'evidence based medical standard for appropriate medical','The MTGs provide an evidence based medical standard for appropriate medical care','The MTGs provide an <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\">evidence based medical standard for appropriate medical</a> care','The MTGs provide an evidence based medical standard for appropriate medical care','The MTGs provide an evidence based medical standard for appropriate medical care. The standards for treatment contained in the MTG ensure that claimants receive the most effective medical care as recommended by best practices in the medical community, and as adopted by the Board in consultation with medical specialists.','The MTGs provide an evidence based medical standard for appropriate medical care. The standards for treatment contained in the MTG ensure that claimants receive the most effective medical care as recommended by best practices in the medical community, and as adopted by the Board in consultation with medical specialists. Such recommended treatment and care',0,'2022-04-04 11:57:58','2022-04-04 11:57:58'),(98,46422,46371,'claimants receive','The standards for treatment contained in the MTG ensure that claimants receive the most effective medical care as recommended by best practices in the medical community, and as adopted by the Board in consultation with medical specialists','The standards for treatment contained in the MTG ensure that <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimants receive</a> the most effective medical care as recommended by best practices in the medical community, and as adopted by the Board in consultation with medical specialists','The standards for treatment contained in the MTG ensure that claimants receive the most effective medical care as recommended by best practices in the medical community, and as adopted by the Board in consultation with medical specialists','The MTGs provide an evidence based medical standard for appropriate medical care. The standards for treatment contained in the MTG ensure that claimants receive the most effective medical care as recommended by best practices in the medical community, and as adopted by the Board in consultation with medical specialists. Such recommended treatment and care should be rendered without regard to the location of the claimant’s home or the medical provider’s practice.','The MTGs provide an evidence based medical standard for appropriate medical care. The standards for treatment contained in the MTG ensure that claimants receive the most effective medical care as recommended by best practices in the medical community, and as adopted by the Board in consultation with medical specialists.',0,'2022-04-04 11:57:58','2022-04-04 11:57:58'),(99,46422,46503,'variance procedure also applies to out-of-state treatment','Given this holding, the board also found that the variance procedure also applies to out-of-state treatment although it refused to require out-of-state providers to use New York Worker’s Compensation board forms','Given this holding, the board also found that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">variance procedure also applies to out-of-state treatment</a> although it refused to require out-of-state providers to use New York Worker’s Compensation board forms','Given this holding, the board also found that the variance procedure also applies to out-of-state treatment although it refused to require out-of-state providers to use New York Worker’s Compensation board forms','Given this holding, the board also found that the variance procedure also applies to out-of-state treatment although it refused to require out-of-state providers to use New York Worker’s Compensation board forms. While those are certainly preferred, treatment should not be denied solely as a result of the failure of an out-of-state provider to use the proper form.','Given this holding, the board also found that the variance procedure also applies to out-of-state treatment although it refused to require out-of-state providers to use New York Worker’s Compensation board forms.',0,'2022-04-04 11:57:58','2022-04-04 11:57:58'),(100,46380,46369,'application and selection committee review','Membership is based on an application and selection committee review','Membership is based on an <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/02/no-error-of-law-or-fact-in-an-application-for-full-board-review/\">application and selection committee review</a>','Membership is based on an application and selection committee review','Buffalo Business First Leadership Trust is a part of Business Journals Leadership Trust — a collective of invitation-only networks of influential business leaders, executives and entrepreneurs in your community. Membership is based on an application and selection committee review. Benefits include private online forums, the ability to publish insights on bizjournals.com, business and executive coaching and a dedicated concierge team.','Membership is based on an application and selection committee review. Benefits include private online forums, the ability to publish insights on bizjournals.com, business and executive coaching and a dedicated concierge team. To learn more and find out if you qualify, visit trust.bizjournals.com.',0,'2022-04-04 11:57:59','2022-04-04 11:57:59'),(101,46380,46512,'include private online forums,','Benefits include private online forums, the ability to publish insights on bizjournals.com, business and executive coaching and a dedicated concierge team','Benefits <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">include private online forums,</a> the ability to publish insights on bizjournals.com, business and executive coaching and a dedicated concierge team','Benefits include private online forums, the ability to publish insights on bizjournals.com, business and executive coaching and a dedicated concierge team','Membership is based on an application and selection committee review. Benefits include private online forums, the ability to publish insights on bizjournals.com, business and executive coaching and a dedicated concierge team. To learn more and find out if you qualify, visit trust.bizjournals.com.','Benefits include private online forums, the ability to publish insights on bizjournals.com, business and executive coaching and a dedicated concierge team.',0,'2022-04-04 11:57:59','2022-04-04 11:57:59'),(102,6,46511,'defense counsel','Our philosophy is to minimize your risk exposure by coordinating a strategy with defense counsel throughout the life of the claim: from filing of the C-3 or EC-84 to final resolution.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"CONTENT MODULE 2\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#2e5591\" background_color_gradient_end=\"#211865\" custom_padding=\"50px||50px||true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"50px||50px||true|false\" background_color_tablet=\"#2e5591\" background_last_edited=\"on|phone\" background_enable_color_tablet=\"on\" use_background_color_gradient_tablet=\"off\" background_color_gradient_start_tablet=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_5,2_5\" make_equal=\"on\" admin_label=\"Module 2\" _builder_version=\"4.3.2\" width=\"90%\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" module_class=\"fl-vertical-center\" _builder_version=\"4.3.2\" custom_padding=\"|50px|||false|false\" custom_padding_tablet=\"|0px|35px|0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_direction=\"right\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Heading (H2)\" _builder_version=\"4.3.2\" text_font=\"Playfair Display||||||||\" text_text_color=\"#ffffff\" text_font_size=\"25px\" header_font=\"||||||||\" header_2_font=\"|600|||||||\" header_2_text_align=\"left\" header_2_text_color=\"#ffffff\" header_2_font_size=\"38px\" header_3_font=\"|600|||||||\" header_4_font=\"|600|||||||\" header_5_font=\"|600|||||||\" header_6_font=\"|600|||||||\" width_last_edited=\"off|phone\" max_width_last_edited=\"off|phone\" custom_margin=\"||0px||false|false\" custom_padding=\"||15px||false|false\" custom_padding_tablet=\"||||false|false\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"off|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|phone\" header_text_align_last_edited=\"off|phone\" header_font_size_last_edited=\"off|tablet\" header_2_text_align_tablet=\"center\" header_2_text_align_phone=\"\" header_2_text_align_last_edited=\"on|desktop\" header_2_font_size_tablet=\"35px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\" header_2_2_font_size_phone=\"32px\" header_3_2_font_size_phone=\"32px\" header_4_2_font_size_phone=\"32px\" header_5_2_font_size_phone=\"32px\" header_6_2_font_size_phone=\"32px\" header_2_2_font_size_tablet=\"35px\" header_3_2_font_size_tablet=\"35px\" header_4_2_font_size_tablet=\"35px\" header_5_2_font_size_tablet=\"35px\" header_6_2_font_size_tablet=\"35px\" header_2_2_font_size_last_edited=\"on|phone\" header_3_2_font_size_last_edited=\"on|phone\" header_4_2_font_size_last_edited=\"on|phone\" header_5_2_font_size_last_edited=\"on|phone\" header_6_2_font_size_last_edited=\"on|phone\"]Applying the 5 Cs Of','Our philosophy is to minimize your risk exposure by coordinating a strategy with <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">defense counsel</a> throughout the life of the claim: from filing of the C-3 or EC-84 to final resolution.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"CONTENT MODULE 2\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#2e5591\" background_color_gradient_end=\"#211865\" custom_padding=\"50px||50px||true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"50px||50px||true|false\" background_color_tablet=\"#2e5591\" background_last_edited=\"on|phone\" background_enable_color_tablet=\"on\" use_background_color_gradient_tablet=\"off\" background_color_gradient_start_tablet=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_5,2_5\" make_equal=\"on\" admin_label=\"Module 2\" _builder_version=\"4.3.2\" width=\"90%\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" module_class=\"fl-vertical-center\" _builder_version=\"4.3.2\" custom_padding=\"|50px|||false|false\" custom_padding_tablet=\"|0px|35px|0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_direction=\"right\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Heading (H2)\" _builder_version=\"4.3.2\" text_font=\"Playfair Display||||||||\" text_text_color=\"#ffffff\" text_font_size=\"25px\" header_font=\"||||||||\" header_2_font=\"|600|||||||\" header_2_text_align=\"left\" header_2_text_color=\"#ffffff\" header_2_font_size=\"38px\" header_3_font=\"|600|||||||\" header_4_font=\"|600|||||||\" header_5_font=\"|600|||||||\" header_6_font=\"|600|||||||\" width_last_edited=\"off|phone\" max_width_last_edited=\"off|phone\" custom_margin=\"||0px||false|false\" custom_padding=\"||15px||false|false\" custom_padding_tablet=\"||||false|false\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"off|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|phone\" header_text_align_last_edited=\"off|phone\" header_font_size_last_edited=\"off|tablet\" header_2_text_align_tablet=\"center\" header_2_text_align_phone=\"\" header_2_text_align_last_edited=\"on|desktop\" header_2_font_size_tablet=\"35px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\" header_2_2_font_size_phone=\"32px\" header_3_2_font_size_phone=\"32px\" header_4_2_font_size_phone=\"32px\" header_5_2_font_size_phone=\"32px\" header_6_2_font_size_phone=\"32px\" header_2_2_font_size_tablet=\"35px\" header_3_2_font_size_tablet=\"35px\" header_4_2_font_size_tablet=\"35px\" header_5_2_font_size_tablet=\"35px\" header_6_2_font_size_tablet=\"35px\" header_2_2_font_size_last_edited=\"on|phone\" header_3_2_font_size_last_edited=\"on|phone\" header_4_2_font_size_last_edited=\"on|phone\" header_5_2_font_size_last_edited=\"on|phone\" header_6_2_font_size_last_edited=\"on|phone\"]<p style=\"padding-bottom: 10px !important;color: #ffffff\">Applying the 5 Cs Of','Our philosophy is to minimize your risk exposure by coordinating a strategy with defense counsel throughout the life of the claim: from filing of the C-3 or EC-84 to final resolution.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"CONTENT MODULE 2\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#2e5591\" background_color_gradient_end=\"#211865\" custom_padding=\"50px||50px||true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"50px||50px||true|false\" background_color_tablet=\"#2e5591\" background_last_edited=\"on|phone\" background_enable_color_tablet=\"on\" use_background_color_gradient_tablet=\"off\" background_color_gradient_start_tablet=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_5,2_5\" make_equal=\"on\" admin_label=\"Module 2\" _builder_version=\"4.3.2\" width=\"90%\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" module_class=\"fl-vertical-center\" _builder_version=\"4.3.2\" custom_padding=\"|50px|||false|false\" custom_padding_tablet=\"|0px|35px|0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_direction=\"right\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Heading (H2)\" _builder_version=\"4.3.2\" text_font=\"Playfair Display||||||||\" text_text_color=\"#ffffff\" text_font_size=\"25px\" header_font=\"||||||||\" header_2_font=\"|600|||||||\" header_2_text_align=\"left\" header_2_text_color=\"#ffffff\" header_2_font_size=\"38px\" header_3_font=\"|600|||||||\" header_4_font=\"|600|||||||\" header_5_font=\"|600|||||||\" header_6_font=\"|600|||||||\" width_last_edited=\"off|phone\" max_width_last_edited=\"off|phone\" custom_margin=\"||0px||false|false\" custom_padding=\"||15px||false|false\" custom_padding_tablet=\"||||false|false\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"off|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|phone\" header_text_align_last_edited=\"off|phone\" header_font_size_last_edited=\"off|tablet\" header_2_text_align_tablet=\"center\" header_2_text_align_phone=\"\" header_2_text_align_last_edited=\"on|desktop\" header_2_font_size_tablet=\"35px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\" header_2_2_font_size_phone=\"32px\" header_3_2_font_size_phone=\"32px\" header_4_2_font_size_phone=\"32px\" header_5_2_font_size_phone=\"32px\" header_6_2_font_size_phone=\"32px\" header_2_2_font_size_tablet=\"35px\" header_3_2_font_size_tablet=\"35px\" header_4_2_font_size_tablet=\"35px\" header_5_2_font_size_tablet=\"35px\" header_6_2_font_size_tablet=\"35px\" header_2_2_font_size_last_edited=\"on|phone\" header_3_2_font_size_last_edited=\"on|phone\" header_4_2_font_size_last_edited=\"on|phone\" header_5_2_font_size_last_edited=\"on|phone\" header_6_2_font_size_last_edited=\"on|phone\"]<p style=\"padding-bottom: 10px !important;color: #ffffff\">Applying the 5 Cs Of','Workers’ Compensation Defense[/et_pb_text][et_pb_divider color=\"#ffffff\" divider_weight=\"3px\" disabled_on=\"off|off|on\" _builder_version=\"4.3.2\" width=\"175px\" module_alignment=\"left\" min_height=\"3px\" height=\"3px\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-vertical-center\" _builder_version=\"4.3.2\" custom_padding=\"|||50px|false|false\" custom_padding_tablet=\"0px|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"5%\" border_width_left=\"2px\" border_color_left=\"#ffffff\" border_width_left_tablet=\"0px\" border_width_left_phone=\"\" border_width_left_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Content-1\" _builder_version=\"4.11.4\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.55em\" width_last_edited=\"off|phone\" max_width_last_edited=\"off|phone\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" link_text_color_last_edited=\"off|desktop\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"]In the new landscape of defending workers’ compensation claims in New York, our belief is that employers, TPAs and carriers need claim-based representation, not hearing-based representation. Our philosophy is to minimize your risk exposure by coordinating a strategy with defense counsel throughout the life of the claim: from filing of the C-3 or EC-84 to final resolution.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"CONTENT MODULE 2\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#2e5591\" background_color_gradient_end=\"#211865\" custom_padding=\"50px||50px||true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"50px||50px||true|false\" background_color_tablet=\"#2e5591\" background_last_edited=\"on|phone\" background_enable_color_tablet=\"on\" use_background_color_gradient_tablet=\"off\" background_color_gradient_start_tablet=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_5,2_5\" make_equal=\"on\" admin_label=\"Module 2\" _builder_version=\"4.3.2\" width=\"90%\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" module_class=\"fl-vertical-center\" _builder_version=\"4.3.2\" custom_padding=\"|50px|||false|false\" custom_padding_tablet=\"|0px|35px|0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_direction=\"right\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Heading (H2)\" _builder_version=\"4.3.2\" text_font=\"Playfair Display||||||||\" text_text_color=\"#ffffff\" text_font_size=\"25px\" header_font=\"||||||||\" header_2_font=\"|600|||||||\" header_2_text_align=\"left\" header_2_text_color=\"#ffffff\" header_2_font_size=\"38px\" header_3_font=\"|600|||||||\" header_4_font=\"|600|||||||\" header_5_font=\"|600|||||||\" header_6_font=\"|600|||||||\" width_last_edited=\"off|phone\" max_width_last_edited=\"off|phone\" custom_margin=\"||0px||false|false\" custom_padding=\"||15px||false|false\" custom_padding_tablet=\"||||false|false\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"off|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|phone\" header_text_align_last_edited=\"off|phone\" header_font_size_last_edited=\"off|tablet\" header_2_text_align_tablet=\"center\" header_2_text_align_phone=\"\" header_2_text_align_last_edited=\"on|desktop\" header_2_font_size_tablet=\"35px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\" header_2_2_font_size_phone=\"32px\" header_3_2_font_size_phone=\"32px\" header_4_2_font_size_phone=\"32px\" header_5_2_font_size_phone=\"32px\" header_6_2_font_size_phone=\"32px\" header_2_2_font_size_tablet=\"35px\" header_3_2_font_size_tablet=\"35px\" header_4_2_font_size_tablet=\"35px\" header_5_2_font_size_tablet=\"35px\" header_6_2_font_size_tablet=\"35px\" header_2_2_font_size_last_edited=\"on|phone\" header_3_2_font_size_last_edited=\"on|phone\" header_4_2_font_size_last_edited=\"on|phone\" header_5_2_font_size_last_edited=\"on|phone\" header_6_2_font_size_last_edited=\"on|phone\"]Applying the 5 Cs Of','our belief is that employers, TPAs and carriers need claim-based representation, not hearing-based representation. Our philosophy is to minimize your risk exposure by coordinating a strategy with defense counsel throughout the life of the claim: from filing of the C-3 or EC-84 to final resolution.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"CONTENT MODULE 2\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#2e5591\" background_color_gradient_end=\"#211865\" custom_padding=\"50px||50px||true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"50px||50px||true|false\" background_color_tablet=\"#2e5591\" background_last_edited=\"on|phone\" background_enable_color_tablet=\"on\" use_background_color_gradient_tablet=\"off\" background_color_gradient_start_tablet=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_5,2_5\" make_equal=\"on\" admin_label=\"Module 2\" _builder_version=\"4.3.2\" width=\"90%\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" module_class=\"fl-vertical-center\" _builder_version=\"4.3.2\" custom_padding=\"|50px|||false|false\" custom_padding_tablet=\"|0px|35px|0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_direction=\"right\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Heading (H2)\" _builder_version=\"4.3.2\" text_font=\"Playfair Display||||||||\" text_text_color=\"#ffffff\" text_font_size=\"25px\" header_font=\"||||||||\" header_2_font=\"|600|||||||\" header_2_text_align=\"left\" header_2_text_color=\"#ffffff\" header_2_font_size=\"38px\" header_3_font=\"|600|||||||\" header_4_font=\"|600|||||||\" header_5_font=\"|600|||||||\" header_6_font=\"|600|||||||\" width_last_edited=\"off|phone\" max_width_last_edited=\"off|phone\" custom_margin=\"||0px||false|false\" custom_padding=\"||15px||false|false\" custom_padding_tablet=\"||||false|false\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"off|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|phone\" header_text_align_last_edited=\"off|phone\" header_font_size_last_edited=\"off|tablet\" header_2_text_align_tablet=\"center\" header_2_text_align_phone=\"\" header_2_text_align_last_edited=\"on|desktop\" header_2_font_size_tablet=\"35px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\" header_2_2_font_size_phone=\"32px\" header_3_2_font_size_phone=\"32px\" header_4_2_font_size_phone=\"32px\" header_5_2_font_size_phone=\"32px\" header_6_2_font_size_phone=\"32px\" header_2_2_font_size_tablet=\"35px\" header_3_2_font_size_tablet=\"35px\" header_4_2_font_size_tablet=\"35px\" header_5_2_font_size_tablet=\"35px\" header_6_2_font_size_tablet=\"35px\" header_2_2_font_size_last_edited=\"on|phone\" header_3_2_font_size_last_edited=\"on|phone\" header_4_2_font_size_last_edited=\"on|phone\" header_5_2_font_size_last_edited=\"on|phone\" header_6_2_font_size_last_edited=\"on|phone\"]<p style=\"padding-bottom: 10px !important;color: #ffffff\">Applying the 5 Cs Of',0,'2022-04-04 11:58:00','2022-04-04 11:58:00'),(103,6,46486,'workers’ compensation','However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy','However, finding a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy','However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy','Get M.A.D.[/et_pb_text][et_pb_divider color=\"#ffffff\" divider_weight=\"3px\" disabled_on=\"off|off|off\" _builder_version=\"4.3.2\" width=\"175px\" module_alignment=\"left\" min_height=\"3px\" height=\"3px\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_text admin_label=\"Content-1\" _builder_version=\"4.3.2\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.55em\" custom_padding=\"20px||15px||false|false\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]It is not that difficult to find a workers’ compensation defense firm in New York. However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy. Most firms will simply ask you to submit information and then update you as the process goes on.','However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy.',0,'2022-04-04 11:58:00','2022-04-04 11:58:00'),(104,6,46512,'workers’ compensation','However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy','However, finding a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy','However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy','Get M.A.D.[/et_pb_text][et_pb_divider color=\"#ffffff\" divider_weight=\"3px\" disabled_on=\"off|off|off\" _builder_version=\"4.3.2\" width=\"175px\" module_alignment=\"left\" min_height=\"3px\" height=\"3px\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_text admin_label=\"Content-1\" _builder_version=\"4.3.2\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.55em\" custom_padding=\"20px||15px||false|false\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]It is not that difficult to find a workers’ compensation defense firm in New York. However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy. Most firms will simply ask you to submit information and then update you as the process goes on.','However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy.',0,'2022-04-04 11:58:00','2022-04-04 11:58:00'),(105,6,46555,'workers’ compensation','However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy','However, finding a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy','However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy','Get M.A.D.[/et_pb_text][et_pb_divider color=\"#ffffff\" divider_weight=\"3px\" disabled_on=\"off|off|off\" _builder_version=\"4.3.2\" width=\"175px\" module_alignment=\"left\" min_height=\"3px\" height=\"3px\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_text admin_label=\"Content-1\" _builder_version=\"4.3.2\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.55em\" custom_padding=\"20px||15px||false|false\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]It is not that difficult to find a workers’ compensation defense firm in New York. However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy. Most firms will simply ask you to submit information and then update you as the process goes on.','However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy.',0,'2022-04-04 11:58:00','2022-04-04 11:58:00'),(106,6,48276,'compensation defense','However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy','However, finding a workers’ <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/amherst-workers-compensation-defense-law-office/\">compensation defense</a> firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy','However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy','Get M.A.D.[/et_pb_text][et_pb_divider color=\"#ffffff\" divider_weight=\"3px\" disabled_on=\"off|off|off\" _builder_version=\"4.3.2\" width=\"175px\" module_alignment=\"left\" min_height=\"3px\" height=\"3px\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_text admin_label=\"Content-1\" _builder_version=\"4.3.2\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.55em\" custom_padding=\"20px||15px||false|false\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]It is not that difficult to find a workers’ compensation defense firm in New York. However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy. Most firms will simply ask you to submit information and then update you as the process goes on.','However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy.',0,'2022-04-04 11:58:00','2022-04-04 11:58:00'),(107,6,46342,'gives each claim','However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy','However, finding a workers’ compensation defense firm that is truly committed to representing your organization and <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">gives each claim</a> the time and attention it deserves is not so easy','However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy','Get M.A.D.[/et_pb_text][et_pb_divider color=\"#ffffff\" divider_weight=\"3px\" disabled_on=\"off|off|off\" _builder_version=\"4.3.2\" width=\"175px\" module_alignment=\"left\" min_height=\"3px\" height=\"3px\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_text admin_label=\"Content-1\" _builder_version=\"4.3.2\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.55em\" custom_padding=\"20px||15px||false|false\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]It is not that difficult to find a workers’ compensation defense firm in New York. However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy. Most firms will simply ask you to submit information and then update you as the process goes on.','However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy.',0,'2022-04-04 11:58:00','2022-04-04 11:58:00'),(108,46332,46367,'causally related','causally related CTS by','<a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/\">causally related</a> CTS by','causally related CTS by','one case, the treating physician determined  causally related CTS by  attributing the claimant’s condition ','In  one case, the treating physician determined  causally related CTS by',0,'2022-04-04 11:58:01','2022-04-04 11:58:01'),(110,46173,46421,'workers’ compensation','Upon moving back to western New York, Susan became involved in the workers’ compensation field and has been working in this area of practice about 10 years','Upon moving back to western New York, Susan became involved in the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation</a> field and has been working in this area of practice about 10 years','Upon moving back to western New York, Susan became involved in the workers’ compensation field and has been working in this area of practice about 10 years','She worked in corporate law while living in Virginia for 3.5 years. Upon moving back to western New York, Susan became involved in the workers’ compensation field and has been working in this area of practice about 10 years.','Upon moving back to western New York, Susan became involved in the workers’ compensation field and has been working in this area of practice about 10 years.',0,'2022-04-04 11:58:02','2022-04-04 11:58:02'),(111,46173,46486,'workers’ compensation','Upon moving back to western New York, Susan became involved in the workers’ compensation field and has been working in this area of practice about 10 years','Upon moving back to western New York, Susan became involved in the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> field and has been working in this area of practice about 10 years','Upon moving back to western New York, Susan became involved in the workers’ compensation field and has been working in this area of practice about 10 years','She worked in corporate law while living in Virginia for 3.5 years. Upon moving back to western New York, Susan became involved in the workers’ compensation field and has been working in this area of practice about 10 years.','Upon moving back to western New York, Susan became involved in the workers’ compensation field and has been working in this area of practice about 10 years.',0,'2022-04-04 11:58:02','2022-04-04 11:58:02'),(112,46173,46512,'workers’ compensation','Upon moving back to western New York, Susan became involved in the workers’ compensation field and has been working in this area of practice about 10 years','Upon moving back to western New York, Susan became involved in the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> field and has been working in this area of practice about 10 years','Upon moving back to western New York, Susan became involved in the workers’ compensation field and has been working in this area of practice about 10 years','She worked in corporate law while living in Virginia for 3.5 years. Upon moving back to western New York, Susan became involved in the workers’ compensation field and has been working in this area of practice about 10 years.','Upon moving back to western New York, Susan became involved in the workers’ compensation field and has been working in this area of practice about 10 years.',0,'2022-04-04 11:58:02','2022-04-04 11:58:02'),(113,46173,46555,'workers’ compensation','Upon moving back to western New York, Susan became involved in the workers’ compensation field and has been working in this area of practice about 10 years','Upon moving back to western New York, Susan became involved in the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> field and has been working in this area of practice about 10 years','Upon moving back to western New York, Susan became involved in the workers’ compensation field and has been working in this area of practice about 10 years','She worked in corporate law while living in Virginia for 3.5 years. Upon moving back to western New York, Susan became involved in the workers’ compensation field and has been working in this area of practice about 10 years.','Upon moving back to western New York, Susan became involved in the workers’ compensation field and has been working in this area of practice about 10 years.',0,'2022-04-04 11:58:02','2022-04-04 11:58:02'),(114,46329,46422,'claimants have either been living with it without treatment','That’s often impossible because most claimants have either been living with it without treatment, or they’ve treated with their primary care doctor and don’t disclose it because it wasn’t the result of an “injury”','That’s often impossible because most <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">claimants have either been living with it without treatment</a>, or they’ve treated with their primary care doctor and don’t disclose it because it wasn’t the result of an “injury”','That’s often impossible because most claimants have either been living with it without treatment, or they’ve treated with their primary care doctor and don’t disclose it because it wasn’t the result of an “injury”','As we know, it’s virtually impossible to prove apportionment to pre-existing arthritis/degenerative conditions without proof that the prior condition was “disabling in a compensation sense”. That’s often impossible because most claimants have either been living with it without treatment, or they’ve treated with their primary care doctor and don’t disclose it because it wasn’t the result of an “injury”. And unless we know the treatment records are out there, you’re stuck.','That’s often impossible because most claimants have either been living with it without treatment, or they’ve treated with their primary care doctor and don’t disclose it because it wasn’t the result of an “injury”.',0,'2022-04-04 11:58:03','2022-04-04 11:58:03'),(115,46368,46371,'claimant performed the same duties when working','The claimant performed the same duties when working for Ms','The <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant performed the same duties when working</a> for Ms','The claimant performed the same duties when working for Ms','The claimant testified that she originally took care of the elderly mother through her work with another agency, but then Clare Hayduscko approached the claimant and offered to pay her privately, which is what had been happening proceeding the date of accident.  The claimant performed the same duties when working for Ms. Hayduscko as she did when she worked for the agency. ','ther or not a claimant qualifies as an independent contractor or an employee.  The Board Panel recently reviewed this issue in the case of <u>Matter of Clare Hayduscko</u>, 219 N.Y. Wrk. Comp. 40708094 (2019).  In that case, the claimant injured her right ankle when she slipped on a wet floor while working as a home health aid.  The claimant indicated that her employer was Clare Hayduscko, who was not insured on the date of accident.  Clare Hayduscko asserted that the claimant was not an employee, but rather an independent contractor.  The claimant was working helping to take care of Clare Hayduscko’s elderly mother 7 hours a day, 5 days a week.  The claimant testified that she originally took care of the elderly mother through her work with another agency, but then Clare Hayduscko approached the claimant and offered to pay her privately, which is what had been happening proceeding the date of accident.  The claimant performed the same duties when working for Ms.',0,'2022-04-04 13:24:37','2022-04-04 13:24:37'),(116,46368,46371,'claimant was working','The claimant was working helping to take care of Clare Hayduscko’s elderly mother 7 hours a day, 5 days a week','The <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant was working</a> helping to take care of Clare Hayduscko’s elderly mother 7 hours a day, 5 days a week','The claimant was working helping to take care of Clare Hayduscko’s elderly mother 7 hours a day, 5 days a week','Clare Hayduscko asserted that the claimant was not an employee, but rather an independent contractor.  The claimant was working helping to take care of Clare Hayduscko’s elderly mother 7 hours a day, 5 days a week.  The claimant testified that she originally took care of the elderly mother through her work with another agency, but then Clare Hayduscko approached the claimant and offered to pay her privately, which is what had been happening proceeding the date of accident. ','ther or not a claimant qualifies as an independent contractor or an employee.  The Board Panel recently reviewed this issue in the case of <u>Matter of Clare Hayduscko</u>, 219 N.Y. Wrk. Comp. 40708094 (2019).  In that case, the claimant injured her right ankle when she slipped on a wet floor while working as a home health aid.  The claimant indicated that her employer was Clare Hayduscko, who was not insured on the date of accident.  Clare Hayduscko asserted that the claimant was not an employee, but rather an independent contractor.  The claimant was working helping to take care of Clare Hayduscko’s elderly mother 7 hours a day, 5 days a week.',0,'2022-04-04 13:24:37','2022-04-04 13:24:37'),(117,46368,46561,'claimant testified','The claimant testified that she originally took care of the elderly mother through her work with another agency, but then Clare Hayduscko approached the claimant and offered to pay her privately, which is what had been happening proceeding the date of accident','The <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">claimant testified</a> that she originally took care of the elderly mother through her work with another agency, but then Clare Hayduscko approached the claimant and offered to pay her privately, which is what had been happening proceeding the date of accident','The claimant testified that she originally took care of the elderly mother through her work with another agency, but then Clare Hayduscko approached the claimant and offered to pay her privately, which is what had been happening proceeding the date of accident','The claimant was working helping to take care of Clare Hayduscko’s elderly mother 7 hours a day, 5 days a week.  The claimant testified that she originally took care of the elderly mother through her work with another agency, but then Clare Hayduscko approached the claimant and offered to pay her privately, which is what had been happening proceeding the date of accident.  The claimant performed the same duties when working for Ms.','ther or not a claimant qualifies as an independent contractor or an employee.  The Board Panel recently reviewed this issue in the case of <u>Matter of Clare Hayduscko</u>, 219 N.Y. Wrk. Comp. 40708094 (2019).  In that case, the claimant injured her right ankle when she slipped on a wet floor while working as a home health aid.  The claimant indicated that her employer was Clare Hayduscko, who was not insured on the date of accident.  Clare Hayduscko asserted that the claimant was not an employee, but rather an independent contractor.  The claimant was working helping to take care of Clare Hayduscko’s elderly mother 7 hours a day, 5 days a week.  The claimant testified that she originally took care of the elderly mother through her work with another agency, but then Clare Hayduscko approached the claimant and offered to pay her privately, which is what had been happening proceeding the date of accident.',0,'2022-04-04 13:24:37','2022-04-04 13:24:37'),(118,46368,46422,'board panel found that this qualified the claimant','The board panel found that this qualified the claimant as a domestic worker','The <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">board panel found that this qualified the claimant</a> as a domestic worker','The board panel found that this qualified the claimant as a domestic worker','She cooked, cleaned, did light laundry and helped with the elderly mother.  The board panel found that this qualified the claimant as a domestic worker.  The board panel found that the claimant was an employee of Clare Hayduscko and not an independent contractor. ','ther or not a claimant qualifies as an independent contractor or an employee.  The Board Panel recently reviewed this issue in the case of <u>Matter of Clare Hayduscko</u>, 219 N.Y. Wrk. Comp. 40708094 (2019).  In that case, the claimant injured her right ankle when she slipped on a wet floor while working as a home health aid.  The claimant indicated that her employer was Clare Hayduscko, who was not insured on the date of accident.  Clare Hayduscko asserted that the claimant was not an employee, but rather an independent contractor.  The claimant was working helping to take care of Clare Hayduscko’s elderly mother 7 hours a day, 5 days a week.  The claimant testified that she originally took care of the elderly mother through her work with another agency, but then Clare Hayduscko approached the claimant and offered to pay her privately, which is what had been happening proceeding the date of accident.  The claimant performed the same duties when working for Ms. Hayduscko as she did when she worked for the agency.  She cooked, cleaned, did light laundry and helped with the elderly mother.  The board panel found that this qualified the claimant as a domestic worker.  The board panel found that the claimant was an employee of Clare Hayduscko and not an independent contractor.  Clare Hayduscko was assessed a fine for not maintaining workers’ compensation insurance.  The board panel noted that home health aids are considered to be domestic worker',0,'2022-04-04 13:24:37','2022-04-04 13:24:37'),(119,46368,46549,'found that this qualified the claimant','The board panel found that this qualified the claimant as a domestic worker','The board panel <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">found that this qualified the claimant</a> as a domestic worker','The board panel found that this qualified the claimant as a domestic worker','She cooked, cleaned, did light laundry and helped with the elderly mother.  The board panel found that this qualified the claimant as a domestic worker.  The board panel found that the claimant was an employee of Clare Hayduscko and not an independent contractor. ','ther or not a claimant qualifies as an independent contractor or an employee.  The Board Panel recently reviewed this issue in the case of <u>Matter of Clare Hayduscko</u>, 219 N.Y. Wrk. Comp. 40708094 (2019).  In that case, the claimant injured her right ankle when she slipped on a wet floor while working as a home health aid.  The claimant indicated that her employer was Clare Hayduscko, who was not insured on the date of accident.  Clare Hayduscko asserted that the claimant was not an employee, but rather an independent contractor.  The claimant was working helping to take care of Clare Hayduscko’s elderly mother 7 hours a day, 5 days a week.  The claimant testified that she originally took care of the elderly mother through her work with another agency, but then Clare Hayduscko approached the claimant and offered to pay her privately, which is what had been happening proceeding the date of accident.  The claimant performed the same duties when working for Ms. Hayduscko as she did when she worked for the agency.  She cooked, cleaned, did light laundry and helped with the elderly mother.  The board panel found that this qualified the claimant as a domestic worker.  The board panel found that the claimant was an employee of Clare Hayduscko and not an independent contractor.  Clare Hayduscko was assessed a fine for not maintaining workers’ compensation insurance.  The board panel noted that home health aids are considered to be domestic worker',0,'2022-04-04 13:24:37','2022-04-04 13:24:37'),(120,46368,46421,'workers’ compensation','Clare Hayduscko was assessed a fine for not maintaining workers’ compensation insurance','Clare Hayduscko was assessed a fine for not maintaining <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation</a> insurance','Clare Hayduscko was assessed a fine for not maintaining workers’ compensation insurance','The board panel found that the claimant was an employee of Clare Hayduscko and not an independent contractor.  Clare Hayduscko was assessed a fine for not maintaining workers’ compensation insurance.  The board panel noted that home health aids are considered to be domestic workers.','Clare Hayduscko</u>, 219 N.Y. Wrk. Comp. 40708094 (2019).  In that case, the claimant injured her right ankle when she slipped on a wet floor while working as a home health aid.  The claimant indicated that her employer was Clare Hayduscko, who was not insured on the date of accident.  Clare Hayduscko asserted that the claimant was not an employee, but rather an independent contractor.  The claimant was working helping to take care of Clare Hayduscko’s elderly mother 7 hours a day, 5 days a week.  The claimant testified that she originally took care of the elderly mother through her work with another agency, but then Clare Hayduscko approached the claimant and offered to pay her privately, which is what had been happening proceeding the date of accident.  The claimant performed the same duties when working for Ms. Hayduscko as she did when she worked for the agency.  She cooked, cleaned, did light laundry and helped with the elderly mother.  The board panel found that this qualified the claimant as a domestic worker.  The board panel found that the claimant was an employee of Clare Hayduscko and not an independent contractor.  Clare Hayduscko was assessed a fine for not maintaining workers’ compensation insurance.',0,'2022-04-04 13:24:37','2022-04-04 13:24:37'),(121,46368,46486,'workers’ compensation','Clare Hayduscko was assessed a fine for not maintaining workers’ compensation insurance','Clare Hayduscko was assessed a fine for not maintaining <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> insurance','Clare Hayduscko was assessed a fine for not maintaining workers’ compensation insurance','The board panel found that the claimant was an employee of Clare Hayduscko and not an independent contractor.  Clare Hayduscko was assessed a fine for not maintaining workers’ compensation insurance.  The board panel noted that home health aids are considered to be domestic workers.','Clare Hayduscko</u>, 219 N.Y. Wrk. Comp. 40708094 (2019).  In that case, the claimant injured her right ankle when she slipped on a wet floor while working as a home health aid.  The claimant indicated that her employer was Clare Hayduscko, who was not insured on the date of accident.  Clare Hayduscko asserted that the claimant was not an employee, but rather an independent contractor.  The claimant was working helping to take care of Clare Hayduscko’s elderly mother 7 hours a day, 5 days a week.  The claimant testified that she originally took care of the elderly mother through her work with another agency, but then Clare Hayduscko approached the claimant and offered to pay her privately, which is what had been happening proceeding the date of accident.  The claimant performed the same duties when working for Ms. Hayduscko as she did when she worked for the agency.  She cooked, cleaned, did light laundry and helped with the elderly mother.  The board panel found that this qualified the claimant as a domestic worker.  The board panel found that the claimant was an employee of Clare Hayduscko and not an independent contractor.  Clare Hayduscko was assessed a fine for not maintaining workers’ compensation insurance.',0,'2022-04-04 13:24:37','2022-04-04 13:24:37'),(122,46368,46512,'workers’ compensation','Clare Hayduscko was assessed a fine for not maintaining workers’ compensation insurance','Clare Hayduscko was assessed a fine for not maintaining <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> insurance','Clare Hayduscko was assessed a fine for not maintaining workers’ compensation insurance','The board panel found that the claimant was an employee of Clare Hayduscko and not an independent contractor.  Clare Hayduscko was assessed a fine for not maintaining workers’ compensation insurance.  The board panel noted that home health aids are considered to be domestic workers.','Clare Hayduscko</u>, 219 N.Y. Wrk. Comp. 40708094 (2019).  In that case, the claimant injured her right ankle when she slipped on a wet floor while working as a home health aid.  The claimant indicated that her employer was Clare Hayduscko, who was not insured on the date of accident.  Clare Hayduscko asserted that the claimant was not an employee, but rather an independent contractor.  The claimant was working helping to take care of Clare Hayduscko’s elderly mother 7 hours a day, 5 days a week.  The claimant testified that she originally took care of the elderly mother through her work with another agency, but then Clare Hayduscko approached the claimant and offered to pay her privately, which is what had been happening proceeding the date of accident.  The claimant performed the same duties when working for Ms. Hayduscko as she did when she worked for the agency.  She cooked, cleaned, did light laundry and helped with the elderly mother.  The board panel found that this qualified the claimant as a domestic worker.  The board panel found that the claimant was an employee of Clare Hayduscko and not an independent contractor.  Clare Hayduscko was assessed a fine for not maintaining workers’ compensation insurance.',0,'2022-04-04 13:24:37','2022-04-04 13:24:37'),(123,46368,46555,'workers’ compensation','Clare Hayduscko was assessed a fine for not maintaining workers’ compensation insurance','Clare Hayduscko was assessed a fine for not maintaining <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> insurance','Clare Hayduscko was assessed a fine for not maintaining workers’ compensation insurance','The board panel found that the claimant was an employee of Clare Hayduscko and not an independent contractor.  Clare Hayduscko was assessed a fine for not maintaining workers’ compensation insurance.  The board panel noted that home health aids are considered to be domestic workers.','Clare Hayduscko</u>, 219 N.Y. Wrk. Comp. 40708094 (2019).  In that case, the claimant injured her right ankle when she slipped on a wet floor while working as a home health aid.  The claimant indicated that her employer was Clare Hayduscko, who was not insured on the date of accident.  Clare Hayduscko asserted that the claimant was not an employee, but rather an independent contractor.  The claimant was working helping to take care of Clare Hayduscko’s elderly mother 7 hours a day, 5 days a week.  The claimant testified that she originally took care of the elderly mother through her work with another agency, but then Clare Hayduscko approached the claimant and offered to pay her privately, which is what had been happening proceeding the date of accident.  The claimant performed the same duties when working for Ms. Hayduscko as she did when she worked for the agency.  She cooked, cleaned, did light laundry and helped with the elderly mother.  The board panel found that this qualified the claimant as a domestic worker.  The board panel found that the claimant was an employee of Clare Hayduscko and not an independent contractor.  Clare Hayduscko was assessed a fine for not maintaining workers’ compensation insurance.',0,'2022-04-04 13:24:37','2022-04-04 13:24:37'),(124,46442,46421,'workers’ compensation','Pursuant to 12 NYCRR § 325-8.2(a), the employer must notify its employees in writing “of the preferred provider organization arrangement for the treatment of all workers’ compensation injuries and illnesses','Pursuant to 12 NYCRR § 325-8.2(a), the employer must notify its employees in writing “of the preferred provider organization arrangement for the treatment of all <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation</a> injuries and illnesses','Pursuant to 12 NYCRR § 325-8.2(a), the employer must notify its employees in writing “of the preferred provider organization arrangement for the treatment of all workers’ compensation injuries and illnesses','Pursuant to 12 NYCRR § 325-8.2(a), the employer must notify its employees in writing “of the preferred provider organization arrangement for the treatment of all workers’ compensation injuries and illnesses. Such written notice shall also advise potential claimants that they may obtain more detailed informational materials regarding the preferred provider organization from the employer.”  ','Pursuant to 12 NYCRR § 325-8.2(a), the employer must notify its employees in writing “of the preferred provider organization arrangement for the treatment of all workers’ compensation injuries and illnesses.',0,'2022-04-04 13:24:40','2022-04-04 13:24:40'),(125,46442,46486,'workers’ compensation','Pursuant to 12 NYCRR § 325-8.2(a), the employer must notify its employees in writing “of the preferred provider organization arrangement for the treatment of all workers’ compensation injuries and illnesses','Pursuant to 12 NYCRR § 325-8.2(a), the employer must notify its employees in writing “of the preferred provider organization arrangement for the treatment of all <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> injuries and illnesses','Pursuant to 12 NYCRR § 325-8.2(a), the employer must notify its employees in writing “of the preferred provider organization arrangement for the treatment of all workers’ compensation injuries and illnesses','Pursuant to 12 NYCRR § 325-8.2(a), the employer must notify its employees in writing “of the preferred provider organization arrangement for the treatment of all workers’ compensation injuries and illnesses. Such written notice shall also advise potential claimants that they may obtain more detailed informational materials regarding the preferred provider organization from the employer.”  ','Pursuant to 12 NYCRR § 325-8.2(a), the employer must notify its employees in writing “of the preferred provider organization arrangement for the treatment of all workers’ compensation injuries and illnesses.',0,'2022-04-04 13:24:40','2022-04-04 13:24:40'),(126,46442,46512,'workers’ compensation','Pursuant to 12 NYCRR § 325-8.2(a), the employer must notify its employees in writing “of the preferred provider organization arrangement for the treatment of all workers’ compensation injuries and illnesses','Pursuant to 12 NYCRR § 325-8.2(a), the employer must notify its employees in writing “of the preferred provider organization arrangement for the treatment of all <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> injuries and illnesses','Pursuant to 12 NYCRR § 325-8.2(a), the employer must notify its employees in writing “of the preferred provider organization arrangement for the treatment of all workers’ compensation injuries and illnesses','Pursuant to 12 NYCRR § 325-8.2(a), the employer must notify its employees in writing “of the preferred provider organization arrangement for the treatment of all workers’ compensation injuries and illnesses. Such written notice shall also advise potential claimants that they may obtain more detailed informational materials regarding the preferred provider organization from the employer.”  ','Pursuant to 12 NYCRR § 325-8.2(a), the employer must notify its employees in writing “of the preferred provider organization arrangement for the treatment of all workers’ compensation injuries and illnesses.',0,'2022-04-04 13:24:40','2022-04-04 13:24:40'),(127,46131,46486,'workers’ compensation','Before joining LOMAD, James trained by both prosecuting and defending workers’ compensation cases and garnered a unique and valuable perspective sometimes having litigated the very same issue from the opposite side of the table – sometimes on the very same day','Before joining LOMAD, James trained by both prosecuting and defending <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> cases and garnered a unique and valuable perspective sometimes having litigated the very same issue from the opposite side of the table – sometimes on the very same day','Before joining LOMAD, James trained by both prosecuting and defending workers’ compensation cases and garnered a unique and valuable perspective sometimes having litigated the very same issue from the opposite side of the table – sometimes on the very same day','Before joining LOMAD, James trained by both prosecuting and defending workers’ compensation cases and garnered a unique and valuable perspective sometimes having litigated the very same issue from the opposite side of the table – sometimes on the very same day. From this experience, James knows the subtleties of fact, the nuances of law, and often the opaque motivations that drive the parties through litigation; he uses that experience to provide our clients with the most effective and through defenses available, often predicting an opponent’s claim strategy and crafting a proactive strategy for a successful defense.','Before joining LOMAD, James trained by both prosecuting and defending workers’ compensation cases and garnered a unique and valuable perspective sometimes having litigated the very same issue from the opposite side of the table – sometimes on the very same day.',0,'2022-04-04 13:24:42','2022-04-04 13:24:42'),(128,46131,46555,'workers’ compensation','Before joining LOMAD, James trained by both prosecuting and defending workers’ compensation cases and garnered a unique and valuable perspective sometimes having litigated the very same issue from the opposite side of the table – sometimes on the very same day','Before joining LOMAD, James trained by both prosecuting and defending <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> cases and garnered a unique and valuable perspective sometimes having litigated the very same issue from the opposite side of the table – sometimes on the very same day','Before joining LOMAD, James trained by both prosecuting and defending workers’ compensation cases and garnered a unique and valuable perspective sometimes having litigated the very same issue from the opposite side of the table – sometimes on the very same day','Before joining LOMAD, James trained by both prosecuting and defending workers’ compensation cases and garnered a unique and valuable perspective sometimes having litigated the very same issue from the opposite side of the table – sometimes on the very same day. From this experience, James knows the subtleties of fact, the nuances of law, and often the opaque motivations that drive the parties through litigation; he uses that experience to provide our clients with the most effective and through defenses available, often predicting an opponent’s claim strategy and crafting a proactive strategy for a successful defense.','Before joining LOMAD, James trained by both prosecuting and defending workers’ compensation cases and garnered a unique and valuable perspective sometimes having litigated the very same issue from the opposite side of the table – sometimes on the very same day.',0,'2022-04-04 13:24:42','2022-04-04 13:24:42'),(129,46131,46374,'– sometimes on the very same day','Before joining LOMAD, James trained by both prosecuting and defending workers’ compensation cases and garnered a unique and valuable perspective sometimes having litigated the very same issue from the opposite side of the table – sometimes on the very same day','Before joining LOMAD, James trained by both prosecuting and defending workers’ compensation cases and garnered a unique and valuable perspective sometimes having litigated the very same issue from the opposite side of the table <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">– sometimes on the very same day</a>','Before joining LOMAD, James trained by both prosecuting and defending workers’ compensation cases and garnered a unique and valuable perspective sometimes having litigated the very same issue from the opposite side of the table – sometimes on the very same day','Before joining LOMAD, James trained by both prosecuting and defending workers’ compensation cases and garnered a unique and valuable perspective sometimes having litigated the very same issue from the opposite side of the table – sometimes on the very same day. From this experience, James knows the subtleties of fact, the nuances of law, and often the opaque motivations that drive the parties through litigation; he uses that experience to provide our clients with the most effective and through defenses available, often predicting an opponent’s claim strategy and crafting a proactive strategy for a successful defense.','Before joining LOMAD, James trained by both prosecuting and defending workers’ compensation cases and garnered a unique and valuable perspective sometimes having litigated the very same issue from the opposite side of the table – sometimes on the very same day. From this experience, James knows the subtleties of fact, the nuances of law, and often the opaque motivations that drive the parties through litigation; he uses that experience to provide our clients with the most effective and through defenses available, often predicting an opponent’s claim strategy and crafting a proactive strategy for a successful defense.',0,'2022-04-04 13:24:42','2022-04-04 13:24:42'),(130,46131,46541,'insurance carriers,','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication','James uses his experience on a day-to-day basis to help <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\">insurance carriers,</a> self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication.','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication.',0,'2022-04-04 13:24:42','2022-04-04 13:24:42'),(132,46131,46387,'workers compensation','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\">workers compensation</a> claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication.','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication.',0,'2022-04-04 13:24:42','2022-04-04 13:24:42'),(133,46131,48276,'workers compensation claims where the law','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/amherst-workers-compensation-defense-law-office/\">workers compensation claims where the law</a> is very often no ally, and where success or failure rests on preparation, research and good communication','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication.','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication.',0,'2022-04-04 13:24:42','2022-04-04 13:24:42'),(134,46131,46421,'compensation claims','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">compensation claims</a> where the law is very often no ally, and where success or failure rests on preparation, research and good communication','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication.','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication.',0,'2022-04-04 13:24:42','2022-04-04 13:24:42'),(135,46131,46369,'law deserves thorough research and every fact','To James, every case is interesting, every question of law deserves thorough research and every fact demands a proper investigation','To James, every case is interesting, every question of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/02/no-error-of-law-or-fact-in-an-application-for-full-board-review/\">law deserves thorough research and every fact</a> demands a proper investigation','To James, every case is interesting, every question of law deserves thorough research and every fact demands a proper investigation','To James, every case is interesting, every question of law deserves thorough research and every fact demands a proper investigation.','To James, every case is interesting, every question of law deserves thorough research and every fact demands a proper investigation.',0,'2022-04-04 13:24:42','2022-04-04 13:24:42'),(136,46350,46371,'claimant was working','In overturning the Board’s decision, the Third Department seemingly was not all that concerned that claimant was working from home, on his lunch break, and moving furniture into his home (i.e., office furniture that was not paid for, nor approved, by claimant’s employer)','In overturning the Board’s decision, the Third Department seemingly was not all that concerned that <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant was working</a> from home, on his lunch break, and moving furniture into his home (i.e., office furniture that was not paid for, nor approved, by claimant’s employer)','In overturning the Board’s decision, the Third Department seemingly was not all that concerned that claimant was working from home, on his lunch break, and moving furniture into his home (i.e., office furniture that was not paid for, nor approved, by claimant’s employer)','Subsequently, the Third Department reversed and remitted the matter to determine whether the claimant injured himself in the scope and course of his employment. In overturning the Board’s decision, the Third Department seemingly was not all that concerned that claimant was working from home, on his lunch break, and moving furniture into his home (i.e., office furniture that was not paid for, nor approved, by claimant’s employer). Instead, the Court relied on longstanding precedent that injuries sustained during brief breaks at work are generally still compensable, unless they were purely personal (i.e., not sufficiently work related).','ine whether the claimant injured himself in the scope and course of his employment. In overturning the Board’s decision, the Third Department seemingly was not all that concerned that claimant was working from home, on his lunch break, and moving furniture into his home (i.e., office furniture that was not paid for, nor approved, by claimant’s employer',0,'2022-04-04 13:24:44','2022-04-04 13:24:44'),(137,46350,46344,'claimant’s injuries','That is, the Board Panel only would find claimant’s injuries compensable if they had occurred both during working hours and while performing work activities','That is, the Board Panel only would find <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\">claimant’s injuries</a> compensable if they had occurred both during working hours and while performing work activities','That is, the Board Panel only would find claimant’s injuries compensable if they had occurred both during working hours and while performing work activities','In fact, the Court indicated that it believed that the Board Panel ignored these basic principles in favor of a more stringent standard for employees working from home. That is, the Board Panel only would find claimant’s injuries compensable if they had occurred both during working hours and while performing work activities. Significantly, the Court stated that a consistent pattern of working from home makes the employee’s home a place of employment, equivalent to a traditional workspace.','that concerned that claimant was working from home, on his lunch break, and moving furniture into his home (i.e., office furniture that was not paid for, nor approved, by claimant’s employer). Instead, the Court relied on longstanding precedent that injuries sustained during brief breaks at work are generally still compensable, unless they were purely personal (i.e., not sufficiently work related). In fact, the Court indicated that it believed that the Board Panel ignored these basic principles in favor of a more stringent standard for employees working from home. That is, the Board Panel only would find claimant’s injuries compensable if they had occurred both during working hours and while performing work activities.',0,'2022-04-04 13:24:44','2022-04-04 13:24:44'),(138,46350,46511,'required most employers to transition to having their employees','However, the COVID-19 pandemic unexpectedly required most employers to transition to having their employees work remotely, either all or in-part','However, the COVID-19 pandemic <u>unexpectedly</u> <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">required most employers to transition to having their employees</a> work remotely, either all or in-part','However, the COVID-19 pandemic <u>unexpectedly</u> required most employers to transition to having their employees work remotely, either all or in-part','Much of the Third Department’s decision in Capraro hinges on the claimant’s consistent pattern of working from home converting the claimant’s home into the functional equivalent of the employer’s primary place of business. However, the COVID-19 pandemic unexpectedly required most employers to transition to having their employees work remotely, either all or in-part. Employers made this change both to: (a) comply with government directives and recommendations; and (b) ensure their employee’s safety.','However, the COVID-19 pandemic <u>unexpectedly</u> required most employers to transition to having their employees work remotely, either all or in-part. Employers made this change both to: (a) comply with government directives and recommendations; and (b) ensure their employee’s safety. What is more, many employers either did, or hope to, return to the office as soon as it is safe to do so. Therefore, it would be unfair and inaccurate to characterize employees working from home due to the COVID-19 pandemic as engaged in a “consistent pattern of working from home.” Thus, the Board and the Third Depart',0,'2022-04-04 13:24:44','2022-04-04 13:24:44'),(139,46350,46511,'employers in a difficult situation; requiring','The pandemic placed employers in a difficult situation; requiring them to drastically alter their preferred business models to ensure both their employee’s and the community’s safety','The pandemic placed <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">employers in a difficult situation; requiring</a> them to drastically alter their preferred business models to ensure both their employee’s and the community’s safety','The pandemic placed employers in a difficult situation; requiring them to drastically alter their preferred business models to ensure both their employee’s and the community’s safety','Instead, we contend that the Board should apply its decision in Matter of Matrix Absence Management to cases where claimants injure themselves while working from home due to the COVID-19 pandemic.  The pandemic placed employers in a difficult situation; requiring them to drastically alter their preferred business models to ensure both their employee’s and the community’s safety. Applying the Third Department’s standard in Capraro will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions.','the Board should apply its decision in <u>Matter of Matrix Absence Management</u> to cases where claimants injure themselves while working from home due to the COVID-19 pandemic.  The pandemic placed employers in a difficult situation; requiring them to drastically alter their preferred business models to ensure both their employee’s and the community’s safety.',0,'2022-04-04 13:24:44','2022-04-04 13:24:44'),(140,46350,46511,'claims that these very same employers','Applying the Third Department’s standard in Capraro will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions','Applying the Third Department’s standard in <u>Capraro</u> will unnecessarily increase the number of workers’ compensation <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">claims that these very same employers</a> will face, despite their best intentions','Applying the Third Department’s standard in <u>Capraro</u> will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions','The pandemic placed employers in a difficult situation; requiring them to drastically alter their preferred business models to ensure both their employee’s and the community’s safety. Applying the Third Department’s standard in Capraro will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions. Conversely, the Board Panel’s underlying decision in Mater of Matrix Absence Management guarantees that employees can still pursue workers’ compensation claims for injuries suffered at work, but not for injuries suffered while, for example, emptying the dishwasher.','Applying the Third Department’s standard in <u>Capraro</u> will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions.',0,'2022-04-04 13:24:44','2022-04-04 13:24:44'),(141,46350,46421,'workers’ compensation claims','Applying the Third Department’s standard in Capraro will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions','Applying the Third Department’s standard in <u>Capraro</u> will unnecessarily increase the number of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation claims</a> that these very same employers will face, despite their best intentions','Applying the Third Department’s standard in <u>Capraro</u> will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions','The pandemic placed employers in a difficult situation; requiring them to drastically alter their preferred business models to ensure both their employee’s and the community’s safety. Applying the Third Department’s standard in Capraro will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions. Conversely, the Board Panel’s underlying decision in Mater of Matrix Absence Management guarantees that employees can still pursue workers’ compensation claims for injuries suffered at work, but not for injuries suffered while, for example, emptying the dishwasher.','Applying the Third Department’s standard in <u>Capraro</u> will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions.',0,'2022-04-04 13:24:44','2022-04-04 13:24:44'),(142,46350,46421,'workers’ compensation claims','Conversely, the Board Panel’s underlying decision in Mater of Matrix Absence Management guarantees that employees can still pursue workers’ compensation claims for injuries suffered at work, but not for injuries suffered while, for example, emptying the dishwasher','Conversely, the Board Panel’s underlying decision in <u>Mater of Matrix Absence Management</u> guarantees that employees can still pursue <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation claims</a> for injuries suffered at work, but not for injuries suffered while, for example, emptying the dishwasher','Conversely, the Board Panel’s underlying decision in <u>Mater of Matrix Absence Management</u> guarantees that employees can still pursue workers’ compensation claims for injuries suffered at work, but not for injuries suffered while, for example, emptying the dishwasher','Applying the Third Department’s standard in Capraro will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions. Conversely, the Board Panel’s underlying decision in Mater of Matrix Absence Management guarantees that employees can still pursue workers’ compensation claims for injuries suffered at work, but not for injuries suffered while, for example, emptying the dishwasher.','Conversely, the Board Panel’s underlying decision in <u>Mater of Matrix Absence Management</u> guarantees that employees can still pursue workers’ compensation claims for injuries suffered at work, but not for injuries suffered while, for example, emptying the dishwasher.',0,'2022-04-04 13:24:44','2022-04-04 13:24:44'),(143,46350,46486,'workers’ compensation','Applying the Third Department’s standard in Capraro will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions','Applying the Third Department’s standard in <u>Capraro</u> will unnecessarily increase the number of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> claims that these very same employers will face, despite their best intentions','Applying the Third Department’s standard in <u>Capraro</u> will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions','The pandemic placed employers in a difficult situation; requiring them to drastically alter their preferred business models to ensure both their employee’s and the community’s safety. Applying the Third Department’s standard in Capraro will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions. Conversely, the Board Panel’s underlying decision in Mater of Matrix Absence Management guarantees that employees can still pursue workers’ compensation claims for injuries suffered at work, but not for injuries suffered while, for example, emptying the dishwasher.','Applying the Third Department’s standard in <u>Capraro</u> will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions.',0,'2022-04-04 13:24:44','2022-04-04 13:24:44'),(144,46350,46486,'workers’ compensation','Conversely, the Board Panel’s underlying decision in Mater of Matrix Absence Management guarantees that employees can still pursue workers’ compensation claims for injuries suffered at work, but not for injuries suffered while, for example, emptying the dishwasher','Conversely, the Board Panel’s underlying decision in <u>Mater of Matrix Absence Management</u> guarantees that employees can still pursue <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> claims for injuries suffered at work, but not for injuries suffered while, for example, emptying the dishwasher','Conversely, the Board Panel’s underlying decision in <u>Mater of Matrix Absence Management</u> guarantees that employees can still pursue workers’ compensation claims for injuries suffered at work, but not for injuries suffered while, for example, emptying the dishwasher','Applying the Third Department’s standard in Capraro will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions. Conversely, the Board Panel’s underlying decision in Mater of Matrix Absence Management guarantees that employees can still pursue workers’ compensation claims for injuries suffered at work, but not for injuries suffered while, for example, emptying the dishwasher.','Conversely, the Board Panel’s underlying decision in <u>Mater of Matrix Absence Management</u> guarantees that employees can still pursue workers’ compensation claims for injuries suffered at work, but not for injuries suffered while, for example, emptying the dishwasher.',0,'2022-04-04 13:24:44','2022-04-04 13:24:44'),(145,46350,46512,'workers’ compensation','Applying the Third Department’s standard in Capraro will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions','Applying the Third Department’s standard in <u>Capraro</u> will unnecessarily increase the number of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> claims that these very same employers will face, despite their best intentions','Applying the Third Department’s standard in <u>Capraro</u> will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions','The pandemic placed employers in a difficult situation; requiring them to drastically alter their preferred business models to ensure both their employee’s and the community’s safety. Applying the Third Department’s standard in Capraro will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions. Conversely, the Board Panel’s underlying decision in Mater of Matrix Absence Management guarantees that employees can still pursue workers’ compensation claims for injuries suffered at work, but not for injuries suffered while, for example, emptying the dishwasher.','Applying the Third Department’s standard in <u>Capraro</u> will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions.',0,'2022-04-04 13:24:44','2022-04-04 13:24:44'),(146,46350,46555,'workers’ compensation claims that these very same employers','Applying the Third Department’s standard in Capraro will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions','Applying the Third Department’s standard in <u>Capraro</u> will unnecessarily increase the number of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation claims that these very same employers</a> will face, despite their best intentions','Applying the Third Department’s standard in <u>Capraro</u> will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions','The pandemic placed employers in a difficult situation; requiring them to drastically alter their preferred business models to ensure both their employee’s and the community’s safety. Applying the Third Department’s standard in Capraro will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions. Conversely, the Board Panel’s underlying decision in Mater of Matrix Absence Management guarantees that employees can still pursue workers’ compensation claims for injuries suffered at work, but not for injuries suffered while, for example, emptying the dishwasher.','Applying the Third Department’s standard in <u>Capraro</u> will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions.',0,'2022-04-04 13:24:44','2022-04-04 13:24:44'),(147,46350,46546,'claims that these very same employers','Applying the Third Department’s standard in Capraro will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions','Applying the Third Department’s standard in <u>Capraro</u> will unnecessarily increase the number of workers’ compensation <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">claims that these very same employers</a> will face, despite their best intentions','Applying the Third Department’s standard in <u>Capraro</u> will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions','The pandemic placed employers in a difficult situation; requiring them to drastically alter their preferred business models to ensure both their employee’s and the community’s safety. Applying the Third Department’s standard in Capraro will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions. Conversely, the Board Panel’s underlying decision in Mater of Matrix Absence Management guarantees that employees can still pursue workers’ compensation claims for injuries suffered at work, but not for injuries suffered while, for example, emptying the dishwasher.','Applying the Third Department’s standard in <u>Capraro</u> will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions.',0,'2022-04-04 13:24:44','2022-04-04 13:24:44'),(148,46342,46372,'claimant suffered other medical conditions','Upon taking testimony of the medical providers, the providers conceded the claimant suffered other medical conditions which may be causing her to be symptomatic but are not necessarily related to work','Upon taking testimony of the medical providers, the providers conceded the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/how-change-in-conditions-for-classified-claimants-changed-drastically/\">claimant suffered other medical conditions</a> which may be causing her to be symptomatic but are not necessarily related to work','Upon taking testimony of the medical providers, the providers conceded the claimant suffered other medical conditions which may be causing her to be symptomatic but are not necessarily related to work','Given the history provided, it was unanimous among medical providers, including the independent medical examiner, that causal relationship existed. Upon taking testimony of the medical providers, the providers conceded the claimant suffered other medical conditions which may be causing her to be symptomatic but are not necessarily related to work. Then, upon taking lay witness testimony, the various witnesses testified that it was impossible for the claimant to have been exposed to the fuel additive, as she never came in contact with it and the vents are not connected to the gas tank, so it would be impossible for it to have come out of the vents.','Upon taking testimony of the medical providers, the providers conceded the claimant suffered other medical conditions which may be causing her to be symptomatic but are not necessarily related to work.',0,'2022-04-04 13:24:46','2022-04-04 13:24:46'),(149,46342,46422,'claimant suffered other medical','Upon taking testimony of the medical providers, the providers conceded the claimant suffered other medical conditions which may be causing her to be symptomatic but are not necessarily related to work','Upon taking testimony of the medical providers, the providers conceded the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">claimant suffered other medical</a> conditions which may be causing her to be symptomatic but are not necessarily related to work','Upon taking testimony of the medical providers, the providers conceded the claimant suffered other medical conditions which may be causing her to be symptomatic but are not necessarily related to work','Given the history provided, it was unanimous among medical providers, including the independent medical examiner, that causal relationship existed. Upon taking testimony of the medical providers, the providers conceded the claimant suffered other medical conditions which may be causing her to be symptomatic but are not necessarily related to work. Then, upon taking lay witness testimony, the various witnesses testified that it was impossible for the claimant to have been exposed to the fuel additive, as she never came in contact with it and the vents are not connected to the gas tank, so it would be impossible for it to have come out of the vents.','Upon taking testimony of the medical providers, the providers conceded the claimant suffered other medical conditions which may be causing her to be symptomatic but are not necessarily related to work.',0,'2022-04-04 13:24:46','2022-04-04 13:24:46'),(150,46342,46561,'testified that it was impossible for the claimant','Then, upon taking lay witness testimony, the various witnesses testified that it was impossible for the claimant to have been exposed to the fuel additive, as she never came in contact with it and the vents are not connected to the gas tank, so it would be impossible for it to have come out of the vents','Then, upon taking lay witness testimony, the various witnesses <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">testified that it was impossible for the claimant</a> to have been exposed to the fuel additive, as she never came in contact with it and the vents are not connected to the gas tank, so it would be impossible for it to have come out of the vents','Then, upon taking lay witness testimony, the various witnesses testified that it was impossible for the claimant to have been exposed to the fuel additive, as she never came in contact with it and the vents are not connected to the gas tank, so it would be impossible for it to have come out of the vents','Upon taking testimony of the medical providers, the providers conceded the claimant suffered other medical conditions which may be causing her to be symptomatic but are not necessarily related to work. Then, upon taking lay witness testimony, the various witnesses testified that it was impossible for the claimant to have been exposed to the fuel additive, as she never came in contact with it and the vents are not connected to the gas tank, so it would be impossible for it to have come out of the vents. They also testified the additive was only added once, and would have dissipated the same day, which is inconsistent with the history the claimant was giving which claimed that the additive was added on multiple occasions subjecting her to repeat exposures.','Then, upon taking lay witness testimony, the various witnesses testified that it was impossible for the claimant to have been exposed to the fuel additive, as she never came in contact with it and the vents are not connected to the gas tank, so it would be impossible for it to have come out of the vents.',0,'2022-04-04 13:24:46','2022-04-04 13:24:46'),(151,46342,46374,'claimant was giving which claimed','They also testified the additive was only added once, and would have dissipated the same day, which is inconsistent with the history the claimant was giving which claimed that the additive was added on multiple occasions subjecting her to repeat exposures','They also testified the additive was only added once, and would have dissipated the same day, which is inconsistent with the history the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claimant was giving which claimed</a> that the additive was added on multiple occasions subjecting her to repeat exposures','They also testified the additive was only added once, and would have dissipated the same day, which is inconsistent with the history the claimant was giving which claimed that the additive was added on multiple occasions subjecting her to repeat exposures','Then, upon taking lay witness testimony, the various witnesses testified that it was impossible for the claimant to have been exposed to the fuel additive, as she never came in contact with it and the vents are not connected to the gas tank, so it would be impossible for it to have come out of the vents. They also testified the additive was only added once, and would have dissipated the same day, which is inconsistent with the history the claimant was giving which claimed that the additive was added on multiple occasions subjecting her to repeat exposures.','They also testified the additive was only added once, and would have dissipated the same day, which is inconsistent with the history the claimant was giving which claimed that the additive was added on multiple occasions subjecting her to repeat exposures.',0,'2022-04-04 13:24:46','2022-04-04 13:24:46'),(152,46337,46371,'claimant ever returned to work','An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the claimant ever returned to work, so no causal relationship was found','An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant ever returned to work</a>, so no causal relationship was found','An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the claimant ever returned to work, so no causal relationship was found','The doctors stick to their theory of toxic encephalopathy due to this asbestos. An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the claimant ever returned to work, so no causal relationship was found. Litigation precipitated, and the only information claimant’s doctors had regarding exposure was that provided by the claimant.','and Claimant begins to complain of headaches, difficulty concentrating, and other cognitive dysfunctions. Of course, when they begin to see doctors, they tell every single one they were exposed to asbestos in the aftermath of this explosion. Who cares if the MRI he eventually received was suggestive of a traumatic brain injury? The doctors stick to their theory of toxic encephalopathy due to this asbestos. An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the claimant ever returned to work, so no causal relationship was found.',0,'2022-04-04 15:07:07','2022-04-04 15:07:07'),(153,46337,46371,'claimant worked','While they testified they worked the day of the explosion and the 2 days that followed, surrounded by dust that wasn’t properly cleaned-up, their timecard (already in eCase) cried foul; the first time the claimant worked after the explosion was closer to 36 hours than 12','While they testified they worked the day of the explosion and the 2 days that followed, surrounded by dust that wasn’t properly cleaned-up, their timecard (already in eCase) cried foul; the first time the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant worked</a> after the explosion was closer to 36 hours than 12','While they testified they worked the day of the explosion and the 2 days that followed, surrounded by dust that wasn’t properly cleaned-up, their timecard (already in eCase) cried foul; the first time the claimant worked after the explosion was closer to 36 hours than 12','However, the claimant testified poorly. While they testified they worked the day of the explosion and the 2 days that followed, surrounded by dust that wasn’t properly cleaned-up, their timecard (already in eCase) cried foul; the first time the claimant worked after the explosion was closer to 36 hours than 12. The claimant testified the only information they had regarding their exposure was “probably” the news, conceding they’d never reviewed the environmental report, wherein samples were taken the day after the explosion, before the claimant returned to work, and analysis thereof showed no asbestos.','While they testified they worked the day of the explosion and the 2 days that followed, surrounded by dust that wasn’t properly cleaned-up, their timecard (already in eCase) cried foul; the first time the claimant worked after the explosion was closer to 36 hours than 12.',0,'2022-04-04 15:07:07','2022-04-04 15:07:07'),(154,46337,46338,'causal relationship','An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the claimant ever returned to work, so no causal relationship was found','An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the claimant ever returned to work, so no <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/06/third-deparment-decision-disputing-causal-relationship/\">causal relationship</a> was found','An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the claimant ever returned to work, so no causal relationship was found','The doctors stick to their theory of toxic encephalopathy due to this asbestos. An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the claimant ever returned to work, so no causal relationship was found. Litigation precipitated, and the only information claimant’s doctors had regarding exposure was that provided by the claimant.','and Claimant begins to complain of headaches, difficulty concentrating, and other cognitive dysfunctions. Of course, when they begin to see doctors, they tell every single one they were exposed to asbestos in the aftermath of this explosion. Who cares if the MRI he eventually received was suggestive of a traumatic brain injury? The doctors stick to their theory of toxic encephalopathy due to this asbestos. An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the claimant ever returned to work, so no causal relationship was found.',0,'2022-04-04 15:07:07','2022-04-04 15:07:07'),(155,46337,46338,'causal relationship','We argued, not only was there proof there was no asbestos in the building when Claimant alleged they were exposed, but there were significant issues with Claimant’s testimony and memory, with proof Claimant made numerous misstatements to their doctors; while the doctors found causal relationship based on those statements, medical reports are only as good as the facts they’re based on, and those not in accordance with the true facts should be set aside','We argued, not only was there proof there was no asbestos in the building when Claimant alleged they were exposed, but there were significant issues with Claimant’s testimony and memory, with proof Claimant made numerous misstatements to their doctors; while the doctors found <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/06/third-deparment-decision-disputing-causal-relationship/\">causal relationship</a> based on those statements, medical reports are only as good as the facts they’re based on, and those not in accordance with the true facts should be set aside','We argued, not only was there proof there was no asbestos in the building when Claimant alleged they were exposed, but there were significant issues with Claimant’s testimony and memory, with proof Claimant made numerous misstatements to their doctors; while the doctors found causal relationship based on those statements, medical reports are only as good as the facts they’re based on, and those not in accordance with the true facts should be set aside','They’d clearly been caught unprepared by the environmental report. We argued, not only was there proof there was no asbestos in the building when Claimant alleged they were exposed, but there were significant issues with Claimant’s testimony and memory, with proof Claimant made numerous misstatements to their doctors; while the doctors found causal relationship based on those statements, medical reports are only as good as the facts they’re based on, and those not in accordance with the true facts should be set aside.','wed, with claimant’s attorney alleged they inhaled “something toxic,” and Claimant believed there may have been asbestos in the air, but “something” blanketed the whole area. They continued by noting inhalation issues are slow moving issues before going off on a tangent about how, as we know from 9-11, even just breathing dust is harmful. They’d clearly been caught unprepared by the environmental report. We argued, not only was there proof there was no asbestos in the building when Claimant alleged they were exposed, but there were significant issues with Claimant’s testimony and memory, with proof Claimant made numerous misstatements to their doctors; while the doctors found causal relationship based on those statements, medical reports are only as good as the facts they’re based on, and those not in accordance with the true facts should be set aside.',0,'2022-04-04 15:07:07','2022-04-04 15:07:07'),(156,46337,46342,'causal relationship','An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the claimant ever returned to work, so no causal relationship was found','An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the claimant ever returned to work, so no <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">causal relationship</a> was found','An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the claimant ever returned to work, so no causal relationship was found','The doctors stick to their theory of toxic encephalopathy due to this asbestos. An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the claimant ever returned to work, so no causal relationship was found. Litigation precipitated, and the only information claimant’s doctors had regarding exposure was that provided by the claimant.','and Claimant begins to complain of headaches, difficulty concentrating, and other cognitive dysfunctions. Of course, when they begin to see doctors, they tell every single one they were exposed to asbestos in the aftermath of this explosion. Who cares if the MRI he eventually received was suggestive of a traumatic brain injury? The doctors stick to their theory of toxic encephalopathy due to this asbestos. An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the claimant ever returned to work, so no causal relationship was found.',0,'2022-04-04 15:07:07','2022-04-04 15:07:07'),(157,46337,46342,'causal relationship','We argued, not only was there proof there was no asbestos in the building when Claimant alleged they were exposed, but there were significant issues with Claimant’s testimony and memory, with proof Claimant made numerous misstatements to their doctors; while the doctors found causal relationship based on those statements, medical reports are only as good as the facts they’re based on, and those not in accordance with the true facts should be set aside','We argued, not only was there proof there was no asbestos in the building when Claimant alleged they were exposed, but there were significant issues with Claimant’s testimony and memory, with proof Claimant made numerous misstatements to their doctors; while the doctors found <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">causal relationship</a> based on those statements, medical reports are only as good as the facts they’re based on, and those not in accordance with the true facts should be set aside','We argued, not only was there proof there was no asbestos in the building when Claimant alleged they were exposed, but there were significant issues with Claimant’s testimony and memory, with proof Claimant made numerous misstatements to their doctors; while the doctors found causal relationship based on those statements, medical reports are only as good as the facts they’re based on, and those not in accordance with the true facts should be set aside','They’d clearly been caught unprepared by the environmental report. We argued, not only was there proof there was no asbestos in the building when Claimant alleged they were exposed, but there were significant issues with Claimant’s testimony and memory, with proof Claimant made numerous misstatements to their doctors; while the doctors found causal relationship based on those statements, medical reports are only as good as the facts they’re based on, and those not in accordance with the true facts should be set aside.','wed, with claimant’s attorney alleged they inhaled “something toxic,” and Claimant believed there may have been asbestos in the air, but “something” blanketed the whole area. They continued by noting inhalation issues are slow moving issues before going off on a tangent about how, as we know from 9-11, even just breathing dust is harmful. They’d clearly been caught unprepared by the environmental report. We argued, not only was there proof there was no asbestos in the building when Claimant alleged they were exposed, but there were significant issues with Claimant’s testimony and memory, with proof Claimant made numerous misstatements to their doctors; while the doctors found causal relationship based on those statements, medical reports are only as good as the facts they’re based on, and those not in accordance with the true facts should be set aside.',0,'2022-04-04 15:07:07','2022-04-04 15:07:07'),(158,46337,46344,'causal relationship','An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the claimant ever returned to work, so no causal relationship was found','An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the claimant ever returned to work, so no <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\">causal relationship</a> was found','An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the claimant ever returned to work, so no causal relationship was found','The doctors stick to their theory of toxic encephalopathy due to this asbestos. An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the claimant ever returned to work, so no causal relationship was found. Litigation precipitated, and the only information claimant’s doctors had regarding exposure was that provided by the claimant.','and Claimant begins to complain of headaches, difficulty concentrating, and other cognitive dysfunctions. Of course, when they begin to see doctors, they tell every single one they were exposed to asbestos in the aftermath of this explosion. Who cares if the MRI he eventually received was suggestive of a traumatic brain injury? The doctors stick to their theory of toxic encephalopathy due to this asbestos. An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the claimant ever returned to work, so no causal relationship was found.',0,'2022-04-04 15:07:07','2022-04-04 15:07:07'),(159,46337,46344,'causal relationship','We argued, not only was there proof there was no asbestos in the building when Claimant alleged they were exposed, but there were significant issues with Claimant’s testimony and memory, with proof Claimant made numerous misstatements to their doctors; while the doctors found causal relationship based on those statements, medical reports are only as good as the facts they’re based on, and those not in accordance with the true facts should be set aside','We argued, not only was there proof there was no asbestos in the building when Claimant alleged they were exposed, but there were significant issues with Claimant’s testimony and memory, with proof Claimant made numerous misstatements to their doctors; while the doctors found <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\">causal relationship</a> based on those statements, medical reports are only as good as the facts they’re based on, and those not in accordance with the true facts should be set aside','We argued, not only was there proof there was no asbestos in the building when Claimant alleged they were exposed, but there were significant issues with Claimant’s testimony and memory, with proof Claimant made numerous misstatements to their doctors; while the doctors found causal relationship based on those statements, medical reports are only as good as the facts they’re based on, and those not in accordance with the true facts should be set aside','They’d clearly been caught unprepared by the environmental report. We argued, not only was there proof there was no asbestos in the building when Claimant alleged they were exposed, but there were significant issues with Claimant’s testimony and memory, with proof Claimant made numerous misstatements to their doctors; while the doctors found causal relationship based on those statements, medical reports are only as good as the facts they’re based on, and those not in accordance with the true facts should be set aside.','wed, with claimant’s attorney alleged they inhaled “something toxic,” and Claimant believed there may have been asbestos in the air, but “something” blanketed the whole area. They continued by noting inhalation issues are slow moving issues before going off on a tangent about how, as we know from 9-11, even just breathing dust is harmful. They’d clearly been caught unprepared by the environmental report. We argued, not only was there proof there was no asbestos in the building when Claimant alleged they were exposed, but there were significant issues with Claimant’s testimony and memory, with proof Claimant made numerous misstatements to their doctors; while the doctors found causal relationship based on those statements, medical reports are only as good as the facts they’re based on, and those not in accordance with the true facts should be set aside.',0,'2022-04-04 15:07:07','2022-04-04 15:07:07'),(160,46337,46561,'claimant testified','However, the claimant testified poorly','However, the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">claimant testified</a> poorly','However, the claimant testified poorly','An almost hour and a half long trial followed, wherein the testimony of the claimant and two lay witnesses took place, the latter of which wrecked our timely notice defense to shreds. However, the claimant testified poorly. While they testified they worked the day of the explosion and the 2 days that followed, surrounded by dust that wasn’t properly cleaned-up, their timecard (already in eCase) cried foul; the first time the claimant worked after the explosion was closer to 36 hours than 12.','However, the claimant testified poorly.',0,'2022-04-04 15:07:07','2022-04-04 15:07:07'),(161,46337,46561,'claimant testified','The claimant testified the only information they had regarding their exposure was “probably” the news, conceding they’d never reviewed the environmental report, wherein samples were taken the day after the explosion, before the claimant returned to work, and analysis thereof showed no asbestos','The <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">claimant testified</a> the only information they had regarding their exposure was “probably” the news, conceding they’d never reviewed the environmental report, wherein samples were taken the day after the explosion, before the claimant returned to work, and analysis thereof showed no asbestos','The claimant testified the only information they had regarding their exposure was “probably” the news, conceding they’d never reviewed the environmental report, wherein samples were taken the day after the explosion, before the claimant returned to work, and analysis thereof showed no asbestos','While they testified they worked the day of the explosion and the 2 days that followed, surrounded by dust that wasn’t properly cleaned-up, their timecard (already in eCase) cried foul; the first time the claimant worked after the explosion was closer to 36 hours than 12. The claimant testified the only information they had regarding their exposure was “probably” the news, conceding they’d never reviewed the environmental report, wherein samples were taken the day after the explosion, before the claimant returned to work, and analysis thereof showed no asbestos. And, if shameless citations to exactly where in the eCase that information could be viewed while we asked the claimant some other questions, like how the onset of his symptoms wasn’t until over a year after the alleged exposure, who’s to say.','the testimony of the claimant and two lay witnesses took place, the latter of which wrecked our timely notice defense to shreds. However, the claimant testified poorly. While they testified they worked the day of the explosion and the 2 days that followed, surrounded by dust that wasn’t properly cleaned-up, their timecard (already in eCase) cried foul; the first time the claimant worked after the explosion was closer to 36 hours than 12. The claimant testified the only information they had regarding their exposure was “probably” the news, conceding they’d never reviewed the environmental report, wherein samples were taken the day after the explosion, before the claimant returned to work, and analysis thereof showed no asbestos.',0,'2022-04-04 15:07:07','2022-04-04 15:07:07'),(162,46385,46236,'case law','There was also the hope of finding some helpful case law around the way, but as I’m starting in 2015 (so there will only be new cases on one side of the analysis) subsequent confirmation will be required','There was also the hope of finding some helpful <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/client-resources/case-law-updates-lomad-case-law-updates/\">case law</a> around the way, but as I’m starting in 2015 (so there will only be new cases on one side of the analysis) subsequent confirmation will be required','There was also the hope of finding some helpful case law around the way, but as I’m starting in 2015 (so there will only be new cases on one side of the analysis) subsequent confirmation will be required','But I’m going to see them all, record the relevant information the Board used to reach its conclusion on LWEC, and try to develop a useful tool to help navigate the chaos that is LWEC. There was also the hope of finding some helpful case law around the way, but as I’m starting in 2015 (so there will only be new cases on one side of the analysis) subsequent confirmation will be required.','There was also the hope of finding some helpful case law around the way, but as I’m starting in 2015 (so there will only be new cases on one side of the analysis) subsequent confirmation will be required.',0,'2022-04-04 15:07:09','2022-04-04 15:07:09'),(163,46479,46422,'medical evidence indicates that the claimant','Where the claimant’s medical evidence indicates that the claimant has no disability','Where the claimant’s <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">medical evidence indicates that the claimant</a> has no disability','Where the claimant’s medical evidence indicates that the claimant has no disability','Where the claimant’s medical evidence indicates that the claimant has no disability. When such medical evidence is not part of the official board file, it shall be submitted to the board in the format prescribed by the chair together with or on the same day that the notice to suspend or reduce is electronically filed; or','Where the claimant’s medical evidence indicates that the claimant has no disability.',0,'2022-04-04 15:07:12','2022-04-04 15:07:12'),(164,46479,46422,'medical impairment for a claimant','What is the percentage of medical impairment for a claimant whose provider has opined a class II severity E impairment','What is the percentage of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">medical impairment for a claimant</a> whose provider has opined a class II severity E impairment','What is the percentage of medical impairment for a claimant whose provider has opined a class II severity E impairment','2.  What is the percentage of medical impairment for a claimant whose provider has opined a class II severity E impairment?','What is the percentage of medical impairment for a claimant whose provider has opined a class II severity E impairment?',0,'2022-04-04 15:07:12','2022-04-04 15:07:12'),(165,46479,46502,'medical treatment guidelines','When do the medical treatment guidelines apply','When do the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">medical treatment guidelines</a> apply','When do the medical treatment guidelines apply','4.  When do the medical treatment guidelines apply?','When do the medical treatment guidelines apply?',0,'2022-04-04 15:07:12','2022-04-04 15:07:12'),(166,46479,46503,'treatment in the absence of a variance','What is needed in a Chiropractor’s report for there to be a well-documented exacerbation to allow for treatment in the absence of a variance','What is needed in a Chiropractor’s report for there to be a well-documented exacerbation to allow for <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">treatment in the absence of a variance</a>','What is needed in a Chiropractor’s report for there to be a well-documented exacerbation to allow for treatment in the absence of a variance','5.  What is needed in a Chiropractor’s report for there to be a well-documented exacerbation to allow for treatment in the absence of a variance?','What is needed in a Chiropractor’s report for there to be a well-documented exacerbation to allow for treatment in the absence of a variance?',0,'2022-04-04 15:07:12','2022-04-04 15:07:12'),(167,46479,46503,'variance without contrary medical','Under what circumstances can a carrier deny a variance without contrary medical evidence','Under what circumstances can a carrier deny a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">variance without contrary medical</a> evidence','Under what circumstances can a carrier deny a variance without contrary medical evidence','6.  Under what circumstances can a carrier deny a variance without contrary medical evidence?','Under what circumstances can a carrier deny a variance without contrary medical evidence?',0,'2022-04-04 15:07:12','2022-04-04 15:07:12'),(168,46479,46503,'medical treatment','When do the medical treatment guidelines apply','When do the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">medical treatment</a> guidelines apply','When do the medical treatment guidelines apply','4.  When do the medical treatment guidelines apply?','When do the medical treatment guidelines apply?',0,'2022-04-04 15:07:12','2022-04-04 15:07:12'),(169,46479,46506,'medical treatment guidelines','When do the medical treatment guidelines apply','When do the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">medical treatment guidelines</a> apply','When do the medical treatment guidelines apply','4.  When do the medical treatment guidelines apply?','When do the medical treatment guidelines apply?',0,'2022-04-04 15:07:12','2022-04-04 15:07:12'),(170,46479,46543,'medical treatment','When do the medical treatment guidelines apply','When do the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\">medical treatment</a> guidelines apply','When do the medical treatment guidelines apply','4.  When do the medical treatment guidelines apply?','When do the medical treatment guidelines apply?',0,'2022-04-04 15:07:12','2022-04-04 15:07:12'),(171,46479,46482,'treatment guidelines','When do the medical treatment guidelines apply','When do the medical <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/non-acute-pain-treatment-guidelines/\">treatment guidelines</a> apply','When do the medical treatment guidelines apply','4.  When do the medical treatment guidelines apply?','When do the medical treatment guidelines apply?',0,'2022-04-04 15:07:12','2022-04-04 15:07:12'),(172,46479,46340,'medical evidence','Under what circumstances can a carrier deny a variance without contrary medical evidence','Under what circumstances can a carrier deny a variance without contrary <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\">medical evidence</a>','Under what circumstances can a carrier deny a variance without contrary medical evidence','6.  Under what circumstances can a carrier deny a variance without contrary medical evidence?','Under what circumstances can a carrier deny a variance without contrary medical evidence?',0,'2022-04-04 15:07:12','2022-04-04 15:07:12'),(173,46479,46340,'medical evidence','Where the claimant’s medical evidence indicates that the claimant has no disability','Where the claimant’s <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\">medical evidence</a> indicates that the claimant has no disability','Where the claimant’s medical evidence indicates that the claimant has no disability','Where the claimant’s medical evidence indicates that the claimant has no disability. When such medical evidence is not part of the official board file, it shall be submitted to the board in the format prescribed by the chair together with or on the same day that the notice to suspend or reduce is electronically filed; or','Where the claimant’s medical evidence indicates that the claimant has no disability.',0,'2022-04-04 15:07:12','2022-04-04 15:07:12'),(174,46479,46511,'claim and a decision would be issued','If the carrier commences payment of temporary compensation, how much time do they have to electronically file a notice of controversy before they would be deemed to have admitted liability for the claim and a decision would be issued establishing the claim','If the carrier commences payment of temporary compensation, how much time do they have to electronically file a notice of controversy before they would be deemed to have admitted liability for the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">claim and a decision would be issued</a> establishing the claim','If the carrier commences payment of temporary compensation, how much time do they have to electronically file a notice of controversy before they would be deemed to have admitted liability for the claim and a decision would be issued establishing the claim','7.  If the carrier commences payment of temporary compensation, how much time do they have to electronically file a notice of controversy before they would be deemed to have admitted liability for the claim and a decision would be issued establishing the claim?','If the carrier commences payment of temporary compensation, how much time do they have to electronically file a notice of controversy before they would be deemed to have admitted liability for the claim and a decision would be issued establishing the claim?',0,'2022-04-04 15:07:12','2022-04-04 15:07:12'),(175,46479,46511,'employer or carrier','When the employer or carrier is under a direction to continue payments to the claimant following a hearing or issuance of a decision pursuant to rule 300.23, it is permissible to suspend benefits without a hearing under certain circumstances','When the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">employer or carrier</a> is under a direction to continue payments to the claimant following a hearing or issuance of a decision pursuant to rule 300.23, it is permissible to suspend benefits without a hearing under certain circumstances','When the employer or carrier is under a direction to continue payments to the claimant following a hearing or issuance of a decision pursuant to rule 300.23, it is permissible to suspend benefits without a hearing under certain circumstances','11.  When the employer or carrier is under a direction to continue payments to the claimant following a hearing or issuance of a decision pursuant to rule 300.23, it is permissible to suspend benefits without a hearing under certain circumstances. True or false?','When the employer or carrier is under a direction to continue payments to the claimant following a hearing or issuance of a decision pursuant to rule 300.23, it is permissible to suspend benefits without a hearing under certain circumstances.',0,'2022-04-04 15:07:12','2022-04-04 15:07:12'),(176,46479,46546,'claim and a decision would be issued','If the carrier commences payment of temporary compensation, how much time do they have to electronically file a notice of controversy before they would be deemed to have admitted liability for the claim and a decision would be issued establishing the claim','If the carrier commences payment of temporary compensation, how much time do they have to electronically file a notice of controversy before they would be deemed to have admitted liability for the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">claim and a decision would be issued</a> establishing the claim','If the carrier commences payment of temporary compensation, how much time do they have to electronically file a notice of controversy before they would be deemed to have admitted liability for the claim and a decision would be issued establishing the claim','7.  If the carrier commences payment of temporary compensation, how much time do they have to electronically file a notice of controversy before they would be deemed to have admitted liability for the claim and a decision would be issued establishing the claim?','If the carrier commences payment of temporary compensation, how much time do they have to electronically file a notice of controversy before they would be deemed to have admitted liability for the claim and a decision would be issued establishing the claim?',0,'2022-04-04 15:07:12','2022-04-04 15:07:12'),(177,46479,46546,'employer or carrier','When the employer or carrier is under a direction to continue payments to the claimant following a hearing or issuance of a decision pursuant to rule 300.23, it is permissible to suspend benefits without a hearing under certain circumstances','When the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">employer or carrier</a> is under a direction to continue payments to the claimant following a hearing or issuance of a decision pursuant to rule 300.23, it is permissible to suspend benefits without a hearing under certain circumstances','When the employer or carrier is under a direction to continue payments to the claimant following a hearing or issuance of a decision pursuant to rule 300.23, it is permissible to suspend benefits without a hearing under certain circumstances','11.  When the employer or carrier is under a direction to continue payments to the claimant following a hearing or issuance of a decision pursuant to rule 300.23, it is permissible to suspend benefits without a hearing under certain circumstances. True or false?','When the employer or carrier is under a direction to continue payments to the claimant following a hearing or issuance of a decision pursuant to rule 300.23, it is permissible to suspend benefits without a hearing under certain circumstances.',0,'2022-04-04 15:07:12','2022-04-04 15:07:12'),(178,46479,46380,'business days','An IME report must be filed within 10 business days after the examination with the Board','An IME report must be filed within 10 <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2019/07/melissa-a-day-esq-invited-to-join-buffalo-business-first-leadership-trust/\">business days</a> after the examination with the Board','An IME report must be filed within 10 business days after the examination with the Board','8.  An IME report must be filed within 10 business days after the examination with the Board. Does a holiday within the period count as a business day and does only a holiday that falls on the 10th day count as a holiday that requires that the IME report be submitted on the next business day?','An IME report must be filed within 10 business days after the examination with the Board.',0,'2022-04-04 15:07:12','2022-04-04 15:07:12'),(179,46479,46553,'continue payments to the claimant','When the employer or carrier is under a direction to continue payments to the claimant following a hearing or issuance of a decision pursuant to rule 300.23, it is permissible to suspend benefits without a hearing under certain circumstances','When the employer or carrier is under a direction to <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">continue payments to the claimant</a> following a hearing or issuance of a decision pursuant to rule 300.23, it is permissible to suspend benefits without a hearing under certain circumstances','When the employer or carrier is under a direction to continue payments to the claimant following a hearing or issuance of a decision pursuant to rule 300.23, it is permissible to suspend benefits without a hearing under certain circumstances','11.  When the employer or carrier is under a direction to continue payments to the claimant following a hearing or issuance of a decision pursuant to rule 300.23, it is permissible to suspend benefits without a hearing under certain circumstances. True or false?','When the employer or carrier is under a direction to continue payments to the claimant following a hearing or issuance of a decision pursuant to rule 300.23, it is permissible to suspend benefits without a hearing under certain circumstances.',0,'2022-04-04 15:07:12','2022-04-04 15:07:12'),(180,46479,46426,'legal evidence of claimant’s return','Where a notice of return to work, or other written substantial legal evidence of claimant’s return to work, has been submitted to the board in the format prescribed by the chair together with or on the same day that the notice to suspend or reduce is electronically filed; or','Where a notice of return to work, or other written substantial <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/01/back-to-the-future-the-return-of-wcl-252-b-fact-finding-without-judges-and-legal-reasoning-without-lawyers/\">legal evidence of claimant’s return</a> to work, has been submitted to the board in the format prescribed by the chair together with or on the same day that the notice to suspend or reduce is electronically filed; or','Where a notice of return to work, or other written substantial legal evidence of claimant’s return to work, has been submitted to the board in the format prescribed by the chair together with or on the same day that the notice to suspend or reduce is electronically filed; or','Where a notice of return to work, or other written substantial legal evidence of claimant’s return to work, has been submitted to the board in the format prescribed by the chair together with or on the same day that the notice to suspend or reduce is electronically filed; or','Where a notice of return to work, or other written substantial legal evidence of claimant’s return to work, has been submitted to the board in the format prescribed by the chair together with or on the same day that the notice to suspend or reduce is electronically filed; or',0,'2022-04-04 15:07:12','2022-04-04 15:07:12'),(181,46179,46421,'workers’ compensation','During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of workers’ compensation hearings','During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation</a> hearings','During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of workers’ compensation hearings','Prior to joining , Tom worked for Special Funds Conservation Committee for 23 years. During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of workers’ compensation hearings. During that time, Tom was also manager of the Albany office of Special Funds for two years and manager of the Buffalo office of Special Funds for eight years.','During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of workers’ compensation hearings.',0,'2022-04-04 15:07:14','2022-04-04 15:07:14'),(182,46179,46486,'workers’ compensation','During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of workers’ compensation hearings','During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> hearings','During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of workers’ compensation hearings','Prior to joining , Tom worked for Special Funds Conservation Committee for 23 years. During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of workers’ compensation hearings. During that time, Tom was also manager of the Albany office of Special Funds for two years and manager of the Buffalo office of Special Funds for eight years.','During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of workers’ compensation hearings.',0,'2022-04-04 15:07:14','2022-04-04 15:07:14'),(183,46179,46512,'workers’ compensation','During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of workers’ compensation hearings','During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> hearings','During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of workers’ compensation hearings','Prior to joining , Tom worked for Special Funds Conservation Committee for 23 years. During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of workers’ compensation hearings. During that time, Tom was also manager of the Albany office of Special Funds for two years and manager of the Buffalo office of Special Funds for eight years.','During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of workers’ compensation hearings.',0,'2022-04-04 15:07:14','2022-04-04 15:07:14'),(184,46179,46555,'workers’ compensation','During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of workers’ compensation hearings','During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> hearings','During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of workers’ compensation hearings','Prior to joining , Tom worked for Special Funds Conservation Committee for 23 years. During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of workers’ compensation hearings. During that time, Tom was also manager of the Albany office of Special Funds for two years and manager of the Buffalo office of Special Funds for eight years.','During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of workers’ compensation hearings.',0,'2022-04-04 15:07:14','2022-04-04 15:07:14'),(185,46179,46541,'insurance carriers','Over the years, Tom has worked closely and developed a strong working relationship with insurance carriers and their legal counsel as well as claimant’s attorneys','Over the years, Tom has worked closely and developed a strong working relationship with <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\">insurance carriers</a> and their legal counsel as well as claimant’s attorneys','Over the years, Tom has worked closely and developed a strong working relationship with insurance carriers and their legal counsel as well as claimant’s attorneys','During his time in management, and as a hearing representative, Tom gained valuable experience in claims analysis, litigation, legal research and writing, negotiation and resolution of issues. Over the years, Tom has worked closely and developed a strong working relationship with insurance carriers and their legal counsel as well as claimant’s attorneys.','Over the years, Tom has worked closely and developed a strong working relationship with insurance carriers and their legal counsel as well as claimant’s attorneys.',0,'2022-04-04 15:07:14','2022-04-04 15:07:14'),(186,46179,46511,'carriers and their legal counsel','Over the years, Tom has worked closely and developed a strong working relationship with insurance carriers and their legal counsel as well as claimant’s attorneys','Over the years, Tom has worked closely and developed a strong working relationship with insurance <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">carriers and their legal counsel</a> as well as claimant’s attorneys','Over the years, Tom has worked closely and developed a strong working relationship with insurance carriers and their legal counsel as well as claimant’s attorneys','During his time in management, and as a hearing representative, Tom gained valuable experience in claims analysis, litigation, legal research and writing, negotiation and resolution of issues. Over the years, Tom has worked closely and developed a strong working relationship with insurance carriers and their legal counsel as well as claimant’s attorneys.','Over the years, Tom has worked closely and developed a strong working relationship with insurance carriers and their legal counsel as well as claimant’s attorneys.',0,'2022-04-04 15:07:14','2022-04-04 15:07:14'),(187,46367,46340,'medical evidence','As we reviewed the file, we realized that the claimant’s medical evidence had changed dramatically after her accident','As we reviewed the file, we realized that the claimant’s <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\">medical evidence</a> had changed dramatically after her accident','As we reviewed the file, we realized that the claimant’s medical evidence had changed dramatically after her accident','As we reviewed the file, we realized that the claimant’s medical evidence had changed dramatically after her accident.  Six days before the accident, the claimant’s treating doctor opined that she had a moderate lumbar disability, with mild to moderate motion deficits in her thoracic and low back.  ','As we reviewed the file, we realized that the claimant’s medical evidence had changed dramatically after her accident.  Six days before the accident, the claimant’s treating doctor opined that she had a moderate lumbar disability, with mild to moderate motion deficits in her thoracic and low back.   After the accident, she was given a temporary total disability by her doctors.  Her providers testified that that after the accident',0,'2022-04-04 15:39:28','2022-04-04 15:39:28'),(188,46367,46506,'low back','Six days before the accident, the claimant’s treating doctor opined that she had a moderate lumbar disability, with mild to moderate motion deficits in her thoracic and low back','Six days before the accident, the claimant’s treating doctor opined that she had a moderate lumbar disability, with mild to moderate motion deficits in her thoracic and <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">low back</a>','Six days before the accident, the claimant’s treating doctor opined that she had a moderate lumbar disability, with mild to moderate motion deficits in her thoracic and low back','As we reviewed the file, we realized that the claimant’s medical evidence had changed dramatically after her accident.  Six days before the accident, the claimant’s treating doctor opined that she had a moderate lumbar disability, with mild to moderate motion deficits in her thoracic and low back.   After the accident, she was given a temporary total disability by her doctors. ','Six days before the accident, the claimant’s treating doctor opined that she had a moderate lumbar disability, with mild to moderate motion deficits in her thoracic and low back.   After the accident, she was given a temporary total disability by her doctors.  Her providers testified that that after the accident, the claimant reported tenderness to her spine and her range of motion had decreased in both her neck and her low back.  During cross-examination, they conceded that she had injured her neck and re-injured her back in the MVA and admitted that the MVA had exacerbated her back injury.  They also confirmed that her MRI findings had changed following the MVA. They agreed that it would be difficult to attribute her current condition specifically to her Workers’ Compensation claim.',0,'2022-04-04 15:39:28','2022-04-04 15:39:28'),(189,46367,46506,'low back','Her providers testified that that after the accident, the claimant reported tenderness to her spine and her range of motion had decreased in both her neck and her low back','Her providers testified that that after the accident, the claimant reported tenderness to her spine and her range of motion had decreased in both her neck and her <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">low back</a>','Her providers testified that that after the accident, the claimant reported tenderness to her spine and her range of motion had decreased in both her neck and her low back','After the accident, she was given a temporary total disability by her doctors.  Her providers testified that that after the accident, the claimant reported tenderness to her spine and her range of motion had decreased in both her neck and her low back.  During cross-examination, they conceded that she had injured her neck and re-injured her back in the MVA and admitted that the MVA had exacerbated her back injury. ','her accident.  Six days before the accident, the claimant’s treating doctor opined that she had a moderate lumbar disability, with mild to moderate motion deficits in her thoracic and low back.   After the accident, she was given a temporary total disability by her doctors.  Her providers testified that that after the accident, the claimant reported tenderness to her spine and her range of motion had decreased in both her neck and her low back.  During cross-examination, they conceded that she had injured her neck and re-injured her back in the MVA and admitted that the MVA had exacerbated her back injury.  They also confirmed that her MRI findings had changed following the MVA. They agreed that it would be difficult to attribute her current condition specifically to her Workers’ Compensation claim.',0,'2022-04-04 15:39:28','2022-04-04 15:39:28'),(190,46367,46549,'found the disputed bills','The judge also found the disputed bills in our favor on the grounds that the treatment was related to the MVA, not the claimant’s Workers’ Compensation claim.','The judge also <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">found the disputed bills</a> in our favor on the grounds that the treatment was related to the MVA, not the claimant’s Workers’ Compensation claim.','The judge also found the disputed bills in our favor on the grounds that the treatment was related to the MVA, not the claimant’s Workers’ Compensation claim.','The Judge agreed with us and found that the claimant had no compensable disability after her MVA.  The judge also found the disputed bills in our favor on the grounds that the treatment was related to the MVA, not the claimant’s Workers’ Compensation claim.','The Judge agreed with us and found that the claimant had no compensable disability after her MVA.  The judge also found the disputed bills in our favor on the grounds that the treatment was related to the MVA, not the claimant’s Workers’ Compensation claim.',0,'2022-04-04 15:39:28','2022-04-04 15:39:28'),(191,46493,46553,'claimant filed a C-3 in August 2012 which alleged','In East Village, the claimant filed a C-3 in August 2012 which alleged that he fractured his ankle on July 4, 2012, while working as a building superintendent','In <u>East Village</u>, the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">claimant filed a C-3 in August 2012 which alleged</a> that he fractured his ankle on July 4, 2012, while working as a building superintendent','In <u>East Village</u>, the claimant filed a C-3 in August 2012 which alleged that he fractured his ankle on July 4, 2012, while working as a building superintendent','In East Village, the claimant filed a C-3 in August 2012 which alleged that he fractured his ankle on July 4, 2012, while working as a building superintendent.  The claimant further indicated that he was supervising tenants and guests when he fell down a staircase.','In <u>East Village</u>, the claimant filed a C-3 in August 2012 which alleged that he fractured his ankle on July 4, 2012, while working as a building superintendent.',0,'2022-04-04 16:02:46','2022-04-04 16:02:46'),(192,46493,46511,'carrier based its WCL § 10 defense','The carrier based its WCL § 10 defense upon the fact that prior to the altercation which resulted in the injury, the claimant’s dog had been struck by a firework that one tenant threw off the roof','The <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">carrier based its WCL § 10 defense</a> upon the fact that prior to the altercation which resulted in the injury, the claimant’s dog had been struck by a firework that one tenant threw off the roof','The carrier based its WCL § 10 defense upon the fact that prior to the altercation which resulted in the injury, the claimant’s dog had been struck by a firework that one tenant threw off the roof','The carrier fully controverted the claim alleging no accident arising out of and in the course of employment and that the claimant willfully intended to bring about the injury pursuant to WCL § 10.  The carrier based its WCL § 10 defense upon the fact that prior to the altercation which resulted in the injury, the claimant’s dog had been struck by a firework that one tenant threw off the roof.','The carrier fully controverted the claim alleging no accident arising out of and in the course of employment and that the claimant willfully intended to bring about the injury pursuant to WCL § 10.  The carrier based its WCL § 10 defense upon the fact that prior to the altercation which resulted in the injury, the claimant’s dog had been struck by a firework that one tenant threw off the roof.',0,'2022-04-04 16:02:46','2022-04-04 16:02:46'),(193,46493,46561,'claimant and his fiancée testified','The claimant and his fiancée testified on the claimant’s behalf','The <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">claimant and his fiancée testified</a> on the claimant’s behalf','The claimant and his fiancée testified on the claimant’s behalf','The claimant and his fiancée testified on the claimant’s behalf.  However, the claimant’s supervisor/employer failed to appear at the hearing, advising that he did not feel it important enough to show up to testify.  ','The claimant and his fiancée testified on the claimant’s behalf.',0,'2022-04-04 16:02:46','2022-04-04 16:02:46'),(194,46493,46350,'accidents which arise in the course of employment','The presumption was also addressed by the Board that accidents which arise in the course of employment are presumed to arise out of such accident and that this presumption is rebuttable only by substantial evidence to the contrary','The presumption was also addressed by the Board that <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">accidents which arise in the course of employment</a> are presumed to arise out of such accident and that this presumption is rebuttable only by substantial evidence to the contrary','The presumption was also addressed by the Board that accidents which arise in the course of employment are presumed to arise out of such accident and that this presumption is rebuttable only by substantial evidence to the contrary','In analyzing the facts of the claim, the Board did note that under “Workers’ Compensation Law an accidental injury must have arisen out of and in the course of employment.”  The presumption was also addressed by the Board that accidents which arise in the course of employment are presumed to arise out of such accident and that this presumption is rebuttable only by substantial evidence to the contrary.  Finally, the Board also analyzed WCL § 21(1) noting that an assault that occurs at work is presumed to arise out of employment unless there is substantial evidence that it was “motivated by purely personal animosity.” [Internal citations omitted].','the facts of the claim, the Board did note that under “Workers’ Compensation Law an accidental injury must have arisen out of and in the course of employment.”  The presumption was also addressed by the Board that accidents which arise in the course of employment are presumed to arise out of such accident and that this presumption is rebuttable only by substantial evidence to the contrary.',0,'2022-04-04 16:02:46','2022-04-04 16:02:46'),(195,46493,46421,'claim was compensable','The Board ultimately determined that the claim was compensable','The Board ultimately determined that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">claim was compensable</a>','The Board ultimately determined that the claim was compensable','The Board ultimately determined that the claim was compensable.  In reaching its Decision, the Board found that the claimant did concede that one of the individuals on the roof threw a firework that struck his dog, but that the assault which occurred on the stairs happened not due to the confrontation over the dog incident, but after the claimant told the people on the roof he was going to call the police.','The Board ultimately determined that the claim was compensable.  In reaching its Decision, the Board found that the claimant did concede that one of the individuals on the roof threw a firework that struck his dog, but that the assault which occurred on the stairs happened not due to the confrontation over the dog incident, but after the claimant told the people on the roof he was going to call the police.',0,'2022-04-04 16:02:46','2022-04-04 16:02:46'),(196,46493,46421,'claim compensable','Using these facts, the Board found the claim compensable based upon the nexus between the claimant’s work activities as the superintendent of the property and the assault occurring as he was in the process of going to clean the roof in fulfilment of those work activities','Using these facts, the Board found the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">claim compensable</a> based upon the nexus between the claimant’s work activities as the superintendent of the property and the assault occurring as he was in the process of going to clean the roof in fulfilment of those work activities','Using these facts, the Board found the claim compensable based upon the nexus between the claimant’s work activities as the superintendent of the property and the assault occurring as he was in the process of going to clean the roof in fulfilment of those work activities','Using these facts, the Board found the claim compensable based upon the nexus between the claimant’s work activities as the superintendent of the property and the assault occurring as he was in the process of going to clean the roof in fulfilment of those work activities.','Using these facts, the Board found the claim compensable based upon the nexus between the claimant’s work activities as the superintendent of the property and the assault occurring as he was in the process of going to clean the roof in fulfilment of those work activities.',0,'2022-04-04 16:02:46','2022-04-04 16:02:46'),(197,46492,46549,'total period of disability exceeds that what is considered','WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part','WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">total period of disability exceeds that what is considered</a> the normal healing period for the injury to the claimant’s body part','WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part','Temporary total disability becomes especially relevant when the claimant suffered a schedulable injury.  WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part.','WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part.',0,'2022-04-04 16:02:48','2022-04-04 16:02:48'),(198,46492,46549,'found that the claimant was not temporary totally disabled','Consequently, the Board found that the claimant was not temporary totally disabled','Consequently, the Board <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">found that the claimant was not temporary totally disabled</a>','Consequently, the Board found that the claimant was not temporary totally disabled','No issues with the claimant’s ability to sit, walk or perform daily activities such as driving, cooking, cleaning or personal hygiene was indicated.  Consequently, the Board found that the claimant was not temporary totally disabled. Matter of Our Lady of Victory Baker, 2015 NY Wrk.','Consequently, the Board found that the claimant was not temporary totally disabled. <u>Matter of Our Lady of Victory Baker,</u> 2015 NY Wrk. Comp. 0730636.',0,'2022-04-04 16:02:48','2022-04-04 16:02:48'),(199,46492,46549,'total disability becomes especially relevant when the claimant','Temporary total disability becomes especially relevant when the claimant suffered a schedulable injury','Temporary <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">total disability becomes especially relevant when the claimant</a> suffered a schedulable injury','Temporary total disability becomes especially relevant when the claimant suffered a schedulable injury','Temporary total disability becomes especially relevant when the claimant suffered a schedulable injury.  WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part.','Temporary total disability becomes especially relevant when the claimant suffered a schedulable injury.  WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury',0,'2022-04-04 16:02:48','2022-04-04 16:02:48'),(200,46492,46549,'disabled we picture a claimant','To be temporary “TOTALLY” disabled we picture a claimant in a wheelchair paralyzed and unable to function without assistance','To be temporary “TOTALLY” <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">disabled we picture a claimant</a> in a wheelchair paralyzed and unable to function without assistance','To be temporary “TOTALLY” disabled we picture a claimant in a wheelchair paralyzed and unable to function without assistance','To be temporary “TOTALLY” disabled we picture a claimant in a wheelchair paralyzed and unable to function without assistance.  But, in reality the picture is frequently very different and often as follows:','To be temporary “TOTALLY” disabled we picture a claimant in a wheelchair paralyzed and unable to function without assistance.',0,'2022-04-04 16:02:48','2022-04-04 16:02:48'),(201,46492,46549,'totally disabled','Without reference to any objective criteria or observations (in fact, X-rays were negative), but simply referring to and reiterating the claimant’s allegations as to his condition, the treating physician confirmed the claimant’s claim that he was temporary totally disabled','Without reference to any objective criteria or observations (in fact, X-rays were negative), but simply referring to and reiterating the claimant’s allegations as to his condition, the treating physician confirmed the claimant’s claim that he was temporary <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">totally disabled</a>','Without reference to any objective criteria or observations (in fact, X-rays were negative), but simply referring to and reiterating the claimant’s allegations as to his condition, the treating physician confirmed the claimant’s claim that he was temporary totally disabled','Without reference to any objective criteria or observations (in fact, X-rays were negative), but simply referring to and reiterating the claimant’s allegations as to his condition, the treating physician confirmed the claimant’s claim that he was temporary totally disabled.','Without reference to any objective criteria or observations (in fact, X-rays were negative), but simply referring to and reiterating the claimant’s allegations as to his condition, the treating physician confirmed the claimant’s claim that he was temporary totally disabled.',0,'2022-04-04 16:02:48','2022-04-04 16:02:48'),(202,46492,46553,'total disability becomes especially relevant when the claimant','Temporary total disability becomes especially relevant when the claimant suffered a schedulable injury','Temporary <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">total disability becomes especially relevant when the claimant</a> suffered a schedulable injury','Temporary total disability becomes especially relevant when the claimant suffered a schedulable injury','Temporary total disability becomes especially relevant when the claimant suffered a schedulable injury.  WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part.','Temporary total disability becomes especially relevant when the claimant suffered a schedulable injury.  WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury',0,'2022-04-04 16:02:48','2022-04-04 16:02:48'),(203,46492,46553,'claimant was not temporary totally disabled','Consequently, the Board found that the claimant was not temporary totally disabled','Consequently, the Board found that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">claimant was not temporary totally disabled</a>','Consequently, the Board found that the claimant was not temporary totally disabled','No issues with the claimant’s ability to sit, walk or perform daily activities such as driving, cooking, cleaning or personal hygiene was indicated.  Consequently, the Board found that the claimant was not temporary totally disabled. Matter of Our Lady of Victory Baker, 2015 NY Wrk.','Consequently, the Board found that the claimant was not temporary totally disabled. <u>Matter of Our Lady of Victory Baker,</u> 2015 NY Wrk. Comp. 0730636.',0,'2022-04-04 16:02:48','2022-04-04 16:02:48'),(204,46492,46553,'totally disabled','Without reference to any objective criteria or observations (in fact, X-rays were negative), but simply referring to and reiterating the claimant’s allegations as to his condition, the treating physician confirmed the claimant’s claim that he was temporary totally disabled','Without reference to any objective criteria or observations (in fact, X-rays were negative), but simply referring to and reiterating the claimant’s allegations as to his condition, the treating physician confirmed the claimant’s claim that he was temporary <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">totally disabled</a>','Without reference to any objective criteria or observations (in fact, X-rays were negative), but simply referring to and reiterating the claimant’s allegations as to his condition, the treating physician confirmed the claimant’s claim that he was temporary totally disabled','Without reference to any objective criteria or observations (in fact, X-rays were negative), but simply referring to and reiterating the claimant’s allegations as to his condition, the treating physician confirmed the claimant’s claim that he was temporary totally disabled.','Without reference to any objective criteria or observations (in fact, X-rays were negative), but simply referring to and reiterating the claimant’s allegations as to his condition, the treating physician confirmed the claimant’s claim that he was temporary totally disabled.',0,'2022-04-04 16:02:48','2022-04-04 16:02:48'),(205,46492,46553,'chiropractor continued','In another recent Full Board Review, the claimant’s chiropractor continued to opine a TTD','In another recent Full Board Review, the claimant’s <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">chiropractor continued</a> to opine a TTD','In another recent Full Board Review, the claimant’s chiropractor continued to opine a TTD','In another recent Full Board Review, the claimant’s chiropractor continued to opine a TTD.  However, he testified that the claimant did not require an assistance device to walk, did not need assistance to get on the examination table and he had no knowledge of any bladder, bowel or sexual dysfunction.  ','In another recent Full Board Review, the claimant’s chiropractor continued to opine a TTD.',0,'2022-04-04 16:02:48','2022-04-04 16:02:48'),(206,46492,46329,'schedule loss','WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part','WCL § 15 provides for an enhanced <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/08/using-the-contralateral-limb-as-a-baseline-for-calculating-schedule-loss-of-use/\">schedule loss</a> of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part','WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part','Temporary total disability becomes especially relevant when the claimant suffered a schedulable injury.  WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part.','WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part.',0,'2022-04-04 16:02:48','2022-04-04 16:02:48'),(207,46492,46387,'schedule loss','WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part','WCL § 15 provides for an enhanced <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\">schedule loss</a> of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part','WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part','Temporary total disability becomes especially relevant when the claimant suffered a schedulable injury.  WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part.','WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part.',0,'2022-04-04 16:02:48','2022-04-04 16:02:48'),(208,46492,46415,'schedule loss of use award','WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part','WCL § 15 provides for an enhanced <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\">schedule loss of use award</a> when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part','WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part','Temporary total disability becomes especially relevant when the claimant suffered a schedulable injury.  WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part.','WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part.',0,'2022-04-04 16:02:48','2022-04-04 16:02:48'),(209,46492,46374,'claimant claimed','On his C-3 the claimant claimed that a piece of steel fell on his right finger cutting it','On his C-3 the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claimant claimed</a> that a piece of steel fell on his right finger cutting it','On his C-3 the claimant claimed that a piece of steel fell on his right finger cutting it','There was no sign of any kind of impairment and we had to consult our file to reaffirm the injury.  On his C-3 the claimant claimed that a piece of steel fell on his right finger cutting it. The claimant only noted a right pointer finger injury.','onsult our file to reaffirm the injury.  On his C-3 the claimant claimed that a piece of steel fell on his right finger cutting it.',0,'2022-04-04 16:02:48','2022-04-04 16:02:48'),(210,46492,46342,'medical opinions','It is well established that differing medical opinions is a matter that is within the New York Workers’ Compensation Board’s discretion to resolve','It is well established that differing <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">medical opinions</a> is a matter that is within the New York Workers’ Compensation Board’s discretion to resolve','It is well established that differing medical opinions is a matter that is within the New York Workers’ Compensation Board’s discretion to resolve','It is well established that differing medical opinions is a matter that is within the New York Workers’ Compensation Board’s discretion to resolve. See Matter of Raffiani v.','It is well established that differing medical opinions is a matter that is within the New York Workers’ Compensation Board’s discretion to resolve.',0,'2022-04-04 16:02:48','2022-04-04 16:02:48'),(211,46492,46342,'medical opinions,','In Medicab/Rochester Inc. the Board Panel, confronted with contrasting medical opinions, considered the 1996 Medical Impairment Guidelines to evaluate degree of disability finding that the claimant did not in fact had a temporary total degree of disability, but a temporary partial disability','In <u>Medicab/Rochester Inc.</u> the Board Panel, confronted with contrasting <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">medical opinions,</a> considered the 1996 Medical Impairment Guidelines to evaluate degree of disability finding that the claimant did not in fact had a temporary total degree of disability, but a temporary partial disability','In <u>Medicab/Rochester Inc.</u> the Board Panel, confronted with contrasting medical opinions, considered the 1996 Medical Impairment Guidelines to evaluate degree of disability finding that the claimant did not in fact had a temporary total degree of disability, but a temporary partial disability','In Medicab/Rochester Inc. the Board Panel, confronted with contrasting medical opinions, considered the 1996 Medical Impairment Guidelines to evaluate degree of disability finding that the claimant did not in fact had a temporary total degree of disability, but a temporary partial disability','In <u>Medicab/Rochester Inc.</u> the Board Panel, confronted with contrasting medical opinions, considered the 1996 Medical Impairment Guidelines to evaluate degree of disability finding that the claimant did not in fact had a temporary total degree of disability, but a temporary partial disability.',0,'2022-04-04 16:02:48','2022-04-04 16:02:48'),(212,46492,46561,'testified that the claimant','However, he testified that the claimant did not require an assistance device to walk, did not need assistance to get on the examination table and he had no knowledge of any bladder, bowel or sexual dysfunction','However, he <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">testified that the claimant</a> did not require an assistance device to walk, did not need assistance to get on the examination table and he had no knowledge of any bladder, bowel or sexual dysfunction','However, he testified that the claimant did not require an assistance device to walk, did not need assistance to get on the examination table and he had no knowledge of any bladder, bowel or sexual dysfunction','In another recent Full Board Review, the claimant’s chiropractor continued to opine a TTD.  However, he testified that the claimant did not require an assistance device to walk, did not need assistance to get on the examination table and he had no knowledge of any bladder, bowel or sexual dysfunction.  No issues with the claimant’s ability to sit, walk or perform daily activities such as driving, cooking, cleaning or personal hygiene was indicated. ','However, he testified that the claimant did not require an assistance device to walk, did not need assistance to get on the examination table and he had no knowledge of any bladder, bowel or sexual dysfunction.',0,'2022-04-04 16:02:48','2022-04-04 16:02:48'),(213,46492,46236,'case law','All the case law referenced above involved claims with back injuries','All the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/client-resources/case-law-updates-lomad-case-law-updates/\">case law</a> referenced above involved claims with back injuries','All the case law referenced above involved claims with back injuries','All the case law referenced above involved claims with back injuries.  Would it not be more efficient if there were definite criteria for treating providers to use to determine temporary degree of disability, especially where injuries could result in SLU awards? ','All the case law referenced above involved claims with back injuries.  Would it not be more efficient if there were definite criteria for treating providers to use to determine temporary degree of disability, especially where injuries',0,'2022-04-04 16:02:48','2022-04-04 16:02:48'),(214,46372,46423,'permanently partially disabled','The Board however limited this holding by consistently finding that Matter of Jacobi, only stands for the proposition that a claimant who has been classified as permanently partially disabled is entitled to benefits at a temporary total disability rate following causally-related surgery.”','The Board however limited this holding by consistently finding that <em>Matter of Jacobi,</em> only stands for the proposition that a claimant who has been classified as <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/02/permanent-partial-disability-safety-netwhat-to-expect-from-wcl-%c2%a735/\">permanently partially disabled</a> is entitled to benefits at a temporary total disability rate following causally-related surgery.”','The Board however limited this holding by consistently finding that <em>Matter of Jacobi,</em> only stands for the proposition that a claimant who has been classified as permanently partially disabled is entitled to benefits at a temporary total disability rate following causally-related surgery.”','The Board however limited this holding by consistently finding that Matter of Jacobi, only stands for the proposition that a claimant who has been classified as permanently partially disabled is entitled to benefits at a temporary total disability rate following causally-related surgery.”  (NYS Dept of Motor Vehicles, 50101459 NYS Wrk Comp 2020). ','The Board however limited this holding by consistently finding that <em>Matter of Jacobi,</em> only stands for the proposition that a claimant who has been classified as permanently partially disabled is entitled to benefits at a temporary total disability rate following causally-related surgery.”',0,'2022-04-04 16:02:49','2022-04-04 16:02:49'),(215,46372,46423,'permanently totally disabled','The opinion of the treating doctor of a total disability is not sufficient to continue the awards at total, because the treating doctor’s opinion that the claimant is permanently totally disabled is well-known and unchanged from','The opinion of the treating doctor of a total disability is not sufficient to continue the awards at total, because the treating doctor’s opinion that the claimant is <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/02/permanent-partial-disability-safety-netwhat-to-expect-from-wcl-%c2%a735/\">permanently totally disabled</a> is well-known and unchanged from','The opinion of the treating doctor of a total disability is not sufficient to continue the awards at total, because the treating doctor’s opinion that the claimant is permanently totally disabled is well-known and unchanged from','The treating doctor’s office opined a total disability in 2014 and the issue of whether the claimant should be reclassified to a permanent total disability was litigated and decided in a 2015 Reserved Decision.  The opinion of the treating doctor of a total disability is not sufficient to continue the awards at total, because the treating doctor’s opinion that the claimant is permanently totally disabled is well-known and unchanged from  before the prior litigation.','the treating doctors opined a total disability throughout the period the claimant was classified and paid with a permanent partial disability.  The treating doctor’s office opined a total disability in 2014 and the issue of whether the claimant should be reclassified to a permanent total disability was litigated and decided in a 2015 Reserved Decision.  The opinion of the treating doctor of a total disability is not sufficient to continue the awards at total, because the treating doctor’s opinion that the claimant is permanently totally disabled is well-known and unchanged from',0,'2022-04-04 16:02:49','2022-04-04 16:02:49'),(216,46372,46374,'claim the claimant','In that claim the claimant was classified with a permanent partial disability, and subsequently underwent a surgery','In that <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claim the claimant</a> was classified with a permanent partial disability, and subsequently underwent a surgery','In that claim the claimant was classified with a permanent partial disability, and subsequently underwent a surgery','(49903741 NY Wrk Comp 2020).  In that claim the claimant was classified with a permanent partial disability, and subsequently underwent a surgery.  The Board found that following the initial period from the surgery, “the record contained insufficient evidence to show that the claimant has low back disability greater than that which he had at the time of the .','ing that same logic, the Board reversed a finding of total disability in <em>Employer: CVS.</em>  (49903741 NY Wrk Comp 2020).  In that claim the claimant was classified with a permanent partial disability, and subsequently underwent a surgery.  The Board found that following the initial period from the surgery',0,'2022-04-04 16:02:49','2022-04-04 16:02:49'),(217,46372,46549,'claimant is permanently totally disabled','The opinion of the treating doctor of a total disability is not sufficient to continue the awards at total, because the treating doctor’s opinion that the claimant is permanently totally disabled is well-known and unchanged from','The opinion of the treating doctor of a total disability is not sufficient to continue the awards at total, because the treating doctor’s opinion that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">claimant is permanently totally disabled</a> is well-known and unchanged from','The opinion of the treating doctor of a total disability is not sufficient to continue the awards at total, because the treating doctor’s opinion that the claimant is permanently totally disabled is well-known and unchanged from','The treating doctor’s office opined a total disability in 2014 and the issue of whether the claimant should be reclassified to a permanent total disability was litigated and decided in a 2015 Reserved Decision.  The opinion of the treating doctor of a total disability is not sufficient to continue the awards at total, because the treating doctor’s opinion that the claimant is permanently totally disabled is well-known and unchanged from  before the prior litigation.','the treating doctors opined a total disability throughout the period the claimant was classified and paid with a permanent partial disability.  The treating doctor’s office opined a total disability in 2014 and the issue of whether the claimant should be reclassified to a permanent total disability was litigated and decided in a 2015 Reserved Decision.  The opinion of the treating doctor of a total disability is not sufficient to continue the awards at total, because the treating doctor’s opinion that the claimant is permanently totally disabled is well-known and unchanged from',0,'2022-04-04 16:02:49','2022-04-04 16:02:49'),(218,46372,46549,'claimant was totally disabled','For example, in Ellicott Development, the treating doctor always opined throughout the file that the claimant was totally disabled from all employment','For example, in <em>Ellicott Development, </em>the treating doctor always opined throughout the file that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">claimant was totally disabled</a> from all employment','For example, in <em>Ellicott Development, </em>the treating doctor always opined throughout the file that the claimant was totally disabled from all employment','The Board has also consistently found post-Jacobi that an opinion of total from a doctor’s office post-surgery is meaningless when the doctor continuously opined that the claimant was totally disabled from all employment despite Board decisions to the contrary in the files.  For example, in Ellicott Development, the treating doctor always opined throughout the file that the claimant was totally disabled from all employment.  The Board discussed that the Reserved Decision finding that the uncontroverted opinion of total from that treating was not sufficient to keep the claimant at a total disability for more than a post-surgical period because it was not credible evidence of post-surgery total disability. ','For example, in <em>Ellicott Development, </em>the treating doctor always opined throughout the file that the claimant was totally disabled from all employment.',0,'2022-04-04 16:02:49','2022-04-04 16:02:49'),(219,46372,46549,'claimant was totally disabled','Similarly, in Buffalo Psychiatric Center, the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr','Similarly, in <em>Buffalo Psychiatric Center, </em>the Board found that for a brief period following surgery the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">claimant was totally disabled</a> per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr','Similarly, in <em>Buffalo Psychiatric Center, </em>the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr','Similarly, in Buffalo Psychiatric Center, the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr. Roger’s continued and uncontroverted opinion that the claimant has a total disability. ','Similarly, in <em>Buffalo Psychiatric Center, </em>the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr.',0,'2022-04-04 16:02:49','2022-04-04 16:02:49'),(220,46372,46553,'total disability throughout the period the claimant','Here, the treating doctors opined a total disability throughout the period the claimant was classified and paid with a permanent partial disability','Here, the treating doctors opined a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">total disability throughout the period the claimant</a> was classified and paid with a permanent partial disability','Here, the treating doctors opined a total disability throughout the period the claimant was classified and paid with a permanent partial disability','Here, the treating doctors opined a total disability throughout the period the claimant was classified and paid with a permanent partial disability.  The treating doctor’s office opined a total disability in 2014 and the issue of whether the claimant should be reclassified to a permanent total disability was litigated and decided in a 2015 Reserved Decision. ','Here, the treating doctors opined a total disability throughout the period the claimant was classified and paid with a permanent partial disability.  The treating doctor’s office opined a total disability in 2014 and the issue of whether the claimant should be reclassified to a permanent total disability was litigated and decided in a 2015 Reserved Decision.  The opinion of the treating doctor of a total disability',0,'2022-04-04 16:02:49','2022-04-04 16:02:49'),(221,46372,46553,'total disability is not sufficient to continue','The opinion of the treating doctor of a total disability is not sufficient to continue the awards at total, because the treating doctor’s opinion that the claimant is permanently totally disabled is well-known and unchanged from','The opinion of the treating doctor of a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">total disability is not sufficient to continue</a> the awards at total, because the treating doctor’s opinion that the claimant is permanently totally disabled is well-known and unchanged from','The opinion of the treating doctor of a total disability is not sufficient to continue the awards at total, because the treating doctor’s opinion that the claimant is permanently totally disabled is well-known and unchanged from','The treating doctor’s office opined a total disability in 2014 and the issue of whether the claimant should be reclassified to a permanent total disability was litigated and decided in a 2015 Reserved Decision.  The opinion of the treating doctor of a total disability is not sufficient to continue the awards at total, because the treating doctor’s opinion that the claimant is permanently totally disabled is well-known and unchanged from  before the prior litigation.','the treating doctors opined a total disability throughout the period the claimant was classified and paid with a permanent partial disability.  The treating doctor’s office opined a total disability in 2014 and the issue of whether the claimant should be reclassified to a permanent total disability was litigated and decided in a 2015 Reserved Decision.  The opinion of the treating doctor of a total disability is not sufficient to continue the awards at total, because the treating doctor’s opinion that the claimant is permanently totally disabled is well-known and unchanged from',0,'2022-04-04 16:02:49','2022-04-04 16:02:49'),(222,46372,46553,'claimant is permanently totally disabled','The opinion of the treating doctor of a total disability is not sufficient to continue the awards at total, because the treating doctor’s opinion that the claimant is permanently totally disabled is well-known and unchanged from','The opinion of the treating doctor of a total disability is not sufficient to continue the awards at total, because the treating doctor’s opinion that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">claimant is permanently totally disabled</a> is well-known and unchanged from','The opinion of the treating doctor of a total disability is not sufficient to continue the awards at total, because the treating doctor’s opinion that the claimant is permanently totally disabled is well-known and unchanged from','The treating doctor’s office opined a total disability in 2014 and the issue of whether the claimant should be reclassified to a permanent total disability was litigated and decided in a 2015 Reserved Decision.  The opinion of the treating doctor of a total disability is not sufficient to continue the awards at total, because the treating doctor’s opinion that the claimant is permanently totally disabled is well-known and unchanged from  before the prior litigation.','the treating doctors opined a total disability throughout the period the claimant was classified and paid with a permanent partial disability.  The treating doctor’s office opined a total disability in 2014 and the issue of whether the claimant should be reclassified to a permanent total disability was litigated and decided in a 2015 Reserved Decision.  The opinion of the treating doctor of a total disability is not sufficient to continue the awards at total, because the treating doctor’s opinion that the claimant is permanently totally disabled is well-known and unchanged from',0,'2022-04-04 16:02:49','2022-04-04 16:02:49'),(223,46372,46553,'claimant was totally disabled','For example, in Ellicott Development, the treating doctor always opined throughout the file that the claimant was totally disabled from all employment','For example, in <em>Ellicott Development, </em>the treating doctor always opined throughout the file that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">claimant was totally disabled</a> from all employment','For example, in <em>Ellicott Development, </em>the treating doctor always opined throughout the file that the claimant was totally disabled from all employment','The Board has also consistently found post-Jacobi that an opinion of total from a doctor’s office post-surgery is meaningless when the doctor continuously opined that the claimant was totally disabled from all employment despite Board decisions to the contrary in the files.  For example, in Ellicott Development, the treating doctor always opined throughout the file that the claimant was totally disabled from all employment.  The Board discussed that the Reserved Decision finding that the uncontroverted opinion of total from that treating was not sufficient to keep the claimant at a total disability for more than a post-surgical period because it was not credible evidence of post-surgery total disability. ','For example, in <em>Ellicott Development, </em>the treating doctor always opined throughout the file that the claimant was totally disabled from all employment.',0,'2022-04-04 16:02:49','2022-04-04 16:02:49'),(224,46372,46553,'claimant was totally disabled','Similarly, in Buffalo Psychiatric Center, the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr','Similarly, in <em>Buffalo Psychiatric Center, </em>the Board found that for a brief period following surgery the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">claimant was totally disabled</a> per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr','Similarly, in <em>Buffalo Psychiatric Center, </em>the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr','Similarly, in Buffalo Psychiatric Center, the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr. Roger’s continued and uncontroverted opinion that the claimant has a total disability. ','Similarly, in <em>Buffalo Psychiatric Center, </em>the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr.',0,'2022-04-04 16:02:49','2022-04-04 16:02:49'),(225,46372,46553,'claimant was totally disabled','Similarly, in Buffalo Psychiatric Center, the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr','Similarly, in <em>Buffalo Psychiatric Center, </em>the Board found that for a brief period following surgery the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">claimant was totally disabled</a> per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr','Similarly, in <em>Buffalo Psychiatric Center, </em>the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr','Similarly, in Buffalo Psychiatric Center, the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr. Roger’s continued and uncontroverted opinion that the claimant has a total disability. ','Similarly, in <em>Buffalo Psychiatric Center, </em>the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr.',0,'2022-04-04 16:02:49','2022-04-04 16:02:49'),(226,46372,46342,'medical opinion','Similarly, in Buffalo Psychiatric Center, the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr','Similarly, in <em>Buffalo Psychiatric Center, </em>the Board found that for a brief period following surgery the claimant was totally disabled per the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">medical opinion</a>, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr','Similarly, in <em>Buffalo Psychiatric Center, </em>the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr','Similarly, in Buffalo Psychiatric Center, the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr. Roger’s continued and uncontroverted opinion that the claimant has a total disability. ','Similarly, in <em>Buffalo Psychiatric Center, </em>the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr.',0,'2022-04-04 16:02:49','2022-04-04 16:02:49'),(227,46372,46422,'treatment the claimant','Similarly, in Buffalo Psychiatric Center, the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr','Similarly, in <em>Buffalo Psychiatric Center, </em>the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">treatment the claimant</a> had a less than total disability despite Dr','Similarly, in <em>Buffalo Psychiatric Center, </em>the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr','Similarly, in Buffalo Psychiatric Center, the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr. Roger’s continued and uncontroverted opinion that the claimant has a total disability. ','Similarly, in <em>Buffalo Psychiatric Center, </em>the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr.',0,'2022-04-04 16:02:49','2022-04-04 16:02:49'),(228,46489,46549,'bills for the treatment will be found','Whether bills for the treatment will be found compensable appears to hinge on whether the referral to the psychologist in the first instance complied with WCL §13-m(2)(a)','Whether <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">bills for the treatment will be found</a> compensable appears to hinge on whether the referral to the psychologist in the first instance complied with WCL §13-m(2)(a)','Whether bills for the treatment will be found compensable appears to hinge on whether the referral to the psychologist in the first instance complied with WCL §13-m(2)(a)','Whether bills for the treatment will be found compensable appears to hinge on whether the referral to the psychologist in the first instance complied with WCL §13-m(2)(a) .  That section requires that psychotherapy be initiated upon the referral of an authorized physician.','Whether bills for the treatment will be found compensable appears to hinge on whether the referral to the psychologist in the first instance complied with WCL §13-m(2)(a) .  That section requires that psychotherapy be initiated upon the referral of an authorized physician. As a result, where a chiropractor referred a claimant for psychotherapy, and a licensed social worker then treated the claimant under the supervision of that psychotherapist, objections to medical bills were found in favor of the carrier because a chiropractor is not an authorized physician pursuant to WCL §13-m(2)(a). <em>See </em>Bletsas Plumbing &amp; Hea',0,'2022-04-04 16:02:51','2022-04-04 16:02:51'),(229,46489,46549,'social worker then treated the claimant','As a result, where a chiropractor referred a claimant for psychotherapy, and a licensed social worker then treated the claimant under the supervision of that psychotherapist, objections to medical bills were found in favor of the carrier because a chiropractor is not an authorized physician pursuant to WCL §13-m(2)(a)','As a result, where a chiropractor referred a claimant for psychotherapy, and a licensed <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">social worker then treated the claimant</a> under the supervision of that psychotherapist, objections to medical bills were found in favor of the carrier because a chiropractor is not an authorized physician pursuant to WCL §13-m(2)(a)','As a result, where a chiropractor referred a claimant for psychotherapy, and a licensed social worker then treated the claimant under the supervision of that psychotherapist, objections to medical bills were found in favor of the carrier because a chiropractor is not an authorized physician pursuant to WCL §13-m(2)(a)','That section requires that psychotherapy be initiated upon the referral of an authorized physician. As a result, where a chiropractor referred a claimant for psychotherapy, and a licensed social worker then treated the claimant under the supervision of that psychotherapist, objections to medical bills were found in favor of the carrier because a chiropractor is not an authorized physician pursuant to WCL §13-m(2)(a). See Bletsas Plumbing & Heating, 2014 N.Y.Wrk.Comp. ','As a result, where a chiropractor referred a claimant for psychotherapy, and a licensed social worker then treated the claimant under the supervision of that psychotherapist, objections to medical bills were found in favor of the carrier because a chiropractor is not an authorized physician pursuant to WCL §13-m(2)(a). <em>See </em>Bletsas Plumbing &amp; Hea',0,'2022-04-04 16:02:51','2022-04-04 16:02:51'),(230,46489,46549,'bills were found','As a result, where a chiropractor referred a claimant for psychotherapy, and a licensed social worker then treated the claimant under the supervision of that psychotherapist, objections to medical bills were found in favor of the carrier because a chiropractor is not an authorized physician pursuant to WCL §13-m(2)(a)','As a result, where a chiropractor referred a claimant for psychotherapy, and a licensed social worker then treated the claimant under the supervision of that psychotherapist, objections to medical <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">bills were found</a> in favor of the carrier because a chiropractor is not an authorized physician pursuant to WCL §13-m(2)(a)','As a result, where a chiropractor referred a claimant for psychotherapy, and a licensed social worker then treated the claimant under the supervision of that psychotherapist, objections to medical bills were found in favor of the carrier because a chiropractor is not an authorized physician pursuant to WCL §13-m(2)(a)','That section requires that psychotherapy be initiated upon the referral of an authorized physician. As a result, where a chiropractor referred a claimant for psychotherapy, and a licensed social worker then treated the claimant under the supervision of that psychotherapist, objections to medical bills were found in favor of the carrier because a chiropractor is not an authorized physician pursuant to WCL §13-m(2)(a). See Bletsas Plumbing & Heating, 2014 N.Y.Wrk.Comp. ','As a result, where a chiropractor referred a claimant for psychotherapy, and a licensed social worker then treated the claimant under the supervision of that psychotherapist, objections to medical bills were found in favor of the carrier because a chiropractor is not an authorized physician pursuant to WCL §13-m(2)(a). <em>See </em>Bletsas Plumbing &amp; Hea',0,'2022-04-04 16:02:51','2022-04-04 16:02:51'),(231,46565,46504,'earning in excess of her former average weekly wage','A vocational rehabilitation expert opined that the claimant was capable of returning to work earning in excess of her former average weekly wage despite her impairment because of her vocational history and educational achievements','A vocational rehabilitation expert opined that the claimant was capable of returning to work <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">earning in excess of her former average weekly wage</a> despite her impairment because of her vocational history and educational achievements','A vocational rehabilitation expert opined that the claimant was capable of returning to work earning in excess of her former average weekly wage despite her impairment because of her vocational history and educational achievements','I posited that the Claimant, who has an impairment which limits her to light or sedentary work, should be found to have a 0% loss of wage earning capacity. A vocational rehabilitation expert opined that the claimant was capable of returning to work earning in excess of her former average weekly wage despite her impairment because of her vocational history and educational achievements. We will see what happens.','argued that this principle should apply to a non-working Claimant. I posited that the Claimant, who has an impairment which limits her to light or sedentary work, should be found to have a 0% loss of wage earning capacity. A vocational rehabilitation expert opined that the claimant was capable of returning to work earning in excess of her former average weekly wage despite her impairment because of her vocational history and educational achievements.',0,'2022-04-04 16:10:42','2022-04-04 16:10:42'),(232,46565,46504,'loss of wage earning capacity','I posited that the Claimant, who has an impairment which limits her to light or sedentary work, should be found to have a 0% loss of wage earning capacity','I posited that the Claimant, who has an impairment which limits her to light or sedentary work, should be found to have a 0% <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">loss of wage earning capacity</a>','I posited that the Claimant, who has an impairment which limits her to light or sedentary work, should be found to have a 0% loss of wage earning capacity','I recently argued that this principle should apply to a non-working Claimant. I posited that the Claimant, who has an impairment which limits her to light or sedentary work, should be found to have a 0% loss of wage earning capacity. A vocational rehabilitation expert opined that the claimant was capable of returning to work earning in excess of her former average weekly wage despite her impairment because of her vocational history and educational achievements.','IMANTS WHO HAVE A 0% LWEC, LOSS OF WAGE EARNING CAPACITY, ARE ENTITLED TO 225 WEEKS OF CAPPED PPD BENEFITS.',0,'2022-04-04 16:10:42','2022-04-04 16:10:42'),(233,46565,46509,'earning in excess of her former average weekly wage','A vocational rehabilitation expert opined that the claimant was capable of returning to work earning in excess of her former average weekly wage despite her impairment because of her vocational history and educational achievements','A vocational rehabilitation expert opined that the claimant was capable of returning to work <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">earning in excess of her former average weekly wage</a> despite her impairment because of her vocational history and educational achievements','A vocational rehabilitation expert opined that the claimant was capable of returning to work earning in excess of her former average weekly wage despite her impairment because of her vocational history and educational achievements','I posited that the Claimant, who has an impairment which limits her to light or sedentary work, should be found to have a 0% loss of wage earning capacity. A vocational rehabilitation expert opined that the claimant was capable of returning to work earning in excess of her former average weekly wage despite her impairment because of her vocational history and educational achievements. We will see what happens.','argued that this principle should apply to a non-working Claimant. I posited that the Claimant, who has an impairment which limits her to light or sedentary work, should be found to have a 0% loss of wage earning capacity. A vocational rehabilitation expert opined that the claimant was capable of returning to work earning in excess of her former average weekly wage despite her impairment because of her vocational history and educational achievements.',0,'2022-04-04 16:10:42','2022-04-04 16:10:42'),(234,46565,46509,'loss of wage earning capacity','I posited that the Claimant, who has an impairment which limits her to light or sedentary work, should be found to have a 0% loss of wage earning capacity','I posited that the Claimant, who has an impairment which limits her to light or sedentary work, should be found to have a 0% <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">loss of wage earning capacity</a>','I posited that the Claimant, who has an impairment which limits her to light or sedentary work, should be found to have a 0% loss of wage earning capacity','I recently argued that this principle should apply to a non-working Claimant. I posited that the Claimant, who has an impairment which limits her to light or sedentary work, should be found to have a 0% loss of wage earning capacity. A vocational rehabilitation expert opined that the claimant was capable of returning to work earning in excess of her former average weekly wage despite her impairment because of her vocational history and educational achievements.','IMANTS WHO HAVE A 0% LWEC, LOSS OF WAGE EARNING CAPACITY, ARE ENTITLED TO 225 WEEKS OF CAPPED PPD BENEFITS.',0,'2022-04-04 16:10:42','2022-04-04 16:10:42'),(235,46565,46371,'claimant was capable of returning to work','A vocational rehabilitation expert opined that the claimant was capable of returning to work earning in excess of her former average weekly wage despite her impairment because of her vocational history and educational achievements','A vocational rehabilitation expert opined that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant was capable of returning to work</a> earning in excess of her former average weekly wage despite her impairment because of her vocational history and educational achievements','A vocational rehabilitation expert opined that the claimant was capable of returning to work earning in excess of her former average weekly wage despite her impairment because of her vocational history and educational achievements','I posited that the Claimant, who has an impairment which limits her to light or sedentary work, should be found to have a 0% loss of wage earning capacity. A vocational rehabilitation expert opined that the claimant was capable of returning to work earning in excess of her former average weekly wage despite her impairment because of her vocational history and educational achievements. We will see what happens.','argued that this principle should apply to a non-working Claimant. I posited that the Claimant, who has an impairment which limits her to light or sedentary work, should be found to have a 0% loss of wage earning capacity. A vocational rehabilitation expert opined that the claimant was capable of returning to work earning in excess of her former average weekly wage despite her impairment because of her vocational history and educational achievements.',0,'2022-04-04 16:10:42','2022-04-04 16:10:42'),(236,46565,46480,'average weekly wage','A vocational rehabilitation expert opined that the claimant was capable of returning to work earning in excess of her former average weekly wage despite her impairment because of her vocational history and educational achievements','A vocational rehabilitation expert opined that the claimant was capable of returning to work earning in excess of her former <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/average-wages/\">average weekly wage</a> despite her impairment because of her vocational history and educational achievements','A vocational rehabilitation expert opined that the claimant was capable of returning to work earning in excess of her former average weekly wage despite her impairment because of her vocational history and educational achievements','I posited that the Claimant, who has an impairment which limits her to light or sedentary work, should be found to have a 0% loss of wage earning capacity. A vocational rehabilitation expert opined that the claimant was capable of returning to work earning in excess of her former average weekly wage despite her impairment because of her vocational history and educational achievements. We will see what happens.','I recently argued that this principle should apply to a non-working Claimant. I posited that the Claimant, who has an impairment which limits her to light or sedentary work, should be found to have a 0% loss of wage earning capacity. A vocational rehabilitation expert opined that the claimant was capable of returning to work earning in excess of her former average weekly wage despite her impairment because of her vocational history and educational achievements.',0,'2022-04-04 16:10:42','2022-04-04 16:10:42'),(237,48691,46421,'workers’ compensation','He has experience in workers’ compensation law, assisting with claims on the claimant side','He has experience in <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation</a> law, assisting with claims on the claimant side','He has experience in workers’ compensation law, assisting with claims on the claimant side','Maxwell has always had ambitions of pursuing a career in law and has dreams of becoming an attorney. He has experience in workers’ compensation law, assisting with claims on the claimant side.','He has experience in workers’ compensation law, assisting with claims on the claimant side.',0,'2022-04-04 16:10:49','2022-04-04 16:10:49'),(238,48691,46486,'workers’ compensation','He has experience in workers’ compensation law, assisting with claims on the claimant side','He has experience in <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> law, assisting with claims on the claimant side','He has experience in workers’ compensation law, assisting with claims on the claimant side','Maxwell has always had ambitions of pursuing a career in law and has dreams of becoming an attorney. He has experience in workers’ compensation law, assisting with claims on the claimant side.','He has experience in workers’ compensation law, assisting with claims on the claimant side.',0,'2022-04-04 16:10:49','2022-04-04 16:10:49'),(239,48691,46512,'workers’ compensation','He has experience in workers’ compensation law, assisting with claims on the claimant side','He has experience in <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> law, assisting with claims on the claimant side','He has experience in workers’ compensation law, assisting with claims on the claimant side','Maxwell has always had ambitions of pursuing a career in law and has dreams of becoming an attorney. He has experience in workers’ compensation law, assisting with claims on the claimant side.','He has experience in workers’ compensation law, assisting with claims on the claimant side.',0,'2022-04-04 16:10:49','2022-04-04 16:10:49'),(240,48691,46555,'workers’ compensation','He has experience in workers’ compensation law, assisting with claims on the claimant side','He has experience in <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> law, assisting with claims on the claimant side','He has experience in workers’ compensation law, assisting with claims on the claimant side','Maxwell has always had ambitions of pursuing a career in law and has dreams of becoming an attorney. He has experience in workers’ compensation law, assisting with claims on the claimant side.','He has experience in workers’ compensation law, assisting with claims on the claimant side.',0,'2022-04-04 16:10:49','2022-04-04 16:10:49'),(241,48691,48276,'compensation law','He has experience in workers’ compensation law, assisting with claims on the claimant side','He has experience in workers’ <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/amherst-workers-compensation-defense-law-office/\">compensation law</a>, assisting with claims on the claimant side','He has experience in workers’ compensation law, assisting with claims on the claimant side','Maxwell has always had ambitions of pursuing a career in law and has dreams of becoming an attorney. He has experience in workers’ compensation law, assisting with claims on the claimant side.','He has experience in workers’ compensation law, assisting with claims on the claimant side.',0,'2022-04-04 16:10:49','2022-04-04 16:10:49'),(242,48691,46374,'claims on the claimant','He has experience in workers’ compensation law, assisting with claims on the claimant side','He has experience in workers’ compensation law, assisting with <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claims on the claimant</a> side','He has experience in workers’ compensation law, assisting with claims on the claimant side','Maxwell has always had ambitions of pursuing a career in law and has dreams of becoming an attorney. He has experience in workers’ compensation law, assisting with claims on the claimant side.','He has experience in workers’ compensation law, assisting with claims on the claimant side.',0,'2022-04-04 16:10:49','2022-04-04 16:10:49'),(243,46502,46543,'specific pharmacological treatments','The NAP MTGs also discuss specific pharmacological treatments','The NAP MTGs also discuss <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\">specific pharmacological treatments</a>','The NAP MTGs also discuss specific pharmacological treatments','The NAP MTGs also discuss specific pharmacological treatments. For example, many employers and carriers will be thrilled to learn that compound creams are not recommended for the treatment of Non-Acute Pain.','The NAP MTGs also discuss specific pharmacological treatments. For example, many employers and carriers will be thrilled to learn that compound creams are not recommended for the treatment of Non-Acute Pain. Additionally, buccally (via the lining of the mouth) delivered fentanyl products, like Actiq ® and Subsys ® are not recommended.',0,'2022-04-04 16:10:51','2022-04-04 16:10:51'),(244,46502,46511,'employers and carriers','For example, many employers and carriers will be thrilled to learn that compound creams are not recommended for the treatment of Non-Acute Pain','For example, many <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">employers and carriers</a> will be thrilled to learn that compound creams are not recommended for the treatment of Non-Acute Pain','For example, many employers and carriers will be thrilled to learn that compound creams are not recommended for the treatment of Non-Acute Pain','The NAP MTGs also discuss specific pharmacological treatments. For example, many employers and carriers will be thrilled to learn that compound creams are not recommended for the treatment of Non-Acute Pain. Additionally, buccally (via the lining of the mouth) delivered fentanyl products, like Actiq ® and Subsys ® are not recommended.','For example, many employers and carriers will be thrilled to learn that compound creams are not recommended for the treatment of Non-Acute Pain.',0,'2022-04-04 16:10:51','2022-04-04 16:10:51'),(245,46502,46546,'employers and carriers','For example, many employers and carriers will be thrilled to learn that compound creams are not recommended for the treatment of Non-Acute Pain','For example, many <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">employers and carriers</a> will be thrilled to learn that compound creams are not recommended for the treatment of Non-Acute Pain','For example, many employers and carriers will be thrilled to learn that compound creams are not recommended for the treatment of Non-Acute Pain','The NAP MTGs also discuss specific pharmacological treatments. For example, many employers and carriers will be thrilled to learn that compound creams are not recommended for the treatment of Non-Acute Pain. Additionally, buccally (via the lining of the mouth) delivered fentanyl products, like Actiq ® and Subsys ® are not recommended.','For example, many employers and carriers will be thrilled to learn that compound creams are not recommended for the treatment of Non-Acute Pain.',0,'2022-04-04 16:10:51','2022-04-04 16:10:51'),(246,46373,46343,'late notice,','By being able to demonstrate that a proper investigation was not able to have taken place because of the late notice, we are in a better position to show prejudice','By being able to demonstrate that a proper investigation was not able to have taken place because of the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/employers-do-not-have-to-prove-prejudice-by-late-notice-but-it-certainly-doesnt-hurt-to-do-so/\">late notice,</a> we are in a better position to show prejudice','By being able to demonstrate that a proper investigation was not able to have taken place because of the late notice, we are in a better position to show prejudice','However, in an effort to show prejudice, it is always helpful to be able to demonstrate that normally there is an investigation that would be undertaken after a reported accident.  By being able to demonstrate that a proper investigation was not able to have taken place because of the late notice, we are in a better position to show prejudice.','By being able to demonstrate that a proper investigation was not able to have taken place because of the late notice, we are in a better position to show prejudice.',0,'2022-04-04 16:32:24','2022-04-04 16:32:24'),(247,46419,46378,'– how does this proposed','However, this raises an interesting question for this author – how does this proposed amendment account for the growing accessibility to a statewide Workers’ Compensation practice due to introduction of virtual hearings','However, this raises an interesting question for this author <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2020/06/proposed-changes-to-%c2%a7%c2%a7300-22-and-300-23-overpayments/\">– how does this proposed</a> amendment account for the growing accessibility to a statewide Workers’ Compensation practice due to introduction of virtual hearings','However, this raises an interesting question for this author – how does this proposed amendment account for the growing accessibility to a statewide Workers’ Compensation practice due to introduction of virtual hearings','Part of the proposed amendment would allow for the Appellate Department where the intern’s activities are taking place to make the determination about whether or not to permit the intern to practice.  However, this raises an interesting question for this author – how does this proposed amendment account for the growing accessibility to a statewide Workers’ Compensation practice due to introduction of virtual hearings? Theoretically, a legal intern’s practice activities could encompass appearances in each Appellate Division.','However, currently the definition of “legal or law interns” is subject to the Third Department Appellate Division’s rules. Part of the proposed amendment would allow for the Appellate Department where the intern’s activities are taking place to make the determination about whether or not to permit the intern to practice.  However, this raises an interesting question for this author – how does this proposed amendment account for the growing accessibility to a statewide Workers’ Compensation practice due to introduction of virtual hearings?',0,'2022-04-04 16:38:16','2022-04-04 16:38:16'),(248,46419,46420,'– how does this proposed amendment','However, this raises an interesting question for this author – how does this proposed amendment account for the growing accessibility to a statewide Workers’ Compensation practice due to introduction of virtual hearings','However, this raises an interesting question for this author <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/10/court-of-appeals-upholds-2013-amendment-to-section-25-a-marking-the-end-for-the-fund-for-reopened-cases/\">– how does this proposed amendment</a> account for the growing accessibility to a statewide Workers’ Compensation practice due to introduction of virtual hearings','However, this raises an interesting question for this author – how does this proposed amendment account for the growing accessibility to a statewide Workers’ Compensation practice due to introduction of virtual hearings','Part of the proposed amendment would allow for the Appellate Department where the intern’s activities are taking place to make the determination about whether or not to permit the intern to practice.  However, this raises an interesting question for this author – how does this proposed amendment account for the growing accessibility to a statewide Workers’ Compensation practice due to introduction of virtual hearings? Theoretically, a legal intern’s practice activities could encompass appearances in each Appellate Division.','However, currently the definition of “legal or law interns” is subject to the Third Department Appellate Division’s rules. Part of the proposed amendment would allow for the Appellate Department where the intern’s activities are taking place to make the determination about whether or not to permit the intern to practice.  However, this raises an interesting question for this author – how does this proposed amendment account for the growing accessibility to a statewide Workers’ Compensation practice due to introduction of virtual hearings?',0,'2022-04-04 16:38:16','2022-04-04 16:38:16'),(249,46419,46369,'applications for review/full board review','Specifically, the amendments would allow the interns – under general supervision of an attorney – to fully participate in informal proceedings, prepare and enter into stipulations other than waiver agreements, and prepare and file applications for review/full board review or rebuttals','Specifically, the amendments would allow the interns – under general supervision of an attorney – to fully participate in informal proceedings, prepare and enter into stipulations other than waiver agreements, and prepare and file <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/02/no-error-of-law-or-fact-in-an-application-for-full-board-review/\">applications for review/full board review</a> or rebuttals','Specifically, the amendments would allow the interns – under general supervision of an attorney – to fully participate in informal proceedings, prepare and enter into stipulations other than waiver agreements, and prepare and file applications for review/full board review or rebuttals','Lastly, the proposed amendments explicitly expand the range of services these interns can provide. Specifically, the amendments would allow the interns – under general supervision of an attorney – to fully participate in informal proceedings, prepare and enter into stipulations other than waiver agreements, and prepare and file applications for review/full board review or rebuttals. The regulations would allow these interns to enter into waiver agreements under immediate supervision of an attorney – which is already defined by the regulation to mean that the attorney be personally present with the intern throughout the hearing.','Specifically, the amendments would allow the interns – under general supervision of an attorney – to fully participate in informal proceedings, prepare and enter into stipulations other than waiver agreements, and prepare and file applications for review/full board review or rebuttals.',0,'2022-04-04 16:38:16','2022-04-04 16:38:16'),(250,46419,46387,'board review','Specifically, the amendments would allow the interns – under general supervision of an attorney – to fully participate in informal proceedings, prepare and enter into stipulations other than waiver agreements, and prepare and file applications for review/full board review or rebuttals','Specifically, the amendments would allow the interns – under general supervision of an attorney – to fully participate in informal proceedings, prepare and enter into stipulations other than waiver agreements, and prepare and file applications for review/full <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\">board review</a> or rebuttals','Specifically, the amendments would allow the interns – under general supervision of an attorney – to fully participate in informal proceedings, prepare and enter into stipulations other than waiver agreements, and prepare and file applications for review/full board review or rebuttals','Lastly, the proposed amendments explicitly expand the range of services these interns can provide. Specifically, the amendments would allow the interns – under general supervision of an attorney – to fully participate in informal proceedings, prepare and enter into stipulations other than waiver agreements, and prepare and file applications for review/full board review or rebuttals. The regulations would allow these interns to enter into waiver agreements under immediate supervision of an attorney – which is already defined by the regulation to mean that the attorney be personally present with the intern throughout the hearing.','Specifically, the amendments would allow the interns – under general supervision of an attorney – to fully participate in informal proceedings, prepare and enter into stipulations other than waiver agreements, and prepare and file applications for review/full board review or rebuttals.',0,'2022-04-04 16:38:16','2022-04-04 16:38:16'),(251,46482,46502,'treatment and deny any opioid medication','(Practitioner’s point: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.)','(<strong>Practitioner’s point</strong>: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">treatment and deny any opioid medication</a> claimant attempts to fill per that evaluation/provider.)','(<strong>Practitioner’s point</strong>: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.)','As these are Board-required forms, these forms should be filed with the Workers’ Compensation Board at the time the provider seeks to begin the opioid trial or continue opioid medications for a claimant being brought into compliance with the Guidelines.  (Practitioner’s point: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.)','<strong>Practitioner’s point</strong>: Failure to provide the opioid risk assessment in the medical report would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(252,46482,46502,'opioids to treat acute pain','The body-site-specific Guidelines also reference brief use following postoperative pain management, but again, note that use beyond 2 to 3 weeks for minor procedures, and 6 weeks for extensive surgical procedures, is the outside limit for use of opioids to treat acute pain','The body-site-specific Guidelines also reference brief use following postoperative pain management, but again, note that use beyond 2 to 3 weeks for minor procedures, and 6 weeks for extensive surgical procedures, is the outside limit for use of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">opioids to treat acute pain</a>','The body-site-specific Guidelines also reference brief use following postoperative pain management, but again, note that use beyond 2 to 3 weeks for minor procedures, and 6 weeks for extensive surgical procedures, is the outside limit for use of opioids to treat acute pain','See, § D.7.g.ii.  The body-site-specific Guidelines also reference brief use following postoperative pain management, but again, note that use beyond 2 to 3 weeks for minor procedures, and 6 weeks for extensive surgical procedures, is the outside limit for use of opioids to treat acute pain.  See, § D.7.g.iii.','the claimant is currently being treated for acute pain, treatment is governed by the body-site-specific Medical Treatment Guideline.  By way of example, when the claimant undergoes a lumbar surgical procedure, Medical Treatment Guidelines for the low back provide that narcotics should be primarily reserved for the treatment of severe back pain with the optimum duration of 3 to 7 days and a maximum duration of two weeks, with use beyond this period only in appropriate cases and any use beyond the maximum two weeks should be documented and justified based on the diagnosis and/or invasive procedures.  <em>See</em>, <u>New York State Workers’ Compensation Board, Mid And Low Back Injury Medical Treatment Guidelines</u>, Third Edition, September 15, 2014, Section D.7.g.  Pursuant to section D.7.g.i, routine use of opioids for acute, subacute, or chronic pain is not recommended.  However, the Guidelines do provide for limited use of opioids in acute situations when there is severe pain and, in conjunction, two or more efficacious treatment modalities.  <em>See</em>, § D.7.g.ii.  Finally, the body-site-specific Medical Treatment Guidelines specifically address when discontinuation is appropriate with one of the factors noted to be use beyond two weeks.  See, § D.7.g.ii.  The body-site-specific Guidelines also reference brief use following postoperative pain management, but again, note that use beyond 2 to 3 weeks for minor procedures, and 6 weeks for extensive surgical procedures, is the outside limit for use of opioids to treat acute pain.  <em>See</em>, § D.7.g.iii.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(253,46482,46502,'treatment is for acute or non-acute','(Practitioner’s point: At this point, objections can be made to the doctor’s bill for noncompliance with the Non-Acute Pain Medical Treatment Guidelines, as well as any script the claimant seeks to fill following this appointment, if the provider has not indicated whether the treatment is for acute or non-acute pain.)','(<strong><em>Practitioner’s point:</em> </strong>At this point, objections can be made to the doctor’s bill for noncompliance with the Non-Acute Pain Medical Treatment Guidelines, as well as any script the claimant seeks to fill following this appointment, if the provider has not indicated whether the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">treatment is for acute or non-acute</a> pain.)','(<strong><em>Practitioner’s point:</em> </strong>At this point, objections can be made to the doctor’s bill for noncompliance with the Non-Acute Pain Medical Treatment Guidelines, as well as any script the claimant seeks to fill following this appointment, if the provider has not indicated whether the treatment is for acute or non-acute pain.)','As such, although you can raise issue to continued medications by filing the appropriate objection, you cannot just stop payment of these medications in the absence of a judicial order.  (Practitioner’s point: At this point, objections can be made to the doctor’s bill for noncompliance with the Non-Acute Pain Medical Treatment Guidelines, as well as any script the claimant seeks to fill following this appointment, if the provider has not indicated whether the treatment is for acute or non-acute pain.)','<strong><em>Practitioner’s point:</em> </strong>At this point, objections can be made to the doctor’s bill for noncompliance with the Non-Acute Pain Medical Treatment Guidelines, as well as any script the claimant seeks to fill following this appointment, if the provider has not indicated whether the treatment is for acute or non-acute pain.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(254,46482,46502,'pain management alternatives before opioids','The patient must fail pain management alternatives before opioids can be considered','The patient must fail <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">pain management alternatives before opioids</a> can be considered','The patient must fail pain management alternatives before opioids can be considered','A significant change to the Guidelines is that when considering opioid use in an opioid-naïve patient, certain criteria must be met before an opioid trial can be commenced.  The patient must fail pain management alternatives before opioids can be considered.  Specifically, § F.2.a.iv states:','the Guidelines is that when considering opioid use in an opioid-naïve patient, certain criteria <u>must</u> be met before an opioid trial can be commenced.  The patient must fail pain management alternatives before opioids can be considered.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(255,46482,46502,'cost of opioid medications','The significant cost of opioid medications is not only borne by carriers, but also by claimants','The significant <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">cost of opioid medications</a> is not only borne by carriers, but also by claimants','The significant cost of opioid medications is not only borne by carriers, but also by claimants','Even the introduction to the Non-Acute Pain Guidelines indicates that the Guidelines were drafted in response to the dramatic increase in use of opioids to treat chronic non-cancer pain.  The significant cost of opioid medications is not only borne by carriers, but also by claimants.  The medication itself is expensive, the risks of use of these medications are significant; add to that the possibility of overdose, and the personal and financial costs become immeasurable.  ','the Workers Compensation Research Institute (WCRI) reported in its publication <u>Interstate Variations In The Use Of Narcotics</u>, Second Edition, following an investigation of 25 states, that it found that New York and Louisiana had the highest amount of narcotic use within Workers’ Compensation cases.<a href=\"#_ftn1\" name=\"_ftnref1\">[1]</a>   A July 2014 report by the CDC indicates that each day 46 people die from an overdose of prescription painkillers in the United States.<a href=\"#_ftn2\" name=\"_ftnref2\">[2]</a>  Finally, as reported by the CDC in 2007, the costs of opioid abuse totaled “about $55.7 billion with 46% attributable to workplace costs (i.e. lost productivity), 45% to healthcare costs (i.e. abuse treatment), and 9% to criminal justice costs.” <a href=\"#_ftn3\" name=\"_ftnref3\">[3]</a>  Even the introduction to the Non-Acute Pain Guidelines indicates that the Guidelines were drafted in response to the dramatic increase in use of opioids to treat chronic non-cancer pain.  The significant cost of opioid medications is not only borne by carriers, but also by claimants.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(256,46482,46502,'treatment with opioid medications','If a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications','If a trial is effective, the provider can then begin the transition from trial to long-term <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">treatment with opioid medications</a>','If a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications','If a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications.  At the time of the transition from trial to long-term use, a full reassessment/reevaluation is to be completed.  ','If a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications.  At the time of the transition from trial to long-term use, a full reassessment/reevaluation is to be completed.  The failure of the provider to do a reassessment/reevaluation would be a valid basis to file an objection to the treatment and raise objection to continuing and transitioning the patient from trial to long-term opioid use.  Section F.2.b.ii provides the criteria necessary for a full reevaluation, which includes but is not limited to: physical and psychological assessment; appropriate referrals based upon complications of the clinical presentation; identifying concurrent non-opioid therapies which are appropriate; a schedule for monitoring and reevaluating the opioid use; compliance with federal and state standards; and, consideration of appropriate referrals for co-morbidities.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(257,46482,46502,'opioids for acute, subacute,','Pursuant to section D.7.g.i, routine use of opioids for acute, subacute, or chronic pain is not recommended','Pursuant to section D.7.g.i, routine use of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">opioids for acute, subacute,</a> or chronic pain is not recommended','Pursuant to section D.7.g.i, routine use of opioids for acute, subacute, or chronic pain is not recommended','See, New York State Workers’ Compensation Board, Mid And Low Back Injury Medical Treatment Guidelines, Third Edition, September 15, 2014, Section D.7.g.  Pursuant to section D.7.g.i, routine use of opioids for acute, subacute, or chronic pain is not recommended.  However, the Guidelines do provide for limited use of opioids in acute situations when there is severe pain and, in conjunction, two or more efficacious treatment modalities.  ','Pursuant to section D.7.g.i, routine use of opioids for acute, subacute, or chronic pain is not recommended.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(258,46482,46502,'pain management treatment','To ensure compliance with all appropriate statutory provisions, be sure to copy all necessary parties to the action (claimant, claimant’s counsel, Workers’ Compensation Board, etc.) and request information related to the provider’s pain management treatment being rendered','To ensure compliance with all appropriate statutory provisions, be sure to copy all necessary parties to the action (claimant, claimant’s counsel, Workers’ Compensation Board, etc.) and request information related to the provider’s <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">pain management treatment</a> being rendered','To ensure compliance with all appropriate statutory provisions, be sure to copy all necessary parties to the action (claimant, claimant’s counsel, Workers’ Compensation Board, etc.) and request information related to the provider’s pain management treatment being rendered','To ensure compliance with all appropriate statutory provisions, be sure to copy all necessary parties to the action (claimant, claimant’s counsel, Workers’ Compensation Board, etc.) and request information related to the provider’s pain management treatment being rendered.  To this end we recommend a few paragraphs addressing:','To ensure compliance with all appropriate statutory provisions, be sure to copy all necessary parties to the action (claimant, claimant’s counsel, Workers’ Compensation Board, etc.) and request information related to the provider’s pain management treatment being rendered.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(259,46482,46502,'costs of opioid','Finally, as reported by the CDC in 2007, the costs of opioid abuse totaled “about $55.7 billion with 46% attributable to workplace costs (i.e','Finally, as reported by the CDC in 2007, the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">costs of opioid</a> abuse totaled “about $55.7 billion with 46% attributable to workplace costs (i.e','Finally, as reported by the CDC in 2007, the costs of opioid abuse totaled “about $55.7 billion with 46% attributable to workplace costs (i.e','A July 2014 report by the CDC indicates that each day 46 people die from an overdose of prescription painkillers in the United States.[2]  Finally, as reported by the CDC in 2007, the costs of opioid abuse totaled “about $55.7 billion with 46% attributable to workplace costs (i.e. lost productivity), 45% to healthcare costs (i.e.','Finally, as reported by the CDC in 2007, the costs of opioid abuse totaled “about $55.7 billion with 46% attributable to workplace costs (i.e. lost productivity), 45% to healthcare costs (i.e. abuse treatment), and 9% to criminal justice costs.” <a href=\"#_ftn3\" name=\"_ftnref3\">[3]</a>  Even the introduction to the Non-Acute Pain Guidelines indicates that the Guidelines were drafted in response to the dramatic increase in use of opioids to treat chronic non-cancer pain.  The significant cost of opioid medications is not only borne by carriers, but also by claimants.  The medication itself is expensive, the risks of use of these medications are significant; add to that the possibility of overdose, and the personal and financial costs become immeasurable.  All of these reasons fashioned the backdrop for the implementation of the Non-Acute Pain Treatment Guideline',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(260,46482,46502,'medication or pain','When there is consideration of more than two opioids, a second opinion from a specialist who is Board-certified in addiction medication or pain medicine is strongly recommended','When there is consideration of more than two opioids, a second opinion from a specialist who is Board-certified in addiction <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">medication or pain</a> medicine is strongly recommended','When there is consideration of more than two opioids, a second opinion from a specialist who is Board-certified in addiction medication or pain medicine is strongly recommended','See, § F.2.c.ii.  When there is consideration of more than two opioids, a second opinion from a specialist who is Board-certified in addiction medication or pain medicine is strongly recommended.  (Practitioner’s point: there is no indication as to who is to obtain a second opinion, so arguably the carrier can schedule and demand compliance with this provision).','When there is consideration of more than two opioids, a second opinion from a specialist who is Board-certified in addiction medication or pain medicine is strongly recommended.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(261,46482,46422,'treatment and deny any opioid medication claimant','(Practitioner’s point: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.)','(<strong>Practitioner’s point</strong>: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">treatment and deny any opioid medication claimant</a> attempts to fill per that evaluation/provider.)','(<strong>Practitioner’s point</strong>: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.)','As these are Board-required forms, these forms should be filed with the Workers’ Compensation Board at the time the provider seeks to begin the opioid trial or continue opioid medications for a claimant being brought into compliance with the Guidelines.  (Practitioner’s point: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.)','<strong>Practitioner’s point</strong>: Failure to provide the opioid risk assessment in the medical report would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(262,46482,46422,'claimant who has been prescribed opioid medications','Initially, all providers, whether treating a claimant who has been prescribed opioid medications for the last 20 years or treating a newly injured claimant with pain management, are required to bring claimants into compliance with the Non-Acute Pain Guidelines','Initially, all providers, whether treating a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">claimant who has been prescribed opioid medications</a> for the last 20 years or treating a newly injured claimant with pain management, are required to bring claimants into compliance with the Non-Acute Pain Guidelines','Initially, all providers, whether treating a claimant who has been prescribed opioid medications for the last 20 years or treating a newly injured claimant with pain management, are required to bring claimants into compliance with the Non-Acute Pain Guidelines','Initially, all providers, whether treating a claimant who has been prescribed opioid medications for the last 20 years or treating a newly injured claimant with pain management, are required to bring claimants into compliance with the Non-Acute Pain Guidelines.  See, Section F.2.b, New York State Workers’ Compensation Board, New York Non-Acute Pain Medical Treatment Guidelines, First Edition, September 15, 2014.  ','Initially, all providers, whether treating a claimant who has been prescribed opioid medications for the last 20 years or treating a newly injured claimant with pain management, are required to bring claimants into compliance with the Non-Acute Pain Guidelines.  <em>See</em>, Section F.2.b, New York State Workers’ Compensation Board, New York Non-Acute Pain Medical Treatment Guidelines, First Edition, September 15, 2014.  This is important because an objection can be filed to the treatment and the continuing medications based upon the provider’s failure to comply with the Non-Acute Pain Medical Treatment Guidelines.  However, it is important to keep in mind that the Guidelines do not provide for complete cessation of opioids, but rather a transition of the claimant’s prior medication regime to one that is in compliance with the standards of the Non-Acute Guidelines.  <em>See</em>, § F.2.b.i.  As such, although you can raise issue to continued medications by filing the appropriate objection, you cannot just stop payment of these medications in the absence of a judicial order.  (<strong><em>Practitioner’s point:</em> </strong>At this point, objections can be made to the doctor’s bill for noncompliance with the Non-Acute Pain Medical Treatment Guidelines',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(263,46482,46422,'state what method of treatment','Once the provider has properly done a full evaluation, the provider should state what method of treatment the provider plans to pursue, i.e','Once the provider has properly done a full evaluation, the provider should <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">state what method of treatment</a> the provider plans to pursue, i.e','Once the provider has properly done a full evaluation, the provider should state what method of treatment the provider plans to pursue, i.e','Once the provider has properly done a full evaluation, the provider should state what method of treatment the provider plans to pursue, i.e. nonpharmacological, pharmacological, or surgically-implanted pain control.','Once the provider has properly done a full evaluation, the provider should state what method of treatment the provider plans to pursue, i.e. nonpharmacological, pharmacological, or surgically-implante',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(264,46482,46422,'treatment with opioid medications','As such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological treatment with opioid medications','As such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">treatment with opioid medications</a>','As such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological treatment with opioid medications','As such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological treatment with opioid medications.  (Practitioner’s point: Failure of the provider to make such a showing, or if the claimant has not undergone appropriate alternatives, an immediate objection to the billed treatment and an objection to any attempt to fill opioid medication should be filed.)','As such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological treatment with opioid medications.  (<strong>Practitioner’s point</strong>: Failure of the provider to make such a showing, or if the claimant has not undergone appropriate alternatives, an immediate objection to the billed treatment and an objection to any attempt to fill opioid medication should be filed.)',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(265,46482,46422,'treatment with opioid medications','If a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications','If a trial is effective, the provider can then begin the transition from trial to long-term <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">treatment with opioid medications</a>','If a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications','If a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications.  At the time of the transition from trial to long-term use, a full reassessment/reevaluation is to be completed.  ','If a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications.  At the time of the transition from trial to long-term use, a full reassessment/reevaluation is to be completed.  The failure of the provider to do a reassessment/reevaluation would be a valid basis to file an objection to the treatment and raise objection to continuing and transitioning the patient from trial to long-term opioid use.  Section F.2.b.ii provides the criteria necessary for a full reevaluation, which includes but is not limited to: physical and psychological assessment; appropriate referrals based upon complications of the clinical presentation; identifying concurrent non-opioid therapies which are appropriate; a schedule for monitoring and reevaluating the opioid use; compliance with federal and state standards; and, consideration of appropriate referrals for co-morbidities.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(266,46482,46503,'treatment and deny any opioid medication','(Practitioner’s point: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.)','(<strong>Practitioner’s point</strong>: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">treatment and deny any opioid medication</a> claimant attempts to fill per that evaluation/provider.)','(<strong>Practitioner’s point</strong>: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.)','As these are Board-required forms, these forms should be filed with the Workers’ Compensation Board at the time the provider seeks to begin the opioid trial or continue opioid medications for a claimant being brought into compliance with the Guidelines.  (Practitioner’s point: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.)','<strong>Practitioner’s point</strong>: Failure to provide the opioid risk assessment in the medical report would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(267,46482,46503,'treatment and the continuing medications','This is important because an objection can be filed to the treatment and the continuing medications based upon the provider’s failure to comply with the Non-Acute Pain Medical Treatment Guidelines','This is important because an objection can be filed to the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">treatment and the continuing medications</a> based upon the provider’s failure to comply with the Non-Acute Pain Medical Treatment Guidelines','This is important because an objection can be filed to the treatment and the continuing medications based upon the provider’s failure to comply with the Non-Acute Pain Medical Treatment Guidelines','See, Section F.2.b, New York State Workers’ Compensation Board, New York Non-Acute Pain Medical Treatment Guidelines, First Edition, September 15, 2014.  This is important because an objection can be filed to the treatment and the continuing medications based upon the provider’s failure to comply with the Non-Acute Pain Medical Treatment Guidelines.  However, it is important to keep in mind that the Guidelines do not provide for complete cessation of opioids, but rather a transition of the claimant’s prior medication regime to one that is in compliance with the standards of the Non-Acute Guidelines.  ','This is important because an objection can be filed to the treatment and the continuing medications based upon the provider’s failure to comply with the Non-Acute Pain Medical Treatment Guidelines.  However, it is important to keep in mind that the Guidelines do not provide for complete cessation of opioids, but rather a transition of the claimant’s prior medication regime to one that is in compliance with the standards of the Non-Acute Guidelines.  <em>See</em>, § F.2.b.i.  As such, although you can raise issue to continued medications by filing the appropriate objection, you cannot just stop payment of these medications in the absence of a judicial order.  (<strong><em>Practitioner’s point:</em> </strong>At this point, objections can be made to the doctor’s bill for noncompliance with the Non-Acute Pain Medical Treatment Guidelines',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(268,46482,46503,'treatment with opioid medications','As such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological treatment with opioid medications','As such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">treatment with opioid medications</a>','As such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological treatment with opioid medications','As such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological treatment with opioid medications.  (Practitioner’s point: Failure of the provider to make such a showing, or if the claimant has not undergone appropriate alternatives, an immediate objection to the billed treatment and an objection to any attempt to fill opioid medication should be filed.)','As such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological treatment with opioid medications.  (<strong>Practitioner’s point</strong>: Failure of the provider to make such a showing, or if the claimant has not undergone appropriate alternatives, an immediate objection to the billed treatment and an objection to any attempt to fill opioid medication should be filed.)',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(269,46482,46503,'treatment with opioid medications','If a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications','If a trial is effective, the provider can then begin the transition from trial to long-term <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">treatment with opioid medications</a>','If a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications','If a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications.  At the time of the transition from trial to long-term use, a full reassessment/reevaluation is to be completed.  ','If a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications.  At the time of the transition from trial to long-term use, a full reassessment/reevaluation is to be completed.  The failure of the provider to do a reassessment/reevaluation would be a valid basis to file an objection to the treatment and raise objection to continuing and transitioning the patient from trial to long-term opioid use.  Section F.2.b.ii provides the criteria necessary for a full reevaluation, which includes but is not limited to: physical and psychological assessment; appropriate referrals based upon complications of the clinical presentation; identifying concurrent non-opioid therapies which are appropriate; a schedule for monitoring and reevaluating the opioid use; compliance with federal and state standards; and, consideration of appropriate referrals for co-morbidities.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(270,46482,46543,'treatment and deny any opioid medication','(Practitioner’s point: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.)','(<strong>Practitioner’s point</strong>: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\">treatment and deny any opioid medication</a> claimant attempts to fill per that evaluation/provider.)','(<strong>Practitioner’s point</strong>: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.)','As these are Board-required forms, these forms should be filed with the Workers’ Compensation Board at the time the provider seeks to begin the opioid trial or continue opioid medications for a claimant being brought into compliance with the Guidelines.  (Practitioner’s point: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.)','<strong>Practitioner’s point</strong>: Failure to provide the opioid risk assessment in the medical report would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(271,46482,46543,'treatment and the continuing medications','This is important because an objection can be filed to the treatment and the continuing medications based upon the provider’s failure to comply with the Non-Acute Pain Medical Treatment Guidelines','This is important because an objection can be filed to the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\">treatment and the continuing medications</a> based upon the provider’s failure to comply with the Non-Acute Pain Medical Treatment Guidelines','This is important because an objection can be filed to the treatment and the continuing medications based upon the provider’s failure to comply with the Non-Acute Pain Medical Treatment Guidelines','See, Section F.2.b, New York State Workers’ Compensation Board, New York Non-Acute Pain Medical Treatment Guidelines, First Edition, September 15, 2014.  This is important because an objection can be filed to the treatment and the continuing medications based upon the provider’s failure to comply with the Non-Acute Pain Medical Treatment Guidelines.  However, it is important to keep in mind that the Guidelines do not provide for complete cessation of opioids, but rather a transition of the claimant’s prior medication regime to one that is in compliance with the standards of the Non-Acute Guidelines.  ','This is important because an objection can be filed to the treatment and the continuing medications based upon the provider’s failure to comply with the Non-Acute Pain Medical Treatment Guidelines.  However, it is important to keep in mind that the Guidelines do not provide for complete cessation of opioids, but rather a transition of the claimant’s prior medication regime to one that is in compliance with the standards of the Non-Acute Guidelines.  <em>See</em>, § F.2.b.i.  As such, although you can raise issue to continued medications by filing the appropriate objection, you cannot just stop payment of these medications in the absence of a judicial order.  (<strong><em>Practitioner’s point:</em> </strong>At this point, objections can be made to the doctor’s bill for noncompliance with the Non-Acute Pain Medical Treatment Guidelines',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(272,46482,46543,'treatment with opioid medications','As such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological treatment with opioid medications','As such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\">treatment with opioid medications</a>','As such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological treatment with opioid medications','As such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological treatment with opioid medications.  (Practitioner’s point: Failure of the provider to make such a showing, or if the claimant has not undergone appropriate alternatives, an immediate objection to the billed treatment and an objection to any attempt to fill opioid medication should be filed.)','As such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological treatment with opioid medications.  (<strong>Practitioner’s point</strong>: Failure of the provider to make such a showing, or if the claimant has not undergone appropriate alternatives, an immediate objection to the billed treatment and an objection to any attempt to fill opioid medication should be filed.)',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(273,46482,46543,'treatment with opioid medications','If a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications','If a trial is effective, the provider can then begin the transition from trial to long-term <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\">treatment with opioid medications</a>','If a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications','If a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications.  At the time of the transition from trial to long-term use, a full reassessment/reevaluation is to be completed.  ','If a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications.  At the time of the transition from trial to long-term use, a full reassessment/reevaluation is to be completed.  The failure of the provider to do a reassessment/reevaluation would be a valid basis to file an objection to the treatment and raise objection to continuing and transitioning the patient from trial to long-term opioid use.  Section F.2.b.ii provides the criteria necessary for a full reevaluation, which includes but is not limited to: physical and psychological assessment; appropriate referrals based upon complications of the clinical presentation; identifying concurrent non-opioid therapies which are appropriate; a schedule for monitoring and reevaluating the opioid use; compliance with federal and state standards; and, consideration of appropriate referrals for co-morbidities.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(274,46482,46506,'treatment and deny any opioid medication','(Practitioner’s point: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.)','(<strong>Practitioner’s point</strong>: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">treatment and deny any opioid medication</a> claimant attempts to fill per that evaluation/provider.)','(<strong>Practitioner’s point</strong>: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.)','As these are Board-required forms, these forms should be filed with the Workers’ Compensation Board at the time the provider seeks to begin the opioid trial or continue opioid medications for a claimant being brought into compliance with the Guidelines.  (Practitioner’s point: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.)','<strong>Practitioner’s point</strong>: Failure to provide the opioid risk assessment in the medical report would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(275,46482,46506,'treatment with opioid medications','As such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological treatment with opioid medications','As such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">treatment with opioid medications</a>','As such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological treatment with opioid medications','As such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological treatment with opioid medications.  (Practitioner’s point: Failure of the provider to make such a showing, or if the claimant has not undergone appropriate alternatives, an immediate objection to the billed treatment and an objection to any attempt to fill opioid medication should be filed.)','As such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological treatment with opioid medications.  (<strong>Practitioner’s point</strong>: Failure of the provider to make such a showing, or if the claimant has not undergone appropriate alternatives, an immediate objection to the billed treatment and an objection to any attempt to fill opioid medication should be filed.)',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(276,46482,46506,'treatment with opioid medications','If a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications','If a trial is effective, the provider can then begin the transition from trial to long-term <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">treatment with opioid medications</a>','If a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications','If a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications.  At the time of the transition from trial to long-term use, a full reassessment/reevaluation is to be completed.  ','If a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications.  At the time of the transition from trial to long-term use, a full reassessment/reevaluation is to be completed.  The failure of the provider to do a reassessment/reevaluation would be a valid basis to file an objection to the treatment and raise objection to continuing and transitioning the patient from trial to long-term opioid use.  Section F.2.b.ii provides the criteria necessary for a full reevaluation, which includes but is not limited to: physical and psychological assessment; appropriate referrals based upon complications of the clinical presentation; identifying concurrent non-opioid therapies which are appropriate; a schedule for monitoring and reevaluating the opioid use; compliance with federal and state standards; and, consideration of appropriate referrals for co-morbidities.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(277,46482,46553,'continue opioid medications for a claimant','As these are Board-required forms, these forms should be filed with the Workers’ Compensation Board at the time the provider seeks to begin the opioid trial or continue opioid medications for a claimant being brought into compliance with the Guidelines','As these are Board-required forms, these forms should be filed with the Workers’ Compensation Board at the time the provider seeks to begin the opioid trial or <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">continue opioid medications for a claimant</a> being brought into compliance with the Guidelines','As these are Board-required forms, these forms should be filed with the Workers’ Compensation Board at the time the provider seeks to begin the opioid trial or continue opioid medications for a claimant being brought into compliance with the Guidelines','These forms are both required documents per the Non-Acute Pain Treatment Guidelines.  As these are Board-required forms, these forms should be filed with the Workers’ Compensation Board at the time the provider seeks to begin the opioid trial or continue opioid medications for a claimant being brought into compliance with the Guidelines.  (Practitioner’s point: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.)','As these are Board-required forms, these forms should be filed with the Workers’ Compensation Board at the time the provider seeks to begin the opioid trial or continue opioid medications for a claimant being brought into compliance with the Guidelines.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(278,46482,46553,'improvement in function','A trial lasts 30 to 60 days, at which time there is to be demonstrated sustained improvement in function and pain with the patient monitored weekly','A trial lasts 30 to 60 days, at which time there is to be demonstrated sustained <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">improvement in function</a> and pain with the patient monitored weekly','A trial lasts 30 to 60 days, at which time there is to be demonstrated sustained improvement in function and pain with the patient monitored weekly','See, § F.2.  A trial lasts 30 to 60 days, at which time there is to be demonstrated sustained improvement in function and pain with the patient monitored weekly.  The goal is a 30% reduction in pain, return to work, an increase in activities of daily living, no significant adverse side effects, and no aberrant drug-related behaviors.  ','aimant has undergone pain management alternatives which have been unsuccessful and opioid medications are pursued, a trial is to be conducted.  <em>See,</em> § F.2.  A trial lasts 30 to 60 days, at which time there is to be demonstrated sustained improvement in function and pain with the patient monitored weekly.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(279,46482,46541,'filed if the practitioner fails to seek','(Practitioner’s point: a denial should be filed if the practitioner fails to seek this treatment by variance.)','(<strong>Practitioner’s point</strong>: a denial should be <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\">filed if the practitioner fails to seek</a> this treatment by variance.)','(<strong>Practitioner’s point</strong>: a denial should be filed if the practitioner fails to seek this treatment by variance.)','Per the Guidelines, buccal-delivered medications (drugs which diffuse through tissues lining the mouth and enter directly into the bloodstream) “should not be used in this population.”  (Practitioner’s point: a denial should be filed if the practitioner fails to seek this treatment by variance.)','<strong>Practitioner’s point</strong>: a denial should be filed if the practitioner fails to seek this treatment by variance.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(280,46482,46541,'filed and the carrier','(Practitioner’s point: If the reports do not demonstrate improvement using the criteria noted above, an objection to treatment should be filed and the carrier should push for discontinuance/tapering if no improvement is demonstrated.)','(<strong><em>Practitioner’s point</em></strong>: If the reports do not demonstrate improvement using the criteria noted above, an objection to treatment should be <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\">filed and the carrier</a> should push for discontinuance/tapering if no improvement is demonstrated.)','(<strong><em>Practitioner’s point</em></strong>: If the reports do not demonstrate improvement using the criteria noted above, an objection to treatment should be filed and the carrier should push for discontinuance/tapering if no improvement is demonstrated.)','The Guidelines further make clear that discontinuance should be done as soon as it becomes clear the patient is not responding to the treatment modality and that there is no requirement of a full 60-day trial period.  (Practitioner’s point: If the reports do not demonstrate improvement using the criteria noted above, an objection to treatment should be filed and the carrier should push for discontinuance/tapering if no improvement is demonstrated.)','<strong><em>Practitioner’s point</em></strong>: If the reports do not demonstrate improvement using the criteria noted above, an objection to treatment should be filed and the carrier should push for discontinuance/tapering if no improvement is demonstrated.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(281,46482,46340,'medication or pain','When there is consideration of more than two opioids, a second opinion from a specialist who is Board-certified in addiction medication or pain medicine is strongly recommended','When there is consideration of more than two opioids, a second opinion from a specialist who is Board-certified in addiction <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\">medication or pain</a> medicine is strongly recommended','When there is consideration of more than two opioids, a second opinion from a specialist who is Board-certified in addiction medication or pain medicine is strongly recommended','See, § F.2.c.ii.  When there is consideration of more than two opioids, a second opinion from a specialist who is Board-certified in addiction medication or pain medicine is strongly recommended.  (Practitioner’s point: there is no indication as to who is to obtain a second opinion, so arguably the carrier can schedule and demand compliance with this provision).','When there is consideration of more than two opioids, a second opinion from a specialist who is Board-certified in addiction medication or pain medicine is strongly recommended.',0,'2022-04-04 17:00:51','2022-04-04 17:00:51'),(282,46508,46236,'case made in New York workers’ compensation law','Everyone active in New York workers’ compensation has probably seen a dozen articles on the sea change this case made in New York workers’ compensation law','Everyone active in New York workers’ compensation has probably seen a dozen articles on the sea change this <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/client-resources/case-law-updates-lomad-case-law-updates/\">case made in New York workers’ compensation law</a>','Everyone active in New York workers’ compensation has probably seen a dozen articles on the sea change this case made in New York workers’ compensation law','New York Neurologic Associates, 19 N.Y.3d 186 (2012). Everyone active in New York workers’ compensation has probably seen a dozen articles on the sea change this case made in New York workers’ compensation law. Permanent Partial Disability claimant’s lost a layer of protection against labor market attachment challenges and cases that sat paying out lifetime PPD benefits suddenly had hope, and a chance, to reign in benefits and force a claimant to produce labor market attachment proofs.','Everyone active in New York workers’ compensation has probably seen a dozen articles on the sea change this case made in New York workers’ compensation law. Permanent Partial Disability claimant’s lost a layer of protection against labor market attachment challenges and cases that sat paying out lifetime PPD benefits suddenly had hope, and a chance, to reign in benefits and force a claimant to produce labor market attachment proofs.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(283,46508,46236,'updating of awards when a PPD case','Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the updating of awards when a PPD case is reopened','Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/client-resources/case-law-updates-lomad-case-law-updates/\">updating of awards when a PPD case</a> is reopened','Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the updating of awards when a PPD case is reopened','When confronted with a claim on involuntary withdrawal or involuntary retirement, carriers and self-insured employers should be prepared to challenge the claimant by demanding proof of labor market attachment in the wake of the claimant’s separation from employment and try to avoid the invocation of Zamora’s “permissible inference” about ongoing lost wages after separation. Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the updating of awards when a PPD case is reopened.','Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the updating of awards when a PPD case is reopened.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(284,46508,46236,'case law','Recent Board Panel case law established that a finding of involuntary withdrawal, or involuntary retirement only opens the door to post-separation indemnity benefits; and to get through that door the claimant must make a showing of attachment to the labor market in the first instance, and also as benefits continue provided that the case is reopened','Recent Board Panel <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/client-resources/case-law-updates-lomad-case-law-updates/\">case law</a> established that a finding of involuntary withdrawal, or involuntary retirement only opens the door to post-separation indemnity benefits; and to get through that door the claimant must make a showing of attachment to the labor market in the first instance, and also as benefits continue provided that the case is reopened','Recent Board Panel case law established that a finding of involuntary withdrawal, or involuntary retirement only opens the door to post-separation indemnity benefits; and to get through that door the claimant must make a showing of attachment to the labor market in the first instance, and also as benefits continue provided that the case is reopened','After a brief evolution in legal analyses, the Board confirmed that even after a finding of involuntary withdrawal, a claimant’s benefits are still subject to a challenge under American Axle provided the claim is properly before the Board. Recent Board Panel case law established that a finding of involuntary withdrawal, or involuntary retirement only opens the door to post-separation indemnity benefits; and to get through that door the claimant must make a showing of attachment to the labor market in the first instance, and also as benefits continue provided that the case is reopened. County of Nassau, 2013 NY Wrk Comp.','Recent Board Panel case law established that a finding of involuntary withdrawal, or involuntary retirement only opens the door to post-separation indemnity benefits; and to get through that door the claimant must make a showing of attachment to the labor market in the first instance, and also as benefits continue provided that the case is reopened.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(285,46508,46448,'attachment to the labor market','Recent Board Panel case law established that a finding of involuntary withdrawal, or involuntary retirement only opens the door to post-separation indemnity benefits; and to get through that door the claimant must make a showing of attachment to the labor market in the first instance, and also as benefits continue provided that the case is reopened','Recent Board Panel case law established that a finding of involuntary withdrawal, or involuntary retirement only opens the door to post-separation indemnity benefits; and to get through that door the claimant must make a showing of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/09/labor-market-attachment-refresher/\">attachment to the labor market</a> in the first instance, and also as benefits continue provided that the case is reopened','Recent Board Panel case law established that a finding of involuntary withdrawal, or involuntary retirement only opens the door to post-separation indemnity benefits; and to get through that door the claimant must make a showing of attachment to the labor market in the first instance, and also as benefits continue provided that the case is reopened','After a brief evolution in legal analyses, the Board confirmed that even after a finding of involuntary withdrawal, a claimant’s benefits are still subject to a challenge under American Axle provided the claim is properly before the Board. Recent Board Panel case law established that a finding of involuntary withdrawal, or involuntary retirement only opens the door to post-separation indemnity benefits; and to get through that door the claimant must make a showing of attachment to the labor market in the first instance, and also as benefits continue provided that the case is reopened. County of Nassau, 2013 NY Wrk Comp.','Recent Board Panel case law established that a finding of involuntary withdrawal, or involuntary retirement only opens the door to post-separation indemnity benefits; and to get through that door the claimant must make a showing of attachment to the labor market in the first instance, and also as benefits continue provided that the case is reopened.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(286,46508,46448,'labor market attachment','When confronted with a claim on involuntary withdrawal or involuntary retirement, carriers and self-insured employers should be prepared to challenge the claimant by demanding proof of labor market attachment in the wake of the claimant’s separation from employment and try to avoid the invocation of Zamora’s “permissible inference” about ongoing lost wages after separation','When confronted with a claim on involuntary withdrawal or involuntary retirement, carriers and self-insured employers should be prepared to challenge the claimant by demanding proof of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/09/labor-market-attachment-refresher/\">labor market attachment</a> in the wake of the claimant’s separation from employment and try to avoid the invocation of Zamora’s “permissible inference” about ongoing lost wages after separation','When confronted with a claim on involuntary withdrawal or involuntary retirement, carriers and self-insured employers should be prepared to challenge the claimant by demanding proof of labor market attachment in the wake of the claimant’s separation from employment and try to avoid the invocation of Zamora’s “permissible inference” about ongoing lost wages after separation','When confronted with a claim on involuntary withdrawal or involuntary retirement, carriers and self-insured employers should be prepared to challenge the claimant by demanding proof of labor market attachment in the wake of the claimant’s separation from employment and try to avoid the invocation of Zamora’s “permissible inference” about ongoing lost wages after separation. Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the updating of awards when a PPD case is reopened.','When confronted with a claim on involuntary withdrawal or involuntary retirement, carriers and self-insured employers should be prepared to challenge the claimant by demanding proof of labor market attachment in the wake of the claimant’s separation from employment and try to avoid the invocation of Zamora’s “permissible inference” about ongoing lost wages after separation.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(287,46508,46448,'attachment to labor','the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:','the claimant’s [subsequent] loss of wages is due to her lack of demonstrated <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/09/labor-market-attachment-refresher/\">attachment to labor</a> market.” In reciting the facts, the Board noted that:','the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:','. . the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:','The final evolution of the Board’s assimilation of Zamorafor PPD cases is illustrated in County of Nassau, 2013 NY Wrk Comp. 20702386. In Nassau the Board held that although the record demonstrated that the claimant’s permanent partial disability “cause or contributed to her retirement . . . the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(288,46508,46448,'labor market','At the trial level, the Law Judge found that the claimant voluntarily withdrew from the labor market and closed the case','At the trial level, the Law Judge found that the claimant voluntarily withdrew from the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/09/labor-market-attachment-refresher/\">labor market</a> and closed the case','At the trial level, the Law Judge found that the claimant voluntarily withdrew from the labor market and closed the case','The claimant subsequently retired, apparently to preserve what vested retirement rights he had at the time, and turned to the workers’ compensation Board seeking a compensable retirement. At the trial level, the Law Judge found that the claimant voluntarily withdrew from the labor market and closed the case. On appeal, the Board reversed, ruling that Zamora now required claimant’s to both show that the work-related disability was the reason for separation from employment and that the claimant has found “alternate work consistent with his or her physical limitations, or at least [show] reasonable efforts at finding such work.” Id.','ation law and opened PPD claims to challenges on labor market attachment (provided you can get the case',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(289,46508,46546,'carrier did have a defense to such a claim','A carrier did have a defense to such a claim, but the standard of proof was practically unreachable in most cases','A <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">carrier did have a defense to such a claim</a>, but the standard of proof was practically unreachable in most cases','A carrier did have a defense to such a claim, but the standard of proof was practically unreachable in most cases','A carrier did have a defense to such a claim, but the standard of proof was practically unreachable in most cases. To rebut the mandatory inference of Pittman a carrier had to produce direct and positive proof that something other than the disability was the sole cause of claimant’s reduced earning capacity after retirement.','A carrier did have a defense to such a claim, but the standard of proof was practically unreachable in most cases.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(290,46508,46546,'claim ongoing benefits after a separation from employment','Claimants can no longer rely on low standards of proof and improperly shifted burdens to claim ongoing benefits after a separation from employment simply because they are classified','Claimants can no longer rely on low standards of proof and improperly shifted burdens to <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">claim ongoing benefits after a separation from employment</a> simply because they are classified','Claimants can no longer rely on low standards of proof and improperly shifted burdens to claim ongoing benefits after a separation from employment simply because they are classified','Claimants can no longer rely on low standards of proof and improperly shifted burdens to claim ongoing benefits after a separation from employment simply because they are classified. When litigating involuntary withdrawal and compensable retirement claims, counsel can now force the claimant to make a higher showing at the outset and, even if initially unsuccessful, can nonetheless force a claimant to produce proof of attachment to the labor market each time the claim reopens.','Claimants can no longer rely on low standards of proof and improperly shifted burdens to claim ongoing benefits after a separation from employment simply because they are classified.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(291,46508,46546,'attachment to the labor market','Recent Board Panel case law established that a finding of involuntary withdrawal, or involuntary retirement only opens the door to post-separation indemnity benefits; and to get through that door the claimant must make a showing of attachment to the labor market in the first instance, and also as benefits continue provided that the case is reopened','Recent Board Panel case law established that a finding of involuntary withdrawal, or involuntary retirement only opens the door to post-separation indemnity benefits; and to get through that door the claimant must make a showing of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">attachment to the labor market</a> in the first instance, and also as benefits continue provided that the case is reopened','Recent Board Panel case law established that a finding of involuntary withdrawal, or involuntary retirement only opens the door to post-separation indemnity benefits; and to get through that door the claimant must make a showing of attachment to the labor market in the first instance, and also as benefits continue provided that the case is reopened','After a brief evolution in legal analyses, the Board confirmed that even after a finding of involuntary withdrawal, a claimant’s benefits are still subject to a challenge under American Axle provided the claim is properly before the Board. Recent Board Panel case law established that a finding of involuntary withdrawal, or involuntary retirement only opens the door to post-separation indemnity benefits; and to get through that door the claimant must make a showing of attachment to the labor market in the first instance, and also as benefits continue provided that the case is reopened. County of Nassau, 2013 NY Wrk Comp.','Recent Board Panel case law established that a finding of involuntary withdrawal, or involuntary retirement only opens the door to post-separation indemnity benefits; and to get through that door the claimant must make a showing of attachment to the labor market in the first instance, and also as benefits continue provided that the case is reopened.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(292,46508,46546,'employment or otherwise remain attached','So while a PPD claimant might be able to shake off American Axle, an unclassified claimant gets no benefit from a finding of involuntary withdrawal and must continue to seek employment or otherwise remain attached','So while a PPD claimant might be able to shake off American Axle, an unclassified claimant gets no benefit from a finding of involuntary withdrawal and must continue to seek <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">employment or otherwise remain attached</a>','So while a PPD claimant might be able to shake off American Axle, an unclassified claimant gets no benefit from a finding of involuntary withdrawal and must continue to seek employment or otherwise remain attached','(internal citations omitted). So while a PPD claimant might be able to shake off American Axle, an unclassified claimant gets no benefit from a finding of involuntary withdrawal and must continue to seek employment or otherwise remain attached.','So while a PPD claimant might be able to shake off American Axle, an unclassified claimant gets no benefit from a finding of involuntary withdrawal and must continue to seek employment or otherwise remain attached.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(293,46508,46546,'attachment to labor','the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:','the claimant’s [subsequent] loss of wages is due to her lack of demonstrated <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">attachment to labor</a> market.” In reciting the facts, the Board noted that:','the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:','. . the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:','The final evolution of the Board’s assimilation of Zamorafor PPD cases is illustrated in County of Nassau, 2013 NY Wrk Comp. 20702386. In Nassau the Board held that although the record demonstrated that the claimant’s permanent partial disability “cause or contributed to her retirement . . . the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(294,46508,46546,'labor market','At the trial level, the Law Judge found that the claimant voluntarily withdrew from the labor market and closed the case','At the trial level, the Law Judge found that the claimant voluntarily withdrew from the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">labor market</a> and closed the case','At the trial level, the Law Judge found that the claimant voluntarily withdrew from the labor market and closed the case','The claimant subsequently retired, apparently to preserve what vested retirement rights he had at the time, and turned to the workers’ compensation Board seeking a compensable retirement. At the trial level, the Law Judge found that the claimant voluntarily withdrew from the labor market and closed the case. On appeal, the Board reversed, ruling that Zamora now required claimant’s to both show that the work-related disability was the reason for separation from employment and that the claimant has found “alternate work consistent with his or her physical limitations, or at least [show] reasonable efforts at finding such work.” Id.','ation law and opened PPD claims to challenges on labor market attachment (provided you can get the case',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(295,46508,46383,'claimant by demanding proof of labor market attachment','When confronted with a claim on involuntary withdrawal or involuntary retirement, carriers and self-insured employers should be prepared to challenge the claimant by demanding proof of labor market attachment in the wake of the claimant’s separation from employment and try to avoid the invocation of Zamora’s “permissible inference” about ongoing lost wages after separation','When confronted with a claim on involuntary withdrawal or involuntary retirement, carriers and self-insured employers should be prepared to challenge the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/\">claimant by demanding proof of labor market attachment</a> in the wake of the claimant’s separation from employment and try to avoid the invocation of Zamora’s “permissible inference” about ongoing lost wages after separation','When confronted with a claim on involuntary withdrawal or involuntary retirement, carriers and self-insured employers should be prepared to challenge the claimant by demanding proof of labor market attachment in the wake of the claimant’s separation from employment and try to avoid the invocation of Zamora’s “permissible inference” about ongoing lost wages after separation','When confronted with a claim on involuntary withdrawal or involuntary retirement, carriers and self-insured employers should be prepared to challenge the claimant by demanding proof of labor market attachment in the wake of the claimant’s separation from employment and try to avoid the invocation of Zamora’s “permissible inference” about ongoing lost wages after separation. Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the updating of awards when a PPD case is reopened.','When confronted with a claim on involuntary withdrawal or involuntary retirement, carriers and self-insured employers should be prepared to challenge the claimant by demanding proof of labor market attachment in the wake of the claimant’s separation from employment and try to avoid the invocation of Zamora’s “permissible inference” about ongoing lost wages after separation.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(296,46508,46383,'claimant voluntarily withdrew from the labor market','At the trial level, the Law Judge found that the claimant voluntarily withdrew from the labor market and closed the case','At the trial level, the Law Judge found that the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/\">claimant voluntarily withdrew from the labor market</a> and closed the case','At the trial level, the Law Judge found that the claimant voluntarily withdrew from the labor market and closed the case','The claimant subsequently retired, apparently to preserve what vested retirement rights he had at the time, and turned to the workers’ compensation Board seeking a compensable retirement. At the trial level, the Law Judge found that the claimant voluntarily withdrew from the labor market and closed the case. On appeal, the Board reversed, ruling that Zamora now required claimant’s to both show that the work-related disability was the reason for separation from employment and that the claimant has found “alternate work consistent with his or her physical limitations, or at least [show] reasonable efforts at finding such work.” Id.','ater sent a letter by his employer informing him that he would be “removed from payroll” because he had missed more than one year of work. The claimant subsequently retired, apparently to preserve what vested retirement rights he had at the time, and turned to the workers’ compensation Board seeking a compensable retirement. At the trial level, the Law Judge found that the claimant voluntarily withdrew from the labor market and closed the case.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(297,46508,46383,'attachment to labor','the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:','the claimant’s [subsequent] loss of wages is due to her lack of demonstrated <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/\">attachment to labor</a> market.” In reciting the facts, the Board noted that:','the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:','. . the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:','The final evolution of the Board’s assimilation of Zamorafor PPD cases is illustrated in County of Nassau, 2013 NY Wrk Comp. 20702386. In Nassau the Board held that although the record demonstrated that the claimant’s permanent partial disability “cause or contributed to her retirement . . . the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(298,46508,46341,'labor market attachment','When confronted with a claim on involuntary withdrawal or involuntary retirement, carriers and self-insured employers should be prepared to challenge the claimant by demanding proof of labor market attachment in the wake of the claimant’s separation from employment and try to avoid the invocation of Zamora’s “permissible inference” about ongoing lost wages after separation','When confronted with a claim on involuntary withdrawal or involuntary retirement, carriers and self-insured employers should be prepared to challenge the claimant by demanding proof of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/labor-market-attachment-and-retirement/\">labor market attachment</a> in the wake of the claimant’s separation from employment and try to avoid the invocation of Zamora’s “permissible inference” about ongoing lost wages after separation','When confronted with a claim on involuntary withdrawal or involuntary retirement, carriers and self-insured employers should be prepared to challenge the claimant by demanding proof of labor market attachment in the wake of the claimant’s separation from employment and try to avoid the invocation of Zamora’s “permissible inference” about ongoing lost wages after separation','When confronted with a claim on involuntary withdrawal or involuntary retirement, carriers and self-insured employers should be prepared to challenge the claimant by demanding proof of labor market attachment in the wake of the claimant’s separation from employment and try to avoid the invocation of Zamora’s “permissible inference” about ongoing lost wages after separation. Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the updating of awards when a PPD case is reopened.','When confronted with a claim on involuntary withdrawal or involuntary retirement, carriers and self-insured employers should be prepared to challenge the claimant by demanding proof of labor market attachment in the wake of the claimant’s separation from employment and try to avoid the invocation of Zamora’s “permissible inference” about ongoing lost wages after separation.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(299,46508,46341,'attachment to labor','the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:','the claimant’s [subsequent] loss of wages is due to her lack of demonstrated <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/labor-market-attachment-and-retirement/\">attachment to labor</a> market.” In reciting the facts, the Board noted that:','the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:','. . the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:','The final evolution of the Board’s assimilation of Zamorafor PPD cases is illustrated in County of Nassau, 2013 NY Wrk Comp. 20702386. In Nassau the Board held that although the record demonstrated that the claimant’s permanent partial disability “cause or contributed to her retirement . . . the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(300,46508,46341,'labor market','At the trial level, the Law Judge found that the claimant voluntarily withdrew from the labor market and closed the case','At the trial level, the Law Judge found that the claimant voluntarily withdrew from the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/labor-market-attachment-and-retirement/\">labor market</a> and closed the case','At the trial level, the Law Judge found that the claimant voluntarily withdrew from the labor market and closed the case','The claimant subsequently retired, apparently to preserve what vested retirement rights he had at the time, and turned to the workers’ compensation Board seeking a compensable retirement. At the trial level, the Law Judge found that the claimant voluntarily withdrew from the labor market and closed the case. On appeal, the Board reversed, ruling that Zamora now required claimant’s to both show that the work-related disability was the reason for separation from employment and that the claimant has found “alternate work consistent with his or her physical limitations, or at least [show] reasonable efforts at finding such work.” Id.','ation law and opened PPD claims to challenges on labor market attachment (provided you can get the case',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(301,46508,46420,'case is reopened','Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the updating of awards when a PPD case is reopened','Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the updating of awards when a PPD <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/court-of-appeals-upholds-2013-amendment-to-section-25-a-marking-the-end-for-the-fund-for-reopened-cases/\">case is reopened</a>','Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the updating of awards when a PPD case is reopened','When confronted with a claim on involuntary withdrawal or involuntary retirement, carriers and self-insured employers should be prepared to challenge the claimant by demanding proof of labor market attachment in the wake of the claimant’s separation from employment and try to avoid the invocation of Zamora’s “permissible inference” about ongoing lost wages after separation. Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the updating of awards when a PPD case is reopened.','even after a finding of involuntary withdrawal, a claimant’s benefits are still subject to a challenge under American Axle provided the claim is properly before the Board. Recent Board Panel case law established that a finding of involuntary withdrawal, or involuntary retirement only opens the door to post-separation indemnity benefits; and to get through that door the claimant must make a showing of attachment to the labor market in the first instance, and also as benefits continue provided that the case is reopened. County of Nassau, 2013 NY Wrk Comp. 20702386; Monroe Muffler &amp; Brake, 2013 NY Wrk. Comp. 99506849.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(302,46508,46439,'case is reopened','Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the updating of awards when a PPD case is reopened','Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the updating of awards when a PPD <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2016/04/reopened-cases/\">case is reopened</a>','Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the updating of awards when a PPD case is reopened','When confronted with a claim on involuntary withdrawal or involuntary retirement, carriers and self-insured employers should be prepared to challenge the claimant by demanding proof of labor market attachment in the wake of the claimant’s separation from employment and try to avoid the invocation of Zamora’s “permissible inference” about ongoing lost wages after separation. Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the updating of awards when a PPD case is reopened.','even after a finding of involuntary withdrawal, a claimant’s benefits are still subject to a challenge under American Axle provided the claim is properly before the Board. Recent Board Panel case law established that a finding of involuntary withdrawal, or involuntary retirement only opens the door to post-separation indemnity benefits; and to get through that door the claimant must make a showing of attachment to the labor market in the first instance, and also as benefits continue provided that the case is reopened. County of Nassau, 2013 NY Wrk Comp. 20702386; Monroe Muffler &amp; Brake, 2013 NY Wrk. Comp. 99506849.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(303,46508,46541,'case is reopened','Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the updating of awards when a PPD case is reopened','Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the updating of awards when a PPD <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\">case is reopened</a>','Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the updating of awards when a PPD case is reopened','When confronted with a claim on involuntary withdrawal or involuntary retirement, carriers and self-insured employers should be prepared to challenge the claimant by demanding proof of labor market attachment in the wake of the claimant’s separation from employment and try to avoid the invocation of Zamora’s “permissible inference” about ongoing lost wages after separation. Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the updating of awards when a PPD case is reopened.','even after a finding of involuntary withdrawal, a claimant’s benefits are still subject to a challenge under American Axle provided the claim is properly before the Board. Recent Board Panel case law established that a finding of involuntary withdrawal, or involuntary retirement only opens the door to post-separation indemnity benefits; and to get through that door the claimant must make a showing of attachment to the labor market in the first instance, and also as benefits continue provided that the case is reopened. County of Nassau, 2013 NY Wrk Comp. 20702386; Monroe Muffler &amp; Brake, 2013 NY Wrk. Comp. 99506849.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(304,46508,46421,'workers’ compensation','Employers who can control the terms of their retirement policies and plans should seek to close out the first leg of the trifecta by including terms offsetting retirement payments or pension payments against cotemporaneous workers’ compensation awards, and requiring all employees to certify under penalty of perjury that they are not retiring due to a work-related injury before being granted a retirement or pension','Employers who can control the terms of their retirement policies and plans should seek to close out the first leg of the trifecta by including terms offsetting retirement payments or pension payments against cotemporaneous <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation</a> awards, and requiring all employees to certify under penalty of perjury that they are not retiring due to a work-related injury before being granted a retirement or pension','Employers who can control the terms of their retirement policies and plans should seek to close out the first leg of the trifecta by including terms offsetting retirement payments or pension payments against cotemporaneous workers’ compensation awards, and requiring all employees to certify under penalty of perjury that they are not retiring due to a work-related injury before being granted a retirement or pension','Employers who can control the terms of their retirement policies and plans should seek to close out the first leg of the trifecta by including terms offsetting retirement payments or pension payments against cotemporaneous workers’ compensation awards, and requiring all employees to certify under penalty of perjury that they are not retiring due to a work-related injury before being granted a retirement or pension. Incentive retirement offers should be similarly structured and should also require a claimant’s certification for his reason to retire to act as a disincentive to a subsequent claim for a compensable retirement through the Workers’ Compensation Board.','Employers who can control the terms of their retirement policies and plans should seek to close out the first leg of the trifecta by including terms offsetting retirement payments or pension payments against cotemporaneous workers’ compensation awards, and requiring all employees to certify under penalty of perjury that they are not retiring due to a work-related injury before being granted a retirement or pension.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(305,46508,46486,'workers’ compensation','Employers who can control the terms of their retirement policies and plans should seek to close out the first leg of the trifecta by including terms offsetting retirement payments or pension payments against cotemporaneous workers’ compensation awards, and requiring all employees to certify under penalty of perjury that they are not retiring due to a work-related injury before being granted a retirement or pension','Employers who can control the terms of their retirement policies and plans should seek to close out the first leg of the trifecta by including terms offsetting retirement payments or pension payments against cotemporaneous <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> awards, and requiring all employees to certify under penalty of perjury that they are not retiring due to a work-related injury before being granted a retirement or pension','Employers who can control the terms of their retirement policies and plans should seek to close out the first leg of the trifecta by including terms offsetting retirement payments or pension payments against cotemporaneous workers’ compensation awards, and requiring all employees to certify under penalty of perjury that they are not retiring due to a work-related injury before being granted a retirement or pension','Employers who can control the terms of their retirement policies and plans should seek to close out the first leg of the trifecta by including terms offsetting retirement payments or pension payments against cotemporaneous workers’ compensation awards, and requiring all employees to certify under penalty of perjury that they are not retiring due to a work-related injury before being granted a retirement or pension. Incentive retirement offers should be similarly structured and should also require a claimant’s certification for his reason to retire to act as a disincentive to a subsequent claim for a compensable retirement through the Workers’ Compensation Board.','Employers who can control the terms of their retirement policies and plans should seek to close out the first leg of the trifecta by including terms offsetting retirement payments or pension payments against cotemporaneous workers’ compensation awards, and requiring all employees to certify under penalty of perjury that they are not retiring due to a work-related injury before being granted a retirement or pension.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(306,46508,46511,'carrier did have a defense to such a claim','A carrier did have a defense to such a claim, but the standard of proof was practically unreachable in most cases','A <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">carrier did have a defense to such a claim</a>, but the standard of proof was practically unreachable in most cases','A carrier did have a defense to such a claim, but the standard of proof was practically unreachable in most cases','A carrier did have a defense to such a claim, but the standard of proof was practically unreachable in most cases. To rebut the mandatory inference of Pittman a carrier had to produce direct and positive proof that something other than the disability was the sole cause of claimant’s reduced earning capacity after retirement.','A carrier did have a defense to such a claim, but the standard of proof was practically unreachable in most cases.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(307,46508,46511,'claim ongoing benefits after a separation from employment','Claimants can no longer rely on low standards of proof and improperly shifted burdens to claim ongoing benefits after a separation from employment simply because they are classified','Claimants can no longer rely on low standards of proof and improperly shifted burdens to <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">claim ongoing benefits after a separation from employment</a> simply because they are classified','Claimants can no longer rely on low standards of proof and improperly shifted burdens to claim ongoing benefits after a separation from employment simply because they are classified','Claimants can no longer rely on low standards of proof and improperly shifted burdens to claim ongoing benefits after a separation from employment simply because they are classified. When litigating involuntary withdrawal and compensable retirement claims, counsel can now force the claimant to make a higher showing at the outset and, even if initially unsuccessful, can nonetheless force a claimant to produce proof of attachment to the labor market each time the claim reopens.','Claimants can no longer rely on low standards of proof and improperly shifted burdens to claim ongoing benefits after a separation from employment simply because they are classified.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(308,46508,46511,'employment or otherwise remain','So while a PPD claimant might be able to shake off American Axle, an unclassified claimant gets no benefit from a finding of involuntary withdrawal and must continue to seek employment or otherwise remain attached','So while a PPD claimant might be able to shake off American Axle, an unclassified claimant gets no benefit from a finding of involuntary withdrawal and must continue to seek <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">employment or otherwise remain</a> attached','So while a PPD claimant might be able to shake off American Axle, an unclassified claimant gets no benefit from a finding of involuntary withdrawal and must continue to seek employment or otherwise remain attached','(internal citations omitted). So while a PPD claimant might be able to shake off American Axle, an unclassified claimant gets no benefit from a finding of involuntary withdrawal and must continue to seek employment or otherwise remain attached.','So while a PPD claimant might be able to shake off American Axle, an unclassified claimant gets no benefit from a finding of involuntary withdrawal and must continue to seek employment or otherwise remain attached.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(309,46508,46504,'loss of wages','the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:','the claimant’s [subsequent] <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">loss of wages</a> is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:','the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:','. . the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:','The final evolution of the Board’s assimilation of Zamorafor PPD cases is illustrated in County of Nassau, 2013 NY Wrk Comp. 20702386. In Nassau the Board held that although the record demonstrated that the claimant’s permanent partial disability “cause or contributed to her retirement . . . the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(310,46508,46504,'loss of earnings','While the Board Panel concurs in the WCLJ’s finding that the claimant’s cessation/separation from employment in 1995 was due at least in part to his crushed foot injury and disability, and while this means that the claimant’s separation from employment was not voluntary, this fact alone no longer compels the application of an inference that the claimant’s subsequent loss of earnings necessarily resulted from the disability','While the Board Panel concurs in the WCLJ’s finding that the claimant’s cessation/separation from employment in 1995 was due at least in part to his crushed foot injury and disability, and while this means that the claimant’s separation from employment was not voluntary, this fact alone no longer compels the application of an inference that the claimant’s subsequent <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">loss of earnings</a> necessarily resulted from the disability','While the Board Panel concurs in the WCLJ’s finding that the claimant’s cessation/separation from employment in 1995 was due at least in part to his crushed foot injury and disability, and while this means that the claimant’s separation from employment was not voluntary, this fact alone no longer compels the application of an inference that the claimant’s subsequent loss of earnings necessarily resulted from the disability','While the Board Panel concurs in the WCLJ’s finding that the claimant’s cessation/separation from employment in 1995 was due at least in part to his crushed foot injury and disability, and while this means that the claimant’s separation from employment was not voluntary, this fact alone no longer compels the application of an inference that the claimant’s subsequent loss of earnings necessarily resulted from the disability. That said, the Board Panel must now evaluate the record on the issue of whether the claimant has shown sufficient attachment to the labor market subsequent to his involuntary removal from the labor market in August 1995 so as to remain entitled to indemnity awards.','While the Board Panel concurs in the WCLJ’s finding that the claimant’s cessation/separation from employment in 1995 was due at least in part to his crushed foot injury and disability, and while this means that the claimant’s separation from employment was not voluntary, this fact alone no longer compels the application of an inference that the claimant’s subsequent loss of earnings necessarily resulted from the disability.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(311,46508,46504,'earning capacity','To rebut the mandatory inference of Pittman a carrier had to produce direct and positive proof that something other than the disability was the sole cause of claimant’s reduced earning capacity after retirement','To rebut the mandatory inference of Pittman a carrier had to produce direct and positive proof that something other than the disability was the sole cause of claimant’s reduced <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">earning capacity</a> after retirement','To rebut the mandatory inference of Pittman a carrier had to produce direct and positive proof that something other than the disability was the sole cause of claimant’s reduced earning capacity after retirement','A carrier did have a defense to such a claim, but the standard of proof was practically unreachable in most cases. To rebut the mandatory inference of Pittman a carrier had to produce direct and positive proof that something other than the disability was the sole cause of claimant’s reduced earning capacity after retirement. Pittman, 24 A.D.3d 1056, 1058.','to such a claim, but the standard of proof was practically unreachable in most cases. To rebut the mandatory inference of Pittman a carrier had to produce direct and positive proof that something other than the disability was the sole cause of claimant’s reduced earning capacity after retirement.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(312,46508,46509,'loss of wages','the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:','the claimant’s [subsequent] <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">loss of wages</a> is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:','the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:','. . the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:','The final evolution of the Board’s assimilation of Zamorafor PPD cases is illustrated in County of Nassau, 2013 NY Wrk Comp. 20702386. In Nassau the Board held that although the record demonstrated that the claimant’s permanent partial disability “cause or contributed to her retirement . . . the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(313,46508,46509,'loss of earnings','While the Board Panel concurs in the WCLJ’s finding that the claimant’s cessation/separation from employment in 1995 was due at least in part to his crushed foot injury and disability, and while this means that the claimant’s separation from employment was not voluntary, this fact alone no longer compels the application of an inference that the claimant’s subsequent loss of earnings necessarily resulted from the disability','While the Board Panel concurs in the WCLJ’s finding that the claimant’s cessation/separation from employment in 1995 was due at least in part to his crushed foot injury and disability, and while this means that the claimant’s separation from employment was not voluntary, this fact alone no longer compels the application of an inference that the claimant’s subsequent <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">loss of earnings</a> necessarily resulted from the disability','While the Board Panel concurs in the WCLJ’s finding that the claimant’s cessation/separation from employment in 1995 was due at least in part to his crushed foot injury and disability, and while this means that the claimant’s separation from employment was not voluntary, this fact alone no longer compels the application of an inference that the claimant’s subsequent loss of earnings necessarily resulted from the disability','While the Board Panel concurs in the WCLJ’s finding that the claimant’s cessation/separation from employment in 1995 was due at least in part to his crushed foot injury and disability, and while this means that the claimant’s separation from employment was not voluntary, this fact alone no longer compels the application of an inference that the claimant’s subsequent loss of earnings necessarily resulted from the disability. That said, the Board Panel must now evaluate the record on the issue of whether the claimant has shown sufficient attachment to the labor market subsequent to his involuntary removal from the labor market in August 1995 so as to remain entitled to indemnity awards.','While the Board Panel concurs in the WCLJ’s finding that the claimant’s cessation/separation from employment in 1995 was due at least in part to his crushed foot injury and disability, and while this means that the claimant’s separation from employment was not voluntary, this fact alone no longer compels the application of an inference that the claimant’s subsequent loss of earnings necessarily resulted from the disability.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(314,46508,46509,'earning capacity','To rebut the mandatory inference of Pittman a carrier had to produce direct and positive proof that something other than the disability was the sole cause of claimant’s reduced earning capacity after retirement','To rebut the mandatory inference of Pittman a carrier had to produce direct and positive proof that something other than the disability was the sole cause of claimant’s reduced <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">earning capacity</a> after retirement','To rebut the mandatory inference of Pittman a carrier had to produce direct and positive proof that something other than the disability was the sole cause of claimant’s reduced earning capacity after retirement','A carrier did have a defense to such a claim, but the standard of proof was practically unreachable in most cases. To rebut the mandatory inference of Pittman a carrier had to produce direct and positive proof that something other than the disability was the sole cause of claimant’s reduced earning capacity after retirement. Pittman, 24 A.D.3d 1056, 1058.','to such a claim, but the standard of proof was practically unreachable in most cases. To rebut the mandatory inference of Pittman a carrier had to produce direct and positive proof that something other than the disability was the sole cause of claimant’s reduced earning capacity after retirement.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(315,46508,46350,'employment due to a work','Medical treatment would begin and at some point the claimant, a treating doctor, or both, would determine that the claimant’s former work duties were unmanageable given the work injury and the claimant would “retire.” A savvy claimant’s counsel would then step into the case and raise “involuntary withdrawal” and a claimant would, in short order, appear and testify that their doctor recommended retirement, or they simply couldn’t return to their former employment due to a work injury','Medical treatment would begin and at some point the claimant, a treating doctor, or both, would determine that the claimant’s former work duties were unmanageable given the work injury and the claimant would “retire.” A savvy claimant’s counsel would then step into the case and raise “involuntary withdrawal” and a claimant would, in short order, appear and testify that their doctor recommended retirement, or they simply couldn’t return to their former <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">employment due to a work</a> injury','Medical treatment would begin and at some point the claimant, a treating doctor, or both, would determine that the claimant’s former work duties were unmanageable given the work injury and the claimant would “retire.” A savvy claimant’s counsel would then step into the case and raise “involuntary withdrawal” and a claimant would, in short order, appear and testify that their doctor recommended retirement, or they simply couldn’t return to their former employment due to a work injury','Usually, a claimant from a fairly large employer that provided a pension or retirement plan would be injured at work. Medical treatment would begin and at some point the claimant, a treating doctor, or both, would determine that the claimant’s former work duties were unmanageable given the work injury and the claimant would “retire.” A savvy claimant’s counsel would then step into the case and raise “involuntary withdrawal” and a claimant would, in short order, appear and testify that their doctor recommended retirement, or they simply couldn’t return to their former employment due to a work injury. Even where a claimant took an incentive-based retirement, or a regular service-based retirement, such statements were usually sufficient to satisfy the Bury standard of proof; and the Law Judge would then turn to the carrier or self-insured employer and ask them to produce proof that the claimant’s ongoing lost wages were solely due to something other than the claimant’s work injury.','Medical treatment would begin and at some point the claimant, a treating doctor, or both, would determine that the claimant’s former work duties were unmanageable given the work injury and the claimant would “retire.” A savvy claimant’s counsel would then step into the case and raise “involuntary withdrawal” and a claimant would, in short order, appear and testify that their doctor recommended retirement, or they simply couldn’t return to their former employment due to a work injury. Even where a claimant took an incentive-based retirement, or a regular service-based retirement, such statements were usually sufficient to satisfy the Bury standard of proof; and the Law Judge would then turn to the carrier or self-insured employer and ask them to produce proof that the claimant’s ongoing lost wages were solely due to something other than the claimant’s work injury.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(316,46508,46350,'working for the employer','99506849 the Board considered a claimant, classified with a PPD in 2000, and his claim for an involuntary withdrawal back in 1995 when he stopped working for the employer of record','99506849 the Board considered a claimant, classified with a PPD in 2000, and his claim for an involuntary withdrawal back in 1995 when he stopped <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">working for the employer</a> of record','99506849 the Board considered a claimant, classified with a PPD in 2000, and his claim for an involuntary withdrawal back in 1995 when he stopped working for the employer of record','Comp. 99506849 the Board considered a claimant, classified with a PPD in 2000, and his claim for an involuntary withdrawal back in 1995 when he stopped working for the employer of record. At the trial level, the Law Judge held that the claimant was involuntarily withdrawn in 1995 and that, pursuant to Zamora, was thereafter entitled to ongoing benefits without further analysis.','99506849 the Board considered a claimant, classified with a PPD in 2000, and his claim for an involuntary withdrawal back in 1995 when he stopped working for the employer of record.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(317,46508,46332,'causally related','To get this inference, a claimant now needed to set forth evidence showing that his or her ongoing lost wages were indeed causally related to the claim','To get this inference, a claimant now needed to set forth evidence showing that his or her ongoing lost wages were indeed <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/07/carpal-tunnel-and-causal-relation-not-always-so-clear-cut/\">causally related</a> to the claim','To get this inference, a claimant now needed to set forth evidence showing that his or her ongoing lost wages were indeed causally related to the claim','Apart from providing hope, Zamora threw out Pittman and the its progeny and replaced the mandatory presumption regarding the cause of lost wages with a permissible inference. To get this inference, a claimant now needed to set forth evidence showing that his or her ongoing lost wages were indeed causally related to the claim. The Court of Appeals went further, and by example softened the defense standards for a compensable retirement:','tory presumption regarding the cause of lost wages with a permissible inference. To get this inference, a claimant now needed to set forth evidence showing that his or her ongoing lost wages were indeed causally related to the claim.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(318,46508,46332,'causally related','However, the Board went on to rule, citing Zamora, “that to compel an inference of causally related lost earnings from …an involuntary separation would illogically constrain the ability of the Board to find facts, and would shift the burden of proof from claimant to employer','However, the Board went on to rule, citing Zamora, “that to compel an inference of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/07/carpal-tunnel-and-causal-relation-not-always-so-clear-cut/\">causally related</a> lost earnings from …an involuntary separation would illogically constrain the ability of the Board to find facts, and would shift the burden of proof from claimant to employer','However, the Board went on to rule, citing Zamora, “that to compel an inference of causally related lost earnings from …an involuntary separation would illogically constrain the ability of the Board to find facts, and would shift the burden of proof from claimant to employer','In applying this analysis, the Board found that the letter from the employer about the claimant’s impending termination was the claimant’s impetus for taking a retirement and that his withdrawal was involuntary. However, the Board went on to rule, citing Zamora, “that to compel an inference of causally related lost earnings from …an involuntary separation would illogically constrain the ability of the Board to find facts, and would shift the burden of proof from claimant to employer. As such any inference is applied is based on the Board’s evaluation of the evidence on disability and attachment.” Finding that the record contained no evidence of post-retirement attachment, the Board returned the case to the hearing level for development of the record on “whether and to what extent the claimant looked for work…even through the claimant need not meet the standard of American Axle (2010 NY Wrk Comp 80303659).”','However, the Board went on to rule, citing Zamora, “that to compel an inference of causally related lost earnings from …an involuntary separation would illogically constrain the ability of the Board to find facts, and would shift the burden of proof from claimant to employer.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(319,46508,46342,'causally related to the claim','To get this inference, a claimant now needed to set forth evidence showing that his or her ongoing lost wages were indeed causally related to the claim','To get this inference, a claimant now needed to set forth evidence showing that his or her ongoing lost wages were indeed <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">causally related to the claim</a>','To get this inference, a claimant now needed to set forth evidence showing that his or her ongoing lost wages were indeed causally related to the claim','Apart from providing hope, Zamora threw out Pittman and the its progeny and replaced the mandatory presumption regarding the cause of lost wages with a permissible inference. To get this inference, a claimant now needed to set forth evidence showing that his or her ongoing lost wages were indeed causally related to the claim. The Court of Appeals went further, and by example softened the defense standards for a compensable retirement:','tory presumption regarding the cause of lost wages with a permissible inference. To get this inference, a claimant now needed to set forth evidence showing that his or her ongoing lost wages were indeed causally related to the claim. The Court of Appeals went further, and by example softened the defense standards for a compensable retirement:',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(320,46508,46367,'causally related','To get this inference, a claimant now needed to set forth evidence showing that his or her ongoing lost wages were indeed causally related to the claim','To get this inference, a claimant now needed to set forth evidence showing that his or her ongoing lost wages were indeed <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/\">causally related</a> to the claim','To get this inference, a claimant now needed to set forth evidence showing that his or her ongoing lost wages were indeed causally related to the claim','Apart from providing hope, Zamora threw out Pittman and the its progeny and replaced the mandatory presumption regarding the cause of lost wages with a permissible inference. To get this inference, a claimant now needed to set forth evidence showing that his or her ongoing lost wages were indeed causally related to the claim. The Court of Appeals went further, and by example softened the defense standards for a compensable retirement:','tory presumption regarding the cause of lost wages with a permissible inference. To get this inference, a claimant now needed to set forth evidence showing that his or her ongoing lost wages were indeed causally related to the claim.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(321,46508,46367,'causally related','However, the Board went on to rule, citing Zamora, “that to compel an inference of causally related lost earnings from …an involuntary separation would illogically constrain the ability of the Board to find facts, and would shift the burden of proof from claimant to employer','However, the Board went on to rule, citing Zamora, “that to compel an inference of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/\">causally related</a> lost earnings from …an involuntary separation would illogically constrain the ability of the Board to find facts, and would shift the burden of proof from claimant to employer','However, the Board went on to rule, citing Zamora, “that to compel an inference of causally related lost earnings from …an involuntary separation would illogically constrain the ability of the Board to find facts, and would shift the burden of proof from claimant to employer','In applying this analysis, the Board found that the letter from the employer about the claimant’s impending termination was the claimant’s impetus for taking a retirement and that his withdrawal was involuntary. However, the Board went on to rule, citing Zamora, “that to compel an inference of causally related lost earnings from …an involuntary separation would illogically constrain the ability of the Board to find facts, and would shift the burden of proof from claimant to employer. As such any inference is applied is based on the Board’s evaluation of the evidence on disability and attachment.” Finding that the record contained no evidence of post-retirement attachment, the Board returned the case to the hearing level for development of the record on “whether and to what extent the claimant looked for work…even through the claimant need not meet the standard of American Axle (2010 NY Wrk Comp 80303659).”','However, the Board went on to rule, citing Zamora, “that to compel an inference of causally related lost earnings from …an involuntary separation would illogically constrain the ability of the Board to find facts, and would shift the burden of proof from claimant to employer.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(322,46508,48276,'defense standards for a compensable','The Court of Appeals went further, and by example softened the defense standards for a compensable retirement:','The Court of Appeals went further, and by example softened the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/amherst-workers-compensation-defense-law-office/\">defense standards for a compensable</a> retirement:','The Court of Appeals went further, and by example softened the defense standards for a compensable retirement:','To get this inference, a claimant now needed to set forth evidence showing that his or her ongoing lost wages were indeed causally related to the claim. The Court of Appeals went further, and by example softened the defense standards for a compensable retirement:','the its progeny and replaced the mandatory presumption regarding the cause of lost wages with a permissible inference. To get this inference, a claimant now needed to set forth evidence showing that his or her ongoing lost wages were indeed causally related to the claim. The Court of Appeals went further, and by example softened the defense standards for a compensable retirement',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(323,46508,46561,'considered a claimant','In Ossing the Board considered a claimant who was found to have a permanent disability and was later sent a letter by his employer informing him that he would be “removed from payroll” because he had missed more than one year of work','In Ossing the Board <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">considered a claimant</a> who was found to have a permanent disability and was later sent a letter by his employer informing him that he would be “removed from payroll” because he had missed more than one year of work','In Ossing the Board considered a claimant who was found to have a permanent disability and was later sent a letter by his employer informing him that he would be “removed from payroll” because he had missed more than one year of work','In Ossing the Board considered a claimant who was found to have a permanent disability and was later sent a letter by his employer informing him that he would be “removed from payroll” because he had missed more than one year of work. The claimant subsequently retired, apparently to preserve what vested retirement rights he had at the time, and turned to the workers’ compensation Board seeking a compensable retirement.','In Ossing the Board considered a claimant who was found to have a permanent disability and was later sent a letter by his employer informing him that he would be “removed from payroll” because he had missed more than one year of work. The claimant subsequently retired, apparently to preserve what vested retirement rights he had at the time, and turned to the workers’ compensation Board seeking a compensable retirement. At the trial level, the Law Judge found that the claimant voluntarily withdrew from the labor market and closed the case. On appeal, the Board reversed, ruling that Zamora now required claimant’s to both show that the work-related disability was the reason for separation from employment and that the claimant has found “alternate work consistent with his or her physical limitations, or at least [show] reasonable efforts at finding such work.” Id. citing Zamora. Further citing Zamora, the Board noted that “[t]his evidentiary burden, if carrier, can prove to the Board that the cause of his or her reduced income is a disability, rather than an unwillingness to work',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(324,46508,46561,'considered a claimant','99506849 the Board considered a claimant, classified with a PPD in 2000, and his claim for an involuntary withdrawal back in 1995 when he stopped working for the employer of record','99506849 the Board <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">considered a claimant</a>, classified with a PPD in 2000, and his claim for an involuntary withdrawal back in 1995 when he stopped working for the employer of record','99506849 the Board considered a claimant, classified with a PPD in 2000, and his claim for an involuntary withdrawal back in 1995 when he stopped working for the employer of record','Comp. 99506849 the Board considered a claimant, classified with a PPD in 2000, and his claim for an involuntary withdrawal back in 1995 when he stopped working for the employer of record. At the trial level, the Law Judge held that the claimant was involuntarily withdrawn in 1995 and that, pursuant to Zamora, was thereafter entitled to ongoing benefits without further analysis.','99506849 the Board considered a claimant, classified with a PPD in 2000, and his claim for an involuntary withdrawal back in 1995 when he stopped working for the employer of record.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(325,46508,46549,'found that the claimant','At the trial level, the Law Judge found that the claimant voluntarily withdrew from the labor market and closed the case','At the trial level, the Law Judge <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">found that the claimant</a> voluntarily withdrew from the labor market and closed the case','At the trial level, the Law Judge found that the claimant voluntarily withdrew from the labor market and closed the case','The claimant subsequently retired, apparently to preserve what vested retirement rights he had at the time, and turned to the workers’ compensation Board seeking a compensable retirement. At the trial level, the Law Judge found that the claimant voluntarily withdrew from the labor market and closed the case. On appeal, the Board reversed, ruling that Zamora now required claimant’s to both show that the work-related disability was the reason for separation from employment and that the claimant has found “alternate work consistent with his or her physical limitations, or at least [show] reasonable efforts at finding such work.” Id.','ater sent a letter by his employer informing him that he would be “removed from payroll” because he had missed more than one year of work. The claimant subsequently retired, apparently to preserve what vested retirement rights he had at the time, and turned to the workers’ compensation Board seeking a compensable retirement. At the trial level, the Law Judge found that the claimant voluntarily withdrew from the labor market and closed the case.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(326,46508,46549,'stated that the claimant','The Board also adopted a “something-less-than-American Axle” standard that confounded practitioners insofar as the Board simply stated that the claimant had to make a showing of a post-retirement job search, but how genuine that search needed to be was left open-ended','The Board also adopted a “something-less-than-American Axle” standard that confounded practitioners insofar as the Board simply <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">stated that the claimant</a> had to make a showing of a post-retirement job search, but how genuine that search needed to be was left open-ended','The Board also adopted a “something-less-than-American Axle” standard that confounded practitioners insofar as the Board simply stated that the claimant had to make a showing of a post-retirement job search, but how genuine that search needed to be was left open-ended','Compared to Pittman, the Board now insisted that the claimant bear the burden in the first instance of proving not only the circumstances of his retirement, but also whether he was simply unwilling to continue working. The Board also adopted a “something-less-than-American Axle” standard that confounded practitioners insofar as the Board simply stated that the claimant had to make a showing of a post-retirement job search, but how genuine that search needed to be was left open-ended. The Ossing interpretation of Zamora left open the possibility that a claimant could, after making some decidedly more significant showings, still end up with a guaranteed stream of benefits unencumbered by the obligation to remain attached under American Axle.','the Board’s use of Zamora on the issue of involuntary withdrawal. Compared to Pittman, the Board now insisted that the claimant bear the burden in the first instance of proving not only the circumstances of his retirement, but also whether he was simply unwilling to continue working. The Board also adopted a “something-less-than-American Axle” standard that confounded practitioners insofar as the Board simply stated that the claimant had to make a showing of a post-retirement job search, but how genuine that search needed to be was left open-ended.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(327,46508,46549,'considered a claimant','99506849 the Board considered a claimant, classified with a PPD in 2000, and his claim for an involuntary withdrawal back in 1995 when he stopped working for the employer of record','99506849 the Board <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">considered a claimant</a>, classified with a PPD in 2000, and his claim for an involuntary withdrawal back in 1995 when he stopped working for the employer of record','99506849 the Board considered a claimant, classified with a PPD in 2000, and his claim for an involuntary withdrawal back in 1995 when he stopped working for the employer of record','Comp. 99506849 the Board considered a claimant, classified with a PPD in 2000, and his claim for an involuntary withdrawal back in 1995 when he stopped working for the employer of record. At the trial level, the Law Judge held that the claimant was involuntarily withdrawn in 1995 and that, pursuant to Zamora, was thereafter entitled to ongoing benefits without further analysis.','99506849 the Board considered a claimant, classified with a PPD in 2000, and his claim for an involuntary withdrawal back in 1995 when he stopped working for the employer of record.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(328,46508,46549,'claimant stated','While the claimant stated she maintained a written work search listing, no such listing appears in the record for review by the Board','While the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">claimant stated</a> she maintained a written work search listing, no such listing appears in the record for review by the Board','While the claimant stated she maintained a written work search listing, no such listing appears in the record for review by the Board','While the claimant testified that she registered with Hempstead Works, there is no evidence of an active participation; the claimant conceded that she conducted a work search on less than a monthly basis and she testified that, in the last year she has applied for a total of five or six jobs. While the claimant stated she maintained a written work search listing, no such listing appears in the record for review by the Board.','While the claimant testified that she registered with Hempstead Works, there is no evidence of an active participation; the claimant conceded that she conducted a work search on less than a monthly basis and she testified that, in the last year she has applied for a total of five or six jobs. While the claimant stated she maintained a written work search listing, no such listing appears in the record for review by the Board.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(329,46508,46503,'proof and improperly shifted burdens','Claimants can no longer rely on low standards of proof and improperly shifted burdens to claim ongoing benefits after a separation from employment simply because they are classified','Claimants can no longer rely on low standards of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">proof and improperly shifted burdens</a> to claim ongoing benefits after a separation from employment simply because they are classified','Claimants can no longer rely on low standards of proof and improperly shifted burdens to claim ongoing benefits after a separation from employment simply because they are classified','Claimants can no longer rely on low standards of proof and improperly shifted burdens to claim ongoing benefits after a separation from employment simply because they are classified. When litigating involuntary withdrawal and compensable retirement claims, counsel can now force the claimant to make a higher showing at the outset and, even if initially unsuccessful, can nonetheless force a claimant to produce proof of attachment to the labor market each time the claim reopens.','Claimants can no longer rely on low standards of proof and improperly shifted burdens to claim ongoing benefits after a separation from employment simply because they are classified.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(330,46508,46503,'burden of proof','However, the Board went on to rule, citing Zamora, “that to compel an inference of causally related lost earnings from …an involuntary separation would illogically constrain the ability of the Board to find facts, and would shift the burden of proof from claimant to employer','However, the Board went on to rule, citing Zamora, “that to compel an inference of causally related lost earnings from …an involuntary separation would illogically constrain the ability of the Board to find facts, and would shift the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">burden of proof</a> from claimant to employer','However, the Board went on to rule, citing Zamora, “that to compel an inference of causally related lost earnings from …an involuntary separation would illogically constrain the ability of the Board to find facts, and would shift the burden of proof from claimant to employer','In applying this analysis, the Board found that the letter from the employer about the claimant’s impending termination was the claimant’s impetus for taking a retirement and that his withdrawal was involuntary. However, the Board went on to rule, citing Zamora, “that to compel an inference of causally related lost earnings from …an involuntary separation would illogically constrain the ability of the Board to find facts, and would shift the burden of proof from claimant to employer. As such any inference is applied is based on the Board’s evaluation of the evidence on disability and attachment.” Finding that the record contained no evidence of post-retirement attachment, the Board returned the case to the hearing level for development of the record on “whether and to what extent the claimant looked for work…even through the claimant need not meet the standard of American Axle (2010 NY Wrk Comp 80303659).”','However, the Board went on to rule, citing Zamora, “that to compel an inference of causally related lost earnings from …an involuntary separation would illogically constrain the ability of the Board to find facts, and would shift the burden of proof from claimant to employer.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(331,46508,46371,'claimant stated she maintained a written work','While the claimant stated she maintained a written work search listing, no such listing appears in the record for review by the Board','While the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant stated she maintained a written work</a> search listing, no such listing appears in the record for review by the Board','While the claimant stated she maintained a written work search listing, no such listing appears in the record for review by the Board','While the claimant testified that she registered with Hempstead Works, there is no evidence of an active participation; the claimant conceded that she conducted a work search on less than a monthly basis and she testified that, in the last year she has applied for a total of five or six jobs. While the claimant stated she maintained a written work search listing, no such listing appears in the record for review by the Board.','While the claimant testified that she registered with Hempstead Works, there is no evidence of an active participation; the claimant conceded that she conducted a work search on less than a monthly basis and she testified that, in the last year she has applied for a total of five or six jobs. While the claimant stated she maintained a written work search listing, no such listing appears in the record for review by the Board.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(332,46508,46371,'claimant could “reattach” to regain ongoing benefits','The Board went on to note that the claimant could “reattach” to regain ongoing benefits provided she produced proof of attachment meeting the standards of American Axle','The Board went on to note that the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant could “reattach” to regain ongoing benefits</a> provided she produced proof of attachment meeting the standards of American Axle','The Board went on to note that the claimant could “reattach” to regain ongoing benefits provided she produced proof of attachment meeting the standards of American Axle','The Board went on to note that the claimant could “reattach” to regain ongoing benefits provided she produced proof of attachment meeting the standards of American Axle.','The Board went on to note that the claimant could “reattach” to regain ongoing benefits provided she produced proof of attachment meeting the standards of American Axle.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(333,46508,46422,'claimant stated','While the claimant stated she maintained a written work search listing, no such listing appears in the record for review by the Board','While the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">claimant stated</a> she maintained a written work search listing, no such listing appears in the record for review by the Board','While the claimant stated she maintained a written work search listing, no such listing appears in the record for review by the Board','While the claimant testified that she registered with Hempstead Works, there is no evidence of an active participation; the claimant conceded that she conducted a work search on less than a monthly basis and she testified that, in the last year she has applied for a total of five or six jobs. While the claimant stated she maintained a written work search listing, no such listing appears in the record for review by the Board.','While the claimant testified that she registered with Hempstead Works, there is no evidence of an active participation; the claimant conceded that she conducted a work search on less than a monthly basis and she testified that, in the last year she has applied for a total of five or six jobs. While the claimant stated she maintained a written work search listing, no such listing appears in the record for review by the Board.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(334,46508,46369,'fact alone no longer compels the application','While the Board Panel concurs in the WCLJ’s finding that the claimant’s cessation/separation from employment in 1995 was due at least in part to his crushed foot injury and disability, and while this means that the claimant’s separation from employment was not voluntary, this fact alone no longer compels the application of an inference that the claimant’s subsequent loss of earnings necessarily resulted from the disability','While the Board Panel concurs in the WCLJ’s finding that the claimant’s cessation/separation from employment in 1995 was due at least in part to his crushed foot injury and disability, and while this means that the claimant’s separation from employment was not voluntary, this <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/02/no-error-of-law-or-fact-in-an-application-for-full-board-review/\">fact alone no longer compels the application</a> of an inference that the claimant’s subsequent loss of earnings necessarily resulted from the disability','While the Board Panel concurs in the WCLJ’s finding that the claimant’s cessation/separation from employment in 1995 was due at least in part to his crushed foot injury and disability, and while this means that the claimant’s separation from employment was not voluntary, this fact alone no longer compels the application of an inference that the claimant’s subsequent loss of earnings necessarily resulted from the disability','While the Board Panel concurs in the WCLJ’s finding that the claimant’s cessation/separation from employment in 1995 was due at least in part to his crushed foot injury and disability, and while this means that the claimant’s separation from employment was not voluntary, this fact alone no longer compels the application of an inference that the claimant’s subsequent loss of earnings necessarily resulted from the disability. That said, the Board Panel must now evaluate the record on the issue of whether the claimant has shown sufficient attachment to the labor market subsequent to his involuntary removal from the labor market in August 1995 so as to remain entitled to indemnity awards.','While the Board Panel concurs in the WCLJ’s finding that the claimant’s cessation/separation from employment in 1995 was due at least in part to his crushed foot injury and disability, and while this means that the claimant’s separation from employment was not voluntary, this fact alone no longer compels the application of an inference that the claimant’s subsequent loss of earnings necessarily resulted from the disability.',0,'2022-04-04 17:00:55','2022-04-04 17:00:55'),(335,46384,46374,'claimants end up with either diminished or outright loss','As a result, some claimants end up with either diminished or outright loss of control of their bladder and/or bowel','As a result, some <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claimants end up with either diminished or outright loss</a> of control of their bladder and/or bowel','As a result, some claimants end up with either diminished or outright loss of control of their bladder and/or bowel','In Workers’ Compensation, it’s a fact of life that some patients experience damage to the spinal cord, either as a result of their initial injury, an age-based progression thereof, or as a consequence of spinal surgery. As a result, some claimants end up with either diminished or outright loss of control of their bladder and/or bowel. While some claimant’s attorneys believe having such a consequential problem is a golden ticket to a total disability, and incontinence is clearly an aggravating factor, whether the claimant would have a total disability really depends on the other circumstances surrounding the claim.','as a result of their initial injury, an age-based progression thereof, or as a consequence of spinal surgery. As a result, some claimants end up with either diminished or outright loss of control of their bladder and/or bowel.',0,'2022-04-04 18:09:16','2022-04-04 18:09:16'),(336,46384,46426,'reasonable for the claimant not to return','It probable helped that claimant’s doctor opined it would be reasonable for the claimant not to return to the workforce given her orthopedic, bladder, and bowel impairments, but the Board didn’t even look at the claimant’s age, let along any other mitigating factor despite containing them in the decision','It probable helped that claimant’s doctor opined it would be <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/01/back-to-the-future-the-return-of-wcl-252-b-fact-finding-without-judges-and-legal-reasoning-without-lawyers/\">reasonable for the claimant not to return</a> to the workforce given her orthopedic, bladder, and bowel impairments, but the Board didn’t even look at the claimant’s age, let along any other mitigating factor despite containing them in the decision','It probable helped that claimant’s doctor opined it would be reasonable for the claimant not to return to the workforce given her orthopedic, bladder, and bowel impairments, but the Board didn’t even look at the claimant’s age, let along any other mitigating factor despite containing them in the decision','In Aspen Dental, (WCB# G0484701, June 9, 2015), the Board didn’t do much beyond look at the claimant’s severity ranking (G) and the diagnosis of cauda equina syndrome with associated bladder and bowel incontinence before finding a permanent total disability. It probable helped that claimant’s doctor opined it would be reasonable for the claimant not to return to the workforce given her orthopedic, bladder, and bowel impairments, but the Board didn’t even look at the claimant’s age, let along any other mitigating factor despite containing them in the decision.','ity ranking (G) and the diagnosis of cauda equina syndrome with associated bladder and bowel incontinence before finding a permanent total disability. It probable helped that claimant’s doctor opined it would be reasonable for the claimant not to return to the workforce given her orthopedic, bladder, and bowel impairments, but the Board didn’t even look at the claimant’s age, let along any other mitigating factor despite containing them in the decision.',0,'2022-04-04 18:09:16','2022-04-04 18:09:16'),(337,46384,46342,'opinion on permanency in addition to causal','A claim for consequential depression was thereafter made, and the carrier asked for an opinion on permanency in addition to causal relationship; their IME gave up a total disability, and neither the WCL or Board would let them wiggle out of it','A claim for consequential depression was thereafter made, and the carrier asked for an <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">opinion on permanency in addition to causal</a> relationship; their IME gave up a total disability, and neither the WCL or Board would let them wiggle out of it','A claim for consequential depression was thereafter made, and the carrier asked for an opinion on permanency in addition to causal relationship; their IME gave up a total disability, and neither the WCL or Board would let them wiggle out of it','In the first case the claimant was found to have a total disability, Mabsota, (WCB# G0304748, April 3, 2017), the claimant was previously classified with a 65% LWEC. A claim for consequential depression was thereafter made, and the carrier asked for an opinion on permanency in addition to causal relationship; their IME gave up a total disability, and neither the WCL or Board would let them wiggle out of it.','ase the claimant was found to have a total disability, <u>Mabsota</u>, (WCB# G0304748, April 3, 2017), the claimant was previously classified with a 65% LWEC. A claim for consequential depression was thereafter made, and the carrier asked for an opinion on permanency in addition to causal relationship; their IME gave up a total disability, and neither the WCL or Board would let them wiggle out of it.',0,'2022-04-04 18:09:16','2022-04-04 18:09:16'),(338,46384,46502,'pain management','What sunk the carrier here was taking the deposition of the claimant’s pain management doctor, who didn’t even file a C-4.3, and opined a total disability on deposition','What sunk the carrier here was taking the deposition of the claimant’s <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">pain management</a> doctor, who didn’t even file a C-4.3, and opined a total disability on deposition','What sunk the carrier here was taking the deposition of the claimant’s pain management doctor, who didn’t even file a C-4.3, and opined a total disability on deposition','The claim was established for the back, a right inguinal hernia, consequential neurogenic bladder, urinary incontinence, along with consequential bilateral wrist and hand injuries. What sunk the carrier here was taking the deposition of the claimant’s pain management doctor, who didn’t even file a C-4.3, and opined a total disability on deposition. The Board found that doctor to be most credible because he saw the claimant in the context of all of his injuries.','What sunk the carrier here was taking the deposition of the claimant’s pain management doctor, who didn’t even file a C-4.3, and opined a total disability on deposition.',0,'2022-04-04 18:09:16','2022-04-04 18:09:16'),(339,46384,46340,'medical evidence','In Collins Building Services Inc, (WCB# G1025058, April 13, 2018), the Board reiterated its prior holdings that a finding of a permanent total disability must be made on the medical evidence alone, and while the claimant had significant problems, he is physically capable of sitting and standing, although for limited periods of time, and can drive for limited periods of time as part of work duties','In <u>Collins Building Services Inc</u>, (WCB# G1025058, April 13, 2018), the Board reiterated its prior holdings that a finding of a permanent total disability must be made on the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\">medical evidence</a> alone, and while the claimant had significant problems, he is physically capable of sitting and standing, although for limited periods of time, and can drive for limited periods of time as part of work duties','In <u>Collins Building Services Inc</u>, (WCB# G1025058, April 13, 2018), the Board reiterated its prior holdings that a finding of a permanent total disability must be made on the medical evidence alone, and while the claimant had significant problems, he is physically capable of sitting and standing, although for limited periods of time, and can drive for limited periods of time as part of work duties','In Collins Building Services Inc, (WCB# G1025058, April 13, 2018), the Board reiterated its prior holdings that a finding of a permanent total disability must be made on the medical evidence alone, and while the claimant had significant problems, he is physically capable of sitting and standing, although for limited periods of time, and can drive for limited periods of time as part of work duties. Turning to the claimant’s LWEC, the 66 year old man was born in Ecuador, where he didn’t finish high school, had limited English proficiency, and didn’t know how to use a computer, all on top of his urinary incontinence.','In <u>Collins Building Services Inc</u>, (WCB# G1025058, April 13, 2018), the Board reiterated its prior holdings that a finding of a permanent total disability must be made on the medical evidence alone, and while the claimant had significant problems, he is physically capable of sitting and standing, although for limited periods of time, and can drive for limited periods of time as part of work duties.',0,'2022-04-04 18:09:16','2022-04-04 18:09:16'),(341,46180,46387,'workers\' compensation','This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the workers\' compensation board’s approach to claims and issues','This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\">workers\' compensation</a> board’s approach to claims and issues','This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the workers\' compensation board’s approach to claims and issues','Prior to joining , she successfully represented claimants for over eight years in a small, Binghamton-based practice. This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the workers\' compensation board’s approach to claims and issues. She has a great understanding of the legal and medical requirements necessary to form and support winning arguments.','This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the workers\' compensation board’s approach to claims and issues.',0,'2022-04-04 18:09:18','2022-04-04 18:09:18'),(342,46180,48276,'workers\' compensation','This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the workers\' compensation board’s approach to claims and issues','This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/amherst-workers-compensation-defense-law-office/\">workers\' compensation</a> board’s approach to claims and issues','This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the workers\' compensation board’s approach to claims and issues','Prior to joining , she successfully represented claimants for over eight years in a small, Binghamton-based practice. This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the workers\' compensation board’s approach to claims and issues. She has a great understanding of the legal and medical requirements necessary to form and support winning arguments.','This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the workers\' compensation board’s approach to claims and issues.',0,'2022-04-04 18:09:18','2022-04-04 18:09:18'),(343,46180,46421,'compensation board’s approach to claims','This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the workers\' compensation board’s approach to claims and issues','This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the workers\' <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">compensation board’s approach to claims</a> and issues','This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the workers\' compensation board’s approach to claims and issues','Prior to joining , she successfully represented claimants for over eight years in a small, Binghamton-based practice. This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the workers\' compensation board’s approach to claims and issues. She has a great understanding of the legal and medical requirements necessary to form and support winning arguments.','This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the workers\' compensation board’s approach to claims and issues.',0,'2022-04-04 18:09:18','2022-04-04 18:09:18'),(344,46180,46504,'earned her law','She earned her law degree from Syracuse University','She <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">earned her law</a> degree from Syracuse University','She earned her law degree from Syracuse University','She earned her bachelor\'s degree in human resources from LeMoyne College in Syracuse. She earned her law degree from Syracuse University.','She earned her bachelor\'s degree in human resources from LeMoyne College in Syracuse. She earned her law degree from Syracuse University.',0,'2022-04-04 18:09:18','2022-04-04 18:09:18'),(345,46222,46414,'state and federal courts','Defending actions in both state and federal courts throughout New York state, we are skilled in handling all aspects of litigation from investigation through trial','Defending actions in both <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/05/united-states-supreme-court-is-considering-a-petition-for-a-writ-of-certiorari-of-the-american-economy-decision/\">state and federal courts</a> throughout New York state, we are skilled in handling all aspects of litigation from investigation through trial','Defending actions in both state and federal courts throughout New York state, we are skilled in handling all aspects of litigation from investigation through trial','Defending actions in both state and federal courts throughout New York state, we are skilled in handling all aspects of litigation from investigation through trial. We also incorporate, when appropriate, alternatives to trial such as mediation and arbitration for successful resolution of cases.','Defending actions in both state and federal courts throughout New York state, we are skilled in handling all aspects of litigation from investigation through trial. We also incorporate, when appropriate, alternatives to trial',0,'2022-04-04 18:09:25','2022-04-04 18:09:25'),(346,46444,46371,'claimants who worked','In affirming, the two member Panel noted the that C-240 creates a “guideline that the 300 multiple is to be used for claimants who worked at least 270 days in the 52 weeks prior to the date of accident.” The one member dissent felt this was a misinterpretation of the plain language of the form C-240 that created an overinflated average weekly wage','In affirming, the two member Panel noted the that C-240 creates a “guideline that the 300 multiple is to be used for <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimants who worked</a> at least 270 days in the 52 weeks prior to the date of accident.” The one member dissent felt this was a misinterpretation of the plain language of the form C-240 that created an overinflated average weekly wage','In affirming, the two member Panel noted the that C-240 creates a “guideline that the 300 multiple is to be used for claimants who worked at least 270 days in the 52 weeks prior to the date of accident.” The one member dissent felt this was a misinterpretation of the plain language of the form C-240 that created an overinflated average weekly wage','Despite these facts, the two members of the Board Panel still affirmed the WCLJ’s use of a 300 multiple. In affirming, the two member Panel noted the that C-240 creates a “guideline that the 300 multiple is to be used for claimants who worked at least 270 days in the 52 weeks prior to the date of accident.” The one member dissent felt this was a misinterpretation of the plain language of the form C-240 that created an overinflated average weekly wage.','In affirming, the two member Panel noted the that C-240 creates a “guideline that the 300 multiple is to be used for claimants who worked at least 270 days in the 52 weeks prior to the date of accident.” The one member dissent felt this was a misinterpretation of the plain language of the form C-240 that created an overinflated average weekly wage.',0,'2022-04-04 19:03:21','2022-04-04 19:03:21'),(347,46444,46371,'claimant worked','In Kistner Concrete, the C-240 indicated that the claimant worked 271 days the year preceding the accident','In <u>Kistner Concrete</u>, the C-240 indicated that the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant worked</a> 271 days the year preceding the accident','In <u>Kistner Concrete</u>, the C-240 indicated that the claimant worked 271 days the year preceding the accident','In Kistner Concrete, the C-240 indicated that the claimant worked 271 days the year preceding the accident.  A closer review of the C-240 illustrated that in the 52 weeks preceding the injury of record, the claimant worked a five-day week for 41 weeks, and 11 six-day weeks. ','In <u>Kistner Concrete</u>, the C-240 indicated that the claimant worked 271 days the year preceding the accident.',0,'2022-04-04 19:03:21','2022-04-04 19:03:21'),(348,46444,46371,'claimant worked','A closer review of the C-240 illustrated that in the 52 weeks preceding the injury of record, the claimant worked a five-day week for 41 weeks, and 11 six-day weeks','A closer review of the C-240 illustrated that in the 52 weeks preceding the injury of record, the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant worked</a> a five-day week for 41 weeks, and 11 six-day weeks','A closer review of the C-240 illustrated that in the 52 weeks preceding the injury of record, the claimant worked a five-day week for 41 weeks, and 11 six-day weeks','In Kistner Concrete, the C-240 indicated that the claimant worked 271 days the year preceding the accident.  A closer review of the C-240 illustrated that in the 52 weeks preceding the injury of record, the claimant worked a five-day week for 41 weeks, and 11 six-day weeks.  When setting the AWW the WCLJ noted that the claimant had “past two seventy, he gets the three hundred multiple” and set the average weekly wage using a 300 multiple.','ated that the claimant worked 271 days the year preceding the accident.  A closer review of the C-240 illustrated that in the 52 weeks preceding the injury of record, the claimant worked a five-day week for 41 weeks, and 11 six-day weeks.',0,'2022-04-04 19:03:21','2022-04-04 19:03:21'),(349,46444,46374,'claimants who worked at least 270 days','In affirming, the two member Panel noted the that C-240 creates a “guideline that the 300 multiple is to be used for claimants who worked at least 270 days in the 52 weeks prior to the date of accident.” The one member dissent felt this was a misinterpretation of the plain language of the form C-240 that created an overinflated average weekly wage','In affirming, the two member Panel noted the that C-240 creates a “guideline that the 300 multiple is to be used for <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claimants who worked at least 270 days</a> in the 52 weeks prior to the date of accident.” The one member dissent felt this was a misinterpretation of the plain language of the form C-240 that created an overinflated average weekly wage','In affirming, the two member Panel noted the that C-240 creates a “guideline that the 300 multiple is to be used for claimants who worked at least 270 days in the 52 weeks prior to the date of accident.” The one member dissent felt this was a misinterpretation of the plain language of the form C-240 that created an overinflated average weekly wage','Despite these facts, the two members of the Board Panel still affirmed the WCLJ’s use of a 300 multiple. In affirming, the two member Panel noted the that C-240 creates a “guideline that the 300 multiple is to be used for claimants who worked at least 270 days in the 52 weeks prior to the date of accident.” The one member dissent felt this was a misinterpretation of the plain language of the form C-240 that created an overinflated average weekly wage.','In affirming, the two member Panel noted the that C-240 creates a “guideline that the 300 multiple is to be used for claimants who worked at least 270 days in the 52 weeks prior to the date of accident.” The one member dissent felt this was a misinterpretation of the plain language of the form C-240 that created an overinflated average weekly wage.',0,'2022-04-04 19:03:21','2022-04-04 19:03:21'),(350,46444,46374,'claimant worked 271 days','In Kistner Concrete, the C-240 indicated that the claimant worked 271 days the year preceding the accident','In <u>Kistner Concrete</u>, the C-240 indicated that the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claimant worked 271 days</a> the year preceding the accident','In <u>Kistner Concrete</u>, the C-240 indicated that the claimant worked 271 days the year preceding the accident','In Kistner Concrete, the C-240 indicated that the claimant worked 271 days the year preceding the accident.  A closer review of the C-240 illustrated that in the 52 weeks preceding the injury of record, the claimant worked a five-day week for 41 weeks, and 11 six-day weeks. ','In <u>Kistner Concrete</u>, the C-240 indicated that the claimant worked 271 days the year preceding the accident.',0,'2022-04-04 19:03:21','2022-04-04 19:03:21'),(351,46444,46350,'worked 271 days the year preceding the accident','In Kistner Concrete, the C-240 indicated that the claimant worked 271 days the year preceding the accident','In <u>Kistner Concrete</u>, the C-240 indicated that the claimant <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">worked 271 days the year preceding the accident</a>','In <u>Kistner Concrete</u>, the C-240 indicated that the claimant worked 271 days the year preceding the accident','In Kistner Concrete, the C-240 indicated that the claimant worked 271 days the year preceding the accident.  A closer review of the C-240 illustrated that in the 52 weeks preceding the injury of record, the claimant worked a five-day week for 41 weeks, and 11 six-day weeks. ','In <u>Kistner Concrete</u>, the C-240 indicated that the claimant worked 271 days the year preceding the accident.  A closer review of the C-240 illustrated that in the 52 weeks preceding the injury of record, the claimant worked a five-day week for 41 weeks, and 11 six-day weeks.  When setting the AWW the WCLJ noted that the claimant had “past two seventy, he gets the three hundred multiple” and set the average weekly wage using a 300 multiple.',0,'2022-04-04 19:03:21','2022-04-04 19:03:21'),(352,46444,46480,'average weekly wage','When setting the AWW the WCLJ noted that the claimant had “past two seventy, he gets the three hundred multiple” and set the average weekly wage using a 300 multiple','When setting the AWW the WCLJ noted that the claimant had “past two seventy, he gets the three hundred multiple” and set the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/average-wages/\">average weekly wage</a> using a 300 multiple','When setting the AWW the WCLJ noted that the claimant had “past two seventy, he gets the three hundred multiple” and set the average weekly wage using a 300 multiple','A closer review of the C-240 illustrated that in the 52 weeks preceding the injury of record, the claimant worked a five-day week for 41 weeks, and 11 six-day weeks.  When setting the AWW the WCLJ noted that the claimant had “past two seventy, he gets the three hundred multiple” and set the average weekly wage using a 300 multiple.','when deciding a claimant’s average weekly wage the initial determination in any case is whether an employee is deemed to be a five or six day worker. Although this is not a new concept in the Workers’ Compensation arena the Full Board has made one significant clarification: whether an employee is deemed to be a five or six-day worker is a determination that is made independently based on the facts of the case prior to determining which multiple',0,'2022-04-04 19:03:21','2022-04-04 19:03:21'),(353,46444,46480,'average weekly wage','In affirming, the two member Panel noted the that C-240 creates a “guideline that the 300 multiple is to be used for claimants who worked at least 270 days in the 52 weeks prior to the date of accident.” The one member dissent felt this was a misinterpretation of the plain language of the form C-240 that created an overinflated average weekly wage','In affirming, the two member Panel noted the that C-240 creates a “guideline that the 300 multiple is to be used for claimants who worked at least 270 days in the 52 weeks prior to the date of accident.” The one member dissent felt this was a misinterpretation of the plain language of the form C-240 that created an overinflated <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/average-wages/\">average weekly wage</a>','In affirming, the two member Panel noted the that C-240 creates a “guideline that the 300 multiple is to be used for claimants who worked at least 270 days in the 52 weeks prior to the date of accident.” The one member dissent felt this was a misinterpretation of the plain language of the form C-240 that created an overinflated average weekly wage','Despite these facts, the two members of the Board Panel still affirmed the WCLJ’s use of a 300 multiple. In affirming, the two member Panel noted the that C-240 creates a “guideline that the 300 multiple is to be used for claimants who worked at least 270 days in the 52 weeks prior to the date of accident.” The one member dissent felt this was a misinterpretation of the plain language of the form C-240 that created an overinflated average weekly wage.','In a recent Mandatory Full Board Appeal filed by the Law Offices of Melissa A. Day, PLLC, the Board held that when deciding a claimant’s average weekly wage the initial determination in any case is whether an employee is deemed to be a five or six day worker. Although this is not a new concept in the Workers’ Compensation arena the Full Board has made one significant clarification: whether an employee is deemed to be a five or six-day worker is a determination that is made independently based on the facts of the case prior to determining which multiple under WCL § 14 is appropriate for calculating the average weekly wage.',0,'2022-04-04 19:03:21','2022-04-04 19:03:21'),(354,46444,46480,'average weekly wage','Once there is a determination of the claimant’s status as a five or six-day worker then the calculation of the average weekly wage using the appropriate multiple can be completed','Once there is a determination of the claimant’s status as a five or six-day worker then the calculation of the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/average-wages/\">average weekly wage</a> using the appropriate multiple can be completed','Once there is a determination of the claimant’s status as a five or six-day worker then the calculation of the average weekly wage using the appropriate multiple can be completed','Although the C-240 is a factor to be reviewed in that determination of whether an employee is a five or six-day worker it is not the sole factor.  Once there is a determination of the claimant’s status as a five or six-day worker then the calculation of the average weekly wage using the appropriate multiple can be completed.','Once there is a determination of the claimant’s status as a five or six-day worker then the calculation of the average weekly wage using the appropriate multiple can be completed.',0,'2022-04-04 19:03:21','2022-04-04 19:03:21'),(355,46387,46332,'causally related','If the claimant’s range of motion is limited by a nonoccupational condition such as obesity the doctor should offer an opinion as to the functional loss and resulting SLU that is causally related to the work injury and not other factors','If the claimant’s range of motion is limited by a nonoccupational condition such as obesity the doctor should offer an opinion as to the functional loss and resulting SLU that is <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/07/carpal-tunnel-and-causal-relation-not-always-so-clear-cut/\">causally related</a> to the work injury and not other factors','If the claimant’s range of motion is limited by a nonoccupational condition such as obesity the doctor should offer an opinion as to the functional loss and resulting SLU that is causally related to the work injury and not other factors','The doctor is to provide the schedule loss of use opinion only for the work-related injury. If the claimant’s range of motion is limited by a nonoccupational condition such as obesity the doctor should offer an opinion as to the functional loss and resulting SLU that is causally related to the work injury and not other factors. Where a claimant has preexisting osteoarthritis, which is exacerbated by a work injury, the measurement of the contralateral extremity should be used as a baseline whenever possible. ','If the claimant’s range of motion is limited by a nonoccupational condition such as obesity the doctor should offer an opinion as to the functional loss and resulting SLU that is causally related to the work injury and not other factors.',0,'2022-04-04 19:03:30','2022-04-04 19:03:30'),(356,46387,46332,'causally related','If the range of motion on the injured part is limited by other factors such as obesity the doctor should evaluate using his or her judgement and offer an opinion on functional loss and resulting SLU that are causally related to the work injury','If the range of motion on the injured part is limited by other factors such as obesity the doctor should evaluate using his or her judgement and offer an opinion on functional loss and resulting SLU that are <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/07/carpal-tunnel-and-causal-relation-not-always-so-clear-cut/\">causally related</a> to the work injury','If the range of motion on the injured part is limited by other factors such as obesity the doctor should evaluate using his or her judgement and offer an opinion on functional loss and resulting SLU that are causally related to the work injury','The doctor is required to document the range of motion findings on the contralateral side however if there was prior injury to the contralateral side which affects the range of motion the doctor should use the normal range of motion as indicated in the guidelines as a baseline. If the range of motion on the injured part is limited by other factors such as obesity the doctor should evaluate using his or her judgement and offer an opinion on functional loss and resulting SLU that are causally related to the work injury.','If the claimant’s range of motion is limited by a nonoccupational condition such as obesity the doctor should offer an opinion as to the functional loss and resulting SLU that is causally related to the work injury and not other factors. Where a claimant has preexisting osteoarthritis, which is exacerbated by a work injury',0,'2022-04-04 19:03:30','2022-04-04 19:03:30'),(357,46387,46367,'causally related','If the claimant’s range of motion is limited by a nonoccupational condition such as obesity the doctor should offer an opinion as to the functional loss and resulting SLU that is causally related to the work injury and not other factors','If the claimant’s range of motion is limited by a nonoccupational condition such as obesity the doctor should offer an opinion as to the functional loss and resulting SLU that is <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/\">causally related</a> to the work injury and not other factors','If the claimant’s range of motion is limited by a nonoccupational condition such as obesity the doctor should offer an opinion as to the functional loss and resulting SLU that is causally related to the work injury and not other factors','The doctor is to provide the schedule loss of use opinion only for the work-related injury. If the claimant’s range of motion is limited by a nonoccupational condition such as obesity the doctor should offer an opinion as to the functional loss and resulting SLU that is causally related to the work injury and not other factors. Where a claimant has preexisting osteoarthritis, which is exacerbated by a work injury, the measurement of the contralateral extremity should be used as a baseline whenever possible. ','If the claimant’s range of motion is limited by a nonoccupational condition such as obesity the doctor should offer an opinion as to the functional loss and resulting SLU that is causally related to the work injury and not other factors.',0,'2022-04-04 19:03:30','2022-04-04 19:03:30'),(358,46387,46367,'causally related','If the range of motion on the injured part is limited by other factors such as obesity the doctor should evaluate using his or her judgement and offer an opinion on functional loss and resulting SLU that are causally related to the work injury','If the range of motion on the injured part is limited by other factors such as obesity the doctor should evaluate using his or her judgement and offer an opinion on functional loss and resulting SLU that are <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/\">causally related</a> to the work injury','If the range of motion on the injured part is limited by other factors such as obesity the doctor should evaluate using his or her judgement and offer an opinion on functional loss and resulting SLU that are causally related to the work injury','The doctor is required to document the range of motion findings on the contralateral side however if there was prior injury to the contralateral side which affects the range of motion the doctor should use the normal range of motion as indicated in the guidelines as a baseline. If the range of motion on the injured part is limited by other factors such as obesity the doctor should evaluate using his or her judgement and offer an opinion on functional loss and resulting SLU that are causally related to the work injury.','If the claimant’s range of motion is limited by a nonoccupational condition such as obesity the doctor should offer an opinion as to the functional loss and resulting SLU that is causally related to the work injury and not other factors. Where a claimant has preexisting osteoarthritis, which is exacerbated by a work injury',0,'2022-04-04 19:03:30','2022-04-04 19:03:30'),(359,46387,46329,'contralateral extremity should be used as a baseline','Where a claimant has preexisting osteoarthritis, which is exacerbated by a work injury, the measurement of the contralateral extremity should be used as a baseline whenever possible','Where a claimant has preexisting osteoarthritis, which is exacerbated by a work injury, the measurement of the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/08/using-the-contralateral-limb-as-a-baseline-for-calculating-schedule-loss-of-use/\">contralateral extremity should be used as a baseline</a> whenever possible','Where a claimant has preexisting osteoarthritis, which is exacerbated by a work injury, the measurement of the contralateral extremity should be used as a baseline whenever possible','If the claimant’s range of motion is limited by a nonoccupational condition such as obesity the doctor should offer an opinion as to the functional loss and resulting SLU that is causally related to the work injury and not other factors. Where a claimant has preexisting osteoarthritis, which is exacerbated by a work injury, the measurement of the contralateral extremity should be used as a baseline whenever possible. Reductions in range of motion for the non-injured contralateral extremity are deducted from the loss of range of motion for the injured extremity.','Where a claimant has preexisting osteoarthritis, which is exacerbated by a work injury, the measurement of the contralateral extremity should be used as a baseline whenever possible.',0,'2022-04-04 19:03:30','2022-04-04 19:03:30'),(360,46387,46329,'contralateral side as a baseline','This can be done by using the contralateral side as a baseline and by reviewing reports concerning prior injuries to the same site','This can be done by using the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/08/using-the-contralateral-limb-as-a-baseline-for-calculating-schedule-loss-of-use/\">contralateral side as a baseline</a> and by reviewing reports concerning prior injuries to the same site','This can be done by using the contralateral side as a baseline and by reviewing reports concerning prior injuries to the same site','With respect to apportionment the examining physician should offer an opinion of the SLU that resulted from the relevant work-related injury, as opposed to other causes. This can be done by using the contralateral side as a baseline and by reviewing reports concerning prior injuries to the same site.','This can be done by using the contralateral side as a baseline and by reviewing reports concerning prior injuries to the same site.',0,'2022-04-04 19:03:30','2022-04-04 19:03:30'),(361,46387,46422,'guidelines there must be objective medical','To obtain an increase over the SLU previously awarded and based on the earlier guidelines there must be objective medical evidence that the claimant’s anatomical or functional loss (e.g','To obtain an increase over the SLU previously awarded and based on the earlier <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">guidelines there must be objective medical</a> evidence that the claimant’s anatomical or functional loss (e.g','To obtain an increase over the SLU previously awarded and based on the earlier guidelines there must be objective medical evidence that the claimant’s anatomical or functional loss (e.g','If the patient was previously awarded a SLU based on the earlier guidelines and subsequently sufferers a new injury, the examining physician should evaluate based on the 2018 guidelines to determine the SLU that resulted from the relevant work-related injury as opposed to other causes. To obtain an increase over the SLU previously awarded and based on the earlier guidelines there must be objective medical evidence that the claimant’s anatomical or functional loss (e.g. ROM) has increased since the prior SLU and the evaluation under the 2018 Guidelines results in a higher SLU than the one previously awarded.','to determine the SLU that resulted from the relevant work-related injury as opposed to other causes. To obtain an increase over the SLU previously awarded and based on the earlier guidelines there must be objective medical evidence that the claimant’s anatomical or functional loss (e.g. ROM) has increased since the prior SLU and the evaluation under the 2018 Guidelines results in a higher SLU than the one previously awarded. No increased SLU should be awarded if claimant’s anatomical or functional loss is substantially the same as it was at the time of the prior SLU, even if an assessment pursuant to the 2018 guidelines would result in a higher SLU percentag',0,'2022-04-04 19:03:30','2022-04-04 19:03:30'),(362,46387,46502,'guidelines there must be objective medical','To obtain an increase over the SLU previously awarded and based on the earlier guidelines there must be objective medical evidence that the claimant’s anatomical or functional loss (e.g','To obtain an increase over the SLU previously awarded and based on the earlier <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">guidelines there must be objective medical</a> evidence that the claimant’s anatomical or functional loss (e.g','To obtain an increase over the SLU previously awarded and based on the earlier guidelines there must be objective medical evidence that the claimant’s anatomical or functional loss (e.g','If the patient was previously awarded a SLU based on the earlier guidelines and subsequently sufferers a new injury, the examining physician should evaluate based on the 2018 guidelines to determine the SLU that resulted from the relevant work-related injury as opposed to other causes. To obtain an increase over the SLU previously awarded and based on the earlier guidelines there must be objective medical evidence that the claimant’s anatomical or functional loss (e.g. ROM) has increased since the prior SLU and the evaluation under the 2018 Guidelines results in a higher SLU than the one previously awarded.','to determine the SLU that resulted from the relevant work-related injury as opposed to other causes. To obtain an increase over the SLU previously awarded and based on the earlier guidelines there must be objective medical evidence that the claimant’s anatomical or functional loss (e.g. ROM) has increased since the prior SLU and the evaluation under the 2018 Guidelines results in a higher SLU than the one previously awarded. No increased SLU should be awarded if claimant’s anatomical or functional loss is substantially the same as it was at the time of the prior SLU, even if an assessment pursuant to the 2018 guidelines would result in a higher SLU percentag',0,'2022-04-04 19:03:30','2022-04-04 19:03:30'),(363,46387,46506,'guidelines there must be objective medical','To obtain an increase over the SLU previously awarded and based on the earlier guidelines there must be objective medical evidence that the claimant’s anatomical or functional loss (e.g','To obtain an increase over the SLU previously awarded and based on the earlier <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">guidelines there must be objective medical</a> evidence that the claimant’s anatomical or functional loss (e.g','To obtain an increase over the SLU previously awarded and based on the earlier guidelines there must be objective medical evidence that the claimant’s anatomical or functional loss (e.g','If the patient was previously awarded a SLU based on the earlier guidelines and subsequently sufferers a new injury, the examining physician should evaluate based on the 2018 guidelines to determine the SLU that resulted from the relevant work-related injury as opposed to other causes. To obtain an increase over the SLU previously awarded and based on the earlier guidelines there must be objective medical evidence that the claimant’s anatomical or functional loss (e.g. ROM) has increased since the prior SLU and the evaluation under the 2018 Guidelines results in a higher SLU than the one previously awarded.','to determine the SLU that resulted from the relevant work-related injury as opposed to other causes. To obtain an increase over the SLU previously awarded and based on the earlier guidelines there must be objective medical evidence that the claimant’s anatomical or functional loss (e.g. ROM) has increased since the prior SLU and the evaluation under the 2018 Guidelines results in a higher SLU than the one previously awarded. No increased SLU should be awarded if claimant’s anatomical or functional loss is substantially the same as it was at the time of the prior SLU, even if an assessment pursuant to the 2018 guidelines would result in a higher SLU percentag',0,'2022-04-04 19:03:30','2022-04-04 19:03:30'),(364,46387,46340,'medical evidence','To obtain an increase over the SLU previously awarded and based on the earlier guidelines there must be objective medical evidence that the claimant’s anatomical or functional loss (e.g','To obtain an increase over the SLU previously awarded and based on the earlier guidelines there must be objective <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\">medical evidence</a> that the claimant’s anatomical or functional loss (e.g','To obtain an increase over the SLU previously awarded and based on the earlier guidelines there must be objective medical evidence that the claimant’s anatomical or functional loss (e.g','If the patient was previously awarded a SLU based on the earlier guidelines and subsequently sufferers a new injury, the examining physician should evaluate based on the 2018 guidelines to determine the SLU that resulted from the relevant work-related injury as opposed to other causes. To obtain an increase over the SLU previously awarded and based on the earlier guidelines there must be objective medical evidence that the claimant’s anatomical or functional loss (e.g. ROM) has increased since the prior SLU and the evaluation under the 2018 Guidelines results in a higher SLU than the one previously awarded.','to determine the SLU that resulted from the relevant work-related injury as opposed to other causes. To obtain an increase over the SLU previously awarded and based on the earlier guidelines there must be objective medical evidence that the claimant’s anatomical or functional loss (e.g. ROM) has increased since the prior SLU and the evaluation under the 2018 Guidelines results in a higher SLU than the one previously awarded. No increased SLU should be awarded if claimant’s anatomical or functional loss is substantially the same as it was at the time of the prior SLU, even if an assessment pursuant to the 2018 guidelines would result in a higher SLU percentag',0,'2022-04-04 19:03:30','2022-04-04 19:03:30'),(365,46387,46415,'awarded if claimant’s anatomical or functional loss','No increased SLU should be awarded if claimant’s anatomical or functional loss is substantially the same as it was at the time of the prior SLU, even if an assessment pursuant to the 2018 guidelines would result in a higher SLU percentage','No increased SLU should be <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\">awarded if claimant’s anatomical or functional loss</a> is substantially the same as it was at the time of the prior SLU, even if an assessment pursuant to the 2018 guidelines would result in a higher SLU percentage','No increased SLU should be awarded if claimant’s anatomical or functional loss is substantially the same as it was at the time of the prior SLU, even if an assessment pursuant to the 2018 guidelines would result in a higher SLU percentage','ROM) has increased since the prior SLU and the evaluation under the 2018 Guidelines results in a higher SLU than the one previously awarded. No increased SLU should be awarded if claimant’s anatomical or functional loss is substantially the same as it was at the time of the prior SLU, even if an assessment pursuant to the 2018 guidelines would result in a higher SLU percentage.','No increased SLU should be awarded if claimant’s anatomical or functional loss is substantially the same as it was at the time of the prior SLU, even if an assessment pursuant to the 2018 guidelines would result in a higher SLU percentage.',0,'2022-04-04 19:03:30','2022-04-04 19:03:30'),(366,46387,46342,'give both a SLU opinion and a non-schedule opinion','If both schedule and non-schedule body parts are involved the IME doctor can give both a SLU opinion and a non-schedule opinion in the same report','If both schedule and non-schedule body parts are involved the IME doctor can <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">give both a SLU opinion and a non-schedule opinion</a> in the same report','If both schedule and non-schedule body parts are involved the IME doctor can give both a SLU opinion and a non-schedule opinion in the same report','If both schedule and non-schedule body parts are involved the IME doctor can give both a SLU opinion and a non-schedule opinion in the same report. The doctor should fill out both the IME-4 A and B forms.','If both schedule and non-schedule body parts are involved the IME doctor can give both a SLU opinion and a non-schedule opinion in the same report.',0,'2022-04-04 19:03:30','2022-04-04 19:03:30'),(367,46387,46503,'attending physician','The claimant’s attending physician is required to use a form C4.3 for a SLU opinion','The claimant’s <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">attending physician</a> is required to use a form C4.3 for a SLU opinion','The claimant’s attending physician is required to use a form C4.3 for a SLU opinion','The claimant’s attending physician is required to use a form C4.3 for a SLU opinion. The provider who has treated the injury is expected to conduct the SLU exam.','The claimant’s attending physician is required to use a form C4.3 for a SLU opinion.',0,'2022-04-04 19:03:30','2022-04-04 19:03:30'),(368,46387,46372,'claimant had prior injuries or conditions','The carrier should investigate whether the claimant had prior injuries or conditions that may affect in range of motion','The carrier should investigate whether the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/how-change-in-conditions-for-classified-claimants-changed-drastically/\">claimant had prior injuries or conditions</a> that may affect in range of motion','The carrier should investigate whether the claimant had prior injuries or conditions that may affect in range of motion','The carrier should investigate whether the claimant had prior injuries or conditions that may affect in range of motion. Review the post-employment physical or records from the primary care physician. ','The carrier should investigate whether the claimant had prior injuries or conditions that may affect in range of motion.',0,'2022-04-04 19:03:30','2022-04-04 19:03:30'),(369,46420,46383,'amendment is constitutional in light of any retroactive','Justice Fahey, writing for a unanimous Court, reversed the First Department and held that the amendment is constitutional in light of any retroactive effect','Justice Fahey, writing for a unanimous Court, reversed the First Department and held that the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/\">amendment is constitutional in light of any retroactive</a> effect','Justice Fahey, writing for a unanimous Court, reversed the First Department and held that the amendment is constitutional in light of any retroactive effect','The issue on appeal was whether the 2013 amendment to WCL § 25-a created a retroactive effect which is unconstitutional in light of the Contracts Clause, Takings Clause, and the Due Process Clause. Justice Fahey, writing for a unanimous Court, reversed the First Department and held that the amendment is constitutional in light of any retroactive effect.','Justice Fahey, writing for a unanimous Court, reversed the First Department and held that the amendment is constitutional in light of any retroactive effect.',0,'2022-04-04 21:08:22','2022-04-04 21:08:22'),(370,46420,46383,'amendment had a retroactive','The Court initially examined whether or not the amendment had a retroactive effect','The Court initially examined whether or not the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/\">amendment had a retroactive</a> effect','The Court initially examined whether or not the amendment had a retroactive effect','The Court initially examined whether or not the amendment had a retroactive effect. Without affirmatively holding either way, the Court proceeded with their analysis assuming Plaintiffs’ argument was accurate insofar as there was a retroactive effect which would impose additional liability on the Plaintiffs.','The Court initially examined whether or not the amendment had a retroactive effect. Without affirmatively holding either way, the Court proceeded with their analysis assuming Plaintiffs’ argument was accurate insofar as there was a retroactive effect',0,'2022-04-04 21:08:22','2022-04-04 21:08:22'),(371,46346,46338,'disputed causal relationship','Our IME disputed causal relationship, stating the claimant’s complaints were really radicular from the cervical spine','Our IME <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/06/third-deparment-decision-disputing-causal-relationship/\">disputed causal relationship</a>, stating the claimant’s complaints were really radicular from the cervical spine','Our IME disputed causal relationship, stating the claimant’s complaints were really radicular from the cervical spine','The doctor requested surgery. Our IME disputed causal relationship, stating the claimant’s complaints were really radicular from the cervical spine.','Our IME disputed causal relationship, stating the claimant’s complaints were really radicular from the cervical spine.',0,'2022-04-04 21:55:11','2022-04-04 21:55:11'),(372,46346,46338,'causal relationship','She also admitted that reports closer in time to the date of injury are generally more accurate, that she never reviewed a 02/03/2020 report, finding no evidence of an injury to the right shoulder, and confirmed that would have been relevant in forming her opinion on causal relationship','She also admitted that reports closer in time to the date of injury are generally more accurate, that she never reviewed a 02/03/2020 report, finding no evidence of an injury to the right shoulder, and confirmed that would have been relevant in forming her opinion on <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/06/third-deparment-decision-disputing-causal-relationship/\">causal relationship</a>','She also admitted that reports closer in time to the date of injury are generally more accurate, that she never reviewed a 02/03/2020 report, finding no evidence of an injury to the right shoulder, and confirmed that would have been relevant in forming her opinion on causal relationship','She admitted she could not relate findings on MRI, or the need for surgery, to the 01/18/2020 injury within a reasonable degree of medical certainty. She also admitted that reports closer in time to the date of injury are generally more accurate, that she never reviewed a 02/03/2020 report, finding no evidence of an injury to the right shoulder, and confirmed that would have been relevant in forming her opinion on causal relationship.','shed claim for the upper back and neck. The claimant’s C-3, filed approximately 3 weeks later, listed the right shoulder as a claimed injury. The right shoulder MRI showed bursitis and a partial tear of the supraspinatus and AC degenerative joint disease. The doctor requested surgery. Our IME disputed causal relationship, stating the claimant’s complaints were really radicular from the cervical spine.',0,'2022-04-04 21:55:11','2022-04-04 21:55:11'),(373,46346,46342,'opinion on causal relationship','She also admitted that reports closer in time to the date of injury are generally more accurate, that she never reviewed a 02/03/2020 report, finding no evidence of an injury to the right shoulder, and confirmed that would have been relevant in forming her opinion on causal relationship','She also admitted that reports closer in time to the date of injury are generally more accurate, that she never reviewed a 02/03/2020 report, finding no evidence of an injury to the right shoulder, and confirmed that would have been relevant in forming her <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">opinion on causal relationship</a>','She also admitted that reports closer in time to the date of injury are generally more accurate, that she never reviewed a 02/03/2020 report, finding no evidence of an injury to the right shoulder, and confirmed that would have been relevant in forming her opinion on causal relationship','She admitted she could not relate findings on MRI, or the need for surgery, to the 01/18/2020 injury within a reasonable degree of medical certainty. She also admitted that reports closer in time to the date of injury are generally more accurate, that she never reviewed a 02/03/2020 report, finding no evidence of an injury to the right shoulder, and confirmed that would have been relevant in forming her opinion on causal relationship.','She admitted she could not relate findings on MRI, or the need for surgery, to the 01/18/2020 injury within a reasonable degree of medical certainty. She also admitted that reports closer in time to the date of injury are generally more accurate, that she never reviewed a 02/03/2020 report, finding no evidence of an injury to the right shoulder, and confirmed that would have been relevant in forming her opinion on causal relationship.',0,'2022-04-04 21:55:11','2022-04-04 21:55:11'),(374,46346,46342,'causal relationship','Our IME disputed causal relationship, stating the claimant’s complaints were really radicular from the cervical spine','Our IME disputed <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">causal relationship</a>, stating the claimant’s complaints were really radicular from the cervical spine','Our IME disputed causal relationship, stating the claimant’s complaints were really radicular from the cervical spine','The doctor requested surgery. Our IME disputed causal relationship, stating the claimant’s complaints were really radicular from the cervical spine.','Our IME disputed causal relationship, stating the claimant’s complaints were really radicular from the cervical spine.',0,'2022-04-04 21:55:11','2022-04-04 21:55:11'),(375,46346,46344,'causal relationship','Our IME disputed causal relationship, stating the claimant’s complaints were really radicular from the cervical spine','Our IME disputed <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\">causal relationship</a>, stating the claimant’s complaints were really radicular from the cervical spine','Our IME disputed causal relationship, stating the claimant’s complaints were really radicular from the cervical spine','The doctor requested surgery. Our IME disputed causal relationship, stating the claimant’s complaints were really radicular from the cervical spine.','Our IME disputed causal relationship, stating the claimant’s complaints were really radicular from the cervical spine.',0,'2022-04-04 21:55:11','2022-04-04 21:55:11'),(376,46346,46344,'causal relationship','She also admitted that reports closer in time to the date of injury are generally more accurate, that she never reviewed a 02/03/2020 report, finding no evidence of an injury to the right shoulder, and confirmed that would have been relevant in forming her opinion on causal relationship','She also admitted that reports closer in time to the date of injury are generally more accurate, that she never reviewed a 02/03/2020 report, finding no evidence of an injury to the right shoulder, and confirmed that would have been relevant in forming her opinion on <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\">causal relationship</a>','She also admitted that reports closer in time to the date of injury are generally more accurate, that she never reviewed a 02/03/2020 report, finding no evidence of an injury to the right shoulder, and confirmed that would have been relevant in forming her opinion on causal relationship','She admitted she could not relate findings on MRI, or the need for surgery, to the 01/18/2020 injury within a reasonable degree of medical certainty. She also admitted that reports closer in time to the date of injury are generally more accurate, that she never reviewed a 02/03/2020 report, finding no evidence of an injury to the right shoulder, and confirmed that would have been relevant in forming her opinion on causal relationship.','shed claim for the upper back and neck. The claimant’s C-3, filed approximately 3 weeks later, listed the right shoulder as a claimed injury. The right shoulder MRI showed bursitis and a partial tear of the supraspinatus and AC degenerative joint disease. The doctor requested surgery. Our IME disputed causal relationship, stating the claimant’s complaints were really radicular from the cervical spine.',0,'2022-04-04 21:55:11','2022-04-04 21:55:11'),(377,46339,46553,'claimant alleged','The claimant alleged that the carrier took credit for the prior $3,500 attorney fee, and also deducted the full amount of the remaining reimbursement','The <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">claimant alleged</a> that the carrier took credit for the prior $3,500 attorney fee, and also deducted the full amount of the remaining reimbursement','The claimant alleged that the carrier took credit for the prior $3,500 attorney fee, and also deducted the full amount of the remaining reimbursement','The claimant appealed the Stipulated Decision, arguing that there had been no meeting of the minds on the issue of the amount of the prior payments. The claimant alleged that the carrier took credit for the prior $3,500 attorney fee, and also deducted the full amount of the remaining reimbursement. Claimant alleged that he was underpaid by $3,500 as a result. ','The claimant appealed the Stipulated Decision, arguing that there had been no meeting of the minds on the issue of the amount of the prior payments. The claimant alleged that the carrier took credit for the prior $3,500 attorney fee, and also deducted the full amount of the remaining reimbursement.',0,'2022-04-04 21:55:17','2022-04-04 21:55:17'),(378,46339,46511,'remaining amount of the reimbursement to the employer','The remaining amount of the reimbursement to the employer should have been reduced by the $3,500 previously taken from the reimbursement for an attorney fee','The <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">remaining amount of the reimbursement to the employer</a> should have been reduced by the $3,500 previously taken from the reimbursement for an attorney fee','The remaining amount of the reimbursement to the employer should have been reduced by the $3,500 previously taken from the reimbursement for an attorney fee','The Board Panel agreed with the claimant. The remaining amount of the reimbursement to the employer should have been reduced by the $3,500 previously taken from the reimbursement for an attorney fee. The Board Panel directed the carrier to pay the outstanding balance of $3,500 to the claimant.','The Board Panel agreed with the claimant. The remaining amount of the reimbursement to the employer should have been reduced by the $3,500 previously taken from the reimbursement for an attorney fee.',0,'2022-04-04 21:55:17','2022-04-04 21:55:17'),(379,46339,46504,'wages paid from a schedule loss','Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.','Carriers need to be aware that, even though they are entitled to full reimbursement for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">wages paid from a schedule loss</a> of use award, they have to be careful not to double count on the prior wages already paid to the employer.','Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.','The remaining amount of the reimbursement to the employer should have been reduced by the $3,500 previously taken from the reimbursement for an attorney fee. The Board Panel directed the carrier to pay the outstanding balance of $3,500 to the claimant. Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.','Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.',0,'2022-04-04 21:55:17','2022-04-04 21:55:17'),(380,46339,46509,'wages paid from a schedule loss','Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.','Carriers need to be aware that, even though they are entitled to full reimbursement for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">wages paid from a schedule loss</a> of use award, they have to be careful not to double count on the prior wages already paid to the employer.','Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.','The remaining amount of the reimbursement to the employer should have been reduced by the $3,500 previously taken from the reimbursement for an attorney fee. The Board Panel directed the carrier to pay the outstanding balance of $3,500 to the claimant. Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.','Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.',0,'2022-04-04 21:55:17','2022-04-04 21:55:17'),(381,46339,46329,'schedule loss','Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.','Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/08/using-the-contralateral-limb-as-a-baseline-for-calculating-schedule-loss-of-use/\">schedule loss</a> of use award, they have to be careful not to double count on the prior wages already paid to the employer.','Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.','The remaining amount of the reimbursement to the employer should have been reduced by the $3,500 previously taken from the reimbursement for an attorney fee. The Board Panel directed the carrier to pay the outstanding balance of $3,500 to the claimant. Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.','Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.',0,'2022-04-04 21:55:17','2022-04-04 21:55:17'),(382,46339,46387,'schedule loss','Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.','Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\">schedule loss</a> of use award, they have to be careful not to double count on the prior wages already paid to the employer.','Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.','The remaining amount of the reimbursement to the employer should have been reduced by the $3,500 previously taken from the reimbursement for an attorney fee. The Board Panel directed the carrier to pay the outstanding balance of $3,500 to the claimant. Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.','Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.',0,'2022-04-04 21:55:17','2022-04-04 21:55:17'),(383,46339,46415,'schedule loss of use award','Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.','Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\">schedule loss of use award</a>, they have to be careful not to double count on the prior wages already paid to the employer.','Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.','The remaining amount of the reimbursement to the employer should have been reduced by the $3,500 previously taken from the reimbursement for an attorney fee. The Board Panel directed the carrier to pay the outstanding balance of $3,500 to the claimant. Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.','Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.',0,'2022-04-04 21:55:17','2022-04-04 21:55:17'),(384,46551,46511,'employers and carriers need to get their applications','Based on this language, self-insured employers and carriers need to get their applications in for 25-a relief in BEFORE 1/1/14','Based on this language, self-insured <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">employers and carriers need to get their applications</a> in for 25-a relief in BEFORE 1/1/14','Based on this language, self-insured employers and carriers need to get their applications in for 25-a relief in BEFORE 1/1/14','What does this mean? Based on this language, self-insured employers and carriers need to get their applications in for 25-a relief in BEFORE 1/1/14.','Based on this language, self-insured employers and carriers need to get their applications in for 25-a relief in BEFORE 1/1/14.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(385,46551,46511,'claim that is reopened','7 Years from the Date of Accident or Injury Have Elapsed. The threshold is a there must be a claim that is reopened more than 7 years after the date of accident or injury','<strong>7 Years from the Date of Accident or Injury Have Elapsed.</strong> The threshold is a there must be a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">claim that is reopened</a> more than 7 years after the date of accident or injury','<strong>7 Years from the Date of Accident or Injury Have Elapsed.</strong> The threshold is a there must be a claim that is reopened more than 7 years after the date of accident or injury','7 Years from the Date of Accident or Injury Have Elapsed. The threshold is a there must be a claim that is reopened more than 7 years after the date of accident or injury','<strong>7 Years from the Date of Accident or Injury Have Elapsed.</strong> The threshold is a there must be a claim that is reopened more than 7 years after the date of accident or injury.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(386,46551,46511,'employer or carrier','If you are a self-insured employer or carrier, you are going to need to be very aggressive in identifying these claims during the next 9 months to ferret out all claims which might qualify for such relief before the 1/1/14 deadline','If you are a self-insured <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">employer or carrier</a>, you are going to need to be very aggressive in identifying these claims during the next 9 months to ferret out all claims which might qualify for such relief before the 1/1/14 deadline','If you are a self-insured employer or carrier, you are going to need to be very aggressive in identifying these claims during the next 9 months to ferret out all claims which might qualify for such relief before the 1/1/14 deadline','If you are a self-insured employer or carrier, you are going to need to be very aggressive in identifying these claims during the next 9 months to ferret out all claims which might qualify for such relief before the 1/1/14 deadline.','If you are a self-insured employer or carrier, you are going to need to be very aggressive in identifying these claims during the next 9 months to ferret out all claims which might qualify for such relief before the 1/1/14 deadline.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(387,46551,46546,'claim that is reopened','7 Years from the Date of Accident or Injury Have Elapsed. The threshold is a there must be a claim that is reopened more than 7 years after the date of accident or injury','<strong>7 Years from the Date of Accident or Injury Have Elapsed.</strong> The threshold is a there must be a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">claim that is reopened</a> more than 7 years after the date of accident or injury','<strong>7 Years from the Date of Accident or Injury Have Elapsed.</strong> The threshold is a there must be a claim that is reopened more than 7 years after the date of accident or injury','7 Years from the Date of Accident or Injury Have Elapsed. The threshold is a there must be a claim that is reopened more than 7 years after the date of accident or injury','<strong>7 Years from the Date of Accident or Injury Have Elapsed.</strong> The threshold is a there must be a claim that is reopened more than 7 years after the date of accident or injury.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(388,46551,46546,'claim that is reopened','3 Years from the Last Payment of Compensation. A claim that is reopened more than 3 years after the last payment of compensation – which refers specifically to lost wage benefits, not to medical','<strong>3 Years from the Last Payment of Compensation.</strong> A <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">claim that is reopened</a> more than 3 years after the last payment of compensation – which refers specifically to lost wage benefits, not to medical','<strong>3 Years from the Last Payment of Compensation.</strong> A claim that is reopened more than 3 years after the last payment of compensation – which refers specifically to lost wage benefits, not to medical','3 Years from the Last Payment of Compensation. A claim that is reopened more than 3 years after the last payment of compensation – which refers specifically to lost wage benefits, not to medical','<strong>3 Years from the Last Payment of Compensation.</strong> A claim that is reopened more than 3 years after the last payment of compensation – which refers specifically to lost wage benefits, not to medical.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(389,46551,46546,'employers and carriers','Based on this language, self-insured employers and carriers need to get their applications in for 25-a relief in BEFORE 1/1/14','Based on this language, self-insured <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">employers and carriers</a> need to get their applications in for 25-a relief in BEFORE 1/1/14','Based on this language, self-insured employers and carriers need to get their applications in for 25-a relief in BEFORE 1/1/14','What does this mean? Based on this language, self-insured employers and carriers need to get their applications in for 25-a relief in BEFORE 1/1/14.','Based on this language, self-insured employers and carriers need to get their applications in for 25-a relief in BEFORE 1/1/14.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(390,46551,46546,'employer or carrier','If you are a self-insured employer or carrier, you are going to need to be very aggressive in identifying these claims during the next 9 months to ferret out all claims which might qualify for such relief before the 1/1/14 deadline','If you are a self-insured <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">employer or carrier</a>, you are going to need to be very aggressive in identifying these claims during the next 9 months to ferret out all claims which might qualify for such relief before the 1/1/14 deadline','If you are a self-insured employer or carrier, you are going to need to be very aggressive in identifying these claims during the next 9 months to ferret out all claims which might qualify for such relief before the 1/1/14 deadline','If you are a self-insured employer or carrier, you are going to need to be very aggressive in identifying these claims during the next 9 months to ferret out all claims which might qualify for such relief before the 1/1/14 deadline.','If you are a self-insured employer or carrier, you are going to need to be very aggressive in identifying these claims during the next 9 months to ferret out all claims which might qualify for such relief before the 1/1/14 deadline.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(391,46551,46512,'compensation –','3 Years from the Last Payment of Compensation. A claim that is reopened more than 3 years after the last payment of compensation – which refers specifically to lost wage benefits, not to medical','<strong>3 Years from the Last Payment of Compensation.</strong> A claim that is reopened more than 3 years after the last payment of <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">compensation –</a> which refers specifically to lost wage benefits, not to medical','<strong>3 Years from the Last Payment of Compensation.</strong> A claim that is reopened more than 3 years after the last payment of compensation – which refers specifically to lost wage benefits, not to medical','3 Years from the Last Payment of Compensation. A claim that is reopened more than 3 years after the last payment of compensation – which refers specifically to lost wage benefits, not to medical','<strong>3 Years from the Last Payment of Compensation.</strong> A claim that is reopened more than 3 years after the last payment of compensation – which refers specifically to lost wage benefits, not to medical.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(392,46551,46371,'– which refers specifically to lost wage benefits,','3 Years from the Last Payment of Compensation. A claim that is reopened more than 3 years after the last payment of compensation – which refers specifically to lost wage benefits, not to medical','<strong>3 Years from the Last Payment of Compensation.</strong> A claim that is reopened more than 3 years after the last payment of compensation <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">– which refers specifically to lost wage benefits,</a> not to medical','<strong>3 Years from the Last Payment of Compensation.</strong> A claim that is reopened more than 3 years after the last payment of compensation – which refers specifically to lost wage benefits, not to medical','3 Years from the Last Payment of Compensation. A claim that is reopened more than 3 years after the last payment of compensation – which refers specifically to lost wage benefits, not to medical','<strong>3 Years from the Last Payment of Compensation.</strong> A claim that is reopened more than 3 years after the last payment of compensation – which refers specifically to lost wage benefits, not to medical.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(393,46551,46371,'benefits was made in the past –','Applications can be retroactive. If you have a claim that meets these criteria, you can request 25-a relief, even if the qualifying claim for benefits was made in the past – i.e','<strong>Applications can be retroactive.</strong> If you have a claim that meets these criteria, you can request 25-a relief, even if the qualifying claim for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">benefits was made in the past –</a> i.e','<strong>Applications can be retroactive.</strong> If you have a claim that meets these criteria, you can request 25-a relief, even if the qualifying claim for benefits was made in the past – i.e','Applications can be retroactive. If you have a claim that meets these criteria, you can request 25-a relief, even if the qualifying claim for benefits was made in the past – i.e','<strong>Applications can be retroactive.</strong> If you have a claim that meets these criteria, you can request 25-a relief, even if the qualifying claim for benefits was made in the past – i.e. you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(394,46551,46509,'– which refers specifically to lost wage','3 Years from the Last Payment of Compensation. A claim that is reopened more than 3 years after the last payment of compensation – which refers specifically to lost wage benefits, not to medical','<strong>3 Years from the Last Payment of Compensation.</strong> A claim that is reopened more than 3 years after the last payment of compensation <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">– which refers specifically to lost wage</a> benefits, not to medical','<strong>3 Years from the Last Payment of Compensation.</strong> A claim that is reopened more than 3 years after the last payment of compensation – which refers specifically to lost wage benefits, not to medical','3 Years from the Last Payment of Compensation. A claim that is reopened more than 3 years after the last payment of compensation – which refers specifically to lost wage benefits, not to medical','<strong>3 Years from the Last Payment of Compensation.</strong> A claim that is reopened more than 3 years after the last payment of compensation – which refers specifically to lost wage benefits, not to medical.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(395,46551,46422,'medical treatment','There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages','There must be a claim for benefits after the requisite time has elapsed either for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">medical treatment</a> or lost wages','There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages','There mere lapse of time is not sufficient. There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages.','<strong>There must be a claim for benefits after the requisite time period has lapsed.</strong> There mere lapse of time is not sufficient. There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(396,46551,46422,'medical treatment','you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made','you received a bill for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">medical treatment</a> a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made','you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made','If you have a claim that meets these criteria, you can request 25-a relief, even if the qualifying claim for benefits was made in the past – i.e. you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made.','you have a claim that meets these criteria, you can request 25-a relief, even if the qualifying claim for benefits was made in the past – i.e. you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(397,46551,46502,'medical treatment','There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages','There must be a claim for benefits after the requisite time has elapsed either for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">medical treatment</a> or lost wages','There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages','There mere lapse of time is not sufficient. There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages.','<strong>There must be a claim for benefits after the requisite time period has lapsed.</strong> There mere lapse of time is not sufficient. There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(398,46551,46502,'medical treatment','you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made','you received a bill for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">medical treatment</a> a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made','you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made','If you have a claim that meets these criteria, you can request 25-a relief, even if the qualifying claim for benefits was made in the past – i.e. you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made.','you have a claim that meets these criteria, you can request 25-a relief, even if the qualifying claim for benefits was made in the past – i.e. you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(399,46551,46503,'medical treatment','There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages','There must be a claim for benefits after the requisite time has elapsed either for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">medical treatment</a> or lost wages','There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages','There mere lapse of time is not sufficient. There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages.','<strong>There must be a claim for benefits after the requisite time period has lapsed.</strong> There mere lapse of time is not sufficient. There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(400,46551,46503,'medical treatment','you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made','you received a bill for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">medical treatment</a> a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made','you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made','If you have a claim that meets these criteria, you can request 25-a relief, even if the qualifying claim for benefits was made in the past – i.e. you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made.','you have a claim that meets these criteria, you can request 25-a relief, even if the qualifying claim for benefits was made in the past – i.e. you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(401,46551,46506,'medical treatment','There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages','There must be a claim for benefits after the requisite time has elapsed either for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">medical treatment</a> or lost wages','There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages','There mere lapse of time is not sufficient. There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages.','<strong>There must be a claim for benefits after the requisite time period has lapsed.</strong> There mere lapse of time is not sufficient. There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(402,46551,46506,'medical treatment','you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made','you received a bill for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">medical treatment</a> a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made','you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made','If you have a claim that meets these criteria, you can request 25-a relief, even if the qualifying claim for benefits was made in the past – i.e. you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made.','you have a claim that meets these criteria, you can request 25-a relief, even if the qualifying claim for benefits was made in the past – i.e. you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(403,46551,46543,'medical treatment','There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages','There must be a claim for benefits after the requisite time has elapsed either for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\">medical treatment</a> or lost wages','There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages','There mere lapse of time is not sufficient. There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages.','<strong>There must be a claim for benefits after the requisite time period has lapsed.</strong> There mere lapse of time is not sufficient. There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(404,46551,46543,'medical treatment','you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made','you received a bill for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\">medical treatment</a> a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made','you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made','If you have a claim that meets these criteria, you can request 25-a relief, even if the qualifying claim for benefits was made in the past – i.e. you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made.','you have a claim that meets these criteria, you can request 25-a relief, even if the qualifying claim for benefits was made in the past – i.e. you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(405,46551,46340,'medical evidence','This is another legal argument – there can be no submissions within 7 or 3 which should have led to a “reopening” such as a surgical request or medical evidence of lost time among other things','This is another legal argument – there can be no submissions within 7 or 3 which should have led to a “reopening” such as a surgical request or <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\">medical evidence</a> of lost time among other things','This is another legal argument – there can be no submissions within 7 or 3 which should have led to a “reopening” such as a surgical request or medical evidence of lost time among other things','This is another legal argument – there can be no submissions within 7 or 3 which should have led to a “reopening” such as a surgical request or medical evidence of lost time among other things.','This is another legal argument – there can be no submissions within 7 or 3 which should have led to a “reopening” such as a surgical request or medical evidence of lost time among other things.',0,'2022-04-04 21:55:18','2022-04-04 21:55:18'),(406,46388,46371,'– rare because the claimant','Claimant, a seasonal summer worker with the Town’s Highway Department was, apparently, injured while lifting wheelbarrow loads of asphalt and suffered a “rare” rotator cuff tear – rare because the claimant is a young, healthy male','Claimant, a seasonal summer worker with the Town’s Highway Department was, apparently, injured while lifting wheelbarrow loads of asphalt and suffered a “rare” rotator cuff tear <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">– rare because the claimant</a> is a young, healthy male','Claimant, a seasonal summer worker with the Town’s Highway Department was, apparently, injured while lifting wheelbarrow loads of asphalt and suffered a “rare” rotator cuff tear – rare because the claimant is a young, healthy male','Claimant, a seasonal summer worker with the Town’s Highway Department was, apparently, injured while lifting wheelbarrow loads of asphalt and suffered a “rare” rotator cuff tear – rare because the claimant is a young, healthy male.  The claimant treated for this condition, but never reported it to the employer, and even lost time from his employment; and when presenting his doctor’s excuse, did not inform the Town his lost time was related to a work-injury. ','Claimant, a seasonal summer worker with the Town’s Highway Department was, apparently, injured while lifting wheelbarrow loads of asphalt and suffered a “rare” rotator cuff tear – rare because the claimant is a young, healthy male.',0,'2022-04-04 21:55:19','2022-04-04 21:55:19'),(407,46388,46374,'– rare because the claimant','Claimant, a seasonal summer worker with the Town’s Highway Department was, apparently, injured while lifting wheelbarrow loads of asphalt and suffered a “rare” rotator cuff tear – rare because the claimant is a young, healthy male','Claimant, a seasonal summer worker with the Town’s Highway Department was, apparently, injured while lifting wheelbarrow loads of asphalt and suffered a “rare” rotator cuff tear <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">– rare because the claimant</a> is a young, healthy male','Claimant, a seasonal summer worker with the Town’s Highway Department was, apparently, injured while lifting wheelbarrow loads of asphalt and suffered a “rare” rotator cuff tear – rare because the claimant is a young, healthy male','Claimant, a seasonal summer worker with the Town’s Highway Department was, apparently, injured while lifting wheelbarrow loads of asphalt and suffered a “rare” rotator cuff tear – rare because the claimant is a young, healthy male.  The claimant treated for this condition, but never reported it to the employer, and even lost time from his employment; and when presenting his doctor’s excuse, did not inform the Town his lost time was related to a work-injury. ','Claimant, a seasonal summer worker with the Town’s Highway Department was, apparently, injured while lifting wheelbarrow loads of asphalt and suffered a “rare” rotator cuff tear – rare because the claimant is a young, healthy male.',0,'2022-04-04 21:55:19','2022-04-04 21:55:19'),(408,46388,46372,'claimant treated for this condition,','The claimant treated for this condition, but never reported it to the employer, and even lost time from his employment; and when presenting his doctor’s excuse, did not inform the Town his lost time was related to a work-injury','The <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/how-change-in-conditions-for-classified-claimants-changed-drastically/\">claimant treated for this condition,</a> but never reported it to the employer, and even lost time from his employment; and when presenting his doctor’s excuse, did not inform the Town his lost time was related to a work-injury','The claimant treated for this condition, but never reported it to the employer, and even lost time from his employment; and when presenting his doctor’s excuse, did not inform the Town his lost time was related to a work-injury','Claimant, a seasonal summer worker with the Town’s Highway Department was, apparently, injured while lifting wheelbarrow loads of asphalt and suffered a “rare” rotator cuff tear – rare because the claimant is a young, healthy male.  The claimant treated for this condition, but never reported it to the employer, and even lost time from his employment; and when presenting his doctor’s excuse, did not inform the Town his lost time was related to a work-injury.  Whether the lost time and treatment were, in fact, related to the claimant’s employment could be debated, but the claimant took the position at trial that it was related. ','the Town’s Highway Department was, apparently, injured while lifting wheelbarrow loads of asphalt and suffered a “rare” rotator cuff tear – rare because the claimant is a young, healthy male.  The claimant treated for this condition, but never reported it to the employer, and even lost time from his employment; and when presenting his doctor’s excuse, did not inform the Town his lost time was related to a work-injury.  Whether the lost time and treatment were, in fact, related to the claimant’s employment could be debated, but the claimant took the position at trial that it was related.  The claimant also sought to prove that, although the condition had allegedly resolved, and then resurfaced months later during a game of basketball with friends, his injury was in the nature of an occupational disease, thus smoothing over the various breaks in temporal causation, and curing a potentially fatal notice defect as the claimant did not notify the Town of his work related injury',0,'2022-04-04 21:55:19','2022-04-04 21:55:19'),(409,46388,46348,'occupational disease,','The claimant also sought to prove that, although the condition had allegedly resolved, and then resurfaced months later during a game of basketball with friends, his injury was in the nature of an occupational disease, thus smoothing over the various breaks in temporal causation, and curing a potentially fatal notice defect as the claimant did not notify the Town of his work related injury until at least seven months after the accident occurred, when he filed his C-3 with the Workers’ Compensation Board','The claimant also sought to prove that, although the condition had allegedly resolved, and then resurfaced months later during a game of basketball with friends, his injury was in the nature of an <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/04/section-44-not-even-a-portion-of-liability-for-the-occupational-disease/\">occupational disease,</a> thus smoothing over the various breaks in temporal causation, and curing a potentially fatal notice defect as the claimant did not notify the Town of his work related injury until at least seven months after the accident occurred, when he filed his C-3 with the Workers’ Compensation Board','The claimant also sought to prove that, although the condition had allegedly resolved, and then resurfaced months later during a game of basketball with friends, his injury was in the nature of an occupational disease, thus smoothing over the various breaks in temporal causation, and curing a potentially fatal notice defect as the claimant did not notify the Town of his work related injury until at least seven months after the accident occurred, when he filed his C-3 with the Workers’ Compensation Board','Whether the lost time and treatment were, in fact, related to the claimant’s employment could be debated, but the claimant took the position at trial that it was related.  The claimant also sought to prove that, although the condition had allegedly resolved, and then resurfaced months later during a game of basketball with friends, his injury was in the nature of an occupational disease, thus smoothing over the various breaks in temporal causation, and curing a potentially fatal notice defect as the claimant did not notify the Town of his work related injury until at least seven months after the accident occurred, when he filed his C-3 with the Workers’ Compensation Board.  This litigation strategy was certainly thoughtful, but it was equally transparent where the claimant’s own physician could not clearly ascribe causation to a disease process, or even repetitive stress when under intense cross-examination.','the Town’s Highway Department was, apparently, injured while lifting wheelbarrow loads of asphalt and suffered a “rare” rotator cuff tear – rare because the claimant is a young, healthy male.  The claimant treated for this condition, but never reported it to the employer, and even lost time from his employment; and when presenting his doctor’s excuse, did not inform the Town his lost time was related to a work-injury.  Whether the lost time and treatment were, in fact, related to the claimant’s employment could be debated, but the claimant took the position at trial that it was related.  The claimant also sought to prove that, although the condition had allegedly resolved, and then resurfaced months later during a game of basketball with friends, his injury was in the nature of an occupational disease, thus smoothing over the various breaks in temporal causation, and curing a potentially fatal notice defect as the claimant did not notify the Town of his work related injury until at least seven months after the accident occurred, when he filed his C-3 with the Workers’ Compensation Board.',0,'2022-04-04 21:55:19','2022-04-04 21:55:19'),(410,46388,46348,'occupational disease,','The Third Department, the first Court to actually articulate any analysis on the question of “accident versus OD” agreed with the Town that the claimant’s effort to characterize the claim as an OD was not supported by the record, and that the injuries sustained by the claimant, even assuming they were the result of work activity, supported the conclusion that they were not the result of a disease process, or even repetitive stress, and could not be characterized as an occupational disease, but rather the result of an obvious accident','The Third Department, the first Court to actually articulate any analysis on the question of “accident versus OD” agreed with the Town that the claimant’s effort to characterize the claim as an OD was not supported by the record, and that the injuries sustained by the claimant, even assuming they were the result of work activity, supported the conclusion that they were not the result of a disease process, or even repetitive stress, and could not be characterized as an <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/04/section-44-not-even-a-portion-of-liability-for-the-occupational-disease/\">occupational disease,</a> but rather the result of an obvious accident','The Third Department, the first Court to actually articulate any analysis on the question of “accident versus OD” agreed with the Town that the claimant’s effort to characterize the claim as an OD was not supported by the record, and that the injuries sustained by the claimant, even assuming they were the result of work activity, supported the conclusion that they were not the result of a disease process, or even repetitive stress, and could not be characterized as an occupational disease, but rather the result of an obvious accident','The Third Department, the first Court to actually articulate any analysis on the question of “accident versus OD” agreed with the Town that the claimant’s effort to characterize the claim as an OD was not supported by the record, and that the injuries sustained by the claimant, even assuming they were the result of work activity, supported the conclusion that they were not the result of a disease process, or even repetitive stress, and could not be characterized as an occupational disease, but rather the result of an obvious accident.','the Town’s Highway Department was, apparently, injured while lifting wheelbarrow loads of asphalt and suffered a “rare” rotator cuff tear – rare because the claimant is a young, healthy male.  The claimant treated for this condition, but never reported it to the employer, and even lost time from his employment; and when presenting his doctor’s excuse, did not inform the Town his lost time was related to a work-injury.  Whether the lost time and treatment were, in fact, related to the claimant’s employment could be debated, but the claimant took the position at trial that it was related.  The claimant also sought to prove that, although the condition had allegedly resolved, and then resurfaced months later during a game of basketball with friends, his injury was in the nature of an occupational disease, thus smoothing over the various breaks in temporal causation, and curing a potentially fatal notice defect as the claimant did not notify the Town of his work related injury until at least seven months after the accident',0,'2022-04-04 21:55:19','2022-04-04 21:55:19'),(411,46388,46370,'occupational disease,','The claimant also sought to prove that, although the condition had allegedly resolved, and then resurfaced months later during a game of basketball with friends, his injury was in the nature of an occupational disease, thus smoothing over the various breaks in temporal causation, and curing a potentially fatal notice defect as the claimant did not notify the Town of his work related injury until at least seven months after the accident occurred, when he filed his C-3 with the Workers’ Compensation Board','The claimant also sought to prove that, although the condition had allegedly resolved, and then resurfaced months later during a game of basketball with friends, his injury was in the nature of an <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/02/occupational-disease-claims-after-matter-of-pinnacle-industries-ii-llc-2019-ny-wrk-comp-g2020587/\">occupational disease,</a> thus smoothing over the various breaks in temporal causation, and curing a potentially fatal notice defect as the claimant did not notify the Town of his work related injury until at least seven months after the accident occurred, when he filed his C-3 with the Workers’ Compensation Board','The claimant also sought to prove that, although the condition had allegedly resolved, and then resurfaced months later during a game of basketball with friends, his injury was in the nature of an occupational disease, thus smoothing over the various breaks in temporal causation, and curing a potentially fatal notice defect as the claimant did not notify the Town of his work related injury until at least seven months after the accident occurred, when he filed his C-3 with the Workers’ Compensation Board','Whether the lost time and treatment were, in fact, related to the claimant’s employment could be debated, but the claimant took the position at trial that it was related.  The claimant also sought to prove that, although the condition had allegedly resolved, and then resurfaced months later during a game of basketball with friends, his injury was in the nature of an occupational disease, thus smoothing over the various breaks in temporal causation, and curing a potentially fatal notice defect as the claimant did not notify the Town of his work related injury until at least seven months after the accident occurred, when he filed his C-3 with the Workers’ Compensation Board.  This litigation strategy was certainly thoughtful, but it was equally transparent where the claimant’s own physician could not clearly ascribe causation to a disease process, or even repetitive stress when under intense cross-examination.','the Town’s Highway Department was, apparently, injured while lifting wheelbarrow loads of asphalt and suffered a “rare” rotator cuff tear – rare because the claimant is a young, healthy male.  The claimant treated for this condition, but never reported it to the employer, and even lost time from his employment; and when presenting his doctor’s excuse, did not inform the Town his lost time was related to a work-injury.  Whether the lost time and treatment were, in fact, related to the claimant’s employment could be debated, but the claimant took the position at trial that it was related.  The claimant also sought to prove that, although the condition had allegedly resolved, and then resurfaced months later during a game of basketball with friends, his injury was in the nature of an occupational disease, thus smoothing over the various breaks in temporal causation, and curing a potentially fatal notice defect as the claimant did not notify the Town of his work related injury until at least seven months after the accident occurred, when he filed his C-3 with the Workers’ Compensation Board.',0,'2022-04-04 21:55:19','2022-04-04 21:55:19'),(412,46388,46370,'occupational disease,','The Third Department, the first Court to actually articulate any analysis on the question of “accident versus OD” agreed with the Town that the claimant’s effort to characterize the claim as an OD was not supported by the record, and that the injuries sustained by the claimant, even assuming they were the result of work activity, supported the conclusion that they were not the result of a disease process, or even repetitive stress, and could not be characterized as an occupational disease, but rather the result of an obvious accident','The Third Department, the first Court to actually articulate any analysis on the question of “accident versus OD” agreed with the Town that the claimant’s effort to characterize the claim as an OD was not supported by the record, and that the injuries sustained by the claimant, even assuming they were the result of work activity, supported the conclusion that they were not the result of a disease process, or even repetitive stress, and could not be characterized as an <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/02/occupational-disease-claims-after-matter-of-pinnacle-industries-ii-llc-2019-ny-wrk-comp-g2020587/\">occupational disease,</a> but rather the result of an obvious accident','The Third Department, the first Court to actually articulate any analysis on the question of “accident versus OD” agreed with the Town that the claimant’s effort to characterize the claim as an OD was not supported by the record, and that the injuries sustained by the claimant, even assuming they were the result of work activity, supported the conclusion that they were not the result of a disease process, or even repetitive stress, and could not be characterized as an occupational disease, but rather the result of an obvious accident','The Third Department, the first Court to actually articulate any analysis on the question of “accident versus OD” agreed with the Town that the claimant’s effort to characterize the claim as an OD was not supported by the record, and that the injuries sustained by the claimant, even assuming they were the result of work activity, supported the conclusion that they were not the result of a disease process, or even repetitive stress, and could not be characterized as an occupational disease, but rather the result of an obvious accident.','the Town’s Highway Department was, apparently, injured while lifting wheelbarrow loads of asphalt and suffered a “rare” rotator cuff tear – rare because the claimant is a young, healthy male.  The claimant treated for this condition, but never reported it to the employer, and even lost time from his employment; and when presenting his doctor’s excuse, did not inform the Town his lost time was related to a work-injury.  Whether the lost time and treatment were, in fact, related to the claimant’s employment could be debated, but the claimant took the position at trial that it was related.  The claimant also sought to prove that, although the condition had allegedly resolved, and then resurfaced months later during a game of basketball with friends, his injury was in the nature of an occupational disease, thus smoothing over the various breaks in temporal causation, and curing a potentially fatal notice defect as the claimant did not notify the Town of his work related injury until at least seven months after the accident',0,'2022-04-04 21:55:19','2022-04-04 21:55:19'),(413,46388,46549,'consider the Town’s argument that the claimant','The WCLJ, and Board, bit at this quite obvious charade, and in both decisions rendered by the Board demonstrated that they didn’t even bother to consider the Town’s argument that the claimant, having reported the case as an accident on his C-3, described an accident to his physician, and testified under oath to a specific happening – and accident','The WCLJ, and Board, bit at this quite obvious charade, and in both decisions rendered by the Board demonstrated that they didn’t even bother to <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">consider the Town’s argument that the claimant</a>, having reported the case as an accident on his C-3, described an accident to his physician, and testified under oath to a specific happening – and accident','The WCLJ, and Board, bit at this quite obvious charade, and in both decisions rendered by the Board demonstrated that they didn’t even bother to consider the Town’s argument that the claimant, having reported the case as an accident on his C-3, described an accident to his physician, and testified under oath to a specific happening – and accident','The WCLJ, and Board, bit at this quite obvious charade, and in both decisions rendered by the Board demonstrated that they didn’t even bother to consider the Town’s argument that the claimant, having reported the case as an accident on his C-3, described an accident to his physician, and testified under oath to a specific happening – and accident.','The WCLJ, and Board, bit at this quite obvious charade, and in both decisions rendered by the Board demonstrated that they didn’t even bother to consider the Town’s argument that the claimant, having reported the case as an accident on his C-3, described an accident to his physician, and testified under oath to a specific happening – and accident.',0,'2022-04-04 21:55:19','2022-04-04 21:55:19'),(414,46388,46561,'consider the Town’s argument that the claimant','The WCLJ, and Board, bit at this quite obvious charade, and in both decisions rendered by the Board demonstrated that they didn’t even bother to consider the Town’s argument that the claimant, having reported the case as an accident on his C-3, described an accident to his physician, and testified under oath to a specific happening – and accident','The WCLJ, and Board, bit at this quite obvious charade, and in both decisions rendered by the Board demonstrated that they didn’t even bother to <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">consider the Town’s argument that the claimant</a>, having reported the case as an accident on his C-3, described an accident to his physician, and testified under oath to a specific happening – and accident','The WCLJ, and Board, bit at this quite obvious charade, and in both decisions rendered by the Board demonstrated that they didn’t even bother to consider the Town’s argument that the claimant, having reported the case as an accident on his C-3, described an accident to his physician, and testified under oath to a specific happening – and accident','The WCLJ, and Board, bit at this quite obvious charade, and in both decisions rendered by the Board demonstrated that they didn’t even bother to consider the Town’s argument that the claimant, having reported the case as an accident on his C-3, described an accident to his physician, and testified under oath to a specific happening – and accident.','The WCLJ, and Board, bit at this quite obvious charade, and in both decisions rendered by the Board demonstrated that they didn’t even bother to consider the Town’s argument that the claimant, having reported the case as an accident on his C-3, described an accident to his physician, and testified under oath to a specific happening – and accident.',0,'2022-04-04 21:55:19','2022-04-04 21:55:19'),(415,46388,46376,'win the day','It was a long haul, but dogged determination and confidence between client and counsel can win the day','It was a long haul, but dogged determination and confidence between client and counsel can <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2020/07/another-win-for-the-law-offices-of-melissa-a-day/\">win the day</a>','It was a long haul, but dogged determination and confidence between client and counsel can win the day','It was a long haul, but dogged determination and confidence between client and counsel can win the day.  It ','It was a long haul, but dogged determination and confidence between client and counsel can win the day.  It  is worth noting as a practice point that under the WCL, the Board is obligated to reimburse employers/carriers/SIEs for claims that are, like this one,  established by the Board, but later quashed by higher judicial review since WCL Sec. 23 does not permit a stay on benefits during the pendency of an appeal to the Third Department.   Closing this post, we wonder how many poor decisions rendered by the WCB, decisions begging for higher appellate review, go un-appealed to the Third Department, owing to the time and cost involved.  How many of these poor decisions, by virtue of remaining unchallenged, and thus wrongly reinforced as “settled precedent.”',0,'2022-04-04 21:55:19','2022-04-04 21:55:19'),(416,46388,46377,'win the day','It was a long haul, but dogged determination and confidence between client and counsel can win the day','It was a long haul, but dogged determination and confidence between client and counsel can <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2020/07/a-win-for-the-law-offices-of-melissa-a-day/\">win the day</a>','It was a long haul, but dogged determination and confidence between client and counsel can win the day','It was a long haul, but dogged determination and confidence between client and counsel can win the day.  It ','It was a long haul, but dogged determination and confidence between client and counsel can win the day.  It  is worth noting as a practice point that under the WCL, the Board is obligated to reimburse employers/carriers/SIEs for claims that are, like this one,  established by the Board, but later quashed by higher judicial review since WCL Sec. 23 does not permit a stay on benefits during the pendency of an appeal to the Third Department.   Closing this post, we wonder how many poor decisions rendered by the WCB, decisions begging for higher appellate review, go un-appealed to the Third Department, owing to the time and cost involved.  How many of these poor decisions, by virtue of remaining unchallenged, and thus wrongly reinforced as “settled precedent.”',0,'2022-04-04 21:55:19','2022-04-04 21:55:19'),(417,46344,46332,'causally related','The treating physician causally related the shoulder and elbow to the work accident, but also admitted on cross-examination that the injuries could also be caused by the claimant’s open heart surgery as the muscles involved in the shoulder injury align with the chest wall that had to be disturbed for the heart surgery','The treating physician <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/07/carpal-tunnel-and-causal-relation-not-always-so-clear-cut/\">causally related</a> the shoulder and elbow to the work accident, but also admitted on cross-examination that the injuries could also be caused by the claimant’s open heart surgery as the muscles involved in the shoulder injury align with the chest wall that had to be disturbed for the heart surgery','The treating physician causally related the shoulder and elbow to the work accident, but also admitted on cross-examination that the injuries could also be caused by the claimant’s open heart surgery as the muscles involved in the shoulder injury align with the chest wall that had to be disturbed for the heart surgery','Testimony of the claimant as well as the treating physician and IME consultant were conducted.  The treating physician causally related the shoulder and elbow to the work accident, but also admitted on cross-examination that the injuries could also be caused by the claimant’s open heart surgery as the muscles involved in the shoulder injury align with the chest wall that had to be disturbed for the heart surgery.  The Law Judge noted in a reserved decision that the claimant proceeded on the theory of consequential injuries and not direct injuries. ','the claimant as well as the treating physician and IME consultant were conducted.  The treating physician causally related the shoulder and elbow to the work accident, but also admitted on cross-examination that the injuries could also be caused by the claimant’s open heart surgery as the muscles involved in the shoulder injury align with the chest wall that had to be disturbed for the heart surgery.  The Law Judge noted in a reserved decision that the claimant proceeded on the theory of consequential injuries and not direct injuries.  The Judge noted that it was the claimant’s burden to establish a causal relationship of the consequential injury to the underlying injury and the work accident.  The Judge noted that the treating physician admitted that the injuries could have been caused by immobilization following heart surgery.',0,'2022-04-04 21:55:20','2022-04-04 21:55:20'),(418,46344,46350,'work accident,','The treating physician causally related the shoulder and elbow to the work accident, but also admitted on cross-examination that the injuries could also be caused by the claimant’s open heart surgery as the muscles involved in the shoulder injury align with the chest wall that had to be disturbed for the heart surgery','The treating physician causally related the shoulder and elbow to the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">work accident,</a> but also admitted on cross-examination that the injuries could also be caused by the claimant’s open heart surgery as the muscles involved in the shoulder injury align with the chest wall that had to be disturbed for the heart surgery','The treating physician causally related the shoulder and elbow to the work accident, but also admitted on cross-examination that the injuries could also be caused by the claimant’s open heart surgery as the muscles involved in the shoulder injury align with the chest wall that had to be disturbed for the heart surgery','Testimony of the claimant as well as the treating physician and IME consultant were conducted.  The treating physician causally related the shoulder and elbow to the work accident, but also admitted on cross-examination that the injuries could also be caused by the claimant’s open heart surgery as the muscles involved in the shoulder injury align with the chest wall that had to be disturbed for the heart surgery.  The Law Judge noted in a reserved decision that the claimant proceeded on the theory of consequential injuries and not direct injuries. ','the claimant as well as the treating physician and IME consultant were conducted.  The treating physician causally related the shoulder and elbow to the work accident, but also admitted on cross-examination that the injuries could also be caused by the claimant’s open heart surgery as the muscles involved in the shoulder injury align with the chest wall that had to be disturbed for the heart surgery.  The Law Judge noted in a reserved decision that the claimant proceeded on the theory of consequential injuries and not direct injuries.  The Judge noted that it was the claimant’s burden to establish a causal relationship of the consequential injury to the underlying injury and the work accident.  The Judge noted that the treating physician admitted that the injuries could have been caused by immobilization following heart surgery.',0,'2022-04-04 21:55:20','2022-04-04 21:55:20'),(419,46344,46342,'disallowed the claim','Therefore, the Law Judge disallowed the claim for consequential injuries.','Therefore, the Law Judge <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">disallowed the claim</a> for consequential injuries.','Therefore, the Law Judge disallowed the claim for consequential injuries.','The Judge noted that it was the claimant’s burden to establish a causal relationship of the consequential injury to the underlying injury and the work accident.  The Judge noted that the treating physician admitted that the injuries could have been caused by immobilization following heart surgery.  Therefore, the Law Judge disallowed the claim for consequential injuries.','Therefore, the Law Judge disallowed the claim for consequential injuries.',0,'2022-04-04 21:55:20','2022-04-04 21:55:20'),(420,46327,46345,'social media','See also Matter of Aeropostale, 2012 NY Wrk Comp G0410425, wherein the Board Panel held that the carrier does not need to disclose the evidence from social media before questioning the claimant','<u>See also Matter of Aeropostale</u>, 2012 NY Wrk Comp G0410425, wherein the Board Panel held that the carrier does not need to disclose the evidence from <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/04/social-media-and-fraud-youd-be-surprised-what-people-post/\">social media</a> before questioning the claimant','<u>See also Matter of Aeropostale</u>, 2012 NY Wrk Comp G0410425, wherein the Board Panel held that the carrier does not need to disclose the evidence from social media before questioning the claimant','Tops Mkts., 107 AD3d 1231 (3d 2013). See also Matter of Aeropostale, 2012 NY Wrk Comp G0410425, wherein the Board Panel held that the carrier does not need to disclose the evidence from social media before questioning the claimant.','<u>See Matter of Moreilli v. Tops Mkts.</u>, 107 AD3d 1231 (3d 2013). <u>See also Matter of Aeropostale</u>, 2012 NY Wrk Comp G0410425, wherein the Board Panel held that the carrier does not need to disclose the evidence from social media before questioning the claimant.',0,'2022-04-04 23:08:08','2022-04-04 23:08:08'),(421,46327,46345,'social media','We were able to reduce the indemnity portion of the claim based upon the surveillance and social media reports, prior to the claim moving forward with fraud','We were able to reduce the indemnity portion of the claim based upon the surveillance and <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/04/social-media-and-fraud-youd-be-surprised-what-people-post/\">social media</a> reports, prior to the claim moving forward with fraud','We were able to reduce the indemnity portion of the claim based upon the surveillance and social media reports, prior to the claim moving forward with fraud','From there, we used an evidence based MSA to finalize the medical portion of the claim under the full and final Section 32 agreement. We were able to reduce the indemnity portion of the claim based upon the surveillance and social media reports, prior to the claim moving forward with fraud.','we used an evidence based MSA to finalize the medical portion of the claim under the full and final Section 32 agreement. We were able to reduce the indemnity portion of the claim based upon the surveillance and social media reports, prior to the claim moving forward with fraud.',0,'2022-04-04 23:08:08','2022-04-04 23:08:08'),(422,46327,46345,'social media','The use of surveillance and social media sweep has been increasingly useful','The use of surveillance and <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/04/social-media-and-fraud-youd-be-surprised-what-people-post/\">social media</a> sweep has been increasingly useful','The use of surveillance and social media sweep has been increasingly useful','The use of surveillance and social media sweep has been increasingly useful. Here at LOMAD, once we take the deep dive and determine the need for surveillance and/or a social media sweep, the results carry the Day.','The use of surveillance and social media sweep has been increasingly useful.',0,'2022-04-04 23:08:08','2022-04-04 23:08:08'),(423,46327,46345,'social media','Here at LOMAD, once we take the deep dive and determine the need for surveillance and/or a social media sweep, the results carry the Day.','Here at LOMAD, once we take the deep dive and determine the need for surveillance and/or a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/04/social-media-and-fraud-youd-be-surprised-what-people-post/\">social media</a> sweep, the results carry the Day.','Here at LOMAD, once we take the deep dive and determine the need for surveillance and/or a social media sweep, the results carry the Day.','The use of surveillance and social media sweep has been increasingly useful. Here at LOMAD, once we take the deep dive and determine the need for surveillance and/or a social media sweep, the results carry the Day.','Here at LOMAD, once we take the deep dive and determine the need for surveillance and/or a social media sweep, the results carry the Day.',0,'2022-04-04 23:08:08','2022-04-04 23:08:08'),(424,46327,46549,'social media before questioning the claimant','See also Matter of Aeropostale, 2012 NY Wrk Comp G0410425, wherein the Board Panel held that the carrier does not need to disclose the evidence from social media before questioning the claimant','<u>See also Matter of Aeropostale</u>, 2012 NY Wrk Comp G0410425, wherein the Board Panel held that the carrier does not need to disclose the evidence from <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">social media before questioning the claimant</a>','<u>See also Matter of Aeropostale</u>, 2012 NY Wrk Comp G0410425, wherein the Board Panel held that the carrier does not need to disclose the evidence from social media before questioning the claimant','Tops Mkts., 107 AD3d 1231 (3d 2013). See also Matter of Aeropostale, 2012 NY Wrk Comp G0410425, wherein the Board Panel held that the carrier does not need to disclose the evidence from social media before questioning the claimant.','<u>See Matter of Moreilli v. Tops Mkts.</u>, 107 AD3d 1231 (3d 2013). <u>See also Matter of Aeropostale</u>, 2012 NY Wrk Comp G0410425, wherein the Board Panel held that the carrier does not need to disclose the evidence from social media before questioning the claimant.',0,'2022-04-04 23:08:08','2022-04-04 23:08:08'),(425,46327,46420,'– advising that they were interested in a section','Upon conclusion of the claim, we received a call from claimant’s counsel – advising that they were interested in a section 32 full and final agreement – as the claimant, fully admitted to activities that their attorney was not aware of','Upon conclusion of the claim, we received a call from claimant’s counsel <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/court-of-appeals-upholds-2013-amendment-to-section-25-a-marking-the-end-for-the-fund-for-reopened-cases/\">– advising that they were interested in a section</a> 32 full and final agreement – as the claimant, fully admitted to activities that their attorney was not aware of','Upon conclusion of the claim, we received a call from claimant’s counsel – advising that they were interested in a section 32 full and final agreement – as the claimant, fully admitted to activities that their attorney was not aware of','Upon conclusion of the claim, we received a call from claimant’s counsel – advising that they were interested in a section 32 full and final agreement – as the claimant, fully admitted to activities that their attorney was not aware of.','Upon conclusion of the claim, we received a call from claimant’s counsel – advising that they were interested in a section 32 full and final agreement – as the claimant, fully admitted to activities that their attorney was not aware of.',0,'2022-04-04 23:08:08','2022-04-04 23:08:08'),(426,46327,46340,'evidence based MSA to finalize the medical','From there, we used an evidence based MSA to finalize the medical portion of the claim under the full and final Section 32 agreement','From there, we used an <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\">evidence based MSA to finalize the medical</a> portion of the claim under the full and final Section 32 agreement','From there, we used an evidence based MSA to finalize the medical portion of the claim under the full and final Section 32 agreement','From there, we used an evidence based MSA to finalize the medical portion of the claim under the full and final Section 32 agreement. We were able to reduce the indemnity portion of the claim based upon the surveillance and social media reports, prior to the claim moving forward with fraud.','From there, we used an evidence based MSA to finalize the medical portion of the claim under the full and final Section 32 agreement.',0,'2022-04-04 23:08:08','2022-04-04 23:08:08'),(427,46327,46342,'medical portion of the claim','From there, we used an evidence based MSA to finalize the medical portion of the claim under the full and final Section 32 agreement','From there, we used an evidence based MSA to finalize the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">medical portion of the claim</a> under the full and final Section 32 agreement','From there, we used an evidence based MSA to finalize the medical portion of the claim under the full and final Section 32 agreement','From there, we used an evidence based MSA to finalize the medical portion of the claim under the full and final Section 32 agreement. We were able to reduce the indemnity portion of the claim based upon the surveillance and social media reports, prior to the claim moving forward with fraud.','From there, we used an evidence based MSA to finalize the medical portion of the claim under the full and final Section 32 agreement.',0,'2022-04-04 23:08:08','2022-04-04 23:08:08'),(428,46374,46342,'disallowing this claim','Borg Warner, Inc, 2020 NY Slip OP 04897 (2020) held that “even an opinion ‘that it was ‘highly possible’ that the injury was causally related to work, falls short of the reasonable probability that is required to establish a causal relationship between the claimant’s employment and his injury.’” Here, not only did the symptom presentation not conform with what the doctor would expect from a trauma, she couldn’t testify that the trauma was even a contributing factor, which led to the Workers’ Compensation Law Judge disallowing this claim as well','Borg Warner, Inc, 2020 NY Slip OP 04897 (2020) held that “even an opinion ‘that it was ‘highly possible’ that the injury was causally related to work, falls short of the reasonable probability that is required to establish a causal relationship between the claimant’s employment and his injury.’” Here, not only did the symptom presentation not conform with what the doctor would expect from a trauma, she couldn’t testify that the trauma was even a contributing factor, which led to the Workers’ Compensation Law Judge <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">disallowing this claim</a> as well','Borg Warner, Inc, 2020 NY Slip OP 04897 (2020) held that “even an opinion ‘that it was ‘highly possible’ that the injury was causally related to work, falls short of the reasonable probability that is required to establish a causal relationship between the claimant’s employment and his injury.’” Here, not only did the symptom presentation not conform with what the doctor would expect from a trauma, she couldn’t testify that the trauma was even a contributing factor, which led to the Workers’ Compensation Law Judge disallowing this claim as well','The 3rd Department in Johnson v. Borg Warner, Inc, 2020 NY Slip OP 04897 (2020) held that “even an opinion ‘that it was ‘highly possible’ that the injury was causally related to work, falls short of the reasonable probability that is required to establish a causal relationship between the claimant’s employment and his injury.’” Here, not only did the symptom presentation not conform with what the doctor would expect from a trauma, she couldn’t testify that the trauma was even a contributing factor, which led to the Workers’ Compensation Law Judge disallowing this claim as well.','Borg Warner, Inc, 2020 NY Slip OP 04897 (2020) held that “even an opinion ‘that it was ‘highly possible’ that the injury was causally related to work, falls short of the reasonable probability that is required to establish a causal relationship between the claimant’s employment and his injury.’” Here, not only did the symptom presentation not conform with what the doctor would expect from a trauma, she couldn’t testify that the trauma was even a contributing factor, which led to the Workers’ Compensation Law Judge disallowing this claim as well.',0,'2022-04-04 23:08:11','2022-04-04 23:08:11'),(429,46374,46338,'causal relationship','It’s cases like these which highlight that an Independent Medical Examination on causal relationship isn’t the end-all and be all of claims defense, and how clever cross-examination can be the key to success.','It’s cases like these which highlight that an Independent Medical Examination on <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/06/third-deparment-decision-disputing-causal-relationship/\">causal relationship</a> isn’t the end-all and be all of claims defense, and how clever cross-examination can be the key to success.','It’s cases like these which highlight that an Independent Medical Examination on causal relationship isn’t the end-all and be all of claims defense, and how clever cross-examination can be the key to success.','It’s cases like these which highlight that an Independent Medical Examination on causal relationship isn’t the end-all and be all of claims defense, and how clever cross-examination can be the key to success.','It’s cases like these which highlight that an Independent Medical Examination on causal relationship isn’t the end-all and be all of claims defense, and how clever cross-examination can be the key to success.',0,'2022-04-04 23:08:11','2022-04-04 23:08:11'),(430,46374,46344,'causal relationship','It’s cases like these which highlight that an Independent Medical Examination on causal relationship isn’t the end-all and be all of claims defense, and how clever cross-examination can be the key to success.','It’s cases like these which highlight that an Independent Medical Examination on <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\">causal relationship</a> isn’t the end-all and be all of claims defense, and how clever cross-examination can be the key to success.','It’s cases like these which highlight that an Independent Medical Examination on causal relationship isn’t the end-all and be all of claims defense, and how clever cross-examination can be the key to success.','It’s cases like these which highlight that an Independent Medical Examination on causal relationship isn’t the end-all and be all of claims defense, and how clever cross-examination can be the key to success.','It’s cases like these which highlight that an Independent Medical Examination on causal relationship isn’t the end-all and be all of claims defense, and how clever cross-examination can be the key to success.',0,'2022-04-04 23:08:11','2022-04-04 23:08:11'),(431,46374,46511,'claims defense,','It’s cases like these which highlight that an Independent Medical Examination on causal relationship isn’t the end-all and be all of claims defense, and how clever cross-examination can be the key to success.','It’s cases like these which highlight that an Independent Medical Examination on causal relationship isn’t the end-all and be all of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">claims defense,</a> and how clever cross-examination can be the key to success.','It’s cases like these which highlight that an Independent Medical Examination on causal relationship isn’t the end-all and be all of claims defense, and how clever cross-examination can be the key to success.','It’s cases like these which highlight that an Independent Medical Examination on causal relationship isn’t the end-all and be all of claims defense, and how clever cross-examination can be the key to success.','It’s cases like these which highlight that an Independent Medical Examination on causal relationship isn’t the end-all and be all of claims defense, and how clever cross-examination can be the key to success.',0,'2022-04-04 23:08:11','2022-04-04 23:08:11'),(432,46506,46374,'claimant in a workers’ compensation claim','The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines','The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claimant in a workers’ compensation claim</a> and the procedure to follow when treatment falls outside the Guidelines','The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines','§ 324. The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines. 12 N.Y.C.R.R.','the Medical Treatment Guidelines, became effective. See, 12 N.Y.C.R.R. § 324. The Medical Treatment Guidelines [hereinafter “Guidelines”] became effective on December 1, 2010. 12 N.Y.C.R.R. § 324. The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines. 12 N.Y.C.R.R. § 324. Pursuant to the Guidelines a treatment provider, when it is determined that care which varies from the treatment guidelines',0,'2022-04-04 23:08:13','2022-04-04 23:08:13'),(433,46506,46421,'workers’ compensation claim','The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines','The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation claim</a> and the procedure to follow when treatment falls outside the Guidelines','The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines','§ 324. The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines. 12 N.Y.C.R.R.','the Medical Treatment Guidelines, became effective. See, 12 N.Y.C.R.R. § 324. The Medical Treatment Guidelines [hereinafter “Guidelines”] became effective on December 1, 2010. 12 N.Y.C.R.R. § 324. The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines. 12 N.Y.C.R.R. § 324. Pursuant to the Guidelines a treatment provider, when it is determined that care which varies from the treatment guidelines',0,'2022-04-04 23:08:13','2022-04-04 23:08:13'),(434,46506,46486,'workers’ compensation','The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines','The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> claim and the procedure to follow when treatment falls outside the Guidelines','The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines','§ 324. The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines. 12 N.Y.C.R.R.','the Medical Treatment Guidelines, became effective. See, 12 N.Y.C.R.R. § 324. The Medical Treatment Guidelines [hereinafter “Guidelines”] became effective on December 1, 2010. 12 N.Y.C.R.R. § 324. The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines. 12 N.Y.C.R.R. § 324. Pursuant to the Guidelines a treatment provider, when it is determined that care which varies from the treatment guidelines',0,'2022-04-04 23:08:13','2022-04-04 23:08:13'),(435,46506,46512,'workers’ compensation','The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines','The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> claim and the procedure to follow when treatment falls outside the Guidelines','The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines','§ 324. The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines. 12 N.Y.C.R.R.','the Medical Treatment Guidelines, became effective. See, 12 N.Y.C.R.R. § 324. The Medical Treatment Guidelines [hereinafter “Guidelines”] became effective on December 1, 2010. 12 N.Y.C.R.R. § 324. The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines. 12 N.Y.C.R.R. § 324. Pursuant to the Guidelines a treatment provider, when it is determined that care which varies from the treatment guidelines',0,'2022-04-04 23:08:13','2022-04-04 23:08:13'),(436,46506,46555,'workers’ compensation','The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines','The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> claim and the procedure to follow when treatment falls outside the Guidelines','The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines','§ 324. The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines. 12 N.Y.C.R.R.','the Medical Treatment Guidelines, became effective. See, 12 N.Y.C.R.R. § 324. The Medical Treatment Guidelines [hereinafter “Guidelines”] became effective on December 1, 2010. 12 N.Y.C.R.R. § 324. The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines. 12 N.Y.C.R.R. § 324. Pursuant to the Guidelines a treatment provider, when it is determined that care which varies from the treatment guidelines',0,'2022-04-04 23:08:13','2022-04-04 23:08:13'),(437,46506,46503,'medical provider must indicate on the variance','To make the requisite demonstration the medical provider must indicate on the variance that:','To make the requisite demonstration the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">medical provider must indicate on the variance</a> that:','To make the requisite demonstration the medical provider must indicate on the variance that:','§ 324.3(a)(2) the Burden of Proof for demonstrating that the claimant requires the treatment rests with the treating medical provider. To make the requisite demonstration the medical provider must indicate on the variance that:','To make the requisite demonstration the medical provider must indicate on the variance that',0,'2022-04-04 23:08:13','2022-04-04 23:08:13'),(438,46506,46503,'variance for treatment','Pursuant to the Guidelines a treatment provider, when it is determined that care which varies from the treatment guidelines is appropriate and medically necessary for the claimant, must file a variance for treatment sought from the Carrier or Special Fund','Pursuant to the Guidelines a treatment provider, when it is determined that care which varies from the treatment guidelines is appropriate and medically necessary for the claimant, must file a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">variance for treatment</a> sought from the Carrier or Special Fund','Pursuant to the Guidelines a treatment provider, when it is determined that care which varies from the treatment guidelines is appropriate and medically necessary for the claimant, must file a variance for treatment sought from the Carrier or Special Fund','§ 324. Pursuant to the Guidelines a treatment provider, when it is determined that care which varies from the treatment guidelines is appropriate and medically necessary for the claimant, must file a variance for treatment sought from the Carrier or Special Fund. 12 N.Y.C.R.R.','Pursuant to the Guidelines a treatment provider, when it is determined that care which varies from the treatment guidelines is appropriate and medically necessary for the claimant, must file a variance for treatment sought from the Carrier or Special Fund.',0,'2022-04-04 23:08:13','2022-04-04 23:08:13'),(439,46506,46546,'employer or insurance carrier','325-1.25, “the employer or insurance carrier shall not be obligated to pay for any medical care that is not within the criteria of the Medical Treatment Guidelines or is not based on correct application of the Medical Treatment Guidelines.” See, 12 N.Y.C.R.R','325-1.25, “the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">employer or insurance carrier</a> shall not be obligated to pay for any medical care that is not within the criteria of the Medical Treatment Guidelines or is not based on correct application of the Medical Treatment Guidelines.” See, 12 N.Y.C.R.R','325-1.25, “the employer or insurance carrier shall not be obligated to pay for any medical care that is not within the criteria of the Medical Treatment Guidelines or is not based on correct application of the Medical Treatment Guidelines.” See, 12 N.Y.C.R.R','Further pursuant to 12 N.Y.C.R.R. 325-1.25, “the employer or insurance carrier shall not be obligated to pay for any medical care that is not within the criteria of the Medical Treatment Guidelines or is not based on correct application of the Medical Treatment Guidelines.” See, 12 N.Y.C.R.R. 325-1.25.','325-1.25, “the employer or insurance carrier shall not be obligated to pay for any medical care that is not within the criteria of the Medical Treatment Guidelines or is not based on correct application of the Medical Treatment Guidelines.” See, 12 N.Y.C.R.R. 325-1.25.',0,'2022-04-04 23:08:13','2022-04-04 23:08:13'),(440,46506,46541,'insurance carrier','325-1.25, “the employer or insurance carrier shall not be obligated to pay for any medical care that is not within the criteria of the Medical Treatment Guidelines or is not based on correct application of the Medical Treatment Guidelines.” See, 12 N.Y.C.R.R','325-1.25, “the employer or <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\">insurance carrier</a> shall not be obligated to pay for any medical care that is not within the criteria of the Medical Treatment Guidelines or is not based on correct application of the Medical Treatment Guidelines.” See, 12 N.Y.C.R.R','325-1.25, “the employer or insurance carrier shall not be obligated to pay for any medical care that is not within the criteria of the Medical Treatment Guidelines or is not based on correct application of the Medical Treatment Guidelines.” See, 12 N.Y.C.R.R','Further pursuant to 12 N.Y.C.R.R. 325-1.25, “the employer or insurance carrier shall not be obligated to pay for any medical care that is not within the criteria of the Medical Treatment Guidelines or is not based on correct application of the Medical Treatment Guidelines.” See, 12 N.Y.C.R.R. 325-1.25.','325-1.25, “the employer or insurance carrier shall not be obligated to pay for any medical care that is not within the criteria of the Medical Treatment Guidelines or is not based on correct application of the Medical Treatment Guidelines.” See, 12 N.Y.C.R.R. 325-1.25.',0,'2022-04-04 23:08:13','2022-04-04 23:08:13'),(441,46506,46422,'claimant requires the treatment rests with the treating medical','§ 324.3(a)(2) the Burden of Proof for demonstrating that the claimant requires the treatment rests with the treating medical provider','§ 324.3(a)(2) the Burden of Proof for demonstrating that the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">claimant requires the treatment rests with the treating medical</a> provider','§ 324.3(a)(2) the Burden of Proof for demonstrating that the claimant requires the treatment rests with the treating medical provider','Under 12 N.Y.C.R.R. § 324.3(a)(2) the Burden of Proof for demonstrating that the claimant requires the treatment rests with the treating medical provider. To make the requisite demonstration the medical provider must indicate on the variance that:','§ 324.3(a)(2) the Burden of Proof for demonstrating that the claimant requires the treatment rests with the treating medical provider. To make the requisite demonstration the medical provider',0,'2022-04-04 23:08:13','2022-04-04 23:08:13'),(442,46506,46422,'claimant agrees to the proposed medical','(b) a statement that the claimant agrees to the proposed medical care, and','(b) a statement that the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">claimant agrees to the proposed medical</a> care, and','(b) a statement that the claimant agrees to the proposed medical care, and','(b) a statement that the claimant agrees to the proposed medical care, and','b) a statement that the claimant agrees to the proposed medical care, and',0,'2022-04-04 23:08:13','2022-04-04 23:08:13'),(443,46506,46422,'claimant must be at maximum medical','Pursuant to § D.11 the claimant must be at maximum medical improvement and','Pursuant to § D.11 the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">claimant must be at maximum medical</a> improvement and','Pursuant to § D.11 the claimant must be at maximum medical improvement and','The requirements for satisfying the maintenance care program of spinal manipulation is delineated at § D.11. Pursuant to § D.11 the claimant must be at maximum medical improvement and','Pursuant to § D.11 the claimant must be at maximum medical improvement and',0,'2022-04-04 23:08:13','2022-04-04 23:08:13'),(444,46506,46502,'treatment of acute and sub-acute back pain','Manipulation is recommended for treatment of acute and sub-acute back pain when tied to objective measures of improvement','Manipulation is recommended for <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">treatment of acute and sub-acute back pain</a> when tied to objective measures of improvement','Manipulation is recommended for treatment of acute and sub-acute back pain when tied to objective measures of improvement','Manipulation is recommended for treatment of acute and sub-acute back pain when tied to objective measures of improvement.','Manipulation is recommended for treatment of acute and sub-acute back pain when tied to objective measures of improvement.',0,'2022-04-04 23:08:13','2022-04-04 23:08:13'),(445,46506,46502,'treatment rests with the treating medical','§ 324.3(a)(2) the Burden of Proof for demonstrating that the claimant requires the treatment rests with the treating medical provider','§ 324.3(a)(2) the Burden of Proof for demonstrating that the claimant requires the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">treatment rests with the treating medical</a> provider','§ 324.3(a)(2) the Burden of Proof for demonstrating that the claimant requires the treatment rests with the treating medical provider','Under 12 N.Y.C.R.R. § 324.3(a)(2) the Burden of Proof for demonstrating that the claimant requires the treatment rests with the treating medical provider. To make the requisite demonstration the medical provider must indicate on the variance that:','§ 324.3(a)(2) the Burden of Proof for demonstrating that the claimant requires the treatment rests with the treating medical provider. To make the requisite demonstration the medical provider',0,'2022-04-04 23:08:13','2022-04-04 23:08:13'),(446,46506,46543,'treatment rests with the treating medical','§ 324.3(a)(2) the Burden of Proof for demonstrating that the claimant requires the treatment rests with the treating medical provider','§ 324.3(a)(2) the Burden of Proof for demonstrating that the claimant requires the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\">treatment rests with the treating medical</a> provider','§ 324.3(a)(2) the Burden of Proof for demonstrating that the claimant requires the treatment rests with the treating medical provider','Under 12 N.Y.C.R.R. § 324.3(a)(2) the Burden of Proof for demonstrating that the claimant requires the treatment rests with the treating medical provider. To make the requisite demonstration the medical provider must indicate on the variance that:','§ 324.3(a)(2) the Burden of Proof for demonstrating that the claimant requires the treatment rests with the treating medical provider. To make the requisite demonstration the medical provider',0,'2022-04-04 23:08:13','2022-04-04 23:08:13'),(447,46506,46482,'treatment of acute and sub-acute back pain','Manipulation is recommended for treatment of acute and sub-acute back pain when tied to objective measures of improvement','Manipulation is recommended for <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/non-acute-pain-treatment-guidelines/\">treatment of acute and sub-acute back pain</a> when tied to objective measures of improvement','Manipulation is recommended for treatment of acute and sub-acute back pain when tied to objective measures of improvement','Manipulation is recommended for treatment of acute and sub-acute back pain when tied to objective measures of improvement.','Manipulation is recommended for treatment of acute and sub-acute back pain when tied to objective measures of improvement.',0,'2022-04-04 23:08:13','2022-04-04 23:08:13'),(448,46506,46553,'claimant must be at maximum medical improvement','Pursuant to § D.11 the claimant must be at maximum medical improvement and','Pursuant to § D.11 the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">claimant must be at maximum medical improvement</a> and','Pursuant to § D.11 the claimant must be at maximum medical improvement and','The requirements for satisfying the maintenance care program of spinal manipulation is delineated at § D.11. Pursuant to § D.11 the claimant must be at maximum medical improvement and','Pursuant to § D.11 the claimant must be at maximum medical improvement and',0,'2022-04-04 23:08:13','2022-04-04 23:08:13'),(449,46506,46553,'functional improvement','Frequency: Up to 3 times per week for the first 4 weeks as indicated by the severity of involvement and the desired effect, then up to 2 treatments per week for the next 4 weeks with re-evaluation for evidence of functional improvement or need for further workup','Frequency: Up to 3 times per week for the first 4 weeks as indicated by the severity of involvement and the desired effect, then up to 2 treatments per week for the next 4 weeks with re-evaluation for evidence of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">functional improvement</a> or need for further workup','Frequency: Up to 3 times per week for the first 4 weeks as indicated by the severity of involvement and the desired effect, then up to 2 treatments per week for the next 4 weeks with re-evaluation for evidence of functional improvement or need for further workup','Frequency: Up to 3 times per week for the first 4 weeks as indicated by the severity of involvement and the desired effect, then up to 2 treatments per week for the next 4 weeks with re-evaluation for evidence of functional improvement or need for further workup. Continuance of treatment will depend upon functional improvement.','Frequency: Up to 3 times per week for the first 4 weeks as indicated by the severity of involvement and the desired effect, then up to 2 treatments per week for the next 4 weeks with re-evaluation for evidence of functional improvement or need for further workup.',0,'2022-04-04 23:08:13','2022-04-04 23:08:13'),(450,46506,46342,'medical provider submits a medical opinion','Recent amendments to the Regulations and the Guidelines allow ongoing maintenance care in specific situations after “(A) the Board has made a legal determination that the claimant has a permanent disability, or (B) a medical provider submits a medical opinion evidencing that the claimant has reached maximum medical improvement and has a permanent impairment, in the format prescribed by the Chair for such purpose, and the Board has not yet made a legal determination on maximum medical improvement or permanent disability.” 12 NYCRR § 324.3(a)(5)(ii)','Recent amendments to the Regulations and the Guidelines allow ongoing maintenance care in specific situations after “(A) the Board has made a legal determination that the claimant has a permanent disability, or (B) a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">medical provider submits a medical opinion</a> evidencing that the claimant has reached maximum medical improvement and has a permanent impairment, in the format prescribed by the Chair for such purpose, and the Board has not yet made a legal determination on maximum medical improvement or permanent disability.” 12 NYCRR § 324.3(a)(5)(ii)','Recent amendments to the Regulations and the Guidelines allow ongoing maintenance care in specific situations after “(A) the Board has made a legal determination that the claimant has a permanent disability, or (B) a medical provider submits a medical opinion evidencing that the claimant has reached maximum medical improvement and has a permanent impairment, in the format prescribed by the Chair for such purpose, and the Board has not yet made a legal determination on maximum medical improvement or permanent disability.” 12 NYCRR § 324.3(a)(5)(ii)','See, D.10.a.ii. Recent amendments to the Regulations and the Guidelines allow ongoing maintenance care in specific situations after “(A) the Board has made a legal determination that the claimant has a permanent disability, or (B) a medical provider submits a medical opinion evidencing that the claimant has reached maximum medical improvement and has a permanent impairment, in the format prescribed by the Chair for such purpose, and the Board has not yet made a legal determination on maximum medical improvement or permanent disability.” 12 NYCRR § 324.3(a)(5)(ii). Once specific criteria have been met the claimant would be eligible for a maximum of up to 10 visits per year.','Recent amendments to the Regulations and the Guidelines allow ongoing maintenance care in specific situations after “(A) the Board has made a legal determination that the claimant has a permanent disability, or (B) a medical provider submits a medical opinion evidencing that the claimant has reached maximum medical improvement and has a permanent impairment, in the format prescribed by the Chair for such purpose, and the Board has not yet made a legal determination on maximum medical improvement or permanent disability.” 12 NYCRR § 324.3(a)(5)(ii',0,'2022-04-04 23:08:13','2022-04-04 23:08:13'),(451,46506,46549,'claimant would be eligible','Once specific criteria have been met the claimant would be eligible for a maximum of up to 10 visits per year','Once specific criteria have been met the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">claimant would be eligible</a> for a maximum of up to 10 visits per year','Once specific criteria have been met the claimant would be eligible for a maximum of up to 10 visits per year','Recent amendments to the Regulations and the Guidelines allow ongoing maintenance care in specific situations after “(A) the Board has made a legal determination that the claimant has a permanent disability, or (B) a medical provider submits a medical opinion evidencing that the claimant has reached maximum medical improvement and has a permanent impairment, in the format prescribed by the Chair for such purpose, and the Board has not yet made a legal determination on maximum medical improvement or permanent disability.” 12 NYCRR § 324.3(a)(5)(ii). Once specific criteria have been met the claimant would be eligible for a maximum of up to 10 visits per year.','Once specific criteria have been met the claimant would be eligible for a maximum of up to 10 visits per year.',0,'2022-04-04 23:08:13','2022-04-04 23:08:13'),(452,46496,46511,'defense counsel had opened litigation on the issue','Notice of that recording was not given until two months later, after defense counsel had opened litigation on the issue of ongoing disability premised upon that consultant’s report','Notice of that recording was not given until two months later, after <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">defense counsel had opened litigation on the issue</a> of ongoing disability premised upon that consultant’s report','Notice of that recording was not given until two months later, after defense counsel had opened litigation on the issue of ongoing disability premised upon that consultant’s report','claimant’s sister, who was also present at an IME, surreptitiously, and without the knowledge of the consultant, videotaped the entire examination.  Notice of that recording was not given until two months later, after defense counsel had opened litigation on the issue of ongoing disability premised upon that consultant’s report.  The WCLJ directed the claimant to turn over a copy of the video to defense counsel, but due to a failed mailing, defense counsel and the carrier were not provided with the footage, or even able to view it, until a second hearing, held nearly a month later, which was scheduled for oral summations on the pending issues.  ','notice that he or she is recording an examination; or at least not give notice until they intend to produce the footage and submit it into evidence.  In <u>NYC Housing Authority</u>, 2015 NY Wrk. Comp 0768798.  claimant’s sister, who was also present at an IME, surreptitiously, and without the knowledge of the consultant, videotaped the entire examination.  Notice of that recording was not given until two months later, after defense counsel had opened litigation on the issue of ongoing disability premised upon that consultant’s report.',0,'2022-04-04 23:08:16','2022-04-04 23:08:16'),(453,46496,46343,'late notice,','On appeal, the Board found nothing wrong with claimant’s late notice, and even excused the failed mailing noting that “the WCLJ acted within the scope of discretion by allowing the video to be admitted into evidence.”','On appeal, the Board found nothing wrong with claimant’s <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/employers-do-not-have-to-prove-prejudice-by-late-notice-but-it-certainly-doesnt-hurt-to-do-so/\">late notice,</a> and even excused the failed mailing noting that “the WCLJ acted within the scope of discretion by allowing the video to be admitted into evidence.”','On appeal, the Board found nothing wrong with claimant’s late notice, and even excused the failed mailing noting that “the WCLJ acted within the scope of discretion by allowing the video to be admitted into evidence.”','The WCLJ ruled that the IME was not credible based in part on the footage, which apparently raised some doubt as to whether certain body sites were actually examined.   On appeal, the Board found nothing wrong with claimant’s late notice, and even excused the failed mailing noting that “the WCLJ acted within the scope of discretion by allowing the video to be admitted into evidence.”','on what side of the bar your practice on) a claimant, apparently, need never give notice that he or she is recording an examination; or at least not give notice until they intend to produce the footage and submit it into evidence.  In <u>NYC Housing Authority</u>, 2015 NY Wrk. Comp 0768798.  claimant’s sister, who was also present at an IME, surreptitiously, and without the knowledge of the consultant, videotaped the entire examination.  Notice of that recording was not given until two months later, after defense counsel had opened litigation on the issue of ongoing disability premised upon that consultant’s report.  The WCLJ directed the claimant to turn over a copy of the video to defense counsel, but due to a failed mailing, defense counsel and the carrier were not provided with the footage, or even able to view it, until a second hearing, held nearly a month later, which was scheduled for oral summations on the pending issues.  The WCLJ ruled that the IME was not credible based in part on the footage, which apparently raised some doubt as to whether certain body sites were actually examined.   On appeal, the Board found nothing wrong with claimant’s late notice, and even excused the failed mailing noting that “the WCLJ acted within the scope of discretion by allowing the video to be admitted into evidence.”',0,'2022-04-04 23:08:16','2022-04-04 23:08:16'),(454,46172,46351,'practice law','She is licensed to practice law in New York','She is licensed to <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/03/thoughts-on-thinking-a-strange-title-about-practicing-law/\">practice law</a> in New York','She is licensed to practice law in New York','She participated in the Science and Technology Journal for Albany Law School. She is licensed to practice law in New York.','She participated in the Science and Technology Journal for Albany Law School. She is licensed to practice law in New York.',0,'2022-04-05 00:20:46','2022-04-05 00:20:46'),(459,46377,46368,'independent contractor and not an employee','claimant was an independent contractor and not an employee','claimant was an <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/02/independent-contractor-or-employee/\">independent contractor and not an employee</a>','claimant was an independent contractor and not an employee','– i.e. claimant was an independent contractor and not an employee.','claimant and our client, or another individual who owns the property where the alleged injury occurred and for whom our client performs work. In this matter, the claimant filed a Workers’ Compensation claim against our client after alleging multiple injuries after she reportedly fell backwards in May 2019 while performing landscaping services on a specific property where our client was responsible for property management services. Our client did not maintain any Workers’ Compensation insurance as she operated a LLC with no employees under which she maintained her property management services. Our office was retained to defend the matter and immediately pursued an aggressive defense that there was no employee-employer relationship  – i.e. claimant was an independent contractor and not an employee.',0,'2022-04-05 00:20:51','2022-04-05 00:20:51'),(460,46377,46371,'claimant received','We note that the claimant received a 1099 from our client in 2018 for her services, which included landscaping, gardening, and docent services at a museum operated on one of the properties managed by our client','We note that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant received</a> a 1099 from our client in 2018 for her services, which included landscaping, gardening, and docent services at a museum operated on one of the properties managed by our client','We note that the claimant received a 1099 from our client in 2018 for her services, which included landscaping, gardening, and docent services at a museum operated on one of the properties managed by our client','We also demanded that the claimant produce her tax documents from 2018 and 2019 in order to confirm her income from our client and the property owner – but more importantly from other individuals during the same time period she claimed “employment” by our client. We note that the claimant received a 1099 from our client in 2018 for her services, which included landscaping, gardening, and docent services at a museum operated on one of the properties managed by our client. Throughout lengthy testimony, the record was developed to reflect that while our client told the claimant what services to provide on a certain day, the claimant-maintained control over the manner in which to perform the work.','We also demanded that the claimant produce her tax documents from 2018 and 2019 in order to confirm her income from our client and the property owner – but more importantly from other individuals during the same time period she claimed “employment” by our client. We note that the claimant received a 1099 from our client in 2018 for her services, which included landscaping, gardening, and docent services at a museum operated on one of the properties managed by our client. Throughout lengthy testimony, the record was developed to reflect that while our client told the claimant what services to provide on a certain day, the claimant-maintained control over the manner in which to perform the work. Furthermore, the claimant would set her own hours (with no attendance requirements), use her personal vehicle to get to a specific properly, use mostly her own tools to perform the work, and then would submit an invoice for her services after the work was performed. Significantly, the record was established on the fact that the claimant performed similar services for others in 2018 and 2019 without needing permission to do so from our client',0,'2022-04-05 00:20:51','2022-04-05 00:20:51'),(461,46377,46374,'claimant what services to provide on a certain day','Throughout lengthy testimony, the record was developed to reflect that while our client told the claimant what services to provide on a certain day, the claimant-maintained control over the manner in which to perform the work','Throughout lengthy testimony, the record was developed to reflect that while our client told the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claimant what services to provide on a certain day</a>, the claimant-maintained control over the manner in which to perform the work','Throughout lengthy testimony, the record was developed to reflect that while our client told the claimant what services to provide on a certain day, the claimant-maintained control over the manner in which to perform the work','We note that the claimant received a 1099 from our client in 2018 for her services, which included landscaping, gardening, and docent services at a museum operated on one of the properties managed by our client. Throughout lengthy testimony, the record was developed to reflect that while our client told the claimant what services to provide on a certain day, the claimant-maintained control over the manner in which to perform the work. Furthermore, the claimant would set her own hours (with no attendance requirements), use her personal vehicle to get to a specific properly, use mostly her own tools to perform the work, and then would submit an invoice for her services after the work was performed.','Throughout lengthy testimony, the record was developed to reflect that while our client told the claimant what services to provide on a certain day, the claimant-maintained control over the manner in which to perform the work. Furthermore, the claimant would set her own hours (with no attendance requirements), use her personal vehicle to get to a specific properly, use mostly her own tools to perform the work, and then would submit an invoice for her services after the work',0,'2022-04-05 00:20:51','2022-04-05 00:20:51'),(462,46171,46421,'workers’ compensation','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation</a> as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants. When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view.','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants.',0,'2022-04-05 00:20:53','2022-04-05 00:20:53'),(463,46171,46421,'workers’ compensation','When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view','When the opportunity arose for her to see <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation</a> from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view','When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants. When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view. Always up for a challenge, Rebecca’s tough determination and solid work ethic are what keep her consistently motivated to contribute wherever possible and get the job done.','When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view.',0,'2022-04-05 00:20:53','2022-04-05 00:20:53'),(464,46171,46486,'workers’ compensation','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants. When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view.','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants.',0,'2022-04-05 00:20:53','2022-04-05 00:20:53'),(465,46171,46486,'workers’ compensation','When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view','When the opportunity arose for her to see <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view','When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants. When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view. Always up for a challenge, Rebecca’s tough determination and solid work ethic are what keep her consistently motivated to contribute wherever possible and get the job done.','When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view.',0,'2022-04-05 00:20:53','2022-04-05 00:20:53'),(466,46171,46512,'workers’ compensation','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants. When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view.','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants.',0,'2022-04-05 00:20:53','2022-04-05 00:20:53'),(467,46171,46512,'workers’ compensation','When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view','When the opportunity arose for her to see <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view','When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants. When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view. Always up for a challenge, Rebecca’s tough determination and solid work ethic are what keep her consistently motivated to contribute wherever possible and get the job done.','When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view.',0,'2022-04-05 00:20:53','2022-04-05 00:20:53'),(468,46171,46555,'workers’ compensation','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants. When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view.','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants.',0,'2022-04-05 00:20:53','2022-04-05 00:20:53'),(469,46171,46555,'workers’ compensation','When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view','When the opportunity arose for her to see <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view','When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants. When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view. Always up for a challenge, Rebecca’s tough determination and solid work ethic are what keep her consistently motivated to contribute wherever possible and get the job done.','When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view.',0,'2022-04-05 00:20:53','2022-04-05 00:20:53'),(472,45925,46387,'workers\' compensation','For years, the standard operating procedure for New York workers\' compensation defense firms has been predicated on volume','For years, the standard operating procedure for New York <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\">workers\' compensation</a> defense firms has been predicated on volume','For years, the standard operating procedure for New York workers\' compensation defense firms has been predicated on volume','For years, the standard operating procedure for New York workers\' compensation defense firms has been predicated on volume. Each morning defense attorneys picked up the 15-20 files for the hearings that they were expected to handle that day, lined them up, spent five minutes reviewing the file, attended the hearing, dictated the report and then moved on to the next file.','For years, the standard operating procedure for New York workers\' compensation defense firms has been predicated on volume.',0,'2022-04-05 01:06:57','2022-04-05 01:06:57'),(473,45925,48276,'workers\' compensation defense','For years, the standard operating procedure for New York workers\' compensation defense firms has been predicated on volume','For years, the standard operating procedure for New York <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/amherst-workers-compensation-defense-law-office/\">workers\' compensation defense</a> firms has been predicated on volume','For years, the standard operating procedure for New York workers\' compensation defense firms has been predicated on volume','For years, the standard operating procedure for New York workers\' compensation defense firms has been predicated on volume. Each morning defense attorneys picked up the 15-20 files for the hearings that they were expected to handle that day, lined them up, spent five minutes reviewing the file, attended the hearing, dictated the report and then moved on to the next file.','For years, the standard operating procedure for New York workers\' compensation defense firms has been predicated on volume.',0,'2022-04-05 01:06:57','2022-04-05 01:06:57'),(474,45925,48276,'compensation defense: claim-based defense','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/amherst-workers-compensation-defense-law-office/\">compensation defense: claim-based defense</a> partnerships','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships. Our clients refer claims to us, not hearings.','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships.',0,'2022-04-05 01:06:57','2022-04-05 01:06:57'),(475,45925,48276,'compensation law','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York workers’ compensation law','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York workers’ <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/amherst-workers-compensation-defense-law-office/\">compensation law</a>','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York workers’ compensation law','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York workers’ compensation law. We pride ourselves on staying current with the most recent changes in the law in substance and in practice.','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York workers’ compensation law. We pride ourselves on staying current with the most recent changes in the law in substance and in practice. We accomplish this by running a forum on LinkedIn called the New York Workers’ Compensation Forum, which we invite you to join. Additionally, we hold webinars, Lawyers and Friends, every 4th Friday on the month, which you are welcome to join as well!',0,'2022-04-05 01:06:57','2022-04-05 01:06:57'),(476,45925,46374,'hearings that they were expected to handle that day','Each morning defense attorneys picked up the 15-20 files for the hearings that they were expected to handle that day, lined them up, spent five minutes reviewing the file, attended the hearing, dictated the report and then moved on to the next file','Each morning defense attorneys picked up the 15-20 files for the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">hearings that they were expected to handle that day</a>, lined them up, spent five minutes reviewing the file, attended the hearing, dictated the report and then moved on to the next file','Each morning defense attorneys picked up the 15-20 files for the hearings that they were expected to handle that day, lined them up, spent five minutes reviewing the file, attended the hearing, dictated the report and then moved on to the next file','For years, the standard operating procedure for New York workers\' compensation defense firms has been predicated on volume. Each morning defense attorneys picked up the 15-20 files for the hearings that they were expected to handle that day, lined them up, spent five minutes reviewing the file, attended the hearing, dictated the report and then moved on to the next file. A report was typed and the file was sent back to the adjuster – frequently without the attorney and the adjuster ever having any real communication.','Each morning defense attorneys picked up the 15-20 files for the hearings that they were expected to handle that day, lined them up, spent five minutes reviewing the file, attended the hearing, dictated the report and then moved on to the next file. A report was typed and the file was sent back to the adjuster – frequently without the attorney and the adjuster ever having any real communication. There would be little to no contact before the hearing, at most terse telephone discussions on the day of the hearing for authority for an agreement so that defense counsel would not have to thoroughly analyze the file',0,'2022-04-05 01:06:57','2022-04-05 01:06:57'),(477,45925,46511,'defense counsel','There would be little to no contact before the hearing, at most terse telephone discussions on the day of the hearing for authority for an agreement so that defense counsel would not have to thoroughly analyze the file and provide a thoughtful defense of the claim; there was certainly no ongoing dialogue after or between hearings.','There would be little to no contact before the hearing, at most terse telephone discussions on the day of the hearing for authority for an agreement so that <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">defense counsel</a> would not have to thoroughly analyze the file and provide a thoughtful defense of the claim; there was certainly no ongoing dialogue after or between hearings.','There would be little to no contact before the hearing, at most terse telephone discussions on the day of the hearing for authority for an agreement so that defense counsel would not have to thoroughly analyze the file and provide a thoughtful defense of the claim; there was certainly no ongoing dialogue after or between hearings.','A report was typed and the file was sent back to the adjuster – frequently without the attorney and the adjuster ever having any real communication. There would be little to no contact before the hearing, at most terse telephone discussions on the day of the hearing for authority for an agreement so that defense counsel would not have to thoroughly analyze the file and provide a thoughtful defense of the claim; there was certainly no ongoing dialogue after or between hearings.','There would be little to no contact before the hearing, at most terse telephone discussions on the day of the hearing for authority for an agreement so that defense counsel would not have to thoroughly analyze the file and provide a thoughtful defense of the claim; there was certainly no ongoing dialogue after or between hearings.',0,'2022-04-05 01:06:57','2022-04-05 01:06:57'),(478,45925,46511,'refer claims','Our clients refer claims to us, not hearings','Our clients <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">refer claims</a> to us, not hearings','Our clients refer claims to us, not hearings','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships. Our clients refer claims to us, not hearings. We develop relationships with our clients that are proactive rather than reactive; ones that foster ongoing conversations between client and counsel to develop strategies to meet specific goals as opposed to simply appearing at hearings, sending a report, and leaving the employer or TPA to fend for themselves in between board appearances.','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships. Our clients refer claims to us, not hearings. We develop relationships with our clients that are proactive rather than reactive; ones that foster ongoing conversations between client and counsel to develop strategies to meet specific goals as opposed to simply appearing at hearings',0,'2022-04-05 01:06:57','2022-04-05 01:06:57'),(479,45925,46421,'workers’ compensation','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships','Our philosophy at , represents what we believe is a dramatic departure from the assembly line <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation</a> defense: claim-based defense partnerships','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships. Our clients refer claims to us, not hearings.','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships.',0,'2022-04-05 01:06:57','2022-04-05 01:06:57'),(480,45925,46486,'workers’ compensation','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships','Our philosophy at , represents what we believe is a dramatic departure from the assembly line <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> defense: claim-based defense partnerships','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships. Our clients refer claims to us, not hearings.','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships.',0,'2022-04-05 01:06:57','2022-04-05 01:06:57'),(481,45925,46486,'workers’ compensation','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York workers’ compensation law','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> law','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York workers’ compensation law','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York workers’ compensation law. We pride ourselves on staying current with the most recent changes in the law in substance and in practice.','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York workers’ compensation law. We pride ourselves on staying current with the most recent changes in the law in substance and in practice. We accomplish this by running a forum on LinkedIn called the New York Workers’ Compensation Forum, which we invite you to join. Additionally, we hold webinars, Law',0,'2022-04-05 01:06:57','2022-04-05 01:06:57'),(482,45925,46512,'workers’ compensation','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships','Our philosophy at , represents what we believe is a dramatic departure from the assembly line <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> defense: claim-based defense partnerships','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships. Our clients refer claims to us, not hearings.','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships.',0,'2022-04-05 01:06:57','2022-04-05 01:06:57'),(483,45925,46512,'workers’ compensation','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York workers’ compensation law','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> law','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York workers’ compensation law','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York workers’ compensation law. We pride ourselves on staying current with the most recent changes in the law in substance and in practice.','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York workers’ compensation law. We pride ourselves on staying current with the most recent changes in the law in substance and in practice. We accomplish this by running a forum on LinkedIn called the New York Workers’ Compensation Forum, which we invite you to join. Additionally, we hold webinars, Law',0,'2022-04-05 01:06:57','2022-04-05 01:06:57'),(484,45925,46555,'workers’ compensation','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships','Our philosophy at , represents what we believe is a dramatic departure from the assembly line <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> defense: claim-based defense partnerships','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships. Our clients refer claims to us, not hearings.','Our philosophy at , represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships.',0,'2022-04-05 01:06:57','2022-04-05 01:06:57'),(485,45925,46555,'workers’ compensation','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York workers’ compensation law','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> law','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York workers’ compensation law','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York workers’ compensation law. We pride ourselves on staying current with the most recent changes in the law in substance and in practice.','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York workers’ compensation law. We pride ourselves on staying current with the most recent changes in the law in substance and in practice. We accomplish this by running a forum on LinkedIn called the New York Workers’ Compensation Forum, which we invite you to join. Additionally, we hold webinars, Law',0,'2022-04-05 01:06:57','2022-04-05 01:06:57'),(486,45925,46351,'law in substance and in practice','We pride ourselves on staying current with the most recent changes in the law in substance and in practice','We pride ourselves on staying current with the most recent changes in the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/03/thoughts-on-thinking-a-strange-title-about-practicing-law/\">law in substance and in practice</a>','We pride ourselves on staying current with the most recent changes in the law in substance and in practice','Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York workers’ compensation law. We pride ourselves on staying current with the most recent changes in the law in substance and in practice. We accomplish this by running a forum on LinkedIn called the New York Workers’ Compensation Forum, which we invite you to join.','We pride ourselves on staying current with the most recent changes in the law in substance and in practice. We accomplish this by running a forum on LinkedIn called the New York Workers’ Compensation Forum, which we invite you to join. Additionally, we hold webinars, Lawyers and Friends, every 4th Friday on the month, which you are welcome to join as well!',0,'2022-04-05 01:06:57','2022-04-05 01:06:57'),(487,45925,46380,'invite you to join','We accomplish this by running a forum on LinkedIn called the New York Workers’ Compensation Forum, which we invite you to join','We accomplish this by running a forum on LinkedIn called the New York Workers’ Compensation Forum, which we <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2019/07/melissa-a-day-esq-invited-to-join-buffalo-business-first-leadership-trust/\">invite you to join</a>','We accomplish this by running a forum on LinkedIn called the New York Workers’ Compensation Forum, which we invite you to join','We pride ourselves on staying current with the most recent changes in the law in substance and in practice. We accomplish this by running a forum on LinkedIn called the New York Workers’ Compensation Forum, which we invite you to join. Additionally, we hold webinars, Lawyers and Friends, every 4th Friday on the month, which you are welcome to join as well!','We pride ourselves on staying current with the most recent changes in the law in substance and in practice. We accomplish this by running a forum on LinkedIn called the New York Workers’ Compensation Forum, which we invite you to join. Additionally, we hold webinars, Lawyers and Friends, every 4th Friday on the month, which you are welcome to join as well!',0,'2022-04-05 01:06:57','2022-04-05 01:06:57'),(488,46189,46421,'workers’ compensation','Our attorneys bring well over 100 years of combined experience in the workers’ compensation field','Our attorneys bring well over 100 years of combined experience in the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation</a> field','Our attorneys bring well over 100 years of combined experience in the workers’ compensation field','Melissa has a unique talent for finding amazing people to help the office thrive and is proud of the work they do. Our attorneys bring well over 100 years of combined experience in the workers’ compensation field. All of our staff bring a variety of skills and experience to our ever-expanding crew, creating one of the best teams in New York state.','Our attorneys bring well over 100 years of combined experience in the workers’ compensation field.',0,'2022-04-05 01:06:58','2022-04-05 01:06:58'),(489,46189,46486,'workers’ compensation','Our attorneys bring well over 100 years of combined experience in the workers’ compensation field','Our attorneys bring well over 100 years of combined experience in the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> field','Our attorneys bring well over 100 years of combined experience in the workers’ compensation field','Melissa has a unique talent for finding amazing people to help the office thrive and is proud of the work they do. Our attorneys bring well over 100 years of combined experience in the workers’ compensation field. All of our staff bring a variety of skills and experience to our ever-expanding crew, creating one of the best teams in New York state.','Our attorneys bring well over 100 years of combined experience in the workers’ compensation field.',0,'2022-04-05 01:06:58','2022-04-05 01:06:58'),(490,46189,46512,'workers’ compensation','Our attorneys bring well over 100 years of combined experience in the workers’ compensation field','Our attorneys bring well over 100 years of combined experience in the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> field','Our attorneys bring well over 100 years of combined experience in the workers’ compensation field','Melissa has a unique talent for finding amazing people to help the office thrive and is proud of the work they do. Our attorneys bring well over 100 years of combined experience in the workers’ compensation field. All of our staff bring a variety of skills and experience to our ever-expanding crew, creating one of the best teams in New York state.','Our attorneys bring well over 100 years of combined experience in the workers’ compensation field.',0,'2022-04-05 01:06:58','2022-04-05 01:06:58'),(491,46189,46555,'workers’ compensation','Our attorneys bring well over 100 years of combined experience in the workers’ compensation field','Our attorneys bring well over 100 years of combined experience in the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> field','Our attorneys bring well over 100 years of combined experience in the workers’ compensation field','Melissa has a unique talent for finding amazing people to help the office thrive and is proud of the work they do. Our attorneys bring well over 100 years of combined experience in the workers’ compensation field. All of our staff bring a variety of skills and experience to our ever-expanding crew, creating one of the best teams in New York state.','Our attorneys bring well over 100 years of combined experience in the workers’ compensation field.',0,'2022-04-05 01:06:58','2022-04-05 01:06:58'),(492,46352,46329,'schedule loss','This case has been instrumental in forcing the Judges to account for all prior schedule loss of use awards to a particular extremity, rather than schedules for the same part of the extremity','This case has been instrumental in forcing the Judges to account for <em>all</em> prior <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/08/using-the-contralateral-limb-as-a-baseline-for-calculating-schedule-loss-of-use/\">schedule loss</a> of use awards to a particular extremity, rather than schedules for the same part of the extremity','This case has been instrumental in forcing the Judges to account for <em>all</em> prior schedule loss of use awards to a particular extremity, rather than schedules for the same part of the extremity','This case has been instrumental in forcing the Judges to account for all prior schedule loss of use awards to a particular extremity, rather than schedules for the same part of the extremity? But what about total joint replacements…?','This case has been instrumental in forcing the Judges to account for <em>all</em> prior schedule loss of use awards to a particular extremity, rather than schedules for the same part of the extremity?',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(493,46352,46329,'schedule loss','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/08/using-the-contralateral-limb-as-a-baseline-for-calculating-schedule-loss-of-use/\">schedule loss</a> of use award','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award. See Workers’ Compensation Guidelines for Determining Permanent Impairment § 7.5, at 44 (2017).','the Judges to account for <em>all</em> prior schedule loss of use award',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(494,46352,46329,'schedule loss','G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg','G07778237, the claimant was previously found to have a 17.5% <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/08/using-the-contralateral-limb-as-a-baseline-for-calculating-schedule-loss-of-use/\">schedule loss</a> of use of the right leg','G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg','Comp. G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg. The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg.','G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg. The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg.',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(495,46352,46329,'schedule loss','The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg','The claimant then had a total knee replacement, with his doctor opining a 40% <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/08/using-the-contralateral-limb-as-a-baseline-for-calculating-schedule-loss-of-use/\">schedule loss</a> of use of the right leg','The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg','G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg. The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg. The Board affirmed the WCLJ’s determination that the claimant was entitled to an overall 22.5% increase in schedule loss of use.','the Court elaborated that “consistent with this observation, neither the statute nor the Board’s guidelines lists the ankle or the knee as body parts lending themselves to separate SLU awards. Rather, impairments to these extremities are encompassed by awards for the loss of use of the leg (see Workers’ Compensation Law § 15[3][b]; New York State Guidelines for Determining Permanent Impairment and Loss of Wage Earning Capacity § 8, at 43 [2012]).” For that reason, The Court determined the Board properly deducted prior schedules for the claimant’s right knee and ankle to arrive at the claimant’s overall schedule loss of use of the right leg.',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(496,46352,46329,'schedule loss','The Board affirmed the WCLJ’s determination that the claimant was entitled to an overall 22.5% increase in schedule loss of use','The Board affirmed the WCLJ’s determination that the claimant was entitled to an overall 22.5% increase in <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/08/using-the-contralateral-limb-as-a-baseline-for-calculating-schedule-loss-of-use/\">schedule loss</a> of use','The Board affirmed the WCLJ’s determination that the claimant was entitled to an overall 22.5% increase in schedule loss of use','The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg. The Board affirmed the WCLJ’s determination that the claimant was entitled to an overall 22.5% increase in schedule loss of use.','the Court elaborated that “consistent with this observation, neither the statute nor the Board’s guidelines lists the ankle or the knee as body parts lending themselves to separate SLU awards. Rather, impairments to these extremities are encompassed by awards for the loss of use of the leg (see Workers’ Compensation Law § 15[3][b]; New York State Guidelines for Determining Permanent Impairment and Loss of Wage Earning Capacity § 8, at 43 [2012]).” For that reason, The Court determined the Board properly deducted prior schedules for the claimant’s right knee and ankle to arrive at the claimant’s overall schedule loss of use',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(497,46352,46387,'schedule loss','This case has been instrumental in forcing the Judges to account for all prior schedule loss of use awards to a particular extremity, rather than schedules for the same part of the extremity','This case has been instrumental in forcing the Judges to account for <em>all</em> prior <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\">schedule loss</a> of use awards to a particular extremity, rather than schedules for the same part of the extremity','This case has been instrumental in forcing the Judges to account for <em>all</em> prior schedule loss of use awards to a particular extremity, rather than schedules for the same part of the extremity','This case has been instrumental in forcing the Judges to account for all prior schedule loss of use awards to a particular extremity, rather than schedules for the same part of the extremity? But what about total joint replacements…?','This case has been instrumental in forcing the Judges to account for <em>all</em> prior schedule loss of use awards to a particular extremity, rather than schedules for the same part of the extremity?',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(498,46352,46387,'schedule loss','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\">schedule loss</a> of use award','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award. See Workers’ Compensation Guidelines for Determining Permanent Impairment § 7.5, at 44 (2017).','the Judges to account for <em>all</em> prior schedule loss of use award',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(499,46352,46387,'schedule loss','G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg','G07778237, the claimant was previously found to have a 17.5% <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\">schedule loss</a> of use of the right leg','G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg','Comp. G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg. The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg.','G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg. The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg.',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(500,46352,46387,'schedule loss','The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg','The claimant then had a total knee replacement, with his doctor opining a 40% <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\">schedule loss</a> of use of the right leg','The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg','G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg. The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg. The Board affirmed the WCLJ’s determination that the claimant was entitled to an overall 22.5% increase in schedule loss of use.','the Court elaborated that “consistent with this observation, neither the statute nor the Board’s guidelines lists the ankle or the knee as body parts lending themselves to separate SLU awards. Rather, impairments to these extremities are encompassed by awards for the loss of use of the leg (see Workers’ Compensation Law § 15[3][b]; New York State Guidelines for Determining Permanent Impairment and Loss of Wage Earning Capacity § 8, at 43 [2012]).” For that reason, The Court determined the Board properly deducted prior schedules for the claimant’s right knee and ankle to arrive at the claimant’s overall schedule loss of use of the right leg.',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(501,46352,46415,'schedule loss of use awards','This case has been instrumental in forcing the Judges to account for all prior schedule loss of use awards to a particular extremity, rather than schedules for the same part of the extremity','This case has been instrumental in forcing the Judges to account for <em>all</em> prior <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\">schedule loss of use awards</a> to a particular extremity, rather than schedules for the same part of the extremity','This case has been instrumental in forcing the Judges to account for <em>all</em> prior schedule loss of use awards to a particular extremity, rather than schedules for the same part of the extremity','This case has been instrumental in forcing the Judges to account for all prior schedule loss of use awards to a particular extremity, rather than schedules for the same part of the extremity? But what about total joint replacements…?','This case has been instrumental in forcing the Judges to account for <em>all</em> prior schedule loss of use awards to a particular extremity, rather than schedules for the same part of the extremity?',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(502,46352,46415,'schedule loss of use award','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\">schedule loss of use award</a>','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award. See Workers’ Compensation Guidelines for Determining Permanent Impairment § 7.5, at 44 (2017).','the Judges to account for <em>all</em> prior schedule loss of use awards to a particular extremity, rather than schedules for the same part of the extremity? But what about total joint replacements…?',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(503,46352,46415,'schedule loss','G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg','G07778237, the claimant was previously found to have a 17.5% <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\">schedule loss</a> of use of the right leg','G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg','Comp. G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg. The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg.','G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg. The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg.',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(504,46352,46415,'schedule loss','The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg','The claimant then had a total knee replacement, with his doctor opining a 40% <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\">schedule loss</a> of use of the right leg','The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg','G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg. The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg. The Board affirmed the WCLJ’s determination that the claimant was entitled to an overall 22.5% increase in schedule loss of use.','the Court elaborated that “consistent with this observation, neither the statute nor the Board’s guidelines lists the ankle or the knee as body parts lending themselves to separate SLU awards. Rather, impairments to these extremities are encompassed by awards for the loss of use of the leg (see Workers’ Compensation Law § 15[3][b]; New York State Guidelines for Determining Permanent Impairment and Loss of Wage Earning Capacity § 8, at 43 [2012]).” For that reason, The Court determined the Board properly deducted prior schedules for the claimant’s right knee and ankle to arrive at the claimant’s overall schedule loss of use of the right leg.',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(505,46352,46415,'schedule loss','The Board affirmed the WCLJ’s determination that the claimant was entitled to an overall 22.5% increase in schedule loss of use','The Board affirmed the WCLJ’s determination that the claimant was entitled to an overall 22.5% increase in <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\">schedule loss</a> of use','The Board affirmed the WCLJ’s determination that the claimant was entitled to an overall 22.5% increase in schedule loss of use','The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg. The Board affirmed the WCLJ’s determination that the claimant was entitled to an overall 22.5% increase in schedule loss of use.','the Court elaborated that “consistent with this observation, neither the statute nor the Board’s guidelines lists the ankle or the knee as body parts lending themselves to separate SLU awards. Rather, impairments to these extremities are encompassed by awards for the loss of use of the leg (see Workers’ Compensation Law § 15[3][b]; New York State Guidelines for Determining Permanent Impairment and Loss of Wage Earning Capacity § 8, at 43 [2012]).” For that reason, The Court determined the Board properly deducted prior schedules for the claimant’s right knee and ankle to arrive at the claimant’s overall schedule loss of use',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(506,46352,46549,'state that for a “good result” following a total','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award','The 2018 Guidelines for Determining Permanent Impairment, for example, <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">state that for a “good result” following a total</a> knee replacement, a claimant could expect a 35% schedule loss of use award','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award. See Workers’ Compensation Guidelines for Determining Permanent Impairment § 7.5, at 44 (2017).','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award.',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(507,46352,46549,'found that Genduso applies to total','The Board Panel has specifically found that Genduso applies to total replacements','The Board Panel has specifically found that <u>Genduso</u> applies to total replacements','The Board Panel has specifically found that <u>Genduso</u> applies to total replacements','DO NOT FALL FOR THAT TRAP! The Board Panel has specifically found that Genduso applies to total replacements. In Matter of State University at Purchase, 2020 NY Wrk.','The Board Panel has specifically found that Genduso applies to total replacements',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(508,46352,46549,'claimant then had a total','The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg','The <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">claimant then had a total</a> knee replacement, with his doctor opining a 40% schedule loss of use of the right leg','The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg','G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg. The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg. The Board affirmed the WCLJ’s determination that the claimant was entitled to an overall 22.5% increase in schedule loss of use.','The Board Panel has specifically found that <u>Genduso</u> applies to total replacements. In <u>Matter of State University at Purchase</u>, 2020 NY Wrk. Comp. G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg. The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg.',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(509,46352,46549,'claimant was previously found','G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg','G07778237, the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">claimant was previously found</a> to have a 17.5% schedule loss of use of the right leg','G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg','Comp. G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg. The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg.','G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg. The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg.',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(510,46352,46374,'claimant was previously found to have a 17.5% schedule loss','G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg','G07778237, the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claimant was previously found to have a 17.5% schedule loss</a> of use of the right leg','G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg','Comp. G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg. The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg.','G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg. The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg.',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(511,46352,46374,'claimant could expect a 35% schedule loss','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claimant could expect a 35% schedule loss</a> of use award','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award. See Workers’ Compensation Guidelines for Determining Permanent Impairment § 7.5, at 44 (2017).','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award.',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(512,46352,46553,'claimant then had a total','The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg','The <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">claimant then had a total</a> knee replacement, with his doctor opining a 40% schedule loss of use of the right leg','The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg','G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg. The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg. The Board affirmed the WCLJ’s determination that the claimant was entitled to an overall 22.5% increase in schedule loss of use.','The Board Panel has specifically found that <u>Genduso</u> applies to total replacements. In <u>Matter of State University at Purchase</u>, 2020 NY Wrk. Comp. G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg. The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg.',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(513,46352,46553,'claimant could expect','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">claimant could expect</a> a 35% schedule loss of use award','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award. See Workers’ Compensation Guidelines for Determining Permanent Impairment § 7.5, at 44 (2017).','The 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award.',0,'2022-04-05 01:06:59','2022-04-05 01:06:59'),(514,46193,46343,'notice to my then employer','After those interviews, I made the life-altering decision to give notice to my then employer','After those interviews, I made the life-altering decision to give <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/employers-do-not-have-to-prove-prejudice-by-late-notice-but-it-certainly-doesnt-hurt-to-do-so/\">notice to my then employer</a>','After those interviews, I made the life-altering decision to give notice to my then employer','After those interviews, I made the life-altering decision to give notice to my then employer. It was an easy decision to make, as I had been unhappy there for a LOOONG time.','After those interviews, I made the life-altering decision to give notice to my then employer. It was an easy decision to make, as I had been unhappy there for a LOOONG time.',0,'2022-04-05 01:07:00','2022-04-05 01:07:00'),(515,46193,46512,'members (including me) –','When I was hired (full time, by the way), there were five attorneys and three staff members (including me) – 8 of us','When I was hired (full time, by the way), there were five attorneys and three staff <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">members (including me) –</a> 8 of us','When I was hired (full time, by the way), there were five attorneys and three staff members (including me) – 8 of us','When I was hired (full time, by the way), there were five attorneys and three staff members (including me) – 8 of us. We now have 35 employees in total (including our fearless leaders).','When I was hired (full time, by the way), there were five attorneys and three staff members (including me) – 8 of us.',0,'2022-04-05 01:07:00','2022-04-05 01:07:00'),(516,46433,46502,'costs of the claimant’s addiction treatment','Finally, once there is a ruling that weaning is required the insurer is to cover the costs of the claimant’s addiction treatment program, weaning protocol, and medications through the duration of the weaning process','Finally, once there is a ruling that weaning is required the insurer is to cover the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">costs of the claimant’s addiction treatment</a> program, weaning protocol, and medications through the duration of the weaning process','Finally, once there is a ruling that weaning is required the insurer is to cover the costs of the claimant’s addiction treatment program, weaning protocol, and medications through the duration of the weaning process','Finally, once there is a ruling that weaning is required the insurer is to cover the costs of the claimant’s addiction treatment program, weaning protocol, and medications through the duration of the weaning process.','Finally, once there is a ruling that weaning is required the insurer is to cover the costs of the claimant’s addiction treatment program, weaning protocol, and medications through the duration of the weaning process.',0,'2022-04-05 01:07:01','2022-04-05 01:07:01'),(517,46433,46502,'opioid medications','To further effectuate this goal the Board has created a process for hearings addressing opioid medications','To further effectuate this goal the Board has created a process for hearings addressing <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">opioid medications</a>','To further effectuate this goal the Board has created a process for hearings addressing opioid medications','In support of this new process the Board recognizes that the Non-Acute Pain Medical Treatment Guidelines clearly indicate that long-term opioid use is recommended in only limited circumstances, involves constant clinical monitoring and reevaluation, and requires best practices for safe weaning of workers from opioid medications. To further effectuate this goal the Board has created a process for hearings addressing opioid medications.','Today the Board issued Subject Number 064 – 892 which creates a “hearing process” for addressing opioid weaning issues. In support of this new process the Board recognizes that the Non-Acute Pain Medical Treatment Guidelines clearly indicate that long-term opioid use is recommended in only limited circumstances, involves constant clinical monitoring and reevaluation, and requires best practices for safe weaning of workers from opioid medications. To further effectuate this goal the Board has created a process for hearings addressing opioid medications.',0,'2022-04-05 01:07:01','2022-04-05 01:07:01'),(518,46433,46503,'medication treatment','This effectively places whether a claimant’s opioid medication treatment is within the Non-Acute Pain Medical Treatment Guidelines on the expedited hearing calendar','This effectively places whether a claimant’s opioid <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">medication treatment</a> is within the Non-Acute Pain Medical Treatment Guidelines on the expedited hearing calendar','This effectively places whether a claimant’s opioid medication treatment is within the Non-Acute Pain Medical Treatment Guidelines on the expedited hearing calendar','This effectively places whether a claimant’s opioid medication treatment is within the Non-Acute Pain Medical Treatment Guidelines on the expedited hearing calendar.  A link to the subject number is below.','This effectively places whether a claimant’s opioid medication treatment is within the Non-Acute Pain Medical Treatment Guidelines on the expedited hearing calendar.',0,'2022-04-05 01:07:01','2022-04-05 01:07:01'),(519,46433,46543,'medication treatment','This effectively places whether a claimant’s opioid medication treatment is within the Non-Acute Pain Medical Treatment Guidelines on the expedited hearing calendar','This effectively places whether a claimant’s opioid <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\">medication treatment</a> is within the Non-Acute Pain Medical Treatment Guidelines on the expedited hearing calendar','This effectively places whether a claimant’s opioid medication treatment is within the Non-Acute Pain Medical Treatment Guidelines on the expedited hearing calendar','This effectively places whether a claimant’s opioid medication treatment is within the Non-Acute Pain Medical Treatment Guidelines on the expedited hearing calendar.  A link to the subject number is below.','This effectively places whether a claimant’s opioid medication treatment is within the Non-Acute Pain Medical Treatment Guidelines on the expedited hearing calendar.',0,'2022-04-05 01:07:01','2022-04-05 01:07:01'),(520,46119,48276,'law including workers’ compensation,','She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more','She has been working in the legal field for more than 15 years in various areas of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/amherst-workers-compensation-defense-law-office/\">law including workers’ compensation,</a> litigation and estates, and she is always eager to learn more','She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more','She holds an associate degree in paralegal studies from Bryan and Stratton College, where she graduated with the highest honors. She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more. She enjoys being part of such a dynamic team and prides herself in working well with others.','She holds an associate degree in paralegal studies from Bryan and Stratton College, where she graduated with the highest honors. She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more.',0,'2022-04-05 01:07:02','2022-04-05 01:07:02'),(521,46119,46512,'including workers’ compensation,','She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more','She has been working in the legal field for more than 15 years in various areas of law <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">including workers’ compensation,</a> litigation and estates, and she is always eager to learn more','She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more','She holds an associate degree in paralegal studies from Bryan and Stratton College, where she graduated with the highest honors. She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more. She enjoys being part of such a dynamic team and prides herself in working well with others.','She holds an associate degree in paralegal studies from Bryan and Stratton College, where she graduated with the highest honors. She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more.',0,'2022-04-05 01:07:02','2022-04-05 01:07:02'),(522,46119,46421,'workers’ compensation,','She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more','She has been working in the legal field for more than 15 years in various areas of law including <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation,</a> litigation and estates, and she is always eager to learn more','She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more','She holds an associate degree in paralegal studies from Bryan and Stratton College, where she graduated with the highest honors. She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more. She enjoys being part of such a dynamic team and prides herself in working well with others.','She holds an associate degree in paralegal studies from Bryan and Stratton College, where she graduated with the highest honors. She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more.',0,'2022-04-05 01:07:02','2022-04-05 01:07:02'),(523,46119,46486,'workers’ compensation,','She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more','She has been working in the legal field for more than 15 years in various areas of law including <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation,</a> litigation and estates, and she is always eager to learn more','She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more','She holds an associate degree in paralegal studies from Bryan and Stratton College, where she graduated with the highest honors. She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more. She enjoys being part of such a dynamic team and prides herself in working well with others.','She holds an associate degree in paralegal studies from Bryan and Stratton College, where she graduated with the highest honors. She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more.',0,'2022-04-05 01:07:02','2022-04-05 01:07:02'),(524,46119,46555,'workers’ compensation,','She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more','She has been working in the legal field for more than 15 years in various areas of law including <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation,</a> litigation and estates, and she is always eager to learn more','She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more','She holds an associate degree in paralegal studies from Bryan and Stratton College, where she graduated with the highest honors. She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more. She enjoys being part of such a dynamic team and prides herself in working well with others.','She holds an associate degree in paralegal studies from Bryan and Stratton College, where she graduated with the highest honors. She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more.',0,'2022-04-05 01:07:02','2022-04-05 01:07:02'),(525,46480,46486,'workers’ compensation','Well, after writing for a while, and then writing some more, it became clear that this issue, like almost every issue in New York workers’ compensation claims may be basic, but it nevertheless carries around a lot of baggage in the form of rules, exceptions to rules, unique circumstances and even sometimes exceptions to exceptions of rules','Well, after writing for a while, and then writing some more, it became clear that this issue, like almost every issue in New York <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> claims may be basic, but it nevertheless carries around a lot of baggage in the form of rules, exceptions to rules, unique circumstances and even sometimes exceptions to exceptions of rules','Well, after writing for a while, and then writing some more, it became clear that this issue, like almost every issue in New York workers’ compensation claims may be basic, but it nevertheless carries around a lot of baggage in the form of rules, exceptions to rules, unique circumstances and even sometimes exceptions to exceptions of rules','Simple enough of a topic, right?  Well, after writing for a while, and then writing some more, it became clear that this issue, like almost every issue in New York workers’ compensation claims may be basic, but it nevertheless carries around a lot of baggage in the form of rules, exceptions to rules, unique circumstances and even sometimes exceptions to exceptions of rules.  The legal aspects of calculating and setting an AWW don’t fit into a neat box, and the topic sprawls without any hope of control.','Well, after writing for a while, and then writing some more, it became clear that this issue, like almost every issue in New York workers’ compensation claims may be basic, but it nevertheless carries around a lot of baggage in the form of rules, exceptions to rules, unique circumstances and even sometimes exceptions to exceptions of rules.',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(526,46480,46486,'workers’ compensation','The Average Weekly Wage (“AWW”) is one of the most basic, and often-times overlooked findings made in a workers’ compensation claim','The Average Weekly Wage (“AWW”) is one of the most basic, and often-times overlooked findings made in a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> claim','The Average Weekly Wage (“AWW”) is one of the most basic, and often-times overlooked findings made in a workers’ compensation claim','The Average Weekly Wage (“AWW”) is one of the most basic, and often-times overlooked findings made in a workers’ compensation claim.  Given the skyrocketing maximum rates, huge schedule awards and, of course, the often-present ATF deposit, controlling and minimizing an average weekly wage findings can pay dividends down the road when benefits are awarded in periods of weeks, months or even years.','then writing some more, it became clear that this issue, like almost every issue in New York workers’ compensation claim',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(527,46480,46486,'workers’ compensation','At this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping workers’ compensation costs down','At this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> costs down','At this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping workers’ compensation costs down','At this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping workers’ compensation costs down?  The simple answer is: sometimes everything. ','At this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping workers’ compensation costs down?',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(528,46480,46512,'workers’ compensation','Well, after writing for a while, and then writing some more, it became clear that this issue, like almost every issue in New York workers’ compensation claims may be basic, but it nevertheless carries around a lot of baggage in the form of rules, exceptions to rules, unique circumstances and even sometimes exceptions to exceptions of rules','Well, after writing for a while, and then writing some more, it became clear that this issue, like almost every issue in New York <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> claims may be basic, but it nevertheless carries around a lot of baggage in the form of rules, exceptions to rules, unique circumstances and even sometimes exceptions to exceptions of rules','Well, after writing for a while, and then writing some more, it became clear that this issue, like almost every issue in New York workers’ compensation claims may be basic, but it nevertheless carries around a lot of baggage in the form of rules, exceptions to rules, unique circumstances and even sometimes exceptions to exceptions of rules','Simple enough of a topic, right?  Well, after writing for a while, and then writing some more, it became clear that this issue, like almost every issue in New York workers’ compensation claims may be basic, but it nevertheless carries around a lot of baggage in the form of rules, exceptions to rules, unique circumstances and even sometimes exceptions to exceptions of rules.  The legal aspects of calculating and setting an AWW don’t fit into a neat box, and the topic sprawls without any hope of control.','Well, after writing for a while, and then writing some more, it became clear that this issue, like almost every issue in New York workers’ compensation claims may be basic, but it nevertheless carries around a lot of baggage in the form of rules, exceptions to rules, unique circumstances and even sometimes exceptions to exceptions of rules.',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(529,46480,46512,'workers’ compensation','The Average Weekly Wage (“AWW”) is one of the most basic, and often-times overlooked findings made in a workers’ compensation claim','The Average Weekly Wage (“AWW”) is one of the most basic, and often-times overlooked findings made in a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> claim','The Average Weekly Wage (“AWW”) is one of the most basic, and often-times overlooked findings made in a workers’ compensation claim','The Average Weekly Wage (“AWW”) is one of the most basic, and often-times overlooked findings made in a workers’ compensation claim.  Given the skyrocketing maximum rates, huge schedule awards and, of course, the often-present ATF deposit, controlling and minimizing an average weekly wage findings can pay dividends down the road when benefits are awarded in periods of weeks, months or even years.','then writing some more, it became clear that this issue, like almost every issue in New York workers’ compensation claim',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(530,46480,46512,'workers’ compensation','At this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping workers’ compensation costs down','At this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> costs down','At this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping workers’ compensation costs down','At this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping workers’ compensation costs down?  The simple answer is: sometimes everything. ','At this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping workers’ compensation costs down?',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(531,46480,46555,'workers’ compensation','Well, after writing for a while, and then writing some more, it became clear that this issue, like almost every issue in New York workers’ compensation claims may be basic, but it nevertheless carries around a lot of baggage in the form of rules, exceptions to rules, unique circumstances and even sometimes exceptions to exceptions of rules','Well, after writing for a while, and then writing some more, it became clear that this issue, like almost every issue in New York <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> claims may be basic, but it nevertheless carries around a lot of baggage in the form of rules, exceptions to rules, unique circumstances and even sometimes exceptions to exceptions of rules','Well, after writing for a while, and then writing some more, it became clear that this issue, like almost every issue in New York workers’ compensation claims may be basic, but it nevertheless carries around a lot of baggage in the form of rules, exceptions to rules, unique circumstances and even sometimes exceptions to exceptions of rules','Simple enough of a topic, right?  Well, after writing for a while, and then writing some more, it became clear that this issue, like almost every issue in New York workers’ compensation claims may be basic, but it nevertheless carries around a lot of baggage in the form of rules, exceptions to rules, unique circumstances and even sometimes exceptions to exceptions of rules.  The legal aspects of calculating and setting an AWW don’t fit into a neat box, and the topic sprawls without any hope of control.','Well, after writing for a while, and then writing some more, it became clear that this issue, like almost every issue in New York workers’ compensation claims may be basic, but it nevertheless carries around a lot of baggage in the form of rules, exceptions to rules, unique circumstances and even sometimes exceptions to exceptions of rules.',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(532,46480,46555,'workers’ compensation','The Average Weekly Wage (“AWW”) is one of the most basic, and often-times overlooked findings made in a workers’ compensation claim','The Average Weekly Wage (“AWW”) is one of the most basic, and often-times overlooked findings made in a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> claim','The Average Weekly Wage (“AWW”) is one of the most basic, and often-times overlooked findings made in a workers’ compensation claim','The Average Weekly Wage (“AWW”) is one of the most basic, and often-times overlooked findings made in a workers’ compensation claim.  Given the skyrocketing maximum rates, huge schedule awards and, of course, the often-present ATF deposit, controlling and minimizing an average weekly wage findings can pay dividends down the road when benefits are awarded in periods of weeks, months or even years.','then writing some more, it became clear that this issue, like almost every issue in New York workers’ compensation claim',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(533,46480,46555,'workers’ compensation','At this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping workers’ compensation costs down','At this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> costs down','At this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping workers’ compensation costs down','At this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping workers’ compensation costs down?  The simple answer is: sometimes everything. ','At this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping workers’ compensation costs down?',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(534,46480,46421,'workers’ compensation claim','The Average Weekly Wage (“AWW”) is one of the most basic, and often-times overlooked findings made in a workers’ compensation claim','The Average Weekly Wage (“AWW”) is one of the most basic, and often-times overlooked findings made in a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation claim</a>','The Average Weekly Wage (“AWW”) is one of the most basic, and often-times overlooked findings made in a workers’ compensation claim','The Average Weekly Wage (“AWW”) is one of the most basic, and often-times overlooked findings made in a workers’ compensation claim.  Given the skyrocketing maximum rates, huge schedule awards and, of course, the often-present ATF deposit, controlling and minimizing an average weekly wage findings can pay dividends down the road when benefits are awarded in periods of weeks, months or even years.','then writing some more, it became clear that this issue, like almost every issue in New York workers’ compensation claims may be basic, but it nevertheless carries around a lot of baggage in the form of rules, exceptions to rules, unique circumstances and even sometimes exceptions to exceptions of rules.  The legal aspects of calculating and setting an AWW don’t fit into a neat box, and the topic sprawls without any hope of control.',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(535,46480,46421,'workers’ compensation','At this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping workers’ compensation costs down','At this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation</a> costs down','At this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping workers’ compensation costs down','At this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping workers’ compensation costs down?  The simple answer is: sometimes everything. ','At this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping workers’ compensation costs down?',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(536,46480,46421,'comp claim','They work less, and sometime far less, than 260 days in the year preceding their accident, but they benefit from their time off when the file a comp claim','They work less, and sometime far less, than 260 days in the year preceding their accident, but they benefit from their time off when the file a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">comp claim</a>','They work less, and sometime far less, than 260 days in the year preceding their accident, but they benefit from their time off when the file a comp claim','The result?  They work less, and sometime far less, than 260 days in the year preceding their accident, but they benefit from their time off when the file a comp claim.  And if they do file that claim, you’re going to pay for those 260 full days anyway when the AWW is calculated unless you take steps to defend yourself. ','They work less, and sometime far less, than 260 days in the year preceding their accident, but they benefit from their time off when the file a comp claim.  And if they do file that claim, you’re going to pay for those 260 full days anyway when the AWW is calculated unless you take steps to defend yourself.  The opposite is true for the worker who manages to put in more than his or her 260 days, they actually lose credit for those days using a multiple calculation.  Let’s look at a common example:',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(537,46480,46478,'claims handling','From a claims handling perspective, the jumping-off point for calculating an AWW is always a C-240','From a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/claims-handling-performance/\">claims handling</a> perspective, the jumping-off point for calculating an AWW is always a C-240','From a claims handling perspective, the jumping-off point for calculating an AWW is always a C-240','From a claims handling perspective, the jumping-off point for calculating an AWW is always a C-240.  This ubiquitous form shows up in nearly every claim before the Board:','From a claims handling perspective, the jumping-off point for calculating an AWW is always a C-240.',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(538,46480,46387,'schedule of a five-day or six-day worker','What the Board can, and oftentimes does, do, is look deeper into the claimant’s wage statement to see if the claimant’s pattern of employment matches the schedule of a five-day or six-day worker','What the Board can, and oftentimes does, do, is look deeper into the claimant’s wage statement to see if the claimant’s pattern of employment matches the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\">schedule of a five-day or six-day worker</a>','What the Board can, and oftentimes does, do, is look deeper into the claimant’s wage statement to see if the claimant’s pattern of employment matches the schedule of a five-day or six-day worker','What the Board can, and oftentimes does, do, is look deeper into the claimant’s wage statement to see if the claimant’s pattern of employment matches the schedule of a five-day or six-day worker.  Usually, and as you might expect, this deeper analysis predominantly gives the claimant a benefit, and the Board has disregarded its own guidelines to grant a 260 multiple to workers who didn’t even come close to their own guidelines. ','What the Board can, and oftentimes does, do, is look deeper into the claimant’s wage statement to see if the claimant’s pattern of employment matches the schedule of a five-day or six-day worker.  Usually, and as you might expect, this deeper analysis predominantly gives the claimant a benefit, and the Board has disregarded its own guidelines to grant a 260 multiple to workers who didn’t even come close to their own guidelines.  <u>New Era Cap</u>, 2007 NY Wrk Comp 80600990 (223 days worked gets a 260 multiple); <u>Matter of Carrier Coach Inc.</u>, 2008 NY Wrk Comp 80702783 (226 days gets a 260 multiple);<u> Norampac Industries</u>, 2014 NY Wrk. Comp. 0605684 (216 days gets a 260 multiple).',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(539,46480,46387,'worker in question','Once the daily wage is established, a “multiple” is selected from among the three available depending upon the “type” of worker in question','Once the daily wage is established, a “multiple” is selected from among the three available depending upon the “type” of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\">worker in question</a>','Once the daily wage is established, a “multiple” is selected from among the three available depending upon the “type” of worker in question','Under WCL § 14, a claimant’s wage is calculated using a “multiple” method of averaging a claimant’s wages by using the wage data provided by the employer/carrier to first determine a claimant’s average daily wage.  Once the daily wage is established, a “multiple” is selected from among the three available depending upon the “type” of worker in question.','Once the daily wage is established, a “multiple” is selected from among the three available depending upon the “type” of worker in question.',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(540,46480,46371,'claimant for some 23 days of work','Employee A is getting an average weekly wage that is premised on an annual income here that is artificially (mathematically) inflated by crediting the claimant for some 23 days of work (and extra $3,396.64)','<em>Employee A is getting an average weekly wage that is premised on an annual income here that is artificially (mathematically) inflated by crediting the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant for some 23 days of work</a> (and extra $3,396.64)','<em>Employee A is getting an average weekly wage that is premised on an annual income here that is artificially (mathematically) inflated by crediting the claimant for some 23 days of work (and extra $3,396.64)','Employee A is getting an average weekly wage that is premised on an annual income here that is artificially (mathematically) inflated by crediting the claimant for some 23 days of work (and extra $3,396.64)  that he simply didn’t perform and he simply didn’t earn. ','<em>Employee A is getting an average weekly wage that is premised on an annual income here that is artificially (mathematically) inflated by crediting the claimant for some 23 days of work (and extra $3,396.64',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(541,46480,46371,'worked by the claimant','Ruling for the carrier on appeal, the Board Panel invoked WCL § 14(3) to institute a “205-day multiple” which just-so happened to be the exact number of days worked by the claimant on her C-240','Ruling for the carrier on appeal, the Board Panel invoked WCL § 14(3) to institute a “205-day multiple” which just-so happened to be the exact number of days <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">worked by the claimant</a> on her C-240','Ruling for the carrier on appeal, the Board Panel invoked WCL § 14(3) to institute a “205-day multiple” which just-so happened to be the exact number of days worked by the claimant on her C-240','On appeal, the carrier argued that the use of a 260 multiple artificially inflated the claimant’s average weekly wage rendering a 260 multiple an “unfair” representation of the claimant’s earnings.  Ruling for the carrier on appeal, the Board Panel invoked WCL § 14(3) to institute a “205-day multiple” which just-so happened to be the exact number of days worked by the claimant on her C-240.  Applying this multiple, then applying the 1/52 provision of WCL § 14(4) resulted in an AWW identical to the AWW obtained by using a 52-week divisor.','Ruling for the carrier on appeal, the Board Panel invoked WCL § 14(3) to institute a “205-day multiple” which just-so happened to be the exact number of days worked by the claimant on her C-240.',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(542,46480,46371,'worked by a claimant','weeks worked by a claimant','weeks <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">worked by a claimant</a>','weeks worked by a claimant','In each of these cases the Board’s analysis turned on the number of five-day, four-day, three-day etc. weeks worked by a claimant.  In Norampac, for example, the Board reported that the claimant’s payroll showed 29 “five-day” weeks, 13 “four-day” weeks and 4 “three-day weeks” while the balance of the payroll was absence due to disability or vacation. ','weeks worked by a claimant.  In <u>Norampac</u>, for example, the Board reported that the claimant’s payroll showed 29 “five-day” weeks, 13 “four-day” weeks and 4 “three-day weeks” while the balance of the payroll was absence due to disability or vacation.  The Board held that “clearly the majority of the weeks worked by the claimant during the year preceding his work accident were five-day weeks” and imposed a 260 multiple.',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(543,46480,46371,'worked by the claimant','The Board held that “clearly the majority of the weeks worked by the claimant during the year preceding his work accident were five-day weeks” and imposed a 260 multiple','The Board held that “clearly the majority of the weeks <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">worked by the claimant</a> during the year preceding his work accident were five-day weeks” and imposed a 260 multiple','The Board held that “clearly the majority of the weeks worked by the claimant during the year preceding his work accident were five-day weeks” and imposed a 260 multiple','In Norampac, for example, the Board reported that the claimant’s payroll showed 29 “five-day” weeks, 13 “four-day” weeks and 4 “three-day weeks” while the balance of the payroll was absence due to disability or vacation.  The Board held that “clearly the majority of the weeks worked by the claimant during the year preceding his work accident were five-day weeks” and imposed a 260 multiple.','the Board has repeatedly utilized WCL § 14(3) to generate AWWs which, mathematically, match the use of a divisor.  WCL § 14(3) permits the calculation of an AWW “based on the claimant’s previous earnings . . . during the year before the injury”  if the use of a multiple “cannot be fairly applied.”  For example, in <u>Waterfront Health Care</u> <u>Center</u>, 2014 NY Wrk. Comp. 0601971 the AWW was set, over the carrier’s objection, using a 260 multiple.  On appeal, the carrier argued that the use of a 260 multiple artificially inflated the claimant’s average weekly wage rendering a 260 multiple an “unfair” representation of the claimant’s earnings.  Ruling for the carrier on appeal, the Board Panel invoked WCL § 14(3) to institute a “205-day multiple” which just-so happened to be the exact number of days worked by the claimant on her C-240.  Applying this multiple',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(544,46480,46371,'claimant a benefit','Usually, and as you might expect, this deeper analysis predominantly gives the claimant a benefit, and the Board has disregarded its own guidelines to grant a 260 multiple to workers who didn’t even come close to their own guidelines','Usually, and as you might expect, this deeper analysis predominantly gives the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant a benefit</a>, and the Board has disregarded its own guidelines to grant a 260 multiple to workers who didn’t even come close to their own guidelines','Usually, and as you might expect, this deeper analysis predominantly gives the claimant a benefit, and the Board has disregarded its own guidelines to grant a 260 multiple to workers who didn’t even come close to their own guidelines','What the Board can, and oftentimes does, do, is look deeper into the claimant’s wage statement to see if the claimant’s pattern of employment matches the schedule of a five-day or six-day worker.  Usually, and as you might expect, this deeper analysis predominantly gives the claimant a benefit, and the Board has disregarded its own guidelines to grant a 260 multiple to workers who didn’t even come close to their own guidelines.  New Era Cap, 2007 NY Wrk Comp 80600990 (223 days worked gets a 260 multiple); Matter of Carrier Coach Inc., 2008 NY Wrk Comp 80702783 (226 days gets a 260 multiple); Norampac Industries, 2014 NY Wrk.','Usually, and as you might expect, this deeper analysis predominantly gives the claimant a benefit, and the Board has disregarded its own guidelines to grant a 260 multiple to workers who didn’t even come close to their own guidelines.',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(545,46480,46371,'claimant work','Out of the 52 weeks preceding his injury, the claimant work four-days a week for 36 weeks; six-days a week for 8 weeks; five-days a week for 4 weeks; three days a week for 2 weeks; two-days a week for 1 week; and 0 days for 1 week','Out of the 52 weeks preceding his injury, the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant work</a> four-days a week for 36 weeks; six-days a week for 8 weeks; five-days a week for 4 weeks; three days a week for 2 weeks; two-days a week for 1 week; and 0 days for 1 week','Out of the 52 weeks preceding his injury, the claimant work four-days a week for 36 weeks; six-days a week for 8 weeks; five-days a week for 4 weeks; three days a week for 2 weeks; two-days a week for 1 week; and 0 days for 1 week','The C-240 filed indicated that the claimant was a four-day a week hourly worker. Out of the 52 weeks preceding his injury, the claimant work four-days a week for 36 weeks; six-days a week for 8 weeks; five-days a week for 4 weeks; three days a week for 2 weeks; two-days a week for 1 week; and 0 days for 1 week. The gross amount paid to the claimant was $28,782.88.','Out of the 52 weeks preceding his injury, the claimant work four-days a week for 36 weeks; six-days a week for 8 weeks; five-days a week for 4 weeks; three days a week for 2 weeks; two-days a week for 1 week; and 0 days for 1 week.',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(546,46480,46370,'comp claim','They work less, and sometime far less, than 260 days in the year preceding their accident, but they benefit from their time off when the file a comp claim','They work less, and sometime far less, than 260 days in the year preceding their accident, but they benefit from their time off when the file a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/02/occupational-disease-claims-after-matter-of-pinnacle-industries-ii-llc-2019-ny-wrk-comp-g2020587/\">comp claim</a>','They work less, and sometime far less, than 260 days in the year preceding their accident, but they benefit from their time off when the file a comp claim','The result?  They work less, and sometime far less, than 260 days in the year preceding their accident, but they benefit from their time off when the file a comp claim.  And if they do file that claim, you’re going to pay for those 260 full days anyway when the AWW is calculated unless you take steps to defend yourself. ','They work less, and sometime far less, than 260 days in the year preceding their accident, but they benefit from their time off when the file a comp claim.  And if they do file that claim, you’re going to pay for those 260 full days anyway when the AWW is calculated unless you take steps to defend yourself.  The opposite is true for the worker who manages to put in more than his or her 260 days, they actually lose credit for those days using a multiple calculation.  Let’s look at a common example:',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(547,46480,46350,'accident she worked','Employee A, a five-day worker, is injured on the job, and in the 52 weeks preceding the accident she worked 237 days and earned $35,000.00','Employee A, a five-day worker, is injured on the job, and in the 52 weeks preceding the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">accident she worked</a> 237 days and earned $35,000.00','Employee A, a five-day worker, is injured on the job, and in the 52 weeks preceding the accident she worked 237 days and earned $35,000.00','Employee A, a five-day worker, is injured on the job, and in the 52 weeks preceding the accident she worked 237 days and earned $35,000.00.  To use a 260 multiple, we would first calculate a daily wage ($35K/237 days) which is $147.68. ','Employee A, a five-day worker, is injured on the job, and in the 52 weeks preceding the accident she worked 237 days and earned $35,000.00.',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(548,46480,46374,'claimant for some 23 days','Employee A is getting an average weekly wage that is premised on an annual income here that is artificially (mathematically) inflated by crediting the claimant for some 23 days of work (and extra $3,396.64)','<em>Employee A is getting an average weekly wage that is premised on an annual income here that is artificially (mathematically) inflated by crediting the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claimant for some 23 days</a> of work (and extra $3,396.64)','<em>Employee A is getting an average weekly wage that is premised on an annual income here that is artificially (mathematically) inflated by crediting the claimant for some 23 days of work (and extra $3,396.64)','Employee A is getting an average weekly wage that is premised on an annual income here that is artificially (mathematically) inflated by crediting the claimant for some 23 days of work (and extra $3,396.64)  that he simply didn’t perform and he simply didn’t earn. ','<em>Employee A is getting an average weekly wage that is premised on an annual income here that is artificially (mathematically) inflated by crediting the claimant for some 23 days of work (and extra $3,396.64',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(549,46480,46511,'reference for guiding employers and carriers','Many of you might jump to form C-240, which carries a nifty reference for guiding employers and carriers about which method of calculation they should use:','Many of you might jump to form C-240, which carries a nifty <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">reference for guiding employers and carriers</a> about which method of calculation they should use:','Many of you might jump to form C-240, which carries a nifty reference for guiding employers and carriers about which method of calculation they should use:','Many of you might jump to form C-240, which carries a nifty reference for guiding employers and carriers about which method of calculation they should use:','Many of you might jump to form C-240, which carries a nifty reference for guiding employers and carriers about which method of calculation they should use',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(550,46480,46546,'employers and carriers','Many of you might jump to form C-240, which carries a nifty reference for guiding employers and carriers about which method of calculation they should use:','Many of you might jump to form C-240, which carries a nifty reference for guiding <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">employers and carriers</a> about which method of calculation they should use:','Many of you might jump to form C-240, which carries a nifty reference for guiding employers and carriers about which method of calculation they should use:','Many of you might jump to form C-240, which carries a nifty reference for guiding employers and carriers about which method of calculation they should use:','Many of you might jump to form C-240, which carries a nifty reference for guiding employers and carriers about which method of calculation they should use',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(551,46480,46236,'case law; but as with so much case law','The threshold of 234 days for a 5-day worker is not a creature of statute, and the best we can say is that it is a guideline followed by Board case law; but as with so much case law published by the Board, there is little pattern to their application of these “instructional” figures','The threshold of 234 days for a 5-day worker is not a creature of statute, and the best we can say is that it is a guideline followed by Board <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/client-resources/case-law-updates-lomad-case-law-updates/\">case law; but as with so much case law</a> published by the Board, there is little pattern to their application of these “instructional” figures','The threshold of 234 days for a 5-day worker is not a creature of statute, and the best we can say is that it is a guideline followed by Board case law; but as with so much case law published by the Board, there is little pattern to their application of these “instructional” figures','Neither the WCL, nor the entire Code of Rules and Regulations make any reference to any of the figures or guideposts.  The threshold of 234 days for a 5-day worker is not a creature of statute, and the best we can say is that it is a guideline followed by Board case law; but as with so much case law published by the Board, there is little pattern to their application of these “instructional” figures.  See Matter of New Era Cap, 2007 NY','there is some legal basis for these “instructions.”  Neither the WCL, nor the entire Code of Rules and Regulations make any reference to any of the figures or guideposts.  The threshold of 234 days for a 5-day worker is not a creature of statute, and the best we can say is that it is a guideline followed by Board case law; but as with so much case law published by the Board, there is little pattern to their application of these “instructional” figures.',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(552,46480,46236,'case law','Okay, so that’s admittedly a lot of case law, and you’re eyes might be glazing over; but don’t leave yet','Okay, so that’s admittedly a lot of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/client-resources/case-law-updates-lomad-case-law-updates/\">case law</a>, and you’re eyes might be glazing over; but don’t leave yet','Okay, so that’s admittedly a lot of case law, and you’re eyes might be glazing over; but don’t leave yet','Okay, so that’s admittedly a lot of case law, and you’re eyes might be glazing over; but don’t leave yet.  All that law was cited to illustrate the point that AWW is an issue literally chocked-full of exceptions, unique circumstances and oftentimes contradictory results. ','Okay, so that’s admittedly a lot of case law, and you’re eyes might be glazing over; but don’t leave yet.',0,'2022-04-05 01:07:05','2022-04-05 01:07:05'),(553,46378,46511,'employer or carrier','In 12 NYCRR 300.22(f)(2), the significant change is that if a payor is not making payments in a situation where payments would otherwise be due but for a credit or an overpayment on the file, the payor must indicate on the SROI, “the amount of such total amount claimed and the amount credited by the carrier, special fund or third-party administrator from the payment due.” Hence, where an employer or carrier takes the position that it has an overpayment on the file the SROI which relieves it of an otherwise ongoing obligation to make payments, the SROI must now indicate the amount of the overpayment and how much is being credited against the payment that is otherwise due','In 12 NYCRR 300.22(f)(2), the significant change is that if a payor is not making payments in a situation where payments would otherwise be due but for a credit or an overpayment on the file, the payor must indicate on the SROI, “the amount of such total amount claimed and the amount credited by the carrier, special fund or third-party administrator from the payment due.” Hence, where an <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">employer or carrier</a> takes the position that it has an overpayment on the file the SROI which relieves it of an otherwise ongoing obligation to make payments, the SROI must now indicate the amount of the overpayment and how much is being credited against the payment that is otherwise due','In 12 NYCRR 300.22(f)(2), the significant change is that if a payor is not making payments in a situation where payments would otherwise be due but for a credit or an overpayment on the file, the payor must indicate on the SROI, “the amount of such total amount claimed and the amount credited by the carrier, special fund or third-party administrator from the payment due.” Hence, where an employer or carrier takes the position that it has an overpayment on the file the SROI which relieves it of an otherwise ongoing obligation to make payments, the SROI must now indicate the amount of the overpayment and how much is being credited against the payment that is otherwise due','In 12 NYCRR 300.22(f)(2), the significant change is that if a payor is not making payments in a situation where payments would otherwise be due but for a credit or an overpayment on the file, the payor must indicate on the SROI, “the amount of such total amount claimed and the amount credited by the carrier, special fund or third-party administrator from the payment due.” Hence, where an employer or carrier takes the position that it has an overpayment on the file the SROI which relieves it of an otherwise ongoing obligation to make payments, the SROI must now indicate the amount of the overpayment and how much is being credited against the payment that is otherwise due.','In 12 NYCRR 300.22(f)(2), the significant change is that if a payor is not making payments in a situation where payments would otherwise be due but for a credit or an overpayment on the file, the payor must indicate on the SROI, “the amount of such total amount claimed and the amount credited by the carrier, special fund or third-party administrator from the payment due.” Hence, where an employer or carrier takes the position that it has an overpayment on the file the SROI which relieves it of an otherwise ongoing obligation to make payments, the SROI must now indicate the amount of the overpayment and how much is being credited against the payment that is otherwise due.',0,'2022-04-05 01:45:53','2022-04-05 01:45:53'),(554,46378,46546,'employer or carrier','In 12 NYCRR 300.22(f)(2), the significant change is that if a payor is not making payments in a situation where payments would otherwise be due but for a credit or an overpayment on the file, the payor must indicate on the SROI, “the amount of such total amount claimed and the amount credited by the carrier, special fund or third-party administrator from the payment due.” Hence, where an employer or carrier takes the position that it has an overpayment on the file the SROI which relieves it of an otherwise ongoing obligation to make payments, the SROI must now indicate the amount of the overpayment and how much is being credited against the payment that is otherwise due','In 12 NYCRR 300.22(f)(2), the significant change is that if a payor is not making payments in a situation where payments would otherwise be due but for a credit or an overpayment on the file, the payor must indicate on the SROI, “the amount of such total amount claimed and the amount credited by the carrier, special fund or third-party administrator from the payment due.” Hence, where an <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">employer or carrier</a> takes the position that it has an overpayment on the file the SROI which relieves it of an otherwise ongoing obligation to make payments, the SROI must now indicate the amount of the overpayment and how much is being credited against the payment that is otherwise due','In 12 NYCRR 300.22(f)(2), the significant change is that if a payor is not making payments in a situation where payments would otherwise be due but for a credit or an overpayment on the file, the payor must indicate on the SROI, “the amount of such total amount claimed and the amount credited by the carrier, special fund or third-party administrator from the payment due.” Hence, where an employer or carrier takes the position that it has an overpayment on the file the SROI which relieves it of an otherwise ongoing obligation to make payments, the SROI must now indicate the amount of the overpayment and how much is being credited against the payment that is otherwise due','In 12 NYCRR 300.22(f)(2), the significant change is that if a payor is not making payments in a situation where payments would otherwise be due but for a credit or an overpayment on the file, the payor must indicate on the SROI, “the amount of such total amount claimed and the amount credited by the carrier, special fund or third-party administrator from the payment due.” Hence, where an employer or carrier takes the position that it has an overpayment on the file the SROI which relieves it of an otherwise ongoing obligation to make payments, the SROI must now indicate the amount of the overpayment and how much is being credited against the payment that is otherwise due.','In 12 NYCRR 300.22(f)(2), the significant change is that if a payor is not making payments in a situation where payments would otherwise be due but for a credit or an overpayment on the file, the payor must indicate on the SROI, “the amount of such total amount claimed and the amount credited by the carrier, special fund or third-party administrator from the payment due.” Hence, where an employer or carrier takes the position that it has an overpayment on the file the SROI which relieves it of an otherwise ongoing obligation to make payments, the SROI must now indicate the amount of the overpayment and how much is being credited against the payment that is otherwise due.',0,'2022-04-05 01:45:53','2022-04-05 01:45:53'),(555,46378,46340,'medical care and wages pain','As was the case before the changes, the reports must include compensation payments, payments for medical care and wages pain instead of compensation where the claim is not disputed','As was the case before the changes, the reports must include compensation payments, payments for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\">medical care and wages pain</a> instead of compensation where the claim is not disputed','As was the case before the changes, the reports must include compensation payments, payments for medical care and wages pain instead of compensation where the claim is not disputed','The second substantial change to §300.22 addresses summary reports of payments. As was the case before the changes, the reports must include compensation payments, payments for medical care and wages pain instead of compensation where the claim is not disputed.','As was the case before the changes, the reports must include compensation payments, payments for medical care and wages pain instead of compensation where the claim is not disputed.',0,'2022-04-05 01:45:53','2022-04-05 01:45:53'),(556,46378,46502,'medical care and wages pain','As was the case before the changes, the reports must include compensation payments, payments for medical care and wages pain instead of compensation where the claim is not disputed','As was the case before the changes, the reports must include compensation payments, payments for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">medical care and wages pain</a> instead of compensation where the claim is not disputed','As was the case before the changes, the reports must include compensation payments, payments for medical care and wages pain instead of compensation where the claim is not disputed','The second substantial change to §300.22 addresses summary reports of payments. As was the case before the changes, the reports must include compensation payments, payments for medical care and wages pain instead of compensation where the claim is not disputed.','As was the case before the changes, the reports must include compensation payments, payments for medical care and wages pain instead of compensation where the claim is not disputed.',0,'2022-04-05 01:45:53','2022-04-05 01:45:53'),(557,46378,46506,'medical care','As was the case before the changes, the reports must include compensation payments, payments for medical care and wages pain instead of compensation where the claim is not disputed','As was the case before the changes, the reports must include compensation payments, payments for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">medical care</a> and wages pain instead of compensation where the claim is not disputed','As was the case before the changes, the reports must include compensation payments, payments for medical care and wages pain instead of compensation where the claim is not disputed','The second substantial change to §300.22 addresses summary reports of payments. As was the case before the changes, the reports must include compensation payments, payments for medical care and wages pain instead of compensation where the claim is not disputed.','As was the case before the changes, the reports must include compensation payments, payments for medical care and wages pain instead of compensation where the claim is not disputed.',0,'2022-04-05 01:45:53','2022-04-05 01:45:53'),(558,46378,46553,'alleged overpayment of benefits to the claimant','In the event that the carrier, self-insured employer or third-party-administrator seeks to recover for an alleged overpayment of benefits to the claimant, such carrier, self-insured employer or third-party administrator must file notice to the Board in the format prescribed by the Chair that identifies the amount of such overpayment','In the event that the carrier, self-insured employer or third-party-administrator seeks to recover for an <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">alleged overpayment of benefits to the claimant</a>, such carrier, self-insured employer or third-party administrator must file notice to the Board in the format prescribed by the Chair that identifies the amount of such overpayment','In the event that the carrier, self-insured employer or third-party-administrator seeks to recover for an alleged overpayment of benefits to the claimant, such carrier, self-insured employer or third-party administrator must file notice to the Board in the format prescribed by the Chair that identifies the amount of such overpayment','In the event that the carrier, self-insured employer or third-party-administrator seeks to recover for an alleged overpayment of benefits to the claimant, such carrier, self-insured employer or third-party administrator must file notice to the Board in the format prescribed by the Chair that identifies the amount of such overpayment. Such prescribed notice shall be due as follows:','In the event that the carrier, self-insured employer or third-party-administrator seeks to recover for an alleged overpayment of benefits to the claimant, such carrier, self-insured employer or third-party administrator must file notice to the Board in the format prescribed by the Chair that identifies the amount of such overpayment.',0,'2022-04-05 01:45:53','2022-04-05 01:45:53'),(559,46378,46371,'benefits to the claimant','In the event that the carrier, self-insured employer or third-party-administrator seeks to recover for an alleged overpayment of benefits to the claimant, such carrier, self-insured employer or third-party administrator must file notice to the Board in the format prescribed by the Chair that identifies the amount of such overpayment','In the event that the carrier, self-insured employer or third-party-administrator seeks to recover for an alleged overpayment of <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">benefits to the claimant</a>, such carrier, self-insured employer or third-party administrator must file notice to the Board in the format prescribed by the Chair that identifies the amount of such overpayment','In the event that the carrier, self-insured employer or third-party-administrator seeks to recover for an alleged overpayment of benefits to the claimant, such carrier, self-insured employer or third-party administrator must file notice to the Board in the format prescribed by the Chair that identifies the amount of such overpayment','In the event that the carrier, self-insured employer or third-party-administrator seeks to recover for an alleged overpayment of benefits to the claimant, such carrier, self-insured employer or third-party administrator must file notice to the Board in the format prescribed by the Chair that identifies the amount of such overpayment. Such prescribed notice shall be due as follows:','In the event that the carrier, self-insured employer or third-party-administrator seeks to recover for an alleged overpayment of benefits to the claimant, such carrier, self-insured employer or third-party administrator must file notice to the Board in the format prescribed by the Chair that identifies the amount of such overpayment.',0,'2022-04-05 01:45:53','2022-04-05 01:45:53'),(560,46378,46374,'days prior to the hearing','If a payor is going to be requesting a recovery at a hearing, the notice identifying the amount of the overpayment must be filed at least 10 days prior to the hearing','If a payor is going to be requesting a recovery at a hearing, the notice identifying the amount of the overpayment must be filed at least 10 <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">days prior to the hearing</a>','If a payor is going to be requesting a recovery at a hearing, the notice identifying the amount of the overpayment must be filed at least 10 days prior to the hearing','If a payor is going to be requesting a recovery at a hearing, the notice identifying the amount of the overpayment must be filed at least 10 days prior to the hearing. Judges are directed not to address overpayments if the requisite notice is not filed at least 10 days prior to the hearing.','If a payor is going to be requesting a recovery at a hearing, the notice identifying the amount of the overpayment must be filed at least 10 days prior to the hearing. Judges are directed not to address overpayments if the requisite notice is not filed at least 10 days prior to the hearing.',0,'2022-04-05 01:45:53','2022-04-05 01:45:53'),(561,46378,46374,'days prior to the hearing','Judges are directed not to address overpayments if the requisite notice is not filed at least 10 days prior to the hearing','Judges are directed not to address overpayments if the requisite notice is not filed at least 10 <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">days prior to the hearing</a>','Judges are directed not to address overpayments if the requisite notice is not filed at least 10 days prior to the hearing','If a payor is going to be requesting a recovery at a hearing, the notice identifying the amount of the overpayment must be filed at least 10 days prior to the hearing. Judges are directed not to address overpayments if the requisite notice is not filed at least 10 days prior to the hearing.','Judges are directed not to address overpayments if the requisite notice is not filed at least 10 days prior to the hearing.',0,'2022-04-05 01:45:53','2022-04-05 01:45:53'),(562,46089,46371,'claimant was working','The claimant was working at a laundromat, but claimed that she was not getting paid and was just in training','The <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant was working</a> at a laundromat, but claimed that she was not getting paid and was just in training','The claimant was working at a laundromat, but claimed that she was not getting paid and was just in training','Our firm was tapped into the case late and there were some issues with the prior litigation. The claimant was working at a laundromat, but claimed that she was not getting paid and was just in training. We had surveillance that helped with that issue but the Board lost the digital audio recording of the claimant’s testimony.','the case late and there were some issues with the prior litigation. The claimant was working at a laundromat, but claimed that she was not getting paid and was just in training. We had surveillance that helped with that issue but the Board lost the digital audio recording of the claimant’s testimony. So, the claimant essentially got a redo of her testimony after she had already seen all our evidence. She was thus able to change her testimony and tailor it to our proofs. Where we were able to focus was the claimant’s assertion that she was not paid until AFTER we raised fraud and she disclosed her work-activity because she was training',0,'2022-04-05 01:45:54','2022-04-05 01:45:54'),(569,46421,46371,'work –','Oh no, an employee just walked under a ladder at work – and well, it fell on him','Oh no, an employee just walked under a ladder at <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">work –</a> and well, it fell on him','Oh no, an employee just walked under a ladder at work – and well, it fell on him','Oh no, an employee just walked under a ladder at work – and well, it fell on him. Looks like his bad luck did not waste any time coming.','Oh no, an employee just walked under a ladder at work – and well, it fell on him.',0,'2022-04-05 01:45:56','2022-04-05 01:45:56'),(570,46421,46371,'work –','This time, you see her walking while on your way to the parking lot after work – 17 days after ceasing payments on a Workers’ Compensation claim','This time, you see her walking while on your way to the parking lot after <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">work –</a> <em>17 days</em> after ceasing payments on a Workers’ Compensation claim','This time, you see her walking while on your way to the parking lot after work – <em>17 days</em> after ceasing payments on a Workers’ Compensation claim','That black cat from way back when is still running around causing all kinds of bad luck shenanigans (she has exceptional cardio). This time, you see her walking while on your way to the parking lot after work – 17 days after ceasing payments on a Workers’ Compensation claim. That cat has a crooked smile, and here’s why: WCL § 25(1)(d) requires a carrier who ceases payments on a claim for any reason to file with the Board a SROI announcing this action within 16 days.','This time, you see her walking while on your way to the parking lot after work – <em>17 days</em> after ceasing payments on a Workers’ Compensation claim. That cat has a crooked smile, and here’s why: WCL § 25(1)(d) requires a carrier who ceases payments on a claim',0,'2022-04-05 01:45:56','2022-04-05 01:45:56'),(571,46421,46350,'work to report said injury to his employer','This section of the WCL statute places a burden on an employee who sustains an injury at work to report said injury to his employer within 30 days of its occurrence','This section of the WCL statute places a burden on an employee who sustains an injury at <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">work to report said injury to his employer</a> <strong><u>within 30 days of its occurrence</u></strong>','This section of the WCL statute places a burden on an employee who sustains an injury at work to report said injury to his employer <strong><u>within 30 days of its occurrence</u></strong>','This employee will now have an impending Workers’ Compensation claim, however, he must comply with WCL § 18. This section of the WCL statute places a burden on an employee who sustains an injury at work to report said injury to his employer within 30 days of its occurrence. Now technically, § 18 requires that this notice be in writing, with certain enumerated requirements.','This employee will now have an impending Workers’ Compensation claim, however, he must comply with WCL § 18. This section of the WCL statute places a burden on an employee who sustains an injury at work to report said injury to his employer <strong><u>within 30 days of its occurrence</u>',0,'2022-04-05 01:45:56','2022-04-05 01:45:56'),(572,46421,46350,'accident occurred,','Unfortunately, that black cat gets the last laugh, because on Day 26 the carrier just lost the ability to raise the defenses that no employee-employer relationship existed, no accident occurred, and the injury did not arise out of and in the course of employment','Unfortunately, that black cat gets the last laugh, because on Day 26 the carrier just lost the ability to raise the defenses that no employee-employer relationship existed, no <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">accident occurred,</a> and the injury did not arise out of and in the course of employment','Unfortunately, that black cat gets the last laugh, because on Day 26 the carrier just lost the ability to raise the defenses that no employee-employer relationship existed, no accident occurred, and the injury did not arise out of and in the course of employment','Pursuant to §25(2)(b), a carrier is required to file a response (aka SROI-04 Notice of Controversy) to a Notice of Indexing with the Board within 25 days of receipt of a Notice of Indexing. Unfortunately, that black cat gets the last laugh, because on Day 26 the carrier just lost the ability to raise the defenses that no employee-employer relationship existed, no accident occurred, and the injury did not arise out of and in the course of employment.','Unfortunately, that black cat gets the last laugh, because on Day 26 the carrier just lost the ability to raise the defenses that no employee-employer relationship existed, no accident occurred, and the injury did not arise out of and in the course of employment.',0,'2022-04-05 01:45:56','2022-04-05 01:45:56'),(573,46421,46343,'notice to his employer','Having already given notice to his employer within 30 days, he must also inform someone else – the Board','Having already given <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/employers-do-not-have-to-prove-prejudice-by-late-notice-but-it-certainly-doesnt-hurt-to-do-so/\">notice to his employer</a> within 30 days, he must also inform someone else – the Board','Having already given notice to his employer within 30 days, he must also inform someone else – the Board','Back to that injured employee with a ladder bruise. Having already given notice to his employer within 30 days, he must also inform someone else – the Board. WCL § 28 requires that all claims for Workers’ Compensation be filed with the Chair of the Board within two years after the date of the accident. ','Having already given notice to his employer within 30 days, he must also inform someone else – the Board. WCL § 28 requires that all claims for Workers’ Compensation be filed with the Chair of the Board',0,'2022-04-05 01:45:56','2022-04-05 01:45:56'),(574,46421,46511,'carrier just lost the ability to raise the defenses','Unfortunately, that black cat gets the last laugh, because on Day 26 the carrier just lost the ability to raise the defenses that no employee-employer relationship existed, no accident occurred, and the injury did not arise out of and in the course of employment','Unfortunately, that black cat gets the last laugh, because on Day 26 the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">carrier just lost the ability to raise the defenses</a> that no employee-employer relationship existed, no accident occurred, and the injury did not arise out of and in the course of employment','Unfortunately, that black cat gets the last laugh, because on Day 26 the carrier just lost the ability to raise the defenses that no employee-employer relationship existed, no accident occurred, and the injury did not arise out of and in the course of employment','Pursuant to §25(2)(b), a carrier is required to file a response (aka SROI-04 Notice of Controversy) to a Notice of Indexing with the Board within 25 days of receipt of a Notice of Indexing. Unfortunately, that black cat gets the last laugh, because on Day 26 the carrier just lost the ability to raise the defenses that no employee-employer relationship existed, no accident occurred, and the injury did not arise out of and in the course of employment.','Unfortunately, that black cat gets the last laugh, because on Day 26 the carrier just lost the ability to raise the defenses that no employee-employer relationship existed, no accident occurred, and the injury did not arise out of and in the course of employment.',0,'2022-04-05 01:45:56','2022-04-05 01:45:56'),(575,46421,46511,'requirement will bar an injured worker from claiming','A failure to comply with this two-year requirement will bar an injured worker from claiming any benefits','A failure to comply with this two-year <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">requirement will bar an injured worker from claiming</a> any benefits','A failure to comply with this two-year requirement will bar an injured worker from claiming any benefits','This injured employee may have dodged his back luck from the ladder if he did not strictly comply with § 18 notice, but he may want to clean up his act dealing with § 28. A failure to comply with this two-year requirement will bar an injured worker from claiming any benefits.','ack to that injured employee with a ladder bruise. Having already given notice to his employer within 30 days, he must also inform someone else – the Board. WCL § 28 requires that all claims for Workers’ Compensation be filed with the Chair of the Board <strong><u>within two years after the date of the accident</u></strong>.  This injured employee may have dodged his back luck from the ladder if he did not strictly comply with § 18 notice, but he may want to clean up his act dealing with § 28. A failure to comply with this two-year requirement will bar an injured worker from claiming any benefits.',0,'2022-04-05 01:45:56','2022-04-05 01:45:56'),(576,46421,46511,'carrier is required','Pursuant to §25(2)(b), a carrier is required to file a response (aka SROI-04 Notice of Controversy) to a Notice of Indexing with the Board within 25 days of receipt of a Notice of Indexing','Pursuant to §25(2)(b), a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">carrier is required</a> to file a response (aka SROI-04 Notice of Controversy) to a Notice of Indexing with the Board <strong><u>within 25 days of receipt of a Notice of Indexing</u></strong>','Pursuant to §25(2)(b), a carrier is required to file a response (aka SROI-04 Notice of Controversy) to a Notice of Indexing with the Board <strong><u>within 25 days of receipt of a Notice of Indexing</u></strong>','Well, I am willing to bet you also crossed paths with an ominous-looking black cat on your way to work that morning, because you just missed your WCL § 25(2)(b) window. Pursuant to §25(2)(b), a carrier is required to file a response (aka SROI-04 Notice of Controversy) to a Notice of Indexing with the Board within 25 days of receipt of a Notice of Indexing. Unfortunately, that black cat gets the last laugh, because on Day 26 the carrier just lost the ability to raise the defenses that no employee-employer relationship existed, no accident occurred, and the injury did not arise out of and in the course of employment.','Pursuant to §25(2)(b), a carrier is required to file a response (aka SROI-04 Notice of Controversy) to a Notice of Indexing with the Board <strong><u>within 25 days of receipt of a Notice of Indexing</u>',0,'2022-04-05 01:45:56','2022-04-05 01:45:56'),(577,46421,46370,'claim to the Board for occupational diseases','Please note, this time constraint is the same to comply with § 28 in the context of making a claim to the Board for occupational diseases','Please note, this time constraint <strong>is the same to comply with § 28</strong> in the context of making a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/02/occupational-disease-claims-after-matter-of-pinnacle-industries-ii-llc-2019-ny-wrk-comp-g2020587/\">claim to the Board for occupational diseases</a>','Please note, this time constraint <strong>is the same to comply with § 28</strong> in the context of making a claim to the Board for occupational diseases','WCL § 45 states that the § 18 notice period is extended to two years after the claimant becomes disable, or after the claimant knew or should have known the disease was due to the nature of the employment, whichever is later. Please note, this time constraint is the same to comply with § 28 in the context of making a claim to the Board for occupational diseases. All of that salt swingin’ protected this employee for an additional 23 months, not bad.','Please note, this time constraint <strong>is the same to comply with § 28</strong> in the context of making a claim to the Board for occupational diseases. All of that salt swingin’ protected this employee for an additional 23 months, not bad.',0,'2022-04-05 01:45:56','2022-04-05 01:45:56'),(578,46421,46370,'claim an occupational disease','Well, unsurprisingly, her back seems to hurt a lot, so she wants to claim an occupational disease','Well, unsurprisingly, her back seems to hurt a lot, so she wants to <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/02/occupational-disease-claims-after-matter-of-pinnacle-industries-ii-llc-2019-ny-wrk-comp-g2020587/\">claim an occupational disease</a>','Well, unsurprisingly, her back seems to hurt a lot, so she wants to claim an occupational disease','She is so superstitious in fact, for years she chucks bags of salt over her shoulder at work in order avoid some bad mojo. Well, unsurprisingly, her back seems to hurt a lot, so she wants to claim an occupational disease. You may be thinking about that 30 day notice requirement, but the WCL handles § 18 notice in a more lax way for occupational diseases.','Well, unsurprisingly, her back seems to hurt a lot, so she wants to claim an occupational disease. You may be thinking about that 30 day notice requirement, but the WCL handles § 18 notice in a more lax way for occupational diseases. WCL § 45 states that the § 18 notice period is extended to <strong><u>two years after the claimant becomes disable, or after the claimant knew or should have known the disease was due to the nature of the employment, whichever is later</u></strong>. Please note, this time constraint <strong>is the same to comply with § 28</strong> in the context of making a claim to the Board for occupational diseases. All of that salt swingin’ protected this employee for an additional 23 months, not bad.',0,'2022-04-05 01:45:56','2022-04-05 01:45:56'),(579,46421,46370,'occupational diseases','You may be thinking about that 30 day notice requirement, but the WCL handles § 18 notice in a more lax way for occupational diseases','You may be thinking about that 30 day notice requirement, but the WCL handles § 18 notice in a more lax way for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/02/occupational-disease-claims-after-matter-of-pinnacle-industries-ii-llc-2019-ny-wrk-comp-g2020587/\">occupational diseases</a>','You may be thinking about that 30 day notice requirement, but the WCL handles § 18 notice in a more lax way for occupational diseases','Well, unsurprisingly, her back seems to hurt a lot, so she wants to claim an occupational disease. You may be thinking about that 30 day notice requirement, but the WCL handles § 18 notice in a more lax way for occupational diseases. WCL § 45 states that the § 18 notice period is extended to two years after the claimant becomes disable, or after the claimant knew or should have known the disease was due to the nature of the employment, whichever is later.','You may be thinking about that 30 day notice requirement, but the WCL handles § 18 notice in a more lax way for occupational diseases. WCL § 45 states that the § 18 notice period is extended to <strong><u>two years after the claimant becomes disable, or after the claimant knew or should have known the disease was due to the nature of the employment, whichever is later</u></strong>. Please note, this time constraint <strong>is the same to comply with § 28</strong> in the context of making a claim to the Board for occupational diseases. All of that salt swingin’ protected this employee for an additional 23 months, not bad.',0,'2022-04-05 01:45:56','2022-04-05 01:45:56'),(580,46421,46348,'occupational disease','Well, unsurprisingly, her back seems to hurt a lot, so she wants to claim an occupational disease','Well, unsurprisingly, her back seems to hurt a lot, so she wants to claim an <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/04/section-44-not-even-a-portion-of-liability-for-the-occupational-disease/\">occupational disease</a>','Well, unsurprisingly, her back seems to hurt a lot, so she wants to claim an occupational disease','She is so superstitious in fact, for years she chucks bags of salt over her shoulder at work in order avoid some bad mojo. Well, unsurprisingly, her back seems to hurt a lot, so she wants to claim an occupational disease. You may be thinking about that 30 day notice requirement, but the WCL handles § 18 notice in a more lax way for occupational diseases.','Well, unsurprisingly, her back seems to hurt a lot, so she wants to claim an occupational disease. You may be thinking about that 30 day notice requirement, but the WCL handles § 18 notice in a more lax way for occupational diseases. WCL § 45 states that the § 18 notice period is extended to <strong><u>two years after the claimant becomes disable, or after the claimant knew or should have known the disease was due to the nature of the employment, whichever is later</u></strong>. Please note, this time constraint <strong>is the same to comply with § 28</strong> in the context of making a claim to the Board for occupational diseases. All of that salt swingin’ protected this employee for an additional 23 months, not bad.',0,'2022-04-05 01:45:56','2022-04-05 01:45:56'),(581,46421,46348,'occupational diseases','You may be thinking about that 30 day notice requirement, but the WCL handles § 18 notice in a more lax way for occupational diseases','You may be thinking about that 30 day notice requirement, but the WCL handles § 18 notice in a more lax way for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/04/section-44-not-even-a-portion-of-liability-for-the-occupational-disease/\">occupational diseases</a>','You may be thinking about that 30 day notice requirement, but the WCL handles § 18 notice in a more lax way for occupational diseases','Well, unsurprisingly, her back seems to hurt a lot, so she wants to claim an occupational disease. You may be thinking about that 30 day notice requirement, but the WCL handles § 18 notice in a more lax way for occupational diseases. WCL § 45 states that the § 18 notice period is extended to two years after the claimant becomes disable, or after the claimant knew or should have known the disease was due to the nature of the employment, whichever is later.','You may be thinking about that 30 day notice requirement, but the WCL handles § 18 notice in a more lax way for occupational diseases. WCL § 45 states that the § 18 notice period is extended to <strong><u>two years after the claimant becomes disable, or after the claimant knew or should have known the disease was due to the nature of the employment, whichever is later</u></strong>. Please note, this time constraint <strong>is the same to comply with § 28</strong> in the context of making a claim to the Board for occupational diseases. All of that salt swingin’ protected this employee for an additional 23 months, not bad.',0,'2022-04-05 01:45:56','2022-04-05 01:45:56'),(582,46421,46348,'occupational diseases','Please note, this time constraint is the same to comply with § 28 in the context of making a claim to the Board for occupational diseases','Please note, this time constraint <strong>is the same to comply with § 28</strong> in the context of making a claim to the Board for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/04/section-44-not-even-a-portion-of-liability-for-the-occupational-disease/\">occupational diseases</a>','Please note, this time constraint <strong>is the same to comply with § 28</strong> in the context of making a claim to the Board for occupational diseases','WCL § 45 states that the § 18 notice period is extended to two years after the claimant becomes disable, or after the claimant knew or should have known the disease was due to the nature of the employment, whichever is later. Please note, this time constraint is the same to comply with § 28 in the context of making a claim to the Board for occupational diseases. All of that salt swingin’ protected this employee for an additional 23 months, not bad.','Please note, this time constraint <strong>is the same to comply with § 28</strong> in the context of making a claim to the Board for occupational diseases. All of that salt swingin’ protected this employee for an additional 23 months, not bad.',0,'2022-04-05 01:45:56','2022-04-05 01:45:56'),(583,46421,46553,'claimant becomes disable,','WCL § 45 states that the § 18 notice period is extended to two years after the claimant becomes disable, or after the claimant knew or should have known the disease was due to the nature of the employment, whichever is later','WCL § 45 states that the § 18 notice period is extended to <strong><u>two years after the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">claimant becomes disable,</a> or after the claimant knew or should have known the disease was due to the nature of the employment, whichever is later</u></strong>','WCL § 45 states that the § 18 notice period is extended to <strong><u>two years after the claimant becomes disable, or after the claimant knew or should have known the disease was due to the nature of the employment, whichever is later</u></strong>','You may be thinking about that 30 day notice requirement, but the WCL handles § 18 notice in a more lax way for occupational diseases. WCL § 45 states that the § 18 notice period is extended to two years after the claimant becomes disable, or after the claimant knew or should have known the disease was due to the nature of the employment, whichever is later. Please note, this time constraint is the same to comply with § 28 in the context of making a claim to the Board for occupational diseases.','WCL handles § 18 notice in a more lax way for occupational diseases. WCL § 45 states that the § 18 notice period is extended to <strong><u>two years after the claimant becomes disable, or after the claimant knew or should have known the disease was due to the nature of the employment, whichever is later</u>',0,'2022-04-05 01:45:56','2022-04-05 01:45:56'),(584,46421,46541,'carrier receives a Notice of Indexing for a case','Now, when a carrier receives a Notice of Indexing for a case it has accepted, it must file a FROI-00 and a SROI-IP (if payments have already been made)','Now, when a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\">carrier receives a Notice of Indexing for a case</a> it has accepted, it must file a FROI-00 and a SROI-IP (if payments have already been made)','Now, when a carrier receives a Notice of Indexing for a case it has accepted, it must file a FROI-00 and a SROI-IP (if payments have already been made)','However, here we are, in the world with eClaims, short one expensive mirror, and the carrier is now responsible for a few more filings. Now, when a carrier receives a Notice of Indexing for a case it has accepted, it must file a FROI-00 and a SROI-IP (if payments have already been made). These filings are to be made on or before the 18th day after the disability event, or within 10 days after the employer has knowledge of the event, whichever period is greater.','now responsible for a few more filings. Now, when a carrier receives a Notice of Indexing for a case it has accepted, it must file a FROI-00 and a SROI-IP (if payments have already been made). These filings are to be made',0,'2022-04-05 01:45:56','2022-04-05 01:45:56'),(585,46421,46541,'carrier is required to file','Pursuant to §25(2)(b), a carrier is required to file a response (aka SROI-04 Notice of Controversy) to a Notice of Indexing with the Board within 25 days of receipt of a Notice of Indexing','Pursuant to §25(2)(b), a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\">carrier is required to file</a> a response (aka SROI-04 Notice of Controversy) to a Notice of Indexing with the Board <strong><u>within 25 days of receipt of a Notice of Indexing</u></strong>','Pursuant to §25(2)(b), a carrier is required to file a response (aka SROI-04 Notice of Controversy) to a Notice of Indexing with the Board <strong><u>within 25 days of receipt of a Notice of Indexing</u></strong>','Well, I am willing to bet you also crossed paths with an ominous-looking black cat on your way to work that morning, because you just missed your WCL § 25(2)(b) window. Pursuant to §25(2)(b), a carrier is required to file a response (aka SROI-04 Notice of Controversy) to a Notice of Indexing with the Board within 25 days of receipt of a Notice of Indexing. Unfortunately, that black cat gets the last laugh, because on Day 26 the carrier just lost the ability to raise the defenses that no employee-employer relationship existed, no accident occurred, and the injury did not arise out of and in the course of employment.','Pursuant to §25(2)(b), a carrier is required to file a response (aka SROI-04 Notice of Controversy) to a Notice of Indexing with the Board <strong><u>within 25 days of receipt of a Notice of Indexing</u>',0,'2022-04-05 01:45:56','2022-04-05 01:45:56'),(586,46421,46374,'claimant during the preceding 180 days','The SROI-SA must include summary of all payments made to a claimant during the preceding 180 days','The SROI-SA must include summary of all payments made to a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claimant during the preceding 180 days</a>','The SROI-SA must include summary of all payments made to a claimant during the preceding 180 days','These reports are due 180 days from the date of accident (or date of FROI filing where date of accident is partial or unknown); and then every 180 thereafter. The SROI-SA must include summary of all payments made to a claimant during the preceding 180 days. I’m thinking the broken mirror belonged to the Chair of the Board .','ther to figure out who broke a mirror. Someone must of, because the Board has rolled out a brand new filing requirement as part of its eClaims system – SROI-SA. This filing is a new sub-annual report, pursuant to 12 NYCRR §300.22(f)(3), which is due on all open cases, or closed cases with continuing indemnity payments. These reports are <strong><u>due 180 days from the date of accident </u></strong>(or date of FROI filing where date of accident is partial or unknown); and <strong><u>then every 180 thereafter</u></strong>. The SROI-SA must include summary of all payments made to a claimant during the preceding 180 days. I’m thinking the broken mirror belonged to the Chair of the Board . . . .',0,'2022-04-05 01:45:56','2022-04-05 01:45:56'),(587,46421,46546,'carrier who ceases payments on a claim','That cat has a crooked smile, and here’s why: WCL § 25(1)(d) requires a carrier who ceases payments on a claim for any reason to file with the Board a SROI announcing this action within 16 days','That cat has a crooked smile, and here’s why: WCL § 25(1)(d) requires a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">carrier who ceases payments on a claim</a> for any reason to file with the Board a SROI announcing this action <strong><u>within 16 days</u></strong>','That cat has a crooked smile, and here’s why: WCL § 25(1)(d) requires a carrier who ceases payments on a claim for any reason to file with the Board a SROI announcing this action <strong><u>within 16 days</u></strong>','This time, you see her walking while on your way to the parking lot after work – 17 days after ceasing payments on a Workers’ Compensation claim. That cat has a crooked smile, and here’s why: WCL § 25(1)(d) requires a carrier who ceases payments on a claim for any reason to file with the Board a SROI announcing this action within 16 days. When you get back into work on that 18th day, you won’t see the black cat, but rather a penalty from the Board in the amount of $300.','That black cat from way back when is still running around causing all kinds of bad luck shenanigans (she has exceptional cardio). This time, you see her walking while on your way to the parking lot after work – <em>17 days</em> after ceasing payments on a Workers’ Compensation claim. That cat has a crooked smile, and here’s why: WCL § 25(1)(d) requires a carrier who ceases payments on a claim for any reason to file with the Board a SROI announcing this action <strong><u>within 16 days</u>',0,'2022-04-05 01:45:56','2022-04-05 01:45:56'),(588,46450,46371,'claimant testified that the he did not refuse work','“Here, contrary to the statement by the employer, the claimant testified that the he did not refuse work','<em>“Here, contrary to the statement by the employer, the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant testified that the he did not refuse work</a>','<em>“Here, contrary to the statement by the employer, the claimant testified that the he did not refuse work','The WCLJ found the claimant did not self-limit but the Board reversed:  “Here, contrary to the statement by the employer, the claimant testified that the he did not refuse work. However, the claimant also indicated that through his employment he “probably wouldn’t have” exceeded the $10,000.00 Social Security threshold.','<em>“Here, contrary to the statement by the employer, the claimant testified that the he did not refuse work. However, the claimant also indicated that through his employment he “probably wouldn’t have” exceeded the $10,000.00 Social Security threshold. As such, the Board Panel finds that while the claimant may not have refused work, he cannot under these circumstances be characterized as fully available for the employment in question.”</em>',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(589,46450,46371,'claimant was not fully available for more work','The Board Panel agreed with the WCLJ that the claimant was not fully available for more work and that the 200-multiple minimum did not apply:','The Board Panel agreed with the WCLJ that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant was not fully available for more work</a> and that the 200-multiple minimum did not apply:','The Board Panel agreed with the WCLJ that the claimant was not fully available for more work and that the 200-multiple minimum did not apply:','was scheduled to work and had an unexpected emergency or sick call, I would work additional shifts to fill in.” The claimant denied self-limiting her hour, but on cross she conceded that when she applied for her job she specifically sough only per diem work but that she specifically was hire to work one day a week and she was generally availbe to work on the other week days and that when she applied for the job she was not interested in part-time or full-time work.  The Board Panel agreed with the WCLJ that the claimant was not fully available for more work and that the 200-multiple minimum did not apply:  “The claimant’s own testimony demonstrates that she had applied for and accepted per diem work.','the claimant typically worked one or two days per week for 29 of the 52 weeks preceding the accident.  The claimant conceded that ” I generally worked one day a week when I was available and if they needed extra days like if someone . . . was scheduled to work and had an unexpected emergency or sick call, I would work additional shifts to fill in.” The claimant denied self-limiting her hour, but on cross she conceded that when she applied for her job she specifically sough only <em>per diem </em>work but that she specifically was hire to work one day a week and she was generally availbe to work on the other week days and that when she applied for the job she was not interested in part-time or full-time work.  The Board Panel agreed with the WCLJ that the claimant was not fully available for more work and that the 200-multiple minimum did not apply',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(590,46450,46371,'claimant may not have refused work','As such, the Board Panel finds that while the claimant may not have refused work, he cannot under these circumstances be characterized as fully available for the employment in question.”','As such, the Board Panel finds that while the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant may not have refused work</a>, he cannot under these circumstances be characterized as fully available for the employment in question.”</em>','As such, the Board Panel finds that while the claimant may not have refused work, he cannot under these circumstances be characterized as fully available for the employment in question.”</em>','However, the claimant also indicated that through his employment he “probably wouldn’t have” exceeded the $10,000.00 Social Security threshold. As such, the Board Panel finds that while the claimant may not have refused work, he cannot under these circumstances be characterized as fully available for the employment in question.”','as a <em>per diem</em> employee called in when he was needed by the employer.  The employer witness testified by letter to the Court that the claimant had no set hours or schedule and that “many times the claimant did decline our offer of work” sometimes because it was on too short notice, but sometimes because the claimant didn’t like the particular assignment offered.  Claimant testified that he had never refused work from the employer, but also conceded that his job was “primarily for the purpose of supplementing his Social Security income and that he was not allowed to exceed the $10,000 supplemental income limit although he denied that this limit played any role in his work schedule.  The WCLJ found the claimant did not self-limit but the Board reversed:  <em>“Here, contrary to the statement by the employer, the claimant testified that the he did not refuse work. However, the claimant also indicated that through his employment he “probably wouldn’t have” exceeded the $10,000.00 Social Security threshold. As such, the Board Panel finds that while the claimant may not have refused work, he cannot under these circumstances be characterized as fully available for the employment in question.”</em>',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(591,46450,46371,'work pattern and that the claimant','Claimant’s C-240 showed a “sporadic” work pattern and that the claimant typically worked one or two days per week for 29 of the 52 weeks preceding the accident','Claimant’s C-240 showed a “sporadic” <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">work pattern and that the claimant</a> typically worked one or two days per week for 29 of the 52 weeks preceding the accident','Claimant’s C-240 showed a “sporadic” work pattern and that the claimant typically worked one or two days per week for 29 of the 52 weeks preceding the accident','Claimant’s C-240 showed a “sporadic” work pattern and that the claimant typically worked one or two days per week for 29 of the 52 weeks preceding the accident.  The claimant conceded that ” I generally worked one day a week when I was available and if they needed extra days like if someone .','Claimant’s C-240 showed a “sporadic” work pattern and that the claimant typically worked one or two days per week for 29 of the 52 weeks preceding the accident.',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(592,46450,46371,'claimant conceded that ” I generally worked','The claimant conceded that ” I generally worked one day a week when I was available and if they needed extra days like if someone','The <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant conceded that ” I generally worked</a> one day a week when I was available and if they needed extra days like if someone','The claimant conceded that ” I generally worked one day a week when I was available and if they needed extra days like if someone','Claimant’s C-240 showed a “sporadic” work pattern and that the claimant typically worked one or two days per week for 29 of the 52 weeks preceding the accident.  The claimant conceded that ” I generally worked one day a week when I was available and if they needed extra days like if someone . . .','the claimant typically worked one or two days per week for 29 of the 52 weeks preceding the accident.  The claimant conceded that ” I generally worked one day a week when I was available and if they needed extra days like if someone',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(593,46450,46371,'claimant “did not work','In support of its ruling, the Board noted that it agreed with the carrier that the claimant “did not work substantially the whole of the year pereceidng his accident” and that the use of the 224 multiple “reasonably represents the claimant’s annual earning capacity in the year immediately before the injury.”','In support of its ruling, the Board noted that it agreed with the carrier that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant “did not work</a> substantially the whole of the year pereceidng his accident” and that the use of the 224 multiple “reasonably represents the claimant’s annual earning capacity in the year immediately before the injury.”','In support of its ruling, the Board noted that it agreed with the carrier that the claimant “did not work substantially the whole of the year pereceidng his accident” and that the use of the 224 multiple “reasonably represents the claimant’s annual earning capacity in the year immediately before the injury.”','0810813 held that the worker described above was entitled to an average weekly wage based off of a “224 multiple” after reminding the carrier that “there is no statutory authority supporting the calculation of the claimant’s average weekly wage” using a “divsor.”  In support of its ruling, the Board noted that it agreed with the carrier that the claimant “did not work substantially the whole of the year pereceidng his accident” and that the use of the 224 multiple “reasonably represents the claimant’s annual earning capacity in the year immediately before the injury.”  The keen reader will recognize that the fact-pattern her recounts on 220 days worked in the year preceding the accident and calculating out the figures specifically denoted in the decision still gives us a 220-day work-year. ','in <u>VIP Health Care Services Inc.</u>, 2015 NY Wrk. Comp. 0810813 held that the worker described above was entitled to an average weekly wage based off of a “224 multiple” after reminding the carrier that “there is no statutory authority supporting the calculation of the claimant’s average weekly wage” using a “divsor.”  In support of its ruling, the Board noted that it agreed with the carrier that the claimant “did not work substantially the whole of the year pereceidng his accident” and that the use of the 224 multiple “reasonably represents the claimant’s annual earning capacity in the year immediately before the injury.”  The keen reader will recognize that the fact-pattern her recounts on 220 days worked in the year preceding the accident and calculating out the figures specifically denoted in the decision still gives us a 220-day work-year.  How the Board Panel got 224 days is beyond comprehension given the limited analysis in the decision except the Board notes that “the carrier, by requesting a $564.37 average weekly wage, has essentially conceded a 224 multiple for the claimant in its application for review.”',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(594,46450,46371,'claimant did not work','Thus, even if the claimant did not work during the summer months immediately preceding the injury of this file, the claimant would be entitled to compensation benefits during the summer months','Thus, even if the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant did not work</a> during the summer months immediately preceding the injury of this file, the claimant would be entitled to compensation benefits during the summer months','Thus, even if the claimant did not work during the summer months immediately preceding the injury of this file, the claimant would be entitled to compensation benefits during the summer months','If the employee was denied compensation benefits during the summer months, the fact that a claimant was not regularly employed during that time period would be accounted for twice; once in the calculation of average weekly wage, and then again in determining the compensable periods of disability. Thus, even if the claimant did not work during the summer months immediately preceding the injury of this file, the claimant would be entitled to compensation benefits during the summer months.','Thus, even if the claimant did not work during the summer months immediately preceding the injury of this file, the claimant would be entitled to compensation benefits during the summer months.',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(595,46450,46371,'claimant typically worked','Further, the C-240 reflects that the claimant typically worked one to two days per week during those 29 weeks.”','Further, the C-240 reflects that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant typically worked</a> one to two days per week during those 29 weeks.</em>”','Further, the C-240 reflects that the claimant typically worked one to two days per week during those 29 weeks.</em>”','As noted above, the C-240 further indicates that the claimant worked sporadically during 29 weeks out of the 52-week period in question. Further, the C-240 reflects that the claimant typically worked one to two days per week during those 29 weeks.”','further indicates that the claimant worked sporadically during 29 weeks out of the 52-week period in question. Further, the C-240 reflects that the claimant typically worked one to two days per week during those 29 weeks.</em>”',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(596,46450,46371,'claimant work','Out of the 52 weeks preceding his injury, the claimant work four-days a week for 36 weeks; six-days a week for 8 weeks; five-days a week for 4 weeks; three days a week for 2 weeks; two-days a week for 1 week; and 0 days for 1 week','Out of the 52 weeks preceding his injury, the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant work</a> four-days a week for 36 weeks; six-days a week for 8 weeks; five-days a week for 4 weeks; three days a week for 2 weeks; two-days a week for 1 week; and 0 days for 1 week','Out of the 52 weeks preceding his injury, the claimant work four-days a week for 36 weeks; six-days a week for 8 weeks; five-days a week for 4 weeks; three days a week for 2 weeks; two-days a week for 1 week; and 0 days for 1 week','The C-240 filed indicated that the claimant was a four-day a week hourly worker. Out of the 52 weeks preceding his injury, the claimant work four-days a week for 36 weeks; six-days a week for 8 weeks; five-days a week for 4 weeks; three days a week for 2 weeks; two-days a week for 1 week; and 0 days for 1 week. The gross amount paid to the claimant was $28,782.88.','Out of the 52 weeks preceding his injury, the claimant work four-days a week for 36 weeks; six-days a week for 8 weeks; five-days a week for 4 weeks; three days a week for 2 weeks; two-days a week for 1 week; and 0 days for 1 week.',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(597,46450,46371,'claimant worked','As noted above, the C-240 further indicates that the claimant worked sporadically during 29 weeks out of the 52-week period in question','As noted above, the C-240 further indicates that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant worked</a> sporadically during 29 weeks out of the 52-week period in question','As noted above, the C-240 further indicates that the claimant worked sporadically during 29 weeks out of the 52-week period in question','She testified that she was not interested in a full-time or more traditional part-time schedule. As noted above, the C-240 further indicates that the claimant worked sporadically during 29 weeks out of the 52-week period in question. Further, the C-240 reflects that the claimant typically worked one to two days per week during those 29 weeks.”','as available and if they needed extra days like if someone . . . was scheduled to work and had an unexpected emergency or sick call, I would work additional shifts to fill in.” The claimant denied self-limiting her hour, but on cross she conceded that when she applied for her job she specifically sough only <em>per diem </em>work but that she specifically was hire to work one day a week and she was generally availbe to work on the other week days and that when she applied for the job she was not interested in part-time or full-time work.  The Board Panel agreed with the WCLJ that the claimant was not fully available for more work and that the 200-multiple minimum did not apply:  <em>“The claimant’s own testimony demonstrates that she had applied for and accepted per diem work. She testified that she was not interested in a full-time or more traditional part-time schedule. As noted above, the C-240 further indicates that the claimant worked sporadically during 29 weeks out of the 52-week period in question.',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(598,46450,46504,'earning capacity','In support of its ruling, the Board noted that it agreed with the carrier that the claimant “did not work substantially the whole of the year pereceidng his accident” and that the use of the 224 multiple “reasonably represents the claimant’s annual earning capacity in the year immediately before the injury.”','In support of its ruling, the Board noted that it agreed with the carrier that the claimant “did not work substantially the whole of the year pereceidng his accident” and that the use of the 224 multiple “reasonably represents the claimant’s annual <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">earning capacity</a> in the year immediately before the injury.”','In support of its ruling, the Board noted that it agreed with the carrier that the claimant “did not work substantially the whole of the year pereceidng his accident” and that the use of the 224 multiple “reasonably represents the claimant’s annual earning capacity in the year immediately before the injury.”','0810813 held that the worker described above was entitled to an average weekly wage based off of a “224 multiple” after reminding the carrier that “there is no statutory authority supporting the calculation of the claimant’s average weekly wage” using a “divsor.”  In support of its ruling, the Board noted that it agreed with the carrier that the claimant “did not work substantially the whole of the year pereceidng his accident” and that the use of the 224 multiple “reasonably represents the claimant’s annual earning capacity in the year immediately before the injury.”  The keen reader will recognize that the fact-pattern her recounts on 220 days worked in the year preceding the accident and calculating out the figures specifically denoted in the decision still gives us a 220-day work-year. ','in <u>VIP Health Care Services Inc.</u>, 2015 NY Wrk. Comp. 0810813 held that the worker described above was entitled to an average weekly wage based off of a “224 multiple” after reminding the carrier that “there is no statutory authority supporting the calculation of the claimant’s average weekly wage” using a “divsor.”  In support of its ruling, the Board noted that it agreed with the carrier that the claimant “did not work substantially the whole of the year pereceidng his accident” and that the use of the 224 multiple “reasonably represents the claimant’s annual earning capacity in the year immediately before the injury.”  The keen reader will recognize that the fact-pattern her recounts on 220 days worked in the year preceding the accident and calculating out the figures specifically denoted in the decision still gives us a 220-day work-year.  How the Board Panel got 224 days is beyond comprehension given the limited analysis in the decision except the Board notes that “the carrier, by requesting a $564.37 average weekly wage, has essentially conceded a 224 multiple for the claimant in its application for review.”',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(599,46450,46509,'determining the claimant’s average annual earnings','When one of the ‘known and recognized incidents’ of a claimant’s job is the fact that he or she is predictably laid off for several months each year, due to the nature of the particular employment, that factor should be taken into account in determining the claimant’s average annual earnings pursuant to Workers’ Compensation Law 14','When one of the ‘known and recognized incidents’ of a claimant’s job is the fact that he or she is predictably laid off for several months each year, due to the nature of the particular employment, that factor should be taken into account in <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">determining the claimant’s average annual earnings</a> pursuant to Workers’ Compensation Law 14','When one of the ‘known and recognized incidents’ of a claimant’s job is the fact that he or she is predictably laid off for several months each year, due to the nature of the particular employment, that factor should be taken into account in determining the claimant’s average annual earnings pursuant to Workers’ Compensation Law 14','When one of the ‘known and recognized incidents’ of a claimant’s job is the fact that he or she is predictably laid off for several months each year, due to the nature of the particular employment, that factor should be taken into account in determining the claimant’s average annual earnings pursuant to Workers’ Compensation Law 14 .  Matter of Littler v Fuller Co., 223 NY 369 (1918).  ','When one of the ‘known and recognized incidents’ of a claimant’s job is the fact that he or she is predictably laid off for several months each year, due to the nature of the particular employment, that factor should be taken into account in determining the claimant’s average annual earnings pursuant to Workers’ Compensation Law 14 .  <u>Matter of Littler v Fuller Co.</u>, 223 NY 369 (1918).  When such an employment circumstance exists, the formula outlined in Workers’ Compensation Law § 14(1), which is based on the approximate number of days worked by a five or six-day employee during an entire year, cannot ‘reasonably and fairly be applied’ to determine the claimant’s earnings . . . Accordingly, [the] average weekly wage must be calculated pursuant to subdivisions (3) and (4) of Workers’ Compensation Law 14.',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(600,46450,46509,'wages because the averaging provisions that determine','Where an employment is seasonal, a carrier cannot suspend compensation benefits during the summer months when the claimant would not usually be receiving wages because the averaging provisions that determine AWW spread seasonal wages over an entire year','Where an employment is seasonal, a carrier cannot suspend compensation benefits during the summer months when the claimant would not usually be receiving <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">wages because the averaging provisions that determine</a> AWW spread seasonal wages over an entire year','Where an employment is seasonal, a carrier cannot suspend compensation benefits during the summer months when the claimant would not usually be receiving wages because the averaging provisions that determine AWW spread seasonal wages over an entire year','Where an employment is seasonal, a carrier cannot suspend compensation benefits during the summer months when the claimant would not usually be receiving wages because the averaging provisions that determine AWW spread seasonal wages over an entire year.  Having properly calculated the claimant’s average weekly wage under the statutory formula provided by WCL § 14(3) and WCL § 14(4) for calculating an employee’s average weekly wage, seasonal periods of unemployment, such as are customarily experienced by school teachers and other school district employees, are fully accounted for by using a 200 multiple, instead of the 260 multiple or 300 multiple provided by WCL § 14(1) for full time, year round five or six day workers.','Where an employment is seasonal, a carrier cannot suspend compensation benefits during the summer months when the claimant would not usually be receiving wages because the averaging provisions that determine AWW spread seasonal wages over an entire year.  Having properly calculated the claimant’s average weekly wage under the statutory formula provided by <a href=\"https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&amp;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&amp;_butType=4&amp;_butStat=0&amp;_butNum=7&amp;_butInline=1&amp;_butinfo=NY%20WORK%20COMP%2014&amp;_fmtstr=FULL&amp;docnum=3&amp;_startdoc=1&amp;wchp=dGLzVzB-zSkAb&amp;_md5=7d957a56f4603e2ea6acfc6d96284951\" target=\"_blank\" rel=\"noopener\">WCL § 14(3)</a> and <a href=\"https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&amp;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&amp;_butType=4&amp;_butStat=0&amp;_butNum=8&amp;_butInline=1&amp;_butinfo=NY%20WORK%20COMP%2014&amp;_fmtstr=FULL&amp;docnum=3&amp;_startdoc=1&amp;wchp=dGLzVzB-zSkAb&amp;_md5=75bec0b2ce1d16a3c6da61614f25c57b\" target=\"_blank\" rel=\"noopener\">WCL § 14(4)</a> for calculating an employee’s average weekly wage, seasonal periods of unemployment, such as are customarily experienced by school teachers and other school district employees, are fully accounted for by using a 200 multiple, instead of the 260 multiple or 300 multiple provided by <a href=\"https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&amp;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&amp;_butType=4&amp;_butStat=0&amp;_butNum=9&amp;_butInline=1&amp;_butinfo=NY%20WORK%20COMP%2014&amp;_fmtstr=FULL&amp;docnum=3&amp;_startdoc=1&amp;wchp=dGLzVzB-zSkAb&amp;_md5=26730495bb8eb27dee66bf357766c397\" target=\"_blank\" rel=\"noopener\">WCL § 14(1)</a> for full time, year',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(601,46450,46509,'determine the claimant’s earnings','When such an employment circumstance exists, the formula outlined in Workers’ Compensation Law § 14(1), which is based on the approximate number of days worked by a five or six-day employee during an entire year, cannot ‘reasonably and fairly be applied’ to determine the claimant’s earnings','When such an employment circumstance exists, the formula outlined in Workers’ Compensation Law § 14(1), which is based on the approximate number of days worked by a five or six-day employee during an entire year, cannot ‘reasonably and fairly be applied’ to <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">determine the claimant’s earnings</a>','When such an employment circumstance exists, the formula outlined in Workers’ Compensation Law § 14(1), which is based on the approximate number of days worked by a five or six-day employee during an entire year, cannot ‘reasonably and fairly be applied’ to determine the claimant’s earnings','Matter of Littler v Fuller Co., 223 NY 369 (1918).  When such an employment circumstance exists, the formula outlined in Workers’ Compensation Law § 14(1), which is based on the approximate number of days worked by a five or six-day employee during an entire year, cannot ‘reasonably and fairly be applied’ to determine the claimant’s earnings . . .','When one of the ‘known and recognized incidents’ of a claimant’s job is the fact that he or she is predictably laid off for several months each year, due to the nature of the particular employment, that factor should be taken into account in determining the claimant’s average annual earnings pursuant to Workers’ Compensation Law 14 .  <u>Matter of Littler v Fuller Co.</u>, 223 NY 369 (1918).  When such an employment circumstance exists, the formula outlined in Workers’ Compensation Law § 14(1), which is based on the approximate number of days worked by a five or six-day employee during an entire year, cannot ‘reasonably and fairly be applied’ to determine the claimant’s earnings . . . Accordingly, [the] average weekly wage must be calculated pursuant to subdivisions (3) and (4) of Workers’ Compensation Law 14.” <u>Matter of Till v Opportunities, Inc.</u>, 252 AD2d 619 (3d Dept. 1998).',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(602,46450,46509,'earning capacity','In support of its ruling, the Board noted that it agreed with the carrier that the claimant “did not work substantially the whole of the year pereceidng his accident” and that the use of the 224 multiple “reasonably represents the claimant’s annual earning capacity in the year immediately before the injury.”','In support of its ruling, the Board noted that it agreed with the carrier that the claimant “did not work substantially the whole of the year pereceidng his accident” and that the use of the 224 multiple “reasonably represents the claimant’s annual <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">earning capacity</a> in the year immediately before the injury.”','In support of its ruling, the Board noted that it agreed with the carrier that the claimant “did not work substantially the whole of the year pereceidng his accident” and that the use of the 224 multiple “reasonably represents the claimant’s annual earning capacity in the year immediately before the injury.”','0810813 held that the worker described above was entitled to an average weekly wage based off of a “224 multiple” after reminding the carrier that “there is no statutory authority supporting the calculation of the claimant’s average weekly wage” using a “divsor.”  In support of its ruling, the Board noted that it agreed with the carrier that the claimant “did not work substantially the whole of the year pereceidng his accident” and that the use of the 224 multiple “reasonably represents the claimant’s annual earning capacity in the year immediately before the injury.”  The keen reader will recognize that the fact-pattern her recounts on 220 days worked in the year preceding the accident and calculating out the figures specifically denoted in the decision still gives us a 220-day work-year. ','in <u>VIP Health Care Services Inc.</u>, 2015 NY Wrk. Comp. 0810813 held that the worker described above was entitled to an average weekly wage based off of a “224 multiple” after reminding the carrier that “there is no statutory authority supporting the calculation of the claimant’s average weekly wage” using a “divsor.”  In support of its ruling, the Board noted that it agreed with the carrier that the claimant “did not work substantially the whole of the year pereceidng his accident” and that the use of the 224 multiple “reasonably represents the claimant’s annual earning capacity in the year immediately before the injury.”  The keen reader will recognize that the fact-pattern her recounts on 220 days worked in the year preceding the accident and calculating out the figures specifically denoted in the decision still gives us a 220-day work-year.  How the Board Panel got 224 days is beyond comprehension given the limited analysis in the decision except the Board notes that “the carrier, by requesting a $564.37 average weekly wage, has essentially conceded a 224 multiple for the claimant in its application for review.”',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(603,46450,46350,'work outside the hours/days of the employment','Instead, the claimant must show that he or she was looking for work outside the hours/days of the employment in question','Instead, the claimant must show that he or she was looking for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">work outside the hours/days of the employment</a> in question','Instead, the claimant must show that he or she was looking for work outside the hours/days of the employment in question','For example, a claimant hired for a job that will last only a short time cannot claim “full availability” by suggesting that, had the position been of longer duration or more hours they could have worked more.  Instead, the claimant must show that he or she was looking for work outside the hours/days of the employment in question.  See also NYC Board of Election, 2015 NY Wrk.','Instead, the claimant must show that he or she was looking for work outside the hours/days of the employment in question.',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(604,46450,46350,'worked in the year preceding the accident','The keen reader will recognize that the fact-pattern her recounts on 220 days worked in the year preceding the accident and calculating out the figures specifically denoted in the decision still gives us a 220-day work-year','The keen reader will recognize that the fact-pattern her recounts on 220 days <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">worked in the year preceding the accident</a> and calculating out the figures specifically denoted in the decision still gives us a 220-day work-year','The keen reader will recognize that the fact-pattern her recounts on 220 days worked in the year preceding the accident and calculating out the figures specifically denoted in the decision still gives us a 220-day work-year','In support of its ruling, the Board noted that it agreed with the carrier that the claimant “did not work substantially the whole of the year pereceidng his accident” and that the use of the 224 multiple “reasonably represents the claimant’s annual earning capacity in the year immediately before the injury.”  The keen reader will recognize that the fact-pattern her recounts on 220 days worked in the year preceding the accident and calculating out the figures specifically denoted in the decision still gives us a 220-day work-year.  How the Board Panel got 224 days is beyond comprehension given the limited analysis in the decision except the Board notes that “the carrier, by requesting a $564.37 average weekly wage, has essentially conceded a 224 multiple for the claimant in its application for review.” ','The Board in <u>VIP Health Care Services Inc.</u>, 2015 NY Wrk. Comp. 0810813 held that the worker described above was entitled to an average weekly wage based off of a “224 multiple” after reminding the carrier that “there is no statutory authority supporting the calculation of the claimant’s average weekly wage” using a “divsor.”  In support of its ruling, the Board noted that it agreed with the carrier that the claimant “did not work substantially the whole of the year pereceidng his accident” and that the use of the 224 multiple “reasonably represents the claimant’s annual earning capacity in the year immediately before the injury.”  The keen reader will recognize that the fact-pattern her recounts on 220 days worked in the year preceding the accident and calculating out the figures specifically denoted in the decision still gives us a 220-day work-year.',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(605,46450,46350,'work from the employer,','Claimant testified that he had never refused work from the employer, but also conceded that his job was “primarily for the purpose of supplementing his Social Security income and that he was not allowed to exceed the $10,000 supplemental income limit although he denied that this limit played any role in his work schedule','Claimant testified that he had never refused <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">work from the employer,</a> but also conceded that his job was “primarily for the purpose of supplementing his Social Security income and that he was not allowed to exceed the $10,000 supplemental income limit although he denied that this limit played any role in his work schedule','Claimant testified that he had never refused work from the employer, but also conceded that his job was “primarily for the purpose of supplementing his Social Security income and that he was not allowed to exceed the $10,000 supplemental income limit although he denied that this limit played any role in his work schedule','The employer witness testified by letter to the Court that the claimant had no set hours or schedule and that “many times the claimant did decline our offer of work” sometimes because it was on too short notice, but sometimes because the claimant didn’t like the particular assignment offered.  Claimant testified that he had never refused work from the employer, but also conceded that his job was “primarily for the purpose of supplementing his Social Security income and that he was not allowed to exceed the $10,000 supplemental income limit although he denied that this limit played any role in his work schedule.  The WCLJ found the claimant did not self-limit but the Board reversed: ','Claimant was a <em>per diem</em> employee called in when he was needed by the employer.  The employer witness testified by letter to the Court that the claimant had no set hours or schedule and that “many times the claimant did decline our offer of work” sometimes because it was on too short notice, but sometimes because the claimant didn’t like the particular assignment offered.  Claimant testified that he had never refused work from the employer, but also conceded that his job was “primarily for the purpose of supplementing his Social Security income and that he was not allowed to exceed the $10,000 supplemental income limit although he denied that this limit played any role in his work schedule.',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(606,46450,46480,'wages because the averaging','Where an employment is seasonal, a carrier cannot suspend compensation benefits during the summer months when the claimant would not usually be receiving wages because the averaging provisions that determine AWW spread seasonal wages over an entire year','Where an employment is seasonal, a carrier cannot suspend compensation benefits during the summer months when the claimant would not usually be receiving <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/average-wages/\">wages because the averaging</a> provisions that determine AWW spread seasonal wages over an entire year','Where an employment is seasonal, a carrier cannot suspend compensation benefits during the summer months when the claimant would not usually be receiving wages because the averaging provisions that determine AWW spread seasonal wages over an entire year','Where an employment is seasonal, a carrier cannot suspend compensation benefits during the summer months when the claimant would not usually be receiving wages because the averaging provisions that determine AWW spread seasonal wages over an entire year.  Having properly calculated the claimant’s average weekly wage under the statutory formula provided by WCL § 14(3) and WCL § 14(4) for calculating an employee’s average weekly wage, seasonal periods of unemployment, such as are customarily experienced by school teachers and other school district employees, are fully accounted for by using a 200 multiple, instead of the 260 multiple or 300 multiple provided by WCL § 14(1) for full time, year round five or six day workers.','Where an employment is seasonal, a carrier cannot suspend compensation benefits during the summer months when the claimant would not usually be receiving wages because the averaging provisions that determine AWW spread seasonal wages over an entire year.  Having properly calculated the claimant’s average weekly wage under the statutory formula provided by <a href=\"https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&amp;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&amp;_butType=4&amp;_butStat=0&amp;_butNum=7&amp;_butInline=1&amp;_butinfo=NY%20WORK%20COMP%2014&amp;_fmtstr=FULL&amp;docnum=3&amp;_startdoc=1&amp;wchp=dGLzVzB-zSkAb&amp;_md5=7d957a56f4603e2ea6acfc6d96284951\" target=\"_blank\" rel=\"noopener\">WCL § 14(3)</a> and <a href=\"https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&amp;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&amp;_butType=4&amp;_butStat=0&amp;_butNum=8&amp;_butInline=1&amp;_butinfo=NY%20WORK%20COMP%2014&amp;_fmtstr=FULL&amp;docnum=3&amp;_startdoc=1&amp;wchp=dGLzVzB-zSkAb&amp;_md5=75bec0b2ce1d16a3c6da61614f25c57b\" target=\"_blank\" rel=\"noopener\">WCL § 14(4)</a> for calculating an employee’s average weekly wage, seasonal periods of unemployment, such as are customarily experienced by school teachers and other school district employees, are fully accounted for by using a 200 multiple, instead of the 260 multiple or 300 multiple provided by <a href=\"https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&amp;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&amp;_butType=4&amp;_butStat=0&amp;_butNum=9&amp;_butInline=1&amp;_butinfo=NY%20WORK%20COMP%2014&amp;_fmtstr=FULL&amp;docnum=3&amp;_startdoc=1&amp;wchp=dGLzVzB-zSkAb&amp;_md5=26730495bb8eb27dee66bf357766c397\" target=\"_blank\" rel=\"noopener\">WCL § 14(1)</a> for full time, year',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(607,46450,46480,'average weekly wage','How the Board Panel got 224 days is beyond comprehension given the limited analysis in the decision except the Board notes that “the carrier, by requesting a $564.37 average weekly wage, has essentially conceded a 224 multiple for the claimant in its application for review.”','How the Board Panel got 224 days is beyond comprehension given the limited analysis in the decision except the Board notes that “the carrier, by requesting a $564.37 <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/average-wages/\">average weekly wage</a>, has essentially conceded a 224 multiple for the claimant in its application for review.”','How the Board Panel got 224 days is beyond comprehension given the limited analysis in the decision except the Board notes that “the carrier, by requesting a $564.37 average weekly wage, has essentially conceded a 224 multiple for the claimant in its application for review.”','The keen reader will recognize that the fact-pattern her recounts on 220 days worked in the year preceding the accident and calculating out the figures specifically denoted in the decision still gives us a 220-day work-year.  How the Board Panel got 224 days is beyond comprehension given the limited analysis in the decision except the Board notes that “the carrier, by requesting a $564.37 average weekly wage, has essentially conceded a 224 multiple for the claimant in its application for review.”  Does that mean that the carrier here did its math wrong on the Application for Review? ','How the Board Panel got 224 days is beyond comprehension given the limited analysis in the decision except the Board notes that “the carrier, by requesting a $564.37 average weekly wage, has essentially conceded a 224 multiple for the claimant in its application for review.”',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(608,46450,46480,'average weekly wage','In at least one recent case, the Board held that where the employer established that a claimant, an otherwise full-time worker, habitually took off summers to go travel outside the country, the claimant was self-limiting her employment and could not avail herself of a 200-multiple calculation because “the claimant would reap the benefit of a higher average weekly wage','In at least one recent case, the Board held that where the employer established that a claimant, an otherwise full-time worker, habitually took off summers to go travel outside the country, the claimant was self-limiting her employment and could not avail herself of a 200-multiple calculation because “the claimant would reap the benefit of a higher <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/average-wages/\">average weekly wage</a>','In at least one recent case, the Board held that where the employer established that a claimant, an otherwise full-time worker, habitually took off summers to go travel outside the country, the claimant was self-limiting her employment and could not avail herself of a 200-multiple calculation because “the claimant would reap the benefit of a higher average weekly wage','In at least one recent case, the Board held that where the employer established that a claimant, an otherwise full-time worker, habitually took off summers to go travel outside the country, the claimant was self-limiting her employment and could not avail herself of a 200-multiple calculation because “the claimant would reap the benefit of a higher average weekly wage . . .','installment of our serial blog on the issue of Average Weekly Wages!  When we last left our intrepid hero, he had plummeted to his apparent death in the Reichenbach Falls grappling with his mortal enemy and mastermind criminal, Professor James Moriarty… wait … wrong serial … sorry.',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(609,46450,46480,'average weekly wage','Accordingly, [the] average weekly wage must be calculated pursuant to subdivisions (3) and (4) of Workers’ Compensation Law 14.” Matter of Till v Opportunities, Inc., 252 AD2d 619 (3d Dept','Accordingly, [the] <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/average-wages/\">average weekly wage</a> must be calculated pursuant to subdivisions (3) and (4) of Workers’ Compensation Law 14.” <u>Matter of Till v Opportunities, Inc.</u>, 252 AD2d 619 (3d Dept','Accordingly, [the] average weekly wage must be calculated pursuant to subdivisions (3) and (4) of Workers’ Compensation Law 14.” <u>Matter of Till v Opportunities, Inc.</u>, 252 AD2d 619 (3d Dept','. . Accordingly, [the] average weekly wage must be calculated pursuant to subdivisions (3) and (4) of Workers’ Compensation Law 14.” Matter of Till v Opportunities, Inc., 252 AD2d 619 (3d Dept. 1998).','Accordingly, [the] average weekly wage must be calculated pursuant to subdivisions (3) and (4) of Workers’ Compensation Law 14.” <u>Matter of Till v Opportunities, Inc.</u>, 252 AD2d 619 (3d Dept.',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(610,46450,46549,'claimant was found','Some very recent examples of cases where a claimant was found “not fully available should illustrate this point nicely:','Some very recent examples of cases where a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">claimant was found</a> “not fully available should illustrate this point nicely:','Some very recent examples of cases where a claimant was found “not fully available should illustrate this point nicely:','When getting down to the nitty gritty of evidence, testimony from the claimant is of course vital, but so is employer testimony.  Some very recent examples of cases where a claimant was found “not fully available should illustrate this point nicely:','Some very recent examples of cases where a claimant was found “not fully available should illustrate this point nicely',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(611,46450,46549,'found the claimant','The WCLJ found the claimant did not self-limit but the Board reversed:','The WCLJ <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">found the claimant</a> did not self-limit but the Board reversed:','The WCLJ found the claimant did not self-limit but the Board reversed:','Claimant testified that he had never refused work from the employer, but also conceded that his job was “primarily for the purpose of supplementing his Social Security income and that he was not allowed to exceed the $10,000 supplemental income limit although he denied that this limit played any role in his work schedule.  The WCLJ found the claimant did not self-limit but the Board reversed:  “Here, contrary to the statement by the employer, the claimant testified that the he did not refuse work.','the employer.  The employer witness testified by letter to the Court that the claimant had no set hours or schedule and that “many times the claimant did decline our offer of work” sometimes because it was on too short notice, but sometimes because the claimant didn’t like the particular assignment offered.  Claimant testified that he had never refused work from the employer, but also conceded that his job was “primarily for the purpose of supplementing his Social Security income and that he was not allowed to exceed the $10,000 supplemental income limit although he denied that this limit played any role in his work schedule.  The WCLJ found the claimant did not self-limit but the Board reversed',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(612,46450,46561,'claimant testified','“Here, contrary to the statement by the employer, the claimant testified that the he did not refuse work','<em>“Here, contrary to the statement by the employer, the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">claimant testified</a> that the he did not refuse work','<em>“Here, contrary to the statement by the employer, the claimant testified that the he did not refuse work','The WCLJ found the claimant did not self-limit but the Board reversed:  “Here, contrary to the statement by the employer, the claimant testified that the he did not refuse work. However, the claimant also indicated that through his employment he “probably wouldn’t have” exceeded the $10,000.00 Social Security threshold.','<em>“Here, contrary to the statement by the employer, the claimant testified that the he did not refuse work. However, the claimant also indicated that through his employment he “probably wouldn’t have” exceeded the $10,000.00 Social Security threshold. As such, the Board Panel finds that while the claimant may not have refused work',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(613,46450,46374,'claimant typically worked one or two days','Claimant’s C-240 showed a “sporadic” work pattern and that the claimant typically worked one or two days per week for 29 of the 52 weeks preceding the accident','Claimant’s C-240 showed a “sporadic” work pattern and that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claimant typically worked one or two days</a> per week for 29 of the 52 weeks preceding the accident','Claimant’s C-240 showed a “sporadic” work pattern and that the claimant typically worked one or two days per week for 29 of the 52 weeks preceding the accident','Claimant’s C-240 showed a “sporadic” work pattern and that the claimant typically worked one or two days per week for 29 of the 52 weeks preceding the accident.  The claimant conceded that ” I generally worked one day a week when I was available and if they needed extra days like if someone .','Claimant’s C-240 showed a “sporadic” work pattern and that the claimant typically worked one or two days per week for 29 of the 52 weeks preceding the accident.',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(614,46450,46374,'claimant typically worked one to two days','Further, the C-240 reflects that the claimant typically worked one to two days per week during those 29 weeks.”','Further, the C-240 reflects that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claimant typically worked one to two days</a> per week during those 29 weeks.</em>”','Further, the C-240 reflects that the claimant typically worked one to two days per week during those 29 weeks.</em>”','As noted above, the C-240 further indicates that the claimant worked sporadically during 29 weeks out of the 52-week period in question. Further, the C-240 reflects that the claimant typically worked one to two days per week during those 29 weeks.”','further indicates that the claimant worked sporadically during 29 weeks out of the 52-week period in question. Further, the C-240 reflects that the claimant typically worked one to two days per week during those 29 weeks.</em>”',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(615,46450,46374,'claimant denied','was scheduled to work and had an unexpected emergency or sick call, I would work additional shifts to fill in.” The claimant denied self-limiting her hour, but on cross she conceded that when she applied for her job she specifically sough only per diem work but that she specifically was hire to work one day a week and she was generally availbe to work on the other week days and that when she applied for the job she was not interested in part-time or full-time work','was scheduled to work and had an unexpected emergency or sick call, I would work additional shifts to fill in.” The <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claimant denied</a> self-limiting her hour, but on cross she conceded that when she applied for her job she specifically sough only <em>per diem </em>work but that she specifically was hire to work one day a week and she was generally availbe to work on the other week days and that when she applied for the job she was not interested in part-time or full-time work','was scheduled to work and had an unexpected emergency or sick call, I would work additional shifts to fill in.” The claimant denied self-limiting her hour, but on cross she conceded that when she applied for her job she specifically sough only <em>per diem </em>work but that she specifically was hire to work one day a week and she was generally availbe to work on the other week days and that when she applied for the job she was not interested in part-time or full-time work','. . was scheduled to work and had an unexpected emergency or sick call, I would work additional shifts to fill in.” The claimant denied self-limiting her hour, but on cross she conceded that when she applied for her job she specifically sough only per diem work but that she specifically was hire to work one day a week and she was generally availbe to work on the other week days and that when she applied for the job she was not interested in part-time or full-time work.  The Board Panel agreed with the WCLJ that the claimant was not fully available for more work and that the 200-multiple minimum did not apply: ','was available and if they needed extra days like if someone . . . was scheduled to work and had an unexpected emergency or sick call, I would work additional shifts to fill in.” The claimant denied self-limiting her hour, but on cross she conceded that when she applied for her job she specifically sough only <em>per diem </em>work but that she specifically was hire to work one day a week and she was generally availbe to work on the other week days and that when she applied for the job she was not interested in part-time or full-time work.  The Board Panel agreed with the WCLJ that the claimant was not fully available for more work and that the 200-multiple minimum did not apply:  <em>“The claimant’s own testimony demonstrates that she had applied for and accepted per diem work. She testified that she was not interested in a full-time or more traditional part-time schedule. As noted above, the C-240 further indicates that the claimant worked sporadically during 29 weeks out of the 52-week period in question. Further, the C-240 reflects that the claimant typically work',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(616,46450,46341,'labor market','Moreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the labor market in general','Moreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/labor-market-attachment-and-retirement/\">labor market</a> in general','Moreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the labor market in general','Moreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the labor market in general. Matter of Kellish v Kellish Tire Sales, Inc., 12 AD3d 804 (3d Dept.','Moreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the labor market in general.',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(617,46450,46383,'labor market','Moreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the labor market in general','Moreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/\">labor market</a> in general','Moreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the labor market in general','Moreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the labor market in general. Matter of Kellish v Kellish Tire Sales, Inc., 12 AD3d 804 (3d Dept.','Moreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the labor market in general.',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(618,46450,46448,'labor market','Moreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the labor market in general','Moreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/09/labor-market-attachment-refresher/\">labor market</a> in general','Moreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the labor market in general','Moreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the labor market in general. Matter of Kellish v Kellish Tire Sales, Inc., 12 AD3d 804 (3d Dept.','Moreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the labor market in general.',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(619,46450,46546,'labor market','Moreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the labor market in general','Moreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">labor market</a> in general','Moreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the labor market in general','Moreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the labor market in general. Matter of Kellish v Kellish Tire Sales, Inc., 12 AD3d 804 (3d Dept.','Moreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the labor market in general.',0,'2022-04-05 01:45:57','2022-04-05 01:45:57'),(620,46338,46511,'carrier applied to reopen','However, these treatment records were not in the Board file and, while carrier applied to reopen the case to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard','However, these treatment records were not in the Board file and, while <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">carrier applied to reopen</a> the case to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard','However, these treatment records were not in the Board file and, while carrier applied to reopen the case to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard','The carrier argued that their causal relationship opinions should not stand in support of establishment as they did not account for claimant’s treatment records relating to a prior MVA. However, these treatment records were not in the Board file and, while carrier applied to reopen the case to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard. Therefore, the Third Department agreed with the Board that, where the doctors reviewed claimant’s medical records in the Board file and met with the claimant, the Board’s decision to establish consequential anxiety was supported by substantial evidence.','However, these treatment records were not in the Board file and, while carrier applied to reopen the case to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard.',0,'2022-04-05 01:45:58','2022-04-05 01:45:58'),(621,46338,46546,'carrier applied to reopen','However, these treatment records were not in the Board file and, while carrier applied to reopen the case to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard','However, these treatment records were not in the Board file and, while <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">carrier applied to reopen</a> the case to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard','However, these treatment records were not in the Board file and, while carrier applied to reopen the case to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard','The carrier argued that their causal relationship opinions should not stand in support of establishment as they did not account for claimant’s treatment records relating to a prior MVA. However, these treatment records were not in the Board file and, while carrier applied to reopen the case to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard. Therefore, the Third Department agreed with the Board that, where the doctors reviewed claimant’s medical records in the Board file and met with the claimant, the Board’s decision to establish consequential anxiety was supported by substantial evidence.','However, these treatment records were not in the Board file and, while carrier applied to reopen the case to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard.',0,'2022-04-05 01:45:58','2022-04-05 01:45:58'),(622,46338,46420,'reopen the case','However, these treatment records were not in the Board file and, while carrier applied to reopen the case to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard','However, these treatment records were not in the Board file and, while carrier applied to <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/10/court-of-appeals-upholds-2013-amendment-to-section-25-a-marking-the-end-for-the-fund-for-reopened-cases/\">reopen the case</a> to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard','However, these treatment records were not in the Board file and, while carrier applied to reopen the case to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard','The carrier argued that their causal relationship opinions should not stand in support of establishment as they did not account for claimant’s treatment records relating to a prior MVA. However, these treatment records were not in the Board file and, while carrier applied to reopen the case to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard. Therefore, the Third Department agreed with the Board that, where the doctors reviewed claimant’s medical records in the Board file and met with the claimant, the Board’s decision to establish consequential anxiety was supported by substantial evidence.','However, these treatment records were not in the Board file and, while carrier applied to reopen the case to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard.',0,'2022-04-05 01:45:58','2022-04-05 01:45:58'),(623,46338,46439,'reopen the case','However, these treatment records were not in the Board file and, while carrier applied to reopen the case to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard','However, these treatment records were not in the Board file and, while carrier applied to <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2016/04/reopened-cases/\">reopen the case</a> to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard','However, these treatment records were not in the Board file and, while carrier applied to reopen the case to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard','The carrier argued that their causal relationship opinions should not stand in support of establishment as they did not account for claimant’s treatment records relating to a prior MVA. However, these treatment records were not in the Board file and, while carrier applied to reopen the case to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard. Therefore, the Third Department agreed with the Board that, where the doctors reviewed claimant’s medical records in the Board file and met with the claimant, the Board’s decision to establish consequential anxiety was supported by substantial evidence.','However, these treatment records were not in the Board file and, while carrier applied to reopen the case to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard.',0,'2022-04-05 01:45:58','2022-04-05 01:45:58'),(624,46338,46342,'medical records and history before making an opinion','Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case','Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">medical records and history before making an opinion</a> in a workers’ compensation case','Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case','This decision is significant, in light of recent Third Department case law that we use to dispute doctors’ opinions on causal relationship. Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case. See Fox v.','Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case.',0,'2022-04-05 01:45:58','2022-04-05 01:45:58'),(625,46338,46421,'workers’ compensation','Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case','Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation</a> case','Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case','This decision is significant, in light of recent Third Department case law that we use to dispute doctors’ opinions on causal relationship. Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case. See Fox v.','Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case.',0,'2022-04-05 01:45:58','2022-04-05 01:45:58'),(626,46338,46486,'workers’ compensation','Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case','Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> case','Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case','This decision is significant, in light of recent Third Department case law that we use to dispute doctors’ opinions on causal relationship. Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case. See Fox v.','Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case.',0,'2022-04-05 01:45:58','2022-04-05 01:45:58'),(627,46338,46486,'workers’ compensation','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD & Friends, on the fourth Friday of every month!','For more updates on developments in New York <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD &amp; Friends, on the fourth Friday of every month!','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD &amp; Friends, on the fourth Friday of every month!','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD & Friends, on the fourth Friday of every month!','for case law updated to stay on the cutting-edge of workers’ compensation law in New York. This month',0,'2022-04-05 01:45:58','2022-04-05 01:45:58'),(628,46338,46486,'workers’ compensation','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD & Friends, on the fourth Friday of every month!','For more updates on developments in New York <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD &amp; Friends, on the fourth Friday of every month!','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD &amp; Friends, on the fourth Friday of every month!','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD & Friends, on the fourth Friday of every month!','for case law updated to stay on the cutting-edge of workers’ compensation law in New York. This month',0,'2022-04-05 01:45:58','2022-04-05 01:45:58'),(629,46338,46512,'workers’ compensation','Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case','Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> case','Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case','This decision is significant, in light of recent Third Department case law that we use to dispute doctors’ opinions on causal relationship. Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case. See Fox v.','Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case.',0,'2022-04-05 01:45:58','2022-04-05 01:45:58'),(630,46338,46512,'workers’ compensation','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD & Friends, on the fourth Friday of every month!','For more updates on developments in New York <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD &amp; Friends, on the fourth Friday of every month!','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD &amp; Friends, on the fourth Friday of every month!','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD & Friends, on the fourth Friday of every month!','for case law updated to stay on the cutting-edge of workers’ compensation law in New York. This month',0,'2022-04-05 01:45:58','2022-04-05 01:45:58'),(631,46338,46555,'workers’ compensation','Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case','Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> case','Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case','This decision is significant, in light of recent Third Department case law that we use to dispute doctors’ opinions on causal relationship. Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case. See Fox v.','Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case.',0,'2022-04-05 01:45:58','2022-04-05 01:45:58'),(632,46338,46555,'workers’ compensation','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD & Friends, on the fourth Friday of every month!','For more updates on developments in New York <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD &amp; Friends, on the fourth Friday of every month!','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD &amp; Friends, on the fourth Friday of every month!','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD & Friends, on the fourth Friday of every month!','for case law updated to stay on the cutting-edge of workers’ compensation law in New York. This month',0,'2022-04-05 01:45:58','2022-04-05 01:45:58'),(633,46338,46555,'workers’ compensation','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD & Friends, on the fourth Friday of every month!','For more updates on developments in New York <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD &amp; Friends, on the fourth Friday of every month!','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD &amp; Friends, on the fourth Friday of every month!','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD & Friends, on the fourth Friday of every month!','for case law updated to stay on the cutting-edge of workers’ compensation law in New York. This month',0,'2022-04-05 01:45:58','2022-04-05 01:45:58'),(634,46338,46340,'medical evidence','2020) (finding claimant’s medical evidence insufficient to support a claim for an allegedly causally-related meniscal tear where the doctor testified that it is “very reasonable that something could have happened at work that exacerbated a chronic condition” or that there was a “strong possibility” that the claimant suffered an acute meniscal tear)','2020) (finding claimant’s <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\">medical evidence</a> insufficient to support a claim for an allegedly causally-related meniscal tear where the doctor testified that it is “very reasonable that something could have happened at work that exacerbated a chronic condition” or that there was a “strong possibility” that the claimant suffered an acute meniscal tear)','2020) (finding claimant’s medical evidence insufficient to support a claim for an allegedly causally-related meniscal tear where the doctor testified that it is “very reasonable that something could have happened at work that exacerbated a chronic condition” or that there was a “strong possibility” that the claimant suffered an acute meniscal tear)','Borg Warner, 186 A.D.3d 1772, 1773 (3d Dept. 2020) (finding claimant’s medical evidence insufficient to support a claim for an allegedly causally-related meniscal tear where the doctor testified that it is “very reasonable that something could have happened at work that exacerbated a chronic condition” or that there was a “strong possibility” that the claimant suffered an acute meniscal tear).','2020) (finding claimant’s medical evidence insufficient to support a claim for an allegedly causally-related meniscal tear where the doctor testified that it is “very reasonable that something could have happened at work that exacerbated a chronic condition” or that there was a “strong possibility” that the claimant suffered an acute meniscal tear',0,'2022-04-05 01:45:58','2022-04-05 01:45:58'),(635,46338,46236,'updates on developments in New York workers’ compensation law','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD & Friends, on the fourth Friday of every month!','For more <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/client-resources/case-law-updates-lomad-case-law-updates/\">updates on developments in New York workers’ compensation law</a>, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD &amp; Friends, on the fourth Friday of every month!','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD &amp; Friends, on the fourth Friday of every month!','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD & Friends, on the fourth Friday of every month!','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD &amp; Friends, on the fourth Friday of every month!',0,'2022-04-05 01:45:58','2022-04-05 01:45:58'),(636,46338,48276,'compensation law','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD & Friends, on the fourth Friday of every month!','For more updates on developments in New York workers’ <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/amherst-workers-compensation-defense-law-office/\">compensation law</a>, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD &amp; Friends, on the fourth Friday of every month!','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD &amp; Friends, on the fourth Friday of every month!','For more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD & Friends, on the fourth Friday of every month!','for case law updated to stay on the cutting-edge of workers’ compensation law in New York. This month',0,'2022-04-05 01:45:58','2022-04-05 01:45:58'),(637,46546,46511,'carrier or employer','Simply sending a letter indicating that the carrier or employer is willing to provide such services does not appear to be sufficient','Simply sending a letter indicating that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">carrier or employer</a> is willing to provide such services does not appear to be sufficient','Simply sending a letter indicating that the carrier or employer is willing to provide such services does not appear to be sufficient','Simply sending a letter indicating that the carrier or employer is willing to provide such services does not appear to be sufficient.  Based on the Board Panel decisions, the offer of assistance must an actual offer of retraining, or a specific offer of job search assistance through a company which provides such services, not simply an indication that the carrier will offer such services.','Simply sending a letter indicating that the carrier or employer is willing to provide such services does not appear to be sufficient.',0,'2022-04-05 01:45:59','2022-04-05 01:45:59'),(638,46546,46511,'carrier or employer','Thus, the likely best practice if a carrier or employer wants to challenge a PPD claimant’s entitlement to ongoing benefits is to retain a retraining or job search assistance company and have the company send a correspondence to the claimant detailing the services that will be provided','Thus, the likely best practice if a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">carrier or employer</a> wants to challenge a PPD claimant’s entitlement to ongoing benefits is to retain a retraining or job search assistance company and have the company send a correspondence to the claimant detailing the services that will be provided','Thus, the likely best practice if a carrier or employer wants to challenge a PPD claimant’s entitlement to ongoing benefits is to retain a retraining or job search assistance company and have the company send a correspondence to the claimant detailing the services that will be provided','Thus, the likely best practice if a carrier or employer wants to challenge a PPD claimant’s entitlement to ongoing benefits is to retain a retraining or job search assistance company and have the company send a correspondence to the claimant detailing the services that will be provided.  Of course, the letter should be simultaneously copied to the Claimant’s attorney.  ','Thus, the likely best practice if a carrier or employer wants to challenge a PPD claimant’s entitlement to ongoing benefits is to retain a retraining or job search assistance company and have the company send a correspondence to the claimant detailing the services that will be provided.',0,'2022-04-05 01:45:59','2022-04-05 01:45:59'),(639,46546,46370,'claim for a total industrial','A carrier or employer may want to weigh the chances that such an individual could make a claim for a total industrial disability when challenging his or her entitlement to PPD benefits','A carrier or employer may want to weigh the chances that such an individual could make a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/02/occupational-disease-claims-after-matter-of-pinnacle-industries-ii-llc-2019-ny-wrk-comp-g2020587/\">claim for a total industrial</a> disability when challenging his or her entitlement to PPD benefits','A carrier or employer may want to weigh the chances that such an individual could make a claim for a total industrial disability when challenging his or her entitlement to PPD benefits','A carrier or employer may want to weigh the chances that such an individual could make a claim for a total industrial disability when challenging his or her entitlement to PPD benefits.  Thus, having a vocational firm perform a preliminary assessment of the claimant’s employability may be advisable before making a decision to employ this kind of strategy.  ','A carrier or employer may want to weigh the chances that such an individual could make a claim for a total industrial disability when challenging his or her entitlement to PPD benefits.',0,'2022-04-05 01:45:59','2022-04-05 01:45:59'),(640,46132,46421,'workers’ compensation','She is looking forward to learning more within the workers’ compensation area with our firm','She is looking forward to learning more within the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation</a> area with our firm','She is looking forward to learning more within the workers’ compensation area with our firm','She has worked extensively in the legal field for more than 10 years in various areas of law including foreclosures and contract law. She is looking forward to learning more within the workers’ compensation area with our firm.','She has worked extensively in the legal field for more than 10 years in various areas of law including foreclosures and contract law. She is looking forward to learning more within the workers’ compensation area with our firm.',0,'2022-04-05 01:46:00','2022-04-05 01:46:00'),(641,46132,46486,'workers’ compensation','She is looking forward to learning more within the workers’ compensation area with our firm','She is looking forward to learning more within the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> area with our firm','She is looking forward to learning more within the workers’ compensation area with our firm','She has worked extensively in the legal field for more than 10 years in various areas of law including foreclosures and contract law. She is looking forward to learning more within the workers’ compensation area with our firm.','She has worked extensively in the legal field for more than 10 years in various areas of law including foreclosures and contract law. She is looking forward to learning more within the workers’ compensation area with our firm.',0,'2022-04-05 01:46:00','2022-04-05 01:46:00'),(642,46132,46512,'workers’ compensation','She is looking forward to learning more within the workers’ compensation area with our firm','She is looking forward to learning more within the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> area with our firm','She is looking forward to learning more within the workers’ compensation area with our firm','She has worked extensively in the legal field for more than 10 years in various areas of law including foreclosures and contract law. She is looking forward to learning more within the workers’ compensation area with our firm.','She has worked extensively in the legal field for more than 10 years in various areas of law including foreclosures and contract law. She is looking forward to learning more within the workers’ compensation area with our firm.',0,'2022-04-05 01:46:00','2022-04-05 01:46:00'),(643,46132,46555,'workers’ compensation','She is looking forward to learning more within the workers’ compensation area with our firm','She is looking forward to learning more within the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> area with our firm','She is looking forward to learning more within the workers’ compensation area with our firm','She has worked extensively in the legal field for more than 10 years in various areas of law including foreclosures and contract law. She is looking forward to learning more within the workers’ compensation area with our firm.','She has worked extensively in the legal field for more than 10 years in various areas of law including foreclosures and contract law. She is looking forward to learning more within the workers’ compensation area with our firm.',0,'2022-04-05 01:46:00','2022-04-05 01:46:00'),(644,46426,46374,'hearings and reduce the cost of workers’ compensation claims','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB','When used properly, these tools can cut back on unnecessary <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">hearings and reduce the cost of workers’ compensation claims</a> for both parties and the WCB','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB.','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB.',0,'2022-04-05 01:46:01','2022-04-05 01:46:01'),(645,46426,46421,'workers’ compensation claims','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation claims</a> for both parties and the WCB','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB.','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB.',0,'2022-04-05 01:46:01','2022-04-05 01:46:01'),(646,46426,46486,'workers’ compensation','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> claims for both parties and the WCB','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB.','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB.',0,'2022-04-05 01:46:01','2022-04-05 01:46:01'),(647,46426,46512,'workers’ compensation','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> claims for both parties and the WCB','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB.','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB.',0,'2022-04-05 01:46:01','2022-04-05 01:46:01'),(648,46426,46555,'workers’ compensation','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> claims for both parties and the WCB','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB.','When used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB.',0,'2022-04-05 01:46:01','2022-04-05 01:46:01'),(649,46426,46236,'case law','Indeed, the Board calls the case law “well settled” that a medical provider is not a party pursuant to WCL Sec','Indeed, the Board calls the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/client-resources/case-law-updates-lomad-case-law-updates/\">case law</a> “well settled” that a medical provider is not a party pursuant to WCL Sec','Indeed, the Board calls the case law “well settled” that a medical provider is not a party pursuant to WCL Sec','However, the Board has clearly stated, on more than one occasion, that a medical provider is neither a party, nor a “party in interest” (a WC term of art for these purposes). Indeed, the Board calls the case law “well settled” that a medical provider is not a party pursuant to WCL Sec. 23 and thus cannot appeal, or rebut an appeal, from a WCLJ’s decision.','Indeed, the Board calls the case law “well settled” that a medical provider is not a party pursuant to WCL Sec. 23 and thus cannot appeal, or rebut an appeal, from a WCLJ’s decision. <u>Matter of Bausch &amp; Lomb</u>, 2000 NY Wrk Comp 79613525. The Board has held that a medical provider is not a “party” for the purpose of WCL Sec.',0,'2022-04-05 01:46:01','2022-04-05 01:46:01');
INSERT INTO `cuB_aioseo_links_suggestions` VALUES (650,46426,46503,'appeal relating to that treatment','In fact, the Board has gone so far as to say that a medical provider, even when his or her own treatment is at issue, need not be served a copy of an appeal relating to that treatment','In fact, the Board has gone so far as to say that a medical provider, even when his or her own treatment is at issue, need not be served a copy of an <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">appeal relating to that treatment</a>','In fact, the Board has gone so far as to say that a medical provider, even when his or her own treatment is at issue, need not be served a copy of an appeal relating to that treatment','1500020. In fact, the Board has gone so far as to say that a medical provider, even when his or her own treatment is at issue, need not be served a copy of an appeal relating to that treatment. Metropolitan Hospital, 2014 NY Wrk.','iness criteria are met. However, the Board has clearly stated, on more than one occasion, that a medical provider is neither a party, nor a “party in interest” (a WC term of art for these purposes). Indeed, the Board calls the case law “well settled” that a medical provider is not a party pursuant to WCL Sec. 23 and thus cannot appeal, or rebut an appeal, from a WCLJ’s decision. <u>Matter of Bausch &amp; Lomb</u>, 2000 NY Wrk Comp 79613525. The Board has held that a medical provider is not a “party” for the purpose of WCL Sec. 114-a(3) and thus cannot be penalized for presenting a frivolous argument to the Board through a variance or authorization request. , 2016 NY Wrk. Comp. 1500020. In fact, the Board has gone so far as to say that a medical provider, even when his or her own treatment is at issue, need not be served a copy of an appeal relating to that treatment. <u>Metropolitan Hospital</u>, 2014 NY Wrk. Comp. 0428844. If you are not subject to the jurisdiction of the Board for the purpose of a penalty for a frivolous objection, and if for all other enumerated purposes you are not a “party” or a “party in interest,” then you cannot lodge an objection to a Proposed Decision.',0,'2022-04-05 01:46:01','2022-04-05 01:46:01'),(651,46540,46541,'filed a 3 party action','Defendants filed a 3 party action against the employer/owner for contribution for the injuries sustained by his employee','Defendants <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\">filed a 3 party action</a> against the employer/owner for contribution for the injuries sustained by his employee','Defendants filed a 3 party action against the employer/owner for contribution for the injuries sustained by his employee','The employee/passenger sued defendants who were the driver and owner of the other vehicle involved in the accident. Defendants filed a 3 party action against the employer/owner for contribution for the injuries sustained by his employee.','defendants who were the driver and owner of the other vehicle involved in the accident. Defendants filed a 3 party action against the employer/owner for contribution for the injuries sustained by his employee.',0,'2022-04-05 01:46:02','2022-04-05 01:46:02'),(652,46540,46348,'liability of an employer set forth in section','The right to compensation or benefits under this chapter, shall be the exclusive remedy to an employee…when such employee is injured or killed by the negligence or wrong of another in the same employ…The limitation of liability of an employer set forth in section eleven of this article for the injury or death of an employee shall be applicable to another in the same employ…','The right to compensation or benefits under this chapter, shall be the exclusive remedy to an employee…when such employee is injured or killed by the negligence or wrong of another in the same employ…The limitation of <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/04/section-44-not-even-a-portion-of-liability-for-the-occupational-disease/\">liability of an employer set forth in section</a> eleven of this article for the injury or death of an employee shall be applicable to another in the same employ…','The right to compensation or benefits under this chapter, shall be the exclusive remedy to an employee…when such employee is injured or killed by the negligence or wrong of another in the same employ…The limitation of liability of an employer set forth in section eleven of this article for the injury or death of an employee shall be applicable to another in the same employ…','The right to compensation or benefits under this chapter, shall be the exclusive remedy to an employee…when such employee is injured or killed by the negligence or wrong of another in the same employ…The limitation of liability of an employer set forth in section eleven of this article for the injury or death of an employee shall be applicable to another in the same employ…','The right to compensation or benefits under this chapter, shall be the exclusive remedy to an employee…when such employee is injured or killed by the negligence or wrong of another in the same employ…The limitation of liability of an employer set forth in section eleven of this article for the injury or death of an employee shall be applicable to another in the same employ…',0,'2022-04-05 01:46:02','2022-04-05 01:46:02'),(653,46540,46340,'medical evidence','…An employer shall not be liable for contribution or indemnity to any third person based upon liability for injuries sustained by an employee acting within the scope of his or her employment for such employer unless such third person proves through competent medical evidence that such employee has sustained a “grave injury”…','…An employer shall not be liable for contribution or indemnity to any third person based upon liability for injuries sustained by an employee acting within the scope of his or her employment for such employer unless such third person proves through competent <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\">medical evidence</a> that such employee has sustained a “grave injury”…','…An employer shall not be liable for contribution or indemnity to any third person based upon liability for injuries sustained by an employee acting within the scope of his or her employment for such employer unless such third person proves through competent medical evidence that such employee has sustained a “grave injury”…','…An employer shall not be liable for contribution or indemnity to any third person based upon liability for injuries sustained by an employee acting within the scope of his or her employment for such employer unless such third person proves through competent medical evidence that such employee has sustained a “grave injury”…','…An employer shall not be liable for contribution or indemnity to any third person based upon liability for injuries sustained by an employee acting within the scope of his or her employment for such employer unless such third person proves through competent medical evidence that such employee has sustained a “grave injury”…',0,'2022-04-05 01:46:02','2022-04-05 01:46:02'),(654,46166,46421,'workers’ compensation','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997','Melissa began her practice defending <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation</a> insurance carriers and self-insured employers since shortly after she was admitted in 1997','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997','Owner and managing attorney of , in Amherst, exclusively practices workers’ compensation defense. Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997.','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997.',0,'2022-04-05 01:46:02','2022-04-05 01:46:02'),(655,46166,46421,'workers’ compensation','Melissa frequently lectures on and blogs about recent developments in workers’ compensation law','Melissa frequently lectures on and blogs about recent developments in <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation</a> law','Melissa frequently lectures on and blogs about recent developments in workers’ compensation law','Melissa frequently lectures on and blogs about recent developments in workers’ compensation law. She is the founder, owner and moderator of the Linkedin Group New York Workers’ Compensation Forum, which currently boasts over 1,800 members.','Melissa frequently lectures on and blogs about recent developments in workers’ compensation law.',0,'2022-04-05 01:46:02','2022-04-05 01:46:02'),(656,46166,46486,'workers’ compensation','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997','Melissa began her practice defending <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> insurance carriers and self-insured employers since shortly after she was admitted in 1997','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997','Owner and managing attorney of , in Amherst, exclusively practices workers’ compensation defense. Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997.','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997.',0,'2022-04-05 01:46:02','2022-04-05 01:46:02'),(657,46166,46486,'workers’ compensation','Melissa frequently lectures on and blogs about recent developments in workers’ compensation law','Melissa frequently lectures on and blogs about recent developments in <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> law','Melissa frequently lectures on and blogs about recent developments in workers’ compensation law','Melissa frequently lectures on and blogs about recent developments in workers’ compensation law. She is the founder, owner and moderator of the Linkedin Group New York Workers’ Compensation Forum, which currently boasts over 1,800 members.','Melissa frequently lectures on and blogs about recent developments in workers’ compensation law.',0,'2022-04-05 01:46:02','2022-04-05 01:46:02'),(658,46166,46512,'workers’ compensation','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997','Melissa began her practice defending <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> insurance carriers and self-insured employers since shortly after she was admitted in 1997','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997','Owner and managing attorney of , in Amherst, exclusively practices workers’ compensation defense. Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997.','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997.',0,'2022-04-05 01:46:02','2022-04-05 01:46:02'),(659,46166,46512,'workers’ compensation','Melissa frequently lectures on and blogs about recent developments in workers’ compensation law','Melissa frequently lectures on and blogs about recent developments in <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> law','Melissa frequently lectures on and blogs about recent developments in workers’ compensation law','Melissa frequently lectures on and blogs about recent developments in workers’ compensation law. She is the founder, owner and moderator of the Linkedin Group New York Workers’ Compensation Forum, which currently boasts over 1,800 members.','Melissa frequently lectures on and blogs about recent developments in workers’ compensation law.',0,'2022-04-05 01:46:02','2022-04-05 01:46:02'),(660,46166,46555,'workers’ compensation insurance carriers and self-insured employers','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997','Melissa began her practice defending <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation insurance carriers and self-insured employers</a> since shortly after she was admitted in 1997','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997','Owner and managing attorney of , in Amherst, exclusively practices workers’ compensation defense. Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997.','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997.',0,'2022-04-05 01:46:02','2022-04-05 01:46:02'),(661,46166,46555,'workers’ compensation','Melissa frequently lectures on and blogs about recent developments in workers’ compensation law','Melissa frequently lectures on and blogs about recent developments in <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> law','Melissa frequently lectures on and blogs about recent developments in workers’ compensation law','Melissa frequently lectures on and blogs about recent developments in workers’ compensation law. She is the founder, owner and moderator of the Linkedin Group New York Workers’ Compensation Forum, which currently boasts over 1,800 members.','Melissa frequently lectures on and blogs about recent developments in workers’ compensation law.',0,'2022-04-05 01:46:02','2022-04-05 01:46:02'),(662,46166,46541,'insurance carriers','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997','Melissa began her practice defending workers’ compensation <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\">insurance carriers</a> and self-insured employers since shortly after she was admitted in 1997','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997','Owner and managing attorney of , in Amherst, exclusively practices workers’ compensation defense. Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997.','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997.',0,'2022-04-05 01:46:02','2022-04-05 01:46:02'),(663,46166,46511,'carriers and self-insured employers','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997','Melissa began her practice defending workers’ compensation insurance <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">carriers and self-insured employers</a> since shortly after she was admitted in 1997','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997','Owner and managing attorney of , in Amherst, exclusively practices workers’ compensation defense. Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997.','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997.',0,'2022-04-05 01:46:02','2022-04-05 01:46:02'),(664,46166,46546,'carriers and self-insured employers','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997','Melissa began her practice defending workers’ compensation insurance <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">carriers and self-insured employers</a> since shortly after she was admitted in 1997','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997','Owner and managing attorney of , in Amherst, exclusively practices workers’ compensation defense. Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997.','Melissa began her practice defending workers’ compensation insurance carriers and self-insured employers since shortly after she was admitted in 1997.',0,'2022-04-05 01:46:02','2022-04-05 01:46:02'),(665,46166,48276,'compensation law','Melissa frequently lectures on and blogs about recent developments in workers’ compensation law','Melissa frequently lectures on and blogs about recent developments in workers’ <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/amherst-workers-compensation-defense-law-office/\">compensation law</a>','Melissa frequently lectures on and blogs about recent developments in workers’ compensation law','Melissa frequently lectures on and blogs about recent developments in workers’ compensation law. She is the founder, owner and moderator of the Linkedin Group New York Workers’ Compensation Forum, which currently boasts over 1,800 members.','Melissa frequently lectures on and blogs about recent developments in workers’ compensation law. She is the founder, owner and moderator of the Linkedin Group New York Workers’ Compensation Forum, which currently boasts over 1,800 members.',0,'2022-04-05 01:46:02','2022-04-05 01:46:02'),(666,46370,46387,'compensation due the employee for his loss','In hearing loss cases, pursuant to Workers’ Compensation Law § 49-ee(1), “[t]he last employer in whose employment the employee was exposed to harmful noise … [is] liable for the payment of the total compensation due the employee for his loss of hearing caused by all of his employments in which he was exposed to harmful noise.”(Woodruff v Goulds Pumps/ITT Indus., 18 A.D.3d 1063 [2005]).','<em>In hearing loss cases, pursuant to Workers’ Compensation Law § 49-ee(1), “[t]he last employer in whose employment the employee was exposed to harmful noise … [is] liable for the payment of the total <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\">compensation due the employee for his loss</a> of hearing caused by all of his employments in which he was exposed to harmful noise.”(<u>Woodruff v Goulds Pumps/ITT Indus</u>., 18 A.D.3d 1063 [2005]).</em>','<em>In hearing loss cases, pursuant to Workers’ Compensation Law § 49-ee(1), “[t]he last employer in whose employment the employee was exposed to harmful noise … [is] liable for the payment of the total compensation due the employee for his loss of hearing caused by all of his employments in which he was exposed to harmful noise.”(<u>Woodruff v Goulds Pumps/ITT Indus</u>., 18 A.D.3d 1063 [2005]).</em>','In hearing loss cases, pursuant to Workers’ Compensation Law § 49-ee(1), “[t]he last employer in whose employment the employee was exposed to harmful noise … [is] liable for the payment of the total compensation due the employee for his loss of hearing caused by all of his employments in which he was exposed to harmful noise.”(Woodruff v Goulds Pumps/ITT Indus., 18 A.D.3d 1063 [2005]).','<em>In hearing loss cases, pursuant to Workers’ Compensation Law § 49-ee(1), “[t]he last employer in whose employment the employee was exposed to harmful noise … [is] liable for the payment of the total compensation due the employee for his loss of hearing caused by all of his employments in which he was exposed to harmful noise.”(<u>Woodruff v Goulds Pumps/ITT Indus</u>., 18 A.D.3d 1063 [2005',0,'2022-04-05 03:04:59','2022-04-05 03:04:59'),(667,46370,46511,'carriers with the general policy for employers,','Good news for carriers with the general policy for employers, but bad news for wrap-up carriers','Good news for <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">carriers with the general policy for employers,</a> but bad news for wrap-up carriers','Good news for carriers with the general policy for employers, but bad news for wrap-up carriers','Good news for carriers with the general policy for employers, but bad news for wrap-up carriers. General policy carriers should now be looking for wrap-up policies that cover the claimant’s work location on every occupational disease claim filed.','Good news for carriers with the general policy for employers, but bad news for wrap-up carriers. General policy carriers should now be looking for wrap-up policies that cover the claimant’s work location on every occupational disease claim filed. We’ve seen some wrap-up carriers argue that public policy would dictate that the Board should reverse this disavowal, as <u>Pinnacle Industries</u> requires them to take on unfunded liability because their policies would have been written with the understanding that they wouldn’t be liable for occupational diseases, and so they wouldn’t have charged premiums sufficient to cover this liability. We think that’s likely to go nowhere. A similar argument had already been shot down by the Court of Appeals when carriers',0,'2022-04-05 03:04:59','2022-04-05 03:04:59'),(668,46370,46511,'prudent carrier','But a prudent carrier should have counter-arguments at the ready to defeat such arguments','But a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">prudent carrier</a> should have counter-arguments at the ready to defeat such arguments','But a prudent carrier should have counter-arguments at the ready to defeat such arguments','So far, the Board hasn’t taken that bait. But a prudent carrier should have counter-arguments at the ready to defeat such arguments. Namely, that the contract between the carrier and the insured consistently assumes the risk of legislative change and that liability for any benefit required of employers by the WCL ultimately rested with the carrier.','but bad news for wrap-up carriers. General policy carriers should now be looking for wrap-up policies that cover the claimant’s work location on every occupational disease claim filed. We’ve seen some wrap-up carriers argue that public policy would dictate that the Board should reverse this disavowal, as <u>Pinnacle Industries</u> requires them to take on unfunded liability because their policies would have been written with the understanding that they wouldn’t be liable for occupational diseases, and so they wouldn’t have charged premiums sufficient to cover this liability. We think that’s likely to go nowhere. A similar argument had already been shot down by the Court of Appeals when carriers tried to argue that closing the door on Section 25-a transfer of liability required them to assume unfunded liability. So far, the Board hasn’t taken that bait. But a prudent carrier should have counter-arguments at the ready to defeat such arguments.',0,'2022-04-05 03:04:59','2022-04-05 03:04:59'),(669,46370,46546,'carriers with the general policy for employers,','Good news for carriers with the general policy for employers, but bad news for wrap-up carriers','Good news for <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">carriers with the general policy for employers,</a> but bad news for wrap-up carriers','Good news for carriers with the general policy for employers, but bad news for wrap-up carriers','Good news for carriers with the general policy for employers, but bad news for wrap-up carriers. General policy carriers should now be looking for wrap-up policies that cover the claimant’s work location on every occupational disease claim filed.','Good news for carriers with the general policy for employers, but bad news for wrap-up carriers. General policy carriers should now be looking for wrap-up policies that cover the claimant’s work location on every occupational disease claim filed. We’ve seen some wrap-up carriers argue that public policy would dictate that the Board should reverse this disavowal, as <u>Pinnacle Industries</u> requires them to take on unfunded liability because their policies would have been written with the understanding that they wouldn’t be liable for occupational diseases, and so they wouldn’t have charged premiums sufficient to cover this liability. We think that’s likely to go nowhere. A similar argument had already been shot down by the Court of Appeals when carriers',0,'2022-04-05 03:04:59','2022-04-05 03:04:59'),(670,46370,46541,'carrier and the insured','Namely, that the contract between the carrier and the insured consistently assumes the risk of legislative change and that liability for any benefit required of employers by the WCL ultimately rested with the carrier','Namely, that the contract between the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\">carrier and the insured</a> consistently assumes the risk of legislative change and that liability for any benefit required of employers by the WCL ultimately rested with the carrier','Namely, that the contract between the carrier and the insured consistently assumes the risk of legislative change and that liability for any benefit required of employers by the WCL ultimately rested with the carrier','But a prudent carrier should have counter-arguments at the ready to defeat such arguments. Namely, that the contract between the carrier and the insured consistently assumes the risk of legislative change and that liability for any benefit required of employers by the WCL ultimately rested with the carrier. At most, the contract became less profitably, and there’s always a risk of premiums being insufficient to cover a carrier’s liability, which is a risk inherent in the insurance market.','Namely, that the contract between the carrier and the insured consistently assumes the risk of legislative change and that liability for any benefit required of employers by the WCL ultimately rested with the carrier. At most, the contract became less profitably, and there’s always a risk of premiums being insufficient to cover a carrier',0,'2022-04-05 03:04:59','2022-04-05 03:04:59'),(671,46343,46511,'counsel made a ridiculous argument that the employer','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification','In an effort to shift the burden of proof claimant’s <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">counsel made a ridiculous argument that the employer</a> should keep all videos on file in perpetuity in case there is a late notification','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification.  Claimant’s counsel further made a circular argument that because there was no surveillance the employer could not prove that there was anything even relevant on the surveillance. ','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification.',0,'2022-04-05 03:05:00','2022-04-05 03:05:00'),(672,46343,46511,'employer from properly investigating the claim','The Court has found prejudice when the delay aggravates the injury or prevents the employer from properly investigating the claim','The Court has found prejudice when the delay aggravates the injury or prevents the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">employer from properly investigating the claim</a>','The Court has found prejudice when the delay aggravates the injury or prevents the employer from properly investigating the claim','(Zraunig v New York Telephone Company, 32 A.D2d 686 [3rd Dept 1969]). The Court has found prejudice when the delay aggravates the injury or prevents the employer from properly investigating the claim. (Yagaloff v Lincoln Hall, 137 AD2d 955 [3rd Dept 1988]; Pierce v New York Telephone Company, 99 A.D.2d 898  ','the claimant must give written notice of an injury to his employer within 30 days of the accident. However, the statute further provides that the failure to give timely written notice may be excused by the Board if it finds that the claimant had a sufficient reason for the failure to provide timely written notice, the employer had actual knowledge of the accident or the employer was not prejudiced by the lack of timely notice. The courts have further found that the claimant has the burden of showing that the delay in notification did not prejudice the employer, particularly where the accident was unwitnessed. (<em>Zraunig v New York Telephone Company</em>, 32 A.D2d 686 [3rd Dept 1969]). The Court has found prejudice when the delay aggravates the injury or prevents the employer from properly investigating the claim. (<em>Yagaloff v Lincoln Hall,</em> 137 AD2d 955 [3rd Dept 1988]; <em>Pierce v New York Telephone Company</em>, 99 A.D.2d 898  [3rd Dept 1984]).',0,'2022-04-05 03:05:00','2022-04-05 03:05:00'),(673,46343,46511,'employer from properly investigating the claim','We argued that the delay prevented the employer from properly investigating the claim','We argued that the delay prevented the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">employer from properly investigating the claim</a>','We argued that the delay prevented the employer from properly investigating the claim','In this claim, it was undisputed that the claimant did not provide any notice of the injury to the employer within 30 days of the accident, either written or oral.  We argued that the delay prevented the employer from properly investigating the claim.  We provided employer testimony that the employer has a procedure for keeping closed circuit video of the specific work area for the 30-day notice period. ','wever, the statute further provides that the failure to give timely written notice may be excused by the Board if it finds that the claimant had a sufficient reason for the failure to provide timely written notice, the employer had actual knowledge of the accident or the employer was not prejudiced by the lack of timely notice. The courts have further found that the claimant has the burden of showing that the delay in notification did not prejudice the employer, particularly where the accident was unwitnessed. (<em>Zraunig v New York Telephone Company</em>, 32 A.D2d 686 [3rd Dept 1969]). The Court has found prejudice when the delay aggravates the injury or prevents the employer from properly investigating the claim. (<em>Yagaloff v Lincoln Hall,</em> 137 AD2d 955 [3rd Dept 1988]; <em>Pierce v New York Telephone Company</em>, 99 A.D.2d 898  [3rd Dept 1984]).',0,'2022-04-05 03:05:00','2022-04-05 03:05:00'),(674,46343,46546,'employer from properly investigating the claim','The Court has found prejudice when the delay aggravates the injury or prevents the employer from properly investigating the claim','The Court has found prejudice when the delay aggravates the injury or prevents the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">employer from properly investigating the claim</a>','The Court has found prejudice when the delay aggravates the injury or prevents the employer from properly investigating the claim','(Zraunig v New York Telephone Company, 32 A.D2d 686 [3rd Dept 1969]). The Court has found prejudice when the delay aggravates the injury or prevents the employer from properly investigating the claim. (Yagaloff v Lincoln Hall, 137 AD2d 955 [3rd Dept 1988]; Pierce v New York Telephone Company, 99 A.D.2d 898  ','the claimant must give written notice of an injury to his employer within 30 days of the accident. However, the statute further provides that the failure to give timely written notice may be excused by the Board if it finds that the claimant had a sufficient reason for the failure to provide timely written notice, the employer had actual knowledge of the accident or the employer was not prejudiced by the lack of timely notice. The courts have further found that the claimant has the burden of showing that the delay in notification did not prejudice the employer, particularly where the accident was unwitnessed. (<em>Zraunig v New York Telephone Company</em>, 32 A.D2d 686 [3rd Dept 1969]). The Court has found prejudice when the delay aggravates the injury or prevents the employer from properly investigating the claim. (<em>Yagaloff v Lincoln Hall,</em> 137 AD2d 955 [3rd Dept 1988]; <em>Pierce v New York Telephone Company</em>, 99 A.D.2d 898  [3rd Dept 1984]).',0,'2022-04-05 03:05:00','2022-04-05 03:05:00'),(675,46343,46546,'employer from properly investigating the claim','We argued that the delay prevented the employer from properly investigating the claim','We argued that the delay prevented the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">employer from properly investigating the claim</a>','We argued that the delay prevented the employer from properly investigating the claim','In this claim, it was undisputed that the claimant did not provide any notice of the injury to the employer within 30 days of the accident, either written or oral.  We argued that the delay prevented the employer from properly investigating the claim.  We provided employer testimony that the employer has a procedure for keeping closed circuit video of the specific work area for the 30-day notice period. ','wever, the statute further provides that the failure to give timely written notice may be excused by the Board if it finds that the claimant had a sufficient reason for the failure to provide timely written notice, the employer had actual knowledge of the accident or the employer was not prejudiced by the lack of timely notice. The courts have further found that the claimant has the burden of showing that the delay in notification did not prejudice the employer, particularly where the accident was unwitnessed. (<em>Zraunig v New York Telephone Company</em>, 32 A.D2d 686 [3rd Dept 1969]). The Court has found prejudice when the delay aggravates the injury or prevents the employer from properly investigating the claim. (<em>Yagaloff v Lincoln Hall,</em> 137 AD2d 955 [3rd Dept 1988]; <em>Pierce v New York Telephone Company</em>, 99 A.D.2d 898  [3rd Dept 1984]).',0,'2022-04-05 03:05:00','2022-04-05 03:05:00'),(676,46343,46350,'employer within 30 days of the accident,','In this claim, it was undisputed that the claimant did not provide any notice of the injury to the employer within 30 days of the accident, either written or oral','In this claim, it was undisputed that the claimant did not provide any notice of the injury to the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">employer within 30 days of the accident,</a> either written or oral','In this claim, it was undisputed that the claimant did not provide any notice of the injury to the employer within 30 days of the accident, either written or oral','We were successful in getting the Board to reverse a finding of the WCLJ who established an untimely noticed claim.  In this claim, it was undisputed that the claimant did not provide any notice of the injury to the employer within 30 days of the accident, either written or oral.  We argued that the delay prevented the employer from properly investigating the claim. ','in getting the Board to reverse a finding of the WCLJ who established an untimely noticed claim.  In this claim, it was undisputed that the claimant did not provide any notice of the injury to the employer within 30 days of the accident, either written or oral.',0,'2022-04-05 03:05:00','2022-04-05 03:05:00'),(677,46343,46344,'burden of proof claimant’','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification','In an effort to shift the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\">burden of proof claimant’</a>s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification.  Claimant’s counsel further made a circular argument that because there was no surveillance the employer could not prove that there was anything even relevant on the surveillance. ','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification.',0,'2022-04-05 03:05:00','2022-04-05 03:05:00'),(678,46343,46344,'claimant’s burden','It was the claimant’s burden to demonstrate that the delay in notification did not prejudice the employer','It was the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\">claimant’s burden</a> to demonstrate that the delay in notification did not prejudice the employer','It was the claimant’s burden to demonstrate that the delay in notification did not prejudice the employer','It was also undisputed that this was an unwitnessed accident.  It was the claimant’s burden to demonstrate that the delay in notification did not prejudice the employer.','It was also undisputed that this was an unwitnessed accident.  It was the claimant’s burden to demonstrate that the delay in notification did not prejudice the employer.',0,'2022-04-05 03:05:00','2022-04-05 03:05:00'),(679,46343,46503,'burden of proof','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification','In an effort to shift the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">burden of proof</a> claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification.  Claimant’s counsel further made a circular argument that because there was no surveillance the employer could not prove that there was anything even relevant on the surveillance. ','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification.',0,'2022-04-05 03:05:00','2022-04-05 03:05:00'),(680,46343,48934,'argument that the employer should keep all videos','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification','In an effort to shift the burden of proof claimant’s counsel made a ridiculous <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2022/02/oral-argument-video-burns-v-varriale/\">argument that the employer should keep all videos</a> on file in perpetuity in case there is a late notification','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification.  Claimant’s counsel further made a circular argument that because there was no surveillance the employer could not prove that there was anything even relevant on the surveillance. ','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification.',0,'2022-04-05 03:05:00','2022-04-05 03:05:00'),(681,46343,46541,'file in perpetuity in case','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\">file in perpetuity in case</a> there is a late notification','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification.  Claimant’s counsel further made a circular argument that because there was no surveillance the employer could not prove that there was anything even relevant on the surveillance. ','In an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification.',0,'2022-04-05 03:05:00','2022-04-05 03:05:00'),(682,46343,46553,'alleged further prejudice because if the claimant','We alleged further prejudice because if the claimant had not delayed in reporting this accident the employer would have been able to review the records and would have been able to see that there was no accident that occurred','We <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">alleged further prejudice because if the claimant</a> had not delayed in reporting this accident the employer would have been able to review the records and would have been able to see that there was no accident that occurred','We alleged further prejudice because if the claimant had not delayed in reporting this accident the employer would have been able to review the records and would have been able to see that there was no accident that occurred','Even though the claim was established by the WCLJ, we did not give up on those records, and those records actually stated there was no accident.  We alleged further prejudice because if the claimant had not delayed in reporting this accident the employer would have been able to review the records and would have been able to see that there was no accident that occurred.','we had diligently attempted to obtain medical records from a non-compensation provider who had first treated the claimant since we first learned of their existence. Even though the claim was established by the WCLJ, we did not give up on those records, and those records actually stated there was no accident.  We alleged further prejudice because if the claimant had not delayed in reporting this accident the employer would have been able to review the records and would have been able to see that there was no accident that occurred.',0,'2022-04-05 03:05:00','2022-04-05 03:05:00'),(683,46503,46553,'variances should be granted','Both medical providers then testified as to whether the variances should be granted or denied as to the additional acupuncture treatment','Both medical providers then testified as to whether the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">variances should be granted</a> or denied as to the additional acupuncture treatment','Both medical providers then testified as to whether the variances should be granted or denied as to the additional acupuncture treatment','Both medical providers then testified as to whether the variances should be granted or denied as to the additional acupuncture treatment. Claimant’s treating medical provider testified that the claimant had undergone other treatment modalities but that acupuncture was the only modality that helped maintain her functional level.','Both medical providers then testified as to whether the variances should be granted or denied as to the additional acupuncture treatment. Claimant’s treating medical provider testified that the claimant had undergone other treatment modalities but that acupuncture was the only modality that helped maintain her functional level. The IME examiner testified that claimant’s treatment provider failed to meet the burden of proof when seeking the variance in that he did not include the claimant’s response to treatment or any improvement in her range of motion from the treatment.',0,'2022-04-05 03:05:01','2022-04-05 03:05:01'),(684,46503,46553,'improvement of functional','The Law Judge specifically noted that the earlier treatments provided no evidence of objective improvement of functional outcomes','The Law Judge specifically noted that the earlier treatments provided no evidence of objective <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">improvement of functional</a> outcomes','The Law Judge specifically noted that the earlier treatments provided no evidence of objective improvement of functional outcomes','The Worker’s Compensation law judge affirmed the carrier’s denials of the treatment determining that the provider failed to show that additional acupuncture treatments were medically necessary. The Law Judge specifically noted that the earlier treatments provided no evidence of objective improvement of functional outcomes.','The Worker’s Compensation law judge affirmed the carrier’s denials of the treatment determining that the provider failed to show that additional acupuncture treatments were medically necessary. The Law Judge specifically noted that the earlier treatments provided no evidence of objective improvement of functional outcomes.',0,'2022-04-05 03:05:01','2022-04-05 03:05:01'),(685,46503,46553,'variance requests','In response to the newly created Medical Treatment Guidelines, claimant’s Doctor submitted two variance requests for the acupuncture treatment, one under the neck Medical Treatment Guidelines and one under the back Medical Treatment Guidelines','In response to the newly created Medical Treatment Guidelines, claimant’s Doctor submitted two <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">variance requests</a> for the acupuncture treatment, one under the neck Medical Treatment Guidelines and one under the back Medical Treatment Guidelines','In response to the newly created Medical Treatment Guidelines, claimant’s Doctor submitted two variance requests for the acupuncture treatment, one under the neck Medical Treatment Guidelines and one under the back Medical Treatment Guidelines','After the implementation of the Medical Treatment Guidelines the claimant’s Doctor sought authorization for three acupuncture treatments per week for a period of six months to the cervical and lumbar spine. In response to the newly created Medical Treatment Guidelines, claimant’s Doctor submitted two variance requests for the acupuncture treatment, one under the neck Medical Treatment Guidelines and one under the back Medical Treatment Guidelines.','involved a claimant who sustained injuries to her neck and back. The carrier of record was Special Funds Conservation Committee under the Fund for Reopened Cases (WCL § 25-a). The claimant was receiving acupuncture treatment three times per week for a period of six weeks in 2009. After the implementation of the Medical Treatment Guidelines the claimant’s Doctor sought authorization for three acupuncture treatments per week for a period of six months to the cervical and lumbar spine. In response to the newly created Medical Treatment Guidelines, claimant’s Doctor submitted two variance requests for the acupuncture treatment, one under the neck Medical Treatment Guidelines and one under the back Medical Treatment Guidelines.',0,'2022-04-05 03:05:01','2022-04-05 03:05:01'),(686,46503,46553,'variance requests','Based on the IME examiner’s findings the carrier denied both variance requests','Based on the IME examiner’s findings the carrier denied both <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">variance requests</a>','Based on the IME examiner’s findings the carrier denied both variance requests','The carrier in response to the variance requests obtained an independent medical examination [“IME”] that found further acupuncture treatments were not medically necessary. Based on the IME examiner’s findings the carrier denied both variance requests.','Based on the IME examiner’s findings the carrier denied both variance requests.',0,'2022-04-05 03:05:01','2022-04-05 03:05:01'),(687,46503,46561,'testified that the claimant','Claimant’s treating medical provider testified that the claimant had undergone other treatment modalities but that acupuncture was the only modality that helped maintain her functional level','Claimant’s treating medical provider <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">testified that the claimant</a> had undergone other treatment modalities but that acupuncture was the only modality that helped maintain her functional level','Claimant’s treating medical provider testified that the claimant had undergone other treatment modalities but that acupuncture was the only modality that helped maintain her functional level','Both medical providers then testified as to whether the variances should be granted or denied as to the additional acupuncture treatment. Claimant’s treating medical provider testified that the claimant had undergone other treatment modalities but that acupuncture was the only modality that helped maintain her functional level. The IME examiner testified that claimant’s treatment provider failed to meet the burden of proof when seeking the variance in that he did not include the claimant’s response to treatment or any improvement in her range of motion from the treatment.','Claimant’s treating medical provider testified that the claimant had undergone other treatment modalities but that acupuncture was the only modality that helped maintain her functional level.',0,'2022-04-05 03:05:01','2022-04-05 03:05:01'),(688,46503,46543,'treatments not in accord with the medical','The Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process','The Court of Appeals then noted for <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\">treatments not in accord with the medical</a> treatment guidelines “may nevertheless be approved” through the variance process','The Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process','The Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process.','The Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process.',0,'2022-04-05 03:05:01','2022-04-05 03:05:01'),(689,46503,46543,'specifically noted that the earlier treatments','The Law Judge specifically noted that the earlier treatments provided no evidence of objective improvement of functional outcomes','The Law Judge <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\">specifically noted that the earlier treatments</a> provided no evidence of objective improvement of functional outcomes','The Law Judge specifically noted that the earlier treatments provided no evidence of objective improvement of functional outcomes','The Worker’s Compensation law judge affirmed the carrier’s denials of the treatment determining that the provider failed to show that additional acupuncture treatments were medically necessary. The Law Judge specifically noted that the earlier treatments provided no evidence of objective improvement of functional outcomes.','The Worker’s Compensation law judge affirmed the carrier’s denials of the treatment determining that the provider failed to show that additional acupuncture treatments were medically necessary. The Law Judge specifically noted that the earlier treatments provided no evidence of objective improvement of functional outcomes.',0,'2022-04-05 03:05:01','2022-04-05 03:05:01'),(690,46503,46422,'treatments not in accord with the medical treatment guidelines','The Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process','The Court of Appeals then noted for <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">treatments not in accord with the medical treatment guidelines</a> “may nevertheless be approved” through the variance process','The Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process','The Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process.','The Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process.',0,'2022-04-05 03:05:01','2022-04-05 03:05:01'),(691,46503,46482,'treatments not in accord with the medical treatment guidelines','The Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process','The Court of Appeals then noted for <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/non-acute-pain-treatment-guidelines/\">treatments not in accord with the medical treatment guidelines</a> “may nevertheless be approved” through the variance process','The Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process','The Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process.','The Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process.',0,'2022-04-05 03:05:01','2022-04-05 03:05:01'),(692,46503,46502,'treatments not in accord with the medical treatment guidelines','The Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process','The Court of Appeals then noted for <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">treatments not in accord with the medical treatment guidelines</a> “may nevertheless be approved” through the variance process','The Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process','The Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process.','The Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process.',0,'2022-04-05 03:05:01','2022-04-05 03:05:01'),(693,46503,46506,'treatments not in accord with the medical treatment guidelines','The Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process','The Court of Appeals then noted for <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">treatments not in accord with the medical treatment guidelines</a> “may nevertheless be approved” through the variance process','The Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process','The Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process.','The Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process.',0,'2022-04-05 03:05:01','2022-04-05 03:05:01'),(694,46503,46342,'medical provider has already submitted a first opinion','In fact, the Court of Appeals went further to noting that WCL § 13-a presupposes that the treating medical provider has already submitted a first opinion for the needed treatment','In fact, the Court of Appeals went further to noting that WCL § 13-a presupposes that the treating <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">medical provider has already submitted a first opinion</a> for the needed treatment','In fact, the Court of Appeals went further to noting that WCL § 13-a presupposes that the treating medical provider has already submitted a first opinion for the needed treatment','In response to the claimant’s argument that the Board’s Guidelines have shifted the burden of proof from the employer to the carrier the Court held that there was nothing with in the Worker’s Compensation Law that ever precluded the Board from requiring proof of medical necessity from the claimant’s health care provider. In fact, the Court of Appeals went further to noting that WCL § 13-a presupposes that the treating medical provider has already submitted a first opinion for the needed treatment. Regarding the presumption under WCL § 21(5), the Court of Appeals held that the presumption remains as to the facts contained in medical report, but that a claimant must first demonstrate medical necessity for the treatment.','In response to the claimant’s argument that the Board’s Guidelines have shifted the burden of proof from the employer to the carrier the Court held that there was nothing with in the Worker’s Compensation Law that ever precluded the Board from requiring proof of medical necessity from the claimant’s health care provider. In fact, the Court of Appeals went further to noting that WCL § 13-a presupposes that the treating medical provider has already submitted a first opinion for the needed treatment. Regarding the presumption under WCL § 21(5), the Court of Appeals held that the presumption remains as to the facts contained in medical report, but that a claimant must first demonstrate medical necessity for the treatment.',0,'2022-04-05 03:05:01','2022-04-05 03:05:01'),(695,46499,46511,'requires a judge to permit an employer or carrier','It requires a judge to permit an employer or carrier to cross examine a claimant’s doctor:','It <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">requires a judge to permit an employer or carrier</a> to cross examine a claimant’s doctor:','It requires a judge to permit an employer or carrier to cross examine a claimant’s doctor:','12 NYCRR §300.10(c), as most defense attorneys know, is one of the last tools remaining in our dwindling tool chest. It requires a judge to permit an employer or carrier to cross examine a claimant’s doctor:','It requires a judge to permit an employer or carrier to cross examine a claimant’s doctor',0,'2022-04-05 03:05:02','2022-04-05 03:05:02'),(696,46499,46511,'employer or its carrier','(c) When the employer or its carrier or special fund desires to produce for cross-examination an attending physician whose report is on file, the referee shall grant an adjournment for such purpose…','(c) When the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">employer or its carrier</a> or special fund desires to produce for cross-examination an attending physician whose report is on file, the referee shall grant an adjournment for such purpose…','(c) When the employer or its carrier or special fund desires to produce for cross-examination an attending physician whose report is on file, the referee shall grant an adjournment for such purpose…','(c) When the employer or its carrier or special fund desires to produce for cross-examination an attending physician whose report is on file, the referee shall grant an adjournment for such purpose…','c) When the employer or its carrier or special fund desires to produce for cross-examination an attending physician whose report is on file, the referee shall grant an adjournment for such purpose…',0,'2022-04-05 03:05:02','2022-04-05 03:05:02'),(697,46499,46546,'employer or its carrier','(c) When the employer or its carrier or special fund desires to produce for cross-examination an attending physician whose report is on file, the referee shall grant an adjournment for such purpose…','(c) When the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">employer or its carrier</a> or special fund desires to produce for cross-examination an attending physician whose report is on file, the referee shall grant an adjournment for such purpose…','(c) When the employer or its carrier or special fund desires to produce for cross-examination an attending physician whose report is on file, the referee shall grant an adjournment for such purpose…','(c) When the employer or its carrier or special fund desires to produce for cross-examination an attending physician whose report is on file, the referee shall grant an adjournment for such purpose…','c) When the employer or its carrier or special fund desires to produce for cross-examination an attending physician whose report is on file, the referee shall grant an adjournment for such purpose…',0,'2022-04-05 03:05:02','2022-04-05 03:05:02'),(698,46499,46546,'employer or carrier','It requires a judge to permit an employer or carrier to cross examine a claimant’s doctor:','It requires a judge to permit an <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">employer or carrier</a> to cross examine a claimant’s doctor:','It requires a judge to permit an employer or carrier to cross examine a claimant’s doctor:','12 NYCRR §300.10(c), as most defense attorneys know, is one of the last tools remaining in our dwindling tool chest. It requires a judge to permit an employer or carrier to cross examine a claimant’s doctor:','It requires a judge to permit an employer or carrier to cross examine a claimant’s doctor',0,'2022-04-05 03:05:02','2022-04-05 03:05:02'),(699,46499,46503,'attending physician','(c) When the employer or its carrier or special fund desires to produce for cross-examination an attending physician whose report is on file, the referee shall grant an adjournment for such purpose…','(c) When the employer or its carrier or special fund desires to produce for cross-examination an <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">attending physician</a> whose report is on file, the referee shall grant an adjournment for such purpose…','(c) When the employer or its carrier or special fund desires to produce for cross-examination an attending physician whose report is on file, the referee shall grant an adjournment for such purpose…','(c) When the employer or its carrier or special fund desires to produce for cross-examination an attending physician whose report is on file, the referee shall grant an adjournment for such purpose…','c) When the employer or its carrier or special fund desires to produce for cross-examination an attending physician whose report is on file, the referee shall grant an adjournment for such purpose…',0,'2022-04-05 03:05:02','2022-04-05 03:05:02'),(700,46499,46342,'medical witnesses in accepted or established claims','300.39 Cross examination of medical witnesses in accepted or established claims','300.39 Cross examination of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">medical witnesses in accepted or established claims</a>','300.39 Cross examination of medical witnesses in accepted or established claims','300.39 Cross examination of medical witnesses in accepted or established claims.','300.39 Cross examination of medical witnesses in accepted or established claims.',0,'2022-04-05 03:05:02','2022-04-05 03:05:02'),(701,46499,46342,'medical opinion','(3) the basis for requesting cross-examination, including any specific facts reasonably likely to be elicited on cross-examination that would undermine the witness’s medical opinion relative to the report(s)','(3) the basis for requesting cross-examination, including any specific facts reasonably likely to be elicited on cross-examination that would undermine the witness’s <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">medical opinion</a> relative to the report(s)','(3) the basis for requesting cross-examination, including any specific facts reasonably likely to be elicited on cross-examination that would undermine the witness’s medical opinion relative to the report(s)','(3) the basis for requesting cross-examination, including any specific facts reasonably likely to be elicited on cross-examination that would undermine the witness’s medical opinion relative to the report(s).','3) the basis for requesting cross-examination, including any specific facts reasonably likely to be elicited on cross-examination that would undermine the witness’s medical opinion relative to the report(s',0,'2022-04-05 03:05:02','2022-04-05 03:05:02'),(702,46499,46342,'medical opinion','If a party identifies specific evidence that, if credited by the Worker’s Compensation Law Judge, would likely result in rejection of the witness’s medical opinion, cross-examination shall be granted','If a party identifies specific evidence that, if credited by the Worker’s Compensation Law Judge, would likely result in rejection of the witness’s <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">medical opinion</a>, cross-examination shall be granted','If a party identifies specific evidence that, if credited by the Worker’s Compensation Law Judge, would likely result in rejection of the witness’s medical opinion, cross-examination shall be granted','(b) Except as provided in Workers’ Compensation Law Section 13 (e), the Workers’ Compensation Law Judge shall determine whether the requested cross-examination is reasonably necessary for the full presentation of the case or issue. If a party identifies specific evidence that, if credited by the Worker’s Compensation Law Judge, would likely result in rejection of the witness’s medical opinion, cross-examination shall be granted. If a party fails to timely request cross-examination or to identify specific evidence that would likely result in rejection of the witness’s medical opinion, cross-examination shall be denied.','If a party identifies specific evidence that, if credited by the Worker’s Compensation Law Judge, would likely result in rejection of the witness’s medical opinion, cross-examination shall be granted.',0,'2022-04-05 03:05:02','2022-04-05 03:05:02'),(703,46499,46342,'medical opinion','If a party fails to timely request cross-examination or to identify specific evidence that would likely result in rejection of the witness’s medical opinion, cross-examination shall be denied','If a party fails to timely request cross-examination or to identify specific evidence that would likely result in rejection of the witness’s <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">medical opinion</a>, cross-examination shall be denied','If a party fails to timely request cross-examination or to identify specific evidence that would likely result in rejection of the witness’s medical opinion, cross-examination shall be denied','If a party identifies specific evidence that, if credited by the Worker’s Compensation Law Judge, would likely result in rejection of the witness’s medical opinion, cross-examination shall be granted. If a party fails to timely request cross-examination or to identify specific evidence that would likely result in rejection of the witness’s medical opinion, cross-examination shall be denied. Where the party has produced a medical opinion that contains a viable difference from or is contrary to the witness’s medical opinion with respect to the particular issue to be determined, the party shall presumptively be entitled to cross-examination.','If a party identifies specific evidence that, if credited by the Worker’s Compensation Law Judge, would likely result in rejection of the witness’s medical opinion, cross-examination shall be granted. If a party fails to timely request cross-examination or to identify specific evidence that would likely result in rejection of the witness’s medical opinion, cross-examination shall be denied.',0,'2022-04-05 03:05:02','2022-04-05 03:05:02'),(704,46499,46374,'hearing no later than forty-five days','(a) All requests for cross-examination of a treating medical provider, independent medical examiner, or a physician designated by the Board to examine a claimant pursuant to section 13(e) of the Workers’ Compensation Law, shall be made in writing using the form prescribed by the Chair to request further action or on the record at a hearing no later than forty-five days from the date the Board received the medical report(s) which is the subject of the cross-examination','(a) All requests for cross-examination of a treating medical provider, independent medical examiner, or a physician designated by the Board to examine a claimant pursuant to section 13(e) of the Workers’ Compensation Law, shall be made in writing using the form prescribed by the Chair to request further action or on the record at a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">hearing no later than forty-five days</a> from the date the Board received the medical report(s) which is the subject of the cross-examination','(a) All requests for cross-examination of a treating medical provider, independent medical examiner, or a physician designated by the Board to examine a claimant pursuant to section 13(e) of the Workers’ Compensation Law, shall be made in writing using the form prescribed by the Chair to request further action or on the record at a hearing no later than forty-five days from the date the Board received the medical report(s) which is the subject of the cross-examination','(a) All requests for cross-examination of a treating medical provider, independent medical examiner, or a physician designated by the Board to examine a claimant pursuant to section 13(e) of the Workers’ Compensation Law, shall be made in writing using the form prescribed by the Chair to request further action or on the record at a hearing no later than forty-five days from the date the Board received the medical report(s) which is the subject of the cross-examination. All requests shall specify','a) All requests for cross-examination of a treating medical provider, independent medical examiner, or a physician designated by the Board to examine a claimant pursuant to section 13(e) of the Workers’ Compensation Law, shall be made in writing using the form prescribed by the Chair to request further action or on the record at a hearing no later than forty-five days from the date the Board received the medical report(s) which is the subject of the cross-examination.',0,'2022-04-05 03:05:02','2022-04-05 03:05:02'),(705,46499,46553,'granting the cross-examination; provided however that if the claimant','(c) Cross-examination shall be taken at a hearing or by deposition within forty-five days of the order granting the cross-examination; provided however that if the claimant is not represented by legal counsel, the cross-examination shall be taken at a hearing','(c) Cross-examination shall be taken at a hearing or by deposition within forty-five days of the order <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">granting the cross-examination; provided however that if the claimant</a> is not represented by legal counsel, the cross-examination shall be taken at a hearing','(c) Cross-examination shall be taken at a hearing or by deposition within forty-five days of the order granting the cross-examination; provided however that if the claimant is not represented by legal counsel, the cross-examination shall be taken at a hearing','(c) Cross-examination shall be taken at a hearing or by deposition within forty-five days of the order granting the cross-examination; provided however that if the claimant is not represented by legal counsel, the cross-examination shall be taken at a hearing.','c) Cross-examination shall be taken at a hearing or by deposition within forty-five days of the order granting the cross-examination; provided however that if the claimant is not represented by legal counsel, the cross-examination shall be taken at a hearing.',0,'2022-04-05 03:05:02','2022-04-05 03:05:02'),(706,46499,46422,'medical witness for the claimant','(e) If the medical witness for the claimant does not appear for cross-examination as scheduled, then an extension of time to take testimony shall be granted only where the Worker’s Compensation Law Judge finds that the witness could not have appeared within that period because of good cause, and that the party seeking the extension acted in good faith and with due diligence','(e) If the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">medical witness for the claimant</a> does not appear for cross-examination as scheduled, then an extension of time to take testimony shall be granted only where the Worker’s Compensation Law Judge finds that the witness could not have appeared within that period because of good cause, and that the party seeking the extension acted in good faith and with due diligence','(e) If the medical witness for the claimant does not appear for cross-examination as scheduled, then an extension of time to take testimony shall be granted only where the Worker’s Compensation Law Judge finds that the witness could not have appeared within that period because of good cause, and that the party seeking the extension acted in good faith and with due diligence','(e) If the medical witness for the claimant does not appear for cross-examination as scheduled, then an extension of time to take testimony shall be granted only where the Worker’s Compensation Law Judge finds that the witness could not have appeared within that period because of good cause, and that the party seeking the extension acted in good faith and with due diligence. If the extension is granted, the testimony shall be taken by deposition at the earliest date practicable but not more than thirty days after the date the witness was originally scheduled to testify.','e) If the medical witness for the claimant does not appear for cross-examination as scheduled, then an extension of time to take testimony shall be granted only where the Worker’s Compensation Law Judge finds that the witness could not have appeared within that period because of good cause, and that the party seeking the extension acted in good faith and with due diligence.',0,'2022-04-05 03:05:02','2022-04-05 03:05:02'),(707,46499,46541,'insurance carrier','The insurance carrier is solely responsible for enforcing a subpoena to compel the appearance of the witness at the deposition','The <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\">insurance carrier</a> is solely responsible for enforcing a subpoena to compel the appearance of the witness at the deposition','The insurance carrier is solely responsible for enforcing a subpoena to compel the appearance of the witness at the deposition','Such deposition may be taken by telephone. The insurance carrier is solely responsible for enforcing a subpoena to compel the appearance of the witness at the deposition. In the event that the insurance carrier fails to enforce a subpoena to compel appearance of the witness at the deposition, the report of the witness shall remain in evidence.','the medical witness for the insurance carrier fails to appear for cross-examination as scheduled, the insurance carrier’s right to introduce its independent medical report from the witness or to have the witness testify at a hearing or by deposition',0,'2022-04-05 03:05:02','2022-04-05 03:05:02'),(708,46499,46541,'insurance carrier','In the event that the insurance carrier fails to enforce a subpoena to compel appearance of the witness at the deposition, the report of the witness shall remain in evidence','In the event that the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\">insurance carrier</a> fails to enforce a subpoena to compel appearance of the witness at the deposition, the report of the witness shall remain in evidence','In the event that the insurance carrier fails to enforce a subpoena to compel appearance of the witness at the deposition, the report of the witness shall remain in evidence','The insurance carrier is solely responsible for enforcing a subpoena to compel the appearance of the witness at the deposition. In the event that the insurance carrier fails to enforce a subpoena to compel appearance of the witness at the deposition, the report of the witness shall remain in evidence. For any such medical witness authorized by the Chair to treat or conduct independent medical examination of injured workers or both, the Board shall promptly direct the witness to appear at such deposition.','(e) If the medical witness for the claimant does not appear for cross-examination as scheduled, then an extension of time to take testimony shall be granted only where the Worker’s Compensation Law Judge finds that the witness could not have appeared within that period because of good cause, and that the party seeking the extension acted in good faith and with due diligence. If the extension is granted, the testimony shall be taken by deposition at the earliest date practicable but not more than thirty days after the date the witness was originally scheduled to testify. Such deposition may be taken by telephone. The insurance carrier is solely responsible for enforcing a subpoena to compel the appearance of the witness at the deposition. In the event that the insurance carrier fails to enforce a subpoena to compel appearance of the witness at the deposition, the report of the witness shall remain in evidence.',0,'2022-04-05 03:05:02','2022-04-05 03:05:02'),(709,46499,46338,'decision on the substantive disputed','(f) Any order granting or denying cross-examination under this section shall be interlocutory and shall not be reviewable by the Board under Workers’ Compensation Law Section 23 until a final decision on the substantive disputed issue(s) has been made by the Workers’ Compensation Law Judge','(f) Any order granting or denying cross-examination under this section shall be interlocutory and shall not be reviewable by the Board under Workers’ Compensation Law Section 23 until a final <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/06/third-deparment-decision-disputing-causal-relationship/\">decision on the substantive disputed</a> issue(s) has been made by the Workers’ Compensation Law Judge','(f) Any order granting or denying cross-examination under this section shall be interlocutory and shall not be reviewable by the Board under Workers’ Compensation Law Section 23 until a final decision on the substantive disputed issue(s) has been made by the Workers’ Compensation Law Judge','(f) Any order granting or denying cross-examination under this section shall be interlocutory and shall not be reviewable by the Board under Workers’ Compensation Law Section 23 until a final decision on the substantive disputed issue(s) has been made by the Workers’ Compensation Law Judge.','f) Any order granting or denying cross-examination under this section shall be interlocutory and shall not be reviewable by the Board under Workers’ Compensation Law Section 23 until a final decision on the substantive disputed issue(s) has been made by the Workers’ Compensation Law Judge.',0,'2022-04-05 03:05:02','2022-04-05 03:05:02'),(710,46511,46503,'proof that further medical','3.) The carrier’s filing of a request, on a form RFA-2, to transfer liability to Special Funds when there is proof that further medical or indemnity benefits are payable;','3.) The carrier’s filing of a request, on a form RFA-2, to transfer liability to Special Funds when there is <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\">proof that further medical</a> or indemnity benefits are payable;','3.) The carrier’s filing of a request, on a form RFA-2, to transfer liability to Special Funds when there is proof that further medical or indemnity benefits are payable;','3.) The carrier’s filing of a request, on a form RFA-2, to transfer liability to Special Funds when there is proof that further medical or indemnity benefits are payable;','3.) The carrier’s filing of a request, on a form RFA-2, to transfer liability to Special Funds when there is proof that further medical or indemnity benefits are payable',0,'2022-04-05 03:05:03','2022-04-05 03:05:03'),(711,46511,46564,'sets forth “principles” for the submission','Board Subject #046-630 also sets forth “principles” for the submission of “proper and complete” applications for WCL §25-a applications and indicates that “incomplete” applications will not be considered as of the December 31, 2013 deadline','Board Subject #046-630 also <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/01/why-why-do-judges-even-set-deadlines-for-the-submission-of-memoranda-of-law/\">sets forth “principles” for the submission</a> of “proper and complete” applications for WCL §25-a applications and indicates that “incomplete” applications will not be considered as of the December 31, 2013 deadline','Board Subject #046-630 also sets forth “principles” for the submission of “proper and complete” applications for WCL §25-a applications and indicates that “incomplete” applications will not be considered as of the December 31, 2013 deadline','Board Subject #046-630 also sets forth “principles” for the submission of “proper and complete” applications for WCL §25-a applications and indicates that “incomplete” applications will not be considered as of the December 31, 2013 deadline.','Board Subject #046-630 also sets forth “principles” for the submission of “proper and complete” applications for WCL §25-a applications and indicates that “incomplete” applications will not be considered as of the December 31, 2013 deadline.',0,'2022-04-05 03:05:03','2022-04-05 03:05:03'),(712,46511,46374,'claim (an application for payment by the claimant','Now, in addition to having a case where there is a claim (an application for payment by the claimant or a health care provider) made more than seven years after the date of injury and more than three years after the last payment of compensation on a claim that has been truly closed, it appears that the employer or carrier must also submit a complete written application which will require the following to minimize the risk of having an application be deemed incomplete:','Now, in addition to having a case where there is a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claim (an application for payment by the claimant</a> or a health care provider) made more than seven years after the date of injury and more than three years after the last payment of compensation on a claim that has been truly closed, it appears that the employer or carrier must also submit a complete written application which will require the following to minimize the risk of having an application be deemed incomplete:','Now, in addition to having a case where there is a claim (an application for payment by the claimant or a health care provider) made more than seven years after the date of injury and more than three years after the last payment of compensation on a claim that has been truly closed, it appears that the employer or carrier must also submit a complete written application which will require the following to minimize the risk of having an application be deemed incomplete:','Now, in addition to having a case where there is a claim (an application for payment by the claimant or a health care provider) made more than seven years after the date of injury and more than three years after the last payment of compensation on a claim that has been truly closed, it appears that the employer or carrier must also submit a complete written application which will require the following to minimize the risk of having an application be deemed incomplete:','Now, in addition to having a case where there is a claim (an application for payment by the claimant or a health care provider) made more than seven years after the date of injury and more than three years after the last payment of compensation on a claim that has been truly closed, it appears that the employer or carrier must also submit a complete written application which will require the following to minimize the risk of having an application be deemed incomplete',0,'2022-04-05 03:05:03','2022-04-05 03:05:03'),(713,46511,46374,'claims when the claimant','The challenge will be on those claims when the claimant returned to work at another employer and is unresponsive to requests for completion of a C-25 or submits an incomplete form','The challenge will be on those <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claims when the claimant</a> returned to work at another employer and is unresponsive to requests for completion of a C-25 or submits an incomplete form','The challenge will be on those claims when the claimant returned to work at another employer and is unresponsive to requests for completion of a C-25 or submits an incomplete form','The C-25 is supposed to provide evidence that the claimant has not had any lost time as a result of the injury or that the claimant has been working at full salary and not under light duty. The challenge will be on those claims when the claimant returned to work at another employer and is unresponsive to requests for completion of a C-25 or submits an incomplete form. There are several possible mechanisms for addressing this contingency such as subpoena, attorney affirmation after reviewing eCase, affidavit of an adjuster who spoke to the claimant which might provide the requisite affirmative showing that the','The C-25 is supposed to provide evidence that the claimant has not had any lost time as a result of the injury or that the claimant has been working at full salary and not under light duty. The challenge will be on those claims when the claimant returned to work at another employer and is unresponsive to requests for completion of a C-25 or submits an incomplete form.',0,'2022-04-05 03:05:03','2022-04-05 03:05:03'),(714,46511,46546,'reopen and that there were no open ongoing issues','In addition to providing evidence that there has been no payment of compensation during the prohibited time period, the RFA-2 should also probably include a letter or other statement asserting that the medical reports do not demonstrate a change in condition or that could be taken as a medical provider’s request to reopen and that there were no open ongoing issues at time of closure such that the case was truly closed','In addition to providing evidence that there has been no payment of compensation during the prohibited time period, the RFA-2 should also probably include a letter or other statement asserting that the medical reports do not demonstrate a change in condition or that could be taken as a medical provider’s request to <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">reopen and that there were no open ongoing issues</a> at time of closure such that the case was truly closed','In addition to providing evidence that there has been no payment of compensation during the prohibited time period, the RFA-2 should also probably include a letter or other statement asserting that the medical reports do not demonstrate a change in condition or that could be taken as a medical provider’s request to reopen and that there were no open ongoing issues at time of closure such that the case was truly closed','In addition to providing evidence that there has been no payment of compensation during the prohibited time period, the RFA-2 should also probably include a letter or other statement asserting that the medical reports do not demonstrate a change in condition or that could be taken as a medical provider’s request to reopen and that there were no open ongoing issues at time of closure such that the case was truly closed.','In addition to providing evidence that there has been no payment of compensation during the prohibited time period, the RFA-2 should also probably include a letter or other statement asserting that the medical reports do not demonstrate a change in condition or that could be taken as a medical provider’s request to reopen and that there were no open ongoing issues at time of closure such that the case was truly closed.',0,'2022-04-05 03:05:03','2022-04-05 03:05:03'),(715,46511,46546,'employer or carrier','Now, in addition to having a case where there is a claim (an application for payment by the claimant or a health care provider) made more than seven years after the date of injury and more than three years after the last payment of compensation on a claim that has been truly closed, it appears that the employer or carrier must also submit a complete written application which will require the following to minimize the risk of having an application be deemed incomplete:','Now, in addition to having a case where there is a claim (an application for payment by the claimant or a health care provider) made more than seven years after the date of injury and more than three years after the last payment of compensation on a claim that has been truly closed, it appears that the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">employer or carrier</a> must also submit a complete written application which will require the following to minimize the risk of having an application be deemed incomplete:','Now, in addition to having a case where there is a claim (an application for payment by the claimant or a health care provider) made more than seven years after the date of injury and more than three years after the last payment of compensation on a claim that has been truly closed, it appears that the employer or carrier must also submit a complete written application which will require the following to minimize the risk of having an application be deemed incomplete:','Now, in addition to having a case where there is a claim (an application for payment by the claimant or a health care provider) made more than seven years after the date of injury and more than three years after the last payment of compensation on a claim that has been truly closed, it appears that the employer or carrier must also submit a complete written application which will require the following to minimize the risk of having an application be deemed incomplete:','Now, in addition to having a case where there is a claim (an application for payment by the claimant or a health care provider) made more than seven years after the date of injury and more than three years after the last payment of compensation on a claim that has been truly closed, it appears that the employer or carrier must also submit a complete written application which will require the following to minimize the risk of having an application be deemed incomplete',0,'2022-04-05 03:05:03','2022-04-05 03:05:03'),(716,46511,46546,'carrier or employer','However, it appears that the Board will be requiring the carrier or employer to submit affirmative “support” with the application demonstrating that the claimant did not have any lost time or reduced earnings as a result of the injury','However, it appears that the Board will be requiring the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">carrier or employer</a> to submit affirmative “support” with the application demonstrating that the claimant did not have any lost time or reduced earnings as a result of the injury','However, it appears that the Board will be requiring the carrier or employer to submit affirmative “support” with the application demonstrating that the claimant did not have any lost time or reduced earnings as a result of the injury','However, it appears that the Board will be requiring the carrier or employer to submit affirmative “support” with the application demonstrating that the claimant did not have any lost time or reduced earnings as a result of the injury. As a result, the employer or carrier should attach either a C-25 or some other evidence demonstrating that the claimant has not had any lost time to its RFA-2 in a claim where the claimant returned to work for a different employer.','However, it appears that the Board will be requiring the carrier or employer to submit affirmative “support” with the application demonstrating that the claimant did not have any lost time or reduced earnings as a result of the injury.',0,'2022-04-05 03:05:03','2022-04-05 03:05:03'),(717,46511,46371,'claimant returned to work','The challenge will be on those claims when the claimant returned to work at another employer and is unresponsive to requests for completion of a C-25 or submits an incomplete form','The challenge will be on those claims when the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant returned to work</a> at another employer and is unresponsive to requests for completion of a C-25 or submits an incomplete form','The challenge will be on those claims when the claimant returned to work at another employer and is unresponsive to requests for completion of a C-25 or submits an incomplete form','The C-25 is supposed to provide evidence that the claimant has not had any lost time as a result of the injury or that the claimant has been working at full salary and not under light duty. The challenge will be on those claims when the claimant returned to work at another employer and is unresponsive to requests for completion of a C-25 or submits an incomplete form. There are several possible mechanisms for addressing this contingency such as subpoena, attorney affirmation after reviewing eCase, affidavit of an adjuster who spoke to the claimant which might provide the requisite affirmative showing that the','The C-25 is supposed to provide evidence that the claimant has not had any lost time as a result of the injury or that the claimant has been working at full salary and not under light duty. The challenge will be on those claims when the claimant returned to work at another employer and is unresponsive to requests for completion of a C-25 or submits an incomplete form.',0,'2022-04-05 03:05:03','2022-04-05 03:05:03'),(718,46511,46371,'claimant working','If same employer, claimant working at full salary and not under light duty;','If same employer, <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant working</a> at full salary and not under light duty;','If same employer, claimant working at full salary and not under light duty;','c. If same employer, claimant working at full salary and not under light duty;','If same employer, claimant working at full salary and not under light duty',0,'2022-04-05 03:05:03','2022-04-05 03:05:03'),(719,46511,46372,'change in condition','No medical report demonstrating a change in condition or that could be taken as a medical provider’s request to reopen;','No medical report demonstrating a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/how-change-in-conditions-for-classified-claimants-changed-drastically/\">change in condition</a> or that could be taken as a medical provider’s request to reopen;','No medical report demonstrating a change in condition or that could be taken as a medical provider’s request to reopen;','d. No medical report demonstrating a change in condition or that could be taken as a medical provider’s request to reopen;','No medical report demonstrating a change in condition or that could be taken as a medical provider’s request to reopen',0,'2022-04-05 03:05:03','2022-04-05 03:05:03'),(720,46511,46372,'change in condition','In addition to providing evidence that there has been no payment of compensation during the prohibited time period, the RFA-2 should also probably include a letter or other statement asserting that the medical reports do not demonstrate a change in condition or that could be taken as a medical provider’s request to reopen and that there were no open ongoing issues at time of closure such that the case was truly closed','In addition to providing evidence that there has been no payment of compensation during the prohibited time period, the RFA-2 should also probably include a letter or other statement asserting that the medical reports do not demonstrate a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/how-change-in-conditions-for-classified-claimants-changed-drastically/\">change in condition</a> or that could be taken as a medical provider’s request to reopen and that there were no open ongoing issues at time of closure such that the case was truly closed','In addition to providing evidence that there has been no payment of compensation during the prohibited time period, the RFA-2 should also probably include a letter or other statement asserting that the medical reports do not demonstrate a change in condition or that could be taken as a medical provider’s request to reopen and that there were no open ongoing issues at time of closure such that the case was truly closed','In addition to providing evidence that there has been no payment of compensation during the prohibited time period, the RFA-2 should also probably include a letter or other statement asserting that the medical reports do not demonstrate a change in condition or that could be taken as a medical provider’s request to reopen and that there were no open ongoing issues at time of closure such that the case was truly closed.','In addition to providing evidence that there has been no payment of compensation during the prohibited time period, the RFA-2 should also probably include a letter or other statement asserting that the medical reports do not demonstrate a change in condition or that could be taken as a medical provider’s request to reopen and that there were no open ongoing issues at time of closure such that the case was truly closed.',0,'2022-04-05 03:05:03','2022-04-05 03:05:03'),(721,46511,46350,'work at the employer','If the Claimant has returned to work at the employer of record, the Board appears to be requiring proof that there has been no advance payment of compensation','If the Claimant has returned to <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">work at the employer</a> of record, the Board appears to be requiring proof that there has been no advance payment of compensation','If the Claimant has returned to work at the employer of record, the Board appears to be requiring proof that there has been no advance payment of compensation','If the Claimant has returned to work at the employer of record, the Board appears to be requiring proof that there has been no advance payment of compensation. It is not clear what proof will suffice.','If the Claimant has returned to work at the employer of record, the Board appears to be requiring proof that there has been no advance payment of compensation.',0,'2022-04-05 03:05:03','2022-04-05 03:05:03'),(722,46511,46350,'work at another employer','The challenge will be on those claims when the claimant returned to work at another employer and is unresponsive to requests for completion of a C-25 or submits an incomplete form','The challenge will be on those claims when the claimant returned to <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">work at another employer</a> and is unresponsive to requests for completion of a C-25 or submits an incomplete form','The challenge will be on those claims when the claimant returned to work at another employer and is unresponsive to requests for completion of a C-25 or submits an incomplete form','The C-25 is supposed to provide evidence that the claimant has not had any lost time as a result of the injury or that the claimant has been working at full salary and not under light duty. The challenge will be on those claims when the claimant returned to work at another employer and is unresponsive to requests for completion of a C-25 or submits an incomplete form. There are several possible mechanisms for addressing this contingency such as subpoena, attorney affirmation after reviewing eCase, affidavit of an adjuster who spoke to the claimant which might provide the requisite affirmative showing that the','The C-25 is supposed to provide evidence that the claimant has not had any lost time as a result of the injury or that the claimant has been working at full salary and not under light duty. The challenge will be on those claims when the claimant returned to work at another employer and is unresponsive to requests for completion of a C-25 or submits an incomplete form.',0,'2022-04-05 03:05:03','2022-04-05 03:05:03'),(723,46511,46555,'compensation from the employer','· A C-25, or the Claimant’s Application for Reopening of Claim, More Than Seven Years after Accident, which indicates that the claimant has not had any lost time as a result of the injury, has not received an advance payment of compensation from the employer of record, and that the claimant has been working at full salary and not under light duty would also in all likelihood be sufficient','· A C-25, or the Claimant’s Application for Reopening of Claim, More Than Seven Years after Accident, which indicates that the claimant has not had any lost time as a result of the injury, has not received an advance payment of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">compensation from the employer</a> of record, and that the claimant has been working at full salary and not under light duty would also in all likelihood be sufficient','· A C-25, or the Claimant’s Application for Reopening of Claim, More Than Seven Years after Accident, which indicates that the claimant has not had any lost time as a result of the injury, has not received an advance payment of compensation from the employer of record, and that the claimant has been working at full salary and not under light duty would also in all likelihood be sufficient','· A C-25, or the Claimant’s Application for Reopening of Claim, More Than Seven Years after Accident, which indicates that the claimant has not had any lost time as a result of the injury, has not received an advance payment of compensation from the employer of record, and that the claimant has been working at full salary and not under light duty would also in all likelihood be sufficient.','· A C-25, or the Claimant’s Application for Reopening of Claim, More Than Seven Years after Accident, which indicates that the claimant has not had any lost time as a result of the injury, has not received an advance payment of compensation from the employer of record, and that the claimant has been working at full salary and not under light duty would also in all likelihood be sufficient.',0,'2022-04-05 03:05:03','2022-04-05 03:05:03'),(724,46079,46350,'work accident to him, but actually denied any accident','We were able to get concessions from her PA that she never disclosed a work accident to him, but actually denied any accident','We were able to get concessions from her PA that she never disclosed a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">work accident to him, but actually denied any accident</a>','We were able to get concessions from her PA that she never disclosed a work accident to him, but actually denied any accident','My first disallowance when I first started Workers\' Compensation for a claimant who requested time off work, was denied, and just so happened to have an accident the day before the time she previously requested off is one of my favorite wins. We were able to get concessions from her PA that she never disclosed a work accident to him, but actually denied any accident. This was my favorite case because it was my first time taking claimant testimony and I got plenty of objections which would make me stumble and more nervous, and I felt humiliated for asking so many questions about the inconsistencies in the record because “asked and answered” was a frequent objection.','We were able to get concessions from her PA that she never disclosed a work accident to him, but actually denied any accident. This was my favorite case because it was my first time taking claimant testimony and I got plenty of objections which would make me stumble and more nervous, and I felt humiliated for asking so many questions about the inconsistencies in the record because “asked and answered” was a frequent objection. However, my intuition was correct and I prevailed on the same inconsistencies claimant’s counsel continued to object to questions regarding.</li>',0,'2022-04-05 03:05:04','2022-04-05 03:05:04'),(725,46079,46350,'working with the claimant on the accident','We took the deep dive and contacted other employees who were working with the claimant on the accident date','We took the deep dive and contacted other employees who were <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">working with the claimant on the accident</a> date','We took the deep dive and contacted other employees who were working with the claimant on the accident date','The claimant alleged that after he injured his foot, he fell backwards striking his back causing injuries. We took the deep dive and contacted other employees who were working with the claimant on the accident date. Every employer-eyewitness testified that the claimant injured his right foot and then sat down to await medical attention.','We took the deep dive and contacted other employees who were working with the claimant on the accident date.',0,'2022-04-05 03:05:04','2022-04-05 03:05:04'),(726,46079,46371,'working with the claimant','We took the deep dive and contacted other employees who were working with the claimant on the accident date','We took the deep dive and contacted other employees who were <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">working with the claimant</a> on the accident date','We took the deep dive and contacted other employees who were working with the claimant on the accident date','The claimant alleged that after he injured his foot, he fell backwards striking his back causing injuries. We took the deep dive and contacted other employees who were working with the claimant on the accident date. Every employer-eyewitness testified that the claimant injured his right foot and then sat down to await medical attention.','We took the deep dive and contacted other employees who were working with the claimant on the accident date.',0,'2022-04-05 03:05:04','2022-04-05 03:05:04'),(727,46079,46371,'claimant was working','The claimant was working in construction and was assigned to dump bins of debris out into a waiting garbage truck','The <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant was working</a> in construction and was assigned to dump bins of debris out into a waiting garbage truck','The claimant was working in construction and was assigned to dump bins of debris out into a waiting garbage truck','One of my favorite wins at the trial level involved an established right ankle injury (crush) and the claimant was also alleging a direct injury to the back. The claimant was working in construction and was assigned to dump bins of debris out into a waiting garbage truck. The claimant’s foot was injured by the garbage truck and the debris bin.','the trial level involved an established right ankle injury (crush) and the claimant was also alleging a direct injury to the back. The claimant was working in construction and was assigned to dump bins of debris out into a waiting garbage truck. The claimant’s foot was injured by the garbage truck',0,'2022-04-05 03:05:04','2022-04-05 03:05:04'),(728,46079,46553,'claimant alleged','The claimant alleged that after he injured his foot, he fell backwards striking his back causing injuries','The <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">claimant alleged</a> that after he injured his foot, he fell backwards striking his back causing injuries','The claimant alleged that after he injured his foot, he fell backwards striking his back causing injuries','The claimant’s foot was injured by the garbage truck and the debris bin. The claimant alleged that after he injured his foot, he fell backwards striking his back causing injuries. We took the deep dive and contacted other employees who were working with the claimant on the accident date.','the trial level involved an established right ankle injury (crush) and the claimant was also alleging a direct injury to the back. The claimant was working in construction and was assigned to dump bins of debris out into a waiting garbage truck. The claimant’s foot was injured by the garbage truck and the debris bin. The claimant alleged that after he injured his foot, he fell backwards striking his back causing injuries.',0,'2022-04-05 03:05:04','2022-04-05 03:05:04'),(729,46079,46561,'testified that the claimant','Every employer-eyewitness testified that the claimant injured his right foot and then sat down to await medical attention','Every employer-eyewitness <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">testified that the claimant</a> injured his right foot and then sat down to await medical attention','Every employer-eyewitness testified that the claimant injured his right foot and then sat down to await medical attention','We took the deep dive and contacted other employees who were working with the claimant on the accident date. Every employer-eyewitness testified that the claimant injured his right foot and then sat down to await medical attention. Further, the medical reports did not state a direct back injury until months later.','Every employer-eyewitness testified that the claimant injured his right foot and then sat down to await medical attention.',0,'2022-04-05 03:05:04','2022-04-05 03:05:04'),(730,46079,46422,'medical reports did not state','Further, the medical reports did not state a direct back injury until months later','Further, the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">medical reports did not state</a> a direct back injury until months later','Further, the medical reports did not state a direct back injury until months later','Every employer-eyewitness testified that the claimant injured his right foot and then sat down to await medical attention. Further, the medical reports did not state a direct back injury until months later. Based on the overwhelming evidence that we were able to produce, we prevailed on having the back injury disallowed from the claim.','Further, the medical reports did not state a direct back injury until months later. Based on the overwhelming evidence that we were able to produce, we prevailed on having the back injury disallowed from the claim. The WCLJ found our three employer witnesses were more credible than the claimant in describing the accident, and that the claimant did not have the complaints until a few months later.',0,'2022-04-05 03:05:04','2022-04-05 03:05:04'),(731,46079,46506,'medical reports did not state a direct back','Further, the medical reports did not state a direct back injury until months later','Further, the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">medical reports did not state a direct back</a> injury until months later','Further, the medical reports did not state a direct back injury until months later','Every employer-eyewitness testified that the claimant injured his right foot and then sat down to await medical attention. Further, the medical reports did not state a direct back injury until months later. Based on the overwhelming evidence that we were able to produce, we prevailed on having the back injury disallowed from the claim.','Further, the medical reports did not state a direct back injury until months later. Based on the overwhelming evidence that we were able to produce, we prevailed on having the back injury disallowed from the claim. The WCLJ found our three employer witnesses were more credible than the claimant in describing the accident, and that the claimant did not have the complaints until a few months later.',0,'2022-04-05 03:05:04','2022-04-05 03:05:04'),(732,46079,46342,'disallowed from the claim','Based on the overwhelming evidence that we were able to produce, we prevailed on having the back injury disallowed from the claim','Based on the overwhelming evidence that we were able to produce, we prevailed on having the back injury <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">disallowed from the claim</a>','Based on the overwhelming evidence that we were able to produce, we prevailed on having the back injury disallowed from the claim','Further, the medical reports did not state a direct back injury until months later. Based on the overwhelming evidence that we were able to produce, we prevailed on having the back injury disallowed from the claim. The WCLJ found our three employer witnesses were more credible than the claimant in describing the accident, and that the claimant did not have the complaints until a few months later.','Based on the overwhelming evidence that we were able to produce, we prevailed on having the back injury disallowed from the claim. The WCLJ found our three employer witnesses were more credible than the claimant in describing the accident, and that the claimant did not have the complaints until a few months later. This was a great win as the claim was then limited to the right ankle injury without expanding the sites of injury.</li>',0,'2022-04-05 03:05:04','2022-04-05 03:05:04'),(733,46415,46374,'claim – I have the risk factors for CTS –','I did not file a claim – I have the risk factors for CTS – I am a 51 year old overweight woman','I did not file a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claim – I have the risk factors for CTS –</a> I am a 51 year old overweight woman','I did not file a claim – I have the risk factors for CTS – I am a 51 year old overweight woman','I proably won’t miss any time from work this time either. I did not file a claim – I have the risk factors for CTS – I am a 51 year old overweight woman. If I put this through workers’ compensation, and I believe I could have established a compensable claim if I sought to, I would receive awards for approximately $53,000.','I will be having left CTS release in a couple of weeks. I also had the right done 3 years ago. I didn’t miss any time from work. The surgery made me better. I proably won’t miss any time from work this time either. I did not file a claim – I have the risk factors for CTS – I am a 51 year old overweight woman.',0,'2022-04-05 03:05:05','2022-04-05 03:05:05'),(734,46415,46421,'claim – I have the risk factors for CTS –','I did not file a claim – I have the risk factors for CTS – I am a 51 year old overweight woman','I did not file a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">claim – I have the risk factors for CTS –</a> I am a 51 year old overweight woman','I did not file a claim – I have the risk factors for CTS – I am a 51 year old overweight woman','I proably won’t miss any time from work this time either. I did not file a claim – I have the risk factors for CTS – I am a 51 year old overweight woman. If I put this through workers’ compensation, and I believe I could have established a compensable claim if I sought to, I would receive awards for approximately $53,000.','I will be having left CTS release in a couple of weeks. I also had the right done 3 years ago. I didn’t miss any time from work. The surgery made me better. I proably won’t miss any time from work this time either. I did not file a claim – I have the risk factors for CTS – I am a 51 year old overweight woman.',0,'2022-04-05 03:05:05','2022-04-05 03:05:05'),(735,46341,46561,'claimant testified','At the trial level, claimant testified','At the trial level, <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">claimant testified</a>','At the trial level, claimant testified','At the trial level, claimant testified. Upon conclusion of the testimony, we aggressively argued that the claimant had voluntarily retired – as no doctor suggested or advised to retire, and the claimant testified that it was time for her to retire from the hospital.','At the trial level, claimant testified. Upon conclusion of the testimony, we aggressively argued that the claimant had voluntarily retired – as no doctor suggested or advised to retire, and the claimant testified that it was time for her to retire from the hospital. Further, we argued that the claim for reduced earnings while working at the deli was improper. Specifically, there were no doctors providing any work restrictions and therefore the claimant’s reduced earnings were due solely to the claimant’s own decision to work part-time.',0,'2022-04-05 03:05:06','2022-04-05 03:05:06'),(736,46341,46371,'claimant had voluntarily retired –','Upon conclusion of the testimony, we aggressively argued that the claimant had voluntarily retired – as no doctor suggested or advised to retire, and the claimant testified that it was time for her to retire from the hospital','Upon conclusion of the testimony, we aggressively argued that the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant had voluntarily retired –</a> as no doctor suggested or advised to retire, and the claimant testified that it was time for her to retire from the hospital','Upon conclusion of the testimony, we aggressively argued that the claimant had voluntarily retired – as no doctor suggested or advised to retire, and the claimant testified that it was time for her to retire from the hospital','At the trial level, claimant testified. Upon conclusion of the testimony, we aggressively argued that the claimant had voluntarily retired – as no doctor suggested or advised to retire, and the claimant testified that it was time for her to retire from the hospital. Further, we argued that the claim for reduced earnings while working at the deli was improper.','Upon conclusion of the testimony, we aggressively argued that the claimant had voluntarily retired – as no doctor suggested or advised to retire, and the claimant testified that it was time for her to retire from the hospital.',0,'2022-04-05 03:05:06','2022-04-05 03:05:06'),(737,46341,46371,'claimant to confirm –','With the facts in our corner, we went into the hearing knowing the answers, but needed the claimant to confirm – which she did','With the facts in our corner, we went into the hearing knowing the answers, but needed the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant to confirm –</a> which she did','With the facts in our corner, we went into the hearing knowing the answers, but needed the claimant to confirm – which she did','In this claim, LOMAD took another deep dive into the record which revealed no doctor was advising to retire or provided any work restrictions. With the facts in our corner, we went into the hearing knowing the answers, but needed the claimant to confirm – which she did. This was an excellent win for our client and LOMAD!','With the facts in our corner, we went into the hearing knowing the answers, but needed the claimant to confirm – which she did.',0,'2022-04-05 03:05:06','2022-04-05 03:05:06'),(738,46341,46374,'claimant had voluntarily retired –','Upon conclusion of the testimony, we aggressively argued that the claimant had voluntarily retired – as no doctor suggested or advised to retire, and the claimant testified that it was time for her to retire from the hospital','Upon conclusion of the testimony, we aggressively argued that the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claimant had voluntarily retired –</a> as no doctor suggested or advised to retire, and the claimant testified that it was time for her to retire from the hospital','Upon conclusion of the testimony, we aggressively argued that the claimant had voluntarily retired – as no doctor suggested or advised to retire, and the claimant testified that it was time for her to retire from the hospital','At the trial level, claimant testified. Upon conclusion of the testimony, we aggressively argued that the claimant had voluntarily retired – as no doctor suggested or advised to retire, and the claimant testified that it was time for her to retire from the hospital. Further, we argued that the claim for reduced earnings while working at the deli was improper.','Upon conclusion of the testimony, we aggressively argued that the claimant had voluntarily retired – as no doctor suggested or advised to retire, and the claimant testified that it was time for her to retire from the hospital.',0,'2022-04-05 03:05:06','2022-04-05 03:05:06'),(739,46341,46374,'claimant to confirm –','With the facts in our corner, we went into the hearing knowing the answers, but needed the claimant to confirm – which she did','With the facts in our corner, we went into the hearing knowing the answers, but needed the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claimant to confirm –</a> which she did','With the facts in our corner, we went into the hearing knowing the answers, but needed the claimant to confirm – which she did','In this claim, LOMAD took another deep dive into the record which revealed no doctor was advising to retire or provided any work restrictions. With the facts in our corner, we went into the hearing knowing the answers, but needed the claimant to confirm – which she did. This was an excellent win for our client and LOMAD!','With the facts in our corner, we went into the hearing knowing the answers, but needed the claimant to confirm – which she did.',0,'2022-04-05 03:05:06','2022-04-05 03:05:06'),(740,46341,46549,'found that the claimant','The WCLJ agreed with our position and found that the claimant had voluntarily retired from her job at the hospital and was not entitled to lost time','The WCLJ agreed with our position and <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">found that the claimant</a> had voluntarily retired from her job at the hospital and was not entitled to lost time','The WCLJ agreed with our position and found that the claimant had voluntarily retired from her job at the hospital and was not entitled to lost time','The WCLJ agreed with our position and found that the claimant had voluntarily retired from her job at the hospital and was not entitled to lost time. Further, the WCLJ sided with our position that the claim for reduced earnings was based on the claimant’s decision to work part-time, not due to any work restrictions placed on her.','The WCLJ agreed with our position and found that the claimant had voluntarily retired from her job at the hospital and was not entitled to lost time. Further, the WCLJ sided with our position that the claim for reduced earnings was based on the claimant’s decision to work part-time',0,'2022-04-05 03:05:06','2022-04-05 03:05:06'),(741,46340,46338,'causal relationship','Since PFME is an issue which is usually never revisited, as it is interlocutory, it is important to be aggressive at the outset of the claim and recognizing that just because a diagnosis is given with statement of causal relationship, that diagnosis may not be an actual “injury,” and a finding of PFME should be argued against accordingly.','Since PFME is an issue which is usually never revisited, as it is interlocutory, it is important to be aggressive at the outset of the claim and recognizing that just because a diagnosis is given with statement of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/06/third-deparment-decision-disputing-causal-relationship/\">causal relationship</a>, that diagnosis may not be an actual “injury,” and a finding of PFME should be argued against accordingly.','Since PFME is an issue which is usually never revisited, as it is interlocutory, it is important to be aggressive at the outset of the claim and recognizing that just because a diagnosis is given with statement of causal relationship, that diagnosis may not be an actual “injury,” and a finding of PFME should be argued against accordingly.','Pain is a symptom and not a diagnosis and, as such, medical reports that only reference or diagnose pain are not sufficient to constitute PFME of an injury, trauma or illness.” Notably, the Board found that pain was  not sufficient for PFME, despite positive clinical findings, which claimant’s counsel argued were indicative of an injury. Since PFME is an issue which is usually never revisited, as it is interlocutory, it is important to be aggressive at the outset of the claim and recognizing that just because a diagnosis is given with statement of causal relationship, that diagnosis may not be an actual “injury,” and a finding of PFME should be argued against accordingly.','Since PFME is an issue which is usually never revisited, as it is interlocutory, it is important to be aggressive at the outset of the claim and recognizing that just because a diagnosis is given with statement of causal relationship, that diagnosis may not be an actual “injury,” and a finding of PFME should be argued against accordingly.',0,'2022-04-05 03:05:07','2022-04-05 03:05:07'),(742,46340,46344,'causal relationship','Since PFME is an issue which is usually never revisited, as it is interlocutory, it is important to be aggressive at the outset of the claim and recognizing that just because a diagnosis is given with statement of causal relationship, that diagnosis may not be an actual “injury,” and a finding of PFME should be argued against accordingly.','Since PFME is an issue which is usually never revisited, as it is interlocutory, it is important to be aggressive at the outset of the claim and recognizing that just because a diagnosis is given with statement of <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\">causal relationship</a>, that diagnosis may not be an actual “injury,” and a finding of PFME should be argued against accordingly.','Since PFME is an issue which is usually never revisited, as it is interlocutory, it is important to be aggressive at the outset of the claim and recognizing that just because a diagnosis is given with statement of causal relationship, that diagnosis may not be an actual “injury,” and a finding of PFME should be argued against accordingly.','Pain is a symptom and not a diagnosis and, as such, medical reports that only reference or diagnose pain are not sufficient to constitute PFME of an injury, trauma or illness.” Notably, the Board found that pain was  not sufficient for PFME, despite positive clinical findings, which claimant’s counsel argued were indicative of an injury. Since PFME is an issue which is usually never revisited, as it is interlocutory, it is important to be aggressive at the outset of the claim and recognizing that just because a diagnosis is given with statement of causal relationship, that diagnosis may not be an actual “injury,” and a finding of PFME should be argued against accordingly.','Since PFME is an issue which is usually never revisited, as it is interlocutory, it is important to be aggressive at the outset of the claim and recognizing that just because a diagnosis is given with statement of causal relationship, that diagnosis may not be an actual “injury,” and a finding of PFME should be argued against accordingly.',0,'2022-04-05 03:05:07','2022-04-05 03:05:07'),(743,46375,46367,'related due','The treating physician conceded in cross examination that he was only assuming the claimant’s condition was casually related due to the history provided, and then further conceded that there are many other explanations for which claimant could have these knee conditions which would NOT be work related','The treating physician conceded in cross examination that he was only assuming the claimant’s condition was casually <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/\">related due</a> to the history provided, and then further conceded that there are many other explanations for which claimant could have these knee conditions which would NOT be work related','The treating physician conceded in cross examination that he was only assuming the claimant’s condition was casually related due to the history provided, and then further conceded that there are many other explanations for which claimant could have these knee conditions which would NOT be work related','The diagnoses which claimant had were all diagnoses that could have been caused from other preexisting conditions or by other means, such as running or playing basketball, which were also included in reports from various physicians. The treating physician conceded in cross examination that he was only assuming the claimant’s condition was casually related due to the history provided, and then further conceded that there are many other explanations for which claimant could have these knee conditions which would NOT be work related. The IME doctor was able to maintain their position that the claim is not causally related.','the left knee. The issue for litigation which ultimately led to a disallowance of the claim was causal relationship. The claimant claimed to have injured his knee while working. The claimant did not seek treatment until 2 years following the alleged accident, and indicated that he did not seek treatment earlier because he avoids doctors, which raised suspicion for the type of injury being claimed and the typical pain and issues that injury would likely cause an individual. As we reviewed the case further, the history of the accident which was being provided to different physicians, as well as the history provided in claimant’s own testimony, began to create even more inconsistencies, as none of the histories appeared to be the same. In one report the claimant alleged he tripped over an object, in another he alleged he twisted his body when his knee was injured, in another he alleged he was squatting down when he injured his knee, and the inconsistencies continued from there. The diagnoses which claimant had were all diagnoses that could have been caused from other preexisting conditions or by other means, such as running or playing basketball, which were also included in reports from various physicians. The treating physician conceded in cross examination that he was only assuming the claimant’s condition was casually related due to the history provided, and then further conceded that there are many other explanations for which claimant could have these knee conditions which would NOT be work related. The IME doctor was able to maintain their position that the claim is not causally related. We highlighted the inconsistencies in both a memo of law and summations. The Judge ended up finding that the claimant had failed to demonstrate his complaints were causally related',0,'2022-04-05 04:52:36','2022-04-05 04:52:36'),(744,46375,46367,'causally related','The IME doctor was able to maintain their position that the claim is not causally related','The IME doctor was able to maintain their position that the claim is not <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/\">causally related</a>','The IME doctor was able to maintain their position that the claim is not causally related','The treating physician conceded in cross examination that he was only assuming the claimant’s condition was casually related due to the history provided, and then further conceded that there are many other explanations for which claimant could have these knee conditions which would NOT be work related. The IME doctor was able to maintain their position that the claim is not causally related. We highlighted the inconsistencies in both a memo of law and summations.','the left knee. The issue for litigation which ultimately led to a disallowance of the claim was causal relationship. The claimant claimed to have injured his knee while working. The claimant did not seek treatment until 2 years following the alleged accident, and indicated that he did not seek treatment earlier because he avoids doctors, which raised suspicion for the type of injury being claimed and the typical pain and issues that injury would likely cause an individual. As we reviewed the case further, the history of the accident which was being provided to different physicians, as well as the history provided in claimant’s own testimony, began to create even more inconsistencies, as none of the histories appeared to be the same. In one report the claimant alleged he tripped over an object, in another he alleged he twisted his body when his knee was injured, in another he alleged he was squatting down when he injured his knee, and the inconsistencies continued from there. The diagnoses which claimant had were all diagnoses that could have been caused from other preexisting conditions or by other means, such as running or playing basketball, which were also included in reports from various physicians. The treating physician conceded in cross examination that he was only assuming the claimant’s condition was casually related due to the history provided, and then further conceded that there are many other explanations for which claimant could have these knee conditions which would NOT be work related. The IME doctor was able to maintain their position that the claim is not causally related. We highlighted the inconsistencies in both a memo of law and summations. The Judge ended up finding that the claimant had failed to demonstrate his complaints were causally related to a work injury noting the multiple inconsistencies in the claim. The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s opinion on causal relationship was not credible. Additionally, the Judge noted that the fact that the claimant waited two years to treat was not credible. As such the claim was disallowed.',0,'2022-04-05 04:52:36','2022-04-05 04:52:36'),(745,46375,46367,'causally related','The Judge ended up finding that the claimant had failed to demonstrate his complaints were causally related to a work injury noting the multiple inconsistencies in the claim','The Judge ended up finding that the claimant had failed to demonstrate his complaints were <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/\">causally related</a> to a work injury noting the multiple inconsistencies in the claim','The Judge ended up finding that the claimant had failed to demonstrate his complaints were causally related to a work injury noting the multiple inconsistencies in the claim','We highlighted the inconsistencies in both a memo of law and summations. The Judge ended up finding that the claimant had failed to demonstrate his complaints were causally related to a work injury noting the multiple inconsistencies in the claim. The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s opinion on causal relationship was not credible.','the left knee. The issue for litigation which ultimately led to a disallowance of the claim was causal relationship. The claimant claimed to have injured his knee while working. The claimant did not seek treatment until 2 years following the alleged accident, and indicated that he did not seek treatment earlier because he avoids doctors, which raised suspicion for the type of injury being claimed and the typical pain and issues that injury would likely cause an individual. As we reviewed the case further, the history of the accident which was being provided to different physicians, as well as the history provided in claimant’s own testimony, began to create even more inconsistencies, as none of the histories appeared to be the same. In one report the claimant alleged he tripped over an object, in another he alleged he twisted his body when his knee was injured, in another he alleged he was squatting down when he injured his knee, and the inconsistencies continued from there. The diagnoses which claimant had were all diagnoses that could have been caused from other preexisting conditions or by other means, such as running or playing basketball, which were also included in reports from various physicians. The treating physician conceded in cross examination that he was only assuming the claimant’s condition was casually related due to the history provided, and then further conceded that there are many other explanations for which claimant could have these knee conditions which would NOT be work related. The IME doctor was able to maintain their position that the claim is not causally related. We highlighted the inconsistencies in both a memo of law and summations. The Judge ended up finding that the claimant had failed to demonstrate his complaints were causally related to a work injury noting the multiple inconsistencies in the claim. The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s opinion on causal relationship was not credible. Additionally, the Judge noted that the fact that the claimant waited two years to treat was not credible. As such the claim',0,'2022-04-05 04:52:36','2022-04-05 04:52:36'),(746,46375,46342,'opinion on causal relationship','The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s opinion on causal relationship was not credible','The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">opinion on causal relationship</a> was not credible','The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s opinion on causal relationship was not credible','The Judge ended up finding that the claimant had failed to demonstrate his complaints were causally related to a work injury noting the multiple inconsistencies in the claim. The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s opinion on causal relationship was not credible. Additionally, the Judge noted that the fact that the claimant waited two years to treat was not credible.','the left knee. The issue for litigation which ultimately led to a disallowance of the claim was causal relationship. The claimant claimed to have injured his knee while working. The claimant did not seek treatment until 2 years following the alleged accident, and indicated that he did not seek treatment earlier because he avoids doctors, which raised suspicion for the type of injury being claimed and the typical pain and issues that injury would likely cause an individual. As we reviewed the case further, the history of the accident which was being provided to different physicians, as well as the history provided in claimant’s own testimony, began to create even more inconsistencies, as none of the histories appeared to be the same. In one report the claimant alleged he tripped over an object, in another he alleged he twisted his body when his knee was injured, in another he alleged he was squatting down when he injured his knee, and the inconsistencies continued from there. The diagnoses which claimant had were all diagnoses that could have been caused from other preexisting conditions or by other means, such as running or playing basketball, which were also included in reports from various physicians. The treating physician conceded in cross examination that he was only assuming the claimant’s condition was casually related due to the history provided, and then further conceded that there are many other explanations for which claimant could have these knee conditions which would NOT be work related. The IME doctor was able to maintain their position that the claim is not causally related. We highlighted the inconsistencies in both a memo of law and summations. The Judge ended up finding that the claimant had failed to demonstrate his complaints were causally related to a work injury noting the multiple inconsistencies in the claim. The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s opinion on causal relationship was not credible. Additionally, the Judge noted that the fact that the claimant waited two years to treat was not credible.',0,'2022-04-05 04:52:36','2022-04-05 04:52:36'),(747,46375,46342,'claim is not causally','The IME doctor was able to maintain their position that the claim is not causally related','The IME doctor was able to maintain their position that the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">claim is not causally</a> related','The IME doctor was able to maintain their position that the claim is not causally related','The treating physician conceded in cross examination that he was only assuming the claimant’s condition was casually related due to the history provided, and then further conceded that there are many other explanations for which claimant could have these knee conditions which would NOT be work related. The IME doctor was able to maintain their position that the claim is not causally related. We highlighted the inconsistencies in both a memo of law and summations.','the left knee. The issue for litigation which ultimately led to a disallowance of the claim was causal relationship. The claimant claimed to have injured his knee while working. The claimant did not seek treatment until 2 years following the alleged accident, and indicated that he did not seek treatment earlier because he avoids doctors, which raised suspicion for the type of injury being claimed and the typical pain and issues that injury would likely cause an individual. As we reviewed the case further, the history of the accident which was being provided to different physicians, as well as the history provided in claimant’s own testimony, began to create even more inconsistencies, as none of the histories appeared to be the same. In one report the claimant alleged he tripped over an object, in another he alleged he twisted his body when his knee was injured, in another he alleged he was squatting down when he injured his knee, and the inconsistencies continued from there. The diagnoses which claimant had were all diagnoses that could have been caused from other preexisting conditions or by other means, such as running or playing basketball, which were also included in reports from various physicians. The treating physician conceded in cross examination that he was only assuming the claimant’s condition was casually related due to the history provided, and then further conceded that there are many other explanations for which claimant could have these knee conditions which would NOT be work related. The IME doctor was able to maintain their position that the claim is not causally related. We highlighted the inconsistencies in both a memo of law and summations. The Judge ended up finding that the claimant had failed to demonstrate his complaints were causally related',0,'2022-04-05 04:52:36','2022-04-05 04:52:36'),(748,46375,46332,'causally related','The IME doctor was able to maintain their position that the claim is not causally related','The IME doctor was able to maintain their position that the claim is not <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/07/carpal-tunnel-and-causal-relation-not-always-so-clear-cut/\">causally related</a>','The IME doctor was able to maintain their position that the claim is not causally related','The treating physician conceded in cross examination that he was only assuming the claimant’s condition was casually related due to the history provided, and then further conceded that there are many other explanations for which claimant could have these knee conditions which would NOT be work related. The IME doctor was able to maintain their position that the claim is not causally related. We highlighted the inconsistencies in both a memo of law and summations.','the left knee. The issue for litigation which ultimately led to a disallowance of the claim was causal relationship. The claimant claimed to have injured his knee while working. The claimant did not seek treatment until 2 years following the alleged accident, and indicated that he did not seek treatment earlier because he avoids doctors, which raised suspicion for the type of injury being claimed and the typical pain and issues that injury would likely cause an individual. As we reviewed the case further, the history of the accident which was being provided to different physicians, as well as the history provided in claimant’s own testimony, began to create even more inconsistencies, as none of the histories appeared to be the same. In one report the claimant alleged he tripped over an object, in another he alleged he twisted his body when his knee was injured, in another he alleged he was squatting down when he injured his knee, and the inconsistencies continued from there. The diagnoses which claimant had were all diagnoses that could have been caused from other preexisting conditions or by other means, such as running or playing basketball, which were also included in reports from various physicians. The treating physician conceded in cross examination that he was only assuming the claimant’s condition was casually related due to the history provided, and then further conceded that there are many other explanations for which claimant could have these knee conditions which would NOT be work related. The IME doctor was able to maintain their position that the claim is not causally related. We highlighted the inconsistencies in both a memo of law and summations. The Judge ended up finding that the claimant had failed to demonstrate his complaints were causally related to a work injury noting the multiple inconsistencies in the claim. The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s opinion on causal relationship was not credible. Additionally, the Judge noted that the fact that the claimant waited two years to treat was not credible. As such the claim was disallowed.',0,'2022-04-05 04:52:36','2022-04-05 04:52:36'),(749,46375,46332,'causally related','The Judge ended up finding that the claimant had failed to demonstrate his complaints were causally related to a work injury noting the multiple inconsistencies in the claim','The Judge ended up finding that the claimant had failed to demonstrate his complaints were <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/07/carpal-tunnel-and-causal-relation-not-always-so-clear-cut/\">causally related</a> to a work injury noting the multiple inconsistencies in the claim','The Judge ended up finding that the claimant had failed to demonstrate his complaints were causally related to a work injury noting the multiple inconsistencies in the claim','We highlighted the inconsistencies in both a memo of law and summations. The Judge ended up finding that the claimant had failed to demonstrate his complaints were causally related to a work injury noting the multiple inconsistencies in the claim. The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s opinion on causal relationship was not credible.','the left knee. The issue for litigation which ultimately led to a disallowance of the claim was causal relationship. The claimant claimed to have injured his knee while working. The claimant did not seek treatment until 2 years following the alleged accident, and indicated that he did not seek treatment earlier because he avoids doctors, which raised suspicion for the type of injury being claimed and the typical pain and issues that injury would likely cause an individual. As we reviewed the case further, the history of the accident which was being provided to different physicians, as well as the history provided in claimant’s own testimony, began to create even more inconsistencies, as none of the histories appeared to be the same. In one report the claimant alleged he tripped over an object, in another he alleged he twisted his body when his knee was injured, in another he alleged he was squatting down when he injured his knee, and the inconsistencies continued from there. The diagnoses which claimant had were all diagnoses that could have been caused from other preexisting conditions or by other means, such as running or playing basketball, which were also included in reports from various physicians. The treating physician conceded in cross examination that he was only assuming the claimant’s condition was casually related due to the history provided, and then further conceded that there are many other explanations for which claimant could have these knee conditions which would NOT be work related. The IME doctor was able to maintain their position that the claim is not causally related. We highlighted the inconsistencies in both a memo of law and summations. The Judge ended up finding that the claimant had failed to demonstrate his complaints were causally related to a work injury noting the multiple inconsistencies in the claim. The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s opinion on causal relationship was not credible. Additionally, the Judge noted that the fact that the claimant waited two years to treat was not credible. As such the claim',0,'2022-04-05 04:52:36','2022-04-05 04:52:36'),(750,46375,46344,'claimant’s treating doctor’s opinion on causal relationship','The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s opinion on causal relationship was not credible','The Judge noted that due to the multiple inconsistencies the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\">claimant’s treating doctor’s opinion on causal relationship</a> was not credible','The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s opinion on causal relationship was not credible','The Judge ended up finding that the claimant had failed to demonstrate his complaints were causally related to a work injury noting the multiple inconsistencies in the claim. The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s opinion on causal relationship was not credible. Additionally, the Judge noted that the fact that the claimant waited two years to treat was not credible.','the left knee. The issue for litigation which ultimately led to a disallowance of the claim was causal relationship. The claimant claimed to have injured his knee while working. The claimant did not seek treatment until 2 years following the alleged accident, and indicated that he did not seek treatment earlier because he avoids doctors, which raised suspicion for the type of injury being claimed and the typical pain and issues that injury would likely cause an individual. As we reviewed the case further, the history of the accident which was being provided to different physicians, as well as the history provided in claimant’s own testimony, began to create even more inconsistencies, as none of the histories appeared to be the same. In one report the claimant alleged he tripped over an object, in another he alleged he twisted his body when his knee was injured, in another he alleged he was squatting down when he injured his knee, and the inconsistencies continued from there. The diagnoses which claimant had were all diagnoses that could have been caused from other preexisting conditions or by other means, such as running or playing basketball, which were also included in reports from various physicians. The treating physician conceded in cross examination that he was only assuming the claimant’s condition was casually related due to the history provided, and then further conceded that there are many other explanations for which claimant could have these knee conditions which would NOT be work related. The IME doctor was able to maintain their position that the claim is not causally related. We highlighted the inconsistencies in both a memo of law and summations. The Judge ended up finding that the claimant had failed to demonstrate his complaints were causally related to a work injury noting the multiple inconsistencies in the claim. The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s opinion on causal relationship was not credible. Additionally, the Judge noted that the fact that the claimant waited two years to treat was not credible.',0,'2022-04-05 04:52:36','2022-04-05 04:52:36'),(751,46375,46338,'causal relationship','The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s opinion on causal relationship was not credible','The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s opinion on <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/06/third-deparment-decision-disputing-causal-relationship/\">causal relationship</a> was not credible','The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s opinion on causal relationship was not credible','The Judge ended up finding that the claimant had failed to demonstrate his complaints were causally related to a work injury noting the multiple inconsistencies in the claim. The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s opinion on causal relationship was not credible. Additionally, the Judge noted that the fact that the claimant waited two years to treat was not credible.','the left knee. The issue for litigation which ultimately led to a disallowance of the claim was causal relationship. The claimant claimed to have injured his knee while working. The claimant did not seek treatment until 2 years following the alleged accident, and indicated that he did not seek treatment earlier because he avoids doctors, which raised suspicion for the type of injury being claimed and the typical pain and issues that injury would likely cause an individual. As we reviewed the case further, the history of the accident which was being provided to different physicians, as well as the history provided in claimant’s own testimony, began to create even more inconsistencies, as none of the histories appeared to be the same. In one report the claimant alleged he tripped over an object, in another he alleged he twisted his body when his knee was injured, in another he alleged he was squatting down when he injured his knee, and the inconsistencies continued from there. The diagnoses which claimant had were all diagnoses that could have been caused from other preexisting conditions or by other means, such as running or playing basketball, which were also included in reports from various physicians. The treating physician conceded in cross examination that he was only assuming the claimant’s condition was casually related due to the history provided, and then further conceded that there are many other explanations for which claimant could have these knee conditions which would NOT be work related. The IME doctor was able to maintain their position that the claim is not causally related. We highlighted the inconsistencies in both a memo of law and summations. The Judge ended up finding that the claimant had failed to demonstrate his complaints were causally related to a work injury noting the multiple inconsistencies in the claim. The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s opinion on causal relationship was not credible. Additionally, the Judge noted that the fact that the claimant waited two years to treat was not credible.',0,'2022-04-05 04:52:36','2022-04-05 04:52:36'),(752,48023,46421,'workers’ compensation','She is very excited to continue to learn more about workers’ compensation law.','She is very excited to continue to learn more about <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation</a> law.','She is very excited to continue to learn more about workers’ compensation law.','During her time in college, she enjoyed being a member of the Paralegal club, where she and the other club members would help educate the campus on the role of paralegals. She is very excited to continue to learn more about workers’ compensation law.','she enjoyed being a member of the Paralegal club, where she and the other club members would help educate the campus on the role of paralegals. She is very excited to continue to learn more about workers’ compensation law.',0,'2022-04-05 04:52:41','2022-04-05 04:52:41'),(753,48023,46486,'workers’ compensation','She is very excited to continue to learn more about workers’ compensation law.','She is very excited to continue to learn more about <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> law.','She is very excited to continue to learn more about workers’ compensation law.','During her time in college, she enjoyed being a member of the Paralegal club, where she and the other club members would help educate the campus on the role of paralegals. She is very excited to continue to learn more about workers’ compensation law.','she enjoyed being a member of the Paralegal club, where she and the other club members would help educate the campus on the role of paralegals. She is very excited to continue to learn more about workers’ compensation law.',0,'2022-04-05 04:52:41','2022-04-05 04:52:41'),(754,48023,46512,'workers’ compensation','She is very excited to continue to learn more about workers’ compensation law.','She is very excited to continue to learn more about <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> law.','She is very excited to continue to learn more about workers’ compensation law.','During her time in college, she enjoyed being a member of the Paralegal club, where she and the other club members would help educate the campus on the role of paralegals. She is very excited to continue to learn more about workers’ compensation law.','she enjoyed being a member of the Paralegal club, where she and the other club members would help educate the campus on the role of paralegals. She is very excited to continue to learn more about workers’ compensation law.',0,'2022-04-05 04:52:41','2022-04-05 04:52:41'),(755,48023,46555,'workers’ compensation','She is very excited to continue to learn more about workers’ compensation law.','She is very excited to continue to learn more about <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> law.','She is very excited to continue to learn more about workers’ compensation law.','During her time in college, she enjoyed being a member of the Paralegal club, where she and the other club members would help educate the campus on the role of paralegals. She is very excited to continue to learn more about workers’ compensation law.','she enjoyed being a member of the Paralegal club, where she and the other club members would help educate the campus on the role of paralegals. She is very excited to continue to learn more about workers’ compensation law.',0,'2022-04-05 04:52:41','2022-04-05 04:52:41'),(756,46335,46350,'accident and the manner in which it occurred','“The documentary and testimonial evidence presented by the employer as to decedent’s intoxication, the circumstances preceding the accident and the manner in which it occurred sufficiently rebutted the presumption contained in Workers’ Compensation Law § 21(4) and established that decedent’s intoxication was the sole cause of the accident.”','“The documentary and testimonial evidence presented by the employer as to decedent’s intoxication, the circumstances preceding the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">accident and the manner in which it occurred</a> sufficiently rebutted the presumption contained in Workers’ Compensation Law § 21(4) and established that decedent’s intoxication was the sole cause of the accident.”','“The documentary and testimonial evidence presented by the employer as to decedent’s intoxication, the circumstances preceding the accident and the manner in which it occurred sufficiently rebutted the presumption contained in Workers’ Compensation Law § 21(4) and established that decedent’s intoxication was the sole cause of the accident.”','The Court has upheld this, finding that intoxication may overcome the presumption of §21.  “The documentary and testimonial evidence presented by the employer as to decedent’s intoxication, the circumstances preceding the accident and the manner in which it occurred sufficiently rebutted the presumption contained in Workers’ Compensation Law § 21(4) and established that decedent’s intoxication was the sole cause of the accident.”  Purcell v.','“The documentary and testimonial evidence presented by the employer as to decedent’s intoxication, the circumstances preceding the accident and the manner in which it occurred sufficiently rebutted the presumption contained in Workers’ Compensation Law § 21(4) and established that decedent’s intoxication was the sole cause of the accident.”',0,'2022-04-05 04:52:42','2022-04-05 04:52:42'),(757,46335,46502,'pain control','He also confirmed that the drugs administered by the hospital for pain control wouldn’t flag as any of the illicit substances on the tox screen','He also confirmed that the drugs administered by the hospital for <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\">pain control</a> wouldn’t flag as any of the illicit substances on the tox screen','He also confirmed that the drugs administered by the hospital for pain control wouldn’t flag as any of the illicit substances on the tox screen','We deposed the ED doctor, who confirmed that the positive tox screen was performed on the day of accident and conceded that the drugs shown in the tox screen could cause altered cognition, altered coordination, euphoria, dizziness and altered consciousness.  He also confirmed that the drugs administered by the hospital for pain control wouldn’t flag as any of the illicit substances on the tox screen.  We now had a medical opinion which strongly suggested the claimant was in an altered state at the time of the accident and confirmation that his positive tox screen was taken on the date of the accident and was not, despite the claimant’s attorney claimed, a result of the medications provided by his doctors.','he safety equipment was working.  We still had to overcome the §21 presumption and show that this accident was solely caused by the claimant’s use of controlled substances.  We deposed the ED doctor, who confirmed that the positive tox screen was performed on the day of accident and conceded that the drugs shown in the tox screen could cause altered cognition, altered coordination, euphoria, dizziness and altered consciousness.  He also confirmed that the drugs administered by the hospital for pain control wouldn’t flag as any of the illicit substances on the tox screen.  We now had a medical opinion which strongly suggested the claimant was in an altered state at the time of the accident and confirmation that his positive tox screen',0,'2022-04-05 04:52:42','2022-04-05 04:52:42'),(758,46335,46342,'medical opinion','We now had a medical opinion which strongly suggested the claimant was in an altered state at the time of the accident and confirmation that his positive tox screen was taken on the date of the accident and was not, despite the claimant’s attorney claimed, a result of the medications provided by his doctors','We now had a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">medical opinion</a> which strongly suggested the claimant was in an altered state at the time of the accident and confirmation that his positive tox screen was taken on the date of the accident and was not, despite the claimant’s attorney claimed, a result of the medications provided by his doctors','We now had a medical opinion which strongly suggested the claimant was in an altered state at the time of the accident and confirmation that his positive tox screen was taken on the date of the accident and was not, despite the claimant’s attorney claimed, a result of the medications provided by his doctors','He also confirmed that the drugs administered by the hospital for pain control wouldn’t flag as any of the illicit substances on the tox screen.  We now had a medical opinion which strongly suggested the claimant was in an altered state at the time of the accident and confirmation that his positive tox screen was taken on the date of the accident and was not, despite the claimant’s attorney claimed, a result of the medications provided by his doctors.','we had a positive drug screen and a seething employer ready to testify that the safety equipment was working.  We still had to overcome the §21 presumption and show that this accident was solely caused by the claimant’s use of controlled substances.  We deposed the ED doctor, who confirmed that the positive tox screen was performed on the day of accident and conceded that the drugs shown in the tox screen could cause altered cognition, altered coordination, euphoria, dizziness and altered consciousness.  He also confirmed that the drugs administered by the hospital for pain control wouldn’t flag as any of the illicit substances on the tox screen.  We now had a medical opinion which strongly suggested the claimant was in an altered state at the time of the accident and confirmation that his positive tox screen was taken on the date of the accident and was not, despite the claimant’s attorney claimed, a result of the medications provided by his doctors.',0,'2022-04-05 04:52:42','2022-04-05 04:52:42'),(759,46335,46549,'claimant was in an altered state','We now had a medical opinion which strongly suggested the claimant was in an altered state at the time of the accident and confirmation that his positive tox screen was taken on the date of the accident and was not, despite the claimant’s attorney claimed, a result of the medications provided by his doctors','We now had a medical opinion which strongly suggested the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">claimant was in an altered state</a> at the time of the accident and confirmation that his positive tox screen was taken on the date of the accident and was not, despite the claimant’s attorney claimed, a result of the medications provided by his doctors','We now had a medical opinion which strongly suggested the claimant was in an altered state at the time of the accident and confirmation that his positive tox screen was taken on the date of the accident and was not, despite the claimant’s attorney claimed, a result of the medications provided by his doctors','He also confirmed that the drugs administered by the hospital for pain control wouldn’t flag as any of the illicit substances on the tox screen.  We now had a medical opinion which strongly suggested the claimant was in an altered state at the time of the accident and confirmation that his positive tox screen was taken on the date of the accident and was not, despite the claimant’s attorney claimed, a result of the medications provided by his doctors.','we had a positive drug screen and a seething employer ready to testify that the safety equipment was working.  We still had to overcome the §21 presumption and show that this accident was solely caused by the claimant’s use of controlled substances.  We deposed the ED doctor, who confirmed that the positive tox screen was performed on the day of accident and conceded that the drugs shown in the tox screen could cause altered cognition, altered coordination, euphoria, dizziness and altered consciousness.  He also confirmed that the drugs administered by the hospital for pain control wouldn’t flag as any of the illicit substances on the tox screen.  We now had a medical opinion which strongly suggested the claimant was in an altered state at the time of the accident and confirmation that his positive tox screen was taken on the date of the accident and was not, despite the claimant’s attorney claimed, a result of the medications provided by his doctors.',0,'2022-04-05 04:52:42','2022-04-05 04:52:42'),(760,46335,46422,'applied if the claimant','While talking to him, we focused heavily on the usual safety requirements and how they worked to make sure that we had a solid understanding of what precautions would have applied if the claimant had properly used his safety gear','While talking to him, we focused heavily on the usual safety requirements and how they worked to make sure that we had a solid understanding of what precautions would have <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\">applied if the claimant</a> had properly used his safety gear','While talking to him, we focused heavily on the usual safety requirements and how they worked to make sure that we had a solid understanding of what precautions would have applied if the claimant had properly used his safety gear','We reached out to the employer witness, who was the owner of the company, to prepare him to testify.  While talking to him, we focused heavily on the usual safety requirements and how they worked to make sure that we had a solid understanding of what precautions would have applied if the claimant had properly used his safety gear. We even had the employer hop into a set of gear himself and send us pictures so we understood what each piece of gear was and how it worked! ','While talking to him, we focused heavily on the usual safety requirements and how they worked to make sure that we had a solid understanding of what precautions would have applied if the claimant had properly used his safety gear. We even had the employer hop into a set of gear himself and send us pictures so we understood what each piece of gear was and how it worked!  We built a timeline to make it clear to the judge that the safety gear was checked by our witness two days prior to the accident, checked by the injured worker himself on the day of the accident before he went up the tower, and checked by our witness after the accident before it was confiscated by OSHA as part of their investigation.  We also made sure our witness understood why this timeline was so important, and why we needed the judge to conclude that the safety gear',0,'2022-04-05 04:52:42','2022-04-05 04:52:42'),(761,46335,46561,'testified that while kneeling over the claimant','Then, in a coup de grâce, he testified that while kneeling over the claimant on the ground, he looked up and saw the safety gear still properly attached to the tower','Then, in a coup de grâce, he <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">testified that while kneeling over the claimant</a> on the ground, he looked up and saw the safety gear still properly attached to the tower','Then, in a coup de grâce, he testified that while kneeling over the claimant on the ground, he looked up and saw the safety gear still properly attached to the tower','He explained that if the claimant had properly used his safety gear, he would only have fallen about 9 inches.  Then, in a coup de grâce, he testified that while kneeling over the claimant on the ground, he looked up and saw the safety gear still properly attached to the tower.  He confirmed that he had personally checked it before OSHA took it, and it worked perfectly. ','Then, in a coup de grâce, he testified that while kneeling over the claimant on the ground, he looked up and saw the safety gear still properly attached to the tower.',0,'2022-04-05 04:52:42','2022-04-05 04:52:42'),(762,46148,46511,'employed by claimant’s counsel','This experience has given him unique insight into the strategies employed by claimant’s counsel, and into the way matters and issues are approached and adjudicated by the board','This experience has given him unique insight into the strategies <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">employed by claimant’s counsel</a>, and into the way matters and issues are approached and adjudicated by the board','This experience has given him unique insight into the strategies employed by claimant’s counsel, and into the way matters and issues are approached and adjudicated by the board','Day, Paul successfully represented claimants for seventeen years, handling thousands of cases involving every aspect of New York Workers’ Compensation Law. This experience has given him unique insight into the strategies employed by claimant’s counsel, and into the way matters and issues are approached and adjudicated by the board. Paul has a great understanding of the legal and medical requirements necessary to form winning arguments.','This experience has given him unique insight into the strategies employed by claimant’s counsel, and into the way matters and issues are approached and adjudicated by the board.',0,'2022-04-05 04:52:43','2022-04-05 04:52:43'),(763,46148,46504,'earned his law','He earned his law degree from the University of Toledo','He <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">earned his law</a> degree from the University of Toledo','He earned his law degree from the University of Toledo','He earned bachelor\'s degrees from SUNY at Fredonia and SUNY at Buffalo. He earned his law degree from the University of Toledo.','he western New York area. He earned bachelor\'s degrees from SUNY at Fredonia and SUNY at Buffalo. He earned his law degree from the University of Toledo.',0,'2022-04-05 04:52:43','2022-04-05 04:52:43'),(764,46347,46512,'– including','and “compromised” for a variety of reasons – including that they are not “hands-on” with regard to testing for muscle spasm/tension during range of motion measurements, etc','and “compromised” for a variety of reasons <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">– including</a> that they are not “hands-on” with regard to testing for muscle spasm/tension during range of motion measurements, etc','and “compromised” for a variety of reasons – including that they are not “hands-on” with regard to testing for muscle spasm/tension during range of motion measurements, etc','telemedicine visits are less credible than in- person visits,  and “compromised” for a variety of reasons – including that they are not “hands-on” with regard to testing for muscle spasm/tension during range of motion measurements, etc.','andled a claim in which we were attempting to get a finding of 50% degree of disability with regard to temporary rates in the record. Our IME had given an opinion of 50% based on her examination, but the treating physician had consistently opined 100%.   We deposed the treating provider, who testified that his recent examinations were done through telemedicine, and that he was able to view the claimant sufficiently  in order to make determinations for his exam report. We were ultimately able to get the treating physician to concede that  telemedicine visits are less credible than in- person visits,  and “compromised” for a variety of reasons – including that they are not “hands-on” with regard to testing for muscle spasm/tension during range of motion measurements, etc.',0,'2022-04-05 05:06:54','2022-04-05 05:06:54'),(765,46555,46376,'law enforcement officers','2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by law enforcement officers who are not employees of the United States:','2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2020/07/another-win-for-the-law-offices-of-melissa-a-day/\">law enforcement officers</a> who are not employees of the United States:','2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by law enforcement officers who are not employees of the United States:','2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by law enforcement officers who are not employees of the United States:','2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by law enforcement officers who are not employees of the United States',0,'2022-04-05 05:06:55','2022-04-05 05:06:55'),(766,46555,46376,'law enforcement officer','(1) a law enforcement officer and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–','(1) a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2020/07/another-win-for-the-law-offices-of-melissa-a-day/\">law enforcement officer</a> and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–','(1) a law enforcement officer and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–','(1) a law enforcement officer and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–','1) a law enforcement officer and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–',0,'2022-04-05 05:06:55','2022-04-05 05:06:55'),(767,46555,46376,'law enforcement officers','The purpose for enacting section 8191 was to provide such injured local law enforcement officers with the same benefits as are available to federal employees under the Federal Employees Compensation Act…A companion section, 5U.S.C','The purpose for enacting section 8191 was to provide such injured local <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2020/07/another-win-for-the-law-offices-of-melissa-a-day/\">law enforcement officers</a> with the same benefits as are available to federal employees under the Federal Employees Compensation Act…A companion section, 5U.S.C','The purpose for enacting section 8191 was to provide such injured local law enforcement officers with the same benefits as are available to federal employees under the Federal Employees Compensation Act…A companion section, 5U.S.C','§8191,which extended the benefits of the Federal Employees Compensation Act to state and local law enforcement officers who are injured while engaged in the apprehension of persons committing federal crimes. The purpose for enacting section 8191 was to provide such injured local law enforcement officers with the same benefits as are available to federal employees under the Federal Employees Compensation Act…A companion section, 5U.S.C. § 8192, provides that the benefits received should be reduced by the amount of benefits paid by state or local governmental sources, including workmen’s compensation benefits.','The benefits of this subchapter are available as provided in this subchapter to eligible law enforcement officers (referred to in this subchapter as “eligible officers”) and their survivors. For the purposes of this subchapter, an eligible officer is any person who is determined by the Secretary of Labor in his discretion to have been on any given occ',0,'2022-04-05 05:06:55','2022-04-05 05:06:55'),(768,46555,46377,'law enforcement officers','2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by law enforcement officers who are not employees of the United States:','2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2020/07/a-win-for-the-law-offices-of-melissa-a-day/\">law enforcement officers</a> who are not employees of the United States:','2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by law enforcement officers who are not employees of the United States:','2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by law enforcement officers who are not employees of the United States:','2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by law enforcement officers who are not employees of the United States',0,'2022-04-05 05:06:55','2022-04-05 05:06:55'),(769,46555,46377,'law enforcement officer','(1) a law enforcement officer and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–','(1) a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2020/07/a-win-for-the-law-offices-of-melissa-a-day/\">law enforcement officer</a> and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–','(1) a law enforcement officer and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–','(1) a law enforcement officer and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–','1) a law enforcement officer and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–',0,'2022-04-05 05:06:55','2022-04-05 05:06:55'),(770,46555,46377,'law enforcement officers','The purpose for enacting section 8191 was to provide such injured local law enforcement officers with the same benefits as are available to federal employees under the Federal Employees Compensation Act…A companion section, 5U.S.C','The purpose for enacting section 8191 was to provide such injured local <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2020/07/a-win-for-the-law-offices-of-melissa-a-day/\">law enforcement officers</a> with the same benefits as are available to federal employees under the Federal Employees Compensation Act…A companion section, 5U.S.C','The purpose for enacting section 8191 was to provide such injured local law enforcement officers with the same benefits as are available to federal employees under the Federal Employees Compensation Act…A companion section, 5U.S.C','§8191,which extended the benefits of the Federal Employees Compensation Act to state and local law enforcement officers who are injured while engaged in the apprehension of persons committing federal crimes. The purpose for enacting section 8191 was to provide such injured local law enforcement officers with the same benefits as are available to federal employees under the Federal Employees Compensation Act…A companion section, 5U.S.C. § 8192, provides that the benefits received should be reduced by the amount of benefits paid by state or local governmental sources, including workmen’s compensation benefits.','The benefits of this subchapter are available as provided in this subchapter to eligible law enforcement officers (referred to in this subchapter as “eligible officers”) and their survivors. For the purposes of this subchapter, an eligible officer is any person who is determined by the Secretary of Labor in his discretion to have been on any given occ',0,'2022-04-05 05:06:55','2022-04-05 05:06:55'),(771,46555,46504,'law enforcement officers','2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by law enforcement officers who are not employees of the United States:','2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">law enforcement officers</a> who are not employees of the United States:','2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by law enforcement officers who are not employees of the United States:','2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by law enforcement officers who are not employees of the United States:','2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by law enforcement officers who are not employees of the United States',0,'2022-04-05 05:06:55','2022-04-05 05:06:55'),(772,46555,46504,'law enforcement officer','(1) a law enforcement officer and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–','(1) a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">law enforcement officer</a> and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–','(1) a law enforcement officer and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–','(1) a law enforcement officer and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–','1) a law enforcement officer and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–',0,'2022-04-05 05:06:55','2022-04-05 05:06:55'),(773,46555,46504,'law enforcement officers','The purpose for enacting section 8191 was to provide such injured local law enforcement officers with the same benefits as are available to federal employees under the Federal Employees Compensation Act…A companion section, 5U.S.C','The purpose for enacting section 8191 was to provide such injured local <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">law enforcement officers</a> with the same benefits as are available to federal employees under the Federal Employees Compensation Act…A companion section, 5U.S.C','The purpose for enacting section 8191 was to provide such injured local law enforcement officers with the same benefits as are available to federal employees under the Federal Employees Compensation Act…A companion section, 5U.S.C','§8191,which extended the benefits of the Federal Employees Compensation Act to state and local law enforcement officers who are injured while engaged in the apprehension of persons committing federal crimes. The purpose for enacting section 8191 was to provide such injured local law enforcement officers with the same benefits as are available to federal employees under the Federal Employees Compensation Act…A companion section, 5U.S.C. § 8192, provides that the benefits received should be reduced by the amount of benefits paid by state or local governmental sources, including workmen’s compensation benefits.','The benefits of this subchapter are available as provided in this subchapter to eligible law enforcement officers (referred to in this subchapter as “eligible officers”) and their survivors. For the purposes of this subchapter, an eligible officer is any person who is determined by the Secretary of Labor in his discretion to have been on any given occ',0,'2022-04-05 05:06:55','2022-04-05 05:06:55'),(774,46555,48276,'law enforcement officers','2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by law enforcement officers who are not employees of the United States:','2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/amherst-workers-compensation-defense-law-office/\">law enforcement officers</a> who are not employees of the United States:','2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by law enforcement officers who are not employees of the United States:','2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by law enforcement officers who are not employees of the United States:','2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by law enforcement officers who are not employees of the United States',0,'2022-04-05 05:06:55','2022-04-05 05:06:55'),(775,46555,48276,'law enforcement officer','(1) a law enforcement officer and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–','(1) a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/amherst-workers-compensation-defense-law-office/\">law enforcement officer</a> and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–','(1) a law enforcement officer and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–','(1) a law enforcement officer and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–','1) a law enforcement officer and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–',0,'2022-04-05 05:06:55','2022-04-05 05:06:55'),(776,46555,46371,'claimant to 312 weeks of benefits,','For example, under FECA, compensation for loss of an arm entitles a claimant to 312 weeks of benefits, identical to NY’s schedule for an arm','For example, under FECA, compensation for loss of an arm entitles a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant to 312 weeks of benefits,</a> identical to NY’s schedule for an arm','For example, under FECA, compensation for loss of an arm entitles a claimant to 312 weeks of benefits, identical to NY’s schedule for an arm','FECA has a Compensation Schedule similar to NY’s schedule loss of use provisions. For example, under FECA, compensation for loss of an arm entitles a claimant to 312 weeks of benefits, identical to NY’s schedule for an arm. It does not appear that there is a maximum on the weekly benefit under FECA like there is in NY.','for the Claimant if he could recover greater benefits under FECA then he has under NY Compensation Law. FECA has a Compensation Schedule similar to NY’s schedule loss of use provisions. For example, under FECA, compensation for loss of an arm entitles a claimant to 312 weeks of benefits, identical to NY’s schedule for an arm.',0,'2022-04-05 05:06:55','2022-04-05 05:06:55'),(777,46555,46371,'benefits received','§ 8192, provides that the benefits received should be reduced by the amount of benefits paid by state or local governmental sources, including workmen’s compensation benefits','§ 8192, provides that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">benefits received</a> should be reduced by the amount of benefits paid by state or local governmental sources, including workmen’s compensation benefits','§ 8192, provides that the benefits received should be reduced by the amount of benefits paid by state or local governmental sources, including workmen’s compensation benefits','The purpose for enacting section 8191 was to provide such injured local law enforcement officers with the same benefits as are available to federal employees under the Federal Employees Compensation Act…A companion section, 5U.S.C. § 8192, provides that the benefits received should be reduced by the amount of benefits paid by state or local governmental sources, including workmen’s compensation benefits. 5 U.S.C.','§8191,which extended the benefits of the Federal Employees Compensation Act to state and local law enforcement officers who are injured while engaged in the apprehension of persons committing federal crimes. The purpose for enacting section 8191 was to provide such injured local law enforcement officers with the same benefits as are available to federal employees under the Federal Employees Compensation Act…A companion section, 5U.S.C. § 8192, provides that the benefits received should be reduced by the amount of benefits paid by state or local governmental sources, including workmen’s compensation benefits.',0,'2022-04-05 05:06:55','2022-04-05 05:06:55'),(778,46555,46512,'including workmen’s compensation','§ 8192, provides that the benefits received should be reduced by the amount of benefits paid by state or local governmental sources, including workmen’s compensation benefits','§ 8192, provides that the benefits received should be reduced by the amount of benefits paid by state or local governmental sources, <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">including workmen’s compensation</a> benefits','§ 8192, provides that the benefits received should be reduced by the amount of benefits paid by state or local governmental sources, including workmen’s compensation benefits','The purpose for enacting section 8191 was to provide such injured local law enforcement officers with the same benefits as are available to federal employees under the Federal Employees Compensation Act…A companion section, 5U.S.C. § 8192, provides that the benefits received should be reduced by the amount of benefits paid by state or local governmental sources, including workmen’s compensation benefits. 5 U.S.C.','§8191,which extended the benefits of the Federal Employees Compensation Act to state and local law enforcement officers who are injured while engaged in the apprehension of persons committing federal crimes. The purpose for enacting section 8191 was to provide such injured local law enforcement officers with the same benefits as are available to federal employees under the Federal Employees Compensation Act…A companion section, 5U.S.C. § 8192, provides that the benefits received should be reduced by the amount of benefits paid by state or local governmental sources, including workmen’s compensation benefits.',0,'2022-04-05 05:06:55','2022-04-05 05:06:55'),(779,46555,46511,'employer could bring a claim','In the City of Whittier, the 9th Circuit found that the City could not bring a Federal Tort Claims Act against the United States because FECA is the exclusive remedy, and therefore “any possible claims of the City must be brought under that Act.” Hence, the Court envisioned that the employer could bring a claim against the United States under FECA','In the City of Whittier, the 9th Circuit found that the City could not bring a Federal Tort Claims Act against the United States because FECA is the exclusive remedy, and therefore “any possible claims of the City must be brought under that Act.” Hence, the Court envisioned that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\">employer could bring a claim</a> against the United States under FECA','In the City of Whittier, the 9th Circuit found that the City could not bring a Federal Tort Claims Act against the United States because FECA is the exclusive remedy, and therefore “any possible claims of the City must be brought under that Act.” Hence, the Court envisioned that the employer could bring a claim against the United States under FECA','In the City of Whittier, the 9th Circuit found that the City could not bring a Federal Tort Claims Act against the United States because FECA is the exclusive remedy, and therefore “any possible claims of the City must be brought under that Act.” Hence, the Court envisioned that the employer could bring a claim against the United States under FECA.','In the City of Whittier, the 9th Circuit found that the City could not bring a Federal Tort Claims Act against the United States because FECA is the exclusive remedy, and therefore “any possible claims of the City must be brought under that Act.” Hence, the Court envisioned that the employer could bring a claim against the United States under FECA.',0,'2022-04-05 05:06:55','2022-04-05 05:06:55'),(780,46555,46546,'employer could bring a claim','In the City of Whittier, the 9th Circuit found that the City could not bring a Federal Tort Claims Act against the United States because FECA is the exclusive remedy, and therefore “any possible claims of the City must be brought under that Act.” Hence, the Court envisioned that the employer could bring a claim against the United States under FECA','In the City of Whittier, the 9th Circuit found that the City could not bring a Federal Tort Claims Act against the United States because FECA is the exclusive remedy, and therefore “any possible claims of the City must be brought under that Act.” Hence, the Court envisioned that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">employer could bring a claim</a> against the United States under FECA','In the City of Whittier, the 9th Circuit found that the City could not bring a Federal Tort Claims Act against the United States because FECA is the exclusive remedy, and therefore “any possible claims of the City must be brought under that Act.” Hence, the Court envisioned that the employer could bring a claim against the United States under FECA','In the City of Whittier, the 9th Circuit found that the City could not bring a Federal Tort Claims Act against the United States because FECA is the exclusive remedy, and therefore “any possible claims of the City must be brought under that Act.” Hence, the Court envisioned that the employer could bring a claim against the United States under FECA.','In the City of Whittier, the 9th Circuit found that the City could not bring a Federal Tort Claims Act against the United States because FECA is the exclusive remedy, and therefore “any possible claims of the City must be brought under that Act.” Hence, the Court envisioned that the employer could bring a claim against the United States under FECA.',0,'2022-04-05 05:06:55','2022-04-05 05:06:55'),(781,46555,46329,'schedule loss','FECA has a Compensation Schedule similar to NY’s schedule loss of use provisions','FECA has a Compensation Schedule similar to NY’s <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/08/using-the-contralateral-limb-as-a-baseline-for-calculating-schedule-loss-of-use/\">schedule loss</a> of use provisions','FECA has a Compensation Schedule similar to NY’s schedule loss of use provisions','Other thoughts – Such an action might make sense for the Claimant if he could recover greater benefits under FECA then he has under NY Compensation Law. FECA has a Compensation Schedule similar to NY’s schedule loss of use provisions. For example, under FECA, compensation for loss of an arm entitles a claimant to 312 weeks of benefits, identical to NY’s schedule for an arm.','FECA then he has under NY Compensation Law. FECA has a Compensation Schedule similar to NY’s schedule loss of use provisions.',0,'2022-04-05 05:06:55','2022-04-05 05:06:55'),(782,46555,46415,'schedule loss','FECA has a Compensation Schedule similar to NY’s schedule loss of use provisions','FECA has a Compensation Schedule similar to NY’s <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\">schedule loss</a> of use provisions','FECA has a Compensation Schedule similar to NY’s schedule loss of use provisions','Other thoughts – Such an action might make sense for the Claimant if he could recover greater benefits under FECA then he has under NY Compensation Law. FECA has a Compensation Schedule similar to NY’s schedule loss of use provisions. For example, under FECA, compensation for loss of an arm entitles a claimant to 312 weeks of benefits, identical to NY’s schedule for an arm.','FECA then he has under NY Compensation Law. FECA has a Compensation Schedule similar to NY’s schedule loss of use provisions.',0,'2022-04-05 05:06:55','2022-04-05 05:06:55'),(783,46555,46387,'compensation for loss','For example, under FECA, compensation for loss of an arm entitles a claimant to 312 weeks of benefits, identical to NY’s schedule for an arm','For example, under FECA, <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\">compensation for loss</a> of an arm entitles a claimant to 312 weeks of benefits, identical to NY’s schedule for an arm','For example, under FECA, compensation for loss of an arm entitles a claimant to 312 weeks of benefits, identical to NY’s schedule for an arm','FECA has a Compensation Schedule similar to NY’s schedule loss of use provisions. For example, under FECA, compensation for loss of an arm entitles a claimant to 312 weeks of benefits, identical to NY’s schedule for an arm. It does not appear that there is a maximum on the weekly benefit under FECA like there is in NY.','for the Claimant if he could recover greater benefits under FECA then he has under NY Compensation Law. FECA has a Compensation Schedule similar to NY’s schedule loss of use provisions. For example, under FECA, compensation for loss of an arm entitles a claimant to 312 weeks of benefits, identical to NY’s schedule for an arm.',0,'2022-04-05 05:06:55','2022-04-05 05:06:55'),(784,46555,46374,'loss of an arm entitles a claimant','For example, under FECA, compensation for loss of an arm entitles a claimant to 312 weeks of benefits, identical to NY’s schedule for an arm','For example, under FECA, compensation for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">loss of an arm entitles a claimant</a> to 312 weeks of benefits, identical to NY’s schedule for an arm','For example, under FECA, compensation for loss of an arm entitles a claimant to 312 weeks of benefits, identical to NY’s schedule for an arm','FECA has a Compensation Schedule similar to NY’s schedule loss of use provisions. For example, under FECA, compensation for loss of an arm entitles a claimant to 312 weeks of benefits, identical to NY’s schedule for an arm. It does not appear that there is a maximum on the weekly benefit under FECA like there is in NY.','for the Claimant if he could recover greater benefits under FECA then he has under NY Compensation Law. FECA has a Compensation Schedule similar to NY’s schedule loss of use provisions. For example, under FECA, compensation for loss of an arm entitles a claimant to 312 weeks of benefits, identical to NY’s schedule for an arm.',0,'2022-04-05 05:06:55','2022-04-05 05:06:55'),(785,46504,46342,'unanimous medical','Day argued that the credible and unanimous medical evidence indicated that the claimant’s injuries did not prevent him from returning to his pre-injury work duties, and he was, in fact, earning more income after the accident than he was before','Day argued that the credible and <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\">unanimous medical</a> evidence indicated that the claimant’s injuries did not prevent him from returning to his pre-injury work duties, and he was, in fact, earning more income after the accident than he was before','Day argued that the credible and unanimous medical evidence indicated that the claimant’s injuries did not prevent him from returning to his pre-injury work duties, and he was, in fact, earning more income after the accident than he was before','On appeal, The Law Office of Melissa A. Day argued that the credible and unanimous medical evidence indicated that the claimant’s injuries did not prevent him from returning to his pre-injury work duties, and he was, in fact, earning more income after the accident than he was before. It was further argued that the 35% LWEC was by default an “arbitrary and capricious” ruling insofar as the Board has failed to provide any rational method for converting the severity of the medical impairment and the vocational factors of any one claimant into a percent loss of wage earning capacity.','Day argued that the credible and unanimous medical evidence indicated that the claimant’s injuries did not prevent him from returning to his pre-injury work duties, and he was, in fact, earning more income after the accident than he was before.',0,'2022-04-05 05:06:56','2022-04-05 05:06:56'),(786,46504,46340,'medical evidence','Day argued that the credible and unanimous medical evidence indicated that the claimant’s injuries did not prevent him from returning to his pre-injury work duties, and he was, in fact, earning more income after the accident than he was before','Day argued that the credible and unanimous <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\">medical evidence</a> indicated that the claimant’s injuries did not prevent him from returning to his pre-injury work duties, and he was, in fact, earning more income after the accident than he was before','Day argued that the credible and unanimous medical evidence indicated that the claimant’s injuries did not prevent him from returning to his pre-injury work duties, and he was, in fact, earning more income after the accident than he was before','On appeal, The Law Office of Melissa A. Day argued that the credible and unanimous medical evidence indicated that the claimant’s injuries did not prevent him from returning to his pre-injury work duties, and he was, in fact, earning more income after the accident than he was before. It was further argued that the 35% LWEC was by default an “arbitrary and capricious” ruling insofar as the Board has failed to provide any rational method for converting the severity of the medical impairment and the vocational factors of any one claimant into a percent loss of wage earning capacity.','Day argued that the credible and unanimous medical evidence indicated that the claimant’s injuries did not prevent him from returning to his pre-injury work duties, and he was, in fact, earning more income after the accident than he was before.',0,'2022-04-05 05:06:56','2022-04-05 05:06:56'),(787,46504,46344,'claimant’s injuries','Day argued that the credible and unanimous medical evidence indicated that the claimant’s injuries did not prevent him from returning to his pre-injury work duties, and he was, in fact, earning more income after the accident than he was before','Day argued that the credible and unanimous medical evidence indicated that the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\">claimant’s injuries</a> did not prevent him from returning to his pre-injury work duties, and he was, in fact, earning more income after the accident than he was before','Day argued that the credible and unanimous medical evidence indicated that the claimant’s injuries did not prevent him from returning to his pre-injury work duties, and he was, in fact, earning more income after the accident than he was before','On appeal, The Law Office of Melissa A. Day argued that the credible and unanimous medical evidence indicated that the claimant’s injuries did not prevent him from returning to his pre-injury work duties, and he was, in fact, earning more income after the accident than he was before. It was further argued that the 35% LWEC was by default an “arbitrary and capricious” ruling insofar as the Board has failed to provide any rational method for converting the severity of the medical impairment and the vocational factors of any one claimant into a percent loss of wage earning capacity.','Day argued that the credible and unanimous medical evidence indicated that the claimant’s injuries did not prevent him from returning to his pre-injury work duties, and he was, in fact, earning more income after the accident than he was before.',0,'2022-04-05 05:06:56','2022-04-05 05:06:56'),(788,46445,46340,'medical evidence','However, it was found that the 2007 reforms were not intended to change the Board’s reliance on the claimant’s actual earnings or degree of physical impairment as supported by the medical evidence to determine wage earning capacity for the purposes of WCL 15 (5) (a)','However, it was found that the 2007 reforms were not intended to change the Board’s reliance on the claimant’s actual earnings or degree of physical impairment as supported by the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\">medical evidence</a> to determine wage earning capacity for the purposes of WCL 15 (5) (a)','However, it was found that the 2007 reforms were not intended to change the Board’s reliance on the claimant’s actual earnings or degree of physical impairment as supported by the medical evidence to determine wage earning capacity for the purposes of WCL 15 (5) (a)','In Matter of Canales the claimant argued that her vocational factors should have been considered in combination with her medical impairment to determine the compensation rate for her temporary disability and as such would have rendered her unemployable. However, it was found that the 2007 reforms were not intended to change the Board’s reliance on the claimant’s actual earnings or degree of physical impairment as supported by the medical evidence to determine wage earning capacity for the purposes of WCL 15 (5) (a). In fact, the phrase “loss of wage earning capacity” was added to WCL §15(3)(w) with the specific intention to establish a new duration limit on non-schedule permanent partial disability benefits and was therefore relevant only to the determination of the duration of permanent partial disability benefits at the time of classification.','However, it was found that the 2007 reforms were not intended to change the Board’s reliance on the claimant’s actual earnings or degree of physical impairment as supported by the medical evidence to determine wage earning capacity for the purposes of WCL 15 (5) (a). In fact, the phrase “loss of wage earning capacity” was added to WCL §15(3)(w) with the specific intention to establish a new duration limit on non-schedule permanent partial disability benefits and was therefore relevant only to the determination of the duration of permanent partial disability benefits at the time of classification. Thus, vocational and functional factors should not be considered to determine the compensation rate for temporary disability. Matter of <em>Canales v. Pinnacle Foods Group LLC</em>, 117 A.',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(789,46445,46504,'loss of wage earning capacity','However, it is well established that vocational factors are considered to determine loss of wage earning capacity in PPD claimants','However, it is well established that vocational factors are considered to determine <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">loss of wage earning capacity</a> in PPD claimants','However, it is well established that vocational factors are considered to determine loss of wage earning capacity in PPD claimants','However, it is well established that vocational factors are considered to determine loss of wage earning capacity in PPD claimants. What is less clear is the difference between claimants that returned to work and is consequently earning wages and claimants that did not return to work at the time of the classification.','However, it is well established that vocational factors are considered to determine loss of wage earning capacity in PPD claimants. What is less clear is the difference between claimants that returned to work and is consequently earning wages and claimants',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(790,46445,46504,'loss of wage earning capacity','to determine the loss of wage earning capacity','to determine the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">loss of wage earning capacity</a>','to determine the loss of wage earning capacity','In Matter Weinhart v Motors Holding, 245 A.D.2d 577 (1997) The Board considers the nature and degree of the claimant’s disability, vocational opportunities and corresponding salaries available to the claimant, the claimant’s work restrictions etc. to determine the loss of wage earning capacity. Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate.','tors should have been considered in combination with her medical impairment to determine the compensation rate for her temporary disability and as such would have rendered her unemployable. However, it was found that the 2007 reforms were not intended to change the Board’s reliance on the claimant’s actual earnings or degree of physical impairment as supported by the medical evidence to determine wage earning capacity for the purposes of WCL 15 (5) (a). In fact, the phrase “loss of wage earning capacity” was added to WCL §15(3)(w) with the specific intention to establish a new duration limit on non-schedule permanent partial disability benefits and was therefore relevant only to the determination of the duration of permanent partial disability benefits at the time of classification. Thus, vocational and functional factors should not be considered to determine the compensation rate for temporary disability. Matter of <em>Canales v. Pinnacle Foods Group LLC</em>, 117 A.D.3d 1271',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(791,46445,46504,'loss of wage earning capacity','Thus, according to Matter of Buffalo, there are two different methods for calculating the loss of wage earning capacity of a claimant with permanent partial disability, depending on whether the claimant was working or not','Thus, according to <em>Matter of Buffalo</em>, there are two different methods for calculating the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">loss of wage earning capacity</a> of a claimant with permanent partial disability, depending on whether the claimant was working or not','Thus, according to <em>Matter of Buffalo</em>, there are two different methods for calculating the loss of wage earning capacity of a claimant with permanent partial disability, depending on whether the claimant was working or not','Matter of Buffalo Auto Recovery, 2009 NY Wrk Comp 80703905. Thus, according to Matter of Buffalo, there are two different methods for calculating the loss of wage earning capacity of a claimant with permanent partial disability, depending on whether the claimant was working or not.','Thus, according to <em>Matter of Buffalo</em>, there are two different methods for calculating the loss of wage earning capacity of a claimant with permanent partial disability, depending on whether the claimant was working or not.',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(792,46445,46504,'loss of wage earning capacity','Vocational and functional considerations must be considered with respect to loss of wage earning capacity and as such are only relevant as to the duration of a claimant’s permanent partial disability benefits','Vocational and functional considerations must be considered with respect to <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">loss of wage earning capacity</a> and as such are only relevant as to the duration of a claimant’s permanent partial disability benefits','Vocational and functional considerations must be considered with respect to loss of wage earning capacity and as such are only relevant as to the duration of a claimant’s permanent partial disability benefits','In Matter of Baczuk it was recently found that, where actual earnings during a period of disability are established, wage earning capacity must be determined exclusively by the actual earnings of the injured employee without evidence of capacity to earn more/less during such a disability period. Vocational and functional considerations must be considered with respect to loss of wage earning capacity and as such are only relevant as to the duration of a claimant’s permanent partial disability benefits. Matter of Baczuk v.','vocational factors should have been considered in combination with her medical impairment to determine the compensation rate for her temporary disability and as such would have rendered her unemployable. However, it was found that the 2007 reforms were not intended to change the Board’s reliance on the claimant’s actual earnings or degree of physical impairment as supported by the medical evidence to determine wage earning capacity for the purposes of WCL 15 (5) (a). In fact, the phrase “loss of wage earning capacity” was added to WCL §15(3)(w) with the specific intention to establish a new duration limit on non-schedule permanent partial disability benefits and was therefore relevant only to the determination of the duration of permanent partial disability benefits',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(793,46445,46504,'wage earning capacity','In case of permanent partial disability when the claimant did not return to work, it is up to the WCLJ/Board to determine the claimant’s wage earning capacity','In case of permanent partial disability when the claimant did not return to work, it is up to the WCLJ/Board to determine the claimant’s <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">wage earning capacity</a>','In case of permanent partial disability when the claimant did not return to work, it is up to the WCLJ/Board to determine the claimant’s wage earning capacity','In case of permanent partial disability when the claimant did not return to work, it is up to the WCLJ/Board to determine the claimant’s wage earning capacity. In Matter Weinhart v Motors Holding, 245 A.D.2d 577 (1997) The Board considers the nature and degree of the claimant’s disability, vocational opportunities and corresponding salaries available to the claimant, the claimant’s work restrictions etc.','In <em>Matter of Canales</em> the claimant argued that her vocational factors should have been considered in combination with her medical impairment to determine the compensation rate for her temporary disability and as such would have rendered her unemployable. However, it was found that the 2007 reforms were not intended to change the Board’s reliance on the claimant’s actual earnings or degree of physical impairment as supported by the medical evidence to determine wage earning capacity for the purposes of WCL 15 (5) (a). In fact, the phrase “loss of wage earning capacity” was added to WCL §15(3)(w) with the specific intention to establish a new duration limit on non-schedule permanent partial disability benefits and was therefore relevant only to the determination of the duration of permanent partial disability benefits at the time of classification. Thus, vocational and functional factors should not be considered to determine the compensation rate for temporary disability. Matter of <em>Canales v. Pinnacle Foods Group LLC</em>, 117 A.D.3d 1271',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(794,46445,46504,'wage earning capacity','When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to Buffalo auto, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage','When a claimant remains attached to the labor market a claimant’s <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">wage earning capacity</a> for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage','When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage','However, it seems that things get murky when a claimant is working at the time of classification. When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to Buffalo auto, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage. Matter of Buffalo Auto Recovery, 2009 NY Wrk Comp 80703905.','when the claimant did not return to work, it is up to the WCLJ/Board to determine the claimant’s wage earning capacity. In <em>Matter Weinhart v Motors Holding</em>, 245 A.D.2d 577 (1997) The Board considers the nature and degree of the claimant’s disability, vocational opportunities and corresponding salaries available to the claimant, the claimant’s work restrictions etc. to determine the loss of wage earning capacity. Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate. “The loss of wage earning capacity will determine the maximum number of benefit weeks available pursuant to WCL §15(3)(w), and its inverse, the wage',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(795,46445,46504,'wage earning','In fact, the phrase “loss of wage earning capacity” was added to WCL §15(3)(w) with the specific intention to establish a new duration limit on non-schedule permanent partial disability benefits and was therefore relevant only to the determination of the duration of permanent partial disability benefits at the time of classification','In fact, the phrase “loss of <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">wage earning</a> capacity” was added to WCL §15(3)(w) with the specific intention to establish a new duration limit on non-schedule permanent partial disability benefits and was therefore relevant only to the determination of the duration of permanent partial disability benefits at the time of classification','In fact, the phrase “loss of wage earning capacity” was added to WCL §15(3)(w) with the specific intention to establish a new duration limit on non-schedule permanent partial disability benefits and was therefore relevant only to the determination of the duration of permanent partial disability benefits at the time of classification','However, it was found that the 2007 reforms were not intended to change the Board’s reliance on the claimant’s actual earnings or degree of physical impairment as supported by the medical evidence to determine wage earning capacity for the purposes of WCL 15 (5) (a). In fact, the phrase “loss of wage earning capacity” was added to WCL §15(3)(w) with the specific intention to establish a new duration limit on non-schedule permanent partial disability benefits and was therefore relevant only to the determination of the duration of permanent partial disability benefits at the time of classification. Thus, vocational and functional factors should not be considered to determine the compensation rate for temporary disability.','In <em>Matter of Canales</em> the claimant argued that her vocational factors should have been considered in combination with her medical impairment to determine the compensation rate for her temporary disability and as such would have rendered her unemployable. However, it was found that the 2007 reforms were not intended to change the Board’s reliance on the claimant’s actual earnings or degree of physical impairment as supported by the medical evidence to determine wage earning capacity for the purposes of WCL 15 (5) (a). In fact, the phrase “loss of wage earning capacity” was added to WCL §15(3)(w) with the specific intention to establish a new duration limit on non-schedule permanent partial disability benefits and was therefore relevant only to the determination of the duration of permanent partial disability benefits at the time of classification.',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(796,46445,46504,'earning wages','What is less clear is the difference between claimants that returned to work and is consequently earning wages and claimants that did not return to work at the time of the classification','What is less clear is the difference between claimants that returned to work and is consequently <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\">earning wages</a> and claimants that did not return to work at the time of the classification','What is less clear is the difference between claimants that returned to work and is consequently earning wages and claimants that did not return to work at the time of the classification','However, it is well established that vocational factors are considered to determine loss of wage earning capacity in PPD claimants. What is less clear is the difference between claimants that returned to work and is consequently earning wages and claimants that did not return to work at the time of the classification.','What is less clear is the difference between claimants that returned to work and is consequently earning wages and claimants that did not return to work at the time of the classification.',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(797,46445,46509,'determine the loss of wage earning capacity','to determine the loss of wage earning capacity','to <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">determine the loss of wage earning capacity</a>','to determine the loss of wage earning capacity','In Matter Weinhart v Motors Holding, 245 A.D.2d 577 (1997) The Board considers the nature and degree of the claimant’s disability, vocational opportunities and corresponding salaries available to the claimant, the claimant’s work restrictions etc. to determine the loss of wage earning capacity. Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate.','to work, it is up to the WCLJ/Board to determine the claimant’s wage earning capacity. In <em>Matter Weinhart v Motors Holding</em>, 245 A.D.2d 577 (1997) The Board considers the nature and degree of the claimant’s disability, vocational opportunities and corresponding salaries available to the claimant, the claimant’s work restrictions etc. to determine the loss of wage earning capacity. Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate. “The loss of wage earning capacity will determine the maximum number of benefit weeks available pursuant to WCL §15(3)(w), and its inverse, the wage earning capacity will be used to calculate the weekly rate. <em>Matter of Buffalo Auto Recovery</em>, 2009 NY Wrk Comp 80703905.',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(798,46445,46509,'loss of wage earning capacity will determine','“The loss of wage earning capacity will determine the maximum number of benefit weeks available pursuant to WCL §15(3)(w), and its inverse, the wage earning capacity will be used to calculate the weekly rate','“The <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">loss of wage earning capacity will determine</a> the maximum number of benefit weeks available pursuant to WCL §15(3)(w), and its inverse, the wage earning capacity will be used to calculate the weekly rate','“The loss of wage earning capacity will determine the maximum number of benefit weeks available pursuant to WCL §15(3)(w), and its inverse, the wage earning capacity will be used to calculate the weekly rate','Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate. “The loss of wage earning capacity will determine the maximum number of benefit weeks available pursuant to WCL §15(3)(w), and its inverse, the wage earning capacity will be used to calculate the weekly rate. Matter of Buffalo Auto Recovery, 2009 NY Wrk Comp 80703905.','“The loss of wage earning capacity will determine the maximum number of benefit weeks available pursuant to WCL §15(3)(w), and its inverse, the wage earning capacity will be used to calculate the weekly rate.',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(799,46445,46509,'determine loss of wage earning capacity','However, it is well established that vocational factors are considered to determine loss of wage earning capacity in PPD claimants','However, it is well established that vocational factors are considered to <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">determine loss of wage earning capacity</a> in PPD claimants','However, it is well established that vocational factors are considered to determine loss of wage earning capacity in PPD claimants','However, it is well established that vocational factors are considered to determine loss of wage earning capacity in PPD claimants. What is less clear is the difference between claimants that returned to work and is consequently earning wages and claimants that did not return to work at the time of the classification.','However, it is well established that vocational factors are considered to determine loss of wage earning capacity in PPD claimants. What is less clear is the difference between claimants that returned to work and is consequently earning wages and claimants',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(800,46445,46509,'determine the claimant’s wage earning capacity','In case of permanent partial disability when the claimant did not return to work, it is up to the WCLJ/Board to determine the claimant’s wage earning capacity','In case of permanent partial disability when the claimant did not return to work, it is up to the WCLJ/Board to <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">determine the claimant’s wage earning capacity</a>','In case of permanent partial disability when the claimant did not return to work, it is up to the WCLJ/Board to determine the claimant’s wage earning capacity','In case of permanent partial disability when the claimant did not return to work, it is up to the WCLJ/Board to determine the claimant’s wage earning capacity. In Matter Weinhart v Motors Holding, 245 A.D.2d 577 (1997) The Board considers the nature and degree of the claimant’s disability, vocational opportunities and corresponding salaries available to the claimant, the claimant’s work restrictions etc.','In case of permanent partial disability when the claimant did not return to work, it is up to the WCLJ/Board to determine the claimant’s wage earning capacity. In <em>Matter Weinhart v Motors Holding</em>, 245 A.D.2d 577 (1997) The Board considers the nature and degree of the claimant’s disability, vocational opportunities and corresponding salaries available to the claimant, the claimant’s work restrictions etc. to determine the loss of wage earning capacity. Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate. “The loss of wage earning capacity will determine the maximum number of benefit weeks available pursuant to WCL §15(3)(w), and its inverse, the wage earning capacity will be used to calculate the weekly rate. <em>Matter of Buffalo Auto Recovery</em>, 2009 NY Wrk Comp 80703905.',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(801,46445,46509,'wage earning capacity must be determined','In Matter of Baczuk it was recently found that, where actual earnings during a period of disability are established, wage earning capacity must be determined exclusively by the actual earnings of the injured employee without evidence of capacity to earn more/less during such a disability period','In <em>Matter of Baczuk</em> it was recently found that, where actual earnings during a period of disability are established, <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">wage earning capacity must be determined</a> exclusively by the actual earnings of the injured employee without evidence of capacity to earn more/less during such a disability period','In <em>Matter of Baczuk</em> it was recently found that, where actual earnings during a period of disability are established, wage earning capacity must be determined exclusively by the actual earnings of the injured employee without evidence of capacity to earn more/less during such a disability period','In Matter of Baczuk it was recently found that, where actual earnings during a period of disability are established, wage earning capacity must be determined exclusively by the actual earnings of the injured employee without evidence of capacity to earn more/less during such a disability period. Vocational and functional considerations must be considered with respect to loss of wage earning capacity and as such are only relevant as to the duration of a claimant’s permanent partial disability benefits.','In <em>Matter of Baczuk</em> it was recently found that, where actual earnings during a period of disability are established, wage earning capacity must be determined exclusively by the actual earnings of the injured employee without evidence of capacity to earn more/less during such a disability period.',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(802,46445,46509,'loss of wage earning capacity','Thus, according to Matter of Buffalo, there are two different methods for calculating the loss of wage earning capacity of a claimant with permanent partial disability, depending on whether the claimant was working or not','Thus, according to <em>Matter of Buffalo</em>, there are two different methods for calculating the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">loss of wage earning capacity</a> of a claimant with permanent partial disability, depending on whether the claimant was working or not','Thus, according to <em>Matter of Buffalo</em>, there are two different methods for calculating the loss of wage earning capacity of a claimant with permanent partial disability, depending on whether the claimant was working or not','Matter of Buffalo Auto Recovery, 2009 NY Wrk Comp 80703905. Thus, according to Matter of Buffalo, there are two different methods for calculating the loss of wage earning capacity of a claimant with permanent partial disability, depending on whether the claimant was working or not.','Thus, according to <em>Matter of Buffalo</em>, there are two different methods for calculating the loss of wage earning capacity of a claimant with permanent partial disability, depending on whether the claimant was working or not.',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(803,46445,46509,'loss of wage earning capacity','Vocational and functional considerations must be considered with respect to loss of wage earning capacity and as such are only relevant as to the duration of a claimant’s permanent partial disability benefits','Vocational and functional considerations must be considered with respect to <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">loss of wage earning capacity</a> and as such are only relevant as to the duration of a claimant’s permanent partial disability benefits','Vocational and functional considerations must be considered with respect to loss of wage earning capacity and as such are only relevant as to the duration of a claimant’s permanent partial disability benefits','In Matter of Baczuk it was recently found that, where actual earnings during a period of disability are established, wage earning capacity must be determined exclusively by the actual earnings of the injured employee without evidence of capacity to earn more/less during such a disability period. Vocational and functional considerations must be considered with respect to loss of wage earning capacity and as such are only relevant as to the duration of a claimant’s permanent partial disability benefits. Matter of Baczuk v.','vocational factors should have been considered in combination with her medical impairment to determine the compensation rate for her temporary disability and as such would have rendered her unemployable. However, it was found that the 2007 reforms were not intended to change the Board’s reliance on the claimant’s actual earnings or degree of physical impairment as supported by the medical evidence to determine wage earning capacity for the purposes of WCL 15 (5) (a). In fact, the phrase “loss of wage earning capacity” was added to WCL §15(3)(w) with the specific intention to establish a new duration limit on non-schedule permanent partial disability benefits and was therefore relevant only to the determination of the duration of permanent partial disability benefits',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(804,46445,46509,'wage earning capacity','When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to Buffalo auto, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage','When a claimant remains attached to the labor market a claimant’s <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">wage earning capacity</a> for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage','When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage','However, it seems that things get murky when a claimant is working at the time of classification. When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to Buffalo auto, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage. Matter of Buffalo Auto Recovery, 2009 NY Wrk Comp 80703905.','when the claimant did not return to work, it is up to the WCLJ/Board to determine the claimant’s wage earning capacity. In <em>Matter Weinhart v Motors Holding</em>, 245 A.D.2d 577 (1997) The Board considers the nature and degree of the claimant’s disability, vocational opportunities and corresponding salaries available to the claimant, the claimant’s work restrictions etc. to determine the loss of wage earning capacity. Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate. “The loss of wage earning capacity will determine the maximum number of benefit weeks available pursuant to WCL §15(3)(w), and its inverse, the wage',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(805,46445,46509,'earning wages','What is less clear is the difference between claimants that returned to work and is consequently earning wages and claimants that did not return to work at the time of the classification','What is less clear is the difference between claimants that returned to work and is consequently <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\">earning wages</a> and claimants that did not return to work at the time of the classification','What is less clear is the difference between claimants that returned to work and is consequently earning wages and claimants that did not return to work at the time of the classification','However, it is well established that vocational factors are considered to determine loss of wage earning capacity in PPD claimants. What is less clear is the difference between claimants that returned to work and is consequently earning wages and claimants that did not return to work at the time of the classification.','What is less clear is the difference between claimants that returned to work and is consequently earning wages and claimants that did not return to work at the time of the classification.',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(806,46445,46374,'claimant vocational factors are considered to determine the loss','Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate','Thus, for the non-working <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">claimant vocational factors are considered to determine the loss</a> of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate','Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate','to determine the loss of wage earning capacity. Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate. “The loss of wage earning capacity will determine the maximum number of benefit weeks available pursuant to WCL §15(3)(w), and its inverse, the wage earning capacity will be used to calculate the weekly rate.','Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate. “The loss of wage earning capacity will determine the maximum number of benefit weeks available pursuant to WCL §15(3)(w), and its inverse, the wage earning capacity will be used to calculate the weekly rate.',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(807,46445,46374,'loss of wage earning capacity in PPD claimants','However, it is well established that vocational factors are considered to determine loss of wage earning capacity in PPD claimants','However, it is well established that vocational factors are considered to determine <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">loss of wage earning capacity in PPD claimants</a>','However, it is well established that vocational factors are considered to determine loss of wage earning capacity in PPD claimants','However, it is well established that vocational factors are considered to determine loss of wage earning capacity in PPD claimants. What is less clear is the difference between claimants that returned to work and is consequently earning wages and claimants that did not return to work at the time of the classification.','However, it is well established that vocational factors are considered to determine loss of wage earning capacity in PPD claimants. What is less clear is the difference between claimants that returned to work and is consequently earning wages and claimants that did not return to work at the time of the classification.',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(808,46445,46371,'claimant did not return to work','In case of permanent partial disability when the claimant did not return to work, it is up to the WCLJ/Board to determine the claimant’s wage earning capacity','In case of permanent partial disability when the <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant did not return to work</a>, it is up to the WCLJ/Board to determine the claimant’s wage earning capacity','In case of permanent partial disability when the claimant did not return to work, it is up to the WCLJ/Board to determine the claimant’s wage earning capacity','In case of permanent partial disability when the claimant did not return to work, it is up to the WCLJ/Board to determine the claimant’s wage earning capacity. In Matter Weinhart v Motors Holding, 245 A.D.2d 577 (1997) The Board considers the nature and degree of the claimant’s disability, vocational opportunities and corresponding salaries available to the claimant, the claimant’s work restrictions etc.','In case of permanent partial disability when the claimant did not return to work, it is up to the WCLJ/Board to determine the claimant’s wage earning capacity. In <em>Matter Weinhart v Motors Holding</em>, 245 A.D.2d 577 (1997) The Board considers the nature and degree of the claimant’s disability, vocational opportunities and corresponding salaries available to the claimant, the claimant’s work restrictions etc. to determine the loss of wage earning capacity. Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate. “The loss of wage earning capacity will determine the maximum number of benefit weeks available pursuant to WCL §15(3)(w), and its inverse, the wage earning capacity',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(809,46445,46371,'working and non-working claimants','However, in Matter of Longley Jones, the Full Board found that a distinction should not be drawn between a working and non-working claimants','However, in <em>Matter of Longley Jones</em>, the Full Board found that a distinction should not be drawn between a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">working and non-working claimants</a>','However, in <em>Matter of Longley Jones</em>, the Full Board found that a distinction should not be drawn between a working and non-working claimants','However, in Matter of Longley Jones, the Full Board found that a distinction should not be drawn between a working and non-working claimants. It found that considering a working claimant‘s temporary sometimes partial job earnings, could ultimately lead to an unjust result between working and non-working claimants with exactly the same impairment.','However, in <em>Matter of Longley Jones</em>, the Full Board found that a distinction should not be drawn between a working and non-working claimants. It found that considering a working claimant‘s temporary sometimes partial job earnings, could ultimately lead to an unjust result between working and non-working claimants with exactly the same impairment. Thus, the Full Board did not favor a distinction between working and non-working claimants, but did emphasize that a claimant’s wages at the time of classification remains an important factor that should be considered with all the other factors in determining a claimant’s loss of wage earning capacity. <em>Matter of Longley Jones Management Corp,</em> 2012 NY Wrk. Comp. 60704882.',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(810,46445,46371,'claimant is working','However, it seems that things get murky when a claimant is working at the time of classification','However, it seems that things get murky when a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">claimant is working</a> at the time of classification','However, it seems that things get murky when a claimant is working at the time of classification','However, it seems that things get murky when a claimant is working at the time of classification. When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to Buffalo auto, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage.','However, it seems that things get murky when a claimant is working at the time of classification. When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(811,46445,46549,'claimant vocational factors are considered','Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate','Thus, for the non-working <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">claimant vocational factors are considered</a> to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate','Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate','to determine the loss of wage earning capacity. Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate. “The loss of wage earning capacity will determine the maximum number of benefit weeks available pursuant to WCL §15(3)(w), and its inverse, the wage earning capacity will be used to calculate the weekly rate.','Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate. “The loss of wage earning capacity will determine the maximum number of benefit weeks available pursuant to WCL §15(3)(w), and its inverse, the wage earning capacity will be used to calculate the weekly rate.',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(812,46445,46549,'found that considering','It found that considering a working claimant‘s temporary sometimes partial job earnings, could ultimately lead to an unjust result between working and non-working claimants with exactly the same impairment','It <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\">found that considering</a> a working claimant‘s temporary sometimes partial job earnings, could ultimately lead to an unjust result between working and non-working claimants with exactly the same impairment','It found that considering a working claimant‘s temporary sometimes partial job earnings, could ultimately lead to an unjust result between working and non-working claimants with exactly the same impairment','However, in Matter of Longley Jones, the Full Board found that a distinction should not be drawn between a working and non-working claimants. It found that considering a working claimant‘s temporary sometimes partial job earnings, could ultimately lead to an unjust result between working and non-working claimants with exactly the same impairment. Thus, the Full Board did not favor a distinction between working and non-working claimants, but did emphasize that a claimant’s wages at the time of classification remains an important factor that should be considered with all the other factors in determining a claimant’s loss of wage earning capacity.','It found that considering a working claimant‘s temporary sometimes partial job earnings, could ultimately lead to an unjust result between working and non-working claimants with exactly the same impairment.',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(813,46445,46561,'claimant vocational factors are considered','Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate','Thus, for the non-working <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\">claimant vocational factors are considered</a> to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate','Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate','to determine the loss of wage earning capacity. Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate. “The loss of wage earning capacity will determine the maximum number of benefit weeks available pursuant to WCL §15(3)(w), and its inverse, the wage earning capacity will be used to calculate the weekly rate.','Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate. “The loss of wage earning capacity will determine the maximum number of benefit weeks available pursuant to WCL §15(3)(w), and its inverse, the wage earning capacity will be used to calculate the weekly rate.',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(814,46445,46383,'claimant remains attached to the labor market','When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to Buffalo auto, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage','When a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/\">claimant remains attached to the labor market</a> a claimant’s wage earning capacity for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage','When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage','However, it seems that things get murky when a claimant is working at the time of classification. When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to Buffalo auto, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage. Matter of Buffalo Auto Recovery, 2009 NY Wrk Comp 80703905.','when a claimant is working at the time of classification. When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage. <em>Matter of Buffalo Auto Recovery</em>, 2009 NY Wrk Comp 80703905. Thus, according to <em>Matter of Buffalo</em>, there are two different methods for calculating the loss of wage',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(815,46445,46341,'attached to the labor market','When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to Buffalo auto, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage','When a claimant remains <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/labor-market-attachment-and-retirement/\">attached to the labor market</a> a claimant’s wage earning capacity for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage','When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage','However, it seems that things get murky when a claimant is working at the time of classification. When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to Buffalo auto, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage. Matter of Buffalo Auto Recovery, 2009 NY Wrk Comp 80703905.','when a claimant is working at the time of classification. When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage. <em>Matter of Buffalo Auto Recovery</em>, 2009 NY Wrk Comp 80703905. Thus, according to <em>Matter of Buffalo</em>, there are two different methods for calculating the loss of wage',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(816,46445,46448,'attached to the labor market','When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to Buffalo auto, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage','When a claimant remains <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/09/labor-market-attachment-refresher/\">attached to the labor market</a> a claimant’s wage earning capacity for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage','When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage','However, it seems that things get murky when a claimant is working at the time of classification. When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to Buffalo auto, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage. Matter of Buffalo Auto Recovery, 2009 NY Wrk Comp 80703905.','when a claimant is working at the time of classification. When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage. <em>Matter of Buffalo Auto Recovery</em>, 2009 NY Wrk Comp 80703905. Thus, according to <em>Matter of Buffalo</em>, there are two different methods for calculating the loss of wage',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(817,46445,46546,'attached to the labor market','When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to Buffalo auto, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage','When a claimant remains <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\">attached to the labor market</a> a claimant’s wage earning capacity for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage','When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage','However, it seems that things get murky when a claimant is working at the time of classification. When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to Buffalo auto, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage. Matter of Buffalo Auto Recovery, 2009 NY Wrk Comp 80703905.','when a claimant is working at the time of classification. When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage. <em>Matter of Buffalo Auto Recovery</em>, 2009 NY Wrk Comp 80703905. Thus, according to <em>Matter of Buffalo</em>, there are two different methods for calculating the loss of wage',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(818,46445,46480,'average weekly wage','When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to Buffalo auto, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage','When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/average-wages/\">average weekly wage</a>','When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage','However, it seems that things get murky when a claimant is working at the time of classification. When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to Buffalo auto, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage. Matter of Buffalo Auto Recovery, 2009 NY Wrk Comp 80703905.','when a claimant is working at the time of classification. When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage. <em>Matter of Buffalo Auto Recovery</em>, 2009 NY Wrk Comp 80703905. Thus, according to <em>Matter of Buffalo</em>, there are two different methods for calculating the loss of wage earning capacity of a claimant with permanent partial disability, depending on whether the claimant was working or not.',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(819,46445,46329,'calculating the loss','Thus, according to Matter of Buffalo, there are two different methods for calculating the loss of wage earning capacity of a claimant with permanent partial disability, depending on whether the claimant was working or not','Thus, according to <em>Matter of Buffalo</em>, there are two different methods for <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/08/using-the-contralateral-limb-as-a-baseline-for-calculating-schedule-loss-of-use/\">calculating the loss</a> of wage earning capacity of a claimant with permanent partial disability, depending on whether the claimant was working or not','Thus, according to <em>Matter of Buffalo</em>, there are two different methods for calculating the loss of wage earning capacity of a claimant with permanent partial disability, depending on whether the claimant was working or not','Matter of Buffalo Auto Recovery, 2009 NY Wrk Comp 80703905. Thus, according to Matter of Buffalo, there are two different methods for calculating the loss of wage earning capacity of a claimant with permanent partial disability, depending on whether the claimant was working or not.','Thus, according to <em>Matter of Buffalo</em>, there are two different methods for calculating the loss of wage earning capacity of a claimant with permanent partial disability, depending on whether the claimant was working or not.',0,'2022-04-05 05:06:57','2022-04-05 05:06:57'),(820,46191,46351,'practicing workers’ compensation law','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law','Vicki is an associate attorney who has spent the past nine years exclusively <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/03/thoughts-on-thinking-a-strange-title-about-practicing-law/\">practicing workers’ compensation law</a>','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law. Prior to joining , she successfully represented claimants.','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law. Prior to joining , she successfully represented claimants. <a role=\"link\" href=\"/attorney/buehler-vicki-l/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row12\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Brendan_Shannon_pp.jpg\" url=\"/attorney/shannon-brendan-t/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Brendan T. Shannon</span></h2>',0,'2022-04-11 20:55:50','2022-04-11 20:55:50'),(821,46191,46421,'workers’ compensation','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law','Vicki is an associate attorney who has spent the past nine years exclusively practicing <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation</a> law','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law. Prior to joining , she successfully represented claimants.','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law.',0,'2022-04-11 20:55:50','2022-04-11 20:55:50'),(822,46191,46486,'workers’ compensation','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law','Vicki is an associate attorney who has spent the past nine years exclusively practicing <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> law','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law. Prior to joining , she successfully represented claimants.','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law.',0,'2022-04-11 20:55:50','2022-04-11 20:55:50'),(823,46191,46512,'workers’ compensation','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law','Vicki is an associate attorney who has spent the past nine years exclusively practicing <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> law','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law. Prior to joining , she successfully represented claimants.','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law.',0,'2022-04-11 20:55:50','2022-04-11 20:55:50'),(824,46191,46555,'workers’ compensation','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law','Vicki is an associate attorney who has spent the past nine years exclusively practicing <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> law','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law. Prior to joining , she successfully represented claimants.','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law.',0,'2022-04-11 20:55:50','2022-04-11 20:55:50'),(825,46191,48276,'compensation law','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/amherst-workers-compensation-defense-law-office/\">compensation law</a>','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law. Prior to joining , she successfully represented claimants.','Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law. Prior to joining , she successfully represented claimants. <a role=\"link\" href=\"/attorney/buehler-vicki-l/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row12\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Brendan_Shannon_pp.jpg\" url=\"/attorney/shannon-brendan-t/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Brendan T. Shannon</span></h2>',0,'2022-04-11 20:55:50','2022-04-11 20:55:50'),(826,46180,46191,'workers\' compensation','This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the workers\' compensation board’s approach to claims and issues','This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/the-team/workers-compensation-team/\">workers\' compensation</a> board’s approach to claims and issues','This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the workers\' compensation board’s approach to claims and issues','Prior to joining , she successfully represented claimants for over eight years in a small, Binghamton-based practice. This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the workers\' compensation board’s approach to claims and issues. She has a great understanding of the legal and medical requirements necessary to form and support winning arguments.','This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the workers\' compensation board’s approach to claims and issues.',0,'2022-04-11 21:19:07','2022-04-11 21:19:07'),(827,46131,46191,'workers compensation','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/the-team/workers-compensation-team/\">workers compensation</a> claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication.','James uses his experience on a day-to-day basis to help insurance carriers, self-insured employers and group self-insured trusts to face the often momentous task of defending workers compensation claims where the law is very often no ally, and where success or failure rests on preparation, research and good communication.',0,'2022-04-11 21:59:38','2022-04-11 21:59:38'),(828,45925,46191,'workers\' compensation','For years, the standard operating procedure for New York workers\' compensation defense firms has been predicated on volume','For years, the standard operating procedure for New York <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/the-team/workers-compensation-team/\">workers\' compensation</a> defense firms has been predicated on volume','For years, the standard operating procedure for New York workers\' compensation defense firms has been predicated on volume','For years, the standard operating procedure for New York workers\' compensation defense firms has been predicated on volume. Each morning defense attorneys picked up the 15-20 files for the hearings that they were expected to handle that day, lined them up, spent five minutes reviewing the file, attended the hearing, dictated the report and then moved on to the next file.','For years, the standard operating procedure for New York workers\' compensation defense firms has been predicated on volume.',0,'2022-04-11 22:44:42','2022-04-11 22:44:42'),(829,48410,46421,'workers’ compensation','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation</a> as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants. When the opportunity arose for her to see workers’ compensation ...','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants.',0,'2022-04-20 19:03:56','2022-04-20 19:03:56'),(830,48410,46421,'workers’ compensation','When the opportunity arose for her to see workers’ compensation ..','When the opportunity arose for her to see <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">workers’ compensation</a> ..','When the opportunity arose for her to see workers’ compensation ..','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants. When the opportunity arose for her to see workers’ compensation ... Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row19\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Jillian_Chavers_pp.jpg\" url=\"/about/jillian-m-chavers/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]Jillian M.','When the opportunity arose for her to see workers’ compensation ... <a role=\"link\" href=\"/about/rebecca-c-brashear/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row19\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Jillian_Chavers_pp.jpg\" url=\"/about/jillian-m-chavers/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Jillian M. Chavers</span></h2>',0,'2022-04-20 19:03:56','2022-04-20 19:03:56'),(831,48410,46486,'workers’ compensation','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants. When the opportunity arose for her to see workers’ compensation ...','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants.',0,'2022-04-20 19:03:56','2022-04-20 19:03:56'),(832,48410,46486,'workers’ compensation','When the opportunity arose for her to see workers’ compensation ..','When the opportunity arose for her to see <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation</a> ..','When the opportunity arose for her to see workers’ compensation ..','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants. When the opportunity arose for her to see workers’ compensation ... Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row19\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Jillian_Chavers_pp.jpg\" url=\"/about/jillian-m-chavers/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]Jillian M.','When the opportunity arose for her to see workers’ compensation ... <a role=\"link\" href=\"/about/rebecca-c-brashear/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row19\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Jillian_Chavers_pp.jpg\" url=\"/about/jillian-m-chavers/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Jillian M. Chavers</span></h2>',0,'2022-04-20 19:03:56','2022-04-20 19:03:56'),(833,48410,46512,'workers’ compensation','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants. When the opportunity arose for her to see workers’ compensation ...','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants.',0,'2022-04-20 19:03:56','2022-04-20 19:03:56'),(834,48410,46512,'workers’ compensation','When the opportunity arose for her to see workers’ compensation ..','When the opportunity arose for her to see <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation</a> ..','When the opportunity arose for her to see workers’ compensation ..','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants. When the opportunity arose for her to see workers’ compensation ... Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row19\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Jillian_Chavers_pp.jpg\" url=\"/about/jillian-m-chavers/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]Jillian M.','When the opportunity arose for her to see workers’ compensation ... <a role=\"link\" href=\"/about/rebecca-c-brashear/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row19\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Jillian_Chavers_pp.jpg\" url=\"/about/jillian-m-chavers/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Jillian M. Chavers</span></h2>',0,'2022-04-20 19:03:56','2022-04-20 19:03:56'),(835,48410,46555,'workers’ compensation','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants. When the opportunity arose for her to see workers’ compensation ...','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants.',0,'2022-04-20 19:03:56','2022-04-20 19:03:56'),(836,48410,46555,'workers’ compensation','When the opportunity arose for her to see workers’ compensation ..','When the opportunity arose for her to see <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation</a> ..','When the opportunity arose for her to see workers’ compensation ..','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants. When the opportunity arose for her to see workers’ compensation ... Read more[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row19\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Jillian_Chavers_pp.jpg\" url=\"/about/jillian-m-chavers/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]Jillian M.','When the opportunity arose for her to see workers’ compensation ... <a role=\"link\" href=\"/about/rebecca-c-brashear/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row19\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Jillian_Chavers_pp.jpg\" url=\"/about/jillian-m-chavers/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366\">Jillian M. Chavers</span></h2>',0,'2022-04-20 19:03:56','2022-04-20 19:03:56'),(837,46171,48410,'legal assistant','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in workers’ compensation as a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/legal-assistants-and-paralegals/\">legal assistant</a> having advocated for the claimants','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants. When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view.','Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants.',0,'2022-04-21 04:08:33','2022-04-21 04:08:33'),(838,46129,48410,'paralegal and legal assistant','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond','She has extensive experience as a <a href=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/legal-assistants-and-paralegals/\">paralegal and legal assistant</a> across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond','Elena is excited to a part of a lively group whose foremost goal is to foster strong partnerships with their clients, leading to a proactive rather than a reactive approach to strategies and goals. She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond. Over the past few years, she has honed her customer service and organizational skills, becoming a detail-oriented, proactive and intelligent assistant to the attorneys with whom she worked.','She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond.',0,'2022-04-21 07:33:56','2022-04-21 07:33:56'),(839,46173,48410,'legal administrative assistant','Shortly thereafter she worked her way to a legal administrative assistant position','Shortly thereafter she worked her way to a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/legal-assistants-and-paralegals/\">legal administrative assistant</a> position','Shortly thereafter she worked her way to a legal administrative assistant position','In 2000, she started at a local law firm as a receptionist. Shortly thereafter she worked her way to a legal administrative assistant position.  Susan has worked in several fields of law, starting out specializing in intellectual property.','Shortly thereafter she worked her way to a legal administrative assistant position.',0,'2022-04-21 07:44:48','2022-04-21 07:44:48'),(840,48173,46421,'basic NY workers’ compensation compensability','The monthly webinar series on basic NY workers’ compensation compensability presented by the Law Offices of Melissa A','The monthly webinar series on <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\">basic NY workers’ compensation compensability</a> presented by the Law Offices of Melissa A','The monthly webinar series on basic NY workers’ compensation compensability presented by the Law Offices of Melissa A','The monthly webinar series on basic NY workers’ compensation compensability presented by the Law Offices of Melissa A. Day has been an educational, approachable and insightful look into the cornerstones of our profession.','The monthly webinar series on basic NY workers’ compensation compensability presented by the Law Offices of Melissa A. Day has been an educational, approachable a',0,'2022-04-29 18:41:36','2022-04-29 18:41:36'),(841,48173,46486,'workers’ compensation compensability','The monthly webinar series on basic NY workers’ compensation compensability presented by the Law Offices of Melissa A','The monthly webinar series on basic NY <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\">workers’ compensation compensability</a> presented by the Law Offices of Melissa A','The monthly webinar series on basic NY workers’ compensation compensability presented by the Law Offices of Melissa A','The monthly webinar series on basic NY workers’ compensation compensability presented by the Law Offices of Melissa A. Day has been an educational, approachable and insightful look into the cornerstones of our profession.','The monthly webinar series on basic NY workers’ compensation compensability presented by the Law Offices of Melissa A. Day has been an educational, approachable a',0,'2022-04-29 18:41:36','2022-04-29 18:41:36'),(842,48173,46512,'workers’ compensation compensability','The monthly webinar series on basic NY workers’ compensation compensability presented by the Law Offices of Melissa A','The monthly webinar series on basic NY <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\">workers’ compensation compensability</a> presented by the Law Offices of Melissa A','The monthly webinar series on basic NY workers’ compensation compensability presented by the Law Offices of Melissa A','The monthly webinar series on basic NY workers’ compensation compensability presented by the Law Offices of Melissa A. Day has been an educational, approachable and insightful look into the cornerstones of our profession.','The monthly webinar series on basic NY workers’ compensation compensability presented by the Law Offices of Melissa A. Day has been an educational, approachable a',0,'2022-04-29 18:41:36','2022-04-29 18:41:36'),(843,48173,46555,'workers’ compensation compensability','The monthly webinar series on basic NY workers’ compensation compensability presented by the Law Offices of Melissa A','The monthly webinar series on basic NY <a href=\"https://thelomad.com/getmad.today/wp-contentwww.getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\">workers’ compensation compensability</a> presented by the Law Offices of Melissa A','The monthly webinar series on basic NY workers’ compensation compensability presented by the Law Offices of Melissa A','The monthly webinar series on basic NY workers’ compensation compensability presented by the Law Offices of Melissa A. Day has been an educational, approachable and insightful look into the cornerstones of our profession.','The monthly webinar series on basic NY workers’ compensation compensability presented by the Law Offices of Melissa A. Day has been an educational, approachable a',0,'2022-04-29 18:41:36','2022-04-29 18:41:36');
/*!40000 ALTER TABLE `cuB_aioseo_links_suggestions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_aioseo_notifications`
--

DROP TABLE IF EXISTS `cuB_aioseo_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_aioseo_notifications` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(13) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `type` varchar(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `level` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `notification_id` bigint(20) unsigned DEFAULT NULL,
  `notification_name` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `start` datetime DEFAULT NULL,
  `end` datetime DEFAULT NULL,
  `button1_label` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `button1_action` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `button2_label` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `button2_action` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `dismissed` tinyint(1) NOT NULL DEFAULT '0',
  `new` tinyint(1) NOT NULL DEFAULT '1',
  `created` datetime NOT NULL,
  `updated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `ndx_aioseo_notifications_slug` (`slug`),
  KEY `ndx_aioseo_notifications_dates` (`start`,`end`),
  KEY `ndx_aioseo_notifications_type` (`type`),
  KEY `ndx_aioseo_notifications_dismissed` (`dismissed`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_aioseo_notifications`
--

LOCK TABLES `cuB_aioseo_notifications` WRITE;
/*!40000 ALTER TABLE `cuB_aioseo_notifications` DISABLE KEYS */;
INSERT INTO `cuB_aioseo_notifications` VALUES (1,'61b6e4fdd2a53','Review Your Facebook Open Graph Titles and Descriptions','Due to some changes in how our Open Graph integration works, your Facebook Titles and Descriptions may have changed. You were using the following options that have been removed:<ul><li><strong>Use Content for Autogenerated Descriptions</strong></li><li><strong>Run Shortcodes in Description</strong></li><li><strong>Run Shortcodes in Title</strong></li></ul>','warning','[\"all\"]',NULL,'v3-migration-deprecated-opengraph','2021-12-13 06:15:25',NULL,'Learn More','https://thelomad.com/getmad.today/wp-contentaioseo.com/docs/deprecated-opengraph-settings?utm_source=WordPress&#038;utm_campaign=proplugin&#038;utm_medium=notifications-center&#038;utm_content=v3-migration-deprecated-opengraph',NULL,NULL,0,0,'2021-12-13 06:15:25','2021-12-13 06:15:25'),(2,'61b7f4eed8d18','? Introducing Our Updated Redirect Testing Tool + Enhancements to Sitemaps','Check out our completely revamped <strong>Redirect Testing tool</strong>! Now, you can easily test URL redirect right within your WordPress dashboard and see the status code with a single click.\r\n<br><br>\r\n<img style=\"width:100%;max-width:400px\" src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZAAAAECCAMAAADnz3G2AAAC+lBMVEX//thelomad.com/getmad.today/wp-content//thelomad.com/getmad.today/wp-content5+fr0/fi3uMG1tsCrrLWxsrzo6OuvsLm0tb5Ep2f7/Pytrrf39/i4ucKio6329veur7iztL22t8Cwsbvz8/WnqLGmp7Ckpa6pqbP+/v6Wzan39/nt7e+xsrrBwsjh8+jo9+6a0K3p6uzy8vTLzNG5usOqq7Sys7vr6+79/f3Z2d22t8Hm5umoqrKkpbDV1drF5ND19fV3v5BHqWnX2Nvv7/GanaDAwcSFiZZtcIHx8fNmaXvR0tTCw8aWmZ3o6OlJTWLl5eepqrSdn6qbnaiDhovU1dfHyM+Ulprh4uTb3N2Ii5h4e4pbX3Kdn6OAg5Jqbn88QFdvcoNhZHfe3+HFxsmDhZSIjJCztbhSVmvz+/fO0NHCxMq8v8a1trl8f46Ag4hzd4fR0tdeYnRVWW35+fm3ubufoaxxdYV2eX5QVGlGSmAyN08kKUPIycu5u76o17iusLOMj5xiZ3lMUGUfJD+YmqaOkZ6Rk5dobH1ucncpLkfg4eLd3t/Oz9XKy82+v8KLjpLt7e7j4+WprK+mqKtYXG9ARFs3PFSWmaSNyqOQkp+KjZqOkZV+gZB6fYx9gIVhZWvx+vXa29/Mzc/Fxsygoq1OU2dXXGFDR10tMku7vcChpKdzdntmam/j5OerrbCoqq12eYl4fICfoaWSlKCGiY1cs3pSVlzv+PTR6tqqrLVrbnNNrG+tr7JdYWfg6ObW19m+4cqUl6Pc3OGjpqnq8+6TlqKDxpuNkJRFSlGboarL6NXs9vHZ4eHM1NWwsrV6foNMUFba7uHV3d2ttbrm7+zf8eXI0NKzur9ndq603cKg1LOWnqcaHzvh6uuu2r7Cycyepa3S2trO19qWm7SnrbeRl7JmuIPd5eNRZK1quYaiprl7hrFebqpitoDn2tbczL6Eja9Tr3NBRUp0gK5XaKhOYqjs0WLbp0Tj5Nrcs76coLNLXqejvOPmwp1vvIrXumvQqmS3yuU8VKrHo6nZvaTCqY3ElGeUma7CfpO5goHRlHFGFWlDAAAh2klEQVR42uzcXU/yVgDA8WOQR0hRtIC4ZugFlvFiB9kiGYUsopAxBg1vhoQEQkA2CNAlU6sh3biYicg0cEGUycVcyEiWuJtFMu93u8RPse+xWkWwbM45Fdj6z3N8qu0Jyi/tsWgE8v9SknHNv08rkQ8wIHgw2Z8P2UPjWafJ/tnQTE1prsfUg0PDGZwpghf+oh4MaPqa6ibge4mm7tL0BfoxmAkCdrAgjxicdx815UnTntirfYaPndJ9Ytn+EmSqC3gzif3/ocFN8M+H4FHjKdOe/kjc8dzPg6D7WLeMfSAsRx8Iu/0844kwD08b/CM9bTD/ekFYUS5Ih5ZfN14z1qQj1QvCSnAolmR8LxdXhRlTvSCCHpGlpXG+V0m2tHQrIrgTAbeLOY8xoDomnYWEAenecshk453E/9/gmRkRzG5wdmhhMTwPX++c75/Uu/GuUdyX0sH5QM+JIrszYUE6q73sngX8v21nH68aYaYmZ4f3Ar7EHanCxluJd2FOW6LOQU4YtlTh2yznnS1nizOjV0V2t5IwIJ21nLlYFZnQ/33jJyiqvcyc7GyFNfHW8U4TRqOexDGKOmAUvogp0c3ozgLK9C6u1Bx5NWisueuwVTXxcNRYEdnCUfRdr1ezqxE7UDke3BHFLFJLPDovdVS8sVjT4zxGNc3NY3Sh7A273gRbRTjjJ3a3CaVAsFsn1kCPxzjgG0jn9pQv6BcICGXVA6aYbq9XYsA3kGZz2bDnkAGRhy2Aweh48CAD6rxeTe1fCgSVVCR9C8Iu5jDgG0hrmXEtPL7EvmQPuicIrAV8A6koYr/dYiluQNgLlnYe8A2kmhYWMyRLdyBL7Akyz4MMqNq8lr0lYUG6J8gAQBD9s4WAEQoZQ5g3+i7IPHwNIuuCsCeICLxyb6t0z5YZAqOT+YefwdiHn/eAaGFxF0R27QHPy18dRDfxjC2C0em973/86MPvuiCi21PkFmT8BkT06iATz5kVjFBjX/z+7QdQF0R+d80CPVesGfB38SDPlP4T+sdlpBdEC3NB5P0gi8UYiiFqdJrDW1wFfenXDW+j65ylFVJNAia1a13Pg/Q09sGvn33/k6ELIrpbRMDNXSGsZUAk3Gn+AzIfMkkC6+BeqlMn6GvSE8Tsm5yV1R2PAibLgXPsQRCT6QkCtdr1W8xlGj0Q68cfAMX3H4LbDDPdRaQLIprhgoiuMmj6quqkomX528i6s1wD+uiucUVNb6rkbyYB0MQWXJPyVkwP2mWHf2PCArfXklNmtDWHAWjh0GiG85kvAYgGAlNQdHNHjdTkC2LFspULslee/+ce2JGHZYlHRw9Eb9UDAH361yBiFkTImZZpmADyQdJJUfRVWpejaTrpIBtUxk374qQRABAh6VaTalydu+skfbVxduCTkNQ+cwy5YTZe0Vchy1VDDICfIneNVw2SxuYosnB8IOaCJAlbcNuSxAO7CWm5WtnEzir+3KEhGDhKFkq2N54DXxvDRHZb6jiUby1X8jZTqxTfjFcXtjeSrgQ2eiDd+kFE47IZieTk5B3hW1yQjbybcdSnqbAr53eRlUMqXCitOzM1Mk969NcgDWOS3niXPrikYNP2DYi/naDSCbJtJ0wZfyzgGANAEQktBwJn5+ThHCnF3DsGLsgaXogYcxulin0fz9pPy+nZFOHIHW6E7YT9vJTIW3LhtJPwFWivTUo3s6KDRFZab8abgY2IN+EcwTWECyJhQLS3ID6JzGLZzHhtZctb4H7BRhFMx9ecVFG9bzsnQ81Qi0ghkyo1eXUVZ0H2dW2yXt3y+8hVRfAGJAb5r6qZkCGQmFw0F0uzgClVWM4TIEnH5w7cf7aG4DPBOGq355w+5Wkg29B4LrIZNJcJHeXsRNK+lU/7PB5LJG2h8TBKh4jaaSiL2prxRAO3xAPofwlkSQDwtfFEwmKZrXu8s31rSCF2RB06KAMDUqRbWnymcFD04W0a99Oma5ANK0YXFhJxB+VwBW5AjpEKJZ5LqO2RaCqEljYnWZCzUt51STnmAqvA7eSeIej2etCH2g9PI5lkLhUn2pg7dGAPXQb2S0e53MFFPRVyYW5PqdQ4yZ3W30TseQl+WvLGveHTrD+D/SdARPdBKvuR3K5XyV16giRFZSeMdFsXws0ERQWK6QZFlrF8K5rffhsAwrYIPCRFrmEhiqRtqyWPvOECrgBFbZnXaIp0nhHUO9fXvqB1ocFMX3z3dJXZLeOAdDorYp1Vfuuohk20sYlYWlyHseIe8yGJ1lvC2kn2sJoxFtpk1nVDbTS/7X0IJHHxZssXbhL+y6YUcBozTbkUwGwYg/ZWEdXxAoZAhqnkNFTTQbXapwC4z/TMMTGDHugWkntnY2211fAeQLAFlxmBlmMmCMFQNWCOW9UDd8y1CMxtCLzXXuwH4dLsCm82TJat8jq7hYmDuGuiAya1NYsjfB/yEMhFiiCUlqMTuyUbAa/cxCNa4Wx13hnpG8OHQMSOi9lxoXDeoSzvgkfGv3TygiA9L2UJwd/Fg7D9Z0FUz+ihVoCRbWhAIMXzNT1KP6B6HIhECPgGkkE4w4MMU/dAxmU8yEDjglys8SADjQtSdTgqDnnLpxRJyoBvAHFBjiLVbQuxdSqU4IBvAHFBDgsFj8Uzn5rjQQYUF8RXyfm8l/ZZSRPwDSAOSCsdx+NSr98zI0lP8w2kj/j7kOGKvzEcsniQIYsHGbJ4kCGLBxmyeJAhiwcZsniQIYsHGbJ4kCGLBxmyeJAhiwcZsniQIevFQMas5vf0gO/FQFQLOvAXrbaR1T11sahD1O6OwXufrJi/Wh/h3yB8bIMCmc0Ht2Vfqib2oHWT+RjH9tAvIYN7eT2pAKBCQOGq8zR+UHHiCsCmWJ0066atal7kpUCy3rHoMS6/8LptwZPdnDKE24rb3hRev+iAEOfZTAcE0U1COpUb0o3SHx0Zjh4LkjMi2Coxa7F9WdqW1rYs2T1/uqFNbHq2AQinIF/cGbDR5x0QSAchkHUVUZlH6i8lDUOPBcFL7tBRoRy3oSKP/cxmsatCJw3U59yxX1/OdH6ps4LgwR4QML0CIV/zIC8Fsm6rZ7AoseFxFwinCn/j3W+6C4YTWJsAYMIWCWJiB5B639TrKQ1gYiTeXkQg9STgexkQoLeOAWRMDwDzRAMI0puhnn0K7uL96crXi9ZFNX+CDM19CKRaWVlR8DciQwPCx4P8N7oHIhSen5+vvaVUzknTgG8AcUDkcrlINCMRCt+aNYL7KdR8f5IVAQD88s37T+836GmXLPUf7N3vaxJhAMDxc2Qtb1KLNqdDMQvMqyyXdfbDOSwct1UWa+XaIEblojeb/SBMFk2dUDekbUQ/0MXGStk1N3axpWFQHOSLCflS8IWB+wP2H/Qoiza7lm1IN3m+/nzQV37g8fTxPAmMpS3ZlzMsWEchem0gKgTG0hYeuAquB0RbC0EgSOkGQTjWfwdB3cga681dS46U1grJShAtSLC8ZUMtOP0zCP+vIPu8yNrCHLmbo9Mb+H9h/gaiJUE/BylwZ5Ekw0vjTDh9eJlOMlQQyJm311vKBy62nH9w4ywrCIb7nGZv03ZP5JGqvtUv1DUjaDduuSrURfwNbsLQpfJZPoNFKbTeO3XpgMGiE3YFxqQuA95W56hrc17ldcwiJdVKkHlKTh9OBbWhVDoUVWgFthgtp0PJpDaUDMvDiXQ6mEkls48GaaBTAMjle0/OHT/bUn3ywtlXrCBVduNCjwHXGVqHjHb/QgPRjPBwZ9PLUbMbn/Lq9OP90277FIboTa0WgtA1ef1DDfjYUFvXiMvR4zSO9/W7kZIqb8qqjWYodDipEbaTGJMUJGgtI1eUlcXj1rI5kqbLNLR1WJGwDjPD1kwhIO8f371y/fwx2YU7H66zgvS2nfho7LHcGsdfb/GOOEdxn8luHsWIsdvEpIdQnTA7h/AvfkvA5BXq7c4GoXlkVtJmWTC67S6Hx4GP44YS2zjIe1Mno6kJKkZTlGaRqRUIEhMMaqOZuU9UfD4L8olkNLGYPBUmo+mCpqybLwYuv70MQAb+ANLtE3484LPgxCN/HeHonu4XSlU4YRwhOvWWWXt9hwl3NE51SKW+zmacsHcb7fbO3Wbzy66+Ly7HlKXR0/+mDimpfgNJTsRi8Xn5MMnYQoLEfCjG0PIYFU3kQJggxTDRGFkb1pAFTVk7zp87d/POgOzpk/strCD6DnRS9chvNI17sL43rkk9Aqas1yZDM2F5Y67vDAQaI4PeXgQ54Q8EDM86TWPGgInovTRoGpRGmiKDka5LJbZCkgcSTmQUlCZpo6hUgg4KFHFtQkNSVJikNJqwzUZryWg0rKCih+PRUEGbvZt2yjbt3SurrOSLWUEwDLFKMFQirEMRDEWsGAAxj1ahEut2VGjoaLWj6B6rBMDZd3tnseyzeFVWbKi+z1nFk1ireFiJeeSDaMHGbSi0dAH3s2cw0IJBLkFukHu0aB8M0WczEiTXjIGY+XlAqZ6I59fk9JAwNJfoWu5//thelomad.com/getmad.today/wp-content2AIgyCcDoJwrGKD7AceAKQcgvwLSHpdIPFVQGSypSXcU9UiZGXSPTCWcr8mt2XW4bFIrQICjmC4d7NsJyBRivNAeNthLPEQUDulWXsxDP4MiNNBEI4FQTgWBOFYEIRjQRCOBUE4FgThWBCEY0EQjgVBOFahIIwCVpTmrWsDse2CFSXKtgrI1uzXvYADfN0rzgcpgxUled4C1RElP3fgvB07tm5FxGJxtehgTU3N89OnIQhrRQe5dvrmNiAgEgGM7E6fSrG6OrvT53MIwlrRQRoBh6haLT71js9HKisqsiZqNRCBIKwVHeRQjkPJ51dUVCLl5TkSpbr6YM3GA/n6rd34fa7dtft72QaKBQR4ZDnKy3MgQESpVItWBfnBzt2ENg2GARyH56oXPehkB60HvVXEUzWguSm60qYDoXGlFHeQJIo0kVKm1ySW0UEOluQ48JCdgkJWyJIIJl3CFmrTUuhtve0DFBU/UMGsrrqpBz82aSU/CLRvkueQ/yHJJfLc6YVjOAyY1vP1t29acndjA4bID0FOHYqe/M0gkWppebS6AD14x5IdpW4K/ViGvq2cJUPdlHWzBj+jWK1tO3D1u8b1Zn9BbcqwjdDs4P1z5GZvhKVA/fWtV58mVjY2LsAQ2YUgwplnEVlf2CqCtxGLL/hpuX+RbzThqzptQGvS3D+uwM94qfst+KrG1mGH/awKXzjFHQM6rLsVxKIVxIXAdQ+E+vm1tdXuSr0OQ2QXgiyVNueUlm8LsMlkXSlXLjcqotahuTGLYMSmL5KuE8eynSAInmeY/LyIuvN+JxlNIwYgk9krJH0xRpJ0rjHNeFnxbKtM5hJ38rhJOHE3bdJcrpmuJMjH5RMM4WZEFFUgg6QnnSyJZM4SV6mRGTHXGhNz2Zuz8TFWSbSva4CvX3q/tvru+fPXMET+PogwurQYeVq6vbCswya1mEqmKg3iioY9RCakE0Sb0lg/j8VumLx7tQNgUeSJtBNLzjw0Kt6ULQPD+KRHVNDGOH09kyPsqUJ6WnLmM5QBNS4m5pD2ZIPXsPvaTT5zViwnWVojFXCDxSTpUTFUs8Y9yq8UOaPgc0bcF226kZgA4c3ax1erL1+uqzBEdiXIUqn0CO8HEWJTBxFUQfM+lk86kou0MI8d8fjYbBOz7RoAjs446VahmJg5WvEkHICJNVAtn0OdVBBkNmdOaQVNsrSjlAUCjY1hWpQ1ea/iRKV0tIhqGpvaz2wGaXJF1C9rtGLQHmVPl0njcZSz4nZBzKm2BfiT92svXrx8u9KFIfL3QeBRNTK6JAjPbgvQY1NG9oaawah5oyLRVrGJHSpQU3YDpYpG0QAAIqHHeMp2JTTtSQDATKsJjplI8VgviJqkWIelWFOcFeABZXMNi5Bok3CiaBQdobi2fYdHgyAizzcQjLGRIIiJcOMOiyVNjI3bQVFAfOi8+vBitXvPWNdhiOzGTb26vBiJPKrOwQ5qDQc92HpqOoCu4NCHK2qwIGz7L4NQgy01GfC6ALIOW+Sa8O1nMFYGADeh4MFh+NcBwSaAoAO0eRMC196tdu8Gh6ycgyGyK4+9pepyKejxb7UOyvBzea1XSe1e7mUcuBekPQ8CwtO5uQiEBiZIKAzy3wqDDJgwyIAJgwyYPw6yeCy0F04/+7Mgi8dHQ3thad+vBgn9I2GQgbYjyMiBkQeH7x/ZDBJ+avyz6A8wIyTTxaZquk05KEJ6GUYBvQFmhFjxJwRKLi4ejRA6AcIRwtFjxRrgMxoh9AOEI2RNf+9ohNAHEI4QSw7XcAmrHaMRQj9AuNnLHy4OipAtDKOAHoBwhLCqj/ZDSAajHcPhC0YjZJABgIiOEKnhdsLrIAXERkiyVaDa8LppYpAClAi5DQYvgODdOzR1fiHLomrrRbfKaierhk7T9TKYpq26gDvZQ9c6eYqqkW7taP6hRYSwsYEuzgNv2RFHU+dbWsFZ35kcqBbiGOSYmpSQM6MjJ0U3KiglNtcyh99nGSPDKKBrhMhzFJeK5daX8IVsWdyfnJLpI1/iMkM7KtsxLoV9elAg8zA9uZogGLAICbTqCRLKmxDEXJIxoTc0JXNHshVPNmd2iKNFJkNtXogywyigb4RMiYoST6sIsVEtVstY49BbLhe6JTZA2SY4uL6cQaajmGEU0CRC7t67jiNCGLS4pYAEuqAUuDjL9mAYBTSJkBvvrl2/d/qx/rPTj0kww6l+tEqnTYQA2Lt/1zTCMIDjz0uaGnl7NcZf8KLcIB7pgVUEBZstevBSDCRYcfIIHIiho4Vzc+kkhi5ytzp1ctS/wt0KQW8QtIvdsnRq0pZSMbVgeM3BvZ/xbniHLy+8L+/weKfT6WQxXcy+ThfA7dp6kMntze3EWg7n1tICbtfWg4znX4azm7k1/jbnO2RHNu+QiX8ytmaj5WL2HbgtMDj2epe9/dwoGALuEdjfQ3BY4BgII7JdkFdCmGPhJLMhyPAPy+ITdnYDxTcEGf0yvseD7AaKb/FAtcsgRP739MnVHwxWJqsf4EEOC6KJlQqGFYdv4acTEVhyiQY9/as51lIReIizgvR9lJa0qNZU1XDmuYYj3qT7LF7xVwNSrwgsUYV6lRR1R5AkZWLg6rZ7rQxswD6IadZq+XxeUfRW66mCfNYTz0rlS3pdK1A9VE7XQ+eeC1HJZX16gXGQ9p4eVLOvj/frL7QCidG2txGAdWyDNFu6rih3FWqmaYvBkjrtfMS9cqARMfzvC2+OLgI4eZU7a3woaBrjINlg2fOpWC6L78zTc0Jpu5kA5lDc5pM+9dhg0M0W09cxRSpKZvIqZlaKRx6xX1MPGAeRIN2vN1RJVRPiZcdzF0RBsM5hQahoGCUjliz43a6mz52hkhg96EhuOlD3XgJL3QFEjNKxlE77jK4qSV0aVVOwzmFBZIyxLBO5H8VABAQEyYBlJBAiYMbHXgJEhvuVqojIVZnIBBNY57AgTsOD2AwPYjPbBulGOCaiWwZxIY6JFA9iLzyIzfAgNsOD2MyjghweCuh/wqkw+k1A3A/2zq51aSgM4Ofc9MIaWWSU1JVdpFFBoBvVXrDa0FUryLXFYNjbyi42BlEmyqZ/vYgyJnlh+ZJLESExJCT0SvssfY+WRFGEFZZF+IMNPRvnOduPA+dwznj+qJDNPN8x4WK8BqYcgHPCzmH467xQh+hhPb4PjdNwtXgtK+AlcS/cv+gh/yUhh95RTBPlhACa1Q57CTm7L0Je83CEFj5BVLxhU/ZAaJT5hnRMFsJoyKqyMSGyjw7DXyE17WZLSimiMNfgalFHrajRahVZcQwX8C8J6RGD8kZ1kj5c7qUz7ye9WHry3rQnk3a9947CJhMd7qt2YJhWJ5M+924yEfqTSayrwF/h8KGk3D7BVE4UCLhaAmEjkctydt4U98EFrFDIjh3zpGBH5knBviNk0n89M193y3S/Uc80uKrSYLsNZmD0Wk3baLcbbeitKvsOx9I8WaUYrWdUxaqcCcBfAI1YDWV2rCuvXMi+/NOonchmEvv/qpB5lraPS7jbduwAblZJN63k9lu33FXc7/YQTmoSr22bttPl+OtOT0vX0yVG0nvSrNlPpJM8hKW0Y6vdBFUt9LF3yutEOoSH4C/g4TMJy/WcWb0QhTCTXZJMef6qkGtn3NXb7dv3HD16dLebevWgu3lxi9tLTu3+jpAXucOHSgGeUfZjTDH2uot97OOxlinnzHEX13IiByEdtTE/V2IsOppjDhWYUX5Qgb+CRNX9Narm9QpxuFpYjMJDfCcLOQMuwZJCQnvdFIY7dm3atGnn1sVCviGW8MI1/5AQL7cPrvmHhKxZC/kv+Qkht++thSxglUIevtr28M2ZO/e3Pzq9FrKAlQk5fvvcg4s37t6/fvLSafA1fmTNHwFdJGTP+buP7l25+/j5pTuP15scVgNcJOTylcvPnt29e//thelomad.com/getmad.today/wp-contentuhRsn10IWsCohZ1/dO3f70qOjt568vbEWshrg4lHW0ZdXz3wc9u69sBaygNUJObhly6d5yFrIaoA/nIeshSzkXxJSY5IJBcL5/vSbCOKDEDErABAiymLZJJMo5LEIAMEgWIaCF0G0gHzMrRwg0BdEPNIJKw+RoBsSBPd9LETCNTe2DwCfW4TcDAYR6J7BsgjZm8ihwxtDBN70ucF8CNjAh6xbN3ALAIQfj2ABzEPNw96EPgRCBPlrQjbwcpHE+KFQrAlUAWf5jpZo3ARk+ZjQJno6VuWSWRBkK0u10C4YXENJyHUVDxt6LKRt4PmEqRTjpiqhpKpD0nD89dBUzwCQldT8QJUzzqAg4WBZBtjUogqFlKQqIaGm7hc8AoGZrakQK+hxzm1LtmUcElFLEgAIKzW5UpMyuFSXVM/fEgL8aY20k/VSVZo5TKKUYERRRD4JeZcuNyIfhWj4ckIqDMHIpUqfYKx+LROIsYTAU2ZXibJRK8rlOGzY8PNRQy8AX1IY6ONDI4tRomZ/6S7SMrQET9YwhsRFZlo7EYNUxuFHVjGqaooo43hKNiwx0sVtAIzioQE/NIsY0Z6O6b8pZPSuyefG8QYtzGblNJXqAKC99lpJtjrslF8ks/PvXpZhjI6JcRxjZyjDqmUcIBYbjaTCoxaFOHwdYOQIpPxUVyypwFPd71NItKMbhOovI2BJpkPaHhFaPRfJMtfazWMg0h2yYzYjtQ/ECknA1WzAmiLXL40BEjXBYelYAJseSLHUxl8TEmiYVNLGStQJ0e4zvJ1S67ObINBnkhT3OkY2481Z17IUCJYgiqbYlJYSyqoo8IoQ0ov+kRczkjpliaEoKdIppRmod6YqaQZyDkUmLIeUWD3QXFqIFKKZllQp2YMiVtAoTuMJgtVzxU6dl3BMMgTewfQxndI73oqesuoY2VKkA9QQe/HXhHhwOuaopimjTrJN+QcDmhvcBIBzjMgJ9QSt5KVWixjKS70aGakEZE0gm61DqGTQcZL1clCnGvGQoyFykThWxNqeoX9g5OV82JBv1hyO5gIZjx4ES5LNHxM2lLzS7igHiKJwooIjG/lMriSFB1N6v6PkhVSJNJFKMXSMQGsGzTlSOAuJPHHgrw57ffNa8FyOAz7fp7/uj9+LDwTqwS8JABATayEgOL+A6p3a55AfT8HfHBkd5H1fas3znew8mHuEOs7G50bN7/l35iEf2Lmf1zbBMIDjPFCWjE3ICl6G2aUe5kYvgRoh+AMPivWQUyUBIXgKeEnIrchksdVjIAEPQhrXkjA8hEkOOaynxn9sdtma0TFIWiyuvB/wpKDwBUHe9/FtOoCZrQ//thelomad.com/getmad.today/wp-contentul22k5h/Fd78ACVN8etUXr5DkBQK8syhIDmDguTM1kHQEu4Wsl7C3dvb399//thelomad.com/getmad.today/wp-content65YTIugTQ5byGKTQ7rPulh8kYZ4uYdG2naRg/kQBAAFee5QkJx5TBCaYbRzWPMFX4Q7NEXALUyuQYVlGLUED3Z4guEyLjDdE4JmuEPc5zgft7vjcwKyptMgCzjb6tAY25ZJm+M4gey0WQz+kKMgH5PhKIS1eefbAn4jmjwJt2rGJ6BWxipkH/6A3oQSpZOJpk/lq5Y8PGhwsio7rG8sIGPHUQ8MhqnaPUdTbFer1uVFeTmzv1YJ2MhTkKjvxcIq5KmhlXCSN59eTEOlY1oNKdbNUFEtK0qDTL/1Jhdz+7R70YTdfWmYrGh4VwC9y4u67hekrr9oj4lSc0xAprDBzCgPW3UZKOWywbFClfd1YX4GhbAMd3IV5NqMTX/0faRanYgxq0GLt/jAOJVny8E4UeZeoI3SIKYhWUx8Y6ifWdgdNzGWosG3AMauXHdOj82G4jb7QHS7GQcRQne1GN4oKpTr2s2p4/MThT+a14AMz2AjT0Ei3w3ZcKnYFncbZEQvzcuB42jOUhonXrUXMLdBpn1u1JzFA1xWYXdKvzM9MRjnIH1XVe1D88hhCxTjUSL/GbLV9/QrZti97Nf0rx5Tbrd5t1AgVzrdliqwkasgth+J06R+ZgY/g5DqJJmxYdLmAt9MFHEUB2kQ8/q6cSBGLkg87Eyc4oTkGuc3UeySWhzXhXkUWLYSj1o4ZIocHIFenzC2GViqMIlNuZoEASeHgXQGG3kKslYiCShVYA2nAcj0qBAEjQGG3110FR7Do+A0AVAj4ZcyCU8FozCA0gEGaxWagD/lLshWSksNkBwFQVCQ/xQKkjMoSM5sGeTN/SAUjmSCpu8FeV3cKsgrDMkEvN02CPJEUJAf7dhNi9pAGMDxhZohASFkDMnk0t6awIJ78hDxIkbwkCzKCgFhQRYDir1JifgFLOKynlbvC36G/Xidecw6rT2F1ryU+d8Gkkt+PHlICp0AKVgCpGAJkIIlQArWBUhNgOQcB/kkQIoQBfl8CeIIkPy61SgITkBqNQVj7OiyVhUg+QT/smTHwdSkdqMoGCEka9TDvhHlUsOWqpqsI+QoSgKiywIkvxpSAoIBRBEgOdegHpqMziCYgchVSeyQnLqFAbkAYSPS672yHllfRFftEXql9XpfP0AUAOHvLEmyDMO8I4SomRfPQu98WC7VMjRdus97NUX7rTtVj/SeOKYnQu5M07Bs2CDJTucgJxGbieRC4rdb/mYfH72u1900XbUMxdFkkAqkv76fhKPDatF+UAnzMMADBgR2egKCExAQARIwybRxcz2Plq3RYOavgsmGlKF4GIYkTd1FMAzGJIp3ATFpv3sgBUBYiKbDtwiQ1A1AybSWO9y0Zt8OP8bhejEkZhmavvjR1EwR2bxNdn0zMv3AoNWtzskjWekcBAPIh4jdsVhGpn3fDryHoOXeb+cDf2eUIq95bO9TXG/2g/fDyypcG/6OPuAO4+AeSOEgisNFgARMsmwZeS7xu2/Rs9dezN6tUmTu5qGVJm81OpLZumvFW8u2TxzgkQwIB8HoJMIWCZhknetLSYsn84lIJcmW/i7ggPkAjwSEiwCJRlEyZ4HlBnU6Ul3676tCGnDoAKIkIBUuAiRgcq4q+udpPJlxIAhzkD9EIE103WSWTuMctMpNhYs4CNJZsujK6RAfDw4CIhDGSJR9+BcPAAERTuI4SJRNDmjwqMVPXkMYS8/oWKYAAAAASUVORK5CYII=\" />\r\n<br><br>\r\nWe\'ve also added a number of improvements to sitemaps, including the last generated date and a custom 404 page.\r\n<br><br>\r\nUpdate to AIOSEO 4.1.5 today and take advantage of these enhancements!','info','[\"4-x\",\"agency\"]',134,NULL,'2021-11-28 01:13:23',NULL,'Learn More','https://thelomad.com/getmad.today/wp-contentaioseo.com/introducing-our-redirect-testing-tool-new-enhancements-to-our-sitemaps/?utm_source=WordPress&utm_campaign=redirects-testing-tool-v4-pro-agency&utm_medium=plugin-notification&utm_content=Learn More',NULL,NULL,0,0,'2021-12-14 01:35:42','2021-12-17 03:13:54'),(3,'624a990da67e6','Microsoft Clarity Integration and a New REST API Addon ??','Now you can see how your website visitors interact with your web pages with heatmaps and session recordings, thanks to Microsoft Clarity.\r\n<br><br>\r\nWe’ve also added a REST API addon to make SEO easier for your headless website.\r\n<br><br>\r\nUpdate to AIOSEO 4.1.9 today and enjoy these 2 powerful features on your website!','success','[\"4-x\",\"agency\"]',267,NULL,'2022-03-29 14:05:10',NULL,'Learn More','https://thelomad.com/getmad.today/wp-contentaioseo.com/introducing-the-new-microsoft-clarity-integration-and-rest-api-addon/?utm_source=WordPress&utm_campaign=microsoft-clarity-rest-api-v4-pro-agency&utm_medium=plugin-notification&utm_content=Learn More','Upgrade Your Plan','https://thelomad.com/getmad.today/wp-contentaioseo.com/pricing/?utm_source=WordPress&utm_campaign=microsoft-clarity-rest-api-v4-pro-agency&utm_medium=plugin-notification&utm_content=Upgrade Your Plan',0,0,'2022-04-04 07:06:53','2022-04-05 08:14:22'),(4,'624a990da7854','? Announcing 4.1.8: Improved Site Redirects and Modified Date for Posts ?','Redirects have never been easier! Our 4.1.8 update comes with a powerful feature that enables you to implement a redirect from right within a post.\r\n<br><br>\r\nWe’ve also added a \"limit modified date\" feature that allows you to make minor edits to posts/pages and keep the date the same.\r\n<br><br>\r\nUpdate to AIOSEO 4.1.8 today and enjoy these 2 powerful features and more.','success','[\"4-x\",\"agency\"]',237,NULL,'2022-03-29 14:05:10',NULL,'Learn More','https://thelomad.com/getmad.today/wp-contentaioseo.com/announcing-improved-site-redirects-and-modified-date-for-posts/?utm_source=WordPress&utm_campaign=introducing-on-page-redirects-and-limit-modified-date-v4-pro-agency&utm_medium=plugin-notification&utm',NULL,NULL,0,0,'2022-04-04 07:06:53','2022-04-05 08:14:22'),(5,'624d538b82c72','Microsoft Clarity Integration and a New REST API Addon ??','Now you can see how your website visitors interact with your web pages with heatmaps and session recordings, thanks to Microsoft Clarity.\r\n<br><br>\r\nWe’ve also added a REST API addon to make SEO easier for your headless website.\r\n<br><br>\r\nUpdate to AIOSEO 4.1.9 today and enjoy these 2 powerful features on your website!','success','[\"4-x\",\"elite\"]',271,NULL,'2022-05-03 15:26:42',NULL,'Learn More','https://thelomad.com/getmad.today/wp-contentaioseo.com/introducing-the-new-microsoft-clarity-integration-and-rest-api-addon/?utm_source=WordPress&utm_campaign=microsoft-clarity-rest-api-v4-pro-elite&utm_medium=plugin-notification&utm_content=Learn More',NULL,NULL,0,0,'2022-04-06 08:47:07','2022-05-31 12:41:44'),(6,'624d538b83b4e','? Announcing 4.1.8: Improved Site Redirects and Modified Date for Posts ?','Redirects have never been easier! Our 4.1.8 update comes with a powerful feature that enables you to implement a redirect from right within a post.\r\n<br><br>\r\nWe’ve also added a \"limit modified date\" feature that allows you to make minor edits to posts/pages and keep the date the same.\r\n<br><br>\r\nUpdate to AIOSEO 4.1.8 today and enjoy these 2 powerful features and more.','success','[\"4-x\",\"elite\"]',233,NULL,'2022-04-08 19:59:50',NULL,'Learn More','https://thelomad.com/getmad.today/wp-contentaioseo.com/announcing-improved-site-redirects-and-modified-date-for-posts/?utm_source=WordPress&utm_campaign=introducing-on-page-redirects-and-limit-modified-date-v4-pro-elite&utm_medium=plugin-notification&utm_',NULL,NULL,0,0,'2022-04-06 08:47:07','2022-04-25 19:36:27'),(7,'62684bae6c456','? Introducing 2 New Features! — Dashboard Widgets And Shorter URLs ?','We’ve added 2 new dashboard widgets. One to help you set up your website for better SEO and the other to show you an overview of how optimized your posts are.\r\n<br><br>\r\nAnother feature you’ll love is the Strip Category Base Prefix feature that enables you to create shorter URLs by removing the category base.\r\n<br><br>\r\nUpdate to AIOSEO 4.2.0 today and enjoy these powerful features on your website!!','success','[\"4-x\",\"elite\"]',294,NULL,'2022-05-31 21:15:05',NULL,'Learn More','https://thelomad.com/getmad.today/wp-contentaioseo.com/new-dashboard-widgets-and-strip-category-base-feature/?utm_source=WordPress&utm_campaign=dashboard-widgets-strip-category-base-v4-pro-elite&utm_medium=plugin-notification&utm_content=Learn More',NULL,NULL,0,0,'2022-04-26 19:44:46','2022-06-20 06:36:37'),(8,'62976293d4c9a','? Introducing Crawl Cleanup and Import URLs to Your Sitemap!','AIOSEO 4.2.1 now allows you to manage Search Engine crawl quota by removing query args (URL parameters) from selected URLs and disabling unnecessary RSS feeds.\r\n<br><br>\r\nYou can also import bulk URLs from a CSV file to add more pages to your sitemap.\r\n<br><br>\r\nUpdate to AIOSEO 4.2.1 to take advantage of these powerful SEO features today!','success','[\"4-x\",\"all-pro\"]',330,NULL,'2022-07-19 14:22:11',NULL,'Learn More','https://thelomad.com/getmad.today/wp-contentaioseo.com/introducing-crawl-cleanup-and-importing-urls-from-a-csv-file-to-your-sitemap/?utm_source=WordPress&utm_campaign=crawl-cleanup-v4-all-pro&utm_medium=plugin-notification&utm_content=Learn More',NULL,NULL,0,0,'2022-06-01 12:58:59','2022-07-25 00:21:55'),(9,'62b1d5a921d10','AIOSEO 4.2.2 is HERE with some great new features! ?','Connect your WordPress user profile directly to your social media accounts for improved SEO.\r\n<br><br>\r\nOur new Translations API enables third-party translation apps to hook into AIOSEO’s data for multilingual SEO.\r\n<br><br>\r\nUpdate to AIOSEO 4.2.2 now and enjoy more SEO opportunities!','success','[\"4-x\",\"all-pro\"]',340,NULL,'2022-07-19 14:22:11',NULL,'Learn More','https://thelomad.com/getmad.today/wp-contentaioseo.com/announcing-our-new-user-social-profile-tab-and-translation-api-in-aioseo-4-2-2/?utm_source=WordPress&utm_campaign=social-profiles-translations-api-v4-all-pro&utm_medium=plugin-notification&utm_content',NULL,NULL,0,0,'2022-06-21 14:28:57','2022-07-25 00:21:55'),(10,'62d8062749246','? AIOSEO 4.2.3: Introducing FAQ and Table of Contents blocks + URL Slug Monitor.','You can now add FAQ and Table of Contents blocks to increase your visibility on SERPs and improve user experience.\r\n<br><br>\r\nAnd our URL Slug Monitor is a powerful addition that checks for changes in your URLs and prompts you to add redirects which helps prevents 404 errors on your site.\r\n<br><br>\r\nUpdate to 4.2.3 today and check out these powerful new features!','success','[\"4-x\",\"all-pro\"]',409,NULL,'2022-08-16 12:14:02',NULL,'Learn More','https://thelomad.com/getmad.today/wp-contentaioseo.com/introducing-aioseo-4-2-3-faq-and-table-of-contents-blocks-all-new-url-slug-monitor/?utm_source=WordPress&utm_campaign=introducing-faq-toc-blocks-v4-pro&utm_medium=plugin-notification&utm_content=Learn',NULL,NULL,0,0,'2022-07-20 13:41:59','2022-08-22 04:10:46'),(11,'62fbf0e7e04a3','AIOSEO just got more powerful with version 4.2.4! ?','Easily eliminate 404 errors with <strong>automatic redirects</strong> using our massively improved Redirection Manager. \r\n<br><br>\r\nThis update also includes some huge improvements to our Image SEO addon, making it much easier for your content to rank. ?\r\n<br><br>\r\nUpdate to <strong>AIOSEO 4.2.4</strong> today and take advantage of these powerful new features!','success','[\"4-x\",\"elite\"]',485,NULL,'2022-08-16 12:14:02',NULL,'Learn More','https://thelomad.com/getmad.today/wp-contentaioseo.com/announcing-aioseo-4-2-4-improved-redirects-and-image-seo-updates/?utm_source=WordPress&utm_campaign=improved-redirects-image-seo-v4-pro-elite&utm_medium=plugin-notification&utm_content=Learn More',NULL,NULL,0,0,'2022-08-16 19:32:55','2022-08-22 04:10:46');
/*!40000 ALTER TABLE `cuB_aioseo_notifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_aioseo_posts`
--

DROP TABLE IF EXISTS `cuB_aioseo_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_aioseo_posts` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL,
  `title` text COLLATE utf8mb4_unicode_520_ci,
  `description` text COLLATE utf8mb4_unicode_520_ci,
  `keywords` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `keyphrases` longtext COLLATE utf8mb4_unicode_520_ci,
  `page_analysis` longtext COLLATE utf8mb4_unicode_520_ci,
  `canonical_url` text COLLATE utf8mb4_unicode_520_ci,
  `og_title` text COLLATE utf8mb4_unicode_520_ci,
  `og_description` text COLLATE utf8mb4_unicode_520_ci,
  `og_object_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT 'default',
  `og_image_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT 'default',
  `og_image_url` text COLLATE utf8mb4_unicode_520_ci,
  `og_image_width` int(11) DEFAULT NULL,
  `og_image_height` int(11) DEFAULT NULL,
  `og_image_custom_url` text COLLATE utf8mb4_unicode_520_ci,
  `og_image_custom_fields` text COLLATE utf8mb4_unicode_520_ci,
  `og_video` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `og_custom_url` text COLLATE utf8mb4_unicode_520_ci,
  `og_article_section` text COLLATE utf8mb4_unicode_520_ci,
  `og_article_tags` text COLLATE utf8mb4_unicode_520_ci,
  `twitter_use_og` tinyint(1) DEFAULT '0',
  `twitter_card` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT 'default',
  `twitter_image_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT 'default',
  `twitter_image_url` text COLLATE utf8mb4_unicode_520_ci,
  `twitter_image_custom_url` text COLLATE utf8mb4_unicode_520_ci,
  `twitter_image_custom_fields` text COLLATE utf8mb4_unicode_520_ci,
  `twitter_title` text COLLATE utf8mb4_unicode_520_ci,
  `twitter_description` text COLLATE utf8mb4_unicode_520_ci,
  `seo_score` int(11) NOT NULL DEFAULT '0',
  `schema_type` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT 'default',
  `schema_type_options` longtext COLLATE utf8mb4_unicode_520_ci,
  `pillar_content` tinyint(1) DEFAULT NULL,
  `robots_default` tinyint(1) NOT NULL DEFAULT '1',
  `robots_noindex` tinyint(1) NOT NULL DEFAULT '0',
  `robots_noarchive` tinyint(1) NOT NULL DEFAULT '0',
  `robots_nosnippet` tinyint(1) NOT NULL DEFAULT '0',
  `robots_nofollow` tinyint(1) NOT NULL DEFAULT '0',
  `robots_noimageindex` tinyint(1) NOT NULL DEFAULT '0',
  `robots_noodp` tinyint(1) NOT NULL DEFAULT '0',
  `robots_notranslate` tinyint(1) NOT NULL DEFAULT '0',
  `robots_max_snippet` int(11) DEFAULT NULL,
  `robots_max_videopreview` int(11) DEFAULT NULL,
  `robots_max_imagepreview` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT 'large',
  `images` longtext COLLATE utf8mb4_unicode_520_ci,
  `image_scan_date` datetime DEFAULT NULL,
  `priority` tinytext COLLATE utf8mb4_unicode_520_ci,
  `frequency` tinytext COLLATE utf8mb4_unicode_520_ci,
  `videos` longtext COLLATE utf8mb4_unicode_520_ci,
  `video_thumbnail` text COLLATE utf8mb4_unicode_520_ci,
  `video_scan_date` datetime DEFAULT NULL,
  `link_scan_date` datetime DEFAULT NULL,
  `link_suggestions_scan_date` datetime DEFAULT NULL,
  `local_seo` longtext COLLATE utf8mb4_unicode_520_ci,
  `limit_modified_date` tinyint(1) NOT NULL DEFAULT '0',
  `options` longtext COLLATE utf8mb4_unicode_520_ci,
  `created` datetime NOT NULL,
  `updated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `ndx_aioseo_posts_post_id` (`post_id`)
) ENGINE=InnoDB AUTO_INCREMENT=578 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_aioseo_posts`
--

LOCK TABLES `cuB_aioseo_posts` WRITE;
/*!40000 ALTER TABLE `cuB_aioseo_posts` DISABLE KEYS */;
INSERT INTO `cuB_aioseo_posts` VALUES (1,6,'Amherst Worker\'s Compensation Lawyer | Appeal A Denied Claim','The Law Offices of Melissa A. Day, PLLC is a New York workers’ compensation defense firm built on client partnerships and 20 years experience. Call 716-616-0111 to set up a consultation.',NULL,NULL,NULL,NULL,'Amherst Worker\'s Compensation Lawyer | Appeal A Denied Claim','The Law Offices of Melissa A. Day, PLLC is a New York workers’ compensation defense firm built on client partnerships and 20 years experience. Call 716-616-0111 to set up a consultation.','website','default',NULL,NULL,NULL,NULL,NULL,'',NULL,'','',0,'summary_large_image','default',NULL,NULL,NULL,'Amherst Worker\'s Compensation Lawyer | Appeal A Denied Claim','The Law Offices of Melissa A. Day, PLLC is a New York workers’ compensation defense firm built on client partnerships and 20 years experience. Call 716-616-0111 to set up a consultation.',0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/AdobeStock_209705558-mobile.jpg\",\"image:title\":\"AdobeStock_209705558-mobile\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/AdobeStock_443605491-1.jpg\",\"image:title\":\"AdobeStock_443605491-1\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/03\\/badge.jpg\",\"image:title\":\"badge\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/MULTI-114764-1-ap3.jpg\",\"image:title\":\"MULTI-114764-1-ap3\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/CUSTOM-975884-1.jpg\",\"image:title\":\"CUSTOM-975884-1\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/women-owned-2021-1.jpg\",\"image:title\":\"women-owned-2021\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/CUSTOM-870784-cmyk.png\",\"image:title\":\"CUSTOM-870784-cmyk\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/women2020-1.jpg\",\"image:title\":\"women2020\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/101814-cmyk-1.png\",\"image:title\":\"101814-cmyk-1\",\"image:caption\":\"\"}]','2022-07-25 13:48:34',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 06:15:25','2022-07-25 13:48:34'),(2,46091,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Brian_Prince-1_pp.jpg\",\"image:title\":\"Brian_Prince-1_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/prince_brian_k.jpg\",\"image:title\":\"prince_brian_k\",\"image:caption\":\"\"}]','2022-05-04 15:05:20',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 06:40:43','2022-05-04 15:05:20'),(3,46189,'The Team  | The Law Offices of Melissa A. Day, PLLC | Amherst',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/mackey_shannan_m.jpg\",\"image:title\":\"mackey_shannan_m\",\"image:caption\":\"\"}]','2022-08-11 18:23:53',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 06:57:13','2022-08-11 18:23:53'),(4,46375,'Successful Disallowance! | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 07:29:33','2022-04-04 07:15:12'),(5,46073,NULL,NULL,NULL,NULL,NULL,NULL,'','','profile','default',NULL,NULL,NULL,NULL,NULL,'',NULL,'','',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/James_Cousins_pp.jpg\",\"image:title\":\"James_Cousins_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/cousins_james_b.jpg\",\"image:title\":\"cousins_james_b\",\"image:caption\":\"\"}]','2022-05-04 15:03:20',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 07:29:55','2022-05-04 15:03:20'),(6,46122,'Justice C. Williams | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Justice-WIlliams.jpg\"}]','2022-04-04 07:06:53',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 07:30:10','2022-04-04 07:15:11'),(7,45927,'Contact | The Law Offices of Melissa A. Day, PLLC | Amherst',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 07:52:15',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 07:34:57','2022-04-04 07:15:11'),(8,46420,'Court of Appeals Upholds 2013 Amendment to Section 25-a – Marking the End for The Fund for Reopened Cases | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 07:49:28','2022-04-04 07:15:12'),(10,48552,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/NewsletterVolume2.jpg\",\"image:title\":\"NewsletterVolume2\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(11,48551,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/NewsletterVolume3.jpg\",\"image:title\":\"NewsletterVolume3\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(12,48547,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/NewsletterVolume4.jpg\",\"image:title\":\"NewsletterVolume4\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(13,48543,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Episode22-LawyersandFriend.jpg\",\"image:title\":\"Episode22-LawyersandFriend\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(14,48542,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Episode23-LawyersandFriends.jpg\",\"image:title\":\"Episode23-LawyersandFriends\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(15,48541,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Episode24-LawyersandFriends.jpg\",\"image:title\":\"Episode24-LawyersandFriends\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(16,48540,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Episode25-LawyersandFriends.jpg\",\"image:title\":\"Episode25-LawyersandFriends\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(17,48539,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Episode26-LawyersandFriends.jpg\",\"image:title\":\"Episode26-LawyersandFriends\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(18,48538,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Episode27-LawyersandFriends.jpg\",\"image:title\":\"Episode27-LawyersandFriends\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(19,48536,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Episode28-LawyersandFriends.jpg\",\"image:title\":\"Episode28-LawyersandFriends\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(20,48534,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Episode29-LawyersandFriends.jpg\",\"image:title\":\"Episode29-LawyersandFriends\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(21,48533,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/101814-cmyk-1.png\",\"image:title\":\"101814-cmyk-1\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(22,48532,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/women2020-1.jpg\",\"image:title\":\"women2020\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(23,48531,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/CUSTOM-1069294-Badge-1.jpg\",\"image:title\":\"CUSTOM-1069294-Badge\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(24,48530,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/CUSTOM-870784-cmyk.png\",\"image:title\":\"CUSTOM-870784-cmyk\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(25,48529,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/women-owned-2021-1.jpg\",\"image:title\":\"women-owned-2021\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(26,48528,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/MULTI-114764-1-ap3.jpg\",\"image:title\":\"MULTI-114764-1-ap3\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(27,48527,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/CUSTOM-975884-1.jpg\",\"image:title\":\"CUSTOM-975884-1\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(28,48525,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/bannerslide1-2.jpg\",\"image:title\":\"bannerslide1-2\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(29,48516,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Mobile-banner-1.jpg\",\"image:title\":\"Mobile-banner\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(30,48512,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Mobile-banner.jpg\",\"image:title\":\"Mobile-banner\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(31,48508,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/bannerslide3.jpeg\",\"image:title\":\"bannerslide3\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(32,48507,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/bannerslid2.jpeg\",\"image:title\":\"bannerslid2\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(33,48505,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/bannerslide1.jpeg\",\"image:title\":\"bannerslide1\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(34,48502,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/desktop-logo.png\",\"image:title\":\"desktop-logo\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(35,48423,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/logo_e.png\",\"image:title\":\"logo_e\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(36,48410,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"You are linking to other resources on your website which is great.\",\"score\":9,\"maxScore\":9,\"error\":0},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":2},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"Only 9.4% of the sentences contain transition words, which is not enough. Use more of them.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,72,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}',0,1,0,0,0,0,0,0,0,-1,-1,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Thomas_Dickinson_pp.jpg\",\"image:title\":\"Thomas_Dickinson_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Elena_Camp_pp.jpg\",\"image:title\":\"Elena_Camp_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Rebecca_Brashear_pp.jpg\",\"image:title\":\"Rebecca_Brashear_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Jillian_Chavers_pp.jpg\",\"image:title\":\"Jillian_Chavers_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Daniel_Flynn-1_pp.jpg\",\"image:title\":\"Daniel_Flynn-1_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Jody_Guiher_pp.jpg\",\"image:title\":\"Jody_Guiher_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Jenny_Malkowski_pp.jpg\",\"image:title\":\"Jenny_Malkowski_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Justice-WIlliams.jpg\",\"image:title\":\"Justice-WIlliams\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Atty_Danielle-Draschan.jpg\",\"image:title\":\"Atty_Danielle-Draschan\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Atty_Jessica-Stevens.jpg\",\"image:title\":\"Atty_Jessica-Stevens\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Atty_Corrine-Newman.jpg\",\"image:title\":\"Atty_Corrine-Newman\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Atty_Kelesy-Kunze.jpg\",\"image:title\":\"Atty_Kelesy-Kunze\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/02\\/Alexandra-Rizk.jpg\",\"image:title\":\"Alexandra-Rizk\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/02\\/Maxwell-Doldan.jpg\",\"image:title\":\"Maxwell-Doldan\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/02\\/Kierria_Jones.jpg\",\"image:title\":\"Kierria_Jones\",\"image:caption\":\"\"}]','2022-04-20 19:03:54','default','default',NULL,NULL,NULL,'2022-04-20 18:14:51','2022-04-20 18:14:51',NULL,0,NULL,'2021-12-13 07:52:14','2022-04-20 19:03:54'),(37,48365,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/AdobeStock_258696218-desktop.jpg\",\"image:title\":\"AdobeStock_258696218-desktop\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(38,48362,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/AdobeStock_258696218-mobile.jpg\",\"image:title\":\"AdobeStock_258696218-mobile\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(39,48329,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Justice-WIlliams.jpg\",\"image:title\":\"Justice-WIlliams\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(40,48287,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/women-owned-2021.jpg\",\"image:title\":\"women-owned-2021\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(41,48285,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Zombie.png\",\"image:title\":\"Zombie\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(42,48281,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/PGI_01_ID175944739_df738a9498761b9c8568d1b34962d041-Badge.jpg\",\"image:title\":\"PGI_01_ID175944739_df738a9498761b9c8568d1b34962d041-Badge\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(43,48280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/CUSTOM-1069294-Badge.jpg\",\"image:title\":\"CUSTOM-1069294-Badge\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(44,48276,'Amherst Workers\' Compensation Defense Law Office | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,'','','website','default',NULL,NULL,NULL,NULL,NULL,'',NULL,'','',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 07:52:14','2022-04-04 07:15:11'),(45,48263,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3240569157.jpg\",\"image:title\":\"3240569157\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(46,48262,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/296491289.jpg\",\"image:title\":\"296491289\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(47,48261,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3435574119-1.jpg\",\"image:title\":\"3435574119\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(48,48260,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3435574119.jpg\",\"image:title\":\"3435574119\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(49,48259,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/59943168.jpg\",\"image:title\":\"59943168\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(50,48258,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2686857844.jpg\",\"image:title\":\"2686857844\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(51,48257,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1765430482.jpg\",\"image:title\":\"1765430482\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(52,48256,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1379676566.jpg\",\"image:title\":\"1379676566\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(53,48255,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1116742571.jpg\",\"image:title\":\"1116742571\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(54,48254,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2646962494.jpg\",\"image:title\":\"2646962494\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(55,48253,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3521851112.jpg\",\"image:title\":\"3521851112\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(56,48252,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1342974363.jpg\",\"image:title\":\"1342974363\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(57,48251,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/308086147.jpg\",\"image:title\":\"308086147\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(58,48247,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2422755891.jpg\",\"image:title\":\"2422755891\",\"image:caption\":\"\"}]','2021-12-13 07:52:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 07:52:14','2021-12-13 07:52:14'),(59,45970,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,0,0,0,0,1,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 07:52:15',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 07:52:15','2022-04-04 07:15:11'),(60,45971,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,0,0,0,0,1,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 07:52:15',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 07:52:15','2022-04-04 07:15:11'),(61,45972,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,0,0,0,0,1,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 07:52:15',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 07:52:15','2022-04-04 07:15:11'),(62,14,'Privacy Policy | The Law Offices of Melissa A. Day, PLLC | Amherst',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 07:52:15',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 07:52:15','2022-04-04 07:15:11'),(63,45925,'About Us | The Law Offices of Melissa A. Day, PLLC','The Law Offices of Melissa A. Day, PLLC, has defended New York workers’ compensation claims for 20 years. Call 716-616-0111 to set up a consultation at a firm with more than 130 years of combined experience.',NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2022-04-04 06:08:19',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 07:52:15','2022-04-04 07:15:11'),(64,45926,'Blog | The Law Offices of Melissa A. Day, PLLC | Amherst',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2022-06-01 18:52:12',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 07:52:15','2022-06-01 18:52:12'),(65,45928,'Disclaimer | The Law Offices of Melissa A. Day, PLLC | Amherst',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 07:52:15',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 07:52:15','2022-04-04 07:15:11'),(66,45929,'Site Map | The Law Offices of Melissa A. Day, PLLC | Amherst',NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"This is far below the recommended minimum of words.\",\"score\":-20,\"maxScore\":9,\"error\":1},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":4},\"title\":{\"titleLength\":{\"title\":\"Title Length\",\"description\":\"Well done!\",\"score\":9,\"maxScore\":9,\"error\":0},\"errors\":0},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":2}}}',NULL,NULL,NULL,'default','custom_image','https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/OgImage_New.png',600,315,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,75,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,'2022-08-11 18:07:12','default','default',NULL,NULL,NULL,'2022-04-11 20:18:46','2022-04-11 20:18:46',NULL,0,NULL,'2021-12-13 07:52:15','2022-08-11 18:07:12'),(67,46191,'Workers\' Compensation Team | The Law Offices of Melissa A. Day, PLLC | Amherst','The workers’ compensation defense team at The Law Offices of Melissa A. Day, PLLC, boasts more than 130 years of combined experience. Call 716-616-0111 to set up a consultation.','[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"You are linking to other resources on your website which is great.\",\"score\":9,\"maxScore\":9,\"error\":0},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":2},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is over 60 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"Only 2.8% of the sentences contain transition words, which is not enough. Use more of them.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'website','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,72,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Melissa_Ann_Day_pp.jpg\",\"image:title\":\"Melissa_Ann_Day_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/James_Cousins_pp.jpg\",\"image:title\":\"James_Cousins_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Brian_Prince-1_pp.jpg\",\"image:title\":\"Brian_Prince-1_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Shannon_Mackey_pp.jpg\",\"image:title\":\"Shannon_Mackey_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Paul_Kornacki_pp.jpg\",\"image:title\":\"Paul_Kornacki_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/Cassie_Christman_pp.jpg\",\"image:title\":\"Cassie_Christman_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Melanie_Daly-1_pp.jpg\",\"image:title\":\"Melanie_Daly-1_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Neil_Deigelman-1_pp.jpg\",\"image:title\":\"Neil_Deigelman-1_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Brendan_Shannon_pp.jpg\",\"image:title\":\"Brendan_Shannon_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/Andrew_Gould_pp.jpg\",\"image:title\":\"Andrew_Gould_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/02\\/Bing-huang.jpg\",\"image:title\":\"Bing-huang\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/02\\/Suki-Harada.jpg\",\"image:title\":\"Suki-Harada\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/05\\/Maria-Lua300X300.jpg\",\"image:title\":\"Maria-Lua300X300\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Vicki_L_Buehler-1_pp.jpg\",\"image:title\":\"Vicki_L_Buehler-1_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/01\\/placeholder.jpg\",\"image:title\":\"placeholder\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Mary_Fran_Schnorr-1_pp.jpg\",\"image:title\":\"Mary_Fran_Schnorr-1_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Katrina_Gray_pp.jpg\",\"image:title\":\"Katrina_Gray_pp\",\"image:caption\":\"\"}]','2022-08-11 20:12:44','default','default',NULL,NULL,NULL,'2022-04-11 20:14:58','2022-04-11 20:14:58',NULL,0,NULL,'2021-12-13 08:08:18','2022-08-11 20:12:44'),(68,46511,'LESS THAN TWELVE WEEKS REMAINING FOR WCL §25-a! Because Subject # 046-630 Contains Stricter Requirements for Reopening a Claim on the Issue of §25-a, Prudent Carriers and Employers May Want to Refer Applications to Defense Counsel | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 08:14:30','2022-04-04 07:15:12'),(69,46413,'New SLU Guidelines Presentation by the Board | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 08:18:23','2022-04-04 07:15:12'),(70,46229,'Client Resources | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2022-04-04 07:06:53',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 10:09:44','2022-04-04 07:15:11'),(71,46337,'It’s No Accident | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 10:59:23','2022-04-04 07:15:12'),(72,46502,'Non Acute Pain Medical Treatment Guidelines Offer a Framework for Controlling Costs Associated with Chronic Pain Management, Especially Opioid Use | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 11:35:51','2022-04-04 07:15:12'),(73,46101,'Daniel Flynn | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Daniel_Flynn-1_pp.jpg\"}]','2022-04-04 06:08:19',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 11:50:27','2022-04-04 07:15:11'),(74,46387,'Review of Workers Compensation Board Schedule Loss of Use Frequently Asked Questions and New Permanency Forms | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 11:57:04','2022-04-04 07:15:12'),(75,48246,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2624835932.jpg\",\"image:title\":\"2624835932\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(76,48245,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/140405431.jpg\",\"image:title\":\"140405431\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(77,48244,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2684734871.jpg\",\"image:title\":\"2684734871\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(78,48243,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/473082777.jpg\",\"image:title\":\"473082777\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(79,48242,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1448263289.jpg\",\"image:title\":\"1448263289\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(80,48241,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2835185459.jpg\",\"image:title\":\"2835185459\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(81,48240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1469522131.jpg\",\"image:title\":\"1469522131\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(82,48239,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2433087555.jpg\",\"image:title\":\"2433087555\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(83,48238,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1351580429.jpg\",\"image:title\":\"1351580429\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(84,48237,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3703037842.jpg\",\"image:title\":\"3703037842\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(85,48236,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2010366152.jpg\",\"image:title\":\"2010366152\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(86,48235,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1037121607.jpg\",\"image:title\":\"1037121607\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(87,48234,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2161867666.jpg\",\"image:title\":\"2161867666\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(88,48230,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1837654085.jpg\",\"image:title\":\"1837654085\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(89,48229,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3356549231.jpg\",\"image:title\":\"3356549231\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(90,48228,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/19691221.jpg\",\"image:title\":\"19691221\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(91,48227,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1025514290.jpg\",\"image:title\":\"1025514290\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(92,48226,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2092150080.jpg\",\"image:title\":\"2092150080\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(93,48225,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1407033010.jpg\",\"image:title\":\"1407033010\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(94,48224,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3894433199.jpg\",\"image:title\":\"3894433199\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(95,48223,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2434380366.jpg\",\"image:title\":\"2434380366\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(96,48219,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/4061590130.jpg\",\"image:title\":\"4061590130\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(97,48218,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2220697693.jpg\",\"image:title\":\"2220697693\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(98,48217,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/971431146.jpg\",\"image:title\":\"971431146\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(99,48216,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/240230510.jpg\",\"image:title\":\"240230510\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(100,48215,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/405752026.jpg\",\"image:title\":\"405752026\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(101,48214,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3261310036.png\",\"image:title\":\"3261310036\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(102,48213,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/4095797037.png\",\"image:title\":\"4095797037\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(103,48212,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/634697273.png\",\"image:title\":\"634697273\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(104,48211,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2527305273.png\",\"image:title\":\"2527305273\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(105,48210,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1250162963.png\",\"image:title\":\"1250162963\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(106,48209,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3851629198.jpg\",\"image:title\":\"3851629198\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(107,48208,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3765780421.png\",\"image:title\":\"3765780421\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(108,48207,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3395494514.png\",\"image:title\":\"3395494514\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(109,48206,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3731920967.png\",\"image:title\":\"3731920967\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(110,48205,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3299604788.jpg\",\"image:title\":\"3299604788\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(111,48204,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/919041395.png\",\"image:title\":\"919041395\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(112,48203,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2654753310.png\",\"image:title\":\"2654753310\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(113,48202,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3549288128.png\",\"image:title\":\"3549288128\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(114,48201,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/95276588.jpg\",\"image:title\":\"95276588\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(115,48191,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1799585569.png\",\"image:title\":\"1799585569\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(116,48190,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3140641566.png\",\"image:title\":\"3140641566\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(117,48189,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3596348415.png\",\"image:title\":\"3596348415\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(118,48188,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1709938671.png\",\"image:title\":\"1709938671\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(119,48187,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1196623201.png\",\"image:title\":\"1196623201\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(120,48182,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1042201467.jpg\",\"image:title\":\"1042201467\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(121,48181,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/200051476.jpg\",\"image:title\":\"200051476\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(122,48180,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/215921059.jpg\",\"image:title\":\"215921059\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(123,48178,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Virtual-LF-Copy-1024x683-1.jpg\",\"image:title\":\"Virtual-LF-Copy-1024&#215;683\",\"image:caption\":\"\"}]','2021-12-13 11:57:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 11:57:09','2021-12-13 11:57:09'),(124,48173,'Webinars | The Law Offices of Melissa A. Day, PLLC | Amherst',NULL,NULL,NULL,NULL,NULL,'','','website','default',NULL,NULL,NULL,NULL,NULL,'',NULL,'','',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/01\\/holiday-photo.png\",\"image:title\":\"holiday-photo\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/01\\/ep31.png\",\"image:title\":\"ep31\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Zombie.png\",\"image:title\":\"Zombie\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Episode29-LawyersandFriends.jpg\",\"image:title\":\"Episode29-LawyersandFriends\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Episode28-LawyersandFriends.jpg\",\"image:title\":\"Episode28-LawyersandFriends\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Episode27-LawyersandFriends.jpg\",\"image:title\":\"Episode27-LawyersandFriends\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Episode26-LawyersandFriends.jpg\",\"image:title\":\"Episode26-LawyersandFriends\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Episode25-LawyersandFriends.jpg\",\"image:title\":\"Episode25-LawyersandFriends\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Episode24-LawyersandFriends.jpg\",\"image:title\":\"Episode24-LawyersandFriends\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Episode23-LawyersandFriends.jpg\",\"image:title\":\"Episode23-LawyersandFriends\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Episode22-LawyersandFriend.jpg\",\"image:title\":\"Episode22-LawyersandFriend\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3549288128.png\",\"image:title\":\"3549288128\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2654753310.png\",\"image:title\":\"2654753310\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/919041395.png\",\"image:title\":\"919041395\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3299604788.jpg\",\"image:title\":\"3299604788\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3731920967.png\",\"image:title\":\"3731920967\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3395494514.png\",\"image:title\":\"3395494514\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3765780421.png\",\"image:title\":\"3765780421\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3851629198.jpg\",\"image:title\":\"3851629198\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1250162963.png\",\"image:title\":\"1250162963\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2527305273.png\",\"image:title\":\"2527305273\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/634697273.png\",\"image:title\":\"634697273\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/4095797037.png\",\"image:title\":\"4095797037\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3261310036.png\",\"image:title\":\"3261310036\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/405752026.jpg\",\"image:title\":\"405752026\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/240230510.jpg\",\"image:title\":\"240230510\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/971431146.jpg\",\"image:title\":\"971431146\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2220697693.jpg\",\"image:title\":\"2220697693\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/4061590130.jpg\",\"image:title\":\"4061590130\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2434380366.jpg\",\"image:title\":\"2434380366\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3894433199.jpg\",\"image:title\":\"3894433199\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1407033010.jpg\",\"image:title\":\"1407033010\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2092150080.jpg\",\"image:title\":\"2092150080\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1025514290.jpg\",\"image:title\":\"1025514290\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/19691221.jpg\",\"image:title\":\"19691221\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3356549231.jpg\",\"image:title\":\"3356549231\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1837654085.jpg\",\"image:title\":\"1837654085\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2161867666.jpg\",\"image:title\":\"2161867666\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1037121607.jpg\",\"image:title\":\"1037121607\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2010366152.jpg\",\"image:title\":\"2010366152\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3703037842.jpg\",\"image:title\":\"3703037842\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1351580429.jpg\",\"image:title\":\"1351580429\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2433087555.jpg\",\"image:title\":\"2433087555\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1469522131.jpg\",\"image:title\":\"1469522131\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2835185459.jpg\",\"image:title\":\"2835185459\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1448263289.jpg\",\"image:title\":\"1448263289\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/473082777.jpg\",\"image:title\":\"473082777\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2684734871.jpg\",\"image:title\":\"2684734871\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/140405431.jpg\",\"image:title\":\"140405431\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2624835932.jpg\",\"image:title\":\"2624835932\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2422755891.jpg\",\"image:title\":\"2422755891\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/308086147.jpg\",\"image:title\":\"308086147\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1342974363.jpg\",\"image:title\":\"1342974363\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3521851112.jpg\",\"image:title\":\"3521851112\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2646962494.jpg\",\"image:title\":\"2646962494\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1116742571.jpg\",\"image:title\":\"1116742571\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1379676566.jpg\",\"image:title\":\"1379676566\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/1765430482.jpg\",\"image:title\":\"1765430482\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/2686857844.jpg\",\"image:title\":\"2686857844\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/59943168.jpg\",\"image:title\":\"59943168\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/296491289.jpg\",\"image:title\":\"296491289\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/3240569157.jpg\",\"image:title\":\"3240569157\",\"image:caption\":\"\"}]','2022-08-08 17:35:38',NULL,NULL,NULL,NULL,NULL,'2022-04-29 18:19:47','2022-04-29 18:19:47',NULL,0,NULL,'2021-12-13 11:57:09','2022-08-08 17:35:38'),(125,45930,'Thank You | The Law Offices of Melissa A. Day, PLLC | Amherst',NULL,NULL,NULL,NULL,NULL,'','','website','default',NULL,NULL,NULL,NULL,NULL,'',NULL,'','',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,0,1,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 11:57:10',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 11:57:10','2022-04-04 07:15:11'),(126,46129,'Elena N. Camp | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Elena_Camp_pp.jpg\"}]','2022-04-04 06:08:19',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 11:57:10','2022-04-04 07:15:11'),(128,46131,'James B. Cousins | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/James_Cousins_pp.jpg\"}]','2021-12-13 11:57:10',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 11:57:10','2022-04-04 07:15:11'),(129,46132,'Jenny Malkowski | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Jenny_Malkowski_pp.jpg\"}]','2022-04-04 06:08:19',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 11:57:10','2022-04-04 07:15:11'),(130,46119,'Jillian Chavers | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Jillian_Chavers_pp.jpg\"}]','2022-04-04 06:08:19',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 11:57:10','2022-04-04 07:15:11'),(131,46121,'Jody Guiher | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Jody_Guiher_pp.jpg\"}]','2022-04-04 06:08:19',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 11:57:10','2022-04-04 07:15:11'),(132,46125,'Katrina Gray | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Katrina_Gray_pp.jpg\"}]','2021-12-13 11:57:10',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 11:57:10','2022-04-04 07:15:11'),(133,46236,'Case Law Updates | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2022-04-04 07:06:53',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 12:15:17','2022-04-04 07:15:11'),(134,46179,'Thomas Dickinson | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Thomas_Dickinson_pp.jpg\"}]','2022-04-04 07:06:53',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 12:37:59','2022-04-04 07:15:11'),(135,48022,'Jessica Stevens | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Atty_Jessica-Stevens.jpg\",\"image:title\":\"Atty_Jessica-Stevens\",\"image:caption\":\"\"}]','2022-04-04 07:15:12',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 12:38:02','2022-04-04 07:15:12'),(136,48023,'Danielle Draschan | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Atty_Danielle-Draschan.jpg\"}]','2022-04-04 07:06:53',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 12:38:03','2022-04-04 07:15:11'),(137,47971,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Atty_Kelesy-Kunze.jpg\",\"image:title\":\"Atty_Kelesy-Kunze\",\"image:caption\":\"\"}]','2021-12-13 16:43:50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 12:38:08','2021-12-13 16:43:50'),(138,48020,'Corrine Newman | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Atty_Corrine-Newman.jpg\"}]','2022-04-04 07:15:12',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 12:38:10','2022-04-04 07:15:12'),(139,46486,'Test Your NY Workers’ Compensation Chops | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 12:49:47','2022-04-04 07:15:12'),(140,46089,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Shannon_Mackey_pp.jpg\",\"image:title\":\"Shannon_Mackey_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/mackey_shannan_m.jpg\",\"image:title\":\"mackey_shannan_m\",\"image:caption\":\"\"}]','2022-05-04 15:05:20',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 13:17:19','2022-05-04 15:05:20'),(141,46234,'SLU/PHP | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2022-05-24 18:33:00',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 13:37:08','2022-05-24 18:33:00'),(142,46083,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Alexis_Hatten-1_pp.jpg\",\"image:title\":\"Alexis_Hatten-1_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/hatten_alexis_d.jpg\",\"image:title\":\"hatten_alexis_d\",\"image:caption\":\"\"}]','2022-05-04 15:03:20',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 13:38:20','2022-05-04 15:03:20'),(143,48168,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is over 60 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"30.6% of the sentences contain more than 20 words, which is more than the recommended maximum of 25%. Try to shorten the sentences.\",\"score\":6,\"maxScore\":9,\"error\":1},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"None of the sentences contain transition words. Use some.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":4}}}',NULL,NULL,NULL,'profile','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,65,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/AdobeStock_236812913.jpeg\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Brendan_Shannon_pp.jpg\",\"image:title\":\"Brendan_Shannon_pp\",\"image:caption\":\"\"}]','2022-08-11 19:24:26','default','default',NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 15:30:51','2022-08-11 19:24:26'),(144,48167,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/machelor_kristin_m.jpg\",\"image:title\":\"machelor_kristin_m\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(145,48166,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/gray_katrina.jpg\",\"image:title\":\"gray_katrina\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(146,48152,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/AdobeStock_362306286-banner.jpg\",\"image:title\":\"AdobeStock_362306286-banner\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(147,48151,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/AdobeStock_258696218-banner.jpg\",\"image:title\":\"AdobeStock_258696218-banner\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(148,48150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/AdobeStock_344563317-banner.jpg\",\"image:title\":\"AdobeStock_344563317-banner\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(149,48021,'Francis Christiano | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(150,48015,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Atty_Danielle-Draschan.jpg\",\"image:title\":\"Atty_Danielle-Draschan\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(151,48014,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Atty_Corrine-Newman.jpg\",\"image:title\":\"Atty_Corrine-Newman\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(152,48013,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Atty_Jessica-Stevens.jpg\",\"image:title\":\"Atty_Jessica-Stevens\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(153,48012,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/Atty_Francis-Christiano.jpg\",\"image:title\":\"Atty_Francis-Christiano\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(154,48007,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Atty_Kelesy-Kunze.jpg\",\"image:title\":\"Atty_Kelesy-Kunze\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(155,48000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/women2020.jpg\",\"image:title\":\"women2020\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(156,47970,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(157,47903,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/AdobeStock_362306286-M.jpg\",\"image:title\":\"AdobeStock_362306286-M\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(158,47902,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/AdobeStock_362306286-T.jpg\",\"image:title\":\"AdobeStock_362306286-T\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(159,47901,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/AdobeStock_362306286.jpg\",\"image:title\":\"AdobeStock_362306286\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(160,47900,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/AdobeStock_344563317-M.jpg\",\"image:title\":\"AdobeStock_344563317-M\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(161,47899,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/AdobeStock_344563317-T.jpg\",\"image:title\":\"AdobeStock_344563317-T\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(162,47898,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/AdobeStock_344563317.jpg\",\"image:title\":\"AdobeStock_344563317\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(163,47897,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/AdobeStock_258696218-M.jpg\",\"image:title\":\"AdobeStock_258696218-M\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(164,47896,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/AdobeStock_258696218-T.jpg\",\"image:title\":\"AdobeStock_258696218-T\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(165,47895,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/AdobeStock_258696218.jpg\",\"image:title\":\"AdobeStock_258696218\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(166,47875,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/101814-cmyk-1.png\",\"image:title\":\"101814-cmyk-1\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(167,47874,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/CUSTOM-870784-cmyk.png\",\"image:title\":\"CUSTOM-870784-cmyk\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(168,47871,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/AdobeStock_260182798.png\",\"image:title\":\"AdobeStock_260182798\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(169,47868,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/prince_brian_k.jpg\",\"image:title\":\"prince_brian_k\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(170,47867,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/mackey_shannan_m.jpg\",\"image:title\":\"mackey_shannan_m\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(171,47866,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/kornacki_paul_b.jpg\",\"image:title\":\"kornacki_paul_b\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(172,47865,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/hatten_alexis_d.jpg\",\"image:title\":\"hatten_alexis_d\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(173,47864,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/gray_katrina.jpg\",\"image:title\":\"gray_katrina\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(174,47863,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/gould_andrew.jpg\",\"image:title\":\"gould_andrew\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(175,47862,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/frances_mary.jpg\",\"image:title\":\"frances_mary\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(176,47861,NULL,NULL,NULL,NULL,NULL,NULL,'','','profile','default',NULL,NULL,NULL,NULL,NULL,'',NULL,'','',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Mary_Fran_Schnorr-1_pp.jpg\",\"image:title\":\"Mary_Fran_Schnorr-1_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/frances_mary.jpg\",\"image:title\":\"frances_mary\",\"image:caption\":\"\"}]','2022-05-04 15:03:20',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 15:30:51','2022-05-04 15:03:20'),(177,47860,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/diegelman_neil_a.jpg\",\"image:title\":\"diegelman_neil_a\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(178,47859,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/day_melissa_a.jpg\",\"image:title\":\"day_melissa_a\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(179,47858,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/daly_melanie_a.jpg\",\"image:title\":\"daly_melanie_a\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(180,47857,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/cousins_james_b.jpg\",\"image:title\":\"cousins_james_b\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(181,47856,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/christman_cassandra_e.jpg\",\"image:title\":\"christman_cassandra_e\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(182,47855,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/buehler_vicki_l.jpg\",\"image:title\":\"buehler_vicki_l\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(183,47838,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/OgImage_New.png\",\"image:title\":\"OgImage_New\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(184,47836,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/logo_white.png\",\"image:title\":\"logo_white\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(185,47835,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/logo.png\",\"image:title\":\"logo\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(186,47729,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/logo_new-1.png\",\"image:title\":\"logo_new-1\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(187,47712,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Melissa-Day-Law-Headshots-2.jpg\",\"image:title\":\"Melissa-Day-Law-Headshots-2\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(188,47694,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Melissa-Day-Law-Headshots1.jpg\",\"image:title\":\"Melissa-Day-Law-Headshots1\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(189,47599,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Brian_Prince-1_pp.jpg\",\"image:title\":\"Brian_Prince-1_pp\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(190,47598,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Daniel_Flynn-1_pp.jpg\",\"image:title\":\"Daniel_Flynn-1_pp\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(191,47597,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Vicki_L_Buehler-1_pp.jpg\",\"image:title\":\"Vicki_L_Buehler-1_pp\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(192,47596,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Alexis_Hatten-1_pp.jpg\",\"image:title\":\"Alexis_Hatten-1_pp\",\"image:caption\":\"\"}]','2021-12-13 15:30:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:51','2021-12-13 15:30:51'),(193,46147,'Melanie A. Daly | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Melanie_Daly-1_pp.jpg\"}]','2021-12-13 15:30:52',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 15:30:52','2022-04-04 07:15:11'),(194,46166,'Melissa A. Day | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Melissa_Ann_Day_pp.jpg\"}]','2021-12-13 15:30:52',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 15:30:52','2022-04-04 07:15:11'),(195,46145,'Neil A. Diegelman | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Neil_Deigelman-1_pp.jpg\"}]','2021-12-13 15:30:52',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 15:30:52','2022-04-04 07:15:11'),(196,46148,'Paul B. Kornacki | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Paul_Kornacki_pp.jpg\"}]','2021-12-13 15:30:52',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 15:30:52','2022-04-04 07:15:11'),(197,46171,'Rebecca Brashear | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Rebecca_Brashear_pp.jpg\"}]','2022-04-04 07:06:53',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 15:30:52','2022-04-04 07:15:11'),(198,46172,'Shannan M. Mackey | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Shannon_Mackey_pp.jpg\"}]','2021-12-13 15:30:52',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 15:30:52','2022-04-04 07:15:11'),(199,46173,'Susan Eick | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Susan_Eick_pp.jpg\"}]','2021-12-13 15:30:52',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 15:30:52','2022-04-04 07:15:11'),(200,46192,'Brendan T. Shannon | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Brendan_Shannon_pp.jpg\"}]','2021-12-13 15:30:52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 15:30:52','2021-12-13 15:30:52'),(201,46551,'DID YOU KNOW? 25-A IS GOING AWAY. | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,'','','article','default',NULL,NULL,NULL,NULL,NULL,'',NULL,'','',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 15:41:55','2022-04-04 07:15:11'),(202,46561,'DID YOU KNOW? FACEBOOK PAGES ARE NOT CONSIDERED “SURVEILLANCE” THAT HAS TO BE DISCLOSED BEFORE A CLAIMANT TESTIFIES. | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 15:57:39','2022-04-04 07:15:11'),(203,46346,'Never Give In! Disallowance Win! | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:20:18','2022-04-04 07:15:12'),(204,46077,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Melissa_Ann_Day_pp.jpg\",\"image:title\":\"Melissa_Ann_Day_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/day_melissa_a.jpg\",\"image:title\":\"day_melissa_a\",\"image:caption\":\"\"}]','2022-05-04 15:03:20',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:27:36','2022-05-04 15:03:20'),(205,46331,'An Exploration of “Legal Apportionment” | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:35:30','2022-04-04 07:15:12'),(206,47594,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Mary_Fran_Schnorr-1_pp.jpg\",\"image:title\":\"Mary_Fran_Schnorr-1_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(207,47593,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Neil_Deigelman-1_pp.jpg\",\"image:title\":\"Neil_Deigelman-1_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(208,47592,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Melanie_Daly-1_pp.jpg\",\"image:title\":\"Melanie_Daly-1_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(209,47591,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Jessica_Stevens_pp.jpg\",\"image:title\":\"Jessica_Stevens_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(210,47590,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Shannon_Mackey_pp.jpg\",\"image:title\":\"Shannon_Mackey_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(211,47587,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Kristen_Degnan_pp.jpg\",\"image:title\":\"Kristen_Degnan_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(212,47586,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Danielle_Draschan_pp.jpg\",\"image:title\":\"Danielle_Draschan_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(213,47585,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Jody_Guiher_pp.jpg\",\"image:title\":\"Jody_Guiher_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(214,47584,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Jenny_Malkowski_pp.jpg\",\"image:title\":\"Jenny_Malkowski_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(215,47583,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Hannah_Kim_pp.jpg\",\"image:title\":\"Hannah_Kim_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(216,47579,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Susan_Eick_pp.jpg\",\"image:title\":\"Susan_Eick_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(217,47578,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Jillian_Chavers_pp.jpg\",\"image:title\":\"Jillian_Chavers_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(218,47577,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Rebecca_Brashear_pp.jpg\",\"image:title\":\"Rebecca_Brashear_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(219,47575,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Elena_Camp_pp.jpg\",\"image:title\":\"Elena_Camp_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(220,47572,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Thomas_Dickinson_pp.jpg\",\"image:title\":\"Thomas_Dickinson_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(221,47570,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/Andrew_Gould_pp.jpg\",\"image:title\":\"Andrew_Gould_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(222,47567,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Brendan_Shannon_pp.jpg\",\"image:title\":\"Brendan_Shannon_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(223,47562,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/Cassie_Christman_pp.jpg\",\"image:title\":\"Cassie_Christman_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(224,47554,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Teresa_Cleary_pp.jpg\",\"image:title\":\"Teresa_Cleary_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(225,47551,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Paul_Kornacki_pp.jpg\",\"image:title\":\"Paul_Kornacki_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(226,47548,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Katrina_Gray_pp.jpg\",\"image:title\":\"Katrina_Gray_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(227,47545,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/James_Cousins_pp.jpg\",\"image:title\":\"James_Cousins_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(228,47542,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Melissa_Ann_Day_pp.jpg\",\"image:title\":\"Melissa_Ann_Day_pp\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(229,47513,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/logo_new.png\",\"image:title\":\"logo_new\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(230,47508,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/AdobeStock_427849380.jpeg\",\"image:title\":\"AdobeStock_427849380\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(231,47397,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/AdobeStock_209705558-mobile.jpg\",\"image:title\":\"AdobeStock_209705558-mobile\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(232,47395,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/AdobeStock_209705558.jpeg\",\"image:title\":\"AdobeStock_209705558\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(233,47338,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/MWBE-Logo-300x141-1.png\",\"image:title\":\"MWBE-Logo-300&#215;141\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(234,47337,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/CUSTOM-975884-1.jpg\",\"image:title\":\"CUSTOM-975884-1\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(235,47336,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/MULTI-114764-1-ap3.jpg\",\"image:title\":\"MULTI-114764-1-ap3\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(236,47314,NULL,NULL,NULL,NULL,NULL,NULL,'','','profile','default',NULL,NULL,NULL,NULL,NULL,'',NULL,'','',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/Andrew_Gould_pp.jpg\",\"image:title\":\"Andrew_Gould_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/gould_andrew.jpg\",\"image:title\":\"gould_andrew\",\"image:caption\":\"\"}]','2022-05-04 15:03:20',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:35:35','2022-05-04 15:03:20'),(237,47301,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/AdobeStock_235431862.jpeg\",\"image:title\":\"AdobeStock_235431862\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(238,47289,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/0_0_0_0_177_236_csupload_64428384.jpg\",\"image:title\":\"0_0_0_0_177_236_csupload_64428384\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(239,47268,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/cropped-favicon-c.png\",\"image:title\":\"cropped-favicon-c.png\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(240,47267,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/OG.png\",\"image:title\":\"OG\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(241,47266,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/Directory-icon.png\",\"image:title\":\"Directory-icon\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(242,47265,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/favicon-c.png\",\"image:title\":\"favicon-c\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(243,47101,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/ic2.png\",\"image:title\":\"ic2\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(244,47100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/ic1.png\",\"image:title\":\"ic1\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(245,47099,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/ic3.png\",\"image:title\":\"ic3\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(246,47095,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/logo_c.png\",\"image:title\":\"logo_c\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(247,47076,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/AdobeStock_443605491-1.jpg\",\"image:title\":\"AdobeStock_443605491-1\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(248,47029,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/map-desk.png\",\"image:title\":\"map-desk\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(249,47028,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/map-tab.png\",\"image:title\":\"map-tab\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(250,46988,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/logo_b.png\",\"image:title\":\"logo_b\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(251,46976,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/tv.png\",\"image:title\":\"tv\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(252,46969,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/AdobeStock_298378097.jpg\",\"image:title\":\"AdobeStock_298378097\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(253,46939,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/AdobeStock_236812913-M.jpg\",\"image:title\":\"AdobeStock_236812913-M\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(254,46938,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/AdobeStock_236812913-T.jpg\",\"image:title\":\"AdobeStock_236812913-T\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(255,46937,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/AdobeStock_236812913.jpg\",\"image:title\":\"AdobeStock_236812913\",\"image:caption\":\"\"}]','2021-12-13 16:35:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:35:35','2021-12-13 16:35:35'),(256,46193,'Careers  | The Law Offices of Melissa A. Day, PLLC | Amherst',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2022-07-25 17:52:51',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:35:36','2022-07-25 17:52:51'),(257,46231,'PPD Caps | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:35:36',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:35:36','2022-04-04 07:15:11'),(258,46233,'Max Rates | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2022-04-21 14:04:20',NULL,NULL,NULL,NULL,NULL,'2022-04-21 13:34:07','2022-04-21 13:34:07',NULL,0,NULL,'2021-12-13 16:35:36','2022-04-21 14:04:20'),(259,46244,'LOMAD Newsletter | The Law Offices of Melissa A. Day, PLLC',NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"This is far below the recommended minimum of words.\",\"score\":-20,\"maxScore\":9,\"error\":1},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":4},\"title\":{\"titleLength\":{\"title\":\"Title Length\",\"description\":\"Well done!\",\"score\":9,\"maxScore\":9,\"error\":0},\"errors\":0},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"None of the sentences contain transition words. Use some.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'website','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,73,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}',0,1,0,0,0,0,0,0,0,-1,-1,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/08\\/LOMADMagazineVol13July2022Cover.png\",\"image:title\":\"LOMADMagazineVol13July2022Cover\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/08\\/LOMADMagazineVolume11May2022Cover.png\",\"image:title\":\"LOMADMagazineVolume11May2022Cover\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/08\\/LOMADMagazineVolume12June2022Cover.png\",\"image:title\":\"LOMADMagazineVolume12June2022Cover\",\"image:caption\":\"\"}]','2022-08-04 18:16:26','default','default',NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:35:36','2022-08-04 18:16:26'),(260,46329,'Using the Contralateral Limb as a Baseline for Calculating Schedule Loss of Use | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:43:44','2022-04-04 07:15:12'),(261,46930,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/AdobeStock_236812913-scaled.jpeg\",\"image:title\":\"Silhouette of business people work together in office. Concept of teamwork and partnership. double exposure with light effects\",\"image:caption\":\"Business people collaborate together in office. Double exposure effects\"}]','2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(262,46888,'Amherst Workers\' Compensation Defense Law Office | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(263,46884,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/AdobeStock_108033031-T.jpg\",\"image:title\":\"AdobeStock_108033031-T\",\"image:caption\":\"\"}]','2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(264,46883,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/AdobeStock_108033031-M.jpg\",\"image:title\":\"AdobeStock_108033031-M\",\"image:caption\":\"\"}]','2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(265,46882,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/AdobeStock_108033031-D.jpg\",\"image:title\":\"AdobeStock_108033031-D\",\"image:caption\":\"\"}]','2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(266,46881,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/AdobeStock_180103616-T.jpg\",\"image:title\":\"AdobeStock_180103616-T\",\"image:caption\":\"\"}]','2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(267,46880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/AdobeStock_180103616-M.jpg\",\"image:title\":\"AdobeStock_180103616-M\",\"image:caption\":\"\"}]','2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(268,46879,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/AdobeStock_180103616-D.jpg\",\"image:title\":\"AdobeStock_180103616-D\",\"image:caption\":\"\"}]','2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(269,46876,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/AdobeStock_221755833-M.jpg\",\"image:title\":\"AdobeStock_221755833-M\",\"image:caption\":\"\"}]','2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(270,46875,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/AdobeStock_221755833-T.jpg\",\"image:title\":\"AdobeStock_221755833-T\",\"image:caption\":\"\"}]','2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(271,46860,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/AdobeStock_432435637-T.jpg\",\"image:title\":\"AdobeStock_432435637-T\",\"image:caption\":\"\"}]','2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(272,46833,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/logo_icon.png\",\"image:title\":\"logo_icon\",\"image:caption\":\"\"}]','2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(273,46824,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/AdobeStock_432435637.jpg\",\"image:title\":\"AdobeStock_432435637\",\"image:caption\":\"\"}]','2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(274,46788,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/AdobeStock_387392035.jpg\",\"image:title\":\"AdobeStock_387392035\",\"image:caption\":\"\"}]','2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(275,46773,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/logo_a.png\",\"image:title\":\"logo_a\",\"image:caption\":\"\"}]','2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(276,46767,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/ic1.png\",\"image:title\":\"ic1\",\"image:caption\":\"\"}]','2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(277,46766,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/ic3.png\",\"image:title\":\"ic3\",\"image:caption\":\"\"}]','2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(278,46765,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/ic2.png\",\"image:title\":\"ic2\",\"image:caption\":\"\"}]','2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(279,46748,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/AdobeStock_221755833-D.jpg\",\"image:title\":\"AdobeStock_221755833-D\",\"image:caption\":\"\"}]','2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(280,46613,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/quote-bg.png\",\"image:title\":\"quote-bg\",\"image:caption\":\"\"}]','2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(281,46565,'DID YOU KNOW? | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:11'),(282,46564,'WHY? Why do judge’s even set deadlines for the submission of Memoranda of Law? | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:11'),(283,46563,'DID YOU KNOW? WCL §15(3)(v) BENEFITS MAY NOW BE CAPPED UNDER WCL §15(3)(w) | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:11'),(284,46560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(285,46559,'DID YOU KNOW? IMPLEMENTATION OF THE CHANGES TO THE MTG HAS BEEN DELAYED UNTIL MARCH 1, 2013. | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:11'),(286,46557,'DID YOU KNOW? GOVERNOR CUOMO’S BUDGET PROPOSES TO ELIMINATE MANDATORY DEPOSITS INTO THE ATF AND TO CLOSE THE FUND TO NEW DEPOSITS? | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:11'),(287,46555,'DID YOU KNOW? The Federal Government Is Not Subject to the Jurisdiction of the NY Workers’ Compensation Board on a Theory of General/Special Employment? | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,'','','article','default',NULL,NULL,NULL,NULL,NULL,'',NULL,'','',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:11'),(288,46554,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(289,46553,'DID YOU KNOW? A chiropractic variance request based on alleged functional improvements and expected continued improvements may not be granted if the chiropractor continues to find that the claimant is totally disabled. | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:11'),(290,46550,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(291,46549,'DID YOU KNOW? A bill being considered by the NY State Legislature which would create a presumption of permanent total disability for claimants who are found eligible for social security? | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:11'),(292,46548,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(293,46546,'DID YOU KNOW? AN EMPLOYER OR CARRIER MAY BE ABLE TO REOPEN A PPD CLAIM ON THE ISSUE OF LABOR MARKET ATTACHMENT. | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:11'),(294,46545,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(295,46543,'DID YOU KNOW? THE THIRD DEPARTMENT HOLDS THAT MEDICAL TREATMENT WHICH IS NOT SPECIFICALLY INCLUDED IN THE MTG IS PRESUMPTIVELY NOT MEDICALLY NECESSARY. | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,'','','article','default',NULL,NULL,NULL,NULL,NULL,'',NULL,'','',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:11'),(296,46542,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(297,46541,'DID YOU KNOW? Twenty Insurance Carriers Have Filed an Action Seeking to Obtain a Declaration that the Elimination of The Fund for Reopened Cases Is Unconstitutional. | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:11'),(298,46540,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:12'),(299,46512,'BOARD PROCESS RE-ENGINEERING (“BPR”) – NY WORKERS’ COMPENSATION FORUM MEMBERS SHOULD BE INCLUDED IN THE DIALOGUE | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:12'),(300,46509,'A Blind Leap across an Inscrutable Chasm – Arbitrary and Capricious Loss of Wage Earning Capacity (LWEC) Determinations | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:12'),(301,46508,'DID YOU KNOW? THE BOARD HAS RETIRED THE CONCEPT OF THE COMPENSABLE RETIREMENT. The Death Knell of the Trifecta: Zamora and the so-called “Compensable Retirement” | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:12'),(302,46506,'Navigating the Low Back Medical Treatment Guidelines for Chiropractic Care | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:12'),(303,46505,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(304,46504,'The Law Offices of Melissa A. Day, PLLC Won a Finding of a 0% Loss of Wage Earning Capacity | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:12'),(305,46503,'In Kigin v. WCB, the Court of Appeals upholds the presumption that treatment outside the MTGs is not medically necessary and the attending physician has the burden of proof of the need for a variance. | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:12'),(306,46501,'Hearing Loss becomes Hearing Win | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:12'),(307,46500,'An Underwriting Nightmare Come True | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:12'),(308,46499,'WCB’s Regulatory Agenda May Include… | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:12'),(309,46498,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2015\\/07\\/Hot-Dog-Dog-Costume1-300x196-1.jpg\",\"image:title\":\"Hot-Dog-Dog-Costume1-300&#215;196-1\",\"image:caption\":\"\"}]','2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:49','2021-12-13 16:43:49'),(310,46496,'IMEs : The Next Summer Movie Blockbuster or Just Another IME Gone Bust? | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:43:49',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:43:49','2022-04-04 07:15:12'),(311,46069,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/buehler_vicki_l.jpg\",\"image:title\":\"buehler_vicki_l\",\"image:caption\":\"\"}]','2021-12-13 16:43:50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:43:50','2021-12-13 16:43:50'),(312,46085,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"Title Length\",\"description\":\"Well done!\",\"score\":9,\"maxScore\":9,\"error\":0},\"errors\":0},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"27.9% of the sentences contain more than 20 words, which is more than the recommended maximum of 25%. Try to shorten the sentences.\",\"score\":6,\"maxScore\":9,\"error\":1},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"None of the sentences contain transition words. Use some.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":4}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,76,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/kornacki_paul_b.jpg\",\"image:title\":\"kornacki_paul_b\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/AdobeStock_236812913.jpeg\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Paul_Kornacki_pp.jpg\",\"image:title\":\"Paul_Kornacki_pp\",\"image:caption\":\"\"}]','2022-08-11 19:24:26','default','default',NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:43:50','2022-08-11 19:24:26'),(313,46071,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is over 60 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"30.1% of the sentences contain more than 20 words, which is more than the recommended maximum of 25%. Try to shorten the sentences.\",\"score\":6,\"maxScore\":9,\"error\":1},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"Only 6.8% of the sentences contain transition words, which is not enough. Use more of them.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":4}}}',NULL,NULL,NULL,'profile','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,65,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/christman_cassandra_e.jpg\",\"image:title\":\"christman_cassandra_e\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/AdobeStock_236812913.jpeg\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/Cassie_Christman_pp.jpg\",\"image:title\":\"Cassie_Christman_pp\",\"image:caption\":\"\"}]','2022-08-11 19:24:26','default','default',NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:43:50','2022-08-11 19:24:26'),(314,46075,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Melanie_Daly-1_pp.jpg\",\"image:title\":\"Melanie_Daly-1_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/daly_melanie_a.jpg\",\"image:title\":\"daly_melanie_a\",\"image:caption\":\"\"}]','2022-05-04 15:03:20',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:43:50','2022-05-04 15:03:20'),(315,46340,'Pain is Not Enough for Prima Facie Medical Evidence | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:20','2022-04-04 07:15:12'),(316,46495,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2015\\/07\\/Hot-Dog-Dog-Costume1-300x196-300x196-1.jpg\",\"image:title\":\"Hot-Dog-Dog-Costume1-300&#215;196-300&#215;196-1\",\"image:caption\":\"\"}]','2021-12-13 16:45:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:45:25','2021-12-13 16:45:25'),(317,46493,'HOT DOGS OR HAMBURGERS? | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2015\\/07\\/Hot-Dog-Dog-Costume1-1.jpg\"}]','2021-12-13 16:45:25',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:25','2022-04-04 07:15:12'),(318,46492,'MDs, JDs AND TTDs | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,'','','article','default',NULL,NULL,NULL,NULL,NULL,'',NULL,'','',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:25',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:25','2022-04-04 07:15:12'),(319,46489,'Liability for Treatment by Social Workers | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:25',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:25','2022-04-04 07:15:12'),(320,46488,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2015\\/08\\/pic-1.jpg\",\"image:title\":\"pic-1\",\"image:caption\":\"\"}]','2021-12-13 16:45:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:45:25','2021-12-13 16:45:25'),(321,46485,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2015\\/08\\/pic-1-300x115-1.jpg\",\"image:title\":\"pic-1-300&#215;115-1\",\"image:caption\":\"\"}]','2021-12-13 16:45:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:45:25','2021-12-13 16:45:25'),(322,46483,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/AdobeStock_448704256_Preview.jpg\",\"image:title\":\"AdobeStock_448704256_Preview\",\"image:caption\":\"\"}]','2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:45:25','2021-12-13 16:45:26'),(323,46482,'Non-Acute Pain Treatment Guidelines | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2015\\/08\\/pic-1-1.jpg\"}]','2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(324,46481,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2015\\/08\\/poop.png\",\"image:title\":\"poop\",\"image:caption\":\"\"}]','2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:45:26','2021-12-13 16:45:26'),(325,46480,'Average Wages? | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2015\\/08\\/poop.png\"}]','2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(326,46479,'Answers to the Quiz | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(327,46478,'Claims Handling Performance | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(328,46450,'Summer is Almost Over! | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(329,46448,'Labor Market Attachment Refresher | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(330,46447,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2015\\/09\\/Crossword-EXF-Puzzle-and-Clues.png\",\"image:title\":\"Crossword-EXF-Puzzle-and-Clues\",\"image:caption\":\"\"}]','2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:45:26','2021-12-13 16:45:26'),(331,46446,'Challenge Yourself | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2015\\/09\\/Crossword-EXF-Puzzle-and-Clues.png\"}]','2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(332,46445,'Vocational and Functional… | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(333,46444,'An Employee Cannot be… | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,'','','article','default',NULL,NULL,NULL,NULL,NULL,'',NULL,'','',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(334,46442,'NY Allows Employer to… | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(335,46441,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:45:26','2021-12-13 16:45:26'),(336,46439,'Reopened Cases | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(337,46438,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:45:26','2021-12-13 16:45:26'),(338,46436,'TO WEAN, OR NOT TO WEAN, THAT IS THE QUESTION. | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,'','','article','default',NULL,NULL,NULL,NULL,NULL,'',NULL,'','',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(339,46435,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2016\\/10\\/pic.png\",\"image:title\":\"pic\",\"image:caption\":\"\"}]','2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:45:26','2021-12-13 16:45:26'),(340,46433,'HAPPY HALLO-WEAN | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2016\\/10\\/pic.png\"}]','2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(341,46432,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2017\\/01\\/image002.png\",\"image:title\":\"image002\",\"image:caption\":\"\"}]','2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:45:26','2021-12-13 16:45:26'),(342,46431,'It’s the Holiday Season! | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(343,46429,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2017\\/01\\/image001.png\",\"image:title\":\"image001\",\"image:caption\":\"\"}]','2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:45:26','2021-12-13 16:45:26'),(344,46427,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2017\\/02\\/image002.jpg\",\"image:title\":\"image002\",\"image:caption\":\"\"}]','2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:45:26','2021-12-13 16:45:26'),(345,46426,'Back to the Future:  The Return of WCL 25(2-b): Fact-Finding without Judges and Legal Reasoning without Lawyers | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2017\\/01\\/image001.png\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2017\\/01\\/image002.png\"}]','2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(346,46424,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:45:26','2021-12-13 16:45:26'),(347,46423,'Permanent Partial Disability “Safety Net”…What to Expect from WCL §35 | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2017\\/02\\/image002.jpg\"}]','2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(348,46422,'Board Finds that Medical Treatment Guidelines Apply to Out of State Claimants | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(349,46421,'How to Avoid Bad Luck in Your Comp Claims This Friday the 13th – Some Basic Time Constraints for New York State Workers’ Compensation Claims to Keep in Mind | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(350,46419,'Proposed Changes Submitted Seeking to Expand the Board’s Legal Internship Program | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(351,46418,'Ricky Costner Jr., 18 Year Old Slain by a Deranged Co-Worker, Honored by Family and Friends | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,'','','article','default',NULL,NULL,NULL,NULL,NULL,'',NULL,'','',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(352,46416,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2018\\/05\\/CourtBuilding-300x167-1.jpg\",\"image:title\":\"CourtBuilding-300&#215;167-1\",\"image:caption\":\"\"}]','2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 16:45:26','2021-12-13 16:45:26'),(353,46415,'Schedule Loss of Use Awards – Grrrrrrrrr | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(354,46414,'United States Supreme Court is Considering a Petition for a Writ of Certiorari Of the American Economy Decision | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2018\\/05\\/CourtBuilding-1.jpg\"}]','2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(355,46388,'You’re claiming what?!? | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(356,46386,'Appeals Inventory and Forms | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(357,46385,'A New Quest Begins | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(358,46384,'LWEC &amp; Incontinence | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(359,46383,'Amendments to 2017 not retroactive if PPD claimant was not attached to labor market | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(360,46381,'Claimant’s conviction of unlawful manufacture of methamphetamine does not amount to a violation under WCL 114-a. | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(361,46380,'Melissa A. Day, Esq. invited to join Buffalo Business First Leadership Trust | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(362,46378,'Proposed Changes to §§300.22 and 300.23 – Overpayments | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(363,46377,'A Win for The Law Offices of Melissa A. Day | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(364,46376,'Another Win for The Law Offices of Melissa A. Day! | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(365,46374,'Doubling Down – 2 Hearing Loss Claims for the Same Claimant Denied on the Same Day | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 16:45:26',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 16:45:26','2022-04-04 07:15:12'),(366,46079,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.com\\/@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9mZWF0dXJlZF9pbWFnZSIsInNldHRpbmdzIjp7fX0=@\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/diegelman_neil_a.jpg\",\"image:title\":\"diegelman_neil_a\",\"image:caption\":\"\"}]','2022-05-04 15:03:20',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:45:26','2022-05-04 15:03:20'),(367,46081,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"Title Length\",\"description\":\"Well done!\",\"score\":9,\"maxScore\":9,\"error\":0},\"errors\":0},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"31.5% of the sentences contain more than 20 words, which is more than the recommended maximum of 25%. Try to shorten the sentences.\",\"score\":6,\"maxScore\":9,\"error\":1},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"None of the sentences contain transition words. Use some.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":4}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,76,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}',0,1,0,0,0,0,0,0,0,-1,-1,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Katrina_Gray_pp.jpg\",\"image:title\":\"Katrina_Gray_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/gray_katrina.jpg\",\"image:title\":\"gray_katrina\",\"image:caption\":\"\"}]','2022-05-09 14:32:40','default','default',NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 16:45:26','2022-05-09 14:32:40'),(368,46332,'Carpal Tunnel and Causal Relation Not Always So Clear-Cut | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:17','2022-04-04 07:15:12'),(369,46373,'Success with WCL Section 18 | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:29',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:29','2022-04-04 07:15:12'),(370,46372,'How Change in Conditions for Classified Claimants Changed Drastically | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:29',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:29','2022-04-04 07:15:12'),(371,46371,'Fraud in the Family – Claimant Doing Other Work while Receiving Comp Benefits | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:29',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:29','2022-04-04 07:15:12'),(372,46370,'Occupational Disease Claims after Matter of Pinnacle Industries II, LLC (2019 NY Wrk Comp G2020587) | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:29',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:29','2022-04-04 07:15:12'),(373,46369,'No Error of Law or Fact In An Application For Full Board Review | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:29',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:29','2022-04-04 07:15:12'),(374,46368,'Independent Contractor or Employee | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:29',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:29','2022-04-04 07:15:12'),(375,46367,'No Further Causally Related Disability Due to Intervening Unrelated Accident | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:29',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:29','2022-04-04 07:15:12'),(376,46352,'Genduso and Total Joint Replacement Schedules | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:29',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:29','2022-04-04 07:15:12'),(377,46351,'Thoughts on Thinking:  A Strange Title About Practicing Law | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:29',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:29','2022-04-04 07:15:12'),(378,46350,'When Do Work From Home Accidents Occur in the Scope and Course of Employment? | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:29','2022-04-04 07:15:12'),(379,46348,'Section 44: Not Even a Portion of Liability For The Occupational Disease | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:30','2022-04-04 07:15:12'),(380,46347,'An “Interesting” IME Development | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:30','2022-04-04 07:15:12'),(381,46345,'Social Media and Fraud – You’d Be Surprised What People Post! | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:30','2022-04-04 07:15:12'),(382,46344,'The Claimant’s Burden: Proving the Causal Relationship of an Injury | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:30','2022-04-04 07:15:12'),(383,46343,'Employers Do Not Have to Prove Prejudice by Late Notice, but it Certainly Doesn’t Hurt To Do So! | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:30','2022-04-04 07:15:12'),(384,46342,'Claim Disallowance With Unanimous Medical Opinion Giving Causal Relationship | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:30','2022-04-04 07:15:12'),(385,46341,'Labor Market Attachment and Retirement | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:30','2022-04-04 07:15:12'),(386,46339,'Stipulations, Reimbursements, Underpayments. Oh My! | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:30','2022-04-04 07:15:12'),(387,46338,'Third Deparment Decision: Disputing Causal Relationship | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:30','2022-04-04 07:15:12'),(388,46335,'Disallowance Due to Intoxication | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:30','2022-04-04 07:15:12'),(389,46327,'Surveillance, Social Media…Section 32? | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2021-12-13 17:07:30','2022-04-04 07:15:12'),(390,46317,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/AdobeStock_447848300_Preview.jpg\",\"image:title\":\"AdobeStock_447848300_Preview\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(391,46313,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/icon2.png\",\"image:title\":\"icon2\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(392,46312,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/icon.png\",\"image:title\":\"icon\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(393,46311,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/icon1.png\",\"image:title\":\"icon1\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(394,46300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/AdobeStock_297103193_Preview.jpg\",\"image:title\":\"AdobeStock_297103193_Preview\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(395,46273,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/logo.png\",\"image:title\":\"logo\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(396,46270,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/AdobeStock_140260471_Preview.jpg\",\"image:title\":\"AdobeStock_140260471_Preview\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(397,46252,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(398,46251,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(399,46250,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(400,46249,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(401,46248,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/3006688682.jpg\",\"image:title\":\"3006688682\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(402,46247,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/1787479011.jpg\",\"image:title\":\"1787479011\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(403,46246,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/970001773.jpg\",\"image:title\":\"970001773\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(404,46245,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/102398183.jpg\",\"image:title\":\"102398183\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(405,46235,'M&amp;T Rates | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 17:07:30','2022-04-04 07:15:11'),(406,46232,'Life Awards | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 17:07:30','2022-04-04 07:15:11'),(407,46227,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/MULTI-114764-1-ap3.jpg\",\"image:title\":\"MULTI-114764-1-ap3\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(408,46224,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/KBD-250x250-1.png\",\"image:title\":\"KBD-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(409,46223,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/TCleary-revised-250x250-1.png\",\"image:title\":\"TCleary-revised-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(410,46222,'Litigation Team | The Law Offices of Melissa A. Day, PLLC | Amherst','The litigation team at The Law Offices of Melissa A. Day, PLLC, uses creativity, attention to detail and a dogged persistence to get results. Call 716-616-0111 to set up a consultation.',NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 17:07:30','2022-04-04 07:15:11'),(411,46218,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/BTS-e1609438627154.png\",\"image:title\":\"BTS-e1609438627154\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(412,46217,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/ECamp1-250x250-1.jpg\",\"image:title\":\"ECamp1-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(413,46216,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/DHF-webrdy-250x250-1.png\",\"image:title\":\"DHF-webrdy-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(414,46215,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/HEK-250x250-1.png\",\"image:title\":\"HEK-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(415,46214,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/JCW1-250x250-1.png\",\"image:title\":\"JCW1-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(416,46213,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/JLG-250x250-1.png\",\"image:title\":\"JLG-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(417,46212,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/JLM-250x250-1.png\",\"image:title\":\"JLM-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(418,46211,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/NWalker-1-250x250-1.png\",\"image:title\":\"NWalker-1-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 17:07:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 17:07:30','2021-12-13 17:07:30'),(419,46210,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/JMC-250x250-1.png\",\"image:title\":\"JMC-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(420,46209,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/RBrashear1-250x250-1.jpg\",\"image:title\":\"RBrashear1-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(421,46208,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/TXD1-250x250-1.jpg\",\"image:title\":\"TXD1-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(422,46207,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/SLE-250x250-1.png\",\"image:title\":\"SLE-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(423,46206,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/ADH-250x250-1.png\",\"image:title\":\"ADH-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(424,46205,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/BTS-250x250-1.png\",\"image:title\":\"BTS-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(425,46204,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/BKP1-250x250-1.jpg\",\"image:title\":\"BKP1-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(426,46203,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/CEC-webrdy-250x250-1.png\",\"image:title\":\"CEC-webrdy-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(427,46202,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/JBC-Partner-250x250-1.jpg\",\"image:title\":\"JBC-Partner-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(428,46201,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/KMM-250x250-1.jpg\",\"image:title\":\"KMM-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(429,46200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/KG2-250x250-1.jpg\",\"image:title\":\"KG2-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(430,46199,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/MXD-webrdy-250x250-1.png\",\"image:title\":\"MXD-webrdy-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(431,46198,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/MAD-Copy1-250x250-1.png\",\"image:title\":\"MAD-Copy1-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(432,46197,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/NAD-webrdy-250x250-1.png\",\"image:title\":\"NAD-webrdy-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(433,46196,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/PBK-250x250-1.png\",\"image:title\":\"PBK-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(434,46195,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/SMM2-250x250-1.jpg\",\"image:title\":\"SMM2-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(435,46194,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/VLB-webrdy-250x250-1.png\",\"image:title\":\"VLB-webrdy-250&#215;250\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(436,46180,'Vicki L. Buehler | The Law Offices of Melissa A. Day, PLLC',NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"This is far below the recommended minimum of words.\",\"score\":-10,\"maxScore\":9,\"error\":1},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":4},\"title\":{\"titleLength\":{\"title\":\"Title Length\",\"description\":\"Well done!\",\"score\":9,\"maxScore\":9,\"error\":0},\"errors\":0},\"readability\":{\"contentHasAssets\":{\"error\":0,\"title\":\"Images\\/videos in content\",\"description\":\"Your content contains images and\\/or video(s).\",\"score\":5,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"Only 8.3% of the sentences contain transition words, which is not enough. Use more of them.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 48.3 in the test, which is considered difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":2}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,75,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Vicki_L_Buehler-1_pp.jpg\"}]','2022-08-11 18:07:12','default','default',NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 18:36:44','2022-08-11 18:07:12'),(437,46178,'Teresa Cleary | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/TCleary-revised-e1564430301923.png\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Teresa_Cleary_pp.jpg\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(438,46163,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/MXD-webrdy-e1583244740263.png\",\"image:title\":\"MXD-webrdy-e1583244740263\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(439,46160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/KMM-e1527081490125.jpg\",\"image:title\":\"KMM-e1527081490125\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(440,46159,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/NAD-webrdy-e1583244759983.png\",\"image:title\":\"NAD-webrdy-e1583244759983\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(441,46158,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/MAD-Copy1-e1614865430869.png\",\"image:title\":\"MAD-Copy1-e1614865430869\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(442,46157,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/NWalker-1-e1625232413654.png\",\"image:title\":\"NWalker-1-e1625232413654\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(443,46156,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/RBrashear1-e1544211193771.jpg\",\"image:title\":\"RBrashear1-e1544211193771\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(444,46155,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/PBK-e1560351916512.png\",\"image:title\":\"PBK-e1560351916512\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(445,46154,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/SLE-e1609438853360.png\",\"image:title\":\"SLE-e1609438853360\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(446,46153,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/SMM2-e1543856304373.jpg\",\"image:title\":\"SMM2-e1543856304373\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(447,46152,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/TXD1-e1542304527103.jpg\",\"image:title\":\"TXD1-e1542304527103\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(448,46151,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/TCleary-revised-e1564430301923.png\",\"image:title\":\"TCleary-revised-e1564430301923\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(449,46150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/VLB-webrdy-e1583244774191.png\",\"image:title\":\"VLB-webrdy-e1583244774191\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(450,46149,'Kristin M. Machelor | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/KMM-e1527081490125.jpg\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(451,46146,'Najee Walker | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/NWalker-1-e1625232413654.png\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(452,46127,'Kristen B. Degnan | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Kristen_Degnan_pp.jpg\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(453,46126,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/ECamp1-e1527085139339.jpg\",\"image:title\":\"ECamp1-e1527085139339\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(454,46124,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/JBC-Partner-e1546283938157.jpg\",\"image:title\":\"JBC-Partner-e1546283938157\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(455,46123,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/HEK-e1609439152814.png\",\"image:title\":\"HEK-e1609439152814\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(456,46120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/JCW1-e1619123390972.png\",\"image:title\":\"JCW1-e1619123390972\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(457,46118,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/JLG-e1609438890826.png\",\"image:title\":\"JLG-e1609438890826\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(458,46117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/JMC-e1602506319276.png\",\"image:title\":\"JMC-e1602506319276\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(459,46116,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/JLM-e1609438869666.png\",\"image:title\":\"JLM-e1609438869666\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(460,46115,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/KG2-e1543856315349.jpg\",\"image:title\":\"KG2-e1543856315349\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(461,46114,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/KBD-e1560351563755.png\",\"image:title\":\"KBD-e1560351563755\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(462,46104,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/DHF-webrdy-e1583244723703.png\",\"image:title\":\"DHF-webrdy-e1583244723703\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(463,46098,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/0_0_0_0_177_236_csupload_64428384.jpg\",\"image:title\":\"0_0_0_0_177_236_csupload_64428384\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(464,46094,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/LogoColorTextBelow.png\",\"image:title\":\"LogoColorTextBelow\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(465,46092,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/prince_brian_k.jpg\",\"image:title\":\"prince_brian_k\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(466,46090,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/mackey_shannan_m.jpg\",\"image:title\":\"mackey_shannan_m\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(467,46088,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/machelor_kristin_m.jpg\",\"image:title\":\"machelor_kristin_m\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(468,46087,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/11\\/machelor_kristin_m.jpg\",\"image:title\":\"machelor_kristin_m\",\"image:caption\":\"\"}]','2021-12-13 18:36:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 18:36:44','2021-12-13 18:36:44'),(469,46086,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/kornacki_paul_b.jpg\",\"image:title\":\"kornacki_paul_b\",\"image:caption\":\"\"}]','2021-12-13 20:13:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 20:13:32','2021-12-13 20:13:32'),(470,46084,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/hatten_alexis_d.jpg\",\"image:title\":\"hatten_alexis_d\",\"image:caption\":\"\"}]','2021-12-13 20:13:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 20:13:32','2021-12-13 20:13:32'),(471,46082,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/gray_katrina.jpg\",\"image:title\":\"gray_katrina\",\"image:caption\":\"\"}]','2021-12-13 20:13:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 20:13:32','2021-12-13 20:13:32'),(472,46080,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/diegelman_neil_a.jpg\",\"image:title\":\"diegelman_neil_a\",\"image:caption\":\"\"}]','2021-12-13 20:13:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 20:13:32','2021-12-13 20:13:32'),(473,46078,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/day_melissa_a.jpg\",\"image:title\":\"day_melissa_a\",\"image:caption\":\"\"}]','2021-12-13 20:13:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 20:13:32','2021-12-13 20:13:32'),(474,46076,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/daly_melanie_a.jpg\",\"image:title\":\"daly_melanie_a\",\"image:caption\":\"\"}]','2021-12-13 20:13:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 20:13:32','2021-12-13 20:13:32'),(475,46074,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/cousins_james_b.jpg\",\"image:title\":\"cousins_james_b\",\"image:caption\":\"\"}]','2021-12-13 20:13:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 20:13:32','2021-12-13 20:13:32'),(476,46072,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/christman_cassandra_e.jpg\",\"image:title\":\"christman_cassandra_e\",\"image:caption\":\"\"}]','2021-12-13 20:13:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 20:13:32','2021-12-13 20:13:32'),(477,46070,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/08\\/buehler_vicki_l.jpg\",\"image:title\":\"buehler_vicki_l\",\"image:caption\":\"\"}]','2021-12-13 20:13:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 20:13:32','2021-12-13 20:13:32'),(478,46049,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":[],\"lengthContent\":{\"title\":\"Content length\",\"description\":\"This is far below the recommended minimum of words.\",\"score\":-20,\"maxScore\":9,\"error\":1},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"None of the sentences contain transition words. Use some.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"The text contains 4 consecutive sentences starting with the same word. Try to mix things up!\",\"score\":3,\"maxScore\":9,\"error\":1},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":4}}}',NULL,NULL,NULL,'website','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,55,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}',0,0,1,0,0,1,0,0,0,-1,-1,'large',NULL,'2022-05-12 11:00:40','default','default',NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2021-12-13 20:13:32','2022-05-12 11:00:40'),(479,45924,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2019\\/07\\/findlaw-network-white.png\",\"image:title\":\"findlaw-network-white\",\"image:caption\":\"\"}]','2021-12-13 20:13:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 20:13:32','2021-12-13 20:13:32'),(480,45923,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2019\\/07\\/findlaw-network-black.png\",\"image:title\":\"findlaw-network-black\",\"image:caption\":\"\"}]','2021-12-13 20:13:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 20:13:32','2021-12-13 20:13:32'),(481,45922,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentwww.getmad.todayhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2019\\/07\\/findlaw-network.png\",\"image:title\":\"findlaw-network\",\"image:caption\":\"\"}]','2021-12-13 20:13:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2021-12-13 20:13:32','2021-12-13 20:13:32'),(482,48934,NULL,NULL,NULL,NULL,NULL,NULL,'','','article','default',NULL,NULL,NULL,NULL,NULL,'',NULL,'','',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2022-04-04 10:15:40',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:11','2022-04-04 07:15:12',NULL,0,NULL,'2022-04-04 05:41:29','2022-04-04 10:15:40'),(483,48685,'Alexandra M. Rizk | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,'','','website','default',NULL,NULL,NULL,NULL,NULL,'',NULL,'','',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/02\\/Alexandra-Rizk.jpg\"}]','2022-04-04 07:15:12',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2022-04-04 05:41:29','2022-04-04 07:15:12'),(484,48689,'Kierria A. Jones | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,'','','website','default',NULL,NULL,NULL,NULL,NULL,'',NULL,'','',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/02\\/Kierria_Jones.jpg\"}]','2022-04-04 07:15:12',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2022-04-04 05:41:29','2022-04-04 07:15:12'),(485,48691,'Maxwell J. Doldan | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,'','','website','default',NULL,NULL,NULL,NULL,NULL,'',NULL,'','',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/02\\/Maxwell-Doldan.jpg\"}]','2022-04-04 07:15:13',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2022-04-04 05:41:29','2022-04-04 07:15:13'),(486,48823,'Kelsey X. Kunz | The Law Offices of Melissa A. Day, PLLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Atty_Kelesy-Kunze.jpg\"}]','2022-04-04 07:15:13',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2022-04-04 05:41:29','2022-04-04 07:15:13'),(487,48606,NULL,NULL,NULL,NULL,NULL,NULL,'','','profile','default',NULL,NULL,NULL,NULL,NULL,'',NULL,'','',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/01\\/machelor-kristin-m.jpg\",\"image:title\":\"machelor-kristin-m\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/01\\/machelor_kristin_m.jpg\",\"image:title\":\"machelor_kristin_m\",\"image:caption\":\"\"}]','2022-05-04 15:05:20',NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2022-04-04 05:41:29','2022-05-04 15:05:20'),(488,48716,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is over 60 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"41.3% of the sentences contain more than 20 words, which is more than the recommended maximum of 25%. Try to shorten the sentences.\",\"score\":6,\"maxScore\":9,\"error\":1},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"None of the sentences contain transition words. Use some.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":4}}}',NULL,NULL,NULL,'profile','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,65,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/AdobeStock_236812913.jpeg\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Brian_Prince-1_pp.jpg\",\"image:title\":\"Brian_Prince-1_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/02\\/Suki-Harada.jpg\",\"image:title\":\"Suki-Harada\",\"image:caption\":\"\"}]','2022-08-11 19:24:26','default','default',NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2022-04-04 05:41:29','2022-08-11 19:24:26'),(489,48717,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"Title Length\",\"description\":\"Well done!\",\"score\":9,\"maxScore\":9,\"error\":0},\"errors\":0},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"41.3% of the sentences contain more than 20 words, which is more than the recommended maximum of 25%. Try to shorten the sentences.\",\"score\":6,\"maxScore\":9,\"error\":1},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"None of the sentences contain transition words. Use some.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":4}}}',NULL,NULL,NULL,'profile','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,76,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/AdobeStock_236812913.jpeg\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Brian_Prince-1_pp.jpg\",\"image:title\":\"Brian_Prince-1_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/02\\/Bing-huang.jpg\",\"image:title\":\"Bing-huang\",\"image:caption\":\"\"}]','2022-08-11 19:24:26','default','default',NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2022-04-04 05:41:29','2022-08-11 19:24:26'),(491,48693,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11',NULL,0,NULL,'2022-04-04 07:15:10','2022-04-04 07:15:11'),(494,49005,'Site Map | The Law Offices of Melissa A. Day, PLLC | Amherst','#post_excerpt','[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"This is far below the recommended minimum of words.\",\"score\":-20,\"maxScore\":9,\"error\":1},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":4},\"title\":{\"titleLength\":{\"title\":\"Title Length\",\"description\":\"Well done!\",\"score\":9,\"maxScore\":9,\"error\":0},\"errors\":0},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":2}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,75,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-04-11 20:18:09','2022-04-11 20:18:09'),(495,49006,'Site Map | The Law Offices of Melissa A. Day, PLLC | Amherst','#post_excerpt','[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"This is far below the recommended minimum of words.\",\"score\":-20,\"maxScore\":9,\"error\":1},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":4},\"title\":{\"titleLength\":{\"title\":\"Title Length\",\"description\":\"Well done!\",\"score\":9,\"maxScore\":9,\"error\":0},\"errors\":0},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":2}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,75,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-04-11 20:18:44','2022-04-11 20:18:44'),(496,49010,'#post_title','#post_excerpt','[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"You are linking to other resources on your website which is great.\",\"score\":9,\"maxScore\":9,\"error\":0},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":2},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"Only 9.4% of the sentences contain transition words, which is not enough. Use more of them.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,72,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-04-20 18:14:04','2022-04-20 18:14:04'),(497,49011,'#post_title','#post_excerpt','[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"You are linking to other resources on your website which is great.\",\"score\":9,\"maxScore\":9,\"error\":0},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":2},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"Only 9.4% of the sentences contain transition words, which is not enough. Use more of them.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,72,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-04-20 18:14:49','2022-04-20 18:14:49'),(498,49019,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"This is far below the recommended minimum of words.\",\"score\":-20,\"maxScore\":9,\"error\":1},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":4},\"title\":{\"titleLength\":{\"title\":\"Title Length\",\"description\":\"Well done!\",\"score\":9,\"maxScore\":9,\"error\":0},\"errors\":0},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"You are not using any subheadings, but your text is short enough and probably doesn\'t need them.\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":2}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,75,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}',0,1,0,0,0,0,0,0,0,-1,-1,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/05\\/Maria-Lua_pp.jpg\",\"image:title\":\"Maria-Lua_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/05\\/lua_maria.jpg\",\"image:title\":\"lua_maria\",\"image:caption\":\"\"}]','2022-05-04 16:32:18','default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-05-04 15:05:20','2022-05-04 16:32:18'),(500,49023,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"Title Length\",\"description\":\"Well done!\",\"score\":9,\"maxScore\":9,\"error\":0},\"errors\":0},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"27.3% of the sentences contain more than 20 words, which is more than the recommended maximum of 25%. Try to shorten the sentences.\",\"score\":6,\"maxScore\":9,\"error\":1},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"None of the sentences contain transition words. Use some.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":4}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,76,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}',0,1,0,0,0,0,0,0,0,-1,-1,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/05\\/Julie-Viljoen_pp.jpg\",\"image:title\":\"Julie-Viljoen_pp\",\"image:caption\":\"\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2022\\/05\\/viljoen_julie.jpg\",\"image:title\":\"viljoen_julie\",\"image:caption\":\"\"}]','2022-05-04 16:15:44','default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-05-04 15:05:20','2022-05-04 16:15:44'),(501,49046,'Workers\' Compensation Team | The Law Offices of Melissa A. Day, PLLC | Amherst','The workers’ compensation defense team at The Law Offices of Melissa A. Day, PLLC, boasts more than 130 years of combined experience. Call 716-616-0111 to set up a consultation.','[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"You are linking to other resources on your website which is great.\",\"score\":9,\"maxScore\":9,\"error\":0},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":2},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is over 60 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"Only 3.8% of the sentences contain transition words, which is not enough. Use more of them.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'website','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,72,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-05-04 16:46:57','2022-05-04 16:46:57'),(502,49048,'Workers\' Compensation Team | The Law Offices of Melissa A. Day, PLLC | Amherst','The workers’ compensation defense team at The Law Offices of Melissa A. Day, PLLC, boasts more than 130 years of combined experience. Call 716-616-0111 to set up a consultation.','[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"You are linking to other resources on your website which is great.\",\"score\":9,\"maxScore\":9,\"error\":0},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":2},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is over 60 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"Only 3.4% of the sentences contain transition words, which is not enough. Use more of them.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'website','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,72,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-05-04 16:56:39','2022-05-04 16:56:39'),(503,49054,'Workers\' Compensation Team | The Law Offices of Melissa A. Day, PLLC | Amherst','The workers’ compensation defense team at The Law Offices of Melissa A. Day, PLLC, boasts more than 130 years of combined experience. Call 716-616-0111 to set up a consultation.','[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"You are linking to other resources on your website which is great.\",\"score\":9,\"maxScore\":9,\"error\":0},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":2},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is over 60 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"Only 3.4% of the sentences contain transition words, which is not enough. Use more of them.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'website','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,72,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-05-04 17:05:13','2022-05-04 17:05:13'),(504,49055,'#post_title','#post_excerpt','[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":[],\"lengthContent\":{\"title\":\"Content length\",\"description\":\"This is far below the recommended minimum of words.\",\"score\":-20,\"maxScore\":9,\"error\":1},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"The text contains 4 consecutive sentences starting with the same word. Try to mix things up!\",\"score\":3,\"maxScore\":9,\"error\":1},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"You are not using any subheadings, but your text is short enough and probably doesn\'t need them.\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'website','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,57,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}',0,0,1,0,0,1,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-05-06 11:35:12','2022-05-06 11:35:12'),(505,49060,'Workers\' Compensation Team | The Law Offices of Melissa A. Day, PLLC | Amherst','The workers’ compensation defense team at The Law Offices of Melissa A. Day, PLLC, boasts more than 130 years of combined experience. Call 716-616-0111 to set up a consultation.','[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"You are linking to other resources on your website which is great.\",\"score\":9,\"maxScore\":9,\"error\":0},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":2},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is over 60 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"Only 3.4% of the sentences contain transition words, which is not enough. Use more of them.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'website','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,72,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-05-09 16:02:59','2022-05-09 16:02:59'),(506,49061,'Workers\' Compensation Team | The Law Offices of Melissa A. Day, PLLC | Amherst','The workers’ compensation defense team at The Law Offices of Melissa A. Day, PLLC, boasts more than 130 years of combined experience. Call 716-616-0111 to set up a consultation.','[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"You are linking to other resources on your website which is great.\",\"score\":9,\"maxScore\":9,\"error\":0},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":2},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is over 60 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"Only 3.4% of the sentences contain transition words, which is not enough. Use more of them.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'website','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,72,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-05-09 16:03:49','2022-05-09 16:03:49'),(508,49065,'Workers\' Compensation Team | The Law Offices of Melissa A. Day, PLLC | Amherst','The workers’ compensation defense team at The Law Offices of Melissa A. Day, PLLC, boasts more than 130 years of combined experience. Call 716-616-0111 to set up a consultation.','[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"You are linking to other resources on your website which is great.\",\"score\":9,\"maxScore\":9,\"error\":0},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":2},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is over 60 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"Only 3.4% of the sentences contain transition words, which is not enough. Use more of them.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'website','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'summary_large_image','default',NULL,NULL,NULL,NULL,NULL,72,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-05-09 18:00:27','2022-05-09 18:00:27'),(512,49089,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content is below the minimum of words. Add more content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"Great! You are linking to external resources.\",\"score\":9,\"maxScore\":9,\"error\":0},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"38.5% of the sentences contain more than 20 words, which is more than the recommended maximum of 25%. Try to shorten the sentences.\",\"score\":6,\"maxScore\":9,\"error\":1},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"28.6% of the sentences contain passive voice, which is more than the recommended maximum of 10%. Try to use their active counterparts.\",\"score\":3,\"maxScore\":9,\"error\":1},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"Only 14.3% of the sentences contain transition words, which is not enough. Use more of them.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"You are not using any subheadings, but your text is short enough and probably doesn\'t need them.\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 39.4 in the test, which is considered difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":5}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,62,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,'2022-06-02 19:38:41','default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-06-01 18:49:55','2022-06-02 19:38:41'),(515,49165,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"lengthContent\":{\"error\":1,\"maxScore\":9,\"score\":6,\"title\":\"Content\",\"description\":\"Please add some content first.\"}},\"title\":{\"titleLength\":{\"error\":1,\"maxScore\":9,\"score\":1,\"title\":\"Title\",\"description\":\"Please add a title first.\"}},\"readability\":{\"contentHasAssets\":{\"error\":1,\"maxScore\":5,\"score\":0,\"title\":\"No content yet\",\"description\":\"Please add some content first.\"}}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-11 18:15:24','2022-08-11 18:16:24'),(516,49190,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"title\":\"Meta description length\",\"description\":\"The meta description is over 160 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"Title Length\",\"description\":\"Well done!\",\"score\":9,\"maxScore\":9,\"error\":0},\"errors\":0},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"28.8% of the sentences contain more than 20 words, which is more than the recommended maximum of 25%. Try to shorten the sentences.\",\"score\":6,\"maxScore\":9,\"error\":1},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"None of the sentences contain transition words. Use some.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":4}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,76,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large','[{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/09\\/AdobeStock_236812913.jpeg\"},{\"image:loc\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.comhttps:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/Vicki_L_Buehler-1_pp.jpg\",\"image:title\":\"Vicki_L_Buehler-1_pp\",\"image:caption\":\"\"}]','2022-08-11 20:12:44','default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-11 19:42:19','2022-08-11 20:12:44'),(517,49199,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":[],\"lengthContent\":{\"title\":\"Content length\",\"description\":\"This is far below the recommended minimum of words.\",\"score\":-20,\"maxScore\":9,\"error\":1},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"You are not using any subheadings, but your text is short enough and probably doesn\'t need them.\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":2}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,60,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 14:38:12','2022-08-16 14:39:42'),(518,49201,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 14:41:34','2022-08-16 14:41:34'),(519,47118,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 14:41:57','2022-08-16 14:41:57'),(520,47151,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 14:42:33','2022-08-16 14:42:33'),(521,47121,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 14:43:24','2022-08-16 14:43:24'),(522,49203,'#post_title | The Law Offices of Melissa A. Day, PLLC | Amherst',NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":[],\"lengthContent\":{\"title\":\"Content length\",\"description\":\"This is far below the recommended minimum of words.\",\"score\":-20,\"maxScore\":9,\"error\":1},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":4},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is over 60 characters.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":0,\"title\":\"Images\\/videos in content\",\"description\":\"Your content contains images and\\/or video(s).\",\"score\":5,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":{\"title\":\"Transition words\",\"description\":\"None of the sentences contain transition words. Use some.\",\"score\":3,\"maxScore\":9,\"error\":1},\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"You are not using any subheadings, but your text is short enough and probably doesn\'t need them.\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":2}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,64,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,'2022-08-16 20:06:36','default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 14:44:32','2022-08-16 20:06:36'),(523,47214,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:26:10','2022-08-16 15:26:10'),(524,47307,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:26:12','2022-08-16 15:26:12'),(525,48418,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:26:14','2022-08-16 15:26:14'),(526,47305,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:26:15','2022-08-16 15:26:15'),(527,47213,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:26:17','2022-08-16 15:26:17'),(528,47517,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:26:19','2022-08-16 15:26:19'),(529,47312,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:26:21','2022-08-16 15:26:21'),(530,47311,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:26:23','2022-08-16 15:26:23'),(531,47313,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:26:24','2022-08-16 15:26:24'),(532,48861,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:26:26','2022-08-16 15:26:26'),(533,47308,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:26:28','2022-08-16 15:26:28'),(534,47516,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:26:30','2022-08-16 15:26:30'),(535,49220,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:26:30','2022-08-16 15:26:30'),(536,47215,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:26:32','2022-08-16 15:26:32'),(537,47518,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:26:34','2022-08-16 15:26:34'),(538,45969,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:40:15','2022-08-16 15:40:15'),(539,45968,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:40:19','2022-08-16 15:40:19'),(540,46669,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:40:21','2022-08-16 15:40:21'),(541,47292,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:40:23','2022-08-16 15:40:23'),(542,47299,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:40:25','2022-08-16 15:40:25'),(543,46668,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:40:27','2022-08-16 15:40:27'),(544,47728,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:40:29','2022-08-16 15:40:29'),(545,47297,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:40:31','2022-08-16 15:40:31'),(546,47294,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:40:32','2022-08-16 15:40:32'),(547,47296,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:40:34','2022-08-16 15:40:34'),(548,47298,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:40:38','2022-08-16 15:40:38'),(549,48859,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:40:40','2022-08-16 15:40:40'),(550,47295,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:40:42','2022-08-16 15:40:42'),(551,47854,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:40:44','2022-08-16 15:40:44'),(552,45967,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:40:45','2022-08-16 15:40:45'),(553,49222,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:40:45','2022-08-16 15:40:45'),(554,47293,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:40:47','2022-08-16 15:40:47'),(555,46670,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:40:48','2022-08-16 15:40:48'),(556,45966,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-16 15:40:50','2022-08-16 15:40:50'),(557,49182,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-18 12:30:27','2022-08-18 12:30:27'),(558,49188,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-18 12:31:40','2022-08-18 12:31:40'),(559,49234,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":[],\"lengthContent\":{\"title\":\"Content length\",\"description\":\"This is far below the recommended minimum of words.\",\"score\":-20,\"maxScore\":9,\"error\":1},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"You are not using any subheadings, but your text is short enough and probably doesn\'t need them.\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":2}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,60,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-18 12:53:21','2022-08-18 12:53:36'),(560,49236,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-18 13:42:20','2022-08-18 13:42:20'),(561,49237,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":[],\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,66,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-19 15:34:45','2022-08-19 20:26:37'),(562,49248,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-19 16:10:42','2022-08-19 16:10:42'),(564,49267,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-19 17:08:16','2022-08-19 17:08:16'),(565,49272,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-19 17:09:49','2022-08-19 17:09:49'),(566,49273,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":[],\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,66,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-19 17:11:15','2022-08-19 20:21:58'),(567,49299,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":[],\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"The text contains 3 consecutive sentences starting with the same word. Try to mix things up!\",\"score\":3,\"maxScore\":9,\"error\":1},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":4}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,63,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-19 18:29:25','2022-08-19 20:16:56'),(568,49303,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":[],\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"The text contains 3 consecutive sentences starting with the same word. Try to mix things up!\",\"score\":3,\"maxScore\":9,\"error\":1},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"1 section of your text is longer than 300 words and is not separated by any subheadings. Add subheadings to improve readability.\",\"score\":6,\"maxScore\":9,\"error\":1},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":5}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,62,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-19 18:46:16','2022-08-19 20:10:24'),(569,49307,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":[],\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,66,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-19 18:50:23','2022-08-19 20:03:03'),(570,49312,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":[],\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,66,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-19 18:53:45','2022-08-19 19:56:51'),(571,49316,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":[],\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,66,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-19 19:09:17','2022-08-19 19:52:07'),(572,49322,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":[],\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,66,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-19 19:11:57','2022-08-19 19:46:47'),(573,49326,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":[],\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,66,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-19 19:13:50','2022-08-19 19:40:03'),(574,49331,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":[],\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,66,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-19 19:16:20','2022-08-19 19:36:34'),(575,49336,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":[],\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,66,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-19 19:18:30','2022-08-19 19:32:27'),(576,49340,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":[],\"lengthContent\":{\"title\":\"Content length\",\"description\":\"This is far below the recommended minimum of words.\",\"score\":-20,\"maxScore\":9,\"error\":1},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"You are not using any subheadings, but your text is short enough and probably doesn\'t need them.\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":2}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,60,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-19 19:20:44','2022-08-19 19:22:19'),(577,49344,NULL,NULL,'[]','{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":[],\"lengthContent\":{\"title\":\"Content length\",\"description\":\"The content length is ok. Good job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"isInternalLink\":{\"title\":\"Internal links\",\"description\":\"We couldn\'t find any internal links in your content. Add internal links in your content.\",\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"title\":\"External links\",\"description\":\"No outbound links were found. Link out to external resources.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3},\"title\":{\"titleLength\":{\"title\":\"SEO Title length\",\"description\":\"The title is too short.\",\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"title\":\"Images\\/videos in content\",\"description\":\"You are not using rich media like images or videos.\",\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"title\":\"Paragraphs length\",\"description\":\"You are using short paragraphs.\",\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"title\":\"Sentences length\",\"description\":\"Sentence length is looking great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"title\":\"Passive voice\",\"description\":\"You\'re using enough active voice. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"title\":\"Consecutive sentences\",\"description\":\"There is enough variety in your sentences. That\'s great!\",\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"title\":\"Subheading distribution\",\"description\":\"Great job!\",\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"title\":\"Flesch reading ease\",\"description\":\"The copy scores 0 in the test, which is considered very difficult to read. Try to make shorter sentences, using less difficult words to improve readability.\",\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":3}}}',NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'[]',0,'default','default',NULL,NULL,NULL,NULL,NULL,66,'default','{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}',0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-19 19:22:32','2022-08-19 19:28:32');
/*!40000 ALTER TABLE `cuB_aioseo_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_aioseo_terms`
--

DROP TABLE IF EXISTS `cuB_aioseo_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_aioseo_terms` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL,
  `title` text COLLATE utf8mb4_unicode_520_ci,
  `description` text COLLATE utf8mb4_unicode_520_ci,
  `keywords` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `canonical_url` text COLLATE utf8mb4_unicode_520_ci,
  `og_title` text COLLATE utf8mb4_unicode_520_ci,
  `og_description` text COLLATE utf8mb4_unicode_520_ci,
  `og_object_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT 'default',
  `og_image_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT 'default',
  `og_image_url` text COLLATE utf8mb4_unicode_520_ci,
  `og_image_width` int(11) DEFAULT NULL,
  `og_image_height` int(11) DEFAULT NULL,
  `og_image_custom_url` text COLLATE utf8mb4_unicode_520_ci,
  `og_image_custom_fields` text COLLATE utf8mb4_unicode_520_ci,
  `og_video` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `og_custom_url` text COLLATE utf8mb4_unicode_520_ci,
  `og_article_section` text COLLATE utf8mb4_unicode_520_ci,
  `og_article_tags` text COLLATE utf8mb4_unicode_520_ci,
  `twitter_use_og` tinyint(1) DEFAULT '0',
  `twitter_card` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT 'default',
  `twitter_image_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT 'default',
  `twitter_image_url` text COLLATE utf8mb4_unicode_520_ci,
  `twitter_image_custom_url` text COLLATE utf8mb4_unicode_520_ci,
  `twitter_image_custom_fields` text COLLATE utf8mb4_unicode_520_ci,
  `twitter_title` text COLLATE utf8mb4_unicode_520_ci,
  `twitter_description` text COLLATE utf8mb4_unicode_520_ci,
  `robots_default` tinyint(1) NOT NULL DEFAULT '1',
  `robots_noindex` tinyint(1) NOT NULL DEFAULT '0',
  `robots_noarchive` tinyint(1) NOT NULL DEFAULT '0',
  `robots_nosnippet` tinyint(1) NOT NULL DEFAULT '0',
  `robots_nofollow` tinyint(1) NOT NULL DEFAULT '0',
  `robots_noimageindex` tinyint(1) NOT NULL DEFAULT '0',
  `robots_noodp` tinyint(1) NOT NULL DEFAULT '0',
  `robots_notranslate` tinyint(1) NOT NULL DEFAULT '0',
  `robots_max_snippet` int(11) DEFAULT NULL,
  `robots_max_videopreview` int(11) DEFAULT NULL,
  `robots_max_imagepreview` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT 'large',
  `priority` tinytext COLLATE utf8mb4_unicode_520_ci,
  `frequency` tinytext COLLATE utf8mb4_unicode_520_ci,
  `images` longtext COLLATE utf8mb4_unicode_520_ci,
  `videos` longtext COLLATE utf8mb4_unicode_520_ci,
  `video_scan_date` datetime DEFAULT NULL,
  `local_seo` longtext COLLATE utf8mb4_unicode_520_ci,
  `created` datetime NOT NULL,
  `updated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `ndx_aioseo_terms_term_id` (`term_id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_aioseo_terms`
--

LOCK TABLES `cuB_aioseo_terms` WRITE;
/*!40000 ALTER TABLE `cuB_aioseo_terms` DISABLE KEYS */;
INSERT INTO `cuB_aioseo_terms` VALUES (1,15,NULL,NULL,NULL,NULL,NULL,NULL,'article','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,'2021-12-13 06:44:38','2021-12-13 06:44:38'),(2,18,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,'2021-12-13 07:52:15','2021-12-13 07:52:15'),(3,17,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,'2021-12-13 07:52:15','2021-12-13 07:52:15'),(4,16,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,'2021-12-13 07:52:15','2021-12-13 07:52:15'),(5,14,NULL,NULL,NULL,NULL,NULL,NULL,'article','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,'2021-12-13 07:52:15','2021-12-13 07:52:15'),(6,13,NULL,NULL,NULL,NULL,NULL,NULL,'article','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,'2021-12-13 07:52:15','2021-12-13 07:52:15'),(7,9,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,'2021-12-13 07:52:15','2021-12-13 07:52:15'),(8,8,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,'2021-12-13 07:52:15','2021-12-13 07:52:15'),(9,7,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,'2021-12-13 07:52:15','2021-12-13 07:52:15'),(10,6,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,'2021-12-13 07:52:15','2021-12-13 07:52:15'),(11,5,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,'2021-12-13 07:52:15','2021-12-13 07:52:15'),(12,4,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,'2021-12-13 07:52:15','2021-12-13 07:52:15'),(13,3,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,'2021-12-13 07:52:15','2021-12-13 07:52:15'),(14,2,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,'2021-12-13 07:52:15','2021-12-13 07:52:15'),(15,1,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,'2021-12-13 07:52:15','2021-12-13 07:52:15'),(16,19,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,0,0,NULL,NULL,'large','default','default',NULL,NULL,NULL,NULL,'2022-08-11 19:18:56','2022-08-11 19:18:56'),(17,20,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,0,0,NULL,NULL,'large','default','default',NULL,NULL,NULL,NULL,'2022-08-11 19:30:23','2022-08-11 19:30:23'),(18,12,NULL,NULL,NULL,NULL,NULL,NULL,'article','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-16 15:26:09','2022-08-16 15:26:09'),(19,10,NULL,NULL,NULL,NULL,NULL,NULL,'article','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-16 15:40:12','2022-08-16 15:40:12');
/*!40000 ALTER TABLE `cuB_aioseo_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_commentmeta`
--

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

--
-- Dumping data for table `cuB_commentmeta`
--

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

--
-- Table structure for table `cuB_comments`
--

DROP TABLE IF EXISTS `cuB_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_comments`
--

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

--
-- Table structure for table `cuB_depicter_documents`
--

DROP TABLE IF EXISTS `cuB_depicter_documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_depicter_documents` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `slug` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `type` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'custom',
  `author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `sections_count` mediumint(9) NOT NULL DEFAULT '0',
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  `thumbnail` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'draft',
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `created_at` (`created_at`),
  KEY `slug` (`slug`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_depicter_documents`
--

LOCK TABLES `cuB_depicter_documents` WRITE;
/*!40000 ALTER TABLE `cuB_depicter_documents` DISABLE KEYS */;
INSERT INTO `cuB_depicter_documents` VALUES (1,'Client Resources - Test','document-1','custom',1,4,'2022-09-12 16:48:49','2022-09-12 18:59:09','','{\"lastId\":75,\"sectionsList\":[\"section-16\",\"section-50\",\"section-60\",\"section-68\"],\"elements\":{\"element-18\":{\"section\":\"section-16\",\"parent\":\"section-16\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"size\":{\"default\":{\"width\":{\"unit\":\"px\",\"value\":274},\"height\":{\"unit\":\"px\",\"value\":113}},\"tablet\":{\"width\":{\"unit\":\"px\",\"value\":150},\"height\":\"auto\"},\"mobile\":{\"width\":{\"unit\":\"px\",\"value\":133.046999999999997044142219237983226776123046875},\"height\":{\"value\":40,\"unit\":\"px\"}}},\"children\":[],\"type\":\"button\",\"styles\":{\"typography\":{\"default\":{\"font\":\"Playfair Display SC\",\"fontSize\":28,\"fontVariant\":\"regular\",\"color\":\"#FFF\",\"align\":\"center\"},\"mobile\":{\"font\":\"Roboto\",\"fontSize\":14,\"fontVariant\":\"regular\",\"color\":\"#FFF\",\"align\":\"center\"}},\"padding\":{\"default\":{\"top\":{\"value\":11,\"unit\":\"px\"},\"right\":{\"value\":25,\"unit\":\"px\"},\"bottom\":{\"value\":10,\"unit\":\"px\"},\"left\":{\"value\":27,\"unit\":\"px\"},\"link\":false},\"mobile\":{\"top\":{\"value\":10,\"unit\":\"px\"},\"right\":{\"value\":10,\"unit\":\"px\"},\"bottom\":{\"value\":10,\"unit\":\"px\"},\"left\":{\"value\":10,\"unit\":\"px\"},\"link\":true}},\"backgroundColor\":{\"default\":\"rgba(33, 24, 101, 0.7)\"},\"corner\":{\"default\":{\"topLeft\":{\"value\":20,\"unit\":\"px\"},\"topRight\":{\"value\":20,\"unit\":\"px\"},\"bottomRight\":{\"value\":20,\"unit\":\"px\"},\"bottomLeft\":{\"value\":20,\"unit\":\"px\"},\"link\":true}},\"hover\":{\"backgroundColor\":{\"default\":\"#2e5591\"},\"typography\":{\"default\":{\"color\":\"#ffffff\"}},\"enable\":{\"default\":true},\"transition\":{\"default\":{\"enable\":true,\"timingFunction\":\"ease\",\"duration\":0.5}},\"transform\":{\"default\":{\"scale\":1.0500000000000000444089209850062616169452667236328125}}},\"transform\":{\"default\":{},\"tablet\":{},\"mobile\":{}},\"boxShadow\":{\"default\":{\"enable\":true,\"color\":\"#000\",\"inset\":false,\"offsetX\":10,\"offsetY\":10,\"blur\":25,\"spread\":4}}},\"options\":{\"content\":\"View Practice Aids\"},\"position\":{\"default\":{\"x\":{\"value\":-383,\"unit\":\"px\"},\"y\":{\"value\":108,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false},\"tablet\":{\"x\":{\"value\":-354,\"unit\":\"px\"},\"y\":{\"value\":132,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false},\"mobile\":{\"x\":{\"value\":-4,\"unit\":\"px\"},\"y\":{\"value\":266,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false}},\"depth\":2,\"id\":\"element-18\",\"name\":\"Copy of Element 4\",\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"moveAndTransform\",\"params\":{\"direction\":\"top\",\"easing\":\"easeOutQuart\",\"duration\":2200,\"movement\":0,\"scale\":1.350000000000000088817841970012523233890533447265625,\"delay\":2500},\"phase\":\"in\"}}}},\"responsiveScale\":{\"default\":true},\"actions\":{\"5CDPTUrRVPTR067undHhO\":{\"type\":\"openURL\",\"trigger\":\"click\",\"label\":\"Go to URL\",\"options\":{\"path\":\"https:\\/\\/thelomad.com/getmad.today\\/client-resources\\/workers-compensation-practice-aids\\/\",\"target\":\"_blank\"}}}},\"element-21\":{\"section\":\"section-16\",\"parent\":\"section-16\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"size\":{\"default\":{\"width\":{\"unit\":\"px\",\"value\":500},\"height\":\"auto\"},\"tablet\":{\"width\":{\"unit\":\"px\",\"value\":293.14100000000001955413608811795711517333984375},\"height\":\"auto\"},\"mobile\":{\"width\":{\"unit\":\"px\",\"value\":256},\"height\":\"auto\"}},\"children\":[],\"type\":\"text\",\"styles\":{\"backgroundColor\":{\"default\":\"rgba(81, 80, 79, 0.75)\"},\"typography\":{\"default\":{\"font\":\"Playfair Display\",\"lineHeight\":145,\"fontSize\":28,\"fontVariant\":\"regular\",\"color\":\"#ffffff\"},\"mobile\":{\"font\":\"Raleway\",\"lineHeight\":145,\"fontSize\":14,\"fontVariant\":\"regular\",\"color\":\"#ffffff\",\"align\":\"center\"}},\"transform\":{\"default\":{},\"tablet\":{},\"mobile\":{}},\"padding\":{\"default\":{\"top\":{\"value\":0,\"unit\":\"px\"},\"right\":{\"value\":0,\"unit\":\"px\"},\"bottom\":{\"value\":0,\"unit\":\"px\"},\"left\":{\"value\":80,\"unit\":\"px\"},\"link\":false}}},\"options\":{\"content\":\"Current data related to PPD caps, max benefit rates and SLU\\/PHP\",\"tag\":\"p\"},\"position\":{\"default\":{\"x\":{\"value\":-400,\"unit\":\"px\"},\"y\":{\"value\":-19,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false},\"tablet\":{\"x\":{\"value\":-283,\"unit\":\"px\"},\"y\":{\"value\":57,\"unit\":\"px\"},\"origin\":\"mc\"},\"mobile\":{\"x\":{\"value\":-4,\"unit\":\"px\"},\"y\":{\"value\":198,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false}},\"depth\":3,\"id\":\"element-21\",\"name\":\"Copy of Element 7\",\"responsiveScale\":{\"default\":true},\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"move\",\"params\":{\"direction\":\"left\",\"easing\":\"easeInOutExpo\",\"duration\":2500,\"movement\":0,\"delay\":500},\"phase\":\"in\"}}}}},\"element-43\":{\"section\":\"foreground\",\"parent\":\"foreground\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"children\":[],\"type\":\"bullet\",\"size\":{\"default\":{\"width\":\"auto\",\"height\":\"auto\"},\"mobile\":{\"width\":\"auto\",\"height\":\"auto\"}},\"styles\":{\"transform\":{\"default\":{},\"mobile\":{}}},\"options\":{\"bullet\":{\"styles\":{\"color\":{\"default\":\"rgba(255, 255, 255, 0.3)\"},\"activeColor\":{\"default\":\"#ffffff\"},\"size\":{\"default\":{\"width\":{\"value\":15,\"unit\":\"px\"},\"height\":{\"value\":6,\"unit\":\"px\"}}},\"space\":{\"default\":{\"right\":{\"value\":5,\"unit\":\"px\"}}},\"corner\":{\"default\":{\"topRight\":{\"value\":3,\"unit\":\"px\"},\"topLeft\":{\"value\":3,\"unit\":\"px\"},\"bottomRight\":{\"value\":3,\"unit\":\"px\"},\"bottomLeft\":{\"value\":3,\"unit\":\"px\"}}}},\"hover\":{\"activeColor\":{\"default\":\"rgba(0,0,0,1)\"}}}},\"position\":{\"default\":{\"x\":{\"value\":-81,\"unit\":\"px\"},\"y\":{\"value\":382,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":true},\"mobile\":{\"x\":{\"value\":0,\"unit\":\"px\"},\"y\":{\"value\":341,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":true}},\"depth\":2,\"id\":\"element-43\",\"name\":\"Bullet 2\"},\"element-49\":{\"section\":\"section-16\",\"parent\":\"section-16\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"children\":[],\"type\":\"text\",\"size\":{\"default\":{\"width\":{\"unit\":\"px\",\"value\":800},\"height\":\"auto\"}},\"styles\":{\"backgroundColor\":{\"default\":\"rgba(33, 24, 101, 0.75)\"},\"typography\":{\"default\":{\"font\":\"Playfair Display SC\",\"lineHeight\":120,\"color\":\"#ffffff\",\"fontSize\":68,\"fontVariant\":\"regular\",\"align\":\"left\"}},\"transform\":{\"default\":{}},\"textShadow\":{\"default\":{\"enable\":false,\"color\":\"rgba(0,0,0,0.5)\",\"offsetX\":2,\"offsetY\":2,\"blur\":5}},\"backgroundBlur\":{\"default\":{\"enable\":true,\"blur\":6,\"brightness\":100,\"opacity\":100}},\"padding\":{\"default\":{\"top\":{\"value\":0,\"unit\":\"px\"},\"right\":{\"value\":0,\"unit\":\"px\"},\"bottom\":{\"value\":0,\"unit\":\"px\"},\"left\":{\"value\":80,\"unit\":\"px\"},\"link\":false}},\"corner\":{\"default\":{\"link\":true,\"topLeft\":{\"value\":1,\"unit\":\"px\"},\"topRight\":{\"value\":1,\"unit\":\"px\"},\"bottomRight\":{\"value\":1,\"unit\":\"px\"},\"bottomLeft\":{\"value\":1,\"unit\":\"px\"}}},\"boxShadow\":{\"default\":{\"enable\":true,\"color\":\"#000\",\"inset\":false,\"offsetX\":10,\"offsetY\":10,\"blur\":25,\"spread\":5}}},\"options\":{\"content\":\"Workers\' Compensation \\nPractice Aids\",\"tag\":\"h2\"},\"position\":{\"default\":{\"x\":{\"value\":0,\"unit\":\"px\"},\"y\":{\"value\":-213,\"unit\":\"px\"},\"origin\":\"ml\",\"autoOrigin\":true}},\"depth\":3,\"id\":\"element-49\",\"name\":\"Text 8\",\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"moveAndTransform\",\"params\":{\"direction\":\"left\",\"easing\":\"easeOutQuart\",\"duration\":2200,\"movement\":0,\"scale\":1.600000000000000088817841970012523233890533447265625,\"delay\":250,\"transformOrigin\":{\"x\":\"center\",\"y\":\"top\",\"z\":0}},\"phase\":\"in\"}}}}},\"element-52\":{\"section\":\"section-50\",\"parent\":\"section-50\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"children\":[],\"type\":\"text\",\"size\":{\"default\":{\"width\":{\"unit\":\"px\",\"value\":800},\"height\":\"auto\"}},\"styles\":{\"backgroundColor\":{\"default\":\"rgba(33, 24, 101, 0.7)\"},\"typography\":{\"default\":{\"font\":\"Playfair Display SC\",\"lineHeight\":120,\"color\":\"#ffffff\",\"fontSize\":68,\"fontVariant\":\"regular\",\"align\":\"right\"}},\"transform\":{\"default\":{}},\"textShadow\":{\"default\":{\"enable\":true,\"color\":\"rgba(0,0,0,0.5)\",\"offsetX\":2,\"offsetY\":2,\"blur\":5}},\"boxShadow\":{\"default\":{\"enable\":true,\"color\":\"#000\",\"inset\":false,\"offsetX\":10,\"offsetY\":10,\"blur\":25,\"spread\":5}},\"backgroundBlur\":{\"default\":{\"enable\":true,\"blur\":4,\"brightness\":100,\"opacity\":80}},\"padding\":{\"default\":{\"top\":{\"value\":0,\"unit\":\"px\"},\"right\":{\"value\":75,\"unit\":\"px\"},\"bottom\":{\"value\":0,\"unit\":\"px\"},\"left\":{\"value\":0,\"unit\":\"px\"},\"link\":false}}},\"options\":{\"content\":\"LOMAD News,\\nEvents & Articles\",\"tag\":\"h2\"},\"position\":{\"default\":{\"x\":{\"value\":3,\"unit\":\"px\"},\"y\":{\"value\":-168,\"unit\":\"px\"},\"origin\":\"mr\",\"autoOrigin\":true}},\"depth\":1,\"id\":\"element-52\",\"name\":\"Text 9\",\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"moveAndTransform\",\"params\":{\"direction\":\"left\",\"easing\":\"easeOutQuart\",\"duration\":2200,\"movement\":0,\"scale\":1.600000000000000088817841970012523233890533447265625,\"delay\":250,\"transformOrigin\":{\"x\":\"center\",\"y\":\"top\",\"z\":0}},\"phase\":\"in\"}}}}},\"element-53\":{\"section\":\"section-50\",\"parent\":\"section-50\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"size\":{\"default\":{\"width\":{\"unit\":\"px\",\"value\":500},\"height\":\"auto\"},\"tablet\":{\"width\":{\"unit\":\"px\",\"value\":293.14100000000001955413608811795711517333984375},\"height\":\"auto\"},\"mobile\":{\"width\":{\"unit\":\"px\",\"value\":256},\"height\":\"auto\"}},\"type\":\"text\",\"styles\":{\"backgroundColor\":{\"default\":\"rgba(98, 98, 98, 0.75)\"},\"typography\":{\"default\":{\"font\":\"Playfair Display\",\"lineHeight\":145,\"fontSize\":22,\"fontVariant\":\"regular\",\"color\":\"#ffffff\",\"align\":\"right\"},\"mobile\":{\"font\":\"Raleway\",\"lineHeight\":145,\"fontSize\":14,\"fontVariant\":\"regular\",\"color\":\"#ffffff\",\"align\":\"center\"}},\"transform\":{\"default\":{},\"tablet\":{},\"mobile\":{}},\"padding\":{\"default\":{\"top\":{\"value\":0,\"unit\":\"px\"},\"right\":{\"value\":100,\"unit\":\"px\"},\"bottom\":{\"value\":0,\"unit\":\"px\"},\"left\":{\"value\":0,\"unit\":\"px\"},\"link\":false}}},\"options\":{\"content\":\"The latest updates from our firm and \\npublications related to recent updates \\nin worker\'s compensation law\",\"tag\":\"p\"},\"position\":{\"default\":{\"x\":{\"value\":3,\"unit\":\"px\"},\"y\":{\"value\":-21,\"unit\":\"px\"},\"origin\":\"mr\",\"autoOrigin\":true},\"tablet\":{\"x\":{\"value\":-283,\"unit\":\"px\"},\"y\":{\"value\":57,\"unit\":\"px\"},\"origin\":\"mc\"},\"mobile\":{\"x\":{\"value\":-4,\"unit\":\"px\"},\"y\":{\"value\":198,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false}},\"responsiveScale\":{\"default\":true},\"depth\":1,\"id\":\"element-53\",\"name\":\"Text 10\",\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"move\",\"params\":{\"direction\":\"left\",\"easing\":\"easeInOutExpo\",\"duration\":2500,\"movement\":0,\"delay\":500},\"phase\":\"in\"}}}}},\"element-54\":{\"section\":\"section-50\",\"parent\":\"section-50\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"size\":{\"default\":{\"width\":{\"value\":274,\"unit\":\"px\"},\"height\":{\"value\":113,\"unit\":\"px\"}}},\"type\":\"button\",\"styles\":{\"typography\":{\"default\":{\"font\":\"Playfair Display SC\",\"fontSize\":28,\"fontVariant\":\"regular\",\"color\":\"#FFF\",\"align\":\"center\"},\"mobile\":{\"font\":\"Roboto\",\"fontSize\":14,\"fontVariant\":\"regular\",\"color\":\"#FFF\",\"align\":\"center\"}},\"padding\":{\"default\":{\"top\":{\"value\":11,\"unit\":\"px\"},\"right\":{\"value\":25,\"unit\":\"px\"},\"bottom\":{\"value\":10,\"unit\":\"px\"},\"left\":{\"value\":27,\"unit\":\"px\"},\"link\":false},\"mobile\":{\"top\":{\"value\":10,\"unit\":\"px\"},\"right\":{\"value\":10,\"unit\":\"px\"},\"bottom\":{\"value\":10,\"unit\":\"px\"},\"left\":{\"value\":10,\"unit\":\"px\"},\"link\":true}},\"backgroundColor\":{\"default\":\"rgba(33, 24, 101, 0.7)\"},\"corner\":{\"default\":{\"topLeft\":{\"value\":20,\"unit\":\"px\"},\"topRight\":{\"value\":20,\"unit\":\"px\"},\"bottomRight\":{\"value\":20,\"unit\":\"px\"},\"bottomLeft\":{\"value\":20,\"unit\":\"px\"},\"link\":true}},\"hover\":{\"backgroundColor\":{\"default\":\"#2e5591\"},\"typography\":{\"default\":{\"color\":\"#ffffff\"}},\"enable\":{\"default\":true},\"transition\":{\"default\":{\"enable\":true,\"timingFunction\":\"ease\",\"duration\":0.5}},\"opacity\":{\"default\":0.84999999999999997779553950749686919152736663818359375},\"transform\":{\"default\":{\"scale\":1.0500000000000000444089209850062616169452667236328125}}},\"transform\":{\"default\":{},\"tablet\":{},\"mobile\":{}},\"boxShadow\":{\"default\":{\"enable\":true,\"color\":\"#000\",\"inset\":false,\"offsetX\":10,\"offsetY\":10,\"blur\":25,\"spread\":4}}},\"options\":{\"content\":\"View collection\"},\"position\":{\"default\":{\"x\":{\"value\":103,\"unit\":\"px\"},\"y\":{\"value\":100,\"unit\":\"px\"},\"origin\":\"mr\",\"autoOrigin\":true},\"tablet\":{\"x\":{\"value\":-354,\"unit\":\"px\"},\"y\":{\"value\":132,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false},\"mobile\":{\"x\":{\"value\":-4,\"unit\":\"px\"},\"y\":{\"value\":266,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false}},\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"moveAndTransform\",\"params\":{\"direction\":\"top\",\"easing\":\"easeOutQuart\",\"duration\":1800,\"movement\":0,\"scale\":1.350000000000000088817841970012523233890533447265625,\"delay\":2500},\"phase\":\"in\"}}}},\"responsiveScale\":{\"default\":true},\"depth\":1,\"id\":\"element-54\",\"name\":\"Button 5\",\"actions\":{\"eJshOWjHi3T0h0hUicoMu\":{\"type\":\"openURL\",\"trigger\":\"click\",\"label\":\"Go to URL\",\"options\":{\"path\":\"https:\\/\\/thelomad.com/getmad.today\\/news-events-articles\\/\",\"target\":\"_blank\"}}}},\"element-58\":{\"section\":\"foreground\",\"parent\":\"foreground\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"children\":[],\"type\":\"arrow\",\"size\":{\"default\":{\"width\":{\"value\":80,\"unit\":\"px\"},\"height\":{\"value\":80,\"unit\":\"px\"}}},\"styles\":{\"svg\":{\"default\":{\"fill\":\"#211865\"}},\"corner\":{\"default\":{\"topRight\":{\"value\":5,\"unit\":\"px\"},\"topLeft\":{\"value\":5,\"unit\":\"px\"},\"bottomRight\":{\"value\":5,\"unit\":\"px\"},\"bottomLeft\":{\"value\":5,\"unit\":\"px\"}}},\"backgroundColor\":{\"default\":\"rgba(216, 216, 216, 0.5)\"},\"transform\":{\"default\":{}},\"boxShadow\":{\"default\":{\"enable\":true,\"color\":\"#000\",\"inset\":false,\"offsetX\":10,\"offsetY\":10,\"blur\":25,\"spread\":0}},\"backgroundBlur\":{\"default\":{\"enable\":true,\"blur\":5,\"brightness\":100,\"opacity\":100}}},\"actions\":{\"QKnQVzqNwHQHtinJ31fWY\":{\"type\":\"gotoSection\",\"trigger\":\"click\",\"label\":\"Go to slide\",\"options\":{\"type\":\"previous\",\"to\":\"\"}}},\"options\":{\"content\":\"<svg width=\\\"8px\\\" height=\\\"14px\\\" viewBox=\\\"0 0 15.556 26.871\\\" style=\\\"position:relative; left:-1px;\\\"><path id=\\\"arrow_10L\\\" d=\\\"M0,13.438H0L13.436,0l2.12,2.12L4.24,13.437,15.557,24.752l-2.121,2.12Z\\\" transform=\\\"translate(0 -0.001)\\\"\\/><\\/svg>\"},\"position\":{\"default\":{\"x\":{\"value\":-47,\"unit\":\"px\"},\"y\":{\"value\":-19,\"unit\":\"px\"},\"origin\":\"ml\",\"autoOrigin\":true}},\"depth\":3,\"id\":\"element-58\",\"name\":\"Arrow 5\",\"keepAspectRatio\":true},\"element-59\":{\"section\":\"foreground\",\"parent\":\"foreground\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"children\":[],\"type\":\"arrow\",\"size\":{\"default\":{\"width\":{\"value\":80,\"unit\":\"px\"},\"height\":{\"value\":80,\"unit\":\"px\"}}},\"styles\":{\"svg\":{\"default\":{\"fill\":\"#211865\"}},\"corner\":{\"default\":{\"topRight\":{\"value\":5,\"unit\":\"px\"},\"topLeft\":{\"value\":5,\"unit\":\"px\"},\"bottomRight\":{\"value\":5,\"unit\":\"px\"},\"bottomLeft\":{\"value\":5,\"unit\":\"px\"}}},\"backgroundColor\":{\"default\":\"rgba(216, 216, 216, 0.5)\"},\"transform\":{\"default\":{}},\"boxShadow\":{\"default\":{\"enable\":true,\"color\":\"#000\",\"inset\":false,\"offsetX\":10,\"offsetY\":10,\"blur\":25,\"spread\":0}},\"backgroundBlur\":{\"default\":{\"enable\":true,\"blur\":4,\"brightness\":100,\"opacity\":100}}},\"actions\":{\"KAfxRDNZTiPi9K2Mt113I\":{\"type\":\"gotoSection\",\"trigger\":\"click\",\"label\":\"Go to slide\",\"options\":{\"type\":\"next\",\"to\":\"\"}}},\"options\":{\"content\":\"<svg width=\\\"8px\\\" height=\\\"14px\\\" viewBox=\\\"0 0 15.557 26.871\\\" style=\\\"position:relative; right:-1px;\\\"><path id=\\\"arrow_10R\\\" d=\\\"M0,24.752,11.317,13.437,0,2.121,2.121,0,15.557,13.435h0l0,0L2.122,26.872Z\\\" transform=\\\"translate(-0.001 -0.001)\\\" \\/><\\/svg>\"},\"position\":{\"default\":{\"x\":{\"value\":10,\"unit\":\"px\"},\"y\":{\"value\":-21,\"unit\":\"px\"},\"origin\":\"mr\",\"autoOrigin\":true}},\"depth\":1,\"id\":\"element-59\",\"name\":\"Arrow 6\",\"keepAspectRatio\":true},\"element-64\":{\"section\":\"section-60\",\"parent\":\"section-60\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"type\":\"image\",\"size\":{\"default\":{\"width\":{\"value\":900,\"unit\":\"px\"},\"height\":{\"value\":170.79069767441859539758297614753246307373046875,\"unit\":\"px\"}}},\"options\":{\"source\":\"50041\"},\"keepAspectRatio\":true,\"position\":{\"default\":{\"x\":{\"value\":5,\"unit\":\"px\"},\"y\":{\"value\":-188,\"unit\":\"px\"},\"origin\":\"ml\",\"autoOrigin\":true}},\"depth\":2,\"id\":\"element-64\",\"name\":\"Image 1\",\"cropData\":{\"default\":{\"mediaSize\":{\"width\":900,\"height\":171}}},\"styles\":{\"transform\":{\"default\":{}},\"boxShadow\":{\"default\":{\"enable\":false,\"color\":\"#000\",\"inset\":false,\"offsetX\":10,\"offsetY\":10,\"blur\":25,\"spread\":0}}},\"animation\":{\"in\":{\"data\":{\"default\":{\"params\":{\"easing\":\"easeOutQuart\",\"transformOrigin\":{\"x\":\"center\",\"y\":\"top\",\"z\":0},\"direction\":\"left\",\"duration\":2200,\"movement\":0,\"scale\":1.600000000000000088817841970012523233890533447265625,\"delay\":100},\"type\":\"moveAndTransform\",\"phase\":\"in\"}}}}},\"element-65\":{\"section\":\"section-60\",\"parent\":\"section-60\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"size\":{\"default\":{\"width\":{\"unit\":\"px\",\"value\":500},\"height\":\"auto\"},\"tablet\":{\"width\":{\"unit\":\"px\",\"value\":293.14100000000001955413608811795711517333984375},\"height\":\"auto\"},\"mobile\":{\"width\":{\"unit\":\"px\",\"value\":256},\"height\":\"auto\"}},\"type\":\"text\",\"styles\":{\"backgroundColor\":{\"default\":\"rgba(81, 80, 79, 0.75)\"},\"typography\":{\"default\":{\"font\":\"Playfair Display\",\"lineHeight\":145,\"fontSize\":28,\"fontVariant\":\"regular\",\"color\":\"#ffffff\"},\"mobile\":{\"font\":\"Raleway\",\"lineHeight\":145,\"fontSize\":14,\"fontVariant\":\"regular\",\"color\":\"#ffffff\",\"align\":\"center\"}},\"transform\":{\"default\":{},\"tablet\":{},\"mobile\":{}},\"padding\":{\"default\":{\"top\":{\"value\":0,\"unit\":\"px\"},\"right\":{\"value\":0,\"unit\":\"px\"},\"bottom\":{\"value\":0,\"unit\":\"px\"},\"left\":{\"value\":80,\"unit\":\"px\"},\"link\":false}}},\"options\":{\"content\":\"Our firm\'s exclusive video broadcasting platform\",\"tag\":\"p\"},\"position\":{\"default\":{\"x\":{\"value\":0,\"unit\":\"px\"},\"y\":{\"value\":-18,\"unit\":\"px\"},\"origin\":\"ml\",\"autoOrigin\":true},\"tablet\":{\"x\":{\"value\":-283,\"unit\":\"px\"},\"y\":{\"value\":57,\"unit\":\"px\"},\"origin\":\"mc\"},\"mobile\":{\"x\":{\"value\":-4,\"unit\":\"px\"},\"y\":{\"value\":198,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false}},\"responsiveScale\":{\"default\":true},\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"move\",\"params\":{\"direction\":\"left\",\"easing\":\"easeInOutExpo\",\"duration\":2500,\"movement\":0,\"delay\":500},\"phase\":\"in\"}}}},\"depth\":3,\"id\":\"element-65\",\"name\":\"Text 11\"},\"element-66\":{\"section\":\"section-60\",\"parent\":\"section-60\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"size\":{\"default\":{\"width\":{\"value\":274,\"unit\":\"px\"},\"height\":{\"value\":113,\"unit\":\"px\"}}},\"type\":\"button\",\"styles\":{\"typography\":{\"default\":{\"font\":\"Playfair Display SC\",\"fontSize\":28,\"fontVariant\":\"regular\",\"color\":\"#FFF\",\"align\":\"center\"},\"mobile\":{\"font\":\"Roboto\",\"fontSize\":14,\"fontVariant\":\"regular\",\"color\":\"#FFF\",\"align\":\"center\"}},\"padding\":{\"default\":{\"top\":{\"value\":11,\"unit\":\"px\"},\"right\":{\"value\":25,\"unit\":\"px\"},\"bottom\":{\"value\":10,\"unit\":\"px\"},\"left\":{\"value\":27,\"unit\":\"px\"},\"link\":false},\"mobile\":{\"top\":{\"value\":10,\"unit\":\"px\"},\"right\":{\"value\":10,\"unit\":\"px\"},\"bottom\":{\"value\":10,\"unit\":\"px\"},\"left\":{\"value\":10,\"unit\":\"px\"},\"link\":true}},\"backgroundColor\":{\"default\":\"rgba(33, 24, 101, 0.7)\"},\"corner\":{\"default\":{\"topLeft\":{\"value\":20,\"unit\":\"px\"},\"topRight\":{\"value\":20,\"unit\":\"px\"},\"bottomRight\":{\"value\":20,\"unit\":\"px\"},\"bottomLeft\":{\"value\":20,\"unit\":\"px\"},\"link\":true}},\"hover\":{\"backgroundColor\":{\"default\":\"#2e5591\"},\"typography\":{\"default\":{\"color\":\"#ffffff\"}},\"enable\":{\"default\":true},\"transition\":{\"default\":{\"enable\":true,\"timingFunction\":\"ease\",\"duration\":0.5}},\"transform\":{\"default\":{\"scale\":1.0500000000000000444089209850062616169452667236328125}}},\"transform\":{\"default\":{},\"tablet\":{},\"mobile\":{}},\"boxShadow\":{\"default\":{\"enable\":true,\"color\":\"#000\",\"inset\":false,\"offsetX\":10,\"offsetY\":10,\"blur\":25,\"spread\":4}}},\"options\":{\"content\":\"Explore LOMADtv\"},\"position\":{\"default\":{\"x\":{\"value\":130,\"unit\":\"px\"},\"y\":{\"value\":107,\"unit\":\"px\"},\"origin\":\"ml\",\"autoOrigin\":true},\"tablet\":{\"x\":{\"value\":-354,\"unit\":\"px\"},\"y\":{\"value\":132,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false},\"mobile\":{\"x\":{\"value\":-4,\"unit\":\"px\"},\"y\":{\"value\":266,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false}},\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"moveAndTransform\",\"params\":{\"direction\":\"top\",\"easing\":\"easeOutQuart\",\"duration\":2200,\"movement\":0,\"scale\":1.350000000000000088817841970012523233890533447265625,\"delay\":2500},\"phase\":\"in\"}}}},\"responsiveScale\":{\"default\":true},\"actions\":{\"5CDPTUrRVPTR067undHhO\":{\"type\":\"openURL\",\"trigger\":\"click\",\"label\":\"Go to URL\",\"options\":{\"path\":\"https:\\/\\/thelomad.com/getmad.today\\/client-resources\\/workers-compensation-practice-aids\\/\",\"target\":\"_blank\"}}},\"depth\":4,\"id\":\"element-66\",\"name\":\"Button 6\"},\"element-67\":{\"section\":\"section-60\",\"parent\":\"section-60\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"children\":[],\"type\":\"shape\",\"size\":{\"default\":{\"width\":{\"value\":1000,\"unit\":\"px\"},\"height\":{\"value\":200,\"unit\":\"px\"}}},\"styles\":{\"backgroundColor\":{\"default\":\"rgba(33, 24, 101, 0.7)\"},\"transform\":{\"default\":{}}},\"options\":{},\"position\":{\"default\":{\"x\":{\"value\":0,\"unit\":\"px\"},\"y\":{\"value\":-199,\"unit\":\"px\"},\"origin\":\"ml\",\"autoOrigin\":true}},\"depth\":1,\"id\":\"element-67\",\"name\":\"Shape 1\",\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"moveAndTransform\",\"params\":{\"direction\":\"left\",\"easing\":\"easeOutQuart\",\"duration\":2200,\"movement\":0,\"scale\":1.600000000000000088817841970012523233890533447265625,\"delay\":250,\"transformOrigin\":{\"x\":\"center\",\"y\":\"top\",\"z\":0}},\"phase\":\"in\"}}}}},\"element-70\":{\"section\":\"section-68\",\"parent\":\"section-68\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"size\":{\"default\":{\"width\":{\"unit\":\"px\",\"value\":500},\"height\":\"auto\"},\"tablet\":{\"width\":{\"unit\":\"px\",\"value\":293.14100000000001955413608811795711517333984375},\"height\":\"auto\"},\"mobile\":{\"width\":{\"unit\":\"px\",\"value\":256},\"height\":\"auto\"}},\"type\":\"text\",\"styles\":{\"backgroundColor\":{\"default\":\"rgba(98, 98, 98, 0.75)\"},\"typography\":{\"default\":{\"font\":\"Playfair Display\",\"lineHeight\":145,\"fontSize\":22,\"fontVariant\":\"regular\",\"color\":\"#ffffff\",\"align\":\"right\"},\"mobile\":{\"font\":\"Raleway\",\"lineHeight\":145,\"fontSize\":14,\"fontVariant\":\"regular\",\"color\":\"#ffffff\",\"align\":\"center\"}},\"transform\":{\"default\":{},\"tablet\":{},\"mobile\":{}},\"padding\":{\"default\":{\"top\":{\"value\":0,\"unit\":\"px\"},\"right\":{\"value\":100,\"unit\":\"px\"},\"bottom\":{\"value\":0,\"unit\":\"px\"},\"left\":{\"value\":0,\"unit\":\"px\"},\"link\":false}}},\"options\":{\"content\":\"The latest updates from our firm and \\npublications related to recent updates \\nin worker\'s compensation law\",\"tag\":\"p\"},\"position\":{\"default\":{\"x\":{\"value\":3,\"unit\":\"px\"},\"y\":{\"value\":-21,\"unit\":\"px\"},\"origin\":\"mr\",\"autoOrigin\":true},\"tablet\":{\"x\":{\"value\":-283,\"unit\":\"px\"},\"y\":{\"value\":57,\"unit\":\"px\"},\"origin\":\"mc\"},\"mobile\":{\"x\":{\"value\":-4,\"unit\":\"px\"},\"y\":{\"value\":198,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false}},\"responsiveScale\":{\"default\":true},\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"move\",\"params\":{\"direction\":\"left\",\"easing\":\"easeInOutExpo\",\"duration\":2500,\"movement\":0,\"delay\":500},\"phase\":\"in\"}}}},\"depth\":1,\"id\":\"element-70\",\"name\":\"Text 13\"},\"element-71\":{\"section\":\"section-68\",\"parent\":\"section-68\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"size\":{\"default\":{\"width\":{\"value\":274,\"unit\":\"px\"},\"height\":{\"value\":113,\"unit\":\"px\"}}},\"type\":\"button\",\"styles\":{\"typography\":{\"default\":{\"font\":\"Playfair Display SC\",\"fontSize\":28,\"fontVariant\":\"regular\",\"color\":\"#FFF\",\"align\":\"center\"},\"mobile\":{\"font\":\"Roboto\",\"fontSize\":14,\"fontVariant\":\"regular\",\"color\":\"#FFF\",\"align\":\"center\"}},\"padding\":{\"default\":{\"top\":{\"value\":11,\"unit\":\"px\"},\"right\":{\"value\":25,\"unit\":\"px\"},\"bottom\":{\"value\":10,\"unit\":\"px\"},\"left\":{\"value\":27,\"unit\":\"px\"},\"link\":false},\"mobile\":{\"top\":{\"value\":10,\"unit\":\"px\"},\"right\":{\"value\":10,\"unit\":\"px\"},\"bottom\":{\"value\":10,\"unit\":\"px\"},\"left\":{\"value\":10,\"unit\":\"px\"},\"link\":true}},\"backgroundColor\":{\"default\":\"rgba(33, 24, 101, 0.7)\"},\"corner\":{\"default\":{\"topLeft\":{\"value\":20,\"unit\":\"px\"},\"topRight\":{\"value\":20,\"unit\":\"px\"},\"bottomRight\":{\"value\":20,\"unit\":\"px\"},\"bottomLeft\":{\"value\":20,\"unit\":\"px\"},\"link\":true}},\"hover\":{\"backgroundColor\":{\"default\":\"#2e5591\"},\"typography\":{\"default\":{\"color\":\"#ffffff\"}},\"enable\":{\"default\":true},\"transition\":{\"default\":{\"enable\":true,\"timingFunction\":\"ease\",\"duration\":0.5}},\"opacity\":{\"default\":0.84999999999999997779553950749686919152736663818359375},\"transform\":{\"default\":{\"scale\":1.0500000000000000444089209850062616169452667236328125}}},\"transform\":{\"default\":{},\"tablet\":{},\"mobile\":{}},\"boxShadow\":{\"default\":{\"enable\":true,\"color\":\"#000\",\"inset\":false,\"offsetX\":10,\"offsetY\":10,\"blur\":25,\"spread\":4}}},\"options\":{\"content\":\"View collection\"},\"position\":{\"default\":{\"x\":{\"value\":103,\"unit\":\"px\"},\"y\":{\"value\":99,\"unit\":\"px\"},\"origin\":\"mr\",\"autoOrigin\":true},\"tablet\":{\"x\":{\"value\":-354,\"unit\":\"px\"},\"y\":{\"value\":132,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false},\"mobile\":{\"x\":{\"value\":-4,\"unit\":\"px\"},\"y\":{\"value\":266,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false}},\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"moveAndTransform\",\"params\":{\"direction\":\"top\",\"easing\":\"easeOutQuart\",\"duration\":1800,\"movement\":0,\"scale\":1.350000000000000088817841970012523233890533447265625,\"delay\":2500},\"phase\":\"in\"}}}},\"responsiveScale\":{\"default\":true},\"actions\":{\"eJshOWjHi3T0h0hUicoMu\":{\"type\":\"openURL\",\"trigger\":\"click\",\"label\":\"Go to URL\",\"options\":{\"path\":\"https:\\/\\/thelomad.com/getmad.today\\/news-events-articles\\/\",\"target\":\"_blank\"}}},\"depth\":1,\"id\":\"element-71\",\"name\":\"Button 7\"},\"element-72\":{\"section\":\"section-68\",\"parent\":\"section-68\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"type\":\"shape\",\"size\":{\"default\":{\"width\":{\"value\":1000,\"unit\":\"px\"},\"height\":{\"value\":200,\"unit\":\"px\"}}},\"styles\":{\"backgroundColor\":{\"default\":\"rgba(33, 24, 101, 0.7)\"},\"transform\":{\"default\":{}}},\"options\":{},\"position\":{\"default\":{\"x\":{\"value\":3,\"unit\":\"px\"},\"y\":{\"value\":-185,\"unit\":\"px\"},\"origin\":\"mr\",\"autoOrigin\":true}},\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"moveAndTransform\",\"params\":{\"direction\":\"left\",\"easing\":\"easeOutQuart\",\"duration\":2200,\"movement\":0,\"scale\":1.600000000000000088817841970012523233890533447265625,\"delay\":250,\"transformOrigin\":{\"x\":\"center\",\"y\":\"top\",\"z\":0}},\"phase\":\"in\"}}}},\"depth\":1,\"id\":\"element-72\",\"name\":\"Shape 2\"}},\"sections\":{\"section-16\":{\"elements\":[\"element-18\",\"element-21\",\"element-49\"],\"background\":{\"color\":{\"default\":\"#211865\"},\"image\":{\"src\":\"@UnSiEKy2OTRPXdw\"},\"video\":{},\"overlay\":{\"default\":\"rgba(33, 24, 101, 0.15)\"},\"filter\":{\"default\":{\"enable\":false}}},\"options\":{\"slideshowDuration\":15},\"id\":\"section-16\",\"name\":\"Workers\' Compensation Practice Aids\"},\"section-50\":{\"elements\":[\"element-52\",\"element-53\",\"element-54\"],\"background\":{\"color\":{\"default\":\"#FFF\"},\"image\":{\"src\":\"@UnSiYjVa-F9P9kk\",\"fitMode\":{\"default\":\"cover\"}},\"video\":{},\"overlay\":{\"default\":\"rgba(33, 24, 101, 0.15)\"},\"filter\":{\"default\":{\"enable\":false}}},\"options\":{\"customStyle\":\"\"},\"id\":\"section-50\",\"name\":\"News, Events & Articles\",\"wrapperSize\":{}},\"section-60\":{\"elements\":[\"element-64\",\"element-65\",\"element-66\",\"element-67\"],\"background\":{\"color\":{\"default\":\"#FFF\"},\"image\":{\"src\":\"@UnSiVCFxt2yT1eQ\",\"fitMode\":{\"default\":\"cover\"}},\"video\":{},\"overlay\":{\"default\":\"rgba(33, 24, 101, 0.15)\"}},\"options\":{},\"id\":\"section-60\",\"name\":\"Slide 6\"},\"section-68\":{\"elements\":[\"element-70\",\"element-71\",\"element-72\"],\"background\":{\"color\":{\"default\":\"#FFF\"},\"image\":{\"src\":\"@UnSi0FRJ2SCuY4k\"},\"video\":{}},\"options\":{},\"id\":\"section-68\",\"name\":\"Slide 7\"}},\"foregroundElements\":[\"element-43\",\"element-58\",\"element-59\"],\"options\":{\"sectionTransition\":{\"type\":\"transform\",\"options\":{\"basic\":{\"direction\":\"h\"}}},\"navigation\":{\"swipe\":{\"enable\":true,\"mouseSwipe\":true,\"touchSwipe\":true},\"loop\":true,\"keyboardNavigation\":true},\"sectionLayout\":\"fullwidth\",\"wrapperSize\":{\"default\":{\"width\":{\"value\":1300,\"unit\":\"px\"},\"height\":{\"value\":700,\"unit\":\"px\"}},\"tablet\":{\"width\":{\"value\":1024,\"unit\":\"px\"},\"height\":{\"value\":700,\"unit\":\"px\"}},\"mobile\":{\"width\":{\"value\":360,\"unit\":\"px\"},\"height\":{\"value\":740,\"unit\":\"px\"}}},\"wrapperSideSpace\":15,\"loading\":{\"loadingSymbol\":\"puff-dark\",\"lazyLoad\":{\"type\":\"nearby\"}}},\"meta\":{\"createdBy\":\"5.5.0\",\"modifiedBy\":\"1.2.0\"},\"env\":{\"activeSection\":\"section-68\",\"activeBreakpoint\":\"default\",\"selectedElements\":[],\"customFonts\":[\"Open Sans\",\"Roboto\",\"Kaisei Tokumin\",\"Raleway\",\"inherit\",\"Playfair Display\",\"Playfair Display SC\"],\"showHiddenItems\":true}}','publish',0,''),(2,'Untitled Slider','','custom',1,4,'2022-09-12 18:59:09','2022-09-12 18:59:09','','{\"lastId\":75,\"sectionsList\":[\"section-16\",\"section-50\",\"section-60\",\"section-68\"],\"elements\":{\"element-18\":{\"section\":\"section-16\",\"parent\":\"section-16\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"size\":{\"default\":{\"width\":{\"unit\":\"px\",\"value\":274},\"height\":{\"unit\":\"px\",\"value\":113}},\"tablet\":{\"width\":{\"unit\":\"px\",\"value\":150},\"height\":\"auto\"},\"mobile\":{\"width\":{\"unit\":\"px\",\"value\":133.046999999999997044142219237983226776123046875},\"height\":{\"value\":40,\"unit\":\"px\"}}},\"children\":[],\"type\":\"button\",\"styles\":{\"typography\":{\"default\":{\"font\":\"Playfair Display SC\",\"fontSize\":28,\"fontVariant\":\"regular\",\"color\":\"#FFF\",\"align\":\"center\"},\"mobile\":{\"font\":\"Roboto\",\"fontSize\":14,\"fontVariant\":\"regular\",\"color\":\"#FFF\",\"align\":\"center\"}},\"padding\":{\"default\":{\"top\":{\"value\":11,\"unit\":\"px\"},\"right\":{\"value\":25,\"unit\":\"px\"},\"bottom\":{\"value\":10,\"unit\":\"px\"},\"left\":{\"value\":27,\"unit\":\"px\"},\"link\":false},\"mobile\":{\"top\":{\"value\":10,\"unit\":\"px\"},\"right\":{\"value\":10,\"unit\":\"px\"},\"bottom\":{\"value\":10,\"unit\":\"px\"},\"left\":{\"value\":10,\"unit\":\"px\"},\"link\":true}},\"backgroundColor\":{\"default\":\"rgba(33, 24, 101, 0.7)\"},\"corner\":{\"default\":{\"topLeft\":{\"value\":20,\"unit\":\"px\"},\"topRight\":{\"value\":20,\"unit\":\"px\"},\"bottomRight\":{\"value\":20,\"unit\":\"px\"},\"bottomLeft\":{\"value\":20,\"unit\":\"px\"},\"link\":true}},\"hover\":{\"backgroundColor\":{\"default\":\"#2e5591\"},\"typography\":{\"default\":{\"color\":\"#ffffff\"}},\"enable\":{\"default\":true},\"transition\":{\"default\":{\"enable\":true,\"timingFunction\":\"ease\",\"duration\":0.5}},\"transform\":{\"default\":{\"scale\":1.0500000000000000444089209850062616169452667236328125}}},\"transform\":{\"default\":{},\"tablet\":{},\"mobile\":{}},\"boxShadow\":{\"default\":{\"enable\":true,\"color\":\"#000\",\"inset\":false,\"offsetX\":10,\"offsetY\":10,\"blur\":25,\"spread\":4}}},\"options\":{\"content\":\"View Practice Aids\"},\"position\":{\"default\":{\"x\":{\"value\":-383,\"unit\":\"px\"},\"y\":{\"value\":108,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false},\"tablet\":{\"x\":{\"value\":-354,\"unit\":\"px\"},\"y\":{\"value\":132,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false},\"mobile\":{\"x\":{\"value\":-4,\"unit\":\"px\"},\"y\":{\"value\":266,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false}},\"depth\":2,\"id\":\"element-18\",\"name\":\"Copy of Element 4\",\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"moveAndTransform\",\"params\":{\"direction\":\"top\",\"easing\":\"easeOutQuart\",\"duration\":2200,\"movement\":0,\"scale\":1.350000000000000088817841970012523233890533447265625,\"delay\":2500},\"phase\":\"in\"}}}},\"responsiveScale\":{\"default\":true},\"actions\":{\"5CDPTUrRVPTR067undHhO\":{\"type\":\"openURL\",\"trigger\":\"click\",\"label\":\"Go to URL\",\"options\":{\"path\":\"https:\\/\\/thelomad.com/getmad.today\\/client-resources\\/workers-compensation-practice-aids\\/\",\"target\":\"_blank\"}}}},\"element-21\":{\"section\":\"section-16\",\"parent\":\"section-16\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"size\":{\"default\":{\"width\":{\"unit\":\"px\",\"value\":500},\"height\":\"auto\"},\"tablet\":{\"width\":{\"unit\":\"px\",\"value\":293.14100000000001955413608811795711517333984375},\"height\":\"auto\"},\"mobile\":{\"width\":{\"unit\":\"px\",\"value\":256},\"height\":\"auto\"}},\"children\":[],\"type\":\"text\",\"styles\":{\"backgroundColor\":{\"default\":\"rgba(81, 80, 79, 0.75)\"},\"typography\":{\"default\":{\"font\":\"Playfair Display\",\"lineHeight\":145,\"fontSize\":28,\"fontVariant\":\"regular\",\"color\":\"#ffffff\"},\"mobile\":{\"font\":\"Raleway\",\"lineHeight\":145,\"fontSize\":14,\"fontVariant\":\"regular\",\"color\":\"#ffffff\",\"align\":\"center\"}},\"transform\":{\"default\":{},\"tablet\":{},\"mobile\":{}},\"padding\":{\"default\":{\"top\":{\"value\":0,\"unit\":\"px\"},\"right\":{\"value\":0,\"unit\":\"px\"},\"bottom\":{\"value\":0,\"unit\":\"px\"},\"left\":{\"value\":80,\"unit\":\"px\"},\"link\":false}}},\"options\":{\"content\":\"Current data related to PPD caps, max benefit rates and SLU\\/PHP\",\"tag\":\"p\"},\"position\":{\"default\":{\"x\":{\"value\":-400,\"unit\":\"px\"},\"y\":{\"value\":-19,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false},\"tablet\":{\"x\":{\"value\":-283,\"unit\":\"px\"},\"y\":{\"value\":57,\"unit\":\"px\"},\"origin\":\"mc\"},\"mobile\":{\"x\":{\"value\":-4,\"unit\":\"px\"},\"y\":{\"value\":198,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false}},\"depth\":3,\"id\":\"element-21\",\"name\":\"Copy of Element 7\",\"responsiveScale\":{\"default\":true},\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"move\",\"params\":{\"direction\":\"left\",\"easing\":\"easeInOutExpo\",\"duration\":2500,\"movement\":0,\"delay\":500},\"phase\":\"in\"}}}}},\"element-43\":{\"section\":\"foreground\",\"parent\":\"foreground\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"children\":[],\"type\":\"bullet\",\"size\":{\"default\":{\"width\":\"auto\",\"height\":\"auto\"},\"mobile\":{\"width\":\"auto\",\"height\":\"auto\"}},\"styles\":{\"transform\":{\"default\":{},\"mobile\":{}}},\"options\":{\"bullet\":{\"styles\":{\"color\":{\"default\":\"rgba(255, 255, 255, 0.3)\"},\"activeColor\":{\"default\":\"#ffffff\"},\"size\":{\"default\":{\"width\":{\"value\":15,\"unit\":\"px\"},\"height\":{\"value\":6,\"unit\":\"px\"}}},\"space\":{\"default\":{\"right\":{\"value\":5,\"unit\":\"px\"}}},\"corner\":{\"default\":{\"topRight\":{\"value\":3,\"unit\":\"px\"},\"topLeft\":{\"value\":3,\"unit\":\"px\"},\"bottomRight\":{\"value\":3,\"unit\":\"px\"},\"bottomLeft\":{\"value\":3,\"unit\":\"px\"}}}},\"hover\":{\"activeColor\":{\"default\":\"rgba(0,0,0,1)\"}}}},\"position\":{\"default\":{\"x\":{\"value\":-81,\"unit\":\"px\"},\"y\":{\"value\":382,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":true},\"mobile\":{\"x\":{\"value\":0,\"unit\":\"px\"},\"y\":{\"value\":341,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":true}},\"depth\":2,\"id\":\"element-43\",\"name\":\"Bullet 2\"},\"element-49\":{\"section\":\"section-16\",\"parent\":\"section-16\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"children\":[],\"type\":\"text\",\"size\":{\"default\":{\"width\":{\"unit\":\"px\",\"value\":800},\"height\":\"auto\"}},\"styles\":{\"backgroundColor\":{\"default\":\"rgba(33, 24, 101, 0.75)\"},\"typography\":{\"default\":{\"font\":\"Playfair Display SC\",\"lineHeight\":120,\"color\":\"#ffffff\",\"fontSize\":68,\"fontVariant\":\"regular\",\"align\":\"left\"}},\"transform\":{\"default\":{}},\"textShadow\":{\"default\":{\"enable\":false,\"color\":\"rgba(0,0,0,0.5)\",\"offsetX\":2,\"offsetY\":2,\"blur\":5}},\"backgroundBlur\":{\"default\":{\"enable\":true,\"blur\":6,\"brightness\":100,\"opacity\":100}},\"padding\":{\"default\":{\"top\":{\"value\":0,\"unit\":\"px\"},\"right\":{\"value\":0,\"unit\":\"px\"},\"bottom\":{\"value\":0,\"unit\":\"px\"},\"left\":{\"value\":80,\"unit\":\"px\"},\"link\":false}},\"corner\":{\"default\":{\"link\":true,\"topLeft\":{\"value\":1,\"unit\":\"px\"},\"topRight\":{\"value\":1,\"unit\":\"px\"},\"bottomRight\":{\"value\":1,\"unit\":\"px\"},\"bottomLeft\":{\"value\":1,\"unit\":\"px\"}}},\"boxShadow\":{\"default\":{\"enable\":true,\"color\":\"#000\",\"inset\":false,\"offsetX\":10,\"offsetY\":10,\"blur\":25,\"spread\":5}}},\"options\":{\"content\":\"Workers\' Compensation \\nPractice Aids\",\"tag\":\"h2\"},\"position\":{\"default\":{\"x\":{\"value\":0,\"unit\":\"px\"},\"y\":{\"value\":-213,\"unit\":\"px\"},\"origin\":\"ml\",\"autoOrigin\":true}},\"depth\":3,\"id\":\"element-49\",\"name\":\"Text 8\",\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"moveAndTransform\",\"params\":{\"direction\":\"left\",\"easing\":\"easeOutQuart\",\"duration\":2200,\"movement\":0,\"scale\":1.600000000000000088817841970012523233890533447265625,\"delay\":250,\"transformOrigin\":{\"x\":\"center\",\"y\":\"top\",\"z\":0}},\"phase\":\"in\"}}}}},\"element-52\":{\"section\":\"section-50\",\"parent\":\"section-50\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"children\":[],\"type\":\"text\",\"size\":{\"default\":{\"width\":{\"unit\":\"px\",\"value\":800},\"height\":\"auto\"}},\"styles\":{\"backgroundColor\":{\"default\":\"rgba(33, 24, 101, 0.7)\"},\"typography\":{\"default\":{\"font\":\"Playfair Display SC\",\"lineHeight\":120,\"color\":\"#ffffff\",\"fontSize\":68,\"fontVariant\":\"regular\",\"align\":\"right\"}},\"transform\":{\"default\":{}},\"textShadow\":{\"default\":{\"enable\":true,\"color\":\"rgba(0,0,0,0.5)\",\"offsetX\":2,\"offsetY\":2,\"blur\":5}},\"boxShadow\":{\"default\":{\"enable\":true,\"color\":\"#000\",\"inset\":false,\"offsetX\":10,\"offsetY\":10,\"blur\":25,\"spread\":5}},\"backgroundBlur\":{\"default\":{\"enable\":true,\"blur\":4,\"brightness\":100,\"opacity\":80}},\"padding\":{\"default\":{\"top\":{\"value\":0,\"unit\":\"px\"},\"right\":{\"value\":75,\"unit\":\"px\"},\"bottom\":{\"value\":0,\"unit\":\"px\"},\"left\":{\"value\":0,\"unit\":\"px\"},\"link\":false}}},\"options\":{\"content\":\"LOMAD News,\\nEvents & Articles\",\"tag\":\"h2\"},\"position\":{\"default\":{\"x\":{\"value\":3,\"unit\":\"px\"},\"y\":{\"value\":-168,\"unit\":\"px\"},\"origin\":\"mr\",\"autoOrigin\":true}},\"depth\":1,\"id\":\"element-52\",\"name\":\"Text 9\",\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"moveAndTransform\",\"params\":{\"direction\":\"left\",\"easing\":\"easeOutQuart\",\"duration\":2200,\"movement\":0,\"scale\":1.600000000000000088817841970012523233890533447265625,\"delay\":250,\"transformOrigin\":{\"x\":\"center\",\"y\":\"top\",\"z\":0}},\"phase\":\"in\"}}}}},\"element-53\":{\"section\":\"section-50\",\"parent\":\"section-50\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"size\":{\"default\":{\"width\":{\"unit\":\"px\",\"value\":500},\"height\":\"auto\"},\"tablet\":{\"width\":{\"unit\":\"px\",\"value\":293.14100000000001955413608811795711517333984375},\"height\":\"auto\"},\"mobile\":{\"width\":{\"unit\":\"px\",\"value\":256},\"height\":\"auto\"}},\"type\":\"text\",\"styles\":{\"backgroundColor\":{\"default\":\"rgba(98, 98, 98, 0.75)\"},\"typography\":{\"default\":{\"font\":\"Playfair Display\",\"lineHeight\":145,\"fontSize\":22,\"fontVariant\":\"regular\",\"color\":\"#ffffff\",\"align\":\"right\"},\"mobile\":{\"font\":\"Raleway\",\"lineHeight\":145,\"fontSize\":14,\"fontVariant\":\"regular\",\"color\":\"#ffffff\",\"align\":\"center\"}},\"transform\":{\"default\":{},\"tablet\":{},\"mobile\":{}},\"padding\":{\"default\":{\"top\":{\"value\":0,\"unit\":\"px\"},\"right\":{\"value\":100,\"unit\":\"px\"},\"bottom\":{\"value\":0,\"unit\":\"px\"},\"left\":{\"value\":0,\"unit\":\"px\"},\"link\":false}}},\"options\":{\"content\":\"The latest updates from our firm and \\npublications related to recent updates \\nin worker\'s compensation law\",\"tag\":\"p\"},\"position\":{\"default\":{\"x\":{\"value\":3,\"unit\":\"px\"},\"y\":{\"value\":-21,\"unit\":\"px\"},\"origin\":\"mr\",\"autoOrigin\":true},\"tablet\":{\"x\":{\"value\":-283,\"unit\":\"px\"},\"y\":{\"value\":57,\"unit\":\"px\"},\"origin\":\"mc\"},\"mobile\":{\"x\":{\"value\":-4,\"unit\":\"px\"},\"y\":{\"value\":198,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false}},\"responsiveScale\":{\"default\":true},\"depth\":1,\"id\":\"element-53\",\"name\":\"Text 10\",\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"move\",\"params\":{\"direction\":\"left\",\"easing\":\"easeInOutExpo\",\"duration\":2500,\"movement\":0,\"delay\":500},\"phase\":\"in\"}}}}},\"element-54\":{\"section\":\"section-50\",\"parent\":\"section-50\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"size\":{\"default\":{\"width\":{\"value\":274,\"unit\":\"px\"},\"height\":{\"value\":113,\"unit\":\"px\"}}},\"type\":\"button\",\"styles\":{\"typography\":{\"default\":{\"font\":\"Playfair Display SC\",\"fontSize\":28,\"fontVariant\":\"regular\",\"color\":\"#FFF\",\"align\":\"center\"},\"mobile\":{\"font\":\"Roboto\",\"fontSize\":14,\"fontVariant\":\"regular\",\"color\":\"#FFF\",\"align\":\"center\"}},\"padding\":{\"default\":{\"top\":{\"value\":11,\"unit\":\"px\"},\"right\":{\"value\":25,\"unit\":\"px\"},\"bottom\":{\"value\":10,\"unit\":\"px\"},\"left\":{\"value\":27,\"unit\":\"px\"},\"link\":false},\"mobile\":{\"top\":{\"value\":10,\"unit\":\"px\"},\"right\":{\"value\":10,\"unit\":\"px\"},\"bottom\":{\"value\":10,\"unit\":\"px\"},\"left\":{\"value\":10,\"unit\":\"px\"},\"link\":true}},\"backgroundColor\":{\"default\":\"rgba(33, 24, 101, 0.7)\"},\"corner\":{\"default\":{\"topLeft\":{\"value\":20,\"unit\":\"px\"},\"topRight\":{\"value\":20,\"unit\":\"px\"},\"bottomRight\":{\"value\":20,\"unit\":\"px\"},\"bottomLeft\":{\"value\":20,\"unit\":\"px\"},\"link\":true}},\"hover\":{\"backgroundColor\":{\"default\":\"#2e5591\"},\"typography\":{\"default\":{\"color\":\"#ffffff\"}},\"enable\":{\"default\":true},\"transition\":{\"default\":{\"enable\":true,\"timingFunction\":\"ease\",\"duration\":0.5}},\"opacity\":{\"default\":0.84999999999999997779553950749686919152736663818359375},\"transform\":{\"default\":{\"scale\":1.0500000000000000444089209850062616169452667236328125}}},\"transform\":{\"default\":{},\"tablet\":{},\"mobile\":{}},\"boxShadow\":{\"default\":{\"enable\":true,\"color\":\"#000\",\"inset\":false,\"offsetX\":10,\"offsetY\":10,\"blur\":25,\"spread\":4}}},\"options\":{\"content\":\"View collection\"},\"position\":{\"default\":{\"x\":{\"value\":103,\"unit\":\"px\"},\"y\":{\"value\":100,\"unit\":\"px\"},\"origin\":\"mr\",\"autoOrigin\":true},\"tablet\":{\"x\":{\"value\":-354,\"unit\":\"px\"},\"y\":{\"value\":132,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false},\"mobile\":{\"x\":{\"value\":-4,\"unit\":\"px\"},\"y\":{\"value\":266,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false}},\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"moveAndTransform\",\"params\":{\"direction\":\"top\",\"easing\":\"easeOutQuart\",\"duration\":1800,\"movement\":0,\"scale\":1.350000000000000088817841970012523233890533447265625,\"delay\":2500},\"phase\":\"in\"}}}},\"responsiveScale\":{\"default\":true},\"depth\":1,\"id\":\"element-54\",\"name\":\"Button 5\",\"actions\":{\"eJshOWjHi3T0h0hUicoMu\":{\"type\":\"openURL\",\"trigger\":\"click\",\"label\":\"Go to URL\",\"options\":{\"path\":\"https:\\/\\/thelomad.com/getmad.today\\/news-events-articles\\/\",\"target\":\"_blank\"}}}},\"element-58\":{\"section\":\"foreground\",\"parent\":\"foreground\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"children\":[],\"type\":\"arrow\",\"size\":{\"default\":{\"width\":{\"value\":80,\"unit\":\"px\"},\"height\":{\"value\":80,\"unit\":\"px\"}}},\"styles\":{\"svg\":{\"default\":{\"fill\":\"#211865\"}},\"corner\":{\"default\":{\"topRight\":{\"value\":5,\"unit\":\"px\"},\"topLeft\":{\"value\":5,\"unit\":\"px\"},\"bottomRight\":{\"value\":5,\"unit\":\"px\"},\"bottomLeft\":{\"value\":5,\"unit\":\"px\"}}},\"backgroundColor\":{\"default\":\"rgba(216, 216, 216, 0.5)\"},\"transform\":{\"default\":{}},\"boxShadow\":{\"default\":{\"enable\":true,\"color\":\"#000\",\"inset\":false,\"offsetX\":10,\"offsetY\":10,\"blur\":25,\"spread\":0}},\"backgroundBlur\":{\"default\":{\"enable\":true,\"blur\":5,\"brightness\":100,\"opacity\":100}}},\"actions\":{\"QKnQVzqNwHQHtinJ31fWY\":{\"type\":\"gotoSection\",\"trigger\":\"click\",\"label\":\"Go to slide\",\"options\":{\"type\":\"previous\",\"to\":\"\"}}},\"options\":{\"content\":\"<svg width=\\\"8px\\\" height=\\\"14px\\\" viewBox=\\\"0 0 15.556 26.871\\\" style=\\\"position:relative; left:-1px;\\\"><path id=\\\"arrow_10L\\\" d=\\\"M0,13.438H0L13.436,0l2.12,2.12L4.24,13.437,15.557,24.752l-2.121,2.12Z\\\" transform=\\\"translate(0 -0.001)\\\"\\/><\\/svg>\"},\"position\":{\"default\":{\"x\":{\"value\":-47,\"unit\":\"px\"},\"y\":{\"value\":-19,\"unit\":\"px\"},\"origin\":\"ml\",\"autoOrigin\":true}},\"depth\":3,\"id\":\"element-58\",\"name\":\"Arrow 5\",\"keepAspectRatio\":true},\"element-59\":{\"section\":\"foreground\",\"parent\":\"foreground\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"children\":[],\"type\":\"arrow\",\"size\":{\"default\":{\"width\":{\"value\":80,\"unit\":\"px\"},\"height\":{\"value\":80,\"unit\":\"px\"}}},\"styles\":{\"svg\":{\"default\":{\"fill\":\"#211865\"}},\"corner\":{\"default\":{\"topRight\":{\"value\":5,\"unit\":\"px\"},\"topLeft\":{\"value\":5,\"unit\":\"px\"},\"bottomRight\":{\"value\":5,\"unit\":\"px\"},\"bottomLeft\":{\"value\":5,\"unit\":\"px\"}}},\"backgroundColor\":{\"default\":\"rgba(216, 216, 216, 0.5)\"},\"transform\":{\"default\":{}},\"boxShadow\":{\"default\":{\"enable\":true,\"color\":\"#000\",\"inset\":false,\"offsetX\":10,\"offsetY\":10,\"blur\":25,\"spread\":0}},\"backgroundBlur\":{\"default\":{\"enable\":true,\"blur\":4,\"brightness\":100,\"opacity\":100}}},\"actions\":{\"KAfxRDNZTiPi9K2Mt113I\":{\"type\":\"gotoSection\",\"trigger\":\"click\",\"label\":\"Go to slide\",\"options\":{\"type\":\"next\",\"to\":\"\"}}},\"options\":{\"content\":\"<svg width=\\\"8px\\\" height=\\\"14px\\\" viewBox=\\\"0 0 15.557 26.871\\\" style=\\\"position:relative; right:-1px;\\\"><path id=\\\"arrow_10R\\\" d=\\\"M0,24.752,11.317,13.437,0,2.121,2.121,0,15.557,13.435h0l0,0L2.122,26.872Z\\\" transform=\\\"translate(-0.001 -0.001)\\\" \\/><\\/svg>\"},\"position\":{\"default\":{\"x\":{\"value\":10,\"unit\":\"px\"},\"y\":{\"value\":-21,\"unit\":\"px\"},\"origin\":\"mr\",\"autoOrigin\":true}},\"depth\":1,\"id\":\"element-59\",\"name\":\"Arrow 6\",\"keepAspectRatio\":true},\"element-64\":{\"section\":\"section-60\",\"parent\":\"section-60\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"type\":\"image\",\"size\":{\"default\":{\"width\":{\"value\":900,\"unit\":\"px\"},\"height\":{\"value\":170.79069767441859539758297614753246307373046875,\"unit\":\"px\"}}},\"options\":{\"source\":\"50041\"},\"keepAspectRatio\":true,\"position\":{\"default\":{\"x\":{\"value\":5,\"unit\":\"px\"},\"y\":{\"value\":-188,\"unit\":\"px\"},\"origin\":\"ml\",\"autoOrigin\":true}},\"depth\":2,\"id\":\"element-64\",\"name\":\"Image 1\",\"cropData\":{\"default\":{\"mediaSize\":{\"width\":900,\"height\":171}}},\"styles\":{\"transform\":{\"default\":{}},\"boxShadow\":{\"default\":{\"enable\":false,\"color\":\"#000\",\"inset\":false,\"offsetX\":10,\"offsetY\":10,\"blur\":25,\"spread\":0}}},\"animation\":{\"in\":{\"data\":{\"default\":{\"params\":{\"easing\":\"easeOutQuart\",\"transformOrigin\":{\"x\":\"center\",\"y\":\"top\",\"z\":0},\"direction\":\"left\",\"duration\":2200,\"movement\":0,\"scale\":1.600000000000000088817841970012523233890533447265625,\"delay\":100},\"type\":\"moveAndTransform\",\"phase\":\"in\"}}}}},\"element-65\":{\"section\":\"section-60\",\"parent\":\"section-60\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"size\":{\"default\":{\"width\":{\"unit\":\"px\",\"value\":500},\"height\":\"auto\"},\"tablet\":{\"width\":{\"unit\":\"px\",\"value\":293.14100000000001955413608811795711517333984375},\"height\":\"auto\"},\"mobile\":{\"width\":{\"unit\":\"px\",\"value\":256},\"height\":\"auto\"}},\"type\":\"text\",\"styles\":{\"backgroundColor\":{\"default\":\"rgba(81, 80, 79, 0.75)\"},\"typography\":{\"default\":{\"font\":\"Playfair Display\",\"lineHeight\":145,\"fontSize\":28,\"fontVariant\":\"regular\",\"color\":\"#ffffff\"},\"mobile\":{\"font\":\"Raleway\",\"lineHeight\":145,\"fontSize\":14,\"fontVariant\":\"regular\",\"color\":\"#ffffff\",\"align\":\"center\"}},\"transform\":{\"default\":{},\"tablet\":{},\"mobile\":{}},\"padding\":{\"default\":{\"top\":{\"value\":0,\"unit\":\"px\"},\"right\":{\"value\":0,\"unit\":\"px\"},\"bottom\":{\"value\":0,\"unit\":\"px\"},\"left\":{\"value\":80,\"unit\":\"px\"},\"link\":false}}},\"options\":{\"content\":\"Our firm\'s exclusive video broadcasting platform\",\"tag\":\"p\"},\"position\":{\"default\":{\"x\":{\"value\":0,\"unit\":\"px\"},\"y\":{\"value\":-18,\"unit\":\"px\"},\"origin\":\"ml\",\"autoOrigin\":true},\"tablet\":{\"x\":{\"value\":-283,\"unit\":\"px\"},\"y\":{\"value\":57,\"unit\":\"px\"},\"origin\":\"mc\"},\"mobile\":{\"x\":{\"value\":-4,\"unit\":\"px\"},\"y\":{\"value\":198,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false}},\"responsiveScale\":{\"default\":true},\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"move\",\"params\":{\"direction\":\"left\",\"easing\":\"easeInOutExpo\",\"duration\":2500,\"movement\":0,\"delay\":500},\"phase\":\"in\"}}}},\"depth\":3,\"id\":\"element-65\",\"name\":\"Text 11\"},\"element-66\":{\"section\":\"section-60\",\"parent\":\"section-60\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"size\":{\"default\":{\"width\":{\"value\":274,\"unit\":\"px\"},\"height\":{\"value\":113,\"unit\":\"px\"}}},\"type\":\"button\",\"styles\":{\"typography\":{\"default\":{\"font\":\"Playfair Display SC\",\"fontSize\":28,\"fontVariant\":\"regular\",\"color\":\"#FFF\",\"align\":\"center\"},\"mobile\":{\"font\":\"Roboto\",\"fontSize\":14,\"fontVariant\":\"regular\",\"color\":\"#FFF\",\"align\":\"center\"}},\"padding\":{\"default\":{\"top\":{\"value\":11,\"unit\":\"px\"},\"right\":{\"value\":25,\"unit\":\"px\"},\"bottom\":{\"value\":10,\"unit\":\"px\"},\"left\":{\"value\":27,\"unit\":\"px\"},\"link\":false},\"mobile\":{\"top\":{\"value\":10,\"unit\":\"px\"},\"right\":{\"value\":10,\"unit\":\"px\"},\"bottom\":{\"value\":10,\"unit\":\"px\"},\"left\":{\"value\":10,\"unit\":\"px\"},\"link\":true}},\"backgroundColor\":{\"default\":\"rgba(33, 24, 101, 0.7)\"},\"corner\":{\"default\":{\"topLeft\":{\"value\":20,\"unit\":\"px\"},\"topRight\":{\"value\":20,\"unit\":\"px\"},\"bottomRight\":{\"value\":20,\"unit\":\"px\"},\"bottomLeft\":{\"value\":20,\"unit\":\"px\"},\"link\":true}},\"hover\":{\"backgroundColor\":{\"default\":\"#2e5591\"},\"typography\":{\"default\":{\"color\":\"#ffffff\"}},\"enable\":{\"default\":true},\"transition\":{\"default\":{\"enable\":true,\"timingFunction\":\"ease\",\"duration\":0.5}},\"transform\":{\"default\":{\"scale\":1.0500000000000000444089209850062616169452667236328125}}},\"transform\":{\"default\":{},\"tablet\":{},\"mobile\":{}},\"boxShadow\":{\"default\":{\"enable\":true,\"color\":\"#000\",\"inset\":false,\"offsetX\":10,\"offsetY\":10,\"blur\":25,\"spread\":4}}},\"options\":{\"content\":\"Explore LOMADtv\"},\"position\":{\"default\":{\"x\":{\"value\":130,\"unit\":\"px\"},\"y\":{\"value\":107,\"unit\":\"px\"},\"origin\":\"ml\",\"autoOrigin\":true},\"tablet\":{\"x\":{\"value\":-354,\"unit\":\"px\"},\"y\":{\"value\":132,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false},\"mobile\":{\"x\":{\"value\":-4,\"unit\":\"px\"},\"y\":{\"value\":266,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false}},\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"moveAndTransform\",\"params\":{\"direction\":\"top\",\"easing\":\"easeOutQuart\",\"duration\":2200,\"movement\":0,\"scale\":1.350000000000000088817841970012523233890533447265625,\"delay\":2500},\"phase\":\"in\"}}}},\"responsiveScale\":{\"default\":true},\"actions\":{\"5CDPTUrRVPTR067undHhO\":{\"type\":\"openURL\",\"trigger\":\"click\",\"label\":\"Go to URL\",\"options\":{\"path\":\"https:\\/\\/thelomad.com/getmad.today\\/client-resources\\/workers-compensation-practice-aids\\/\",\"target\":\"_blank\"}}},\"depth\":4,\"id\":\"element-66\",\"name\":\"Button 6\"},\"element-67\":{\"section\":\"section-60\",\"parent\":\"section-60\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"children\":[],\"type\":\"shape\",\"size\":{\"default\":{\"width\":{\"value\":1000,\"unit\":\"px\"},\"height\":{\"value\":200,\"unit\":\"px\"}}},\"styles\":{\"backgroundColor\":{\"default\":\"rgba(33, 24, 101, 0.7)\"},\"transform\":{\"default\":{}}},\"options\":{},\"position\":{\"default\":{\"x\":{\"value\":0,\"unit\":\"px\"},\"y\":{\"value\":-199,\"unit\":\"px\"},\"origin\":\"ml\",\"autoOrigin\":true}},\"depth\":1,\"id\":\"element-67\",\"name\":\"Shape 1\",\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"moveAndTransform\",\"params\":{\"direction\":\"left\",\"easing\":\"easeOutQuart\",\"duration\":2200,\"movement\":0,\"scale\":1.600000000000000088817841970012523233890533447265625,\"delay\":250,\"transformOrigin\":{\"x\":\"center\",\"y\":\"top\",\"z\":0}},\"phase\":\"in\"}}}}},\"element-70\":{\"section\":\"section-68\",\"parent\":\"section-68\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"size\":{\"default\":{\"width\":{\"unit\":\"px\",\"value\":500},\"height\":\"auto\"},\"tablet\":{\"width\":{\"unit\":\"px\",\"value\":293.14100000000001955413608811795711517333984375},\"height\":\"auto\"},\"mobile\":{\"width\":{\"unit\":\"px\",\"value\":256},\"height\":\"auto\"}},\"type\":\"text\",\"styles\":{\"backgroundColor\":{\"default\":\"rgba(98, 98, 98, 0.75)\"},\"typography\":{\"default\":{\"font\":\"Playfair Display\",\"lineHeight\":145,\"fontSize\":22,\"fontVariant\":\"regular\",\"color\":\"#ffffff\",\"align\":\"right\"},\"mobile\":{\"font\":\"Raleway\",\"lineHeight\":145,\"fontSize\":14,\"fontVariant\":\"regular\",\"color\":\"#ffffff\",\"align\":\"center\"}},\"transform\":{\"default\":{},\"tablet\":{},\"mobile\":{}},\"padding\":{\"default\":{\"top\":{\"value\":0,\"unit\":\"px\"},\"right\":{\"value\":100,\"unit\":\"px\"},\"bottom\":{\"value\":0,\"unit\":\"px\"},\"left\":{\"value\":0,\"unit\":\"px\"},\"link\":false}}},\"options\":{\"content\":\"The latest updates from our firm and \\npublications related to recent updates \\nin worker\'s compensation law\",\"tag\":\"p\"},\"position\":{\"default\":{\"x\":{\"value\":3,\"unit\":\"px\"},\"y\":{\"value\":-21,\"unit\":\"px\"},\"origin\":\"mr\",\"autoOrigin\":true},\"tablet\":{\"x\":{\"value\":-283,\"unit\":\"px\"},\"y\":{\"value\":57,\"unit\":\"px\"},\"origin\":\"mc\"},\"mobile\":{\"x\":{\"value\":-4,\"unit\":\"px\"},\"y\":{\"value\":198,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false}},\"responsiveScale\":{\"default\":true},\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"move\",\"params\":{\"direction\":\"left\",\"easing\":\"easeInOutExpo\",\"duration\":2500,\"movement\":0,\"delay\":500},\"phase\":\"in\"}}}},\"depth\":1,\"id\":\"element-70\",\"name\":\"Text 13\"},\"element-71\":{\"section\":\"section-68\",\"parent\":\"section-68\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"size\":{\"default\":{\"width\":{\"value\":274,\"unit\":\"px\"},\"height\":{\"value\":113,\"unit\":\"px\"}}},\"type\":\"button\",\"styles\":{\"typography\":{\"default\":{\"font\":\"Playfair Display SC\",\"fontSize\":28,\"fontVariant\":\"regular\",\"color\":\"#FFF\",\"align\":\"center\"},\"mobile\":{\"font\":\"Roboto\",\"fontSize\":14,\"fontVariant\":\"regular\",\"color\":\"#FFF\",\"align\":\"center\"}},\"padding\":{\"default\":{\"top\":{\"value\":11,\"unit\":\"px\"},\"right\":{\"value\":25,\"unit\":\"px\"},\"bottom\":{\"value\":10,\"unit\":\"px\"},\"left\":{\"value\":27,\"unit\":\"px\"},\"link\":false},\"mobile\":{\"top\":{\"value\":10,\"unit\":\"px\"},\"right\":{\"value\":10,\"unit\":\"px\"},\"bottom\":{\"value\":10,\"unit\":\"px\"},\"left\":{\"value\":10,\"unit\":\"px\"},\"link\":true}},\"backgroundColor\":{\"default\":\"rgba(33, 24, 101, 0.7)\"},\"corner\":{\"default\":{\"topLeft\":{\"value\":20,\"unit\":\"px\"},\"topRight\":{\"value\":20,\"unit\":\"px\"},\"bottomRight\":{\"value\":20,\"unit\":\"px\"},\"bottomLeft\":{\"value\":20,\"unit\":\"px\"},\"link\":true}},\"hover\":{\"backgroundColor\":{\"default\":\"#2e5591\"},\"typography\":{\"default\":{\"color\":\"#ffffff\"}},\"enable\":{\"default\":true},\"transition\":{\"default\":{\"enable\":true,\"timingFunction\":\"ease\",\"duration\":0.5}},\"opacity\":{\"default\":0.84999999999999997779553950749686919152736663818359375},\"transform\":{\"default\":{\"scale\":1.0500000000000000444089209850062616169452667236328125}}},\"transform\":{\"default\":{},\"tablet\":{},\"mobile\":{}},\"boxShadow\":{\"default\":{\"enable\":true,\"color\":\"#000\",\"inset\":false,\"offsetX\":10,\"offsetY\":10,\"blur\":25,\"spread\":4}}},\"options\":{\"content\":\"View collection\"},\"position\":{\"default\":{\"x\":{\"value\":103,\"unit\":\"px\"},\"y\":{\"value\":99,\"unit\":\"px\"},\"origin\":\"mr\",\"autoOrigin\":true},\"tablet\":{\"x\":{\"value\":-354,\"unit\":\"px\"},\"y\":{\"value\":132,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false},\"mobile\":{\"x\":{\"value\":-4,\"unit\":\"px\"},\"y\":{\"value\":266,\"unit\":\"px\"},\"origin\":\"mc\",\"autoOrigin\":false}},\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"moveAndTransform\",\"params\":{\"direction\":\"top\",\"easing\":\"easeOutQuart\",\"duration\":1800,\"movement\":0,\"scale\":1.350000000000000088817841970012523233890533447265625,\"delay\":2500},\"phase\":\"in\"}}}},\"responsiveScale\":{\"default\":true},\"actions\":{\"eJshOWjHi3T0h0hUicoMu\":{\"type\":\"openURL\",\"trigger\":\"click\",\"label\":\"Go to URL\",\"options\":{\"path\":\"https:\\/\\/thelomad.com/getmad.today\\/news-events-articles\\/\",\"target\":\"_blank\"}}},\"depth\":1,\"id\":\"element-71\",\"name\":\"Button 7\"},\"element-72\":{\"section\":\"section-68\",\"parent\":\"section-68\",\"wrap\":true,\"locked\":false,\"visible\":{\"default\":true},\"type\":\"shape\",\"size\":{\"default\":{\"width\":{\"value\":1000,\"unit\":\"px\"},\"height\":{\"value\":200,\"unit\":\"px\"}}},\"styles\":{\"backgroundColor\":{\"default\":\"rgba(33, 24, 101, 0.7)\"},\"transform\":{\"default\":{}}},\"options\":{},\"position\":{\"default\":{\"x\":{\"value\":3,\"unit\":\"px\"},\"y\":{\"value\":-185,\"unit\":\"px\"},\"origin\":\"mr\",\"autoOrigin\":true}},\"animation\":{\"in\":{\"data\":{\"default\":{\"type\":\"moveAndTransform\",\"params\":{\"direction\":\"left\",\"easing\":\"easeOutQuart\",\"duration\":2200,\"movement\":0,\"scale\":1.600000000000000088817841970012523233890533447265625,\"delay\":250,\"transformOrigin\":{\"x\":\"center\",\"y\":\"top\",\"z\":0}},\"phase\":\"in\"}}}},\"depth\":1,\"id\":\"element-72\",\"name\":\"Shape 2\"}},\"sections\":{\"section-16\":{\"elements\":[\"element-18\",\"element-21\",\"element-49\"],\"background\":{\"color\":{\"default\":\"#211865\"},\"image\":{\"src\":\"@UnSiEKy2OTRPXdw\"},\"video\":{},\"overlay\":{\"default\":\"rgba(33, 24, 101, 0.15)\"},\"filter\":{\"default\":{\"enable\":false}}},\"options\":{\"slideshowDuration\":15},\"id\":\"section-16\",\"name\":\"Workers\' Compensation Practice Aids\"},\"section-50\":{\"elements\":[\"element-52\",\"element-53\",\"element-54\"],\"background\":{\"color\":{\"default\":\"#FFF\"},\"image\":{\"src\":\"@UnSiYjVa-F9P9kk\",\"fitMode\":{\"default\":\"cover\"}},\"video\":{},\"overlay\":{\"default\":\"rgba(33, 24, 101, 0.15)\"},\"filter\":{\"default\":{\"enable\":false}}},\"options\":{\"customStyle\":\"\"},\"id\":\"section-50\",\"name\":\"News, Events & Articles\",\"wrapperSize\":{}},\"section-60\":{\"elements\":[\"element-64\",\"element-65\",\"element-66\",\"element-67\"],\"background\":{\"color\":{\"default\":\"#FFF\"},\"image\":{\"src\":\"@UnSiVCFxt2yT1eQ\",\"fitMode\":{\"default\":\"cover\"}},\"video\":{},\"overlay\":{\"default\":\"rgba(33, 24, 101, 0.15)\"}},\"options\":{},\"id\":\"section-60\",\"name\":\"Slide 6\"},\"section-68\":{\"elements\":[\"element-70\",\"element-71\",\"element-72\"],\"background\":{\"color\":{\"default\":\"#FFF\"},\"image\":{\"src\":\"@UnSi0FRJ2SCuY4k\"},\"video\":{}},\"options\":{},\"id\":\"section-68\",\"name\":\"Slide 7\"}},\"foregroundElements\":[\"element-43\",\"element-58\",\"element-59\"],\"options\":{\"sectionTransition\":{\"type\":\"transform\",\"options\":{\"basic\":{\"direction\":\"h\"}}},\"navigation\":{\"swipe\":{\"enable\":true,\"mouseSwipe\":true,\"touchSwipe\":true},\"loop\":true,\"keyboardNavigation\":true},\"sectionLayout\":\"fullwidth\",\"wrapperSize\":{\"default\":{\"width\":{\"value\":1300,\"unit\":\"px\"},\"height\":{\"value\":700,\"unit\":\"px\"}},\"tablet\":{\"width\":{\"value\":1024,\"unit\":\"px\"},\"height\":{\"value\":700,\"unit\":\"px\"}},\"mobile\":{\"width\":{\"value\":360,\"unit\":\"px\"},\"height\":{\"value\":740,\"unit\":\"px\"}}},\"wrapperSideSpace\":15,\"loading\":{\"loadingSymbol\":\"puff-dark\",\"lazyLoad\":{\"type\":\"nearby\"}}},\"meta\":{\"createdBy\":\"5.5.0\",\"modifiedBy\":\"1.2.0\"},\"env\":{\"activeSection\":\"section-68\",\"activeBreakpoint\":\"default\",\"selectedElements\":[],\"customFonts\":[\"Open Sans\",\"Roboto\",\"Kaisei Tokumin\",\"Raleway\",\"inherit\",\"Playfair Display\",\"Playfair Display SC\"],\"showHiddenItems\":true}}','publish',1,'');
/*!40000 ALTER TABLE `cuB_depicter_documents` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_depicter_options`
--

DROP TABLE IF EXISTS `cuB_depicter_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_depicter_options` (
  `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `option_value` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_depicter_options`
--

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

--
-- Table structure for table `cuB_et_social_stats`
--

DROP TABLE IF EXISTS `cuB_et_social_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_et_social_stats` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `sharing_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `network` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `action` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_id` bigint(20) NOT NULL,
  `ip_address` varchar(45) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `media_url` varchar(2083) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `location` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_et_social_stats`
--

LOCK TABLES `cuB_et_social_stats` WRITE;
/*!40000 ALTER TABLE `cuB_et_social_stats` DISABLE KEYS */;
INSERT INTO `cuB_et_social_stats` VALUES (1,'2021-12-10 15:26:52','facebook','share',46331,'2a06:98c0:3600::103','','inline');
/*!40000 ALTER TABLE `cuB_et_social_stats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_fbv`
--

DROP TABLE IF EXISTS `cuB_fbv`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_fbv` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `parent` int(11) NOT NULL DEFAULT '0',
  `type` int(2) NOT NULL DEFAULT '0',
  `ord` int(11) DEFAULT '0',
  `created_by` int(11) DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_fbv`
--

LOCK TABLES `cuB_fbv` WRITE;
/*!40000 ALTER TABLE `cuB_fbv` DISABLE KEYS */;
INSERT INTO `cuB_fbv` VALUES (1,'Logos and Branding',0,0,0,0),(2,'Stock Images',0,0,1,0),(3,'Client Supplied',0,0,2,0),(4,'Icons and Graphics',0,0,3,0),(5,'PPC',0,0,4,0),(6,'Attorneys',3,0,0,0),(7,'Badges',4,0,0,0),(8,'AB Directory Landing Page',0,0,5,0),(9,'LOMAD Newsletter',0,0,0,0),(10,'LOMAD Firm Photos',0,0,0,0),(11,'LOMAD Attorneys',0,0,0,0),(12,'LOMAD Staff',0,0,0,0),(13,'LOMAD Case Law Updates',0,0,0,0),(14,'Web Design Utility Graphics',0,0,0,0),(15,'LOMADtv',0,0,0,0),(16,'Maps',0,0,0,0),(17,'LOMAD Articles',0,0,0,0);
/*!40000 ALTER TABLE `cuB_fbv` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_fbv_attachment_folder`
--

DROP TABLE IF EXISTS `cuB_fbv_attachment_folder`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_fbv_attachment_folder` (
  `folder_id` int(11) NOT NULL,
  `attachment_id` int(11) NOT NULL,
  UNIQUE KEY `folder_id` (`folder_id`,`attachment_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_fbv_attachment_folder`
--

LOCK TABLES `cuB_fbv_attachment_folder` WRITE;
/*!40000 ALTER TABLE `cuB_fbv_attachment_folder` DISABLE KEYS */;
INSERT INTO `cuB_fbv_attachment_folder` VALUES (1,46094),(1,46227),(1,46273),(1,46311),(1,46312),(1,46313),(1,46765),(1,46766),(1,46767),(1,46773),(1,46833),(1,46976),(1,46988),(1,47095),(1,47099),(1,47100),(1,47101),(1,47265),(1,47266),(1,47267),(1,47268),(1,47336),(1,47337),(1,47338),(1,47513),(1,47729),(1,47835),(1,47836),(1,47838),(1,47874),(1,47875),(1,48000),(1,48280),(1,48281),(1,48287),(1,48423),(1,48502),(1,48527),(1,48528),(1,48529),(1,48530),(1,48531),(1,48532),(1,48533),(1,49388),(1,49389),(1,49390),(1,49391),(1,49395),(1,49398),(2,46098),(2,46270),(2,46300),(2,46317),(2,46416),(2,46427),(2,46483),(2,46495),(2,46498),(2,46613),(2,46748),(2,46788),(2,46824),(2,46860),(2,46875),(2,46876),(2,46879),(2,46880),(2,46881),(2,46882),(2,46883),(2,46884),(2,46930),(2,46937),(2,46938),(2,46939),(2,46969),(2,47076),(2,47289),(2,47301),(2,47395),(2,47397),(2,47508),(2,47871),(2,47895),(2,47896),(2,47897),(2,47898),(2,47899),(2,47900),(2,47901),(2,47902),(2,47903),(2,48150),(2,48151),(2,48152),(2,48362),(2,48365),(2,48505),(2,48507),(2,48508),(2,48512),(2,48516),(2,48525),(4,50299),(4,50311),(4,50543),(4,50546),(4,50581),(4,50582),(4,50583),(4,50623),(4,50654),(4,50655),(4,50664),(4,50709),(9,46245),(9,46246),(9,46247),(9,46248),(9,46249),(9,46250),(9,46251),(9,46252),(9,49100),(9,49128),(9,49130),(9,49133),(9,49134),(9,49139),(9,49140),(9,50572),(9,50710),(9,50711),(10,49768),(11,46070),(11,46072),(11,46074),(11,46076),(11,46078),(11,46080),(11,46082),(11,46084),(11,46086),(11,46088),(11,46090),(11,46092),(11,46114),(11,46115),(11,46124),(11,46150),(11,46153),(11,46155),(11,46158),(11,46159),(11,46160),(11,46163),(11,46194),(11,46195),(11,46196),(11,46197),(11,46198),(11,46199),(11,46200),(11,46201),(11,46202),(11,46203),(11,46204),(11,46205),(11,46206),(11,46218),(11,46224),(11,47542),(11,47545),(11,47548),(11,47551),(11,47562),(11,47567),(11,47570),(11,47587),(11,47590),(11,47592),(11,47593),(11,47594),(11,47596),(11,47597),(11,47599),(11,47694),(11,47712),(11,47855),(11,47856),(11,47857),(11,47858),(11,47859),(11,47860),(11,47862),(11,47863),(11,47864),(11,47865),(11,47866),(11,47867),(11,47868),(11,48166),(11,48167),(11,50924),(12,46104),(12,46116),(12,46117),(12,46118),(12,46120),(12,46123),(12,46126),(12,46151),(12,46152),(12,46154),(12,46156),(12,46157),(12,46207),(12,46208),(12,46209),(12,46210),(12,46211),(12,46212),(12,46213),(12,46214),(12,46215),(12,46216),(12,46217),(12,46223),(12,47554),(12,47572),(12,47575),(12,47577),(12,47578),(12,47579),(12,47583),(12,47584),(12,47585),(12,47586),(12,47591),(12,47598),(12,48007),(12,48012),(12,48013),(12,48014),(12,48015),(12,48329),(12,48964),(12,50923),(13,51419),(13,51420),(13,51421),(13,51422),(13,51423),(13,51424),(13,51426),(13,51427),(13,51428),(13,51429),(13,51430),(13,51431),(14,49287),(15,48178),(15,48180),(15,48181),(15,48182),(15,48187),(15,48188),(15,48189),(15,48190),(15,48191),(15,48201),(15,48202),(15,48203),(15,48204),(15,48205),(15,48206),(15,48207),(15,48208),(15,48209),(15,48210),(15,48211),(15,48212),(15,48213),(15,48214),(15,48215),(15,48216),(15,48217),(15,48218),(15,48219),(15,48223),(15,48224),(15,48225),(15,48226),(15,48227),(15,48228),(15,48229),(15,48230),(15,48234),(15,48235),(15,48236),(15,48237),(15,48238),(15,48239),(15,48240),(15,48241),(15,48242),(15,48243),(15,48244),(15,48245),(15,48246),(15,48247),(15,48251),(15,48252),(15,48253),(15,48254),(15,48255),(15,48256),(15,48257),(15,48258),(15,48259),(15,48260),(15,48261),(15,48262),(15,48263),(15,48285),(15,48534),(15,48536),(15,48538),(15,48539),(15,48540),(15,48541),(15,48542),(15,48543),(15,48547),(15,48551),(15,48552),(15,49963),(15,49964),(15,49965),(15,49966),(15,49971),(15,49972),(15,49978),(15,49979),(15,49982),(15,49983),(15,50041),(15,50573),(15,50708),(16,47028),(16,47029),(17,46424),(17,46429),(17,46432),(17,46435),(17,46438),(17,46441),(17,46447),(17,46481),(17,46485),(17,46488),(17,46505),(17,46542),(17,46545),(17,46548),(17,46550),(17,46554),(17,46560);
/*!40000 ALTER TABLE `cuB_fbv_attachment_folder` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_links`
--

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

--
-- Dumping data for table `cuB_links`
--

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

--
-- Table structure for table `cuB_nf3_action_meta`
--

DROP TABLE IF EXISTS `cuB_nf3_action_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_nf3_action_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `key` longtext NOT NULL,
  `value` longtext,
  `meta_key` longtext,
  `meta_value` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=649 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_nf3_action_meta`
--

LOCK TABLES `cuB_nf3_action_meta` WRITE;
/*!40000 ALTER TABLE `cuB_nf3_action_meta` DISABLE KEYS */;
INSERT INTO `cuB_nf3_action_meta` VALUES (1,1,'title','','title',''),(2,1,'key','','key',''),(3,1,'type','handler','type','handler'),(4,1,'active','1','active','1'),(5,1,'created_at','2018-08-22 16:22:45','created_at','2018-08-22 16:22:45'),(6,1,'objectType','Action','objectType','Action'),(7,1,'objectDomain','actions','objectDomain','actions'),(8,1,'editActive','','editActive',''),(9,1,'label','Send Notification Email','label','Send Notification Email'),(10,1,'order','0','order','0'),(11,1,'to','mail@madwcdefense.com','to','mail@madwcdefense.com'),(12,1,'drawerDisabled','','drawerDisabled',''),(13,1,'parent','2','parent','2'),(14,1,'parent_id','1','parent_id','1'),(19,3,'title','','title',''),(20,3,'key','','key',''),(21,3,'type','handler','type','handler'),(22,3,'active','1','active','1'),(23,3,'created_at','2018-08-22 16:25:11','created_at','2018-08-22 16:25:11'),(24,3,'objectType','Action','objectType','Action'),(25,3,'objectDomain','actions','objectDomain','actions'),(26,3,'editActive','','editActive',''),(27,3,'label','Send Notification Email','label','Send Notification Email'),(28,3,'order','0','order','0'),(29,3,'to','mail@madwcdefense.com','to','mail@madwcdefense.com'),(30,3,'drawerDisabled','','drawerDisabled',''),(31,3,'parent','2','parent','2'),(32,3,'parent_id','2','parent_id','2'),(37,5,'title','','title',''),(38,5,'key','','key',''),(39,5,'type','handler','type','handler'),(40,5,'active','1','active','1'),(41,5,'created_at','2019-03-08 18:06:57','created_at','2019-03-08 18:06:57'),(42,5,'objectType','Action','objectType','Action'),(43,5,'objectDomain','actions','objectDomain','actions'),(44,5,'editActive','','editActive',''),(45,5,'label','Send Notification Email','label','Send Notification Email'),(46,5,'order','0','order','0'),(47,5,'to','mail@madwcdefense.com','to','mail@madwcdefense.com'),(48,5,'drawerDisabled','','drawerDisabled',''),(49,5,'parent','2','parent','2'),(50,5,'parent_id','3','parent_id','3'),(55,7,'title','','title',''),(56,7,'key','','key',''),(57,7,'type','handler','type','handler'),(58,7,'active','1','active','1'),(59,7,'created_at','2019-04-02 18:10:40','created_at','2019-04-02 18:10:40'),(60,7,'objectType','Action','objectType','Action'),(61,7,'objectDomain','actions','objectDomain','actions'),(62,7,'editActive','','editActive',''),(63,7,'label','Send Notification Email','label','Send Notification Email'),(64,7,'order','0','order','0'),(65,7,'to','mail@madwcdefense.com','to','mail@madwcdefense.com'),(66,7,'drawerDisabled','','drawerDisabled',''),(67,7,'parent','2','parent','2'),(68,7,'parent_id','4','parent_id','4'),(69,8,'objectType','Action','objectType','Action'),(70,8,'objectDomain','actions','objectDomain','actions'),(71,8,'editActive','','editActive',''),(72,8,'conditions','a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(73,8,'to','mail@madwcdefense.com','to','mail@madwcdefense.com'),(74,8,'reply_to','','reply_to',''),(75,8,'email_subject','Website Referral/Contact Us Form','email_subject','Website Referral/Contact Us Form'),(76,8,'email_message','{fields_table}','email_message','{fields_table}'),(77,8,'email_message_plain','','email_message_plain',''),(78,8,'from_name','{field:name_1534955086592}','from_name','{field:name_1534955086592}'),(79,8,'from_address','{field:email_1534954990561}','from_address','{field:email_1534954990561}'),(80,8,'email_format','html','email_format','html'),(81,8,'cc','hearings@madwcdefense.com','cc','hearings@madwcdefense.com'),(82,8,'bcc','','bcc',''),(83,8,'drawerDisabled','','drawerDisabled',''),(84,9,'title','','title',''),(85,9,'key','','key',''),(86,9,'type','save','type','save'),(87,9,'active','1','active','1'),(88,9,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(89,9,'label','Record Submission','label','Record Submission'),(90,9,'objectType','Action','objectType','Action'),(91,9,'objectDomain','actions','objectDomain','actions'),(92,9,'editActive','','editActive',''),(93,9,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(94,9,'payment_gateways','','payment_gateways',''),(95,9,'payment_total','','payment_total',''),(96,9,'tag','','tag',''),(97,9,'to','{wp:admin_email}','to','{wp:admin_email}'),(98,9,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),(99,9,'email_message','{fields_table}','email_message','{fields_table}'),(100,9,'from_name','','from_name',''),(101,9,'from_address','','from_address',''),(102,9,'reply_to','','reply_to',''),(103,9,'email_format','html','email_format','html'),(104,9,'cc','','cc',''),(105,9,'bcc','','bcc',''),(106,9,'attach_csv','','attach_csv',''),(107,9,'redirect_url','','redirect_url',''),(108,9,'email_message_plain','','email_message_plain',''),(109,9,'parent_id','5','parent_id','5'),(110,10,'title','','title',''),(111,10,'key','','key',''),(112,10,'type','email','type','email'),(113,10,'active','1','active','1'),(114,10,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(115,10,'label','Email Confirmation','label','Email Confirmation'),(116,10,'to','{field:email}','to','{field:email}'),(117,10,'subject','This is an email action.','subject','This is an email action.'),(118,10,'message','Hello, Ninja Forms!','message','Hello, Ninja Forms!'),(119,10,'objectType','Action','objectType','Action'),(120,10,'objectDomain','actions','objectDomain','actions'),(121,10,'editActive','','editActive',''),(122,10,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(123,10,'payment_gateways','','payment_gateways',''),(124,10,'payment_total','','payment_total',''),(125,10,'tag','','tag',''),(126,10,'email_subject','Your message to The Law Offices of Melissa A. Day ','email_subject','Your message to The Law Offices of Melissa A. Day '),(127,10,'email_message','<p>Your message to The Law Offices of Melissa A. Day has been submitted and sent. A member of our team will be in touch soon!</p><p>{all_fields_table}<br></p>','email_message','<p>Your message to The Law Offices of Melissa A. Day has been submitted and sent. A member of our team will be in touch soon!</p><p>{all_fields_table}<br></p>'),(128,10,'from_name','','from_name',''),(129,10,'from_address','','from_address',''),(130,10,'reply_to','','reply_to',''),(131,10,'email_format','html','email_format','html'),(132,10,'cc','','cc',''),(133,10,'bcc','','bcc',''),(134,10,'attach_csv','','attach_csv',''),(135,10,'email_message_plain','','email_message_plain',''),(136,10,'parent_id','5','parent_id','5'),(137,11,'title','','title',''),(138,11,'key','','key',''),(139,11,'type','email','type','email'),(140,11,'active','1','active','1'),(141,11,'created_at','2016-08-24 16:47:39','created_at','2016-08-24 16:47:39'),(142,11,'objectType','Action','objectType','Action'),(143,11,'objectDomain','actions','objectDomain','actions'),(144,11,'editActive','','editActive',''),(145,11,'label','Email Notification','label','Email Notification'),(146,11,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(147,11,'payment_gateways','','payment_gateways',''),(148,11,'payment_total','','payment_total',''),(149,11,'tag','','tag',''),(150,11,'to','mail@madwcdefense.com','to','mail@madwcdefense.com'),(151,11,'email_subject','New message from {field:name} ','email_subject','New message from {field:name} '),(152,11,'email_message','<p>A message has been received via the \"Contact/Refer a Claim form\" on the firm website. See the details below.&nbsp;</p><p>{field:name}<br>{field:email}<br>{field:phone_number_1662652113554}<br>{field:message}<br><br></p>','email_message','<p>A message has been received via the \"Contact/Refer a Claim form\" on the firm website. See the details below.&nbsp;</p><p>{field:name}<br>{field:email}<br>{field:phone_number_1662652113554}<br>{field:message}<br><br></p>'),(153,11,'from_name','{field:name} (via LOMAD Website)','from_name','{field:name} (via LOMAD Website)'),(154,11,'from_address','','from_address',''),(155,11,'reply_to','','reply_to',''),(156,11,'email_format','html','email_format','html'),(157,11,'cc','hearings@madwcdefense.com','cc','hearings@madwcdefense.com'),(158,11,'bcc','','bcc',''),(159,11,'attach_csv','0','attach_csv','0'),(160,11,'email_message_plain','','email_message_plain',''),(161,11,'parent_id','5','parent_id','5'),(162,12,'title','','title',''),(163,12,'key','','key',''),(164,12,'type','successmessage','type','successmessage'),(165,12,'active','1','active','1'),(166,12,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(167,12,'label','Success Message','label','Success Message'),(168,12,'message','Thank you {field:name} for filling out my form!','message','Thank you {field:name} for filling out my form!'),(169,12,'objectType','Action','objectType','Action'),(170,12,'objectDomain','actions','objectDomain','actions'),(171,12,'editActive','','editActive',''),(172,12,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(173,12,'payment_gateways','','payment_gateways',''),(174,12,'payment_total','','payment_total',''),(175,12,'tag','','tag',''),(176,12,'to','{wp:admin_email}','to','{wp:admin_email}'),(177,12,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),(178,12,'email_message','{fields_table}','email_message','{fields_table}'),(179,12,'from_name','','from_name',''),(180,12,'from_address','','from_address',''),(181,12,'reply_to','','reply_to',''),(182,12,'email_format','html','email_format','html'),(183,12,'cc','','cc',''),(184,12,'bcc','','bcc',''),(185,12,'attach_csv','','attach_csv',''),(186,12,'redirect_url','','redirect_url',''),(187,12,'success_msg','<p style=\"text-align: center;\">Your message to The Law Offices of Melissa A. Day has been successfully submitted.</p><p style=\"text-align: center;\">A confirmation email was sent to {field:email}. Please check your junk/spam folder for the confirmation.</p><p style=\"text-align: center;\"> Thank you for your submission! A member of our team will contact you soon.</p>','success_msg','<p style=\"text-align: center;\">Your message to The Law Offices of Melissa A. Day has been successfully submitted.</p><p style=\"text-align: center;\">A confirmation email was sent to {field:email}. Please check your junk/spam folder for the confirmation.</p><p style=\"text-align: center;\"> Thank you for your submission! A member of our team will contact you soon.</p>'),(188,12,'email_message_plain','','email_message_plain',''),(189,12,'parent_id','5','parent_id','5'),(190,9,'success_msg','Your form has been successfully submitted.','success_msg','Your form has been successfully submitted.'),(191,9,'submitter_email','','submitter_email',''),(192,9,'fields-save-toggle','save_all','fields-save-toggle','save_all'),(193,9,'exception_fields','a:0:{}','exception_fields','a:0:{}'),(194,9,'set_subs_to_expire','0','set_subs_to_expire','0'),(195,9,'subs_expire_time','90','subs_expire_time','90'),(196,10,'drawerDisabled','','drawerDisabled',''),(197,11,'drawerDisabled','','drawerDisabled',''),(198,12,'drawerDisabled','','drawerDisabled',''),(305,17,'objectType','Action','objectType','Action'),(306,17,'objectDomain','actions','objectDomain','actions'),(307,17,'editActive','','editActive',''),(308,17,'conditions','a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(309,17,'to','mail@madwcdefense.com','to','mail@madwcdefense.com'),(310,17,'reply_to','','reply_to',''),(311,17,'email_subject','Email from {field:name_1534955086592} to {','email_subject','Email from {field:name_1534955086592} to {'),(312,17,'email_message','{fields_table}','email_message','{fields_table}'),(313,17,'email_message_plain','','email_message_plain',''),(314,17,'from_name','','from_name',''),(315,17,'from_address','','from_address',''),(316,17,'email_format','html','email_format','html'),(317,17,'cc','','cc',''),(318,17,'bcc','','bcc',''),(319,17,'drawerDisabled','','drawerDisabled',''),(320,18,'objectType','Action','objectType','Action'),(321,18,'objectDomain','actions','objectDomain','actions'),(322,18,'editActive','','editActive',''),(323,18,'conditions','a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(324,18,'to','{wp:admin_email}','to','{wp:admin_email}'),(325,18,'reply_to','','reply_to',''),(326,18,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),(327,18,'email_message','{fields_table}','email_message','{fields_table}'),(328,18,'email_message_plain','','email_message_plain',''),(329,18,'from_name','','from_name',''),(330,18,'from_address','','from_address',''),(331,18,'email_format','html','email_format','html'),(332,18,'cc','','cc',''),(333,18,'bcc','','bcc',''),(334,18,'success_msg','Your form has been successfully submitted.','success_msg','Your form has been successfully submitted.'),(335,18,'redirect_url','','redirect_url',''),(336,18,'submitter_email','','submitter_email',''),(337,18,'fields-save-toggle','save_all','fields-save-toggle','save_all'),(338,18,'exception_fields','a:0:{}','exception_fields','a:0:{}'),(339,18,'set_subs_to_expire','0','set_subs_to_expire','0'),(340,18,'subs_expire_time','90','subs_expire_time','90'),(341,18,'drawerDisabled','','drawerDisabled',''),(342,19,'objectType','Action','objectType','Action'),(343,19,'objectDomain','actions','objectDomain','actions'),(344,19,'editActive','','editActive',''),(345,19,'conditions','a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(346,19,'to','{field:email_1534954365299}','to','{field:email_1534954365299}'),(347,19,'reply_to','','reply_to',''),(348,19,'email_subject','Your message to The Law Offices of Melissa A. Day ','email_subject','Your message to The Law Offices of Melissa A. Day '),(349,19,'email_message','<p>Your message to The Law Offices of Melissa A. Day has been submitted and sent. A member of our team will be in touch soon!</p><p>{all_fields_table}</p>','email_message','<p>Your message to The Law Offices of Melissa A. Day has been submitted and sent. A member of our team will be in touch soon!</p><p>{all_fields_table}</p>'),(350,19,'email_message_plain','','email_message_plain',''),(351,19,'from_name','','from_name',''),(352,19,'from_address','','from_address',''),(353,19,'email_format','html','email_format','html'),(354,19,'cc','','cc',''),(355,19,'bcc','','bcc',''),(356,19,'drawerDisabled','','drawerDisabled',''),(357,20,'objectType','Action','objectType','Action'),(358,20,'objectDomain','actions','objectDomain','actions'),(359,20,'editActive','','editActive',''),(360,20,'conditions','a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(361,20,'to','mail@madwcdefense.com','to','mail@madwcdefense.com'),(362,20,'reply_to','','reply_to',''),(363,20,'email_subject','New message from {field:name} ','email_subject','New message from {field:name} '),(364,20,'email_message','<p>A message has been received via the \"Contact/Refer a Claim\" form on the firm website. See the details below.&nbsp;</p><p>{all_fields_table}<br></p>','email_message','<p>A message has been received via the \"Contact/Refer a Claim\" form on the firm website. See the details below.&nbsp;</p><p>{all_fields_table}<br></p>'),(365,20,'email_message_plain','','email_message_plain',''),(366,20,'from_name','{field:name_1534954806801} (via LOMAD Website)','from_name','{field:name_1534954806801} (via LOMAD Website)'),(367,20,'from_address','','from_address',''),(368,20,'email_format','html','email_format','html'),(369,20,'cc','hearings@madwcdefense.com','cc','hearings@madwcdefense.com'),(370,20,'bcc','','bcc',''),(371,20,'drawerDisabled','','drawerDisabled',''),(372,21,'objectType','Action','objectType','Action'),(373,21,'objectDomain','actions','objectDomain','actions'),(374,21,'editActive','','editActive',''),(375,21,'conditions','a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(376,21,'to','{wp:admin_email}','to','{wp:admin_email}'),(377,21,'reply_to','','reply_to',''),(378,21,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),(379,21,'email_message','{fields_table}','email_message','{fields_table}'),(380,21,'email_message_plain','','email_message_plain',''),(381,21,'from_name','','from_name',''),(382,21,'from_address','','from_address',''),(383,21,'email_format','html','email_format','html'),(384,21,'cc','','cc',''),(385,21,'bcc','','bcc',''),(386,21,'success_msg','<p style=\"text-align: center;\">Your message to The Law Offices of Melissa A. Day has been successfully submitted.</p><p style=\"text-align: center;\">A confirmation email was sent to {field:email_1534954365299}. Please check your junk/spam folder for the confirmation.</p><p style=\"text-align: center;\">Thank you for your submission! A member of our team will contact you soon.</p>','success_msg','<p style=\"text-align: center;\">Your message to The Law Offices of Melissa A. Day has been successfully submitted.</p><p style=\"text-align: center;\">A confirmation email was sent to {field:email_1534954365299}. Please check your junk/spam folder for the confirmation.</p><p style=\"text-align: center;\">Thank you for your submission! A member of our team will contact you soon.</p>'),(387,21,'drawerDisabled','','drawerDisabled',''),(388,22,'title','','title',''),(389,22,'key','','key',''),(390,22,'type','handler','type','handler'),(391,22,'active','1','active','1'),(392,22,'created_at','2018-08-22 16:22:45','created_at','2018-08-22 16:22:45'),(393,22,'objectType','Action','objectType','Action'),(394,22,'objectDomain','actions','objectDomain','actions'),(395,22,'editActive','','editActive',''),(396,22,'label','Send Notification Email','label','Send Notification Email'),(397,22,'order','0','order','0'),(398,22,'to','mail@madwcdefense.com','to','mail@madwcdefense.com'),(399,22,'drawerDisabled','','drawerDisabled',''),(400,22,'parent','2','parent','2'),(401,22,'parent_id','1','parent_id','1'),(403,23,'objectType','Action','objectType','Action'),(404,23,'objectDomain','actions','objectDomain','actions'),(405,23,'editActive','','editActive',''),(406,23,'conditions','a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(407,23,'to','{wp:admin_email}','to','{wp:admin_email}'),(408,23,'reply_to','','reply_to',''),(409,23,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),(410,23,'email_message','{fields_table}','email_message','{fields_table}'),(411,23,'email_message_plain','','email_message_plain',''),(412,23,'from_name','','from_name',''),(413,23,'from_address','','from_address',''),(414,23,'email_format','html','email_format','html'),(415,23,'cc','','cc',''),(416,23,'bcc','','bcc',''),(417,23,'success_msg','Your form has been successfully submitted.','success_msg','Your form has been successfully submitted.'),(418,23,'redirect_url','','redirect_url',''),(419,23,'submitter_email','','submitter_email',''),(420,23,'fields-save-toggle','save_all','fields-save-toggle','save_all'),(421,23,'exception_fields','a:0:{}','exception_fields','a:0:{}'),(422,23,'set_subs_to_expire','0','set_subs_to_expire','0'),(423,23,'subs_expire_time','90','subs_expire_time','90'),(424,23,'drawerDisabled','','drawerDisabled',''),(434,24,'objectType','Action','objectType','Action'),(435,24,'objectDomain','actions','objectDomain','actions'),(436,24,'editActive','','editActive',''),(437,24,'conditions','a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(438,24,'to','{field:email_1534954365299}','to','{field:email_1534954365299}'),(439,24,'reply_to','','reply_to',''),(440,24,'email_subject','Your message to The Law Offices of Melissa A. Day ','email_subject','Your message to The Law Offices of Melissa A. Day '),(441,24,'email_message','<p>Your message to The Law Offices of Melissa A. Day has been submitted and sent. A member of our team will be in touch soon!</p><p>{all_fields_table}</p>','email_message','<p>Your message to The Law Offices of Melissa A. Day has been submitted and sent. A member of our team will be in touch soon!</p><p>{all_fields_table}</p>'),(442,24,'email_message_plain','','email_message_plain',''),(443,24,'from_name','','from_name',''),(444,24,'from_address','','from_address',''),(445,24,'email_format','html','email_format','html'),(446,24,'cc','','cc',''),(447,24,'bcc','','bcc',''),(448,24,'drawerDisabled','','drawerDisabled',''),(449,25,'objectType','Action','objectType','Action'),(450,25,'objectDomain','actions','objectDomain','actions'),(451,25,'editActive','','editActive',''),(452,25,'conditions','a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(453,25,'to','mail@madwcdefense.com','to','mail@madwcdefense.com'),(454,25,'reply_to','','reply_to',''),(455,25,'email_subject','New message from {field:name} ','email_subject','New message from {field:name} '),(456,25,'email_message','<p>A message has been received via the \"Contact/Refer a Claim\" form on the firm website. See the details below.&nbsp;</p><p>{all_fields_table}<br></p>','email_message','<p>A message has been received via the \"Contact/Refer a Claim\" form on the firm website. See the details below.&nbsp;</p><p>{all_fields_table}<br></p>'),(457,25,'email_message_plain','','email_message_plain',''),(458,25,'from_name','{field:name_1534954806801} (via LOMAD Website)','from_name','{field:name_1534954806801} (via LOMAD Website)'),(459,25,'from_address','','from_address',''),(460,25,'email_format','html','email_format','html'),(461,25,'cc','hearings@madwcdefense.com','cc','hearings@madwcdefense.com'),(462,25,'bcc','','bcc',''),(463,25,'drawerDisabled','','drawerDisabled',''),(464,26,'objectType','Action','objectType','Action'),(465,26,'objectDomain','actions','objectDomain','actions'),(466,26,'editActive','','editActive',''),(467,26,'conditions','a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(468,26,'to','{wp:admin_email}','to','{wp:admin_email}'),(469,26,'reply_to','','reply_to',''),(470,26,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),(471,26,'email_message','{fields_table}','email_message','{fields_table}'),(472,26,'email_message_plain','','email_message_plain',''),(473,26,'from_name','','from_name',''),(474,26,'from_address','','from_address',''),(475,26,'email_format','html','email_format','html'),(476,26,'cc','','cc',''),(477,26,'bcc','','bcc',''),(478,26,'success_msg','<p style=\"text-align: center;\">Your message to The Law Offices of Melissa A. Day has been successfully submitted.</p><p style=\"text-align: center;\">A confirmation email was sent to {field:email_1534954365299}. Please check your junk/spam folder for the confirmation.</p><p style=\"text-align: center;\">Thank you for your submission! A member of our team will contact you soon.</p>','success_msg','<p style=\"text-align: center;\">Your message to The Law Offices of Melissa A. Day has been successfully submitted.</p><p style=\"text-align: center;\">A confirmation email was sent to {field:email_1534954365299}. Please check your junk/spam folder for the confirmation.</p><p style=\"text-align: center;\">Thank you for your submission! A member of our team will contact you soon.</p>'),(479,26,'drawerDisabled','','drawerDisabled',''),(495,27,'title','','title',''),(496,27,'key','','key',''),(497,27,'type','save','type','save'),(498,27,'active','1','active','1'),(499,27,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(500,27,'label','Record Submission','label','Record Submission'),(501,27,'objectType','Action','objectType','Action'),(502,27,'objectDomain','actions','objectDomain','actions'),(503,27,'editActive','','editActive',''),(504,27,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(505,27,'payment_gateways','','payment_gateways',''),(506,27,'payment_total','','payment_total',''),(507,27,'tag','','tag',''),(508,27,'to','{wp:admin_email}','to','{wp:admin_email}'),(509,27,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),(510,27,'email_message','{fields_table}','email_message','{fields_table}'),(511,27,'from_name','','from_name',''),(512,27,'from_address','','from_address',''),(513,27,'reply_to','','reply_to',''),(514,27,'email_format','html','email_format','html'),(515,27,'cc','','cc',''),(516,27,'bcc','','bcc',''),(517,27,'attach_csv','','attach_csv',''),(518,27,'redirect_url','','redirect_url',''),(519,27,'email_message_plain','','email_message_plain',''),(520,27,'parent_id','5','parent_id','5'),(521,27,'success_msg','Your form has been successfully submitted.','success_msg','Your form has been successfully submitted.'),(522,27,'submitter_email','','submitter_email',''),(523,27,'fields-save-toggle','save_all','fields-save-toggle','save_all'),(524,27,'exception_fields','a:0:{}','exception_fields','a:0:{}'),(525,27,'set_subs_to_expire','0','set_subs_to_expire','0'),(526,27,'subs_expire_time','90','subs_expire_time','90'),(558,28,'title','','title',''),(559,28,'key','','key',''),(560,28,'type','email','type','email'),(561,28,'active','1','active','1'),(562,28,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(563,28,'label','Email Confirmation','label','Email Confirmation'),(564,28,'to','{field:email}','to','{field:email}'),(565,28,'subject','This is an email action.','subject','This is an email action.'),(566,28,'message','Hello, Ninja Forms!','message','Hello, Ninja Forms!'),(567,28,'objectType','Action','objectType','Action'),(568,28,'objectDomain','actions','objectDomain','actions'),(569,28,'editActive','','editActive',''),(570,28,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(571,28,'payment_gateways','','payment_gateways',''),(572,28,'payment_total','','payment_total',''),(573,28,'tag','','tag',''),(574,28,'email_subject','Your message to The Law Offices of Melissa A. Day ','email_subject','Your message to The Law Offices of Melissa A. Day '),(575,28,'email_message','<p>Your message to The Law Offices of Melissa A. Day has been submitted and sent. A member of our team will be in touch soon!</p><p>{all_fields_table}<br></p>','email_message','<p>Your message to The Law Offices of Melissa A. Day has been submitted and sent. A member of our team will be in touch soon!</p><p>{all_fields_table}<br></p>'),(576,28,'from_name','','from_name',''),(577,28,'from_address','','from_address',''),(578,28,'reply_to','','reply_to',''),(579,28,'email_format','html','email_format','html'),(580,28,'cc','','cc',''),(581,28,'bcc','','bcc',''),(582,28,'attach_csv','','attach_csv',''),(583,28,'email_message_plain','','email_message_plain',''),(584,28,'parent_id','5','parent_id','5'),(585,28,'drawerDisabled','','drawerDisabled',''),(589,29,'title','','title',''),(590,29,'key','','key',''),(591,29,'type','email','type','email'),(592,29,'active','1','active','1'),(593,29,'created_at','2016-08-24 16:47:39','created_at','2016-08-24 16:47:39'),(594,29,'objectType','Action','objectType','Action'),(595,29,'objectDomain','actions','objectDomain','actions'),(596,29,'editActive','','editActive',''),(597,29,'label','Email Notification','label','Email Notification'),(598,29,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(599,29,'payment_gateways','','payment_gateways',''),(600,29,'payment_total','','payment_total',''),(601,29,'tag','','tag',''),(602,29,'to','mail@madwcdefense.com','to','mail@madwcdefense.com'),(603,29,'email_subject','New message from {field:name} ','email_subject','New message from {field:name} '),(604,29,'email_message','<p>A message has been received via the \"Contact/Refer a Claim form\" on the firm website. See the details below.&nbsp;</p><p>{field:name}<br>{field:email}<br>{field:phone_number_1662652113554}<br>{field:message}<br><br></p>','email_message','<p>A message has been received via the \"Contact/Refer a Claim form\" on the firm website. See the details below.&nbsp;</p><p>{field:name}<br>{field:email}<br>{field:phone_number_1662652113554}<br>{field:message}<br><br></p>'),(605,29,'from_name','{field:name} (via LOMAD Website)','from_name','{field:name} (via LOMAD Website)'),(606,29,'from_address','','from_address',''),(607,29,'reply_to','','reply_to',''),(608,29,'email_format','html','email_format','html'),(609,29,'cc','hearings@madwcdefense.com','cc','hearings@madwcdefense.com'),(610,29,'bcc','','bcc',''),(611,29,'attach_csv','0','attach_csv','0'),(612,29,'email_message_plain','','email_message_plain',''),(613,29,'parent_id','5','parent_id','5'),(614,29,'drawerDisabled','','drawerDisabled',''),(620,30,'title','','title',''),(621,30,'key','','key',''),(622,30,'type','successmessage','type','successmessage'),(623,30,'active','1','active','1'),(624,30,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(625,30,'label','Success Message','label','Success Message'),(626,30,'message','Thank you {field:name} for filling out my form!','message','Thank you {field:name} for filling out my form!'),(627,30,'objectType','Action','objectType','Action'),(628,30,'objectDomain','actions','objectDomain','actions'),(629,30,'editActive','','editActive',''),(630,30,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(631,30,'payment_gateways','','payment_gateways',''),(632,30,'payment_total','','payment_total',''),(633,30,'tag','','tag',''),(634,30,'to','{wp:admin_email}','to','{wp:admin_email}'),(635,30,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),(636,30,'email_message','{fields_table}','email_message','{fields_table}'),(637,30,'from_name','','from_name',''),(638,30,'from_address','','from_address',''),(639,30,'reply_to','','reply_to',''),(640,30,'email_format','html','email_format','html'),(641,30,'cc','','cc',''),(642,30,'bcc','','bcc',''),(643,30,'attach_csv','','attach_csv',''),(644,30,'redirect_url','','redirect_url',''),(645,30,'success_msg','<p style=\"text-align: center;\">Your message to The Law Offices of Melissa A. Day has been successfully submitted.</p><p style=\"text-align: center;\">A confirmation email was sent to {field:email}. Please check your junk/spam folder for the confirmation.</p><p style=\"text-align: center;\"> Thank you for your submission! A member of our team will contact you soon.</p>','success_msg','<p style=\"text-align: center;\">Your message to The Law Offices of Melissa A. Day has been successfully submitted.</p><p style=\"text-align: center;\">A confirmation email was sent to {field:email}. Please check your junk/spam folder for the confirmation.</p><p style=\"text-align: center;\"> Thank you for your submission! A member of our team will contact you soon.</p>'),(646,30,'email_message_plain','','email_message_plain',''),(647,30,'parent_id','5','parent_id','5'),(648,30,'drawerDisabled','','drawerDisabled','');
/*!40000 ALTER TABLE `cuB_nf3_action_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_nf3_actions`
--

DROP TABLE IF EXISTS `cuB_nf3_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_nf3_actions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` longtext,
  `key` longtext,
  `type` longtext,
  `active` tinyint(1) DEFAULT '1',
  `parent_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  `label` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_nf3_actions`
--

LOCK TABLES `cuB_nf3_actions` WRITE;
/*!40000 ALTER TABLE `cuB_nf3_actions` DISABLE KEYS */;
INSERT INTO `cuB_nf3_actions` VALUES (1,'','','handler',1,1,'2018-08-22 16:22:45',NULL,'Send Notification Email'),(3,'','','handler',1,2,'2018-08-22 16:25:11',NULL,'Send Notification Email'),(5,'','','handler',1,3,'2019-03-08 18:06:57',NULL,'Send Notification Email'),(7,'','','handler',1,4,'2019-04-02 18:10:40',NULL,'Send Notification Email'),(8,NULL,NULL,'email',1,2,'2022-09-08 15:28:08','2022-09-08 11:28:08','Send Notification Email'),(9,'','','save',1,5,'2016-08-24 22:39:20',NULL,'Record Submission'),(10,'','','email',1,5,'2016-08-24 22:39:20',NULL,'Email Confirmation'),(11,'','','email',1,5,'2016-08-24 22:47:39',NULL,'Email Notification'),(12,'','','successmessage',1,5,'2016-08-24 22:39:20',NULL,'Success Message'),(17,NULL,NULL,'email',1,3,'2022-09-08 16:26:10','2022-09-08 12:26:10','Send Notification Email'),(18,NULL,NULL,'save',1,1,'2022-09-14 14:57:34','2022-09-14 10:57:34','Record Submission'),(19,NULL,NULL,'email',1,1,'2022-09-14 15:02:39','2022-09-14 11:02:39','Email Confirmation'),(20,NULL,NULL,'email',1,1,'2022-09-14 15:02:39','2022-09-14 11:02:39','Email Notification'),(21,NULL,NULL,'successmessage',1,1,'2022-09-14 15:02:39','2022-09-14 11:02:39','Success Message'),(22,'','','handler',1,7,'2022-09-14 17:40:30',NULL,'Send Notification Email'),(23,NULL,NULL,'save',1,7,'2022-09-14 17:40:30',NULL,'Record Submission'),(24,NULL,NULL,'email',1,7,'2022-09-14 17:40:30',NULL,'Email Confirmation'),(25,NULL,NULL,'email',1,7,'2022-09-14 17:40:30',NULL,'Email Notification'),(26,NULL,NULL,'successmessage',1,7,'2022-09-14 17:40:30',NULL,'Success Message'),(27,'','','save',1,8,'2022-09-19 19:56:01',NULL,'Record Submission'),(28,'','','email',1,8,'2022-09-19 19:56:01',NULL,'Email Confirmation'),(29,'','','email',1,8,'2022-09-19 19:56:01',NULL,'Email Notification'),(30,'','','successmessage',1,8,'2022-09-19 19:56:01',NULL,'Success Message');
/*!40000 ALTER TABLE `cuB_nf3_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_nf3_chunks`
--

DROP TABLE IF EXISTS `cuB_nf3_chunks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_nf3_chunks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(200) DEFAULT NULL,
  `value` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_nf3_chunks`
--

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

--
-- Table structure for table `cuB_nf3_field_meta`
--

DROP TABLE IF EXISTS `cuB_nf3_field_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_nf3_field_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `key` longtext NOT NULL,
  `value` longtext,
  `meta_key` longtext,
  `meta_value` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3765 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_nf3_field_meta`
--

LOCK TABLES `cuB_nf3_field_meta` WRITE;
/*!40000 ALTER TABLE `cuB_nf3_field_meta` DISABLE KEYS */;
INSERT INTO `cuB_nf3_field_meta` VALUES (1,1,'objectType','Field','objectType','Field'),(2,1,'objectDomain','fields','objectDomain','fields'),(3,1,'editActive','','editActive',''),(4,1,'order','1','order','1'),(5,1,'type','html','type','html'),(6,1,'label','Personal Information','label','Personal Information'),(7,1,'default','','default',''),(8,1,'container_class','','container_class',''),(9,1,'element_class','','element_class',''),(10,1,'wrap_styles_border','','wrap_styles_border',''),(11,1,'wrap_styles_width','','wrap_styles_width',''),(12,1,'wrap_styles_margin','','wrap_styles_margin',''),(13,1,'wrap_styles_padding','','wrap_styles_padding',''),(14,1,'wrap_styles_float','','wrap_styles_float',''),(15,1,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(16,1,'label_styles_border','','label_styles_border',''),(17,1,'label_styles_width','','label_styles_width',''),(18,1,'label_styles_font-size','','label_styles_font-size',''),(19,1,'label_styles_margin','','label_styles_margin',''),(20,1,'label_styles_padding','','label_styles_padding',''),(21,1,'label_styles_float','','label_styles_float',''),(22,1,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(23,1,'element_styles_border','','element_styles_border',''),(24,1,'element_styles_width','','element_styles_width',''),(25,1,'element_styles_font-size','','element_styles_font-size',''),(26,1,'element_styles_margin','','element_styles_margin',''),(27,1,'element_styles_padding','','element_styles_padding',''),(28,1,'element_styles_float','','element_styles_float',''),(29,1,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(30,1,'cellcid','c4047','cellcid','c4047'),(31,1,'key','personal_information_1534954814742','key','personal_information_1534954814742'),(32,1,'drawerDisabled','','drawerDisabled',''),(33,1,'parent_id','1','parent_id','1'),(34,2,'objectType','Field','objectType','Field'),(35,2,'objectDomain','fields','objectDomain','fields'),(36,2,'editActive','','editActive',''),(37,2,'order','2','order','2'),(38,2,'type','firstname','type','firstname'),(39,2,'label','Name','label','Name'),(40,2,'key','name_1534954806801','key','name_1534954806801'),(41,2,'label_pos','default','label_pos','default'),(42,2,'required','','required',''),(43,2,'default','','default',''),(44,2,'placeholder','','placeholder',''),(45,2,'container_class','','container_class',''),(46,2,'element_class','','element_class',''),(47,2,'admin_label','contactName','admin_label','contactName'),(48,2,'help_text','','help_text',''),(49,2,'custom_name_attribute','fname','custom_name_attribute','fname'),(50,2,'personally_identifiable','1','personally_identifiable','1'),(51,2,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(52,2,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(53,2,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(54,2,'cellcid','c4051','cellcid','c4051'),(55,2,'drawerDisabled','','drawerDisabled',''),(56,2,'parent_id','1','parent_id','1'),(57,3,'objectType','Field','objectType','Field'),(58,3,'objectDomain','fields','objectDomain','fields'),(59,3,'editActive','','editActive',''),(60,3,'order','3','order','3'),(61,3,'type','email','type','email'),(62,3,'label','Email','label','Email'),(63,3,'key','email_1534954365299','key','email_1534954365299'),(64,3,'label_pos','default','label_pos','default'),(65,3,'required','1','required','1'),(66,3,'default','','default',''),(67,3,'placeholder','','placeholder',''),(68,3,'container_class','','container_class',''),(69,3,'element_class','','element_class',''),(70,3,'admin_label','emailFromAddress','admin_label','emailFromAddress'),(71,3,'help_text','','help_text',''),(72,3,'custom_name_attribute','email','custom_name_attribute','email'),(73,3,'personally_identifiable','1','personally_identifiable','1'),(74,3,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(75,3,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(76,3,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(77,3,'cellcid','c4054','cellcid','c4054'),(78,3,'drawerDisabled','','drawerDisabled',''),(79,3,'parent_id','1','parent_id','1'),(80,4,'objectType','Field','objectType','Field'),(81,4,'objectDomain','fields','objectDomain','fields'),(82,4,'editActive','','editActive',''),(83,4,'order','4','order','4'),(84,4,'type','phone','type','phone'),(85,4,'label','Phone','label','Phone'),(86,4,'key','phone_1534954373936','key','phone_1534954373936'),(87,4,'label_pos','default','label_pos','default'),(88,4,'required','','required',''),(89,4,'default','','default',''),(90,4,'placeholder','','placeholder',''),(91,4,'container_class','','container_class',''),(92,4,'element_class','','element_class',''),(93,4,'input_limit','','input_limit',''),(94,4,'input_limit_type','characters','input_limit_type','characters'),(95,4,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(96,4,'manual_key','','manual_key',''),(97,4,'admin_label','contactPhone','admin_label','contactPhone'),(98,4,'help_text','','help_text',''),(99,4,'mask','(999) 999-9999','mask','(999) 999-9999'),(100,4,'custom_mask','','custom_mask',''),(101,4,'custom_name_attribute','phone','custom_name_attribute','phone'),(102,4,'personally_identifiable','1','personally_identifiable','1'),(103,4,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(104,4,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(105,4,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(106,4,'cellcid','c4057','cellcid','c4057'),(107,4,'drawerDisabled','','drawerDisabled',''),(108,4,'parent_id','1','parent_id','1'),(109,5,'objectType','Field','objectType','Field'),(110,5,'objectDomain','fields','objectDomain','fields'),(111,5,'editActive','','editActive',''),(112,5,'order','5','order','5'),(113,5,'type','zip','type','zip'),(114,5,'label','Zip','label','Zip'),(115,5,'key','zip_1534954373399','key','zip_1534954373399'),(116,5,'label_pos','default','label_pos','default'),(117,5,'required','','required',''),(118,5,'default','','default',''),(119,5,'placeholder','','placeholder',''),(120,5,'container_class','','container_class',''),(121,5,'element_class','','element_class',''),(122,5,'input_limit','','input_limit',''),(123,5,'input_limit_type','characters','input_limit_type','characters'),(124,5,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(125,5,'manual_key','','manual_key',''),(126,5,'admin_label','contactZip','admin_label','contactZip'),(127,5,'help_text','','help_text',''),(128,5,'mask','','mask',''),(129,5,'custom_mask','','custom_mask',''),(130,5,'custom_name_attribute','zip','custom_name_attribute','zip'),(131,5,'personally_identifiable','','personally_identifiable',''),(132,5,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(133,5,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(134,5,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(135,5,'cellcid','c4060','cellcid','c4060'),(136,5,'parent_id','1','parent_id','1'),(137,6,'objectType','Field','objectType','Field'),(138,6,'objectDomain','fields','objectDomain','fields'),(139,6,'editActive','','editActive',''),(140,6,'order','6','order','6'),(141,6,'type','liststate','type','liststate'),(142,6,'label','US States','label','US States'),(143,6,'key','liststate_1534954369789','key','liststate_1534954369789'),(144,6,'label_pos','default','label_pos','default'),(145,6,'required','','required',''),(146,6,'options','a:54:{i:0;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Alabama\";s:5:\"value\";s:2:\"AL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:1;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Alaska\";s:5:\"value\";s:2:\"AK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:2;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Arizona\";s:5:\"value\";s:2:\"AZ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:2;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:3;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Arkansas\";s:5:\"value\";s:2:\"AR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:3;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:4;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"California\";s:5:\"value\";s:2:\"CA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:4;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:5;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Colorado\";s:5:\"value\";s:2:\"CO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:5;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:6;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:11:\"Connecticut\";s:5:\"value\";s:2:\"CT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:6;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:7;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Delaware\";s:5:\"value\";s:2:\"DE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:7;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:8;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Florida\";s:5:\"value\";s:2:\"FL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:8;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:9;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Georgia\";s:5:\"value\";s:2:\"GA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:9;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:10;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Hawaii\";s:5:\"value\";s:2:\"HI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:10;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:11;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Idaho\";s:5:\"value\";s:2:\"ID\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:11;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:12;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Illinois\";s:5:\"value\";s:2:\"IL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:12;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:13;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Indiana\";s:5:\"value\";s:2:\"IN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:13;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:14;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Iowa\";s:5:\"value\";s:2:\"IA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:14;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:15;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Kansas\";s:5:\"value\";s:2:\"KS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:15;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:16;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Kentucky\";s:5:\"value\";s:2:\"KY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:16;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:17;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Louisiana\";s:5:\"value\";s:2:\"LA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:17;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:18;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Maine\";s:5:\"value\";s:2:\"ME\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:18;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:19;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Maryland\";s:5:\"value\";s:2:\"MD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:19;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:20;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"Massachusetts\";s:5:\"value\";s:2:\"MA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:20;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:21;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Michigan\";s:5:\"value\";s:2:\"MI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:21;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:22;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Minnesota\";s:5:\"value\";s:2:\"MN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:22;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:23;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:11:\"Mississippi\";s:5:\"value\";s:2:\"MS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:23;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:24;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Missouri\";s:5:\"value\";s:2:\"MO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:24;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:25;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Montana\";s:5:\"value\";s:2:\"MT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:25;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:26;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Nebraska\";s:5:\"value\";s:2:\"NE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:26;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:27;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Nevada\";s:5:\"value\";s:2:\"NV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:27;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:28;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"New Hampshire\";s:5:\"value\";s:2:\"NH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:28;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:29;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"New Jersey\";s:5:\"value\";s:2:\"NJ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:29;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:30;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"New Mexico\";s:5:\"value\";s:2:\"NM\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:30;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:31;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"New York\";s:5:\"value\";s:2:\"NY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:31;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:32;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:14:\"North Carolina\";s:5:\"value\";s:2:\"NC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:32;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:33;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"North Dakota\";s:5:\"value\";s:2:\"ND\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:33;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:34;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Ohio\";s:5:\"value\";s:2:\"OH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:34;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:35;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Oklahoma\";s:5:\"value\";s:2:\"OK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:35;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:36;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Oregon\";s:5:\"value\";s:2:\"OR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:36;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:37;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"Pennsylvania\";s:5:\"value\";s:2:\"PA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:37;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:38;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"Rhode Island\";s:5:\"value\";s:2:\"RI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:38;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:39;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:14:\"South Carolina\";s:5:\"value\";s:2:\"SC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:39;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:40;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"South Dakota\";s:5:\"value\";s:2:\"SD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:40;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:41;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Tennessee\";s:5:\"value\";s:2:\"TN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:41;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:42;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Texas\";s:5:\"value\";s:2:\"TX\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:42;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:43;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Utah\";s:5:\"value\";s:2:\"UT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:43;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:44;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Vermont\";s:5:\"value\";s:2:\"VT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:44;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:45;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Virginia\";s:5:\"value\";s:2:\"VA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:45;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:46;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"Washington\";s:5:\"value\";s:2:\"WA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:46;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:47;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"West Virginia\";s:5:\"value\";s:2:\"WV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:47;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:48;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Wisconsin\";s:5:\"value\";s:2:\"WI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:48;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:49;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Wyoming\";s:5:\"value\";s:2:\"WY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:49;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:50;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"Washington DC\";s:5:\"value\";s:2:\"DC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:50;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:51;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:51:\"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST\";s:5:\"value\";s:2:\"AE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:51;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:52;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:36:\"ARMED FORCES AMERICA (EXCEPT CANADA)\";s:5:\"value\";s:2:\"AA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:52;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:53;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:20:\"ARMED FORCES PACIFIC\";s:5:\"value\";s:2:\"AP\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:53;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}}','options','a:54:{i:0;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Alabama\";s:5:\"value\";s:2:\"AL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:1;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Alaska\";s:5:\"value\";s:2:\"AK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:2;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Arizona\";s:5:\"value\";s:2:\"AZ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:2;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:3;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Arkansas\";s:5:\"value\";s:2:\"AR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:3;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:4;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"California\";s:5:\"value\";s:2:\"CA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:4;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:5;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Colorado\";s:5:\"value\";s:2:\"CO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:5;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:6;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:11:\"Connecticut\";s:5:\"value\";s:2:\"CT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:6;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:7;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Delaware\";s:5:\"value\";s:2:\"DE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:7;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:8;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Florida\";s:5:\"value\";s:2:\"FL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:8;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:9;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Georgia\";s:5:\"value\";s:2:\"GA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:9;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:10;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Hawaii\";s:5:\"value\";s:2:\"HI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:10;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:11;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Idaho\";s:5:\"value\";s:2:\"ID\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:11;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:12;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Illinois\";s:5:\"value\";s:2:\"IL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:12;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:13;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Indiana\";s:5:\"value\";s:2:\"IN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:13;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:14;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Iowa\";s:5:\"value\";s:2:\"IA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:14;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:15;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Kansas\";s:5:\"value\";s:2:\"KS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:15;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:16;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Kentucky\";s:5:\"value\";s:2:\"KY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:16;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:17;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Louisiana\";s:5:\"value\";s:2:\"LA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:17;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:18;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Maine\";s:5:\"value\";s:2:\"ME\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:18;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:19;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Maryland\";s:5:\"value\";s:2:\"MD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:19;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:20;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"Massachusetts\";s:5:\"value\";s:2:\"MA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:20;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:21;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Michigan\";s:5:\"value\";s:2:\"MI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:21;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:22;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Minnesota\";s:5:\"value\";s:2:\"MN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:22;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:23;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:11:\"Mississippi\";s:5:\"value\";s:2:\"MS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:23;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:24;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Missouri\";s:5:\"value\";s:2:\"MO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:24;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:25;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Montana\";s:5:\"value\";s:2:\"MT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:25;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:26;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Nebraska\";s:5:\"value\";s:2:\"NE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:26;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:27;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Nevada\";s:5:\"value\";s:2:\"NV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:27;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:28;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"New Hampshire\";s:5:\"value\";s:2:\"NH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:28;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:29;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"New Jersey\";s:5:\"value\";s:2:\"NJ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:29;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:30;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"New Mexico\";s:5:\"value\";s:2:\"NM\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:30;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:31;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"New York\";s:5:\"value\";s:2:\"NY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:31;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:32;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:14:\"North Carolina\";s:5:\"value\";s:2:\"NC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:32;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:33;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"North Dakota\";s:5:\"value\";s:2:\"ND\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:33;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:34;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Ohio\";s:5:\"value\";s:2:\"OH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:34;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:35;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Oklahoma\";s:5:\"value\";s:2:\"OK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:35;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:36;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Oregon\";s:5:\"value\";s:2:\"OR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:36;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:37;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"Pennsylvania\";s:5:\"value\";s:2:\"PA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:37;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:38;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"Rhode Island\";s:5:\"value\";s:2:\"RI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:38;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:39;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:14:\"South Carolina\";s:5:\"value\";s:2:\"SC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:39;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:40;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"South Dakota\";s:5:\"value\";s:2:\"SD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:40;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:41;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Tennessee\";s:5:\"value\";s:2:\"TN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:41;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:42;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Texas\";s:5:\"value\";s:2:\"TX\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:42;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:43;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Utah\";s:5:\"value\";s:2:\"UT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:43;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:44;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Vermont\";s:5:\"value\";s:2:\"VT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:44;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:45;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Virginia\";s:5:\"value\";s:2:\"VA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:45;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:46;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"Washington\";s:5:\"value\";s:2:\"WA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:46;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:47;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"West Virginia\";s:5:\"value\";s:2:\"WV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:47;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:48;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Wisconsin\";s:5:\"value\";s:2:\"WI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:48;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:49;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Wyoming\";s:5:\"value\";s:2:\"WY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:49;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:50;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"Washington DC\";s:5:\"value\";s:2:\"DC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:50;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:51;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:51:\"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST\";s:5:\"value\";s:2:\"AE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:51;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:52;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:36:\"ARMED FORCES AMERICA (EXCEPT CANADA)\";s:5:\"value\";s:2:\"AA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:52;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:53;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:20:\"ARMED FORCES PACIFIC\";s:5:\"value\";s:2:\"AP\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:53;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}}'),(147,6,'container_class','','container_class',''),(148,6,'element_class','','element_class',''),(149,6,'admin_label','','admin_label',''),(150,6,'help_text','','help_text',''),(151,6,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(152,6,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(153,6,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(154,6,'list_item_row_styles_show_advanced_css','0','list_item_row_styles_show_advanced_css','0'),(155,6,'list_item_label_styles_show_advanced_css','0','list_item_label_styles_show_advanced_css','0'),(156,6,'list_item_element_styles_show_advanced_css','0','list_item_element_styles_show_advanced_css','0'),(157,6,'cellcid','c4063','cellcid','c4063'),(158,6,'drawerDisabled','','drawerDisabled',''),(159,6,'parent_id','1','parent_id','1'),(160,7,'objectType','Field','objectType','Field'),(161,7,'objectDomain','fields','objectDomain','fields'),(162,7,'editActive','','editActive',''),(163,7,'order','7','order','7'),(164,7,'type','html','type','html'),(165,7,'label','Contact Preferences','label','Contact Preferences'),(166,7,'default','','default',''),(167,7,'container_class','','container_class',''),(168,7,'element_class','','element_class',''),(169,7,'wrap_styles_border','','wrap_styles_border',''),(170,7,'wrap_styles_width','','wrap_styles_width',''),(171,7,'wrap_styles_margin','','wrap_styles_margin',''),(172,7,'wrap_styles_padding','','wrap_styles_padding',''),(173,7,'wrap_styles_float','','wrap_styles_float',''),(174,7,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(175,7,'label_styles_border','','label_styles_border',''),(176,7,'label_styles_width','','label_styles_width',''),(177,7,'label_styles_font-size','','label_styles_font-size',''),(178,7,'label_styles_margin','','label_styles_margin',''),(179,7,'label_styles_padding','','label_styles_padding',''),(180,7,'label_styles_float','','label_styles_float',''),(181,7,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(182,7,'element_styles_border','','element_styles_border',''),(183,7,'element_styles_width','','element_styles_width',''),(184,7,'element_styles_font-size','','element_styles_font-size',''),(185,7,'element_styles_margin','','element_styles_margin',''),(186,7,'element_styles_padding','','element_styles_padding',''),(187,7,'element_styles_float','','element_styles_float',''),(188,7,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(189,7,'cellcid','c4066','cellcid','c4066'),(190,7,'key','contact_preferences_1534954782835','key','contact_preferences_1534954782835'),(191,7,'drawerDisabled','','drawerDisabled',''),(192,7,'parent_id','1','parent_id','1'),(193,8,'objectType','Field','objectType','Field'),(194,8,'objectDomain','fields','objectDomain','fields'),(195,8,'editActive','','editActive',''),(196,8,'order','8','order','8'),(197,8,'type','listcheckbox','type','listcheckbox'),(198,8,'label','How Would You Like To Be Contacted?','label','How Would You Like To Be Contacted?'),(199,8,'key','how_would_you_like_to_be_contacted_1534954740097','key','how_would_you_like_to_be_contacted_1534954740097'),(200,8,'label_pos','default','label_pos','default'),(201,8,'required','','required',''),(202,8,'options','a:2:{i:0;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Phone\";s:5:\"value\";s:5:\"phone\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";s:1:\"0\";s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:1;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Email\";s:5:\"value\";s:5:\"email\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";s:1:\"1\";s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}}','options','a:2:{i:0;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Phone\";s:5:\"value\";s:5:\"phone\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";s:1:\"0\";s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:1;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Email\";s:5:\"value\";s:5:\"email\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";s:1:\"1\";s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}}'),(203,8,'container_class','','container_class',''),(204,8,'element_class','','element_class',''),(205,8,'admin_label','contactPref','admin_label','contactPref'),(206,8,'help_text','','help_text',''),(207,8,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(208,8,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(209,8,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(210,8,'list_item_row_styles_show_advanced_css','0','list_item_row_styles_show_advanced_css','0'),(211,8,'list_item_label_styles_show_advanced_css','0','list_item_label_styles_show_advanced_css','0'),(212,8,'list_item_element_styles_show_advanced_css','0','list_item_element_styles_show_advanced_css','0'),(213,8,'cellcid','c4069','cellcid','c4069'),(214,8,'drawerDisabled','','drawerDisabled',''),(215,8,'parent_id','1','parent_id','1'),(249,10,'objectType','Field','objectType','Field'),(250,10,'objectDomain','fields','objectDomain','fields'),(251,10,'editActive','','editActive',''),(252,10,'order','10','order','10'),(253,10,'type','textarea','type','textarea'),(254,10,'label','Brief Description of Your Legal Issue','label','Brief Description of Your Legal Issue'),(255,10,'key','brief_description_of_your_legal_issue_1534954647282','key','brief_description_of_your_legal_issue_1534954647282'),(256,10,'label_pos','default','label_pos','default'),(257,10,'required','','required',''),(258,10,'default','','default',''),(259,10,'placeholder','','placeholder',''),(260,10,'container_class','','container_class',''),(261,10,'element_class','','element_class',''),(262,10,'input_limit','','input_limit',''),(263,10,'input_limit_type','characters','input_limit_type','characters'),(264,10,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(265,10,'manual_key','','manual_key',''),(266,10,'admin_label','formComment','admin_label','formComment'),(267,10,'help_text','','help_text',''),(268,10,'textarea_rte','','textarea_rte',''),(269,10,'disable_rte_mobile','','disable_rte_mobile',''),(270,10,'textarea_media','','textarea_media',''),(271,10,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(272,10,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(273,10,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(274,10,'cellcid','c4072','cellcid','c4072'),(275,10,'parent_id','1','parent_id','1'),(276,11,'objectType','Field','objectType','Field'),(277,11,'objectDomain','fields','objectDomain','fields'),(278,11,'editActive','','editActive',''),(279,11,'order','11','order','11'),(280,11,'type','html','type','html'),(281,11,'label','','label',''),(282,11,'default','<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a>&nbsp;</div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>','default','<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a>&nbsp;</div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>'),(283,11,'container_class','','container_class',''),(284,11,'element_class','','element_class',''),(285,11,'wrap_styles_border','','wrap_styles_border',''),(286,11,'wrap_styles_width','','wrap_styles_width',''),(287,11,'wrap_styles_margin','','wrap_styles_margin',''),(288,11,'wrap_styles_padding','','wrap_styles_padding',''),(289,11,'wrap_styles_float','','wrap_styles_float',''),(290,11,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(291,11,'label_styles_border','','label_styles_border',''),(292,11,'label_styles_width','','label_styles_width',''),(293,11,'label_styles_font-size','','label_styles_font-size',''),(294,11,'label_styles_margin','','label_styles_margin',''),(295,11,'label_styles_padding','','label_styles_padding',''),(296,11,'label_styles_float','','label_styles_float',''),(297,11,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(298,11,'element_styles_border','','element_styles_border',''),(299,11,'element_styles_width','','element_styles_width',''),(300,11,'element_styles_font-size','','element_styles_font-size',''),(301,11,'element_styles_margin','','element_styles_margin',''),(302,11,'element_styles_padding','','element_styles_padding',''),(303,11,'element_styles_float','','element_styles_float',''),(304,11,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(305,11,'cellcid','c4075','cellcid','c4075'),(306,11,'key','privacy_policy_1534954542111','key','privacy_policy_1534954542111'),(307,11,'drawerDisabled','','drawerDisabled',''),(308,11,'parent_id','1','parent_id','1'),(309,12,'objectType','Field','objectType','Field'),(310,12,'objectDomain','fields','objectDomain','fields'),(311,12,'editActive','','editActive',''),(312,12,'order','12','order','12'),(313,12,'type','checkbox','type','checkbox'),(314,12,'label','I Have Read The Disclaimer','label','I Have Read The Disclaimer'),(315,12,'key','i_have_read_the_disclaimer_1534954562191','key','i_have_read_the_disclaimer_1534954562191'),(316,12,'label_pos','right','label_pos','right'),(317,12,'required','1','required','1'),(318,12,'container_class','','container_class',''),(319,12,'element_class','','element_class',''),(320,12,'manual_key','','manual_key',''),(321,12,'admin_label','readDisclaimer','admin_label','readDisclaimer'),(322,12,'help_text','','help_text',''),(323,12,'default_value','unchecked','default_value','unchecked'),(324,12,'checked_value','','checked_value',''),(325,12,'unchecked_value','','unchecked_value',''),(326,12,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(327,12,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(328,12,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(329,12,'cellcid','c4078','cellcid','c4078'),(330,12,'drawerDisabled','','drawerDisabled',''),(331,12,'default','unchecked','default','unchecked'),(332,12,'parent_id','1','parent_id','1'),(333,13,'objectType','Field','objectType','Field'),(334,13,'objectDomain','fields','objectDomain','fields'),(335,13,'editActive','','editActive',''),(336,13,'order','13','order','13'),(337,13,'type','submit','type','submit'),(338,13,'label','Send','label','Send'),(339,13,'processing_label','Processing','processing_label','Processing'),(340,13,'container_class','','container_class',''),(341,13,'element_class','','element_class',''),(342,13,'key','send_1562680674669','key','send_1562680674669'),(343,13,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(344,13,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(345,13,'submit_element_hover_styles_show_advanced_css','0','submit_element_hover_styles_show_advanced_css','0'),(346,13,'cellcid','c4081','cellcid','c4081'),(347,13,'drawerDisabled','','drawerDisabled',''),(348,13,'parent_id','1','parent_id','1'),(349,14,'objectType','Field','objectType','Field'),(350,14,'objectDomain','fields','objectDomain','fields'),(351,14,'editActive','','editActive',''),(352,14,'order','1','order','1'),(353,14,'type','firstname','type','firstname'),(354,14,'label','Name','label','Name'),(355,14,'key','name_1534955086592','key','name_1534955086592'),(356,14,'label_pos','default','label_pos','default'),(357,14,'required','','required',''),(358,14,'default','','default',''),(359,14,'placeholder','Name','placeholder','Name'),(360,14,'container_class','','container_class',''),(361,14,'element_class','','element_class',''),(362,14,'admin_label','contactName','admin_label','contactName'),(363,14,'help_text','','help_text',''),(364,14,'custom_name_attribute','fname','custom_name_attribute','fname'),(365,14,'personally_identifiable','1','personally_identifiable','1'),(366,14,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(367,14,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(368,14,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(369,14,'cellcid','c3946','cellcid','c3946'),(370,14,'drawerDisabled','','drawerDisabled',''),(371,14,'parent_id','2','parent_id','2'),(372,15,'objectType','Field','objectType','Field'),(373,15,'objectDomain','fields','objectDomain','fields'),(374,15,'editActive','','editActive',''),(375,15,'order','2','order','2'),(376,15,'type','email','type','email'),(377,15,'label','Email','label','Email'),(378,15,'key','email_1534954990561','key','email_1534954990561'),(379,15,'label_pos','default','label_pos','default'),(380,15,'required','1','required','1'),(381,15,'default','','default',''),(382,15,'placeholder','Email*','placeholder','Email*'),(383,15,'container_class','','container_class',''),(384,15,'element_class','','element_class',''),(385,15,'admin_label','emailFromAddress','admin_label','emailFromAddress'),(386,15,'help_text','','help_text',''),(387,15,'custom_name_attribute','email','custom_name_attribute','email'),(388,15,'personally_identifiable','1','personally_identifiable','1'),(389,15,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(390,15,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(391,15,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(392,15,'cellcid','c3949','cellcid','c3949'),(393,15,'drawerDisabled','','drawerDisabled',''),(394,15,'parent_id','2','parent_id','2'),(395,16,'objectType','Field','objectType','Field'),(396,16,'objectDomain','fields','objectDomain','fields'),(397,16,'editActive','','editActive',''),(398,16,'order','3','order','3'),(399,16,'type','phone','type','phone'),(400,16,'label','Phone','label','Phone'),(401,16,'key','phone_1534954991568','key','phone_1534954991568'),(402,16,'label_pos','default','label_pos','default'),(403,16,'required','','required',''),(404,16,'default','','default',''),(405,16,'placeholder','Phone','placeholder','Phone'),(406,16,'container_class','','container_class',''),(407,16,'element_class','','element_class',''),(408,16,'input_limit','','input_limit',''),(409,16,'input_limit_type','characters','input_limit_type','characters'),(410,16,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(411,16,'manual_key','','manual_key',''),(412,16,'admin_label','contactPhone','admin_label','contactPhone'),(413,16,'help_text','','help_text',''),(414,16,'mask','(999) 999-9999','mask','(999) 999-9999'),(415,16,'custom_mask','','custom_mask',''),(416,16,'custom_name_attribute','phone','custom_name_attribute','phone'),(417,16,'personally_identifiable','1','personally_identifiable','1'),(418,16,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(419,16,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(420,16,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(421,16,'cellcid','c3951','cellcid','c3951'),(422,16,'drawerDisabled','','drawerDisabled',''),(423,16,'parent_id','2','parent_id','2'),(424,17,'objectType','Field','objectType','Field'),(425,17,'objectDomain','fields','objectDomain','fields'),(426,17,'editActive','','editActive',''),(427,17,'order','4','order','4'),(428,17,'type','textarea','type','textarea'),(429,17,'label','Message','label','Message'),(430,17,'key','message_1534955077918','key','message_1534955077918'),(431,17,'label_pos','default','label_pos','default'),(432,17,'required','','required',''),(433,17,'default','','default',''),(434,17,'placeholder','Message','placeholder','Message'),(435,17,'container_class','','container_class',''),(436,17,'element_class','','element_class',''),(437,17,'input_limit','','input_limit',''),(438,17,'input_limit_type','characters','input_limit_type','characters'),(439,17,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(440,17,'manual_key','','manual_key',''),(441,17,'admin_label','formComment','admin_label','formComment'),(442,17,'help_text','','help_text',''),(443,17,'textarea_rte','','textarea_rte',''),(444,17,'disable_rte_mobile','','disable_rte_mobile',''),(445,17,'textarea_media','','textarea_media',''),(446,17,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(447,17,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(448,17,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(449,17,'cellcid','c3954','cellcid','c3954'),(450,17,'drawerDisabled','','drawerDisabled',''),(451,17,'parent_id','2','parent_id','2'),(452,18,'objectType','Field','objectType','Field'),(453,18,'objectDomain','fields','objectDomain','fields'),(454,18,'editActive','','editActive',''),(455,18,'order','5','order','5'),(456,18,'type','html','type','html'),(457,18,'label','','label',''),(458,18,'default','<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a> | <a href=\"/privacy/\" target=\"_blank\">Privacy Policy</a></div><div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div></div>','default','<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a> | <a href=\"/privacy/\" target=\"_blank\">Privacy Policy</a></div><div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div></div>'),(459,18,'container_class','','container_class',''),(460,18,'element_class','','element_class',''),(461,18,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(462,18,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(463,18,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(464,18,'cellcid','c3957','cellcid','c3957'),(465,18,'key','html_1534955009205','key','html_1534955009205'),(466,18,'drawerDisabled','','drawerDisabled',''),(467,18,'parent_id','2','parent_id','2'),(468,19,'objectType','Field','objectType','Field'),(469,19,'objectDomain','fields','objectDomain','fields'),(470,19,'editActive','','editActive',''),(471,19,'order','6','order','6'),(472,19,'type','checkbox','type','checkbox'),(473,19,'label','I Have Read The Disclaimer','label','I Have Read The Disclaimer'),(474,19,'key','i_have_read_the_disclaimer_1534955054736','key','i_have_read_the_disclaimer_1534955054736'),(475,19,'label_pos','right','label_pos','right'),(476,19,'required','1','required','1'),(477,19,'container_class','','container_class',''),(478,19,'element_class','','element_class',''),(479,19,'manual_key','','manual_key',''),(480,19,'admin_label','readDisclaimer','admin_label','readDisclaimer'),(481,19,'help_text','','help_text',''),(482,19,'default_value','unchecked','default_value','unchecked'),(483,19,'checked_value','Checked','checked_value','Checked'),(484,19,'unchecked_value','Unchecked','unchecked_value','Unchecked'),(485,19,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(486,19,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(487,19,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(488,19,'cellcid','c3959','cellcid','c3959'),(489,19,'drawerDisabled','','drawerDisabled',''),(490,19,'default','unchecked','default','unchecked'),(491,19,'parent_id','2','parent_id','2'),(492,20,'objectType','Field','objectType','Field'),(493,20,'objectDomain','fields','objectDomain','fields'),(494,20,'editActive','','editActive',''),(495,20,'order','7','order','7'),(496,20,'type','submit','type','submit'),(497,20,'label','Submit','label','Submit'),(498,20,'processing_label','Processing','processing_label','Processing'),(499,20,'container_class','','container_class',''),(500,20,'element_class','','element_class',''),(501,20,'key','submit_1629280585819','key','submit_1629280585819'),(502,20,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(503,20,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(504,20,'submit_element_hover_styles_show_advanced_css','0','submit_element_hover_styles_show_advanced_css','0'),(505,20,'cellcid','c3961','cellcid','c3961'),(506,20,'drawerDisabled','','drawerDisabled',''),(507,20,'parent_id','2','parent_id','2'),(508,21,'objectType','Field','objectType','Field'),(509,21,'objectDomain','fields','objectDomain','fields'),(510,21,'editActive','','editActive',''),(511,21,'order','1','order','1'),(512,21,'type','firstname','type','firstname'),(513,21,'label','Name','label','Name'),(514,21,'key','name_1534955086592','key','name_1534955086592'),(515,21,'label_pos','default','label_pos','default'),(516,21,'required','1','required','1'),(517,21,'default','','default',''),(518,21,'placeholder','','placeholder',''),(519,21,'container_class','','container_class',''),(520,21,'element_class','','element_class',''),(521,21,'admin_label','contactName','admin_label','contactName'),(522,21,'help_text','','help_text',''),(523,21,'custom_name_attribute','fname','custom_name_attribute','fname'),(524,21,'personally_identifiable','1','personally_identifiable','1'),(525,21,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(526,21,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(527,21,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(528,21,'cellcid','c3972','cellcid','c3972'),(529,21,'drawerDisabled','','drawerDisabled',''),(530,21,'field_label','Name','field_label','Name'),(531,21,'field_key','name_1534955086592','field_key','name_1534955086592'),(532,21,'parent_id','3','parent_id','3'),(533,22,'objectType','Field','objectType','Field'),(534,22,'objectDomain','fields','objectDomain','fields'),(535,22,'editActive','','editActive',''),(536,22,'order','2','order','2'),(537,22,'type','email','type','email'),(538,22,'label','Email','label','Email'),(539,22,'key','email_1534954990561','key','email_1534954990561'),(540,22,'label_pos','default','label_pos','default'),(541,22,'required','1','required','1'),(542,22,'default','','default',''),(543,22,'placeholder','','placeholder',''),(544,22,'container_class','','container_class',''),(545,22,'element_class','','element_class',''),(546,22,'admin_label','emailFromAddress','admin_label','emailFromAddress'),(547,22,'help_text','','help_text',''),(548,22,'custom_name_attribute','email','custom_name_attribute','email'),(549,22,'personally_identifiable','1','personally_identifiable','1'),(550,22,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(551,22,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(552,22,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(553,22,'cellcid','c3976','cellcid','c3976'),(554,22,'drawerDisabled','','drawerDisabled',''),(555,22,'field_label','Email','field_label','Email'),(556,22,'field_key','email_1534954990561','field_key','email_1534954990561'),(557,22,'parent_id','3','parent_id','3'),(558,23,'objectType','Field','objectType','Field'),(559,23,'objectDomain','fields','objectDomain','fields'),(560,23,'editActive','','editActive',''),(561,23,'order','3','order','3'),(562,23,'type','phone','type','phone'),(563,23,'label','Phone','label','Phone'),(564,23,'key','phone_1534954991568','key','phone_1534954991568'),(565,23,'label_pos','default','label_pos','default'),(566,23,'required','','required',''),(567,23,'default','','default',''),(568,23,'placeholder','','placeholder',''),(569,23,'container_class','','container_class',''),(570,23,'element_class','','element_class',''),(571,23,'input_limit','','input_limit',''),(572,23,'input_limit_type','characters','input_limit_type','characters'),(573,23,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(574,23,'manual_key','','manual_key',''),(575,23,'admin_label','contactPhone','admin_label','contactPhone'),(576,23,'help_text','','help_text',''),(577,23,'mask','(999) 999-9999','mask','(999) 999-9999'),(578,23,'custom_mask','','custom_mask',''),(579,23,'custom_name_attribute','phone','custom_name_attribute','phone'),(580,23,'personally_identifiable','1','personally_identifiable','1'),(581,23,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(582,23,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(583,23,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(584,23,'cellcid','c3979','cellcid','c3979'),(585,23,'drawerDisabled','','drawerDisabled',''),(586,23,'field_label','Phone','field_label','Phone'),(587,23,'field_key','phone_1534954991568','field_key','phone_1534954991568'),(588,23,'parent_id','3','parent_id','3'),(589,24,'objectType','Field','objectType','Field'),(590,24,'objectDomain','fields','objectDomain','fields'),(591,24,'editActive','','editActive',''),(592,24,'order','5','order','5'),(593,24,'type','textarea','type','textarea'),(594,24,'label','Message','label','Message'),(595,24,'key','message_1534955077918','key','message_1534955077918'),(596,24,'label_pos','default','label_pos','default'),(597,24,'required','','required',''),(598,24,'default','','default',''),(599,24,'placeholder','','placeholder',''),(600,24,'container_class','','container_class',''),(601,24,'element_class','','element_class',''),(602,24,'input_limit','','input_limit',''),(603,24,'input_limit_type','characters','input_limit_type','characters'),(604,24,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(605,24,'manual_key','','manual_key',''),(606,24,'admin_label','formComment','admin_label','formComment'),(607,24,'help_text','','help_text',''),(608,24,'textarea_rte','','textarea_rte',''),(609,24,'disable_rte_mobile','','disable_rte_mobile',''),(610,24,'textarea_media','','textarea_media',''),(611,24,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(612,24,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(613,24,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(614,24,'cellcid','c3985','cellcid','c3985'),(615,24,'drawerDisabled','','drawerDisabled',''),(616,24,'field_label','Message','field_label','Message'),(617,24,'field_key','message_1534955077918','field_key','message_1534955077918'),(618,24,'parent_id','3','parent_id','3'),(619,25,'objectType','Field','objectType','Field'),(620,25,'objectDomain','fields','objectDomain','fields'),(621,25,'editActive','','editActive',''),(622,25,'order','6','order','6'),(623,25,'type','html','type','html'),(624,25,'label','','label',''),(625,25,'default','<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a> | <a href=\"/privacy/\" target=\"_blank\">Privacy Policy</a></div><div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div></div>','default','<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a> | <a href=\"/privacy/\" target=\"_blank\">Privacy Policy</a></div><div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div></div>'),(626,25,'container_class','','container_class',''),(627,25,'element_class','','element_class',''),(628,25,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(629,25,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(630,25,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(631,25,'cellcid','c3988','cellcid','c3988'),(632,25,'key','html_1534955009205','key','html_1534955009205'),(633,25,'drawerDisabled','','drawerDisabled',''),(634,25,'field_label','','field_label',''),(635,25,'field_key','html_1534955009205','field_key','html_1534955009205'),(636,25,'parent_id','3','parent_id','3'),(637,26,'objectType','Field','objectType','Field'),(638,26,'objectDomain','fields','objectDomain','fields'),(639,26,'editActive','','editActive',''),(640,26,'order','7','order','7'),(641,26,'type','checkbox','type','checkbox'),(642,26,'label','I Have Read The Disclaimer','label','I Have Read The Disclaimer'),(643,26,'key','i_have_read_the_disclaimer_1534955054736','key','i_have_read_the_disclaimer_1534955054736'),(644,26,'label_pos','right','label_pos','right'),(645,26,'required','1','required','1'),(646,26,'container_class','','container_class',''),(647,26,'element_class','','element_class',''),(648,26,'manual_key','','manual_key',''),(649,26,'admin_label','readDisclaimer','admin_label','readDisclaimer'),(650,26,'help_text','','help_text',''),(651,26,'default_value','unchecked','default_value','unchecked'),(652,26,'checked_value','Checked','checked_value','Checked'),(653,26,'unchecked_value','Unchecked','unchecked_value','Unchecked'),(654,26,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(655,26,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(656,26,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(657,26,'cellcid','c3991','cellcid','c3991'),(658,26,'drawerDisabled','','drawerDisabled',''),(659,26,'field_label','I Have Read The Disclaimer','field_label','I Have Read The Disclaimer'),(660,26,'field_key','i_have_read_the_disclaimer_1534955054736','field_key','i_have_read_the_disclaimer_1534955054736'),(661,26,'default','unchecked','default','unchecked'),(662,26,'parent_id','3','parent_id','3'),(663,27,'objectType','Field','objectType','Field'),(664,27,'objectDomain','fields','objectDomain','fields'),(665,27,'editActive','','editActive',''),(666,27,'order','8','order','8'),(667,27,'type','submit','type','submit'),(668,27,'label','Send','label','Send'),(669,27,'processing_label','Processing','processing_label','Processing'),(670,27,'container_class','','container_class',''),(671,27,'element_class','','element_class',''),(672,27,'key','send_1562680748375','key','send_1562680748375'),(673,27,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(674,27,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(675,27,'submit_element_hover_styles_show_advanced_css','0','submit_element_hover_styles_show_advanced_css','0'),(676,27,'cellcid','c3994','cellcid','c3994'),(677,27,'drawerDisabled','','drawerDisabled',''),(678,27,'field_label','Send','field_label','Send'),(679,27,'field_key','send_1562680748375','field_key','send_1562680748375'),(680,27,'parent_id','3','parent_id','3'),(681,28,'objectType','Field','objectType','Field'),(682,28,'objectDomain','fields','objectDomain','fields'),(683,28,'editActive','','editActive',''),(684,28,'order','1','order','1'),(685,28,'type','firstname','type','firstname'),(686,28,'label','Name','label','Name'),(687,28,'key','name_1534955086592','key','name_1534955086592'),(688,28,'label_pos','default','label_pos','default'),(689,28,'required','','required',''),(690,28,'default','','default',''),(691,28,'placeholder','','placeholder',''),(692,28,'container_class','','container_class',''),(693,28,'element_class','','element_class',''),(694,28,'admin_label','contactName','admin_label','contactName'),(695,28,'help_text','','help_text',''),(696,28,'custom_name_attribute','fname','custom_name_attribute','fname'),(697,28,'personally_identifiable','1','personally_identifiable','1'),(698,28,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(699,28,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(700,28,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(701,28,'cellcid','c3228','cellcid','c3228'),(702,28,'drawerDisabled','','drawerDisabled',''),(703,28,'field_label','Name','field_label','Name'),(704,28,'field_key','name_1534955086592','field_key','name_1534955086592'),(705,28,'parent_id','4','parent_id','4'),(706,29,'objectType','Field','objectType','Field'),(707,29,'objectDomain','fields','objectDomain','fields'),(708,29,'editActive','','editActive',''),(709,29,'order','2','order','2'),(710,29,'type','email','type','email'),(711,29,'label','Email','label','Email'),(712,29,'key','email_1534954990561','key','email_1534954990561'),(713,29,'label_pos','default','label_pos','default'),(714,29,'required','1','required','1'),(715,29,'default','','default',''),(716,29,'placeholder','','placeholder',''),(717,29,'container_class','','container_class',''),(718,29,'element_class','','element_class',''),(719,29,'admin_label','emailFromAddress','admin_label','emailFromAddress'),(720,29,'help_text','','help_text',''),(721,29,'custom_name_attribute','email','custom_name_attribute','email'),(722,29,'personally_identifiable','1','personally_identifiable','1'),(723,29,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(724,29,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(725,29,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(726,29,'cellcid','c3232','cellcid','c3232'),(727,29,'drawerDisabled','','drawerDisabled',''),(728,29,'field_label','Email','field_label','Email'),(729,29,'field_key','email_1534954990561','field_key','email_1534954990561'),(730,29,'parent_id','4','parent_id','4'),(731,30,'objectType','Field','objectType','Field'),(732,30,'objectDomain','fields','objectDomain','fields'),(733,30,'editActive','','editActive',''),(734,30,'order','3','order','3'),(735,30,'type','phone','type','phone'),(736,30,'label','Phone','label','Phone'),(737,30,'key','phone_1534954991568','key','phone_1534954991568'),(738,30,'label_pos','default','label_pos','default'),(739,30,'required','','required',''),(740,30,'default','','default',''),(741,30,'placeholder','','placeholder',''),(742,30,'container_class','','container_class',''),(743,30,'element_class','','element_class',''),(744,30,'input_limit','','input_limit',''),(745,30,'input_limit_type','characters','input_limit_type','characters'),(746,30,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(747,30,'manual_key','','manual_key',''),(748,30,'admin_label','contactPhone','admin_label','contactPhone'),(749,30,'help_text','','help_text',''),(750,30,'mask','(999) 999-9999','mask','(999) 999-9999'),(751,30,'custom_mask','','custom_mask',''),(752,30,'custom_name_attribute','phone','custom_name_attribute','phone'),(753,30,'personally_identifiable','1','personally_identifiable','1'),(754,30,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(755,30,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(756,30,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(757,30,'cellcid','c3235','cellcid','c3235'),(758,30,'drawerDisabled','','drawerDisabled',''),(759,30,'field_label','Phone','field_label','Phone'),(760,30,'field_key','phone_1534954991568','field_key','phone_1534954991568'),(761,30,'parent_id','4','parent_id','4'),(762,31,'objectType','Field','objectType','Field'),(763,31,'objectDomain','fields','objectDomain','fields'),(764,31,'editActive','','editActive',''),(765,31,'order','4','order','4'),(766,31,'type','textarea','type','textarea'),(767,31,'label','Message','label','Message'),(768,31,'key','message_1534955077918','key','message_1534955077918'),(769,31,'label_pos','default','label_pos','default'),(770,31,'required','','required',''),(771,31,'default','','default',''),(772,31,'placeholder','','placeholder',''),(773,31,'container_class','','container_class',''),(774,31,'element_class','','element_class',''),(775,31,'input_limit','','input_limit',''),(776,31,'input_limit_type','characters','input_limit_type','characters'),(777,31,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(778,31,'manual_key','','manual_key',''),(779,31,'admin_label','formComment','admin_label','formComment'),(780,31,'help_text','','help_text',''),(781,31,'textarea_rte','','textarea_rte',''),(782,31,'disable_rte_mobile','','disable_rte_mobile',''),(783,31,'textarea_media','','textarea_media',''),(784,31,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(785,31,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(786,31,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(787,31,'cellcid','c3238','cellcid','c3238'),(788,31,'drawerDisabled','','drawerDisabled',''),(789,31,'field_label','Message','field_label','Message'),(790,31,'field_key','message_1534955077918','field_key','message_1534955077918'),(791,31,'parent_id','4','parent_id','4'),(792,32,'objectType','Field','objectType','Field'),(793,32,'objectDomain','fields','objectDomain','fields'),(794,32,'editActive','','editActive',''),(795,32,'order','6','order','6'),(796,32,'type','html','type','html'),(797,32,'label','','label',''),(798,32,'default','<div class=\"form-links\">	<a href=\"/lp/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a> | <a href=\"/lp/privacy/\" target=\"_blank\">Privacy Policy</a></div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>','default','<div class=\"form-links\">	<a href=\"/lp/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a> | <a href=\"/lp/privacy/\" target=\"_blank\">Privacy Policy</a></div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>'),(799,32,'container_class','','container_class',''),(800,32,'element_class','','element_class',''),(801,32,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(802,32,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(803,32,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(804,32,'cellcid','c3241','cellcid','c3241'),(805,32,'key','html_1534955009205','key','html_1534955009205'),(806,32,'drawerDisabled','','drawerDisabled',''),(807,32,'field_label','','field_label',''),(808,32,'field_key','html_1534955009205','field_key','html_1534955009205'),(809,32,'parent_id','4','parent_id','4'),(810,33,'objectType','Field','objectType','Field'),(811,33,'objectDomain','fields','objectDomain','fields'),(812,33,'editActive','','editActive',''),(813,33,'order','7','order','7'),(814,33,'type','checkbox','type','checkbox'),(815,33,'label','I Have Read The Disclaimer','label','I Have Read The Disclaimer'),(816,33,'key','i_have_read_the_disclaimer_1534955054736','key','i_have_read_the_disclaimer_1534955054736'),(817,33,'label_pos','right','label_pos','right'),(818,33,'required','1','required','1'),(819,33,'container_class','','container_class',''),(820,33,'element_class','','element_class',''),(821,33,'manual_key','','manual_key',''),(822,33,'admin_label','readDisclaimer','admin_label','readDisclaimer'),(823,33,'help_text','','help_text',''),(824,33,'default_value','unchecked','default_value','unchecked'),(825,33,'checked_value','Checked','checked_value','Checked'),(826,33,'unchecked_value','Unchecked','unchecked_value','Unchecked'),(827,33,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(828,33,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(829,33,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(830,33,'cellcid','c3244','cellcid','c3244'),(831,33,'drawerDisabled','','drawerDisabled',''),(832,33,'field_label','I Have Read The Disclaimer','field_label','I Have Read The Disclaimer'),(833,33,'field_key','i_have_read_the_disclaimer_1534955054736','field_key','i_have_read_the_disclaimer_1534955054736'),(834,33,'default','unchecked','default','unchecked'),(835,33,'parent_id','4','parent_id','4'),(836,34,'objectType','Field','objectType','Field'),(837,34,'objectDomain','fields','objectDomain','fields'),(838,34,'editActive','','editActive',''),(839,34,'order','8','order','8'),(840,34,'type','submit','type','submit'),(841,34,'label','Send','label','Send'),(842,34,'processing_label','Processing','processing_label','Processing'),(843,34,'container_class','','container_class',''),(844,34,'element_class','','element_class',''),(845,34,'key','send_1562680741334','key','send_1562680741334'),(846,34,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(847,34,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(848,34,'submit_element_hover_styles_show_advanced_css','0','submit_element_hover_styles_show_advanced_css','0'),(849,34,'cellcid','c3247','cellcid','c3247'),(850,34,'drawerDisabled','','drawerDisabled',''),(851,34,'field_label','Send','field_label','Send'),(852,34,'field_key','send_1562680741334','field_key','send_1562680741334'),(853,34,'parent_id','4','parent_id','4'),(854,1,'field_label','Personal Information','field_label','Personal Information'),(855,1,'field_key','personal_information_1534954814742','field_key','personal_information_1534954814742'),(856,2,'field_label','Name','field_label','Name'),(857,2,'field_key','name_1534954806801','field_key','name_1534954806801'),(858,3,'field_label','Email','field_label','Email'),(859,3,'field_key','email_1534954365299','field_key','email_1534954365299'),(860,4,'field_label','Phone','field_label','Phone'),(861,4,'field_key','phone_1534954373936','field_key','phone_1534954373936'),(862,5,'field_label','Zip','field_label','Zip'),(863,5,'field_key','zip_1534954373399','field_key','zip_1534954373399'),(864,6,'field_label','US States','field_label','US States'),(865,6,'field_key','liststate_1534954369789','field_key','liststate_1534954369789'),(866,7,'field_label','Contact Preferences','field_label','Contact Preferences'),(867,7,'field_key','contact_preferences_1534954782835','field_key','contact_preferences_1534954782835'),(868,8,'field_label','How Would You Like To Be Contacted?','field_label','How Would You Like To Be Contacted?'),(869,8,'field_key','how_would_you_like_to_be_contacted_1534954740097','field_key','how_would_you_like_to_be_contacted_1534954740097'),(872,10,'field_label','Brief Description of Your Legal Issue','field_label','Brief Description of Your Legal Issue'),(873,10,'field_key','brief_description_of_your_legal_issue_1534954647282','field_key','brief_description_of_your_legal_issue_1534954647282'),(874,11,'field_label','','field_label',''),(875,11,'field_key','privacy_policy_1534954542111','field_key','privacy_policy_1534954542111'),(876,12,'field_label','I Have Read The Disclaimer','field_label','I Have Read The Disclaimer'),(877,12,'field_key','i_have_read_the_disclaimer_1534954562191','field_key','i_have_read_the_disclaimer_1534954562191'),(878,13,'field_label','Send','field_label','Send'),(879,13,'field_key','send_1562680674669','field_key','send_1562680674669'),(880,2,'value','','value',''),(881,3,'value','','value',''),(882,4,'value','','value',''),(883,5,'value','','value',''),(884,6,'wrap_styles_border','','wrap_styles_border',''),(885,6,'wrap_styles_width','560px','wrap_styles_width','560px'),(886,6,'wrap_styles_margin','','wrap_styles_margin',''),(887,6,'wrap_styles_padding','','wrap_styles_padding',''),(888,6,'wrap_styles_float','','wrap_styles_float',''),(889,6,'label_styles_border','','label_styles_border',''),(890,6,'label_styles_width','','label_styles_width',''),(891,6,'label_styles_font-size','','label_styles_font-size',''),(892,6,'label_styles_margin','','label_styles_margin',''),(893,6,'label_styles_padding','','label_styles_padding',''),(894,6,'label_styles_float','','label_styles_float',''),(895,6,'element_styles_border','','element_styles_border',''),(896,6,'element_styles_width','','element_styles_width',''),(897,6,'element_styles_font-size','15','element_styles_font-size','15'),(898,6,'element_styles_margin','','element_styles_margin',''),(899,6,'element_styles_padding','8.5px','element_styles_padding','8.5px'),(900,6,'element_styles_float','','element_styles_float',''),(901,6,'list_item_row_styles_border','','list_item_row_styles_border',''),(902,6,'list_item_row_styles_height','','list_item_row_styles_height',''),(903,6,'list_item_row_styles_width','','list_item_row_styles_width',''),(904,6,'list_item_row_styles_font-size','','list_item_row_styles_font-size',''),(905,6,'list_item_row_styles_margin','','list_item_row_styles_margin',''),(906,6,'list_item_row_styles_padding','','list_item_row_styles_padding',''),(907,6,'list_item_row_styles_float','','list_item_row_styles_float',''),(908,6,'list_item_label_styles_border','','list_item_label_styles_border',''),(909,6,'list_item_label_styles_height','','list_item_label_styles_height',''),(910,6,'list_item_label_styles_width','','list_item_label_styles_width',''),(911,6,'list_item_label_styles_font-size','','list_item_label_styles_font-size',''),(912,6,'list_item_label_styles_margin','','list_item_label_styles_margin',''),(913,6,'list_item_label_styles_padding','','list_item_label_styles_padding',''),(914,6,'list_item_label_styles_float','','list_item_label_styles_float',''),(915,6,'list_item_element_styles_border','','list_item_element_styles_border',''),(916,6,'list_item_element_styles_height','','list_item_element_styles_height',''),(917,6,'list_item_element_styles_width','','list_item_element_styles_width',''),(918,6,'list_item_element_styles_font-size','15','list_item_element_styles_font-size','15'),(919,6,'list_item_element_styles_margin','','list_item_element_styles_margin',''),(920,6,'list_item_element_styles_padding','8.5px','list_item_element_styles_padding','8.5px'),(921,6,'list_item_element_styles_float','','list_item_element_styles_float',''),(922,10,'value','','value',''),(923,12,'value','unchecked','value','unchecked'),(924,21,'idAttribute','id','idAttribute','id'),(925,21,'value','','value',''),(926,22,'idAttribute','id','idAttribute','id'),(927,22,'value','','value',''),(928,23,'idAttribute','id','idAttribute','id'),(929,23,'value','','value',''),(930,24,'idAttribute','id','idAttribute','id'),(931,24,'value','','value',''),(932,25,'idAttribute','id','idAttribute','id'),(933,26,'idAttribute','id','idAttribute','id'),(934,26,'value','unchecked','value','unchecked'),(935,27,'idAttribute','id','idAttribute','id'),(936,28,'idAttribute','id','idAttribute','id'),(937,28,'value','','value',''),(938,29,'idAttribute','id','idAttribute','id'),(939,29,'value','','value',''),(940,30,'idAttribute','id','idAttribute','id'),(941,30,'value','','value',''),(942,31,'idAttribute','id','idAttribute','id'),(943,31,'value','','value',''),(944,32,'idAttribute','id','idAttribute','id'),(945,33,'idAttribute','id','idAttribute','id'),(946,33,'value','unchecked','value','unchecked'),(947,34,'idAttribute','id','idAttribute','id'),(948,1,'idAttribute','id','idAttribute','id'),(949,2,'idAttribute','id','idAttribute','id'),(950,3,'idAttribute','id','idAttribute','id'),(951,4,'idAttribute','id','idAttribute','id'),(952,5,'idAttribute','id','idAttribute','id'),(953,6,'idAttribute','id','idAttribute','id'),(954,7,'idAttribute','id','idAttribute','id'),(955,8,'idAttribute','id','idAttribute','id'),(957,10,'idAttribute','id','idAttribute','id'),(958,11,'idAttribute','id','idAttribute','id'),(959,12,'idAttribute','id','idAttribute','id'),(960,13,'idAttribute','id','idAttribute','id'),(961,14,'idAttribute','id','idAttribute','id'),(962,14,'field_label','Name','field_label','Name'),(963,14,'field_key','name_1534955086592','field_key','name_1534955086592'),(964,14,'value','','value',''),(965,15,'idAttribute','id','idAttribute','id'),(966,15,'field_label','Email','field_label','Email'),(967,15,'field_key','email_1534954990561','field_key','email_1534954990561'),(968,15,'value','','value',''),(969,16,'idAttribute','id','idAttribute','id'),(970,16,'field_label','Phone','field_label','Phone'),(971,16,'field_key','phone_1534954991568','field_key','phone_1534954991568'),(972,16,'value','','value',''),(973,17,'idAttribute','id','idAttribute','id'),(974,17,'field_label','Message','field_label','Message'),(975,17,'field_key','message_1534955077918','field_key','message_1534955077918'),(976,17,'value','','value',''),(977,18,'idAttribute','id','idAttribute','id'),(978,18,'field_label','','field_label',''),(979,18,'field_key','html_1534955009205','field_key','html_1534955009205'),(980,19,'idAttribute','id','idAttribute','id'),(981,19,'field_label','I Have Read The Disclaimer','field_label','I Have Read The Disclaimer'),(982,19,'field_key','i_have_read_the_disclaimer_1534955054736','field_key','i_have_read_the_disclaimer_1534955054736'),(983,19,'value','unchecked','value','unchecked'),(984,20,'idAttribute','id','idAttribute','id'),(985,20,'field_label','Send','field_label','Send'),(986,20,'field_key','send_1562680690974','field_key','send_1562680690974'),(987,20,'wrap_styles_border','','wrap_styles_border',''),(988,20,'wrap_styles_width','','wrap_styles_width',''),(989,20,'wrap_styles_margin','','wrap_styles_margin',''),(990,20,'wrap_styles_padding','','wrap_styles_padding',''),(991,20,'wrap_styles_float','','wrap_styles_float',''),(992,20,'element_styles_border','','element_styles_border',''),(993,20,'element_styles_width','','element_styles_width',''),(994,20,'element_styles_font-size','','element_styles_font-size',''),(995,20,'element_styles_margin','','element_styles_margin',''),(996,20,'element_styles_padding','','element_styles_padding',''),(997,20,'element_styles_float','','element_styles_float',''),(998,20,'submit_element_hover_styles_border','','submit_element_hover_styles_border',''),(999,20,'submit_element_hover_styles_width','','submit_element_hover_styles_width',''),(1000,20,'submit_element_hover_styles_font-size','','submit_element_hover_styles_font-size',''),(1001,20,'submit_element_hover_styles_margin','','submit_element_hover_styles_margin',''),(1002,20,'submit_element_hover_styles_padding','','submit_element_hover_styles_padding',''),(1003,20,'submit_element_hover_styles_float','','submit_element_hover_styles_float',''),(1004,14,'wrap_styles_border','','wrap_styles_border',''),(1005,14,'wrap_styles_width','','wrap_styles_width',''),(1006,14,'wrap_styles_margin','','wrap_styles_margin',''),(1007,14,'wrap_styles_padding','','wrap_styles_padding',''),(1008,14,'wrap_styles_float','','wrap_styles_float',''),(1009,14,'label_styles_border','','label_styles_border',''),(1010,14,'label_styles_width','','label_styles_width',''),(1011,14,'label_styles_font-size','','label_styles_font-size',''),(1012,14,'label_styles_margin','','label_styles_margin',''),(1013,14,'label_styles_padding','','label_styles_padding',''),(1014,14,'label_styles_float','','label_styles_float',''),(1015,14,'element_styles_border','','element_styles_border',''),(1016,14,'element_styles_width','','element_styles_width',''),(1017,14,'element_styles_font-size','','element_styles_font-size',''),(1018,14,'element_styles_margin','','element_styles_margin',''),(1019,14,'element_styles_padding','','element_styles_padding',''),(1020,14,'element_styles_float','','element_styles_float',''),(1021,15,'wrap_styles_border','','wrap_styles_border',''),(1022,15,'wrap_styles_width','','wrap_styles_width',''),(1023,15,'wrap_styles_margin','','wrap_styles_margin',''),(1024,15,'wrap_styles_padding','','wrap_styles_padding',''),(1025,15,'wrap_styles_float','','wrap_styles_float',''),(1026,15,'label_styles_border','','label_styles_border',''),(1027,15,'label_styles_width','','label_styles_width',''),(1028,15,'label_styles_font-size','','label_styles_font-size',''),(1029,15,'label_styles_margin','','label_styles_margin',''),(1030,15,'label_styles_padding','','label_styles_padding',''),(1031,15,'label_styles_float','','label_styles_float',''),(1032,15,'element_styles_border','','element_styles_border',''),(1033,15,'element_styles_width','','element_styles_width',''),(1034,15,'element_styles_font-size','','element_styles_font-size',''),(1035,15,'element_styles_margin','','element_styles_margin',''),(1036,15,'element_styles_padding','','element_styles_padding',''),(1037,15,'element_styles_float','','element_styles_float',''),(1038,16,'wrap_styles_border','','wrap_styles_border',''),(1039,16,'wrap_styles_width','','wrap_styles_width',''),(1040,16,'wrap_styles_margin','','wrap_styles_margin',''),(1041,16,'wrap_styles_padding','','wrap_styles_padding',''),(1042,16,'wrap_styles_float','','wrap_styles_float',''),(1043,16,'label_styles_border','','label_styles_border',''),(1044,16,'label_styles_width','','label_styles_width',''),(1045,16,'label_styles_font-size','','label_styles_font-size',''),(1046,16,'label_styles_margin','','label_styles_margin',''),(1047,16,'label_styles_padding','','label_styles_padding',''),(1048,16,'label_styles_float','','label_styles_float',''),(1049,16,'element_styles_border','','element_styles_border',''),(1050,16,'element_styles_width','','element_styles_width',''),(1051,16,'element_styles_font-size','','element_styles_font-size',''),(1052,16,'element_styles_margin','','element_styles_margin',''),(1053,16,'element_styles_padding','','element_styles_padding',''),(1054,16,'element_styles_float','','element_styles_float',''),(1055,17,'wrap_styles_border','','wrap_styles_border',''),(1056,17,'wrap_styles_width','','wrap_styles_width',''),(1057,17,'wrap_styles_margin','','wrap_styles_margin',''),(1058,17,'wrap_styles_padding','','wrap_styles_padding',''),(1059,17,'wrap_styles_float','','wrap_styles_float',''),(1060,17,'label_styles_border','','label_styles_border',''),(1061,17,'label_styles_width','','label_styles_width',''),(1062,17,'label_styles_font-size','','label_styles_font-size',''),(1063,17,'label_styles_margin','','label_styles_margin',''),(1064,17,'label_styles_padding','','label_styles_padding',''),(1065,17,'label_styles_float','','label_styles_float',''),(1066,17,'element_styles_border','','element_styles_border',''),(1067,17,'element_styles_width','','element_styles_width',''),(1068,17,'element_styles_font-size','','element_styles_font-size',''),(1069,17,'element_styles_margin','','element_styles_margin',''),(1070,17,'element_styles_padding','','element_styles_padding',''),(1071,17,'element_styles_float','','element_styles_float',''),(1072,19,'checked_calc_value','','checked_calc_value',''),(1073,19,'unchecked_calc_value','','unchecked_calc_value',''),(1074,19,'wrap_styles_border','','wrap_styles_border',''),(1075,19,'wrap_styles_width','','wrap_styles_width',''),(1076,19,'wrap_styles_margin','','wrap_styles_margin',''),(1077,19,'wrap_styles_padding','','wrap_styles_padding',''),(1078,19,'wrap_styles_float','','wrap_styles_float',''),(1079,19,'label_styles_border','','label_styles_border',''),(1080,19,'label_styles_width','','label_styles_width',''),(1081,19,'label_styles_font-size','','label_styles_font-size',''),(1082,19,'label_styles_margin','','label_styles_margin',''),(1083,19,'label_styles_padding','','label_styles_padding',''),(1084,19,'label_styles_float','','label_styles_float',''),(1085,19,'element_styles_background-color','#ffffff','element_styles_background-color','#ffffff'),(1086,19,'element_styles_border','','element_styles_border',''),(1087,19,'element_styles_width','','element_styles_width',''),(1088,19,'element_styles_font-size','','element_styles_font-size',''),(1089,19,'element_styles_margin','','element_styles_margin',''),(1090,19,'element_styles_padding','','element_styles_padding',''),(1091,19,'element_styles_float','','element_styles_float',''),(1092,35,'label','Name','label','Name'),(1093,35,'key','name','key','name'),(1094,35,'parent_id','5','parent_id','5'),(1095,35,'type','textbox','type','textbox'),(1096,35,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(1097,35,'label_pos','hidden','label_pos','hidden'),(1098,35,'required','1','required','1'),(1099,35,'order','1','order','1'),(1100,35,'placeholder','Name*','placeholder','Name*'),(1101,35,'default','','default',''),(1102,35,'wrapper_class','','wrapper_class',''),(1103,35,'element_class','','element_class',''),(1104,35,'objectType','Field','objectType','Field'),(1105,35,'objectDomain','fields','objectDomain','fields'),(1106,35,'editActive','','editActive',''),(1107,35,'container_class','','container_class',''),(1108,35,'input_limit','','input_limit',''),(1109,35,'input_limit_type','characters','input_limit_type','characters'),(1110,35,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(1111,35,'manual_key','','manual_key',''),(1112,35,'disable_input','','disable_input',''),(1113,35,'admin_label','','admin_label',''),(1114,35,'help_text','<p><br></p>','help_text','<p><br></p>'),(1115,35,'desc_text','<p><br></p>','desc_text','<p><br></p>'),(1116,35,'disable_browser_autocomplete','','disable_browser_autocomplete',''),(1117,35,'mask','','mask',''),(1118,35,'custom_mask','','custom_mask',''),(1119,35,'wrap_styles_background-color','','wrap_styles_background-color',''),(1120,35,'wrap_styles_border','','wrap_styles_border',''),(1121,35,'wrap_styles_border-style','','wrap_styles_border-style',''),(1122,35,'wrap_styles_border-color','','wrap_styles_border-color',''),(1123,35,'wrap_styles_color','','wrap_styles_color',''),(1124,35,'wrap_styles_height','','wrap_styles_height',''),(1125,35,'wrap_styles_width','','wrap_styles_width',''),(1126,35,'wrap_styles_font-size','','wrap_styles_font-size',''),(1127,35,'wrap_styles_margin','','wrap_styles_margin',''),(1128,35,'wrap_styles_padding','','wrap_styles_padding',''),(1129,35,'wrap_styles_display','','wrap_styles_display',''),(1130,35,'wrap_styles_float','','wrap_styles_float',''),(1131,35,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(1132,35,'wrap_styles_advanced','','wrap_styles_advanced',''),(1133,35,'label_styles_background-color','','label_styles_background-color',''),(1134,35,'label_styles_border','','label_styles_border',''),(1135,35,'label_styles_border-style','','label_styles_border-style',''),(1136,35,'label_styles_border-color','','label_styles_border-color',''),(1137,35,'label_styles_color','','label_styles_color',''),(1138,35,'label_styles_height','','label_styles_height',''),(1139,35,'label_styles_width','','label_styles_width',''),(1140,35,'label_styles_font-size','','label_styles_font-size',''),(1141,35,'label_styles_margin','','label_styles_margin',''),(1142,35,'label_styles_padding','','label_styles_padding',''),(1143,35,'label_styles_display','','label_styles_display',''),(1144,35,'label_styles_float','','label_styles_float',''),(1145,35,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(1146,35,'label_styles_advanced','','label_styles_advanced',''),(1147,35,'element_styles_background-color','','element_styles_background-color',''),(1148,35,'element_styles_border','','element_styles_border',''),(1149,35,'element_styles_border-style','','element_styles_border-style',''),(1150,35,'element_styles_border-color','','element_styles_border-color',''),(1151,35,'element_styles_color','','element_styles_color',''),(1152,35,'element_styles_height','','element_styles_height',''),(1153,35,'element_styles_width','','element_styles_width',''),(1154,35,'element_styles_font-size','12','element_styles_font-size','12'),(1155,35,'element_styles_margin','','element_styles_margin',''),(1156,35,'element_styles_padding','8.5px','element_styles_padding','8.5px'),(1157,35,'element_styles_display','','element_styles_display',''),(1158,35,'element_styles_float','','element_styles_float',''),(1159,35,'element_styles_show_advanced_css','1','element_styles_show_advanced_css','1'),(1160,35,'element_styles_advanced','width: 440px','element_styles_advanced','width: 440px'),(1161,35,'cellcid','c3972','cellcid','c3972'),(1162,36,'label','Email','label','Email'),(1163,36,'key','email','key','email'),(1164,36,'parent_id','5','parent_id','5'),(1165,36,'type','email','type','email'),(1166,36,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(1167,36,'label_pos','hidden','label_pos','hidden'),(1168,36,'required','1','required','1'),(1169,36,'order','2','order','2'),(1170,36,'placeholder','Email*','placeholder','Email*'),(1171,36,'default','','default',''),(1172,36,'wrapper_class','','wrapper_class',''),(1173,36,'element_class','','element_class',''),(1174,36,'objectType','Field','objectType','Field'),(1175,36,'objectDomain','fields','objectDomain','fields'),(1176,36,'editActive','','editActive',''),(1177,36,'container_class','','container_class',''),(1178,36,'admin_label','','admin_label',''),(1179,36,'help_text','','help_text',''),(1180,36,'desc_text','','desc_text',''),(1181,36,'wrap_styles_background-color','','wrap_styles_background-color',''),(1182,36,'wrap_styles_border','','wrap_styles_border',''),(1183,36,'wrap_styles_border-style','','wrap_styles_border-style',''),(1184,36,'wrap_styles_border-color','','wrap_styles_border-color',''),(1185,36,'wrap_styles_color','','wrap_styles_color',''),(1186,36,'wrap_styles_height','','wrap_styles_height',''),(1187,36,'wrap_styles_width','','wrap_styles_width',''),(1188,36,'wrap_styles_font-size','','wrap_styles_font-size',''),(1189,36,'wrap_styles_margin','','wrap_styles_margin',''),(1190,36,'wrap_styles_padding','','wrap_styles_padding',''),(1191,36,'wrap_styles_display','','wrap_styles_display',''),(1192,36,'wrap_styles_float','','wrap_styles_float',''),(1193,36,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(1194,36,'wrap_styles_advanced','','wrap_styles_advanced',''),(1195,36,'label_styles_background-color','','label_styles_background-color',''),(1196,36,'label_styles_border','','label_styles_border',''),(1197,36,'label_styles_border-style','','label_styles_border-style',''),(1198,36,'label_styles_border-color','','label_styles_border-color',''),(1199,36,'label_styles_color','','label_styles_color',''),(1200,36,'label_styles_height','','label_styles_height',''),(1201,36,'label_styles_width','','label_styles_width',''),(1202,36,'label_styles_font-size','','label_styles_font-size',''),(1203,36,'label_styles_margin','','label_styles_margin',''),(1204,36,'label_styles_padding','','label_styles_padding',''),(1205,36,'label_styles_display','','label_styles_display',''),(1206,36,'label_styles_float','','label_styles_float',''),(1207,36,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(1208,36,'label_styles_advanced','','label_styles_advanced',''),(1209,36,'element_styles_background-color','','element_styles_background-color',''),(1210,36,'element_styles_border','','element_styles_border',''),(1211,36,'element_styles_border-style','','element_styles_border-style',''),(1212,36,'element_styles_border-color','','element_styles_border-color',''),(1213,36,'element_styles_color','','element_styles_color',''),(1214,36,'element_styles_height','','element_styles_height',''),(1215,36,'element_styles_width','','element_styles_width',''),(1216,36,'element_styles_font-size','12','element_styles_font-size','12'),(1217,36,'element_styles_margin','','element_styles_margin',''),(1218,36,'element_styles_padding','8.5px','element_styles_padding','8.5px'),(1219,36,'element_styles_display','','element_styles_display',''),(1220,36,'element_styles_float','','element_styles_float',''),(1221,36,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(1222,36,'element_styles_advanced','','element_styles_advanced',''),(1223,36,'cellcid','c3975','cellcid','c3975'),(1224,37,'label','Message','label','Message'),(1225,37,'key','message','key','message'),(1226,37,'parent_id','5','parent_id','5'),(1227,37,'type','textarea','type','textarea'),(1228,37,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(1229,37,'label_pos','hidden','label_pos','hidden'),(1230,37,'required','1','required','1'),(1231,37,'order','4','order','4'),(1232,37,'placeholder','Enter your message or request here. ','placeholder','Enter your message or request here. '),(1233,37,'default','','default',''),(1234,37,'wrapper_class','','wrapper_class',''),(1235,37,'element_class','','element_class',''),(1236,37,'objectType','Field','objectType','Field'),(1237,37,'objectDomain','fields','objectDomain','fields'),(1238,37,'editActive','','editActive',''),(1239,37,'container_class','','container_class',''),(1240,37,'input_limit','','input_limit',''),(1241,37,'input_limit_type','characters','input_limit_type','characters'),(1242,37,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(1243,37,'manual_key','','manual_key',''),(1244,37,'disable_input','','disable_input',''),(1245,37,'admin_label','','admin_label',''),(1246,37,'help_text','','help_text',''),(1247,37,'desc_text','','desc_text',''),(1248,37,'disable_browser_autocomplete','','disable_browser_autocomplete',''),(1249,37,'textarea_rte','','textarea_rte',''),(1250,37,'disable_rte_mobile','','disable_rte_mobile',''),(1251,37,'textarea_media','','textarea_media',''),(1252,37,'wrap_styles_background-color','','wrap_styles_background-color',''),(1253,37,'wrap_styles_border','','wrap_styles_border',''),(1254,37,'wrap_styles_border-style','','wrap_styles_border-style',''),(1255,37,'wrap_styles_border-color','','wrap_styles_border-color',''),(1256,37,'wrap_styles_color','','wrap_styles_color',''),(1257,37,'wrap_styles_height','','wrap_styles_height',''),(1258,37,'wrap_styles_width','','wrap_styles_width',''),(1259,37,'wrap_styles_font-size','','wrap_styles_font-size',''),(1260,37,'wrap_styles_margin','','wrap_styles_margin',''),(1261,37,'wrap_styles_padding','','wrap_styles_padding',''),(1262,37,'wrap_styles_display','','wrap_styles_display',''),(1263,37,'wrap_styles_float','','wrap_styles_float',''),(1264,37,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(1265,37,'wrap_styles_advanced','','wrap_styles_advanced',''),(1266,37,'label_styles_background-color','','label_styles_background-color',''),(1267,37,'label_styles_border','','label_styles_border',''),(1268,37,'label_styles_border-style','','label_styles_border-style',''),(1269,37,'label_styles_border-color','','label_styles_border-color',''),(1270,37,'label_styles_color','','label_styles_color',''),(1271,37,'label_styles_height','','label_styles_height',''),(1272,37,'label_styles_width','','label_styles_width',''),(1273,37,'label_styles_font-size','','label_styles_font-size',''),(1274,37,'label_styles_margin','','label_styles_margin',''),(1275,37,'label_styles_padding','','label_styles_padding',''),(1276,37,'label_styles_display','','label_styles_display',''),(1277,37,'label_styles_float','','label_styles_float',''),(1278,37,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(1279,37,'label_styles_advanced','','label_styles_advanced',''),(1280,37,'element_styles_background-color','','element_styles_background-color',''),(1281,37,'element_styles_border','','element_styles_border',''),(1282,37,'element_styles_border-style','','element_styles_border-style',''),(1283,37,'element_styles_border-color','','element_styles_border-color',''),(1284,37,'element_styles_color','','element_styles_color',''),(1285,37,'element_styles_height','','element_styles_height',''),(1286,37,'element_styles_width','','element_styles_width',''),(1287,37,'element_styles_font-size','12.5','element_styles_font-size','12.5'),(1288,37,'element_styles_margin','','element_styles_margin',''),(1289,37,'element_styles_padding','7.5','element_styles_padding','7.5'),(1290,37,'element_styles_display','','element_styles_display',''),(1291,37,'element_styles_float','','element_styles_float',''),(1292,37,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(1293,37,'element_styles_advanced','','element_styles_advanced',''),(1294,37,'cellcid','c3980','cellcid','c3980'),(1295,38,'label','Submit','label','Submit'),(1296,38,'key','submit','key','submit'),(1297,38,'parent_id','5','parent_id','5'),(1298,38,'type','submit','type','submit'),(1299,38,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(1300,38,'processing_label','Processing','processing_label','Processing'),(1301,38,'order','7','order','7'),(1302,38,'objectType','Field','objectType','Field'),(1303,38,'objectDomain','fields','objectDomain','fields'),(1304,38,'editActive','','editActive',''),(1305,38,'container_class','','container_class',''),(1306,38,'element_class','','element_class',''),(1307,38,'wrap_styles_background-color','','wrap_styles_background-color',''),(1308,38,'wrap_styles_border','','wrap_styles_border',''),(1309,38,'wrap_styles_border-style','','wrap_styles_border-style',''),(1310,38,'wrap_styles_border-color','','wrap_styles_border-color',''),(1311,38,'wrap_styles_color','','wrap_styles_color',''),(1312,38,'wrap_styles_height','','wrap_styles_height',''),(1313,38,'wrap_styles_width','','wrap_styles_width',''),(1314,38,'wrap_styles_font-size','','wrap_styles_font-size',''),(1315,38,'wrap_styles_margin','','wrap_styles_margin',''),(1316,38,'wrap_styles_padding','','wrap_styles_padding',''),(1317,38,'wrap_styles_display','','wrap_styles_display',''),(1318,38,'wrap_styles_float','','wrap_styles_float',''),(1319,38,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(1320,38,'wrap_styles_advanced','','wrap_styles_advanced',''),(1321,38,'label_styles_background-color','','label_styles_background-color',''),(1322,38,'label_styles_border','','label_styles_border',''),(1323,38,'label_styles_border-style','','label_styles_border-style',''),(1324,38,'label_styles_border-color','','label_styles_border-color',''),(1325,38,'label_styles_color','','label_styles_color',''),(1326,38,'label_styles_height','','label_styles_height',''),(1327,38,'label_styles_width','','label_styles_width',''),(1328,38,'label_styles_font-size','','label_styles_font-size',''),(1329,38,'label_styles_margin','','label_styles_margin',''),(1330,38,'label_styles_padding','','label_styles_padding',''),(1331,38,'label_styles_display','','label_styles_display',''),(1332,38,'label_styles_float','','label_styles_float',''),(1333,38,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(1334,38,'label_styles_advanced','','label_styles_advanced',''),(1335,38,'element_styles_background-color','','element_styles_background-color',''),(1336,38,'element_styles_border','','element_styles_border',''),(1337,38,'element_styles_border-style','','element_styles_border-style',''),(1338,38,'element_styles_border-color','','element_styles_border-color',''),(1339,38,'element_styles_color','','element_styles_color',''),(1340,38,'element_styles_height','','element_styles_height',''),(1341,38,'element_styles_width','','element_styles_width',''),(1342,38,'element_styles_font-size','','element_styles_font-size',''),(1343,38,'element_styles_margin','','element_styles_margin',''),(1344,38,'element_styles_padding','','element_styles_padding',''),(1345,38,'element_styles_display','','element_styles_display',''),(1346,38,'element_styles_float','','element_styles_float',''),(1347,38,'element_styles_show_advanced_css','1','element_styles_show_advanced_css','1'),(1348,38,'element_styles_advanced','background: #fff !important;\ncolor: #211865 !important;\nfont-size: 17px !important;\nfont-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\npadding: 15px 25px !important;\ntext-transform: uppercase !important;\nfont-weight: 400 !important;\nfloat:right !important;','element_styles_advanced','background: #fff !important;\ncolor: #211865 !important;\nfont-size: 17px !important;\nfont-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\npadding: 15px 25px !important;\ntext-transform: uppercase !important;\nfont-weight: 400 !important;\nfloat:right !important;'),(1349,38,'submit_element_hover_styles_background-color','#211865','submit_element_hover_styles_background-color','#211865'),(1350,38,'submit_element_hover_styles_border','','submit_element_hover_styles_border',''),(1351,38,'submit_element_hover_styles_border-style','','submit_element_hover_styles_border-style',''),(1352,38,'submit_element_hover_styles_border-color','','submit_element_hover_styles_border-color',''),(1353,38,'submit_element_hover_styles_color','#ffffff','submit_element_hover_styles_color','#ffffff'),(1354,38,'submit_element_hover_styles_height','','submit_element_hover_styles_height',''),(1355,38,'submit_element_hover_styles_width','','submit_element_hover_styles_width',''),(1356,38,'submit_element_hover_styles_font-size','','submit_element_hover_styles_font-size',''),(1357,38,'submit_element_hover_styles_margin','','submit_element_hover_styles_margin',''),(1358,38,'submit_element_hover_styles_padding','','submit_element_hover_styles_padding',''),(1359,38,'submit_element_hover_styles_display','','submit_element_hover_styles_display',''),(1360,38,'submit_element_hover_styles_float','','submit_element_hover_styles_float',''),(1361,38,'submit_element_hover_styles_show_advanced_css','1','submit_element_hover_styles_show_advanced_css','1'),(1362,38,'submit_element_hover_styles_advanced','\n','submit_element_hover_styles_advanced','\n'),(1363,38,'cellcid','c3987','cellcid','c3987'),(1364,35,'idAttribute','id','idAttribute','id'),(1365,35,'field_label','Name','field_label','Name'),(1366,35,'field_key','name','field_key','name'),(1367,35,'custom_name_attribute','','custom_name_attribute',''),(1368,35,'personally_identifiable','','personally_identifiable',''),(1369,35,'value','','value',''),(1370,35,'drawerDisabled','','drawerDisabled',''),(1371,36,'idAttribute','id','idAttribute','id'),(1372,36,'field_label','Email','field_label','Email'),(1373,36,'field_key','email','field_key','email'),(1374,36,'custom_name_attribute','email','custom_name_attribute','email'),(1375,36,'personally_identifiable','1','personally_identifiable','1'),(1376,36,'value','','value',''),(1377,39,'editActive','','editActive',''),(1378,39,'order','3','order','3'),(1379,39,'idAttribute','id','idAttribute','id'),(1380,39,'type','phone','type','phone'),(1381,39,'label','Phone Number','label','Phone Number'),(1382,39,'key','phone_number_1662652113554','key','phone_number_1662652113554'),(1383,39,'label_pos','hidden','label_pos','hidden'),(1384,39,'required','1','required','1'),(1385,39,'default','','default',''),(1386,39,'placeholder','Phone Number*','placeholder','Phone Number*'),(1387,39,'container_class','','container_class',''),(1388,39,'element_class','','element_class',''),(1389,39,'input_limit','','input_limit',''),(1390,39,'input_limit_type','characters','input_limit_type','characters'),(1391,39,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(1392,39,'manual_key','','manual_key',''),(1393,39,'admin_label','','admin_label',''),(1394,39,'help_text','','help_text',''),(1395,39,'mask','','mask',''),(1396,39,'custom_mask','','custom_mask',''),(1397,39,'custom_name_attribute','Phone Number','custom_name_attribute','Phone Number'),(1398,39,'personally_identifiable','1','personally_identifiable','1'),(1399,39,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(1400,39,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(1401,39,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(1402,39,'cellcid','c3977','cellcid','c3977'),(1403,39,'value','','value',''),(1404,39,'oldCellcid','c4215','oldCellcid','c4215'),(1405,37,'idAttribute','id','idAttribute','id'),(1406,37,'field_label','Message','field_label','Message'),(1407,37,'field_key','message','field_key','message'),(1408,37,'value','','value',''),(1409,40,'editActive','','editActive',''),(1410,40,'order','5','order','5'),(1411,40,'idAttribute','id','idAttribute','id'),(1412,40,'type','html','type','html'),(1413,40,'label','HTML','label','HTML'),(1414,40,'default','<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a>&nbsp;</div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>','default','<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a>&nbsp;</div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>'),(1415,40,'container_class','','container_class',''),(1416,40,'element_class','','element_class',''),(1417,40,'wrap_styles_border','','wrap_styles_border',''),(1418,40,'wrap_styles_width','','wrap_styles_width',''),(1419,40,'wrap_styles_margin','','wrap_styles_margin',''),(1420,40,'wrap_styles_padding','','wrap_styles_padding',''),(1421,40,'wrap_styles_float','','wrap_styles_float',''),(1422,40,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(1423,40,'label_styles_border','','label_styles_border',''),(1424,40,'label_styles_width','','label_styles_width',''),(1425,40,'label_styles_font-size','','label_styles_font-size',''),(1426,40,'label_styles_margin','','label_styles_margin',''),(1427,40,'label_styles_padding','','label_styles_padding',''),(1428,40,'label_styles_float','','label_styles_float',''),(1429,40,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(1430,40,'element_styles_border','','element_styles_border',''),(1431,40,'element_styles_width','','element_styles_width',''),(1432,40,'element_styles_font-size','','element_styles_font-size',''),(1433,40,'element_styles_margin','','element_styles_margin',''),(1434,40,'element_styles_padding','','element_styles_padding',''),(1435,40,'element_styles_float','','element_styles_float',''),(1436,40,'element_styles_show_advanced_css','1','element_styles_show_advanced_css','1'),(1437,40,'key','html_1662651382914','key','html_1662651382914'),(1438,40,'cellcid','c3983','cellcid','c3983'),(1439,40,'drawerDisabled','','drawerDisabled',''),(1440,38,'idAttribute','id','idAttribute','id'),(1441,38,'field_label','Submit','field_label','Submit'),(1442,38,'field_key','submit','field_key','submit'),(1756,39,'wrap_styles_border','','wrap_styles_border',''),(1757,39,'wrap_styles_width','','wrap_styles_width',''),(1758,39,'wrap_styles_margin','','wrap_styles_margin',''),(1759,39,'wrap_styles_padding','','wrap_styles_padding',''),(1760,39,'wrap_styles_float','','wrap_styles_float',''),(1761,39,'label_styles_border','','label_styles_border',''),(1762,39,'label_styles_width','','label_styles_width',''),(1763,39,'label_styles_font-size','','label_styles_font-size',''),(1764,39,'label_styles_margin','','label_styles_margin',''),(1765,39,'label_styles_padding','','label_styles_padding',''),(1766,39,'label_styles_float','','label_styles_float',''),(1767,39,'element_styles_border','','element_styles_border',''),(1768,39,'element_styles_width','','element_styles_width',''),(1769,39,'element_styles_font-size','12','element_styles_font-size','12'),(1770,39,'element_styles_margin','','element_styles_margin',''),(1771,39,'element_styles_padding','8.5px','element_styles_padding','8.5px'),(1772,39,'element_styles_float','','element_styles_float',''),(1773,39,'drawerDisabled','','drawerDisabled',''),(1778,21,'wrap_styles_border','','wrap_styles_border',''),(1779,21,'wrap_styles_width','','wrap_styles_width',''),(1780,21,'wrap_styles_margin','','wrap_styles_margin',''),(1781,21,'wrap_styles_padding','','wrap_styles_padding',''),(1782,21,'wrap_styles_float','','wrap_styles_float',''),(1783,21,'label_styles_border','','label_styles_border',''),(1784,21,'label_styles_width','','label_styles_width',''),(1785,21,'label_styles_font-size','','label_styles_font-size',''),(1786,21,'label_styles_margin','','label_styles_margin',''),(1787,21,'label_styles_padding','','label_styles_padding',''),(1788,21,'label_styles_float','','label_styles_float',''),(1789,21,'element_styles_border','','element_styles_border',''),(1790,21,'element_styles_width','','element_styles_width',''),(1791,21,'element_styles_font-size','','element_styles_font-size',''),(1792,21,'element_styles_margin','','element_styles_margin',''),(1793,21,'element_styles_padding','','element_styles_padding',''),(1794,21,'element_styles_float','','element_styles_float',''),(1795,25,'wrap_styles_border','','wrap_styles_border',''),(1796,25,'wrap_styles_width','','wrap_styles_width',''),(1797,25,'wrap_styles_margin','','wrap_styles_margin',''),(1798,25,'wrap_styles_padding','','wrap_styles_padding',''),(1799,25,'wrap_styles_float','','wrap_styles_float',''),(1800,25,'label_styles_border','','label_styles_border',''),(1801,25,'label_styles_width','','label_styles_width',''),(1802,25,'label_styles_font-size','','label_styles_font-size',''),(1803,25,'label_styles_margin','','label_styles_margin',''),(1804,25,'label_styles_padding','','label_styles_padding',''),(1805,25,'label_styles_float','','label_styles_float',''),(1806,25,'element_styles_border','','element_styles_border',''),(1807,25,'element_styles_width','','element_styles_width',''),(1808,25,'element_styles_font-size','','element_styles_font-size',''),(1809,25,'element_styles_margin','','element_styles_margin',''),(1810,25,'element_styles_padding','','element_styles_padding',''),(1811,25,'element_styles_float','','element_styles_float',''),(1812,26,'checked_calc_value','','checked_calc_value',''),(1813,26,'unchecked_calc_value','','unchecked_calc_value',''),(1814,26,'wrap_styles_border','','wrap_styles_border',''),(1815,26,'wrap_styles_width','','wrap_styles_width',''),(1816,26,'wrap_styles_margin','','wrap_styles_margin',''),(1817,26,'wrap_styles_padding','','wrap_styles_padding',''),(1818,26,'wrap_styles_float','','wrap_styles_float',''),(1819,26,'label_styles_border','','label_styles_border',''),(1820,26,'label_styles_width','','label_styles_width',''),(1821,26,'label_styles_font-size','','label_styles_font-size',''),(1822,26,'label_styles_margin','','label_styles_margin',''),(1823,26,'label_styles_padding','','label_styles_padding',''),(1824,26,'label_styles_float','','label_styles_float',''),(1825,26,'element_styles_border','','element_styles_border',''),(1826,26,'element_styles_width','','element_styles_width',''),(1827,26,'element_styles_font-size','','element_styles_font-size',''),(1828,26,'element_styles_margin','','element_styles_margin',''),(1829,26,'element_styles_padding','','element_styles_padding',''),(1830,26,'element_styles_float','','element_styles_float',''),(1831,46,'editActive','','editActive',''),(1832,46,'order','4','order','4'),(1833,46,'idAttribute','id','idAttribute','id'),(1834,46,'type','listselect','type','listselect'),(1835,46,'label','Select','label','Select'),(1836,46,'key','listselect_1662654086358','key','listselect_1662654086358'),(1837,46,'label_pos','default','label_pos','default'),(1838,46,'required','','required',''),(1839,46,'options','a:16:{i:0;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:16:\"Specify Attorney\";s:5:\"value\";s:16:\"Specify Attorney\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:1;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:14:\"Melissa A. Day\";s:5:\"value\";s:14:\"Melissa A. Day\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:2;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:16:\"James B. Cousins\";s:5:\"value\";s:16:\"James B. Cousins\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:2;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:3;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:3;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:15:\"Brian K. Prince\";s:5:\"value\";s:15:\"Brian K. Prince\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:4;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:4;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:17:\"Shannan M. Mackey\";s:5:\"value\";s:17:\"Shannan M. Mackey\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:5;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:5;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:16:\"Paul B. Kornacki\";s:5:\"value\";s:16:\"Paul B. Kornacki\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:6;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:6;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:22:\"Cassandra E. Christman\";s:5:\"value\";s:22:\"Cassandra E. Christman\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:7;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:7;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:15:\"Melanie A. Daly\";s:5:\"value\";s:15:\"Melanie A. Daly\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:8;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:8;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:17:\"Neil A. Diegelman\";s:5:\"value\";s:17:\"Neil A. Diegelman\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:9;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:9;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:18:\"Brendan T. Shannon\";s:5:\"value\";s:18:\"Brendan T. Shannon\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:10;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:10;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:15:\"Andrew P. Gould\";s:5:\"value\";s:15:\"Andrew P. Gould\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:11;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:11;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:14:\"Bingchen Huang\";s:5:\"value\";s:14:\"Bingchen Huang\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:12;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:12;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:13:\"Satoko Harada\";s:5:\"value\";s:13:\"Satoko Harada\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:13;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:13;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:12:\"Maria C. Lua\";s:5:\"value\";s:12:\"Maria C. Lua\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:14;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:14;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:16:\"Vicki L. Buehler\";s:5:\"value\";s:16:\"Vicki L. Buehler\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:15;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:15;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:15:\"Tyler J. Eckert\";s:5:\"value\";s:15:\"Tyler J. Eckert\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}}','options','a:16:{i:0;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:16:\"Specify Attorney\";s:5:\"value\";s:16:\"Specify Attorney\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:1;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:14:\"Melissa A. Day\";s:5:\"value\";s:14:\"Melissa A. Day\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:2;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:16:\"James B. Cousins\";s:5:\"value\";s:16:\"James B. Cousins\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:2;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:3;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:3;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:15:\"Brian K. Prince\";s:5:\"value\";s:15:\"Brian K. Prince\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:4;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:4;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:17:\"Shannan M. Mackey\";s:5:\"value\";s:17:\"Shannan M. Mackey\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:5;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:5;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:16:\"Paul B. Kornacki\";s:5:\"value\";s:16:\"Paul B. Kornacki\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:6;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:6;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:22:\"Cassandra E. Christman\";s:5:\"value\";s:22:\"Cassandra E. Christman\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:7;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:7;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:15:\"Melanie A. Daly\";s:5:\"value\";s:15:\"Melanie A. Daly\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:8;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:8;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:17:\"Neil A. Diegelman\";s:5:\"value\";s:17:\"Neil A. Diegelman\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:9;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:9;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:18:\"Brendan T. Shannon\";s:5:\"value\";s:18:\"Brendan T. Shannon\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:10;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:10;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:15:\"Andrew P. Gould\";s:5:\"value\";s:15:\"Andrew P. Gould\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:11;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:11;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:14:\"Bingchen Huang\";s:5:\"value\";s:14:\"Bingchen Huang\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:12;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:12;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:13:\"Satoko Harada\";s:5:\"value\";s:13:\"Satoko Harada\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:13;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:13;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:12:\"Maria C. Lua\";s:5:\"value\";s:12:\"Maria C. Lua\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:14;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:14;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:16:\"Vicki L. Buehler\";s:5:\"value\";s:16:\"Vicki L. Buehler\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:15;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:15;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:15:\"Tyler J. Eckert\";s:5:\"value\";s:15:\"Tyler J. Eckert\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}}'),(1840,46,'container_class','','container_class',''),(1841,46,'element_class','','element_class',''),(1842,46,'admin_label','','admin_label',''),(1843,46,'help_text','','help_text',''),(1844,46,'wrap_styles_border','','wrap_styles_border',''),(1845,46,'wrap_styles_width','','wrap_styles_width',''),(1846,46,'wrap_styles_margin','','wrap_styles_margin',''),(1847,46,'wrap_styles_padding','','wrap_styles_padding',''),(1848,46,'wrap_styles_float','','wrap_styles_float',''),(1849,46,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(1850,46,'label_styles_border','','label_styles_border',''),(1851,46,'label_styles_width','','label_styles_width',''),(1852,46,'label_styles_font-size','','label_styles_font-size',''),(1853,46,'label_styles_margin','','label_styles_margin',''),(1854,46,'label_styles_padding','','label_styles_padding',''),(1855,46,'label_styles_float','','label_styles_float',''),(1856,46,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(1857,46,'element_styles_border','','element_styles_border',''),(1858,46,'element_styles_width','','element_styles_width',''),(1859,46,'element_styles_font-size','','element_styles_font-size',''),(1860,46,'element_styles_margin','','element_styles_margin',''),(1861,46,'element_styles_padding','','element_styles_padding',''),(1862,46,'element_styles_float','','element_styles_float',''),(1863,46,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(1864,46,'cellcid','c3982','cellcid','c3982'),(1865,46,'drawerDisabled','','drawerDisabled',''),(1867,36,'drawerDisabled','','drawerDisabled',''),(1868,37,'drawerDisabled','','drawerDisabled',''),(1869,47,'editActive','','editActive',''),(1870,47,'order','6','order','6'),(1871,47,'idAttribute','id','idAttribute','id'),(1872,47,'type','listcheckbox','type','listcheckbox'),(1873,47,'label','Checkbox List','label','Checkbox List'),(1874,47,'key','listcheckbox_1662663562280','key','listcheckbox_1662663562280'),(1875,47,'label_pos','hidden','label_pos','hidden'),(1876,47,'required','','required',''),(1877,47,'options','a:2:{i:0;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:26:\"I Have Read the Disclaimer\";s:5:\"value\";s:26:\"I Have Read the Disclaimer\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:1;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:36:\"I Acknowledge and Agree to its Terms\";s:5:\"value\";s:36:\"I Acknowledge and Agree to its Terms\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}}','options','a:2:{i:0;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:26:\"I Have Read the Disclaimer\";s:5:\"value\";s:26:\"I Have Read the Disclaimer\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:1;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:36:\"I Acknowledge and Agree to its Terms\";s:5:\"value\";s:36:\"I Acknowledge and Agree to its Terms\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}}'),(1878,47,'container_class','','container_class',''),(1879,47,'element_class','lm-ignore-checkbox6','element_class','lm-ignore-checkbox6'),(1880,47,'admin_label','','admin_label',''),(1881,47,'help_text','','help_text',''),(1882,47,'wrap_styles_border','','wrap_styles_border',''),(1883,47,'wrap_styles_width','','wrap_styles_width',''),(1884,47,'wrap_styles_margin','','wrap_styles_margin',''),(1885,47,'wrap_styles_padding','','wrap_styles_padding',''),(1886,47,'wrap_styles_float','','wrap_styles_float',''),(1887,47,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(1888,47,'label_styles_border','','label_styles_border',''),(1889,47,'label_styles_width','','label_styles_width',''),(1890,47,'label_styles_font-size','','label_styles_font-size',''),(1891,47,'label_styles_margin','','label_styles_margin',''),(1892,47,'label_styles_padding','','label_styles_padding',''),(1893,47,'label_styles_float','','label_styles_float',''),(1894,47,'label_styles_show_advanced_css','1','label_styles_show_advanced_css','1'),(1895,47,'element_styles_border','','element_styles_border',''),(1896,47,'element_styles_width','','element_styles_width',''),(1897,47,'element_styles_font-size','','element_styles_font-size',''),(1898,47,'element_styles_margin','','element_styles_margin',''),(1899,47,'element_styles_padding','','element_styles_padding',''),(1900,47,'element_styles_float','','element_styles_float',''),(1901,47,'element_styles_show_advanced_css','1','element_styles_show_advanced_css','1'),(1902,47,'list_item_row_styles_border','','list_item_row_styles_border',''),(1903,47,'list_item_row_styles_height','','list_item_row_styles_height',''),(1904,47,'list_item_row_styles_width','','list_item_row_styles_width',''),(1905,47,'list_item_row_styles_font-size','','list_item_row_styles_font-size',''),(1906,47,'list_item_row_styles_margin','','list_item_row_styles_margin',''),(1907,47,'list_item_row_styles_padding','','list_item_row_styles_padding',''),(1908,47,'list_item_row_styles_float','','list_item_row_styles_float',''),(1909,47,'list_item_row_styles_show_advanced_css','1','list_item_row_styles_show_advanced_css','1'),(1910,47,'list_item_label_styles_border','','list_item_label_styles_border',''),(1911,47,'list_item_label_styles_height','','list_item_label_styles_height',''),(1912,47,'list_item_label_styles_width','','list_item_label_styles_width',''),(1913,47,'list_item_label_styles_font-size','','list_item_label_styles_font-size',''),(1914,47,'list_item_label_styles_margin','','list_item_label_styles_margin',''),(1915,47,'list_item_label_styles_padding','','list_item_label_styles_padding',''),(1916,47,'list_item_label_styles_float','','list_item_label_styles_float',''),(1917,47,'list_item_label_styles_show_advanced_css','1','list_item_label_styles_show_advanced_css','1'),(1918,47,'list_item_element_styles_border','','list_item_element_styles_border',''),(1919,47,'list_item_element_styles_height','','list_item_element_styles_height',''),(1920,47,'list_item_element_styles_width','','list_item_element_styles_width',''),(1921,47,'list_item_element_styles_font-size','12.5','list_item_element_styles_font-size','12.5'),(1922,47,'list_item_element_styles_margin','','list_item_element_styles_margin',''),(1923,47,'list_item_element_styles_padding','5px','list_item_element_styles_padding','5px'),(1924,47,'list_item_element_styles_float','','list_item_element_styles_float',''),(1925,47,'list_item_element_styles_show_advanced_css','1','list_item_element_styles_show_advanced_css','1'),(1926,47,'cellcid','c3985','cellcid','c3985'),(1927,47,'drawerDisabled','','drawerDisabled',''),(1928,47,'cellOrder','1','cellOrder','1'),(1929,47,'list_item_row_styles_display','','list_item_row_styles_display',''),(1930,47,'list_item_label_styles_display','','list_item_label_styles_display',''),(1931,47,'list_item_element_styles_display','','list_item_element_styles_display',''),(1932,47,'element_styles_background-color','#ffffff','element_styles_background-color','#ffffff'),(1933,47,'element_styles_border-style','solid','element_styles_border-style','solid'),(1934,47,'element_styles_border-color','#000000','element_styles_border-color','#000000'),(1935,47,'wrap_styles_advanced','lm-ignore-checkbox1','wrap_styles_advanced','lm-ignore-checkbox1'),(1936,47,'label_styles_advanced','lm-ignore-checkbox2','label_styles_advanced','lm-ignore-checkbox2'),(1937,47,'element_styles_advanced','lm-ignore-checkbox3','element_styles_advanced','lm-ignore-checkbox3'),(1938,47,'list_item_row_styles_advanced','lm-ignore-checkbox4','list_item_row_styles_advanced','lm-ignore-checkbox4'),(1939,47,'list_item_label_styles_advanced','lm-ignore-checkbox4','list_item_label_styles_advanced','lm-ignore-checkbox4'),(1940,47,'list_item_element_styles_advanced','lm-ignore-checkbox5','list_item_element_styles_advanced','lm-ignore-checkbox5'),(1941,2,'wrap_styles_border','','wrap_styles_border',''),(1942,2,'wrap_styles_width','560px','wrap_styles_width','560px'),(1943,2,'wrap_styles_margin','','wrap_styles_margin',''),(1944,2,'wrap_styles_padding','','wrap_styles_padding',''),(1945,2,'wrap_styles_float','','wrap_styles_float',''),(1946,2,'label_styles_border','','label_styles_border',''),(1947,2,'label_styles_width','','label_styles_width',''),(1948,2,'label_styles_font-size','','label_styles_font-size',''),(1949,2,'label_styles_margin','','label_styles_margin',''),(1950,2,'label_styles_padding','','label_styles_padding',''),(1951,2,'label_styles_float','','label_styles_float',''),(1952,2,'element_styles_border','','element_styles_border',''),(1953,2,'element_styles_width','','element_styles_width',''),(1954,2,'element_styles_font-size','15','element_styles_font-size','15'),(1955,2,'element_styles_margin','','element_styles_margin',''),(1956,2,'element_styles_padding','8.5px','element_styles_padding','8.5px'),(1957,2,'element_styles_float','','element_styles_float',''),(1958,3,'wrap_styles_border','','wrap_styles_border',''),(1959,3,'wrap_styles_width','560px','wrap_styles_width','560px'),(1960,3,'wrap_styles_margin','','wrap_styles_margin',''),(1961,3,'wrap_styles_padding','','wrap_styles_padding',''),(1962,3,'wrap_styles_float','','wrap_styles_float',''),(1963,3,'label_styles_border','','label_styles_border',''),(1964,3,'label_styles_width','','label_styles_width',''),(1965,3,'label_styles_font-size','','label_styles_font-size',''),(1966,3,'label_styles_margin','','label_styles_margin',''),(1967,3,'label_styles_padding','','label_styles_padding',''),(1968,3,'label_styles_float','','label_styles_float',''),(1969,3,'element_styles_border','','element_styles_border',''),(1970,3,'element_styles_width','','element_styles_width',''),(1971,3,'element_styles_font-size','15','element_styles_font-size','15'),(1972,3,'element_styles_margin','','element_styles_margin',''),(1973,3,'element_styles_padding','8.5px','element_styles_padding','8.5px'),(1974,3,'element_styles_float','','element_styles_float',''),(1975,4,'wrap_styles_border','','wrap_styles_border',''),(1976,4,'wrap_styles_width','560px','wrap_styles_width','560px'),(1977,4,'wrap_styles_margin','','wrap_styles_margin',''),(1978,4,'wrap_styles_padding','','wrap_styles_padding',''),(1979,4,'wrap_styles_float','','wrap_styles_float',''),(1980,4,'label_styles_border','','label_styles_border',''),(1981,4,'label_styles_width','','label_styles_width',''),(1982,4,'label_styles_font-size','','label_styles_font-size',''),(1983,4,'label_styles_margin','','label_styles_margin',''),(1984,4,'label_styles_padding','','label_styles_padding',''),(1985,4,'label_styles_float','','label_styles_float',''),(1986,4,'element_styles_border','','element_styles_border',''),(1987,4,'element_styles_width','','element_styles_width',''),(1988,4,'element_styles_font-size','15','element_styles_font-size','15'),(1989,4,'element_styles_margin','','element_styles_margin',''),(1990,4,'element_styles_padding','8.5px','element_styles_padding','8.5px'),(1991,4,'element_styles_float','','element_styles_float',''),(1992,5,'wrap_styles_border','','wrap_styles_border',''),(1993,5,'wrap_styles_width','560px','wrap_styles_width','560px'),(1994,5,'wrap_styles_margin','','wrap_styles_margin',''),(1995,5,'wrap_styles_padding','','wrap_styles_padding',''),(1996,5,'wrap_styles_float','','wrap_styles_float',''),(1997,5,'label_styles_border','','label_styles_border',''),(1998,5,'label_styles_width','','label_styles_width',''),(1999,5,'label_styles_font-size','','label_styles_font-size',''),(2000,5,'label_styles_margin','','label_styles_margin',''),(2001,5,'label_styles_padding','','label_styles_padding',''),(2002,5,'label_styles_float','','label_styles_float',''),(2003,5,'element_styles_border','','element_styles_border',''),(2004,5,'element_styles_width','','element_styles_width',''),(2005,5,'element_styles_font-size','15','element_styles_font-size','15'),(2006,5,'element_styles_margin','','element_styles_margin',''),(2007,5,'element_styles_padding','8.5px','element_styles_padding','8.5px'),(2008,5,'element_styles_float','','element_styles_float',''),(2009,5,'drawerDisabled','','drawerDisabled',''),(2010,10,'wrap_styles_border','','wrap_styles_border',''),(2011,10,'wrap_styles_width','560px','wrap_styles_width','560px'),(2012,10,'wrap_styles_margin','','wrap_styles_margin',''),(2013,10,'wrap_styles_padding','','wrap_styles_padding',''),(2014,10,'wrap_styles_float','','wrap_styles_float',''),(2015,10,'label_styles_border','','label_styles_border',''),(2016,10,'label_styles_width','','label_styles_width',''),(2017,10,'label_styles_font-size','','label_styles_font-size',''),(2018,10,'label_styles_margin','','label_styles_margin',''),(2019,10,'label_styles_padding','','label_styles_padding',''),(2020,10,'label_styles_float','','label_styles_float',''),(2021,10,'element_styles_border','','element_styles_border',''),(2022,10,'element_styles_width','','element_styles_width',''),(2023,10,'element_styles_font-size','12.5','element_styles_font-size','12.5'),(2024,10,'element_styles_margin','','element_styles_margin',''),(2025,10,'element_styles_padding','7.5px','element_styles_padding','7.5px'),(2026,10,'element_styles_float','','element_styles_float',''),(2027,10,'drawerDisabled','','drawerDisabled',''),(2028,8,'wrap_styles_border','','wrap_styles_border',''),(2029,8,'wrap_styles_width','560px','wrap_styles_width','560px'),(2030,8,'wrap_styles_margin','','wrap_styles_margin',''),(2031,8,'wrap_styles_padding','','wrap_styles_padding',''),(2032,8,'wrap_styles_float','','wrap_styles_float',''),(2033,8,'label_styles_border','','label_styles_border',''),(2034,8,'label_styles_width','','label_styles_width',''),(2035,8,'label_styles_font-size','','label_styles_font-size',''),(2036,8,'label_styles_margin','','label_styles_margin',''),(2037,8,'label_styles_padding','','label_styles_padding',''),(2038,8,'label_styles_float','','label_styles_float',''),(2039,8,'element_styles_border','','element_styles_border',''),(2040,8,'element_styles_width','','element_styles_width',''),(2041,8,'element_styles_font-size','','element_styles_font-size',''),(2042,8,'element_styles_margin','','element_styles_margin',''),(2043,8,'element_styles_padding','','element_styles_padding',''),(2044,8,'element_styles_float','','element_styles_float',''),(2045,8,'list_item_row_styles_border','','list_item_row_styles_border',''),(2046,8,'list_item_row_styles_height','','list_item_row_styles_height',''),(2047,8,'list_item_row_styles_width','','list_item_row_styles_width',''),(2048,8,'list_item_row_styles_font-size','15','list_item_row_styles_font-size','15'),(2049,8,'list_item_row_styles_margin','','list_item_row_styles_margin',''),(2050,8,'list_item_row_styles_padding','8.5px','list_item_row_styles_padding','8.5px'),(2051,8,'list_item_row_styles_float','','list_item_row_styles_float',''),(2052,8,'list_item_label_styles_border','','list_item_label_styles_border',''),(2053,8,'list_item_label_styles_height','','list_item_label_styles_height',''),(2054,8,'list_item_label_styles_width','','list_item_label_styles_width',''),(2055,8,'list_item_label_styles_font-size','','list_item_label_styles_font-size',''),(2056,8,'list_item_label_styles_margin','','list_item_label_styles_margin',''),(2057,8,'list_item_label_styles_padding','','list_item_label_styles_padding',''),(2058,8,'list_item_label_styles_float','','list_item_label_styles_float',''),(2059,8,'list_item_element_styles_border','','list_item_element_styles_border',''),(2060,8,'list_item_element_styles_height','','list_item_element_styles_height',''),(2061,8,'list_item_element_styles_width','','list_item_element_styles_width',''),(2062,8,'list_item_element_styles_font-size','15','list_item_element_styles_font-size','15'),(2063,8,'list_item_element_styles_margin','','list_item_element_styles_margin',''),(2064,8,'list_item_element_styles_padding','8.5px','list_item_element_styles_padding','8.5px'),(2065,8,'list_item_element_styles_float','','list_item_element_styles_float',''),(2066,12,'checked_calc_value','','checked_calc_value',''),(2067,12,'unchecked_calc_value','','unchecked_calc_value',''),(2068,12,'wrap_styles_border','','wrap_styles_border',''),(2069,12,'wrap_styles_width','560px','wrap_styles_width','560px'),(2070,12,'wrap_styles_margin','','wrap_styles_margin',''),(2071,12,'wrap_styles_padding','','wrap_styles_padding',''),(2072,12,'wrap_styles_float','','wrap_styles_float',''),(2073,12,'label_styles_border','','label_styles_border',''),(2074,12,'label_styles_width','','label_styles_width',''),(2075,12,'label_styles_font-size','','label_styles_font-size',''),(2076,12,'label_styles_margin','','label_styles_margin',''),(2077,12,'label_styles_padding','','label_styles_padding',''),(2078,12,'label_styles_float','','label_styles_float',''),(2079,12,'element_styles_border','','element_styles_border',''),(2080,12,'element_styles_width','','element_styles_width',''),(2081,12,'element_styles_font-size','','element_styles_font-size',''),(2082,12,'element_styles_margin','','element_styles_margin',''),(2083,12,'element_styles_padding','','element_styles_padding',''),(2084,12,'element_styles_float','','element_styles_float',''),(2085,2,'wrap_styles_advanced','margin-left: 255px;','wrap_styles_advanced','margin-left: 255px;'),(2086,3,'wrap_styles_advanced','margin-left: 255px;','wrap_styles_advanced','margin-left: 255px;'),(2087,4,'wrap_styles_advanced','margin-left: 255px;','wrap_styles_advanced','margin-left: 255px;'),(2088,5,'wrap_styles_advanced','margin-left: 255px;','wrap_styles_advanced','margin-left: 255px;'),(2089,6,'wrap_styles_advanced','margin-left: 255px;','wrap_styles_advanced','margin-left: 255px;'),(2090,8,'wrap_styles_advanced','margin-left: 255px;','wrap_styles_advanced','margin-left: 255px;'),(2091,10,'wrap_styles_advanced','margin-left: 255px;','wrap_styles_advanced','margin-left: 255px;'),(2092,12,'wrap_styles_advanced','margin-left: 255px;','wrap_styles_advanced','margin-left: 255px;'),(2093,11,'wrap_styles_advanced','margin-left: 255px;','wrap_styles_advanced','margin-left: 255px;'),(2094,13,'wrap_styles_border','','wrap_styles_border',''),(2095,13,'wrap_styles_width','','wrap_styles_width',''),(2096,13,'wrap_styles_margin','','wrap_styles_margin',''),(2097,13,'wrap_styles_padding','','wrap_styles_padding',''),(2098,13,'wrap_styles_float','','wrap_styles_float',''),(2099,13,'wrap_styles_advanced','margin-left: 255px;','wrap_styles_advanced','margin-left: 255px;'),(2100,13,'element_styles_border','','element_styles_border',''),(2101,13,'element_styles_width','','element_styles_width',''),(2102,13,'element_styles_font-size','','element_styles_font-size',''),(2103,13,'element_styles_margin','','element_styles_margin',''),(2104,13,'element_styles_padding','','element_styles_padding',''),(2105,13,'element_styles_float','','element_styles_float',''),(2106,13,'submit_element_hover_styles_border','','submit_element_hover_styles_border',''),(2107,13,'submit_element_hover_styles_width','','submit_element_hover_styles_width',''),(2108,13,'submit_element_hover_styles_font-size','','submit_element_hover_styles_font-size',''),(2109,13,'submit_element_hover_styles_margin','','submit_element_hover_styles_margin',''),(2110,13,'submit_element_hover_styles_padding','','submit_element_hover_styles_padding',''),(2111,13,'submit_element_hover_styles_float','','submit_element_hover_styles_float',''),(2112,48,'objectType','Field','objectType','Field'),(2113,48,'objectDomain','fields','objectDomain','fields'),(2114,48,'editActive','','editActive',''),(2115,48,'order','1','order','1'),(2116,48,'type','html','type','html'),(2117,48,'label','Personal Information','label','Personal Information'),(2118,48,'default','','default',''),(2119,48,'container_class','','container_class',''),(2120,48,'element_class','','element_class',''),(2121,48,'wrap_styles_border','','wrap_styles_border',''),(2122,48,'wrap_styles_width','','wrap_styles_width',''),(2123,48,'wrap_styles_margin','','wrap_styles_margin',''),(2124,48,'wrap_styles_padding','','wrap_styles_padding',''),(2125,48,'wrap_styles_float','','wrap_styles_float',''),(2126,48,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(2127,48,'label_styles_border','','label_styles_border',''),(2128,48,'label_styles_width','','label_styles_width',''),(2129,48,'label_styles_font-size','','label_styles_font-size',''),(2130,48,'label_styles_margin','','label_styles_margin',''),(2131,48,'label_styles_padding','','label_styles_padding',''),(2132,48,'label_styles_float','','label_styles_float',''),(2133,48,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(2134,48,'element_styles_border','','element_styles_border',''),(2135,48,'element_styles_width','','element_styles_width',''),(2136,48,'element_styles_font-size','','element_styles_font-size',''),(2137,48,'element_styles_margin','','element_styles_margin',''),(2138,48,'element_styles_padding','','element_styles_padding',''),(2139,48,'element_styles_float','','element_styles_float',''),(2140,48,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(2141,48,'cellcid','c4047','cellcid','c4047'),(2142,48,'key','personal_information_1534954814742','key','personal_information_1534954814742'),(2143,48,'drawerDisabled','','drawerDisabled',''),(2144,48,'parent_id','1','parent_id','1'),(2145,48,'field_label','Personal Information','field_label','Personal Information'),(2146,48,'field_key','personal_information_1534954814742','field_key','personal_information_1534954814742'),(2147,48,'idAttribute','id','idAttribute','id'),(2175,49,'objectType','Field','objectType','Field'),(2176,49,'objectDomain','fields','objectDomain','fields'),(2177,49,'editActive','','editActive',''),(2178,49,'order','2','order','2'),(2179,49,'type','firstname','type','firstname'),(2180,49,'label','Name','label','Name'),(2181,49,'key','name_1534954806801','key','name_1534954806801'),(2182,49,'label_pos','default','label_pos','default'),(2183,49,'required','','required',''),(2184,49,'default','','default',''),(2185,49,'placeholder','','placeholder',''),(2186,49,'container_class','','container_class',''),(2187,49,'element_class','','element_class',''),(2188,49,'admin_label','contactName','admin_label','contactName'),(2189,49,'help_text','','help_text',''),(2190,49,'custom_name_attribute','fname','custom_name_attribute','fname'),(2191,49,'personally_identifiable','1','personally_identifiable','1'),(2192,49,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(2193,49,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(2194,49,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(2195,49,'cellcid','c4051','cellcid','c4051'),(2196,49,'drawerDisabled','','drawerDisabled',''),(2197,49,'parent_id','1','parent_id','1'),(2198,49,'field_label','Name','field_label','Name'),(2199,49,'field_key','name_1534954806801','field_key','name_1534954806801'),(2200,49,'value','','value',''),(2201,49,'idAttribute','id','idAttribute','id'),(2202,49,'wrap_styles_border','','wrap_styles_border',''),(2203,49,'wrap_styles_width','315px','wrap_styles_width','315px'),(2204,49,'wrap_styles_margin','','wrap_styles_margin',''),(2205,49,'wrap_styles_padding','','wrap_styles_padding',''),(2206,49,'wrap_styles_float','','wrap_styles_float',''),(2207,49,'label_styles_border','','label_styles_border',''),(2208,49,'label_styles_width','','label_styles_width',''),(2209,49,'label_styles_font-size','','label_styles_font-size',''),(2210,49,'label_styles_margin','','label_styles_margin',''),(2211,49,'label_styles_padding','','label_styles_padding',''),(2212,49,'label_styles_float','','label_styles_float',''),(2213,49,'element_styles_border','','element_styles_border',''),(2214,49,'element_styles_width','','element_styles_width',''),(2215,49,'element_styles_font-size','15','element_styles_font-size','15'),(2216,49,'element_styles_margin','','element_styles_margin',''),(2217,49,'element_styles_padding','8.5px','element_styles_padding','8.5px'),(2218,49,'element_styles_float','','element_styles_float',''),(2219,49,'wrap_styles_advanced','','wrap_styles_advanced',''),(2238,50,'objectType','Field','objectType','Field'),(2239,50,'objectDomain','fields','objectDomain','fields'),(2240,50,'editActive','','editActive',''),(2241,50,'order','3','order','3'),(2242,50,'type','email','type','email'),(2243,50,'label','Email','label','Email'),(2244,50,'key','email_1534954365299','key','email_1534954365299'),(2245,50,'label_pos','default','label_pos','default'),(2246,50,'required','1','required','1'),(2247,50,'default','','default',''),(2248,50,'placeholder','','placeholder',''),(2249,50,'container_class','','container_class',''),(2250,50,'element_class','','element_class',''),(2251,50,'admin_label','emailFromAddress','admin_label','emailFromAddress'),(2252,50,'help_text','','help_text',''),(2253,50,'custom_name_attribute','email','custom_name_attribute','email'),(2254,50,'personally_identifiable','1','personally_identifiable','1'),(2255,50,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(2256,50,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(2257,50,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(2258,50,'cellcid','c4054','cellcid','c4054'),(2259,50,'drawerDisabled','','drawerDisabled',''),(2260,50,'parent_id','1','parent_id','1'),(2261,50,'field_label','Email','field_label','Email'),(2262,50,'field_key','email_1534954365299','field_key','email_1534954365299'),(2263,50,'value','','value',''),(2264,50,'idAttribute','id','idAttribute','id'),(2265,50,'wrap_styles_border','','wrap_styles_border',''),(2266,50,'wrap_styles_width','315px','wrap_styles_width','315px'),(2267,50,'wrap_styles_margin','','wrap_styles_margin',''),(2268,50,'wrap_styles_padding','','wrap_styles_padding',''),(2269,50,'wrap_styles_float','','wrap_styles_float',''),(2270,50,'label_styles_border','','label_styles_border',''),(2271,50,'label_styles_width','','label_styles_width',''),(2272,50,'label_styles_font-size','','label_styles_font-size',''),(2273,50,'label_styles_margin','','label_styles_margin',''),(2274,50,'label_styles_padding','','label_styles_padding',''),(2275,50,'label_styles_float','','label_styles_float',''),(2276,50,'element_styles_border','','element_styles_border',''),(2277,50,'element_styles_width','','element_styles_width',''),(2278,50,'element_styles_font-size','15','element_styles_font-size','15'),(2279,50,'element_styles_margin','','element_styles_margin',''),(2280,50,'element_styles_padding','8.5px','element_styles_padding','8.5px'),(2281,50,'element_styles_float','','element_styles_float',''),(2282,50,'wrap_styles_advanced','','wrap_styles_advanced',''),(2301,51,'objectType','Field','objectType','Field'),(2302,51,'objectDomain','fields','objectDomain','fields'),(2303,51,'editActive','','editActive',''),(2304,51,'order','4','order','4'),(2305,51,'type','phone','type','phone'),(2306,51,'label','Phone','label','Phone'),(2307,51,'key','phone_1534954373936','key','phone_1534954373936'),(2308,51,'label_pos','default','label_pos','default'),(2309,51,'required','','required',''),(2310,51,'default','','default',''),(2311,51,'placeholder','','placeholder',''),(2312,51,'container_class','','container_class',''),(2313,51,'element_class','','element_class',''),(2314,51,'input_limit','','input_limit',''),(2315,51,'input_limit_type','characters','input_limit_type','characters'),(2316,51,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(2317,51,'manual_key','','manual_key',''),(2318,51,'admin_label','contactPhone','admin_label','contactPhone'),(2319,51,'help_text','','help_text',''),(2320,51,'mask','(999) 999-9999','mask','(999) 999-9999'),(2321,51,'custom_mask','','custom_mask',''),(2322,51,'custom_name_attribute','phone','custom_name_attribute','phone'),(2323,51,'personally_identifiable','1','personally_identifiable','1'),(2324,51,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(2325,51,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(2326,51,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(2327,51,'cellcid','c4057','cellcid','c4057'),(2328,51,'drawerDisabled','','drawerDisabled',''),(2329,51,'parent_id','1','parent_id','1'),(2330,51,'field_label','Phone','field_label','Phone'),(2331,51,'field_key','phone_1534954373936','field_key','phone_1534954373936'),(2332,51,'value','','value',''),(2333,51,'idAttribute','id','idAttribute','id'),(2334,51,'wrap_styles_border','','wrap_styles_border',''),(2335,51,'wrap_styles_width','315px','wrap_styles_width','315px'),(2336,51,'wrap_styles_margin','','wrap_styles_margin',''),(2337,51,'wrap_styles_padding','','wrap_styles_padding',''),(2338,51,'wrap_styles_float','','wrap_styles_float',''),(2339,51,'label_styles_border','','label_styles_border',''),(2340,51,'label_styles_width','','label_styles_width',''),(2341,51,'label_styles_font-size','','label_styles_font-size',''),(2342,51,'label_styles_margin','','label_styles_margin',''),(2343,51,'label_styles_padding','','label_styles_padding',''),(2344,51,'label_styles_float','','label_styles_float',''),(2345,51,'element_styles_border','','element_styles_border',''),(2346,51,'element_styles_width','','element_styles_width',''),(2347,51,'element_styles_font-size','15','element_styles_font-size','15'),(2348,51,'element_styles_margin','','element_styles_margin',''),(2349,51,'element_styles_padding','8.5px','element_styles_padding','8.5px'),(2350,51,'element_styles_float','','element_styles_float',''),(2351,51,'wrap_styles_advanced','','wrap_styles_advanced',''),(2364,52,'objectType','Field','objectType','Field'),(2365,52,'objectDomain','fields','objectDomain','fields'),(2366,52,'editActive','','editActive',''),(2367,52,'order','5','order','5'),(2368,52,'type','zip','type','zip'),(2369,52,'label','Zip','label','Zip'),(2370,52,'key','zip_1534954373399','key','zip_1534954373399'),(2371,52,'label_pos','default','label_pos','default'),(2372,52,'required','','required',''),(2373,52,'default','','default',''),(2374,52,'placeholder','','placeholder',''),(2375,52,'container_class','','container_class',''),(2376,52,'element_class','','element_class',''),(2377,52,'input_limit','','input_limit',''),(2378,52,'input_limit_type','characters','input_limit_type','characters'),(2379,52,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(2380,52,'manual_key','','manual_key',''),(2381,52,'admin_label','contactZip','admin_label','contactZip'),(2382,52,'help_text','','help_text',''),(2383,52,'mask','','mask',''),(2384,52,'custom_mask','','custom_mask',''),(2385,52,'custom_name_attribute','zip','custom_name_attribute','zip'),(2386,52,'personally_identifiable','','personally_identifiable',''),(2387,52,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(2388,52,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(2389,52,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(2390,52,'cellcid','c4060','cellcid','c4060'),(2391,52,'parent_id','1','parent_id','1'),(2392,52,'field_label','Zip','field_label','Zip'),(2393,52,'field_key','zip_1534954373399','field_key','zip_1534954373399'),(2394,52,'value','','value',''),(2395,52,'idAttribute','id','idAttribute','id'),(2396,52,'wrap_styles_border','','wrap_styles_border',''),(2397,52,'wrap_styles_width','315px','wrap_styles_width','315px'),(2398,52,'wrap_styles_margin','','wrap_styles_margin',''),(2399,52,'wrap_styles_padding','','wrap_styles_padding',''),(2400,52,'wrap_styles_float','','wrap_styles_float',''),(2401,52,'label_styles_border','','label_styles_border',''),(2402,52,'label_styles_width','','label_styles_width',''),(2403,52,'label_styles_font-size','','label_styles_font-size',''),(2404,52,'label_styles_margin','','label_styles_margin',''),(2405,52,'label_styles_padding','','label_styles_padding',''),(2406,52,'label_styles_float','','label_styles_float',''),(2407,52,'element_styles_border','','element_styles_border',''),(2408,52,'element_styles_width','','element_styles_width',''),(2409,52,'element_styles_font-size','15','element_styles_font-size','15'),(2410,52,'element_styles_margin','','element_styles_margin',''),(2411,52,'element_styles_padding','8.5px','element_styles_padding','8.5px'),(2412,52,'element_styles_float','','element_styles_float',''),(2413,52,'drawerDisabled','','drawerDisabled',''),(2414,52,'wrap_styles_advanced','','wrap_styles_advanced',''),(2427,53,'objectType','Field','objectType','Field'),(2428,53,'objectDomain','fields','objectDomain','fields'),(2429,53,'editActive','','editActive',''),(2430,53,'order','6','order','6'),(2431,53,'type','liststate','type','liststate'),(2432,53,'label','US States','label','US States'),(2433,53,'key','liststate_1534954369789','key','liststate_1534954369789'),(2434,53,'label_pos','default','label_pos','default'),(2435,53,'required','','required',''),(2436,53,'options','a:54:{i:0;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Alabama\";s:5:\"value\";s:2:\"AL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:1;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Alaska\";s:5:\"value\";s:2:\"AK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:2;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Arizona\";s:5:\"value\";s:2:\"AZ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:2;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:3;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Arkansas\";s:5:\"value\";s:2:\"AR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:3;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:4;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"California\";s:5:\"value\";s:2:\"CA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:4;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:5;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Colorado\";s:5:\"value\";s:2:\"CO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:5;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:6;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:11:\"Connecticut\";s:5:\"value\";s:2:\"CT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:6;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:7;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Delaware\";s:5:\"value\";s:2:\"DE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:7;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:8;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Florida\";s:5:\"value\";s:2:\"FL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:8;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:9;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Georgia\";s:5:\"value\";s:2:\"GA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:9;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:10;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Hawaii\";s:5:\"value\";s:2:\"HI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:10;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:11;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Idaho\";s:5:\"value\";s:2:\"ID\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:11;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:12;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Illinois\";s:5:\"value\";s:2:\"IL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:12;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:13;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Indiana\";s:5:\"value\";s:2:\"IN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:13;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:14;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Iowa\";s:5:\"value\";s:2:\"IA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:14;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:15;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Kansas\";s:5:\"value\";s:2:\"KS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:15;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:16;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Kentucky\";s:5:\"value\";s:2:\"KY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:16;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:17;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Louisiana\";s:5:\"value\";s:2:\"LA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:17;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:18;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Maine\";s:5:\"value\";s:2:\"ME\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:18;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:19;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Maryland\";s:5:\"value\";s:2:\"MD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:19;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:20;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"Massachusetts\";s:5:\"value\";s:2:\"MA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:20;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:21;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Michigan\";s:5:\"value\";s:2:\"MI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:21;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:22;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Minnesota\";s:5:\"value\";s:2:\"MN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:22;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:23;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:11:\"Mississippi\";s:5:\"value\";s:2:\"MS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:23;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:24;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Missouri\";s:5:\"value\";s:2:\"MO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:24;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:25;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Montana\";s:5:\"value\";s:2:\"MT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:25;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:26;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Nebraska\";s:5:\"value\";s:2:\"NE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:26;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:27;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Nevada\";s:5:\"value\";s:2:\"NV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:27;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:28;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"New Hampshire\";s:5:\"value\";s:2:\"NH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:28;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:29;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"New Jersey\";s:5:\"value\";s:2:\"NJ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:29;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:30;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"New Mexico\";s:5:\"value\";s:2:\"NM\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:30;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:31;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"New York\";s:5:\"value\";s:2:\"NY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:31;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:32;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:14:\"North Carolina\";s:5:\"value\";s:2:\"NC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:32;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:33;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"North Dakota\";s:5:\"value\";s:2:\"ND\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:33;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:34;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Ohio\";s:5:\"value\";s:2:\"OH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:34;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:35;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Oklahoma\";s:5:\"value\";s:2:\"OK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:35;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:36;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Oregon\";s:5:\"value\";s:2:\"OR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:36;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:37;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"Pennsylvania\";s:5:\"value\";s:2:\"PA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:37;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:38;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"Rhode Island\";s:5:\"value\";s:2:\"RI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:38;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:39;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:14:\"South Carolina\";s:5:\"value\";s:2:\"SC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:39;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:40;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"South Dakota\";s:5:\"value\";s:2:\"SD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:40;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:41;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Tennessee\";s:5:\"value\";s:2:\"TN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:41;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:42;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Texas\";s:5:\"value\";s:2:\"TX\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:42;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:43;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Utah\";s:5:\"value\";s:2:\"UT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:43;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:44;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Vermont\";s:5:\"value\";s:2:\"VT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:44;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:45;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Virginia\";s:5:\"value\";s:2:\"VA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:45;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:46;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"Washington\";s:5:\"value\";s:2:\"WA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:46;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:47;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"West Virginia\";s:5:\"value\";s:2:\"WV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:47;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:48;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Wisconsin\";s:5:\"value\";s:2:\"WI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:48;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:49;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Wyoming\";s:5:\"value\";s:2:\"WY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:49;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:50;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"Washington DC\";s:5:\"value\";s:2:\"DC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:50;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:51;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:51:\"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST\";s:5:\"value\";s:2:\"AE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:51;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:52;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:36:\"ARMED FORCES AMERICA (EXCEPT CANADA)\";s:5:\"value\";s:2:\"AA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:52;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:53;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:20:\"ARMED FORCES PACIFIC\";s:5:\"value\";s:2:\"AP\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:53;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}}','options','a:54:{i:0;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Alabama\";s:5:\"value\";s:2:\"AL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:1;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Alaska\";s:5:\"value\";s:2:\"AK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:2;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Arizona\";s:5:\"value\";s:2:\"AZ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:2;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:3;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Arkansas\";s:5:\"value\";s:2:\"AR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:3;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:4;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"California\";s:5:\"value\";s:2:\"CA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:4;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:5;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Colorado\";s:5:\"value\";s:2:\"CO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:5;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:6;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:11:\"Connecticut\";s:5:\"value\";s:2:\"CT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:6;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:7;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Delaware\";s:5:\"value\";s:2:\"DE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:7;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:8;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Florida\";s:5:\"value\";s:2:\"FL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:8;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:9;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Georgia\";s:5:\"value\";s:2:\"GA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:9;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:10;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Hawaii\";s:5:\"value\";s:2:\"HI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:10;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:11;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Idaho\";s:5:\"value\";s:2:\"ID\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:11;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:12;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Illinois\";s:5:\"value\";s:2:\"IL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:12;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:13;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Indiana\";s:5:\"value\";s:2:\"IN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:13;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:14;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Iowa\";s:5:\"value\";s:2:\"IA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:14;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:15;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Kansas\";s:5:\"value\";s:2:\"KS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:15;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:16;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Kentucky\";s:5:\"value\";s:2:\"KY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:16;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:17;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Louisiana\";s:5:\"value\";s:2:\"LA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:17;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:18;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Maine\";s:5:\"value\";s:2:\"ME\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:18;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:19;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Maryland\";s:5:\"value\";s:2:\"MD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:19;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:20;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"Massachusetts\";s:5:\"value\";s:2:\"MA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:20;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:21;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Michigan\";s:5:\"value\";s:2:\"MI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:21;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:22;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Minnesota\";s:5:\"value\";s:2:\"MN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:22;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:23;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:11:\"Mississippi\";s:5:\"value\";s:2:\"MS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:23;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:24;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Missouri\";s:5:\"value\";s:2:\"MO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:24;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:25;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Montana\";s:5:\"value\";s:2:\"MT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:25;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:26;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Nebraska\";s:5:\"value\";s:2:\"NE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:26;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:27;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Nevada\";s:5:\"value\";s:2:\"NV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:27;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:28;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"New Hampshire\";s:5:\"value\";s:2:\"NH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:28;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:29;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"New Jersey\";s:5:\"value\";s:2:\"NJ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:29;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:30;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"New Mexico\";s:5:\"value\";s:2:\"NM\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:30;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:31;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"New York\";s:5:\"value\";s:2:\"NY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:31;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:32;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:14:\"North Carolina\";s:5:\"value\";s:2:\"NC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:32;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:33;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"North Dakota\";s:5:\"value\";s:2:\"ND\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:33;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:34;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Ohio\";s:5:\"value\";s:2:\"OH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:34;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:35;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Oklahoma\";s:5:\"value\";s:2:\"OK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:35;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:36;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Oregon\";s:5:\"value\";s:2:\"OR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:36;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:37;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"Pennsylvania\";s:5:\"value\";s:2:\"PA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:37;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:38;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"Rhode Island\";s:5:\"value\";s:2:\"RI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:38;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:39;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:14:\"South Carolina\";s:5:\"value\";s:2:\"SC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:39;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:40;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"South Dakota\";s:5:\"value\";s:2:\"SD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:40;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:41;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Tennessee\";s:5:\"value\";s:2:\"TN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:41;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:42;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Texas\";s:5:\"value\";s:2:\"TX\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:42;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:43;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Utah\";s:5:\"value\";s:2:\"UT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:43;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:44;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Vermont\";s:5:\"value\";s:2:\"VT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:44;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:45;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Virginia\";s:5:\"value\";s:2:\"VA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:45;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:46;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"Washington\";s:5:\"value\";s:2:\"WA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:46;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:47;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"West Virginia\";s:5:\"value\";s:2:\"WV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:47;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:48;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Wisconsin\";s:5:\"value\";s:2:\"WI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:48;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:49;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Wyoming\";s:5:\"value\";s:2:\"WY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:49;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:50;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"Washington DC\";s:5:\"value\";s:2:\"DC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:50;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:51;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:51:\"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST\";s:5:\"value\";s:2:\"AE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:51;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:52;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:36:\"ARMED FORCES AMERICA (EXCEPT CANADA)\";s:5:\"value\";s:2:\"AA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:52;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:53;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:20:\"ARMED FORCES PACIFIC\";s:5:\"value\";s:2:\"AP\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:53;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}}'),(2437,53,'container_class','','container_class',''),(2438,53,'element_class','','element_class',''),(2439,53,'admin_label','','admin_label',''),(2440,53,'help_text','','help_text',''),(2441,53,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(2442,53,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(2443,53,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(2444,53,'list_item_row_styles_show_advanced_css','0','list_item_row_styles_show_advanced_css','0'),(2445,53,'list_item_label_styles_show_advanced_css','0','list_item_label_styles_show_advanced_css','0'),(2446,53,'list_item_element_styles_show_advanced_css','0','list_item_element_styles_show_advanced_css','0'),(2447,53,'cellcid','c4063','cellcid','c4063'),(2448,53,'drawerDisabled','','drawerDisabled',''),(2449,53,'parent_id','1','parent_id','1'),(2450,53,'field_label','US States','field_label','US States'),(2451,53,'field_key','liststate_1534954369789','field_key','liststate_1534954369789'),(2452,53,'wrap_styles_border','','wrap_styles_border',''),(2453,53,'wrap_styles_width','315px','wrap_styles_width','315px'),(2454,53,'wrap_styles_margin','','wrap_styles_margin',''),(2455,53,'wrap_styles_padding','','wrap_styles_padding',''),(2456,53,'wrap_styles_float','','wrap_styles_float',''),(2457,53,'label_styles_border','','label_styles_border',''),(2458,53,'label_styles_width','','label_styles_width',''),(2459,53,'label_styles_font-size','','label_styles_font-size',''),(2460,53,'label_styles_margin','','label_styles_margin',''),(2461,53,'label_styles_padding','','label_styles_padding',''),(2462,53,'label_styles_float','','label_styles_float',''),(2463,53,'element_styles_border','','element_styles_border',''),(2464,53,'element_styles_width','','element_styles_width',''),(2465,53,'element_styles_font-size','15','element_styles_font-size','15'),(2466,53,'element_styles_margin','','element_styles_margin',''),(2467,53,'element_styles_padding','8.5px','element_styles_padding','8.5px'),(2468,53,'element_styles_float','','element_styles_float',''),(2469,53,'list_item_row_styles_border','','list_item_row_styles_border',''),(2470,53,'list_item_row_styles_height','','list_item_row_styles_height',''),(2471,53,'list_item_row_styles_width','','list_item_row_styles_width',''),(2472,53,'list_item_row_styles_font-size','','list_item_row_styles_font-size',''),(2473,53,'list_item_row_styles_margin','','list_item_row_styles_margin',''),(2474,53,'list_item_row_styles_padding','','list_item_row_styles_padding',''),(2475,53,'list_item_row_styles_float','','list_item_row_styles_float',''),(2476,53,'list_item_label_styles_border','','list_item_label_styles_border',''),(2477,53,'list_item_label_styles_height','','list_item_label_styles_height',''),(2478,53,'list_item_label_styles_width','','list_item_label_styles_width',''),(2479,53,'list_item_label_styles_font-size','','list_item_label_styles_font-size',''),(2480,53,'list_item_label_styles_margin','','list_item_label_styles_margin',''),(2481,53,'list_item_label_styles_padding','','list_item_label_styles_padding',''),(2482,53,'list_item_label_styles_float','','list_item_label_styles_float',''),(2483,53,'list_item_element_styles_border','','list_item_element_styles_border',''),(2484,53,'list_item_element_styles_height','','list_item_element_styles_height',''),(2485,53,'list_item_element_styles_width','','list_item_element_styles_width',''),(2486,53,'list_item_element_styles_font-size','15','list_item_element_styles_font-size','15'),(2487,53,'list_item_element_styles_margin','','list_item_element_styles_margin',''),(2488,53,'list_item_element_styles_padding','8.5px','list_item_element_styles_padding','8.5px'),(2489,53,'list_item_element_styles_float','','list_item_element_styles_float',''),(2490,53,'idAttribute','id','idAttribute','id'),(2491,53,'wrap_styles_advanced','','wrap_styles_advanced',''),(2554,54,'objectType','Field','objectType','Field'),(2555,54,'objectDomain','fields','objectDomain','fields'),(2556,54,'editActive','','editActive',''),(2557,54,'order','7','order','7'),(2558,54,'type','html','type','html'),(2559,54,'label','Contact Preferences','label','Contact Preferences'),(2560,54,'default','','default',''),(2561,54,'container_class','','container_class',''),(2562,54,'element_class','','element_class',''),(2563,54,'wrap_styles_border','','wrap_styles_border',''),(2564,54,'wrap_styles_width','','wrap_styles_width',''),(2565,54,'wrap_styles_margin','','wrap_styles_margin',''),(2566,54,'wrap_styles_padding','','wrap_styles_padding',''),(2567,54,'wrap_styles_float','','wrap_styles_float',''),(2568,54,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(2569,54,'label_styles_border','','label_styles_border',''),(2570,54,'label_styles_width','','label_styles_width',''),(2571,54,'label_styles_font-size','','label_styles_font-size',''),(2572,54,'label_styles_margin','','label_styles_margin',''),(2573,54,'label_styles_padding','','label_styles_padding',''),(2574,54,'label_styles_float','','label_styles_float',''),(2575,54,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(2576,54,'element_styles_border','','element_styles_border',''),(2577,54,'element_styles_width','','element_styles_width',''),(2578,54,'element_styles_font-size','','element_styles_font-size',''),(2579,54,'element_styles_margin','','element_styles_margin',''),(2580,54,'element_styles_padding','','element_styles_padding',''),(2581,54,'element_styles_float','','element_styles_float',''),(2582,54,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(2583,54,'cellcid','c4066','cellcid','c4066'),(2584,54,'key','contact_preferences_1534954782835','key','contact_preferences_1534954782835'),(2585,54,'drawerDisabled','','drawerDisabled',''),(2586,54,'parent_id','1','parent_id','1'),(2587,54,'field_label','Contact Preferences','field_label','Contact Preferences'),(2588,54,'field_key','contact_preferences_1534954782835','field_key','contact_preferences_1534954782835'),(2589,54,'idAttribute','id','idAttribute','id'),(2617,55,'objectType','Field','objectType','Field'),(2618,55,'objectDomain','fields','objectDomain','fields'),(2619,55,'editActive','','editActive',''),(2620,55,'order','8','order','8'),(2621,55,'type','listcheckbox','type','listcheckbox'),(2622,55,'label','How Would You Like To Be Contacted?','label','How Would You Like To Be Contacted?'),(2623,55,'key','how_would_you_like_to_be_contacted_1534954740097','key','how_would_you_like_to_be_contacted_1534954740097'),(2624,55,'label_pos','default','label_pos','default'),(2625,55,'required','','required',''),(2626,55,'options','a:2:{i:0;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Phone\";s:5:\"value\";s:5:\"phone\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";s:1:\"0\";s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:1;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Email\";s:5:\"value\";s:5:\"email\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";s:1:\"1\";s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}}','options','a:2:{i:0;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Phone\";s:5:\"value\";s:5:\"phone\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";s:1:\"0\";s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:1;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Email\";s:5:\"value\";s:5:\"email\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";s:1:\"1\";s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}}'),(2627,55,'container_class','','container_class',''),(2628,55,'element_class','','element_class',''),(2629,55,'admin_label','contactPref','admin_label','contactPref'),(2630,55,'help_text','','help_text',''),(2631,55,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(2632,55,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(2633,55,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(2634,55,'list_item_row_styles_show_advanced_css','0','list_item_row_styles_show_advanced_css','0'),(2635,55,'list_item_label_styles_show_advanced_css','0','list_item_label_styles_show_advanced_css','0'),(2636,55,'list_item_element_styles_show_advanced_css','0','list_item_element_styles_show_advanced_css','0'),(2637,55,'cellcid','c4069','cellcid','c4069'),(2638,55,'drawerDisabled','','drawerDisabled',''),(2639,55,'parent_id','1','parent_id','1'),(2640,55,'field_label','How Would You Like To Be Contacted?','field_label','How Would You Like To Be Contacted?'),(2641,55,'field_key','how_would_you_like_to_be_contacted_1534954740097','field_key','how_would_you_like_to_be_contacted_1534954740097'),(2642,55,'idAttribute','id','idAttribute','id'),(2643,55,'wrap_styles_border','','wrap_styles_border',''),(2644,55,'wrap_styles_width','315px','wrap_styles_width','315px'),(2645,55,'wrap_styles_margin','','wrap_styles_margin',''),(2646,55,'wrap_styles_padding','','wrap_styles_padding',''),(2647,55,'wrap_styles_float','','wrap_styles_float',''),(2648,55,'label_styles_border','','label_styles_border',''),(2649,55,'label_styles_width','','label_styles_width',''),(2650,55,'label_styles_font-size','','label_styles_font-size',''),(2651,55,'label_styles_margin','','label_styles_margin',''),(2652,55,'label_styles_padding','','label_styles_padding',''),(2653,55,'label_styles_float','','label_styles_float',''),(2654,55,'element_styles_border','','element_styles_border',''),(2655,55,'element_styles_width','','element_styles_width',''),(2656,55,'element_styles_font-size','','element_styles_font-size',''),(2657,55,'element_styles_margin','','element_styles_margin',''),(2658,55,'element_styles_padding','','element_styles_padding',''),(2659,55,'element_styles_float','','element_styles_float',''),(2660,55,'list_item_row_styles_border','','list_item_row_styles_border',''),(2661,55,'list_item_row_styles_height','','list_item_row_styles_height',''),(2662,55,'list_item_row_styles_width','','list_item_row_styles_width',''),(2663,55,'list_item_row_styles_font-size','15','list_item_row_styles_font-size','15'),(2664,55,'list_item_row_styles_margin','','list_item_row_styles_margin',''),(2665,55,'list_item_row_styles_padding','8.5px','list_item_row_styles_padding','8.5px'),(2666,55,'list_item_row_styles_float','','list_item_row_styles_float',''),(2667,55,'list_item_label_styles_border','','list_item_label_styles_border',''),(2668,55,'list_item_label_styles_height','','list_item_label_styles_height',''),(2669,55,'list_item_label_styles_width','','list_item_label_styles_width',''),(2670,55,'list_item_label_styles_font-size','','list_item_label_styles_font-size',''),(2671,55,'list_item_label_styles_margin','','list_item_label_styles_margin',''),(2672,55,'list_item_label_styles_padding','','list_item_label_styles_padding',''),(2673,55,'list_item_label_styles_float','','list_item_label_styles_float',''),(2674,55,'list_item_element_styles_border','','list_item_element_styles_border',''),(2675,55,'list_item_element_styles_height','','list_item_element_styles_height',''),(2676,55,'list_item_element_styles_width','','list_item_element_styles_width',''),(2677,55,'list_item_element_styles_font-size','15','list_item_element_styles_font-size','15'),(2678,55,'list_item_element_styles_margin','','list_item_element_styles_margin',''),(2679,55,'list_item_element_styles_padding','8.5px','list_item_element_styles_padding','8.5px'),(2680,55,'list_item_element_styles_float','','list_item_element_styles_float',''),(2681,55,'wrap_styles_advanced','','wrap_styles_advanced',''),(2744,56,'objectType','Field','objectType','Field'),(2745,56,'objectDomain','fields','objectDomain','fields'),(2746,56,'editActive','','editActive',''),(2747,56,'order','10','order','10'),(2748,56,'type','textarea','type','textarea'),(2749,56,'label','Brief Description of Your Legal Issue','label','Brief Description of Your Legal Issue'),(2750,56,'key','brief_description_of_your_legal_issue_1534954647282','key','brief_description_of_your_legal_issue_1534954647282'),(2751,56,'label_pos','default','label_pos','default'),(2752,56,'required','','required',''),(2753,56,'default','','default',''),(2754,56,'placeholder','','placeholder',''),(2755,56,'container_class','','container_class',''),(2756,56,'element_class','','element_class',''),(2757,56,'input_limit','','input_limit',''),(2758,56,'input_limit_type','characters','input_limit_type','characters'),(2759,56,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(2760,56,'manual_key','','manual_key',''),(2761,56,'admin_label','formComment','admin_label','formComment'),(2762,56,'help_text','','help_text',''),(2763,56,'textarea_rte','','textarea_rte',''),(2764,56,'disable_rte_mobile','','disable_rte_mobile',''),(2765,56,'textarea_media','','textarea_media',''),(2766,56,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(2767,56,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(2768,56,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(2769,56,'cellcid','c4072','cellcid','c4072'),(2770,56,'parent_id','1','parent_id','1'),(2771,56,'field_label','Brief Description of Your Legal Issue','field_label','Brief Description of Your Legal Issue'),(2772,56,'field_key','brief_description_of_your_legal_issue_1534954647282','field_key','brief_description_of_your_legal_issue_1534954647282'),(2773,56,'value','','value',''),(2774,56,'idAttribute','id','idAttribute','id'),(2775,56,'wrap_styles_border','','wrap_styles_border',''),(2776,56,'wrap_styles_width','315px','wrap_styles_width','315px'),(2777,56,'wrap_styles_margin','','wrap_styles_margin',''),(2778,56,'wrap_styles_padding','','wrap_styles_padding',''),(2779,56,'wrap_styles_float','','wrap_styles_float',''),(2780,56,'label_styles_border','','label_styles_border',''),(2781,56,'label_styles_width','','label_styles_width',''),(2782,56,'label_styles_font-size','','label_styles_font-size',''),(2783,56,'label_styles_margin','','label_styles_margin',''),(2784,56,'label_styles_padding','','label_styles_padding',''),(2785,56,'label_styles_float','','label_styles_float',''),(2786,56,'element_styles_border','','element_styles_border',''),(2787,56,'element_styles_width','','element_styles_width',''),(2788,56,'element_styles_font-size','12.5','element_styles_font-size','12.5'),(2789,56,'element_styles_margin','','element_styles_margin',''),(2790,56,'element_styles_padding','7.5px','element_styles_padding','7.5px'),(2791,56,'element_styles_float','','element_styles_float',''),(2792,56,'drawerDisabled','','drawerDisabled',''),(2793,56,'wrap_styles_advanced','','wrap_styles_advanced',''),(2807,57,'objectType','Field','objectType','Field'),(2808,57,'objectDomain','fields','objectDomain','fields'),(2809,57,'editActive','','editActive',''),(2810,57,'order','11','order','11'),(2811,57,'type','html','type','html'),(2812,57,'label','','label',''),(2813,57,'default','<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a>&nbsp;</div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>','default','<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a>&nbsp;</div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>'),(2814,57,'container_class','','container_class',''),(2815,57,'element_class','','element_class',''),(2816,57,'wrap_styles_border','','wrap_styles_border',''),(2817,57,'wrap_styles_width','','wrap_styles_width',''),(2818,57,'wrap_styles_margin','','wrap_styles_margin',''),(2819,57,'wrap_styles_padding','','wrap_styles_padding',''),(2820,57,'wrap_styles_float','','wrap_styles_float',''),(2821,57,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(2822,57,'label_styles_border','','label_styles_border',''),(2823,57,'label_styles_width','','label_styles_width',''),(2824,57,'label_styles_font-size','','label_styles_font-size',''),(2825,57,'label_styles_margin','','label_styles_margin',''),(2826,57,'label_styles_padding','','label_styles_padding',''),(2827,57,'label_styles_float','','label_styles_float',''),(2828,57,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(2829,57,'element_styles_border','','element_styles_border',''),(2830,57,'element_styles_width','','element_styles_width',''),(2831,57,'element_styles_font-size','','element_styles_font-size',''),(2832,57,'element_styles_margin','','element_styles_margin',''),(2833,57,'element_styles_padding','','element_styles_padding',''),(2834,57,'element_styles_float','','element_styles_float',''),(2835,57,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(2836,57,'cellcid','c4075','cellcid','c4075'),(2837,57,'key','privacy_policy_1534954542111','key','privacy_policy_1534954542111'),(2838,57,'drawerDisabled','','drawerDisabled',''),(2839,57,'parent_id','1','parent_id','1'),(2840,57,'field_label','','field_label',''),(2841,57,'field_key','privacy_policy_1534954542111','field_key','privacy_policy_1534954542111'),(2842,57,'idAttribute','id','idAttribute','id'),(2843,57,'wrap_styles_advanced','','wrap_styles_advanced',''),(2870,58,'objectType','Field','objectType','Field'),(2871,58,'objectDomain','fields','objectDomain','fields'),(2872,58,'editActive','','editActive',''),(2873,58,'order','12','order','12'),(2874,58,'type','checkbox','type','checkbox'),(2875,58,'label','I Have Read The Disclaimer','label','I Have Read The Disclaimer'),(2876,58,'key','i_have_read_the_disclaimer_1534954562191','key','i_have_read_the_disclaimer_1534954562191'),(2877,58,'label_pos','right','label_pos','right'),(2878,58,'required','1','required','1'),(2879,58,'container_class','','container_class',''),(2880,58,'element_class','','element_class',''),(2881,58,'manual_key','','manual_key',''),(2882,58,'admin_label','readDisclaimer','admin_label','readDisclaimer'),(2883,58,'help_text','','help_text',''),(2884,58,'default_value','unchecked','default_value','unchecked'),(2885,58,'checked_value','','checked_value',''),(2886,58,'unchecked_value','','unchecked_value',''),(2887,58,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(2888,58,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(2889,58,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(2890,58,'cellcid','c4078','cellcid','c4078'),(2891,58,'drawerDisabled','','drawerDisabled',''),(2892,58,'default','unchecked','default','unchecked'),(2893,58,'parent_id','1','parent_id','1'),(2894,58,'field_label','I Have Read The Disclaimer','field_label','I Have Read The Disclaimer'),(2895,58,'field_key','i_have_read_the_disclaimer_1534954562191','field_key','i_have_read_the_disclaimer_1534954562191'),(2896,58,'value','unchecked','value','unchecked'),(2897,58,'idAttribute','id','idAttribute','id'),(2898,58,'checked_calc_value','','checked_calc_value',''),(2899,58,'unchecked_calc_value','','unchecked_calc_value',''),(2900,58,'wrap_styles_border','','wrap_styles_border',''),(2901,58,'wrap_styles_width','315px','wrap_styles_width','315px'),(2902,58,'wrap_styles_margin','','wrap_styles_margin',''),(2903,58,'wrap_styles_padding','','wrap_styles_padding',''),(2904,58,'wrap_styles_float','','wrap_styles_float',''),(2905,58,'label_styles_border','','label_styles_border',''),(2906,58,'label_styles_width','','label_styles_width',''),(2907,58,'label_styles_font-size','','label_styles_font-size',''),(2908,58,'label_styles_margin','','label_styles_margin',''),(2909,58,'label_styles_padding','','label_styles_padding',''),(2910,58,'label_styles_float','','label_styles_float',''),(2911,58,'element_styles_border','','element_styles_border',''),(2912,58,'element_styles_width','','element_styles_width',''),(2913,58,'element_styles_font-size','','element_styles_font-size',''),(2914,58,'element_styles_margin','','element_styles_margin',''),(2915,58,'element_styles_padding','','element_styles_padding',''),(2916,58,'element_styles_float','','element_styles_float',''),(2917,58,'wrap_styles_advanced','','wrap_styles_advanced',''),(2933,59,'objectType','Field','objectType','Field'),(2934,59,'objectDomain','fields','objectDomain','fields'),(2935,59,'editActive','','editActive',''),(2936,59,'order','13','order','13'),(2937,59,'type','submit','type','submit'),(2938,59,'label','Submit','label','Submit'),(2939,59,'processing_label','Processing','processing_label','Processing'),(2940,59,'container_class','','container_class',''),(2941,59,'element_class','','element_class',''),(2942,59,'key','submit_1663177781078','key','submit_1663177781078'),(2943,59,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(2944,59,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(2945,59,'submit_element_hover_styles_show_advanced_css','0','submit_element_hover_styles_show_advanced_css','0'),(2946,59,'cellcid','c4081','cellcid','c4081'),(2947,59,'drawerDisabled','','drawerDisabled',''),(2948,59,'parent_id','1','parent_id','1'),(2949,59,'field_label','Send','field_label','Send'),(2950,59,'field_key','send_1562680674669','field_key','send_1562680674669'),(2951,59,'idAttribute','id','idAttribute','id'),(2952,59,'wrap_styles_border','','wrap_styles_border',''),(2953,59,'wrap_styles_width','','wrap_styles_width',''),(2954,59,'wrap_styles_margin','','wrap_styles_margin',''),(2955,59,'wrap_styles_padding','','wrap_styles_padding',''),(2956,59,'wrap_styles_float','','wrap_styles_float',''),(2957,59,'wrap_styles_advanced','','wrap_styles_advanced',''),(2958,59,'element_styles_border','','element_styles_border',''),(2959,59,'element_styles_width','','element_styles_width',''),(2960,59,'element_styles_font-size','','element_styles_font-size',''),(2961,59,'element_styles_margin','','element_styles_margin',''),(2962,59,'element_styles_padding','','element_styles_padding',''),(2963,59,'element_styles_float','','element_styles_float',''),(2964,59,'submit_element_hover_styles_border','','submit_element_hover_styles_border',''),(2965,59,'submit_element_hover_styles_width','','submit_element_hover_styles_width',''),(2966,59,'submit_element_hover_styles_font-size','','submit_element_hover_styles_font-size',''),(2967,59,'submit_element_hover_styles_margin','','submit_element_hover_styles_margin',''),(2968,59,'submit_element_hover_styles_padding','','submit_element_hover_styles_padding',''),(2969,59,'submit_element_hover_styles_float','','submit_element_hover_styles_float',''),(2996,40,'element_styles_advanced','body {\n  color: #ffffff;\n}','element_styles_advanced','body {\n  color: #ffffff;\n}'),(2997,38,'drawerDisabled','','drawerDisabled',''),(2998,60,'label','Name','label','Name'),(2999,60,'key','name','key','name'),(3000,60,'parent_id','5','parent_id','5'),(3001,60,'type','textbox','type','textbox'),(3002,60,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(3003,60,'label_pos','hidden','label_pos','hidden'),(3004,60,'required','1','required','1'),(3005,60,'order','1','order','1'),(3006,60,'placeholder','Name*','placeholder','Name*'),(3007,60,'default','','default',''),(3008,60,'wrapper_class','','wrapper_class',''),(3009,60,'element_class','','element_class',''),(3010,60,'objectType','Field','objectType','Field'),(3011,60,'objectDomain','fields','objectDomain','fields'),(3012,60,'editActive','','editActive',''),(3013,60,'container_class','','container_class',''),(3014,60,'input_limit','','input_limit',''),(3015,60,'input_limit_type','characters','input_limit_type','characters'),(3016,60,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(3017,60,'manual_key','','manual_key',''),(3018,60,'disable_input','','disable_input',''),(3019,60,'admin_label','','admin_label',''),(3020,60,'help_text','<p><br></p>','help_text','<p><br></p>'),(3021,60,'desc_text','<p><br></p>','desc_text','<p><br></p>'),(3022,60,'disable_browser_autocomplete','','disable_browser_autocomplete',''),(3023,60,'mask','','mask',''),(3024,60,'custom_mask','','custom_mask',''),(3025,60,'wrap_styles_background-color','','wrap_styles_background-color',''),(3026,60,'wrap_styles_border','','wrap_styles_border',''),(3027,60,'wrap_styles_border-style','','wrap_styles_border-style',''),(3028,60,'wrap_styles_border-color','','wrap_styles_border-color',''),(3029,60,'wrap_styles_color','','wrap_styles_color',''),(3030,60,'wrap_styles_height','','wrap_styles_height',''),(3031,60,'wrap_styles_width','','wrap_styles_width',''),(3032,60,'wrap_styles_font-size','','wrap_styles_font-size',''),(3033,60,'wrap_styles_margin','','wrap_styles_margin',''),(3034,60,'wrap_styles_padding','','wrap_styles_padding',''),(3035,60,'wrap_styles_display','','wrap_styles_display',''),(3036,60,'wrap_styles_float','','wrap_styles_float',''),(3037,60,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(3038,60,'wrap_styles_advanced','','wrap_styles_advanced',''),(3039,60,'label_styles_background-color','','label_styles_background-color',''),(3040,60,'label_styles_border','','label_styles_border',''),(3041,60,'label_styles_border-style','','label_styles_border-style',''),(3042,60,'label_styles_border-color','','label_styles_border-color',''),(3043,60,'label_styles_color','','label_styles_color',''),(3044,60,'label_styles_height','','label_styles_height',''),(3045,60,'label_styles_width','','label_styles_width',''),(3046,60,'label_styles_font-size','','label_styles_font-size',''),(3047,60,'label_styles_margin','','label_styles_margin',''),(3048,60,'label_styles_padding','','label_styles_padding',''),(3049,60,'label_styles_display','','label_styles_display',''),(3050,60,'label_styles_float','','label_styles_float',''),(3051,60,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(3052,60,'label_styles_advanced','','label_styles_advanced',''),(3053,60,'element_styles_background-color','','element_styles_background-color',''),(3054,60,'element_styles_border','','element_styles_border',''),(3055,60,'element_styles_border-style','','element_styles_border-style',''),(3056,60,'element_styles_border-color','','element_styles_border-color',''),(3057,60,'element_styles_color','','element_styles_color',''),(3058,60,'element_styles_height','','element_styles_height',''),(3059,60,'element_styles_width','','element_styles_width',''),(3060,60,'element_styles_font-size','12','element_styles_font-size','12'),(3061,60,'element_styles_margin','','element_styles_margin',''),(3062,60,'element_styles_padding','8.5px','element_styles_padding','8.5px'),(3063,60,'element_styles_display','','element_styles_display',''),(3064,60,'element_styles_float','','element_styles_float',''),(3065,60,'element_styles_show_advanced_css','1','element_styles_show_advanced_css','1'),(3066,60,'element_styles_advanced','','element_styles_advanced',''),(3067,60,'cellcid','c3972','cellcid','c3972'),(3068,60,'idAttribute','id','idAttribute','id'),(3069,60,'field_label','Name','field_label','Name'),(3070,60,'field_key','name','field_key','name'),(3071,60,'custom_name_attribute','','custom_name_attribute',''),(3072,60,'personally_identifiable','','personally_identifiable',''),(3073,60,'value','','value',''),(3074,60,'drawerDisabled','','drawerDisabled',''),(3125,61,'label','Email','label','Email'),(3126,61,'key','email','key','email'),(3127,61,'parent_id','5','parent_id','5'),(3128,61,'type','email','type','email'),(3129,61,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(3130,61,'label_pos','hidden','label_pos','hidden'),(3131,61,'required','1','required','1'),(3132,61,'order','2','order','2'),(3133,61,'placeholder','Email*','placeholder','Email*'),(3134,61,'default','','default',''),(3135,61,'wrapper_class','','wrapper_class',''),(3136,61,'element_class','','element_class',''),(3137,61,'objectType','Field','objectType','Field'),(3138,61,'objectDomain','fields','objectDomain','fields'),(3139,61,'editActive','','editActive',''),(3140,61,'container_class','','container_class',''),(3141,61,'admin_label','','admin_label',''),(3142,61,'help_text','','help_text',''),(3143,61,'desc_text','','desc_text',''),(3144,61,'wrap_styles_background-color','','wrap_styles_background-color',''),(3145,61,'wrap_styles_border','','wrap_styles_border',''),(3146,61,'wrap_styles_border-style','','wrap_styles_border-style',''),(3147,61,'wrap_styles_border-color','','wrap_styles_border-color',''),(3148,61,'wrap_styles_color','','wrap_styles_color',''),(3149,61,'wrap_styles_height','','wrap_styles_height',''),(3150,61,'wrap_styles_width','','wrap_styles_width',''),(3151,61,'wrap_styles_font-size','','wrap_styles_font-size',''),(3152,61,'wrap_styles_margin','','wrap_styles_margin',''),(3153,61,'wrap_styles_padding','','wrap_styles_padding',''),(3154,61,'wrap_styles_display','','wrap_styles_display',''),(3155,61,'wrap_styles_float','','wrap_styles_float',''),(3156,61,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(3157,61,'wrap_styles_advanced','','wrap_styles_advanced',''),(3158,61,'label_styles_background-color','','label_styles_background-color',''),(3159,61,'label_styles_border','','label_styles_border',''),(3160,61,'label_styles_border-style','','label_styles_border-style',''),(3161,61,'label_styles_border-color','','label_styles_border-color',''),(3162,61,'label_styles_color','','label_styles_color',''),(3163,61,'label_styles_height','','label_styles_height',''),(3164,61,'label_styles_width','','label_styles_width',''),(3165,61,'label_styles_font-size','','label_styles_font-size',''),(3166,61,'label_styles_margin','','label_styles_margin',''),(3167,61,'label_styles_padding','','label_styles_padding',''),(3168,61,'label_styles_display','','label_styles_display',''),(3169,61,'label_styles_float','','label_styles_float',''),(3170,61,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(3171,61,'label_styles_advanced','','label_styles_advanced',''),(3172,61,'element_styles_background-color','','element_styles_background-color',''),(3173,61,'element_styles_border','','element_styles_border',''),(3174,61,'element_styles_border-style','','element_styles_border-style',''),(3175,61,'element_styles_border-color','','element_styles_border-color',''),(3176,61,'element_styles_color','','element_styles_color',''),(3177,61,'element_styles_height','','element_styles_height',''),(3178,61,'element_styles_width','','element_styles_width',''),(3179,61,'element_styles_font-size','12','element_styles_font-size','12'),(3180,61,'element_styles_margin','','element_styles_margin',''),(3181,61,'element_styles_padding','8.5px','element_styles_padding','8.5px'),(3182,61,'element_styles_display','','element_styles_display',''),(3183,61,'element_styles_float','','element_styles_float',''),(3184,61,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(3185,61,'element_styles_advanced','','element_styles_advanced',''),(3186,61,'cellcid','c3975','cellcid','c3975'),(3187,61,'idAttribute','id','idAttribute','id'),(3188,61,'field_label','Email','field_label','Email'),(3189,61,'field_key','email','field_key','email'),(3190,61,'custom_name_attribute','email','custom_name_attribute','email'),(3191,61,'personally_identifiable','1','personally_identifiable','1'),(3192,61,'value','','value',''),(3193,61,'drawerDisabled','','drawerDisabled',''),(3252,62,'label','Message','label','Message'),(3253,62,'key','message','key','message'),(3254,62,'parent_id','5','parent_id','5'),(3255,62,'type','textarea','type','textarea'),(3256,62,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(3257,62,'label_pos','hidden','label_pos','hidden'),(3258,62,'required','1','required','1'),(3259,62,'order','4','order','4'),(3260,62,'placeholder','Enter your message or request here. ','placeholder','Enter your message or request here. '),(3261,62,'default','','default',''),(3262,62,'wrapper_class','','wrapper_class',''),(3263,62,'element_class','','element_class',''),(3264,62,'objectType','Field','objectType','Field'),(3265,62,'objectDomain','fields','objectDomain','fields'),(3266,62,'editActive','','editActive',''),(3267,62,'container_class','','container_class',''),(3268,62,'input_limit','','input_limit',''),(3269,62,'input_limit_type','characters','input_limit_type','characters'),(3270,62,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(3271,62,'manual_key','','manual_key',''),(3272,62,'disable_input','','disable_input',''),(3273,62,'admin_label','','admin_label',''),(3274,62,'help_text','','help_text',''),(3275,62,'desc_text','','desc_text',''),(3276,62,'disable_browser_autocomplete','','disable_browser_autocomplete',''),(3277,62,'textarea_rte','','textarea_rte',''),(3278,62,'disable_rte_mobile','','disable_rte_mobile',''),(3279,62,'textarea_media','','textarea_media',''),(3280,62,'wrap_styles_background-color','','wrap_styles_background-color',''),(3281,62,'wrap_styles_border','','wrap_styles_border',''),(3282,62,'wrap_styles_border-style','','wrap_styles_border-style',''),(3283,62,'wrap_styles_border-color','','wrap_styles_border-color',''),(3284,62,'wrap_styles_color','','wrap_styles_color',''),(3285,62,'wrap_styles_height','','wrap_styles_height',''),(3286,62,'wrap_styles_width','','wrap_styles_width',''),(3287,62,'wrap_styles_font-size','','wrap_styles_font-size',''),(3288,62,'wrap_styles_margin','','wrap_styles_margin',''),(3289,62,'wrap_styles_padding','','wrap_styles_padding',''),(3290,62,'wrap_styles_display','','wrap_styles_display',''),(3291,62,'wrap_styles_float','','wrap_styles_float',''),(3292,62,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(3293,62,'wrap_styles_advanced','','wrap_styles_advanced',''),(3294,62,'label_styles_background-color','','label_styles_background-color',''),(3295,62,'label_styles_border','','label_styles_border',''),(3296,62,'label_styles_border-style','','label_styles_border-style',''),(3297,62,'label_styles_border-color','','label_styles_border-color',''),(3298,62,'label_styles_color','','label_styles_color',''),(3299,62,'label_styles_height','','label_styles_height',''),(3300,62,'label_styles_width','','label_styles_width',''),(3301,62,'label_styles_font-size','','label_styles_font-size',''),(3302,62,'label_styles_margin','','label_styles_margin',''),(3303,62,'label_styles_padding','','label_styles_padding',''),(3304,62,'label_styles_display','','label_styles_display',''),(3305,62,'label_styles_float','','label_styles_float',''),(3306,62,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(3307,62,'label_styles_advanced','','label_styles_advanced',''),(3308,62,'element_styles_background-color','','element_styles_background-color',''),(3309,62,'element_styles_border','','element_styles_border',''),(3310,62,'element_styles_border-style','','element_styles_border-style',''),(3311,62,'element_styles_border-color','','element_styles_border-color',''),(3312,62,'element_styles_color','','element_styles_color',''),(3313,62,'element_styles_height','','element_styles_height',''),(3314,62,'element_styles_width','','element_styles_width',''),(3315,62,'element_styles_font-size','12.5','element_styles_font-size','12.5'),(3316,62,'element_styles_margin','','element_styles_margin',''),(3317,62,'element_styles_padding','7.5','element_styles_padding','7.5'),(3318,62,'element_styles_display','','element_styles_display',''),(3319,62,'element_styles_float','','element_styles_float',''),(3320,62,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(3321,62,'element_styles_advanced','','element_styles_advanced',''),(3322,62,'cellcid','c3980','cellcid','c3980'),(3323,62,'idAttribute','id','idAttribute','id'),(3324,62,'field_label','Message','field_label','Message'),(3325,62,'field_key','message','field_key','message'),(3326,62,'value','','value',''),(3327,62,'drawerDisabled','','drawerDisabled',''),(3379,63,'label','Submit','label','Submit'),(3380,63,'key','submit','key','submit'),(3381,63,'parent_id','5','parent_id','5'),(3382,63,'type','submit','type','submit'),(3383,63,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(3384,63,'processing_label','Processing','processing_label','Processing'),(3385,63,'order','7','order','7'),(3386,63,'objectType','Field','objectType','Field'),(3387,63,'objectDomain','fields','objectDomain','fields'),(3388,63,'editActive','','editActive',''),(3389,63,'container_class','','container_class',''),(3390,63,'element_class','','element_class',''),(3391,63,'wrap_styles_background-color','','wrap_styles_background-color',''),(3392,63,'wrap_styles_border','','wrap_styles_border',''),(3393,63,'wrap_styles_border-style','','wrap_styles_border-style',''),(3394,63,'wrap_styles_border-color','','wrap_styles_border-color',''),(3395,63,'wrap_styles_color','','wrap_styles_color',''),(3396,63,'wrap_styles_height','','wrap_styles_height',''),(3397,63,'wrap_styles_width','','wrap_styles_width',''),(3398,63,'wrap_styles_font-size','','wrap_styles_font-size',''),(3399,63,'wrap_styles_margin','','wrap_styles_margin',''),(3400,63,'wrap_styles_padding','','wrap_styles_padding',''),(3401,63,'wrap_styles_display','','wrap_styles_display',''),(3402,63,'wrap_styles_float','','wrap_styles_float',''),(3403,63,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(3404,63,'wrap_styles_advanced','','wrap_styles_advanced',''),(3405,63,'label_styles_background-color','','label_styles_background-color',''),(3406,63,'label_styles_border','','label_styles_border',''),(3407,63,'label_styles_border-style','','label_styles_border-style',''),(3408,63,'label_styles_border-color','','label_styles_border-color',''),(3409,63,'label_styles_color','','label_styles_color',''),(3410,63,'label_styles_height','','label_styles_height',''),(3411,63,'label_styles_width','','label_styles_width',''),(3412,63,'label_styles_font-size','','label_styles_font-size',''),(3413,63,'label_styles_margin','','label_styles_margin',''),(3414,63,'label_styles_padding','','label_styles_padding',''),(3415,63,'label_styles_display','','label_styles_display',''),(3416,63,'label_styles_float','','label_styles_float',''),(3417,63,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(3418,63,'label_styles_advanced','','label_styles_advanced',''),(3419,63,'element_styles_background-color','','element_styles_background-color',''),(3420,63,'element_styles_border','','element_styles_border',''),(3421,63,'element_styles_border-style','','element_styles_border-style',''),(3422,63,'element_styles_border-color','','element_styles_border-color',''),(3423,63,'element_styles_color','','element_styles_color',''),(3424,63,'element_styles_height','','element_styles_height',''),(3425,63,'element_styles_width','','element_styles_width',''),(3426,63,'element_styles_font-size','','element_styles_font-size',''),(3427,63,'element_styles_margin','','element_styles_margin',''),(3428,63,'element_styles_padding','','element_styles_padding',''),(3429,63,'element_styles_display','','element_styles_display',''),(3430,63,'element_styles_float','','element_styles_float',''),(3431,63,'element_styles_show_advanced_css','1','element_styles_show_advanced_css','1'),(3432,63,'element_styles_advanced','background: #fff !important;\ncolor: #211865 !important;\nfont-size: 17px !important;\nfont-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\npadding: 15px 25px !important;\ntext-transform: uppercase !important;\nfont-weight: 400 !important;\nfloat:right !important;','element_styles_advanced','background: #fff !important;\ncolor: #211865 !important;\nfont-size: 17px !important;\nfont-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\npadding: 15px 25px !important;\ntext-transform: uppercase !important;\nfont-weight: 400 !important;\nfloat:right !important;'),(3433,63,'submit_element_hover_styles_background-color','#211865','submit_element_hover_styles_background-color','#211865'),(3434,63,'submit_element_hover_styles_border','','submit_element_hover_styles_border',''),(3435,63,'submit_element_hover_styles_border-style','','submit_element_hover_styles_border-style',''),(3436,63,'submit_element_hover_styles_border-color','','submit_element_hover_styles_border-color',''),(3437,63,'submit_element_hover_styles_color','#ffffff','submit_element_hover_styles_color','#ffffff'),(3438,63,'submit_element_hover_styles_height','','submit_element_hover_styles_height',''),(3439,63,'submit_element_hover_styles_width','','submit_element_hover_styles_width',''),(3440,63,'submit_element_hover_styles_font-size','','submit_element_hover_styles_font-size',''),(3441,63,'submit_element_hover_styles_margin','','submit_element_hover_styles_margin',''),(3442,63,'submit_element_hover_styles_padding','','submit_element_hover_styles_padding',''),(3443,63,'submit_element_hover_styles_display','','submit_element_hover_styles_display',''),(3444,63,'submit_element_hover_styles_float','','submit_element_hover_styles_float',''),(3445,63,'submit_element_hover_styles_show_advanced_css','1','submit_element_hover_styles_show_advanced_css','1'),(3446,63,'submit_element_hover_styles_advanced','\n','submit_element_hover_styles_advanced','\n'),(3447,63,'cellcid','c3987','cellcid','c3987'),(3448,63,'idAttribute','id','idAttribute','id'),(3449,63,'field_label','Submit','field_label','Submit'),(3450,63,'field_key','submit','field_key','submit'),(3451,63,'drawerDisabled','','drawerDisabled',''),(3506,64,'editActive','','editActive',''),(3507,64,'order','3','order','3'),(3508,64,'idAttribute','id','idAttribute','id'),(3509,64,'type','phone','type','phone'),(3510,64,'label','Phone Number','label','Phone Number'),(3511,64,'key','phone_number_1662652113554','key','phone_number_1662652113554'),(3512,64,'label_pos','hidden','label_pos','hidden'),(3513,64,'required','1','required','1'),(3514,64,'default','','default',''),(3515,64,'placeholder','Phone Number*','placeholder','Phone Number*'),(3516,64,'container_class','','container_class',''),(3517,64,'element_class','','element_class',''),(3518,64,'input_limit','','input_limit',''),(3519,64,'input_limit_type','characters','input_limit_type','characters'),(3520,64,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(3521,64,'manual_key','','manual_key',''),(3522,64,'admin_label','','admin_label',''),(3523,64,'help_text','','help_text',''),(3524,64,'mask','','mask',''),(3525,64,'custom_mask','','custom_mask',''),(3526,64,'custom_name_attribute','Phone Number','custom_name_attribute','Phone Number'),(3527,64,'personally_identifiable','1','personally_identifiable','1'),(3528,64,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(3529,64,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(3530,64,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(3531,64,'cellcid','c3977','cellcid','c3977'),(3532,64,'value','','value',''),(3533,64,'oldCellcid','c4215','oldCellcid','c4215'),(3534,64,'wrap_styles_border','','wrap_styles_border',''),(3535,64,'wrap_styles_width','','wrap_styles_width',''),(3536,64,'wrap_styles_margin','','wrap_styles_margin',''),(3537,64,'wrap_styles_padding','','wrap_styles_padding',''),(3538,64,'wrap_styles_float','','wrap_styles_float',''),(3539,64,'label_styles_border','','label_styles_border',''),(3540,64,'label_styles_width','','label_styles_width',''),(3541,64,'label_styles_font-size','','label_styles_font-size',''),(3542,64,'label_styles_margin','','label_styles_margin',''),(3543,64,'label_styles_padding','','label_styles_padding',''),(3544,64,'label_styles_float','','label_styles_float',''),(3545,64,'element_styles_border','','element_styles_border',''),(3546,64,'element_styles_width','','element_styles_width',''),(3547,64,'element_styles_font-size','12','element_styles_font-size','12'),(3548,64,'element_styles_margin','','element_styles_margin',''),(3549,64,'element_styles_padding','8.5px','element_styles_padding','8.5px'),(3550,64,'element_styles_float','','element_styles_float',''),(3551,64,'drawerDisabled','','drawerDisabled',''),(3569,65,'editActive','','editActive',''),(3570,65,'order','5','order','5'),(3571,65,'idAttribute','id','idAttribute','id'),(3572,65,'type','html','type','html'),(3573,65,'label','HTML','label','HTML'),(3574,65,'default','<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a>&nbsp;</div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>','default','<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a>&nbsp;</div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>'),(3575,65,'container_class','','container_class',''),(3576,65,'element_class','','element_class',''),(3577,65,'wrap_styles_border','','wrap_styles_border',''),(3578,65,'wrap_styles_width','','wrap_styles_width',''),(3579,65,'wrap_styles_margin','','wrap_styles_margin',''),(3580,65,'wrap_styles_padding','','wrap_styles_padding',''),(3581,65,'wrap_styles_float','','wrap_styles_float',''),(3582,65,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(3583,65,'label_styles_border','','label_styles_border',''),(3584,65,'label_styles_width','','label_styles_width',''),(3585,65,'label_styles_font-size','','label_styles_font-size',''),(3586,65,'label_styles_margin','','label_styles_margin',''),(3587,65,'label_styles_padding','','label_styles_padding',''),(3588,65,'label_styles_float','','label_styles_float',''),(3589,65,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(3590,65,'element_styles_border','','element_styles_border',''),(3591,65,'element_styles_width','','element_styles_width',''),(3592,65,'element_styles_font-size','','element_styles_font-size',''),(3593,65,'element_styles_margin','','element_styles_margin',''),(3594,65,'element_styles_padding','','element_styles_padding',''),(3595,65,'element_styles_float','','element_styles_float',''),(3596,65,'element_styles_show_advanced_css','1','element_styles_show_advanced_css','1'),(3597,65,'key','html_1662651382914','key','html_1662651382914'),(3598,65,'cellcid','c3983','cellcid','c3983'),(3599,65,'drawerDisabled','','drawerDisabled',''),(3600,65,'element_styles_advanced','body {\n  color: #ffffff;\n}','element_styles_advanced','body {\n  color: #ffffff;\n}'),(3632,66,'editActive','','editActive',''),(3633,66,'order','6','order','6'),(3634,66,'idAttribute','id','idAttribute','id'),(3635,66,'type','listcheckbox','type','listcheckbox'),(3636,66,'label','Checkbox List','label','Checkbox List'),(3637,66,'key','listcheckbox_1662663562280','key','listcheckbox_1662663562280'),(3638,66,'label_pos','hidden','label_pos','hidden'),(3639,66,'required','','required',''),(3640,66,'options','a:2:{i:0;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:26:\"I Have Read the Disclaimer\";s:5:\"value\";s:26:\"I Have Read the Disclaimer\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:1;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:36:\"I Acknowledge and Agree to its Terms\";s:5:\"value\";s:36:\"I Acknowledge and Agree to its Terms\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}}','options','a:2:{i:0;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:26:\"I Have Read the Disclaimer\";s:5:\"value\";s:26:\"I Have Read the Disclaimer\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:1;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:36:\"I Acknowledge and Agree to its Terms\";s:5:\"value\";s:36:\"I Acknowledge and Agree to its Terms\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}}'),(3641,66,'container_class','','container_class',''),(3642,66,'element_class','lm-ignore-checkbox6','element_class','lm-ignore-checkbox6'),(3643,66,'admin_label','','admin_label',''),(3644,66,'help_text','','help_text',''),(3645,66,'wrap_styles_border','','wrap_styles_border',''),(3646,66,'wrap_styles_width','','wrap_styles_width',''),(3647,66,'wrap_styles_margin','','wrap_styles_margin',''),(3648,66,'wrap_styles_padding','','wrap_styles_padding',''),(3649,66,'wrap_styles_float','','wrap_styles_float',''),(3650,66,'wrap_styles_show_advanced_css','1','wrap_styles_show_advanced_css','1'),(3651,66,'label_styles_border','','label_styles_border',''),(3652,66,'label_styles_width','','label_styles_width',''),(3653,66,'label_styles_font-size','','label_styles_font-size',''),(3654,66,'label_styles_margin','','label_styles_margin',''),(3655,66,'label_styles_padding','','label_styles_padding',''),(3656,66,'label_styles_float','','label_styles_float',''),(3657,66,'label_styles_show_advanced_css','1','label_styles_show_advanced_css','1'),(3658,66,'element_styles_border','','element_styles_border',''),(3659,66,'element_styles_width','','element_styles_width',''),(3660,66,'element_styles_font-size','','element_styles_font-size',''),(3661,66,'element_styles_margin','','element_styles_margin',''),(3662,66,'element_styles_padding','','element_styles_padding',''),(3663,66,'element_styles_float','','element_styles_float',''),(3664,66,'element_styles_show_advanced_css','1','element_styles_show_advanced_css','1'),(3665,66,'list_item_row_styles_border','','list_item_row_styles_border',''),(3666,66,'list_item_row_styles_height','','list_item_row_styles_height',''),(3667,66,'list_item_row_styles_width','','list_item_row_styles_width',''),(3668,66,'list_item_row_styles_font-size','','list_item_row_styles_font-size',''),(3669,66,'list_item_row_styles_margin','','list_item_row_styles_margin',''),(3670,66,'list_item_row_styles_padding','','list_item_row_styles_padding',''),(3671,66,'list_item_row_styles_float','','list_item_row_styles_float',''),(3672,66,'list_item_row_styles_show_advanced_css','1','list_item_row_styles_show_advanced_css','1'),(3673,66,'list_item_label_styles_border','','list_item_label_styles_border',''),(3674,66,'list_item_label_styles_height','','list_item_label_styles_height',''),(3675,66,'list_item_label_styles_width','','list_item_label_styles_width',''),(3676,66,'list_item_label_styles_font-size','','list_item_label_styles_font-size',''),(3677,66,'list_item_label_styles_margin','','list_item_label_styles_margin',''),(3678,66,'list_item_label_styles_padding','','list_item_label_styles_padding',''),(3679,66,'list_item_label_styles_float','','list_item_label_styles_float',''),(3680,66,'list_item_label_styles_show_advanced_css','1','list_item_label_styles_show_advanced_css','1'),(3681,66,'list_item_element_styles_border','','list_item_element_styles_border',''),(3682,66,'list_item_element_styles_height','','list_item_element_styles_height',''),(3683,66,'list_item_element_styles_width','','list_item_element_styles_width',''),(3684,66,'list_item_element_styles_font-size','12.5','list_item_element_styles_font-size','12.5'),(3685,66,'list_item_element_styles_margin','','list_item_element_styles_margin',''),(3686,66,'list_item_element_styles_padding','5px','list_item_element_styles_padding','5px'),(3687,66,'list_item_element_styles_float','','list_item_element_styles_float',''),(3688,66,'list_item_element_styles_show_advanced_css','1','list_item_element_styles_show_advanced_css','1'),(3689,66,'cellcid','c3985','cellcid','c3985'),(3690,66,'drawerDisabled','','drawerDisabled',''),(3691,66,'cellOrder','1','cellOrder','1'),(3692,66,'list_item_row_styles_display','','list_item_row_styles_display',''),(3693,66,'list_item_label_styles_display','','list_item_label_styles_display',''),(3694,66,'list_item_element_styles_display','','list_item_element_styles_display',''),(3695,66,'element_styles_background-color','#ffffff','element_styles_background-color','#ffffff'),(3696,66,'element_styles_border-style','solid','element_styles_border-style','solid'),(3697,66,'element_styles_border-color','#000000','element_styles_border-color','#000000'),(3698,66,'wrap_styles_advanced','lm-ignore-checkbox1','wrap_styles_advanced','lm-ignore-checkbox1'),(3699,66,'label_styles_advanced','lm-ignore-checkbox2','label_styles_advanced','lm-ignore-checkbox2'),(3700,66,'element_styles_advanced','lm-ignore-checkbox3','element_styles_advanced','lm-ignore-checkbox3'),(3701,66,'list_item_row_styles_advanced','lm-ignore-checkbox4','list_item_row_styles_advanced','lm-ignore-checkbox4'),(3702,66,'list_item_label_styles_advanced','lm-ignore-checkbox4','list_item_label_styles_advanced','lm-ignore-checkbox4'),(3703,66,'list_item_element_styles_advanced','lm-ignore-checkbox5','list_item_element_styles_advanced','lm-ignore-checkbox5'),(3759,64,'field_label','Phone Number','field_label','Phone Number'),(3760,64,'field_key','phone_number_1662652113554','field_key','phone_number_1662652113554'),(3761,65,'field_label','HTML','field_label','HTML'),(3762,65,'field_key','html_1662651382914','field_key','html_1662651382914'),(3763,66,'field_label','Checkbox List','field_label','Checkbox List'),(3764,66,'field_key','listcheckbox_1662663562280','field_key','listcheckbox_1662663562280');
/*!40000 ALTER TABLE `cuB_nf3_field_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_nf3_fields`
--

DROP TABLE IF EXISTS `cuB_nf3_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_nf3_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `label` longtext,
  `key` longtext,
  `type` longtext,
  `parent_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  `field_label` longtext,
  `field_key` longtext,
  `order` int(11) DEFAULT NULL,
  `required` bit(1) DEFAULT NULL,
  `default_value` longtext,
  `label_pos` varchar(15) DEFAULT NULL,
  `personally_identifiable` bit(1) DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=67 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_nf3_fields`
--

LOCK TABLES `cuB_nf3_fields` WRITE;
/*!40000 ALTER TABLE `cuB_nf3_fields` DISABLE KEYS */;
INSERT INTO `cuB_nf3_fields` VALUES (1,'Personal Information','personal_information_1534954814742','html',1,'2019-07-29 17:39:41',NULL,'Personal Information','personal_information_1534954814742',1,_binary '\0','','',_binary '\0'),(2,'Name','name_1534954806801','firstname',1,'2019-07-29 17:32:52',NULL,'Name','name_1534954806801',2,_binary '\0','','default',_binary ''),(3,'Email','email_1534954365299','email',1,'2019-07-29 17:32:53',NULL,'Email','email_1534954365299',3,_binary '','','default',_binary ''),(4,'Phone','phone_1534954373936','phone',1,'2019-07-29 17:32:53',NULL,'Phone','phone_1534954373936',4,_binary '\0','','default',_binary ''),(5,'Zip','zip_1534954373399','zip',1,'2019-07-29 17:32:53',NULL,'Zip','zip_1534954373399',5,_binary '\0','','default',_binary '\0'),(6,'US States','liststate_1534954369789','liststate',1,'2019-07-29 17:39:41',NULL,'US States','liststate_1534954369789',6,_binary '\0','','default',_binary '\0'),(7,'Contact Preferences','contact_preferences_1534954782835','html',1,'2019-07-29 17:39:41',NULL,'Contact Preferences','contact_preferences_1534954782835',7,_binary '\0','','',_binary '\0'),(8,'How Would You Like To Be Contacted?','how_would_you_like_to_be_contacted_1534954740097','listcheckbox',1,'2019-07-29 17:39:41',NULL,'How Would You Like To Be Contacted?','how_would_you_like_to_be_contacted_1534954740097',8,_binary '\0','','default',_binary '\0'),(10,'Brief Description of Your Legal Issue','brief_description_of_your_legal_issue_1534954647282','textarea',1,'2019-07-29 17:39:41',NULL,'Brief Description of Your Legal Issue','brief_description_of_your_legal_issue_1534954647282',10,_binary '\0','','default',_binary '\0'),(11,'','privacy_policy_1534954542111','html',1,'2022-09-13 12:29:32',NULL,'','privacy_policy_1534954542111',11,_binary '\0','<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a>&nbsp;</div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>','',_binary '\0'),(12,'I Have Read The Disclaimer','i_have_read_the_disclaimer_1534954562191','checkbox',1,'2019-07-29 17:39:41',NULL,'I Have Read The Disclaimer','i_have_read_the_disclaimer_1534954562191',12,_binary '','unchecked','right',_binary '\0'),(13,'Send','send_1562680674669','submit',1,'2019-07-29 17:39:41',NULL,'Send','send_1562680674669',13,_binary '\0','','',_binary '\0'),(14,'Name','name_1534955086592','firstname',2,'2019-07-29 17:33:02',NULL,'Name','name_1534955086592',1,_binary '\0','','default',_binary ''),(15,'Email','email_1534954990561','email',2,'2019-07-29 17:33:02',NULL,'Email','email_1534954990561',2,_binary '','','default',_binary ''),(16,'Phone','phone_1534954991568','phone',2,'2019-07-29 17:33:02',NULL,'Phone','phone_1534954991568',3,_binary '\0','','default',_binary ''),(17,'Message','message_1534955077918','textarea',2,'2021-08-11 22:23:02',NULL,'Message','message_1534955077918',4,_binary '\0','','default',_binary '\0'),(18,'','html_1534955009205','html',2,'2021-08-18 09:56:28',NULL,'','html_1534955009205',5,_binary '\0','<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a> | <a href=\"/privacy/\" target=\"_blank\">Privacy Policy</a></div><div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div></div>','',_binary '\0'),(19,'I Have Read The Disclaimer','i_have_read_the_disclaimer_1534955054736','checkbox',2,'2021-08-18 09:56:28',NULL,'I Have Read The Disclaimer','i_have_read_the_disclaimer_1534955054736',6,_binary '','unchecked','right',_binary '\0'),(20,'Submit','submit_1629280585819','submit',2,'2021-08-18 09:56:28',NULL,'Submit','submit_1629280585819',7,_binary '\0','','',_binary '\0'),(21,'Name','name_1534955086592','firstname',3,'2022-09-08 16:16:06',NULL,'Name','name_1534955086592',1,_binary '','','default',_binary ''),(22,'Email','email_1534954990561','email',3,'2019-07-29 17:33:11',NULL,'Email','email_1534954990561',2,_binary '','','default',_binary ''),(23,'Phone','phone_1534954991568','phone',3,'2019-07-29 17:33:11',NULL,'Phone','phone_1534954991568',3,_binary '\0','','default',_binary ''),(24,'Message','message_1534955077918','textarea',3,'2022-09-08 16:26:36',NULL,'Message','message_1534955077918',5,_binary '\0','','default',_binary '\0'),(25,'','html_1534955009205','html',3,'2022-09-08 16:26:36',NULL,'','html_1534955009205',6,_binary '\0','<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a> | <a href=\"/privacy/\" target=\"_blank\">Privacy Policy</a></div><div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div></div>','',_binary '\0'),(26,'I Have Read The Disclaimer','i_have_read_the_disclaimer_1534955054736','checkbox',3,'2022-09-08 16:26:36',NULL,'I Have Read The Disclaimer','i_have_read_the_disclaimer_1534955054736',7,_binary '','unchecked','right',_binary '\0'),(27,'Send','send_1562680748375','submit',3,'2022-09-08 16:26:36',NULL,'Send','send_1562680748375',8,_binary '\0','','',_binary '\0'),(28,'Name','name_1534955086592','firstname',4,'2019-07-29 17:33:21',NULL,'Name','name_1534955086592',1,_binary '\0','','default',_binary ''),(29,'Email','email_1534954990561','email',4,'2019-07-29 17:33:21',NULL,'Email','email_1534954990561',2,_binary '','','default',_binary ''),(30,'Phone','phone_1534954991568','phone',4,'2019-07-29 17:33:21',NULL,'Phone','phone_1534954991568',3,_binary '\0','','default',_binary ''),(31,'Message','message_1534955077918','textarea',4,'2021-08-11 22:22:10',NULL,'Message','message_1534955077918',4,_binary '\0','','default',_binary '\0'),(32,'','html_1534955009205','html',4,'2021-08-11 22:22:10',NULL,'','html_1534955009205',6,_binary '\0','<div class=\"form-links\">	<a href=\"/lp/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a> | <a href=\"/lp/privacy/\" target=\"_blank\">Privacy Policy</a></div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>','',_binary '\0'),(33,'I Have Read The Disclaimer','i_have_read_the_disclaimer_1534955054736','checkbox',4,'2021-08-11 22:22:10',NULL,'I Have Read The Disclaimer','i_have_read_the_disclaimer_1534955054736',7,_binary '','unchecked','right',_binary '\0'),(34,'Send','send_1562680741334','submit',4,'2021-08-11 22:22:10',NULL,'Send','send_1562680741334',8,_binary '\0','','',_binary '\0'),(35,'Name','name','textbox',5,'2022-09-19 14:40:04',NULL,'Name','name',1,_binary '','','hidden',_binary '\0'),(36,'Email','email','email',5,'2022-09-19 14:40:04',NULL,'Email','email',2,_binary '','','hidden',_binary ''),(37,'Message','message','textarea',5,'2022-09-19 14:40:04',NULL,'Message','message',4,_binary '','','hidden',_binary '\0'),(38,'Submit','submit','submit',5,'2022-09-08 15:43:02',NULL,'Submit','submit',7,_binary '\0','','',_binary '\0'),(39,'Phone Number','phone_number_1662652113554','phone',5,'2022-09-19 14:40:04',NULL,'Phone Number','phone_number_1662652113554',3,_binary '','','hidden',_binary ''),(40,'HTML','html_1662651382914','html',5,'2022-09-08 19:34:01',NULL,'HTML','html_1662651382914',5,_binary '\0','<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a>&nbsp;</div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>','',_binary '\0'),(46,'Select','listselect_1662654086358','listselect',3,'2022-09-08 16:26:36',NULL,'Select','listselect_1662654086358',4,_binary '\0','','default',_binary '\0'),(47,'Checkbox List','listcheckbox_1662663562280','listcheckbox',5,'2022-09-08 19:13:15',NULL,'Checkbox List','listcheckbox_1662663562280',6,_binary '\0','','hidden',_binary '\0'),(48,'Personal Information','personal_information_1534954814742','html',7,'2022-09-14 17:40:30',NULL,'Personal Information','personal_information_1534954814742',1,_binary '\0','','',_binary '\0'),(49,'Name','name_1534954806801','firstname',7,'2022-09-14 17:40:30',NULL,'Name','name_1534954806801',2,_binary '\0','','default',_binary ''),(50,'Email','email_1534954365299','email',7,'2022-09-14 17:40:30',NULL,'Email','email_1534954365299',3,_binary '','','default',_binary ''),(51,'Phone','phone_1534954373936','phone',7,'2022-09-14 17:40:30',NULL,'Phone','phone_1534954373936',4,_binary '\0','','default',_binary ''),(52,'Zip','zip_1534954373399','zip',7,'2022-09-14 17:40:30',NULL,'Zip','zip_1534954373399',5,_binary '\0','','default',_binary '\0'),(53,'US States','liststate_1534954369789','liststate',7,'2022-09-14 17:40:30',NULL,'US States','liststate_1534954369789',6,_binary '\0','','default',_binary '\0'),(54,'Contact Preferences','contact_preferences_1534954782835','html',7,'2022-09-14 17:40:30',NULL,'Contact Preferences','contact_preferences_1534954782835',7,_binary '\0','','',_binary '\0'),(55,'How Would You Like To Be Contacted?','how_would_you_like_to_be_contacted_1534954740097','listcheckbox',7,'2022-09-14 17:40:30',NULL,'How Would You Like To Be Contacted?','how_would_you_like_to_be_contacted_1534954740097',8,_binary '\0','','default',_binary '\0'),(56,'Brief Description of Your Legal Issue','brief_description_of_your_legal_issue_1534954647282','textarea',7,'2022-09-14 17:40:30',NULL,'Brief Description of Your Legal Issue','brief_description_of_your_legal_issue_1534954647282',10,_binary '\0','','default',_binary '\0'),(57,'','privacy_policy_1534954542111','html',7,'2022-09-14 17:40:30',NULL,'','privacy_policy_1534954542111',11,_binary '\0','<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a>&nbsp;</div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>','',_binary '\0'),(58,'I Have Read The Disclaimer','i_have_read_the_disclaimer_1534954562191','checkbox',7,'2022-09-14 17:40:30',NULL,'I Have Read The Disclaimer','i_have_read_the_disclaimer_1534954562191',12,_binary '','unchecked','right',_binary '\0'),(59,'Submit','submit_1663177781078','submit',7,'2022-09-14 17:49:43',NULL,'Submit','submit_1663177781078',13,_binary '\0','','',_binary '\0'),(60,'Name','name','textbox',8,'2022-09-19 19:56:01',NULL,'Name','name',1,_binary '','','hidden',_binary '\0'),(61,'Email','email','email',8,'2022-09-19 19:56:01',NULL,'Email','email',2,_binary '','','hidden',_binary ''),(62,'Message','message','textarea',8,'2022-09-19 19:56:01',NULL,'Message','message',4,_binary '','','hidden',_binary '\0'),(63,'Submit','submit','submit',8,'2022-09-19 19:56:01',NULL,'Submit','submit',7,_binary '\0','','',_binary '\0'),(64,'Phone Number','phone_number_1662652113554','phone',8,'2022-09-19 19:56:01',NULL,'Phone Number','phone_number_1662652113554',3,_binary '','','hidden',_binary ''),(65,'HTML','html_1662651382914','html',8,'2022-09-19 19:56:01',NULL,'HTML','html_1662651382914',5,_binary '\0','<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a>&nbsp;</div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>','',_binary '\0'),(66,'Checkbox List','listcheckbox_1662663562280','listcheckbox',8,'2022-09-19 19:56:01',NULL,'Checkbox List','listcheckbox_1662663562280',6,_binary '\0','','hidden',_binary '\0');
/*!40000 ALTER TABLE `cuB_nf3_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_nf3_form_meta`
--

DROP TABLE IF EXISTS `cuB_nf3_form_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_nf3_form_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `key` longtext NOT NULL,
  `value` longtext,
  `meta_key` longtext,
  `meta_value` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=868 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_nf3_form_meta`
--

LOCK TABLES `cuB_nf3_form_meta` WRITE;
/*!40000 ALTER TABLE `cuB_nf3_form_meta` DISABLE KEYS */;
INSERT INTO `cuB_nf3_form_meta` VALUES (1,1,'objectType','Form Setting','objectType','Form Setting'),(2,1,'editActive','1','editActive','1'),(3,1,'title','Long Form','title','Long Form'),(4,1,'show_title','0','show_title','0'),(5,1,'clear_complete','1','clear_complete','1'),(6,1,'hide_complete','1','hide_complete','1'),(7,1,'default_label_pos','above','default_label_pos','above'),(8,1,'wrapper_class','fl-long-form','wrapper_class','fl-long-form'),(9,1,'element_class','','element_class',''),(10,1,'key','','key',''),(11,1,'add_submit','0','add_submit','0'),(12,1,'currency','','currency',''),(13,1,'unique_field_error','A form with this value has already been submitted.','unique_field_error','A form with this value has already been submitted.'),(14,1,'logged_in','0','logged_in','0'),(15,1,'not_logged_in_msg','','not_logged_in_msg',''),(16,1,'sub_limit_msg','The form has reached its submission limit.','sub_limit_msg','The form has reached its submission limit.'),(17,1,'calculations','a:0:{}','calculations','a:0:{}'),(18,1,'container_styles_show_advanced_css','0','container_styles_show_advanced_css','0'),(19,1,'title_styles_show_advanced_css','0','title_styles_show_advanced_css','0'),(20,1,'row_styles_show_advanced_css','0','row_styles_show_advanced_css','0'),(21,1,'row-odd_styles_show_advanced_css','0','row-odd_styles_show_advanced_css','0'),(22,1,'success-msg_styles_show_advanced_css','1','success-msg_styles_show_advanced_css','1'),(23,1,'error_msg_styles_show_advanced_css','0','error_msg_styles_show_advanced_css','0'),(24,1,'formContentData','a:1:{i:0;a:6:{s:15:\"formContentData\";a:12:{i:0;a:2:{s:5:\"order\";i:1;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:34:\"personal_information_1534954814742\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";i:2;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"name_1534954806801\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:3;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"email_1534954365299\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";i:4;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"phone_1534954373936\";}s:5:\"width\";s:3:\"100\";}}}i:4;a:2:{s:5:\"order\";i:5;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:17:\"zip_1534954373399\";}s:5:\"width\";s:3:\"100\";}}}i:5;a:2:{s:5:\"order\";i:6;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:23:\"liststate_1534954369789\";}s:5:\"width\";s:3:\"100\";}}}i:6;a:2:{s:5:\"order\";i:7;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:33:\"contact_preferences_1534954782835\";}s:5:\"width\";s:3:\"100\";}}}i:7;a:2:{s:5:\"order\";i:8;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:48:\"how_would_you_like_to_be_contacted_1534954740097\";}s:5:\"width\";s:3:\"100\";}}}i:8;a:2:{s:5:\"order\";i:10;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:51:\"brief_description_of_your_legal_issue_1534954647282\";}s:5:\"width\";s:3:\"100\";}}}i:9;a:2:{s:5:\"order\";i:11;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:28:\"privacy_policy_1534954542111\";}s:5:\"width\";s:3:\"100\";}}}i:10;a:2:{s:5:\"order\";i:12;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:40:\"i_have_read_the_disclaimer_1534954562191\";}s:5:\"width\";s:3:\"100\";}}}i:11;a:2:{s:5:\"order\";i:13;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"send_1562680674669\";}s:5:\"width\";s:3:\"100\";}}}}s:5:\"order\";i:0;s:4:\"type\";s:4:\"part\";s:5:\"clean\";b:1;s:5:\"title\";s:10:\"Part Title\";s:3:\"key\";s:7:\"znhzdws\";}}','formContentData','a:1:{i:0;a:6:{s:15:\"formContentData\";a:12:{i:0;a:2:{s:5:\"order\";i:1;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:34:\"personal_information_1534954814742\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";i:2;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"name_1534954806801\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:3;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"email_1534954365299\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";i:4;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"phone_1534954373936\";}s:5:\"width\";s:3:\"100\";}}}i:4;a:2:{s:5:\"order\";i:5;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:17:\"zip_1534954373399\";}s:5:\"width\";s:3:\"100\";}}}i:5;a:2:{s:5:\"order\";i:6;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:23:\"liststate_1534954369789\";}s:5:\"width\";s:3:\"100\";}}}i:6;a:2:{s:5:\"order\";i:7;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:33:\"contact_preferences_1534954782835\";}s:5:\"width\";s:3:\"100\";}}}i:7;a:2:{s:5:\"order\";i:8;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:48:\"how_would_you_like_to_be_contacted_1534954740097\";}s:5:\"width\";s:3:\"100\";}}}i:8;a:2:{s:5:\"order\";i:10;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:51:\"brief_description_of_your_legal_issue_1534954647282\";}s:5:\"width\";s:3:\"100\";}}}i:9;a:2:{s:5:\"order\";i:11;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:28:\"privacy_policy_1534954542111\";}s:5:\"width\";s:3:\"100\";}}}i:10;a:2:{s:5:\"order\";i:12;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:40:\"i_have_read_the_disclaimer_1534954562191\";}s:5:\"width\";s:3:\"100\";}}}i:11;a:2:{s:5:\"order\";i:13;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"send_1562680674669\";}s:5:\"width\";s:3:\"100\";}}}}s:5:\"order\";i:0;s:4:\"type\";s:4:\"part\";s:5:\"clean\";b:1;s:5:\"title\";s:10:\"Part Title\";s:3:\"key\";s:7:\"znhzdws\";}}'),(25,1,'changeEmailErrorMsg','','changeEmailErrorMsg',''),(26,1,'changeDateErrorMsg','','changeDateErrorMsg',''),(27,1,'confirmFieldErrorMsg','','confirmFieldErrorMsg',''),(28,1,'fieldNumberNumMinError','','fieldNumberNumMinError',''),(29,1,'fieldNumberNumMaxError','','fieldNumberNumMaxError',''),(30,1,'fieldNumberIncrementBy','','fieldNumberIncrementBy',''),(31,1,'formErrorsCorrectErrors','','formErrorsCorrectErrors',''),(32,1,'validateRequiredField','','validateRequiredField',''),(33,1,'honeypotHoneypotError','','honeypotHoneypotError',''),(34,1,'fieldsMarkedRequired','','fieldsMarkedRequired',''),(35,1,'drawerDisabled','','drawerDisabled',''),(36,2,'objectType','Form Setting','objectType','Form Setting'),(37,2,'editActive','1','editActive','1'),(38,2,'title','Short Form','title','Short Form'),(39,2,'show_title','0','show_title','0'),(40,2,'clear_complete','1','clear_complete','1'),(41,2,'hide_complete','1','hide_complete','1'),(42,2,'default_label_pos','hidden','default_label_pos','hidden'),(43,2,'wrapper_class','fl-short-form','wrapper_class','fl-short-form'),(44,2,'element_class','','element_class',''),(45,2,'key','','key',''),(46,2,'add_submit','0','add_submit','0'),(47,2,'currency','','currency',''),(48,2,'unique_field_error','A form with this value has already been submitted.','unique_field_error','A form with this value has already been submitted.'),(49,2,'logged_in','0','logged_in','0'),(50,2,'not_logged_in_msg','','not_logged_in_msg',''),(51,2,'sub_limit_msg','The form has reached its submission limit.','sub_limit_msg','The form has reached its submission limit.'),(52,2,'calculations','a:0:{}','calculations','a:0:{}'),(53,2,'container_styles_show_advanced_css','0','container_styles_show_advanced_css','0'),(54,2,'title_styles_show_advanced_css','0','title_styles_show_advanced_css','0'),(55,2,'row_styles_show_advanced_css','0','row_styles_show_advanced_css','0'),(56,2,'row-odd_styles_show_advanced_css','0','row-odd_styles_show_advanced_css','0'),(57,2,'success-msg_styles_show_advanced_css','0','success-msg_styles_show_advanced_css','0'),(58,2,'error_msg_styles_show_advanced_css','0','error_msg_styles_show_advanced_css','0'),(59,2,'formContentData','a:1:{i:0;a:6:{s:15:\"formContentData\";a:3:{i:0;a:2:{s:5:\"order\";i:1;s:5:\"cells\";a:3:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"name_1534955086592\";}s:5:\"width\";i:33;}i:1;a:3:{s:5:\"order\";i:1;s:6:\"fields\";a:1:{i:0;s:19:\"email_1534954990561\";}s:5:\"width\";i:33;}i:2;a:3:{s:5:\"order\";i:2;s:6:\"fields\";a:1:{i:0;s:19:\"phone_1534954991568\";}s:5:\"width\";i:33;}}}i:1;a:2:{s:5:\"order\";i:4;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:21:\"message_1534955077918\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:6;s:5:\"cells\";a:3:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"html_1534955009205\";}s:5:\"width\";i:33;}i:1;a:3:{s:5:\"order\";i:1;s:6:\"fields\";a:1:{i:0;s:40:\"i_have_read_the_disclaimer_1534955054736\";}s:5:\"width\";i:40;}i:2;a:3:{s:5:\"order\";i:2;s:6:\"fields\";a:1:{i:0;s:20:\"submit_1629280585819\";}s:5:\"width\";i:27;}}}}s:5:\"order\";i:0;s:4:\"type\";s:4:\"part\";s:5:\"clean\";b:1;s:5:\"title\";s:10:\"Part Title\";s:3:\"key\";s:8:\"kxtbboqb\";}}','formContentData','a:1:{i:0;a:6:{s:15:\"formContentData\";a:3:{i:0;a:2:{s:5:\"order\";i:1;s:5:\"cells\";a:3:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"name_1534955086592\";}s:5:\"width\";i:33;}i:1;a:3:{s:5:\"order\";i:1;s:6:\"fields\";a:1:{i:0;s:19:\"email_1534954990561\";}s:5:\"width\";i:33;}i:2;a:3:{s:5:\"order\";i:2;s:6:\"fields\";a:1:{i:0;s:19:\"phone_1534954991568\";}s:5:\"width\";i:33;}}}i:1;a:2:{s:5:\"order\";i:4;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:21:\"message_1534955077918\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:6;s:5:\"cells\";a:3:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"html_1534955009205\";}s:5:\"width\";i:33;}i:1;a:3:{s:5:\"order\";i:1;s:6:\"fields\";a:1:{i:0;s:40:\"i_have_read_the_disclaimer_1534955054736\";}s:5:\"width\";i:40;}i:2;a:3:{s:5:\"order\";i:2;s:6:\"fields\";a:1:{i:0;s:20:\"submit_1629280585819\";}s:5:\"width\";i:27;}}}}s:5:\"order\";i:0;s:4:\"type\";s:4:\"part\";s:5:\"clean\";b:1;s:5:\"title\";s:10:\"Part Title\";s:3:\"key\";s:8:\"kxtbboqb\";}}'),(60,2,'drawerDisabled','','drawerDisabled',''),(61,2,'changeEmailErrorMsg','','changeEmailErrorMsg',''),(62,2,'changeDateErrorMsg','','changeDateErrorMsg',''),(63,2,'confirmFieldErrorMsg','','confirmFieldErrorMsg',''),(64,2,'fieldNumberNumMinError','','fieldNumberNumMinError',''),(65,2,'fieldNumberNumMaxError','','fieldNumberNumMaxError',''),(66,2,'fieldNumberIncrementBy','','fieldNumberIncrementBy',''),(67,2,'formErrorsCorrectErrors','','formErrorsCorrectErrors',''),(68,2,'validateRequiredField','','validateRequiredField',''),(69,2,'honeypotHoneypotError','','honeypotHoneypotError',''),(70,2,'fieldsMarkedRequired','','fieldsMarkedRequired',''),(71,3,'objectType','Form Setting','objectType','Form Setting'),(72,3,'editActive','1','editActive','1'),(73,3,'title','Email This Attorney','title','Email This Attorney'),(74,3,'created_at','2019-03-08 18:06:57','created_at','2019-03-08 18:06:57'),(75,3,'default_label_pos','above','default_label_pos','above'),(76,3,'show_title','0','show_title','0'),(77,3,'clear_complete','1','clear_complete','1'),(78,3,'hide_complete','1','hide_complete','1'),(79,3,'logged_in','0','logged_in','0'),(80,3,'wrapper_class','fl-attorney-form','wrapper_class','fl-attorney-form'),(81,3,'element_class','','element_class',''),(82,3,'key','','key',''),(83,3,'add_submit','0','add_submit','0'),(84,3,'currency','','currency',''),(85,3,'unique_field_error','A form with this value has already been submitted.','unique_field_error','A form with this value has already been submitted.'),(86,3,'not_logged_in_msg','','not_logged_in_msg',''),(87,3,'sub_limit_msg','The form has reached its submission limit.','sub_limit_msg','The form has reached its submission limit.'),(88,3,'calculations','a:0:{}','calculations','a:0:{}'),(89,3,'container_styles_show_advanced_css','0','container_styles_show_advanced_css','0'),(90,3,'title_styles_show_advanced_css','0','title_styles_show_advanced_css','0'),(91,3,'row_styles_show_advanced_css','0','row_styles_show_advanced_css','0'),(92,3,'row-odd_styles_show_advanced_css','0','row-odd_styles_show_advanced_css','0'),(93,3,'success-msg_styles_show_advanced_css','0','success-msg_styles_show_advanced_css','0'),(94,3,'error_msg_styles_show_advanced_css','0','error_msg_styles_show_advanced_css','0'),(95,3,'formContentData','a:1:{i:0;a:8:{s:15:\"formContentData\";a:8:{i:0;a:2:{s:5:\"order\";i:1;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"name_1534955086592\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";i:2;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"email_1534954990561\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:3;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"phone_1534954991568\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";i:4;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:24:\"listselect_1662654086358\";}s:5:\"width\";s:3:\"100\";}}}i:4;a:2:{s:5:\"order\";i:5;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:21:\"message_1534955077918\";}s:5:\"width\";s:3:\"100\";}}}i:5;a:2:{s:5:\"order\";i:6;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"html_1534955009205\";}s:5:\"width\";s:3:\"100\";}}}i:6;a:2:{s:5:\"order\";i:7;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:40:\"i_have_read_the_disclaimer_1534955054736\";}s:5:\"width\";s:3:\"100\";}}}i:7;a:2:{s:5:\"order\";i:8;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"send_1562680748375\";}s:5:\"width\";s:3:\"100\";}}}}s:5:\"order\";i:0;s:4:\"type\";s:4:\"part\";s:5:\"clean\";b:1;s:5:\"title\";s:10:\"Part Title\";s:3:\"key\";s:8:\"tvkfabgo\";s:10:\"editActive\";b:1;s:14:\"drawerDisabled\";b:0;}}','formContentData','a:1:{i:0;a:8:{s:15:\"formContentData\";a:8:{i:0;a:2:{s:5:\"order\";i:1;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"name_1534955086592\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";i:2;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"email_1534954990561\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:3;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"phone_1534954991568\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";i:4;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:24:\"listselect_1662654086358\";}s:5:\"width\";s:3:\"100\";}}}i:4;a:2:{s:5:\"order\";i:5;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:21:\"message_1534955077918\";}s:5:\"width\";s:3:\"100\";}}}i:5;a:2:{s:5:\"order\";i:6;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"html_1534955009205\";}s:5:\"width\";s:3:\"100\";}}}i:6;a:2:{s:5:\"order\";i:7;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:40:\"i_have_read_the_disclaimer_1534955054736\";}s:5:\"width\";s:3:\"100\";}}}i:7;a:2:{s:5:\"order\";i:8;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"send_1562680748375\";}s:5:\"width\";s:3:\"100\";}}}}s:5:\"order\";i:0;s:4:\"type\";s:4:\"part\";s:5:\"clean\";b:1;s:5:\"title\";s:10:\"Part Title\";s:3:\"key\";s:8:\"tvkfabgo\";s:10:\"editActive\";b:1;s:14:\"drawerDisabled\";b:0;}}'),(96,3,'drawerDisabled','','drawerDisabled',''),(97,3,'changeEmailErrorMsg','','changeEmailErrorMsg',''),(98,3,'changeDateErrorMsg','','changeDateErrorMsg',''),(99,3,'confirmFieldErrorMsg','','confirmFieldErrorMsg',''),(100,3,'fieldNumberNumMinError','','fieldNumberNumMinError',''),(101,3,'fieldNumberNumMaxError','','fieldNumberNumMaxError',''),(102,3,'fieldNumberIncrementBy','','fieldNumberIncrementBy',''),(103,3,'formErrorsCorrectErrors','','formErrorsCorrectErrors',''),(104,3,'validateRequiredField','','validateRequiredField',''),(105,3,'honeypotHoneypotError','','honeypotHoneypotError',''),(106,3,'fieldsMarkedRequired','','fieldsMarkedRequired',''),(107,3,'container_styles_border','','container_styles_border',''),(108,3,'container_styles_height','','container_styles_height',''),(109,3,'container_styles_margin','','container_styles_margin',''),(110,3,'container_styles_padding','','container_styles_padding',''),(111,3,'container_styles_float','','container_styles_float',''),(112,3,'title_styles_border','','title_styles_border',''),(113,3,'title_styles_height','','title_styles_height',''),(114,3,'title_styles_width','','title_styles_width',''),(115,3,'title_styles_font-size','','title_styles_font-size',''),(116,3,'title_styles_margin','','title_styles_margin',''),(117,3,'title_styles_padding','','title_styles_padding',''),(118,3,'title_styles_float','','title_styles_float',''),(119,3,'row_styles_border','','row_styles_border',''),(120,3,'row_styles_width','','row_styles_width',''),(121,3,'row_styles_font-size','','row_styles_font-size',''),(122,3,'row_styles_margin','','row_styles_margin',''),(123,3,'row_styles_padding','','row_styles_padding',''),(124,3,'row-odd_styles_border','','row-odd_styles_border',''),(125,3,'row-odd_styles_height','','row-odd_styles_height',''),(126,3,'row-odd_styles_width','','row-odd_styles_width',''),(127,3,'row-odd_styles_font-size','','row-odd_styles_font-size',''),(128,3,'row-odd_styles_margin','','row-odd_styles_margin',''),(129,3,'row-odd_styles_padding','','row-odd_styles_padding',''),(130,3,'success-msg_styles_border','','success-msg_styles_border',''),(131,3,'success-msg_styles_height','','success-msg_styles_height',''),(132,3,'success-msg_styles_width','','success-msg_styles_width',''),(133,3,'success-msg_styles_font-size','','success-msg_styles_font-size',''),(134,3,'success-msg_styles_margin','','success-msg_styles_margin',''),(135,3,'success-msg_styles_padding','','success-msg_styles_padding',''),(136,3,'error_msg_styles_border','','error_msg_styles_border',''),(137,3,'error_msg_styles_width','','error_msg_styles_width',''),(138,3,'error_msg_styles_font-size','','error_msg_styles_font-size',''),(139,3,'error_msg_styles_margin','','error_msg_styles_margin',''),(140,3,'error_msg_styles_padding','','error_msg_styles_padding',''),(141,4,'objectType','Form Setting','objectType','Form Setting'),(142,4,'editActive','1','editActive','1'),(143,4,'title','Landing Page Form','title','Landing Page Form'),(144,4,'created_at','2019-04-02 18:10:40','created_at','2019-04-02 18:10:40'),(145,4,'default_label_pos','above','default_label_pos','above'),(146,4,'show_title','0','show_title','0'),(147,4,'clear_complete','1','clear_complete','1'),(148,4,'hide_complete','1','hide_complete','1'),(149,4,'logged_in','0','logged_in','0'),(150,4,'wrapper_class','fl-landing-page-form','wrapper_class','fl-landing-page-form'),(151,4,'element_class','','element_class',''),(152,4,'key','','key',''),(153,4,'add_submit','0','add_submit','0'),(154,4,'currency','','currency',''),(155,4,'unique_field_error','A form with this value has already been submitted.','unique_field_error','A form with this value has already been submitted.'),(156,4,'not_logged_in_msg','','not_logged_in_msg',''),(157,4,'sub_limit_msg','The form has reached its submission limit.','sub_limit_msg','The form has reached its submission limit.'),(158,4,'calculations','a:0:{}','calculations','a:0:{}'),(159,4,'container_styles_show_advanced_css','0','container_styles_show_advanced_css','0'),(160,4,'title_styles_show_advanced_css','0','title_styles_show_advanced_css','0'),(161,4,'row_styles_show_advanced_css','0','row_styles_show_advanced_css','0'),(162,4,'row-odd_styles_show_advanced_css','0','row-odd_styles_show_advanced_css','0'),(163,4,'success-msg_styles_show_advanced_css','0','success-msg_styles_show_advanced_css','0'),(164,4,'error_msg_styles_show_advanced_css','0','error_msg_styles_show_advanced_css','0'),(165,4,'formContentData','a:7:{i:0;a:2:{s:5:\"order\";i:1;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"name_1534955086592\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";i:2;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"email_1534954990561\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:3;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"phone_1534954991568\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";i:4;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:21:\"message_1534955077918\";}s:5:\"width\";s:3:\"100\";}}}i:4;a:2:{s:5:\"order\";i:6;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"html_1534955009205\";}s:5:\"width\";s:3:\"100\";}}}i:5;a:2:{s:5:\"order\";i:7;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:40:\"i_have_read_the_disclaimer_1534955054736\";}s:5:\"width\";s:3:\"100\";}}}i:6;a:2:{s:5:\"order\";i:8;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"send_1562680741334\";}s:5:\"width\";s:3:\"100\";}}}}','formContentData','a:7:{i:0;a:2:{s:5:\"order\";i:1;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"name_1534955086592\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";i:2;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"email_1534954990561\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:3;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"phone_1534954991568\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";i:4;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:21:\"message_1534955077918\";}s:5:\"width\";s:3:\"100\";}}}i:4;a:2:{s:5:\"order\";i:6;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"html_1534955009205\";}s:5:\"width\";s:3:\"100\";}}}i:5;a:2:{s:5:\"order\";i:7;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:40:\"i_have_read_the_disclaimer_1534955054736\";}s:5:\"width\";s:3:\"100\";}}}i:6;a:2:{s:5:\"order\";i:8;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"send_1562680741334\";}s:5:\"width\";s:3:\"100\";}}}}'),(166,4,'drawerDisabled','','drawerDisabled',''),(167,4,'changeEmailErrorMsg','','changeEmailErrorMsg',''),(168,4,'changeDateErrorMsg','','changeDateErrorMsg',''),(169,4,'confirmFieldErrorMsg','','confirmFieldErrorMsg',''),(170,4,'fieldNumberNumMinError','','fieldNumberNumMinError',''),(171,4,'fieldNumberNumMaxError','','fieldNumberNumMaxError',''),(172,4,'fieldNumberIncrementBy','','fieldNumberIncrementBy',''),(173,4,'formErrorsCorrectErrors','','formErrorsCorrectErrors',''),(174,4,'validateRequiredField','','validateRequiredField',''),(175,4,'honeypotHoneypotError','','honeypotHoneypotError',''),(176,4,'fieldsMarkedRequired','','fieldsMarkedRequired',''),(177,1,'created_at','2019-07-29 17:32:52','created_at','2019-07-29 17:32:52'),(178,1,'seq_num',NULL,'seq_num',NULL),(179,1,'allow_public_link','0','allow_public_link','0'),(180,1,'embed_form','','embed_form',''),(181,3,'seq_num',NULL,'seq_num',NULL),(182,3,'allow_public_link','0','allow_public_link','0'),(183,3,'embed_form','','embed_form',''),(184,3,'repeatable_fieldsets','','repeatable_fieldsets',''),(185,4,'seq_num',NULL,'seq_num',NULL),(186,4,'allow_public_link','0','allow_public_link','0'),(187,4,'embed_form','','embed_form',''),(188,4,'repeatable_fieldsets','','repeatable_fieldsets',''),(189,1,'repeatable_fieldsets','','repeatable_fieldsets',''),(190,2,'created_at','2019-07-29 17:33:01','created_at','2019-07-29 17:33:01'),(191,2,'seq_num',NULL,'seq_num',NULL),(192,2,'allow_public_link','0','allow_public_link','0'),(193,2,'embed_form','','embed_form',''),(194,2,'repeatable_fieldsets','','repeatable_fieldsets',''),(195,3,'conditions','a:0:{}','conditions','a:0:{}'),(196,3,'mp_breadcrumb','1','mp_breadcrumb','1'),(197,3,'mp_progress_bar','1','mp_progress_bar','1'),(198,3,'mp_display_titles','0','mp_display_titles','0'),(199,3,'breadcrumb_container_styles_show_advanced_css','0','breadcrumb_container_styles_show_advanced_css','0'),(200,3,'breadcrumb_buttons_styles_show_advanced_css','0','breadcrumb_buttons_styles_show_advanced_css','0'),(201,3,'breadcrumb_button_hover_styles_show_advanced_css','0','breadcrumb_button_hover_styles_show_advanced_css','0'),(202,3,'breadcrumb_active_button_styles_show_advanced_css','0','breadcrumb_active_button_styles_show_advanced_css','0'),(203,3,'progress_bar_container_styles_show_advanced_css','0','progress_bar_container_styles_show_advanced_css','0'),(204,3,'progress_bar_fill_styles_show_advanced_css','0','progress_bar_fill_styles_show_advanced_css','0'),(205,3,'part_titles_styles_show_advanced_css','0','part_titles_styles_show_advanced_css','0'),(206,3,'navigation_container_styles_show_advanced_css','0','navigation_container_styles_show_advanced_css','0'),(207,3,'previous_button_styles_show_advanced_css','0','previous_button_styles_show_advanced_css','0'),(208,3,'next_button_styles_show_advanced_css','0','next_button_styles_show_advanced_css','0'),(209,3,'navigation_hover_styles_show_advanced_css','0','navigation_hover_styles_show_advanced_css','0'),(210,2,'conditions','a:0:{}','conditions','a:0:{}'),(211,2,'mp_breadcrumb','1','mp_breadcrumb','1'),(212,2,'mp_progress_bar','1','mp_progress_bar','1'),(213,2,'mp_display_titles','0','mp_display_titles','0'),(214,2,'breadcrumb_container_styles_show_advanced_css','0','breadcrumb_container_styles_show_advanced_css','0'),(215,2,'breadcrumb_buttons_styles_show_advanced_css','0','breadcrumb_buttons_styles_show_advanced_css','0'),(216,2,'breadcrumb_button_hover_styles_show_advanced_css','0','breadcrumb_button_hover_styles_show_advanced_css','0'),(217,2,'breadcrumb_active_button_styles_show_advanced_css','0','breadcrumb_active_button_styles_show_advanced_css','0'),(218,2,'progress_bar_container_styles_show_advanced_css','0','progress_bar_container_styles_show_advanced_css','0'),(219,2,'progress_bar_fill_styles_show_advanced_css','0','progress_bar_fill_styles_show_advanced_css','0'),(220,2,'part_titles_styles_show_advanced_css','0','part_titles_styles_show_advanced_css','0'),(221,2,'navigation_container_styles_show_advanced_css','0','navigation_container_styles_show_advanced_css','0'),(222,2,'previous_button_styles_show_advanced_css','0','previous_button_styles_show_advanced_css','0'),(223,2,'next_button_styles_show_advanced_css','0','next_button_styles_show_advanced_css','0'),(224,2,'navigation_hover_styles_show_advanced_css','0','navigation_hover_styles_show_advanced_css','0'),(225,2,'container_styles_border','','container_styles_border',''),(226,2,'container_styles_height','','container_styles_height',''),(227,2,'container_styles_margin','','container_styles_margin',''),(228,2,'container_styles_padding','','container_styles_padding',''),(229,2,'container_styles_float','','container_styles_float',''),(230,2,'title_styles_border','','title_styles_border',''),(231,2,'title_styles_height','','title_styles_height',''),(232,2,'title_styles_width','','title_styles_width',''),(233,2,'title_styles_font-size','','title_styles_font-size',''),(234,2,'title_styles_margin','','title_styles_margin',''),(235,2,'title_styles_padding','','title_styles_padding',''),(236,2,'title_styles_float','','title_styles_float',''),(237,2,'row_styles_border','','row_styles_border',''),(238,2,'row_styles_width','','row_styles_width',''),(239,2,'row_styles_font-size','','row_styles_font-size',''),(240,2,'row_styles_margin','','row_styles_margin',''),(241,2,'row_styles_padding','','row_styles_padding',''),(242,2,'row-odd_styles_border','','row-odd_styles_border',''),(243,2,'row-odd_styles_height','','row-odd_styles_height',''),(244,2,'row-odd_styles_width','','row-odd_styles_width',''),(245,2,'row-odd_styles_font-size','','row-odd_styles_font-size',''),(246,2,'row-odd_styles_margin','','row-odd_styles_margin',''),(247,2,'row-odd_styles_padding','','row-odd_styles_padding',''),(248,2,'success-msg_styles_border','','success-msg_styles_border',''),(249,2,'success-msg_styles_height','','success-msg_styles_height',''),(250,2,'success-msg_styles_width','','success-msg_styles_width',''),(251,2,'success-msg_styles_font-size','','success-msg_styles_font-size',''),(252,2,'success-msg_styles_margin','','success-msg_styles_margin',''),(253,2,'success-msg_styles_padding','','success-msg_styles_padding',''),(254,2,'error_msg_styles_border','','error_msg_styles_border',''),(255,2,'error_msg_styles_width','','error_msg_styles_width',''),(256,2,'error_msg_styles_font-size','','error_msg_styles_font-size',''),(257,2,'error_msg_styles_margin','','error_msg_styles_margin',''),(258,2,'error_msg_styles_padding','','error_msg_styles_padding',''),(259,2,'mp_prev_label','','mp_prev_label',''),(260,2,'mp_next_label','','mp_next_label',''),(261,2,'breadcrumb_container_styles_border','','breadcrumb_container_styles_border',''),(262,2,'breadcrumb_container_styles_height','','breadcrumb_container_styles_height',''),(263,2,'breadcrumb_container_styles_width','','breadcrumb_container_styles_width',''),(264,2,'breadcrumb_container_styles_margin','','breadcrumb_container_styles_margin',''),(265,2,'breadcrumb_container_styles_padding','','breadcrumb_container_styles_padding',''),(266,2,'breadcrumb_container_styles_float','','breadcrumb_container_styles_float',''),(267,2,'breadcrumb_buttons_styles_border','','breadcrumb_buttons_styles_border',''),(268,2,'breadcrumb_buttons_styles_height','','breadcrumb_buttons_styles_height',''),(269,2,'breadcrumb_buttons_styles_width','','breadcrumb_buttons_styles_width',''),(270,2,'breadcrumb_buttons_styles_font-size','','breadcrumb_buttons_styles_font-size',''),(271,2,'breadcrumb_buttons_styles_margin','','breadcrumb_buttons_styles_margin',''),(272,2,'breadcrumb_buttons_styles_padding','','breadcrumb_buttons_styles_padding',''),(273,2,'breadcrumb_buttons_styles_float','','breadcrumb_buttons_styles_float',''),(274,2,'breadcrumb_button_hover_styles_border','','breadcrumb_button_hover_styles_border',''),(275,2,'breadcrumb_button_hover_styles_height','','breadcrumb_button_hover_styles_height',''),(276,2,'breadcrumb_button_hover_styles_width','','breadcrumb_button_hover_styles_width',''),(277,2,'breadcrumb_button_hover_styles_font-size','','breadcrumb_button_hover_styles_font-size',''),(278,2,'breadcrumb_button_hover_styles_margin','','breadcrumb_button_hover_styles_margin',''),(279,2,'breadcrumb_button_hover_styles_padding','','breadcrumb_button_hover_styles_padding',''),(280,2,'breadcrumb_button_hover_styles_float','','breadcrumb_button_hover_styles_float',''),(281,2,'breadcrumb_active_button_styles_border','','breadcrumb_active_button_styles_border',''),(282,2,'breadcrumb_active_button_styles_height','','breadcrumb_active_button_styles_height',''),(283,2,'breadcrumb_active_button_styles_width','','breadcrumb_active_button_styles_width',''),(284,2,'breadcrumb_active_button_styles_font-size','','breadcrumb_active_button_styles_font-size',''),(285,2,'breadcrumb_active_button_styles_margin','','breadcrumb_active_button_styles_margin',''),(286,2,'breadcrumb_active_button_styles_padding','','breadcrumb_active_button_styles_padding',''),(287,2,'breadcrumb_active_button_styles_float','','breadcrumb_active_button_styles_float',''),(288,2,'progress_bar_container_styles_border','','progress_bar_container_styles_border',''),(289,2,'progress_bar_container_styles_height','','progress_bar_container_styles_height',''),(290,2,'progress_bar_container_styles_width','','progress_bar_container_styles_width',''),(291,2,'progress_bar_container_styles_margin','','progress_bar_container_styles_margin',''),(292,2,'progress_bar_container_styles_padding','','progress_bar_container_styles_padding',''),(293,2,'progress_bar_container_styles_float','','progress_bar_container_styles_float',''),(294,2,'progress_bar_fill_styles_border','','progress_bar_fill_styles_border',''),(295,2,'progress_bar_fill_styles_height','','progress_bar_fill_styles_height',''),(296,2,'progress_bar_fill_styles_margin','','progress_bar_fill_styles_margin',''),(297,2,'progress_bar_fill_styles_padding','','progress_bar_fill_styles_padding',''),(298,2,'part_titles_styles_border','','part_titles_styles_border',''),(299,2,'part_titles_styles_height','','part_titles_styles_height',''),(300,2,'part_titles_styles_width','','part_titles_styles_width',''),(301,2,'part_titles_styles_font-size','','part_titles_styles_font-size',''),(302,2,'part_titles_styles_margin','','part_titles_styles_margin',''),(303,2,'part_titles_styles_padding','','part_titles_styles_padding',''),(304,2,'part_titles_styles_float','','part_titles_styles_float',''),(305,2,'navigation_container_styles_border','','navigation_container_styles_border',''),(306,2,'navigation_container_styles_height','','navigation_container_styles_height',''),(307,2,'navigation_container_styles_width','','navigation_container_styles_width',''),(308,2,'navigation_container_styles_margin','','navigation_container_styles_margin',''),(309,2,'navigation_container_styles_padding','','navigation_container_styles_padding',''),(310,2,'navigation_container_styles_float','','navigation_container_styles_float',''),(311,2,'previous_button_styles_border','','previous_button_styles_border',''),(312,2,'previous_button_styles_height','','previous_button_styles_height',''),(313,2,'previous_button_styles_width','','previous_button_styles_width',''),(314,2,'previous_button_styles_font-size','','previous_button_styles_font-size',''),(315,2,'previous_button_styles_margin','','previous_button_styles_margin',''),(316,2,'previous_button_styles_padding','','previous_button_styles_padding',''),(317,2,'next_button_styles_border','','next_button_styles_border',''),(318,2,'next_button_styles_height','','next_button_styles_height',''),(319,2,'next_button_styles_width','','next_button_styles_width',''),(320,2,'next_button_styles_font-size','','next_button_styles_font-size',''),(321,2,'next_button_styles_margin','','next_button_styles_margin',''),(322,2,'next_button_styles_padding','','next_button_styles_padding',''),(323,2,'navigation_hover_styles_border','','navigation_hover_styles_border',''),(324,2,'navigation_hover_styles_height','','navigation_hover_styles_height',''),(325,2,'navigation_hover_styles_width','','navigation_hover_styles_width',''),(326,2,'navigation_hover_styles_font-size','','navigation_hover_styles_font-size',''),(327,2,'navigation_hover_styles_margin','','navigation_hover_styles_margin',''),(328,2,'navigation_hover_styles_padding','','navigation_hover_styles_padding',''),(329,5,'title','Contact Me','title','Contact Me'),(330,5,'key','','key',''),(331,5,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(332,5,'default_label_pos','hidden','default_label_pos','hidden'),(333,5,'conditions','a:0:{}','conditions','a:0:{}'),(334,5,'objectType','Form Setting','objectType','Form Setting'),(335,5,'editActive','1','editActive','1'),(336,5,'show_title','0','show_title','0'),(337,5,'clear_complete','1','clear_complete','1'),(338,5,'hide_complete','1','hide_complete','1'),(339,5,'wrapper_class','lm-ignore-checkbox','wrapper_class','lm-ignore-checkbox'),(340,5,'element_class','','element_class',''),(341,5,'add_submit','1','add_submit','1'),(342,5,'logged_in','0','logged_in','0'),(343,5,'not_logged_in_msg','','not_logged_in_msg',''),(344,5,'sub_limit_number','','sub_limit_number',''),(345,5,'sub_limit_msg','','sub_limit_msg',''),(346,5,'calculations','a:0:{}','calculations','a:0:{}'),(347,5,'formContentData','a:1:{i:0;a:8:{s:15:\"formContentData\";a:3:{i:0;a:2:{s:5:\"order\";i:0;s:5:\"cells\";a:3:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:4:\"name\";}s:5:\"width\";i:33;}i:1;a:3:{s:5:\"order\";i:1;s:6:\"fields\";a:1:{i:0;s:5:\"email\";}s:5:\"width\";i:33;}i:2;a:3:{s:5:\"order\";i:2;s:6:\"fields\";a:1:{i:0;s:26:\"phone_number_1662652113554\";}s:5:\"width\";i:33;}}}i:1;a:2:{s:5:\"order\";i:2;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:7:\"message\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:3;s:5:\"cells\";a:3:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"html_1662651382914\";}s:5:\"width\";i:33;}i:1;a:3:{s:5:\"order\";i:1;s:6:\"fields\";a:1:{i:0;s:26:\"listcheckbox_1662663562280\";}s:5:\"width\";i:33;}i:2;a:3:{s:5:\"order\";i:2;s:6:\"fields\";a:1:{i:0;s:6:\"submit\";}s:5:\"width\";i:33;}}}}s:5:\"order\";i:0;s:4:\"type\";s:4:\"part\";s:5:\"clean\";b:1;s:5:\"title\";s:10:\"Part Title\";s:3:\"key\";s:7:\"iyiqfgo\";s:10:\"editActive\";b:1;s:14:\"drawerDisabled\";b:0;}}','formContentData','a:1:{i:0;a:8:{s:15:\"formContentData\";a:3:{i:0;a:2:{s:5:\"order\";i:0;s:5:\"cells\";a:3:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:4:\"name\";}s:5:\"width\";i:33;}i:1;a:3:{s:5:\"order\";i:1;s:6:\"fields\";a:1:{i:0;s:5:\"email\";}s:5:\"width\";i:33;}i:2;a:3:{s:5:\"order\";i:2;s:6:\"fields\";a:1:{i:0;s:26:\"phone_number_1662652113554\";}s:5:\"width\";i:33;}}}i:1;a:2:{s:5:\"order\";i:2;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:7:\"message\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:3;s:5:\"cells\";a:3:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"html_1662651382914\";}s:5:\"width\";i:33;}i:1;a:3:{s:5:\"order\";i:1;s:6:\"fields\";a:1:{i:0;s:26:\"listcheckbox_1662663562280\";}s:5:\"width\";i:33;}i:2;a:3:{s:5:\"order\";i:2;s:6:\"fields\";a:1:{i:0;s:6:\"submit\";}s:5:\"width\";i:33;}}}}s:5:\"order\";i:0;s:4:\"type\";s:4:\"part\";s:5:\"clean\";b:1;s:5:\"title\";s:10:\"Part Title\";s:3:\"key\";s:7:\"iyiqfgo\";s:10:\"editActive\";b:1;s:14:\"drawerDisabled\";b:0;}}'),(348,5,'container_styles_background-color','','container_styles_background-color',''),(349,5,'container_styles_border','','container_styles_border',''),(350,5,'container_styles_border-style','','container_styles_border-style',''),(351,5,'container_styles_border-color','','container_styles_border-color',''),(352,5,'container_styles_color','','container_styles_color',''),(353,5,'container_styles_height','','container_styles_height',''),(354,5,'container_styles_width','','container_styles_width',''),(355,5,'container_styles_font-size','','container_styles_font-size',''),(356,5,'container_styles_margin','','container_styles_margin',''),(357,5,'container_styles_padding','','container_styles_padding',''),(358,5,'container_styles_display','','container_styles_display',''),(359,5,'container_styles_float','','container_styles_float',''),(360,5,'container_styles_show_advanced_css','1','container_styles_show_advanced_css','1'),(361,5,'container_styles_advanced','width: 100%!important','container_styles_advanced','width: 100%!important'),(362,5,'title_styles_background-color','','title_styles_background-color',''),(363,5,'title_styles_border','','title_styles_border',''),(364,5,'title_styles_border-style','','title_styles_border-style',''),(365,5,'title_styles_border-color','','title_styles_border-color',''),(366,5,'title_styles_color','','title_styles_color',''),(367,5,'title_styles_height','','title_styles_height',''),(368,5,'title_styles_width','','title_styles_width',''),(369,5,'title_styles_font-size','','title_styles_font-size',''),(370,5,'title_styles_margin','','title_styles_margin',''),(371,5,'title_styles_padding','','title_styles_padding',''),(372,5,'title_styles_display','','title_styles_display',''),(373,5,'title_styles_float','','title_styles_float',''),(374,5,'title_styles_show_advanced_css','0','title_styles_show_advanced_css','0'),(375,5,'title_styles_advanced','','title_styles_advanced',''),(376,5,'row_styles_background-color','','row_styles_background-color',''),(377,5,'row_styles_border','','row_styles_border',''),(378,5,'row_styles_border-style','','row_styles_border-style',''),(379,5,'row_styles_border-color','','row_styles_border-color',''),(380,5,'row_styles_color','','row_styles_color',''),(381,5,'row_styles_height','','row_styles_height',''),(382,5,'row_styles_width','','row_styles_width',''),(383,5,'row_styles_font-size','','row_styles_font-size',''),(384,5,'row_styles_margin','','row_styles_margin',''),(385,5,'row_styles_padding','','row_styles_padding',''),(386,5,'row_styles_display','','row_styles_display',''),(387,5,'row_styles_show_advanced_css','0','row_styles_show_advanced_css','0'),(388,5,'row_styles_advanced','','row_styles_advanced',''),(389,5,'row-odd_styles_background-color','00FFFFFF','row-odd_styles_background-color','00FFFFFF'),(390,5,'row-odd_styles_border','','row-odd_styles_border',''),(391,5,'row-odd_styles_border-style','','row-odd_styles_border-style',''),(392,5,'row-odd_styles_border-color','','row-odd_styles_border-color',''),(393,5,'row-odd_styles_color','','row-odd_styles_color',''),(394,5,'row-odd_styles_height','','row-odd_styles_height',''),(395,5,'row-odd_styles_width','','row-odd_styles_width',''),(396,5,'row-odd_styles_font-size','','row-odd_styles_font-size',''),(397,5,'row-odd_styles_margin','','row-odd_styles_margin',''),(398,5,'row-odd_styles_padding','','row-odd_styles_padding',''),(399,5,'row-odd_styles_display','','row-odd_styles_display',''),(400,5,'row-odd_styles_show_advanced_css','0','row-odd_styles_show_advanced_css','0'),(401,5,'row-odd_styles_advanced','','row-odd_styles_advanced',''),(402,5,'success-msg_styles_background-color','#d8d8d8A6','success-msg_styles_background-color','#d8d8d8A6'),(403,5,'success-msg_styles_border','','success-msg_styles_border',''),(404,5,'success-msg_styles_border-style','','success-msg_styles_border-style',''),(405,5,'success-msg_styles_border-color','','success-msg_styles_border-color',''),(406,5,'success-msg_styles_color','#211865','success-msg_styles_color','#211865'),(407,5,'success-msg_styles_height','','success-msg_styles_height',''),(408,5,'success-msg_styles_width','','success-msg_styles_width',''),(409,5,'success-msg_styles_font-size','22px','success-msg_styles_font-size','22px'),(410,5,'success-msg_styles_margin','','success-msg_styles_margin',''),(411,5,'success-msg_styles_padding','','success-msg_styles_padding',''),(412,5,'success-msg_styles_display','','success-msg_styles_display',''),(413,5,'success-msg_styles_show_advanced_css','1','success-msg_styles_show_advanced_css','1'),(414,5,'success-msg_styles_advanced','font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\nmargin: auto;\nwidth: 50%;\nmargin-left: 350px;\npadding: 27px\n','success-msg_styles_advanced','font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\nmargin: auto;\nwidth: 50%;\nmargin-left: 350px;\npadding: 27px\n'),(415,5,'error_msg_styles_background-color','','error_msg_styles_background-color',''),(416,5,'error_msg_styles_border','','error_msg_styles_border',''),(417,5,'error_msg_styles_border-style','','error_msg_styles_border-style',''),(418,5,'error_msg_styles_border-color','','error_msg_styles_border-color',''),(419,5,'error_msg_styles_color','','error_msg_styles_color',''),(420,5,'error_msg_styles_height','','error_msg_styles_height',''),(421,5,'error_msg_styles_width','','error_msg_styles_width',''),(422,5,'error_msg_styles_font-size','','error_msg_styles_font-size',''),(423,5,'error_msg_styles_margin','','error_msg_styles_margin',''),(424,5,'error_msg_styles_padding','','error_msg_styles_padding',''),(425,5,'error_msg_styles_display','','error_msg_styles_display',''),(426,5,'error_msg_styles_show_advanced_css','0','error_msg_styles_show_advanced_css','0'),(427,5,'error_msg_styles_advanced','','error_msg_styles_advanced',''),(428,5,'seq_num',NULL,'seq_num',NULL),(429,5,'allow_public_link','0','allow_public_link','0'),(430,5,'embed_form','','embed_form',''),(431,5,'currency','','currency',''),(432,5,'unique_field_error','A form with this value has already been submitted.','unique_field_error','A form with this value has already been submitted.'),(433,5,'mp_breadcrumb','1','mp_breadcrumb','1'),(434,5,'mp_progress_bar','1','mp_progress_bar','1'),(435,5,'mp_display_titles','0','mp_display_titles','0'),(436,5,'breadcrumb_container_styles_show_advanced_css','0','breadcrumb_container_styles_show_advanced_css','0'),(437,5,'breadcrumb_buttons_styles_show_advanced_css','0','breadcrumb_buttons_styles_show_advanced_css','0'),(438,5,'breadcrumb_button_hover_styles_show_advanced_css','0','breadcrumb_button_hover_styles_show_advanced_css','0'),(439,5,'breadcrumb_active_button_styles_show_advanced_css','0','breadcrumb_active_button_styles_show_advanced_css','0'),(440,5,'progress_bar_container_styles_show_advanced_css','0','progress_bar_container_styles_show_advanced_css','0'),(441,5,'progress_bar_fill_styles_show_advanced_css','0','progress_bar_fill_styles_show_advanced_css','0'),(442,5,'part_titles_styles_show_advanced_css','0','part_titles_styles_show_advanced_css','0'),(443,5,'navigation_container_styles_show_advanced_css','0','navigation_container_styles_show_advanced_css','0'),(444,5,'previous_button_styles_show_advanced_css','0','previous_button_styles_show_advanced_css','0'),(445,5,'next_button_styles_show_advanced_css','0','next_button_styles_show_advanced_css','0'),(446,5,'navigation_hover_styles_show_advanced_css','0','navigation_hover_styles_show_advanced_css','0'),(546,5,'changeEmailErrorMsg','','changeEmailErrorMsg',''),(547,5,'changeDateErrorMsg','','changeDateErrorMsg',''),(548,5,'confirmFieldErrorMsg','','confirmFieldErrorMsg',''),(549,5,'fieldNumberNumMinError','','fieldNumberNumMinError',''),(550,5,'fieldNumberNumMaxError','','fieldNumberNumMaxError',''),(551,5,'fieldNumberIncrementBy','','fieldNumberIncrementBy',''),(552,5,'formErrorsCorrectErrors','','formErrorsCorrectErrors',''),(553,5,'validateRequiredField','','validateRequiredField',''),(554,5,'honeypotHoneypotError','','honeypotHoneypotError',''),(555,5,'fieldsMarkedRequired','','fieldsMarkedRequired',''),(556,5,'drawerDisabled','','drawerDisabled',''),(557,5,'_seq_num','18','_seq_num','18'),(558,1,'conditions','a:0:{}','conditions','a:0:{}'),(559,1,'mp_breadcrumb','1','mp_breadcrumb','1'),(560,1,'mp_progress_bar','1','mp_progress_bar','1'),(561,1,'mp_display_titles','0','mp_display_titles','0'),(562,1,'breadcrumb_container_styles_show_advanced_css','0','breadcrumb_container_styles_show_advanced_css','0'),(563,1,'breadcrumb_buttons_styles_show_advanced_css','0','breadcrumb_buttons_styles_show_advanced_css','0'),(564,1,'breadcrumb_button_hover_styles_show_advanced_css','0','breadcrumb_button_hover_styles_show_advanced_css','0'),(565,1,'breadcrumb_active_button_styles_show_advanced_css','0','breadcrumb_active_button_styles_show_advanced_css','0'),(566,1,'progress_bar_container_styles_show_advanced_css','0','progress_bar_container_styles_show_advanced_css','0'),(567,1,'progress_bar_fill_styles_show_advanced_css','0','progress_bar_fill_styles_show_advanced_css','0'),(568,1,'part_titles_styles_show_advanced_css','0','part_titles_styles_show_advanced_css','0'),(569,1,'navigation_container_styles_show_advanced_css','0','navigation_container_styles_show_advanced_css','0'),(570,1,'previous_button_styles_show_advanced_css','0','previous_button_styles_show_advanced_css','0'),(571,1,'next_button_styles_show_advanced_css','0','next_button_styles_show_advanced_css','0'),(572,1,'navigation_hover_styles_show_advanced_css','0','navigation_hover_styles_show_advanced_css','0'),(573,1,'container_styles_border','','container_styles_border',''),(574,1,'container_styles_height','','container_styles_height',''),(575,1,'container_styles_margin','','container_styles_margin',''),(576,1,'container_styles_padding','','container_styles_padding',''),(577,1,'container_styles_float','','container_styles_float',''),(578,1,'title_styles_border','','title_styles_border',''),(579,1,'title_styles_height','','title_styles_height',''),(580,1,'title_styles_width','','title_styles_width',''),(581,1,'title_styles_font-size','','title_styles_font-size',''),(582,1,'title_styles_margin','','title_styles_margin',''),(583,1,'title_styles_padding','','title_styles_padding',''),(584,1,'title_styles_float','','title_styles_float',''),(585,1,'row_styles_border','','row_styles_border',''),(586,1,'row_styles_width','','row_styles_width',''),(587,1,'row_styles_font-size','','row_styles_font-size',''),(588,1,'row_styles_margin','','row_styles_margin',''),(589,1,'row_styles_padding','','row_styles_padding',''),(590,1,'row-odd_styles_border','','row-odd_styles_border',''),(591,1,'row-odd_styles_height','','row-odd_styles_height',''),(592,1,'row-odd_styles_width','','row-odd_styles_width',''),(593,1,'row-odd_styles_font-size','','row-odd_styles_font-size',''),(594,1,'row-odd_styles_margin','','row-odd_styles_margin',''),(595,1,'row-odd_styles_padding','','row-odd_styles_padding',''),(596,1,'success-msg_styles_background-color','#d8d8d8A6','success-msg_styles_background-color','#d8d8d8A6'),(597,1,'success-msg_styles_border','','success-msg_styles_border',''),(598,1,'success-msg_styles_color','#211865','success-msg_styles_color','#211865'),(599,1,'success-msg_styles_height','','success-msg_styles_height',''),(600,1,'success-msg_styles_width','','success-msg_styles_width',''),(601,1,'success-msg_styles_font-size','22px','success-msg_styles_font-size','22px'),(602,1,'success-msg_styles_margin','','success-msg_styles_margin',''),(603,1,'success-msg_styles_padding','','success-msg_styles_padding',''),(604,1,'success-msg_styles_advanced','font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\nmargin: auto;\nwidth: 50%;\nmargin-left: 350px;\npadding: 27px\n','success-msg_styles_advanced','font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\nmargin: auto;\nwidth: 50%;\nmargin-left: 350px;\npadding: 27px\n'),(605,1,'error_msg_styles_border','','error_msg_styles_border',''),(606,1,'error_msg_styles_width','','error_msg_styles_width',''),(607,1,'error_msg_styles_font-size','','error_msg_styles_font-size',''),(608,1,'error_msg_styles_margin','','error_msg_styles_margin',''),(609,1,'error_msg_styles_padding','','error_msg_styles_padding',''),(610,7,'objectType','Form Setting','objectType','Form Setting'),(611,7,'editActive','1','editActive','1'),(612,7,'title','Long Form',NULL,NULL),(613,7,'show_title','0','show_title','0'),(614,7,'clear_complete','1','clear_complete','1'),(615,7,'hide_complete','1','hide_complete','1'),(616,7,'default_label_pos','above','default_label_pos','above'),(617,7,'wrapper_class','fl-long-form','wrapper_class','fl-long-form'),(618,7,'element_class','','element_class',''),(619,7,'key','','key',''),(620,7,'add_submit','0','add_submit','0'),(621,7,'currency','','currency',''),(622,7,'unique_field_error','A form with this value has already been submitted.','unique_field_error','A form with this value has already been submitted.'),(623,7,'logged_in','0','logged_in','0'),(624,7,'not_logged_in_msg','','not_logged_in_msg',''),(625,7,'sub_limit_msg','The form has reached its submission limit.','sub_limit_msg','The form has reached its submission limit.'),(626,7,'calculations','a:0:{}','calculations','a:0:{}'),(627,7,'container_styles_show_advanced_css','0','container_styles_show_advanced_css','0'),(628,7,'title_styles_show_advanced_css','0','title_styles_show_advanced_css','0'),(629,7,'row_styles_show_advanced_css','0','row_styles_show_advanced_css','0'),(630,7,'row-odd_styles_show_advanced_css','0','row-odd_styles_show_advanced_css','0'),(631,7,'success-msg_styles_show_advanced_css','1','success-msg_styles_show_advanced_css','1'),(632,7,'error_msg_styles_show_advanced_css','0','error_msg_styles_show_advanced_css','0'),(633,7,'formContentData','a:1:{i:0;a:6:{s:15:\"formContentData\";a:12:{i:0;a:2:{s:5:\"order\";i:1;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:34:\"personal_information_1534954814742\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";i:2;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"name_1534954806801\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:3;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"email_1534954365299\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";i:4;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"phone_1534954373936\";}s:5:\"width\";s:3:\"100\";}}}i:4;a:2:{s:5:\"order\";i:5;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:17:\"zip_1534954373399\";}s:5:\"width\";s:3:\"100\";}}}i:5;a:2:{s:5:\"order\";i:6;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:23:\"liststate_1534954369789\";}s:5:\"width\";s:3:\"100\";}}}i:6;a:2:{s:5:\"order\";i:7;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:33:\"contact_preferences_1534954782835\";}s:5:\"width\";s:3:\"100\";}}}i:7;a:2:{s:5:\"order\";i:8;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:48:\"how_would_you_like_to_be_contacted_1534954740097\";}s:5:\"width\";s:3:\"100\";}}}i:8;a:2:{s:5:\"order\";i:10;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:51:\"brief_description_of_your_legal_issue_1534954647282\";}s:5:\"width\";s:3:\"100\";}}}i:9;a:2:{s:5:\"order\";i:11;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:28:\"privacy_policy_1534954542111\";}s:5:\"width\";s:3:\"100\";}}}i:10;a:2:{s:5:\"order\";i:12;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:40:\"i_have_read_the_disclaimer_1534954562191\";}s:5:\"width\";s:3:\"100\";}}}i:11;a:2:{s:5:\"order\";i:13;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:20:\"submit_1663177781078\";}s:5:\"width\";s:3:\"100\";}}}}s:5:\"order\";i:0;s:4:\"type\";s:4:\"part\";s:5:\"clean\";b:1;s:5:\"title\";s:10:\"Part Title\";s:3:\"key\";s:7:\"znhzdws\";}}','formContentData','a:1:{i:0;a:6:{s:15:\"formContentData\";a:12:{i:0;a:2:{s:5:\"order\";i:1;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:34:\"personal_information_1534954814742\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";i:2;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"name_1534954806801\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:3;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"email_1534954365299\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";i:4;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"phone_1534954373936\";}s:5:\"width\";s:3:\"100\";}}}i:4;a:2:{s:5:\"order\";i:5;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:17:\"zip_1534954373399\";}s:5:\"width\";s:3:\"100\";}}}i:5;a:2:{s:5:\"order\";i:6;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:23:\"liststate_1534954369789\";}s:5:\"width\";s:3:\"100\";}}}i:6;a:2:{s:5:\"order\";i:7;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:33:\"contact_preferences_1534954782835\";}s:5:\"width\";s:3:\"100\";}}}i:7;a:2:{s:5:\"order\";i:8;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:48:\"how_would_you_like_to_be_contacted_1534954740097\";}s:5:\"width\";s:3:\"100\";}}}i:8;a:2:{s:5:\"order\";i:10;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:51:\"brief_description_of_your_legal_issue_1534954647282\";}s:5:\"width\";s:3:\"100\";}}}i:9;a:2:{s:5:\"order\";i:11;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:28:\"privacy_policy_1534954542111\";}s:5:\"width\";s:3:\"100\";}}}i:10;a:2:{s:5:\"order\";i:12;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:40:\"i_have_read_the_disclaimer_1534954562191\";}s:5:\"width\";s:3:\"100\";}}}i:11;a:2:{s:5:\"order\";i:13;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:20:\"submit_1663177781078\";}s:5:\"width\";s:3:\"100\";}}}}s:5:\"order\";i:0;s:4:\"type\";s:4:\"part\";s:5:\"clean\";b:1;s:5:\"title\";s:10:\"Part Title\";s:3:\"key\";s:7:\"znhzdws\";}}'),(634,7,'changeEmailErrorMsg','','changeEmailErrorMsg',''),(635,7,'changeDateErrorMsg','','changeDateErrorMsg',''),(636,7,'confirmFieldErrorMsg','','confirmFieldErrorMsg',''),(637,7,'fieldNumberNumMinError','','fieldNumberNumMinError',''),(638,7,'fieldNumberNumMaxError','','fieldNumberNumMaxError',''),(639,7,'fieldNumberIncrementBy','','fieldNumberIncrementBy',''),(640,7,'formErrorsCorrectErrors','','formErrorsCorrectErrors',''),(641,7,'validateRequiredField','','validateRequiredField',''),(642,7,'honeypotHoneypotError','','honeypotHoneypotError',''),(643,7,'fieldsMarkedRequired','','fieldsMarkedRequired',''),(644,7,'drawerDisabled','','drawerDisabled',''),(645,7,'created_at','2022-09-14 11:40:30','created_at','2022-09-14 11:40:30'),(646,7,'seq_num',NULL,'seq_num',NULL),(647,7,'repeatable_fieldsets','','repeatable_fieldsets',''),(648,7,'conditions','a:0:{}','conditions','a:0:{}'),(649,7,'mp_breadcrumb','1','mp_breadcrumb','1'),(650,7,'mp_progress_bar','1','mp_progress_bar','1'),(651,7,'mp_display_titles','0','mp_display_titles','0'),(652,7,'breadcrumb_container_styles_show_advanced_css','0','breadcrumb_container_styles_show_advanced_css','0'),(653,7,'breadcrumb_buttons_styles_show_advanced_css','0','breadcrumb_buttons_styles_show_advanced_css','0'),(654,7,'breadcrumb_button_hover_styles_show_advanced_css','0','breadcrumb_button_hover_styles_show_advanced_css','0'),(655,7,'breadcrumb_active_button_styles_show_advanced_css','0','breadcrumb_active_button_styles_show_advanced_css','0'),(656,7,'progress_bar_container_styles_show_advanced_css','0','progress_bar_container_styles_show_advanced_css','0'),(657,7,'progress_bar_fill_styles_show_advanced_css','0','progress_bar_fill_styles_show_advanced_css','0'),(658,7,'part_titles_styles_show_advanced_css','0','part_titles_styles_show_advanced_css','0'),(659,7,'navigation_container_styles_show_advanced_css','0','navigation_container_styles_show_advanced_css','0'),(660,7,'previous_button_styles_show_advanced_css','0','previous_button_styles_show_advanced_css','0'),(661,7,'next_button_styles_show_advanced_css','0','next_button_styles_show_advanced_css','0'),(662,7,'navigation_hover_styles_show_advanced_css','0','navigation_hover_styles_show_advanced_css','0'),(663,7,'container_styles_border','','container_styles_border',''),(664,7,'container_styles_height','','container_styles_height',''),(665,7,'container_styles_margin','','container_styles_margin',''),(666,7,'container_styles_padding','','container_styles_padding',''),(667,7,'container_styles_float','','container_styles_float',''),(668,7,'title_styles_border','','title_styles_border',''),(669,7,'title_styles_height','','title_styles_height',''),(670,7,'title_styles_width','','title_styles_width',''),(671,7,'title_styles_font-size','','title_styles_font-size',''),(672,7,'title_styles_margin','','title_styles_margin',''),(673,7,'title_styles_padding','','title_styles_padding',''),(674,7,'title_styles_float','','title_styles_float',''),(675,7,'row_styles_border','','row_styles_border',''),(676,7,'row_styles_width','','row_styles_width',''),(677,7,'row_styles_font-size','','row_styles_font-size',''),(678,7,'row_styles_margin','','row_styles_margin',''),(679,7,'row_styles_padding','','row_styles_padding',''),(680,7,'row-odd_styles_border','','row-odd_styles_border',''),(681,7,'row-odd_styles_height','','row-odd_styles_height',''),(682,7,'row-odd_styles_width','','row-odd_styles_width',''),(683,7,'row-odd_styles_font-size','','row-odd_styles_font-size',''),(684,7,'row-odd_styles_margin','','row-odd_styles_margin',''),(685,7,'row-odd_styles_padding','','row-odd_styles_padding',''),(686,7,'success-msg_styles_background-color','#d8d8d8A6','success-msg_styles_background-color','#d8d8d8A6'),(687,7,'success-msg_styles_border','','success-msg_styles_border',''),(688,7,'success-msg_styles_color','#211865','success-msg_styles_color','#211865'),(689,7,'success-msg_styles_height','','success-msg_styles_height',''),(690,7,'success-msg_styles_width','','success-msg_styles_width',''),(691,7,'success-msg_styles_font-size','22px','success-msg_styles_font-size','22px'),(692,7,'success-msg_styles_margin','','success-msg_styles_margin',''),(693,7,'success-msg_styles_padding','','success-msg_styles_padding',''),(694,7,'success-msg_styles_advanced','font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;','success-msg_styles_advanced','font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;'),(695,7,'error_msg_styles_border','','error_msg_styles_border',''),(696,7,'error_msg_styles_width','','error_msg_styles_width',''),(697,7,'error_msg_styles_font-size','','error_msg_styles_font-size',''),(698,7,'error_msg_styles_margin','','error_msg_styles_margin',''),(699,7,'error_msg_styles_padding','','error_msg_styles_padding',''),(737,7,'allow_public_link','0','allow_public_link','0'),(738,7,'embed_form','','embed_form',''),(739,8,'title','Contact Me',NULL,NULL),(740,8,'key','','key',''),(741,8,'created_at','2022-09-19 13:56:01','created_at','2022-09-19 13:56:01'),(742,8,'default_label_pos','hidden','default_label_pos','hidden'),(743,8,'conditions','a:0:{}','conditions','a:0:{}'),(744,8,'objectType','Form Setting','objectType','Form Setting'),(745,8,'editActive','1','editActive','1'),(746,8,'show_title','0','show_title','0'),(747,8,'clear_complete','1','clear_complete','1'),(748,8,'hide_complete','1','hide_complete','1'),(749,8,'wrapper_class','lm-ignore-checkbox','wrapper_class','lm-ignore-checkbox'),(750,8,'element_class','','element_class',''),(751,8,'add_submit','1','add_submit','1'),(752,8,'logged_in','0','logged_in','0'),(753,8,'not_logged_in_msg','','not_logged_in_msg',''),(754,8,'sub_limit_number','','sub_limit_number',''),(755,8,'sub_limit_msg','','sub_limit_msg',''),(756,8,'calculations','a:0:{}','calculations','a:0:{}'),(757,8,'formContentData','a:1:{i:0;a:8:{s:15:\"formContentData\";a:3:{i:0;a:2:{s:5:\"order\";i:0;s:5:\"cells\";a:3:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:4:\"name\";}s:5:\"width\";i:33;}i:1;a:3:{s:5:\"order\";i:1;s:6:\"fields\";a:1:{i:0;s:5:\"email\";}s:5:\"width\";i:33;}i:2;a:3:{s:5:\"order\";i:2;s:6:\"fields\";a:1:{i:0;s:26:\"phone_number_1662652113554\";}s:5:\"width\";i:33;}}}i:1;a:2:{s:5:\"order\";i:2;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:7:\"message\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:3;s:5:\"cells\";a:3:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"html_1662651382914\";}s:5:\"width\";i:33;}i:1;a:3:{s:5:\"order\";i:1;s:6:\"fields\";a:1:{i:0;s:26:\"listcheckbox_1662663562280\";}s:5:\"width\";i:33;}i:2;a:3:{s:5:\"order\";i:2;s:6:\"fields\";a:1:{i:0;s:6:\"submit\";}s:5:\"width\";i:33;}}}}s:5:\"order\";i:0;s:4:\"type\";s:4:\"part\";s:5:\"clean\";b:1;s:5:\"title\";s:10:\"Part Title\";s:3:\"key\";s:7:\"iyiqfgo\";s:10:\"editActive\";b:1;s:14:\"drawerDisabled\";b:0;}}','formContentData','a:1:{i:0;a:8:{s:15:\"formContentData\";a:3:{i:0;a:2:{s:5:\"order\";i:0;s:5:\"cells\";a:3:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:4:\"name\";}s:5:\"width\";i:33;}i:1;a:3:{s:5:\"order\";i:1;s:6:\"fields\";a:1:{i:0;s:5:\"email\";}s:5:\"width\";i:33;}i:2;a:3:{s:5:\"order\";i:2;s:6:\"fields\";a:1:{i:0;s:26:\"phone_number_1662652113554\";}s:5:\"width\";i:33;}}}i:1;a:2:{s:5:\"order\";i:2;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:7:\"message\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:3;s:5:\"cells\";a:3:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"html_1662651382914\";}s:5:\"width\";i:33;}i:1;a:3:{s:5:\"order\";i:1;s:6:\"fields\";a:1:{i:0;s:26:\"listcheckbox_1662663562280\";}s:5:\"width\";i:33;}i:2;a:3:{s:5:\"order\";i:2;s:6:\"fields\";a:1:{i:0;s:6:\"submit\";}s:5:\"width\";i:33;}}}}s:5:\"order\";i:0;s:4:\"type\";s:4:\"part\";s:5:\"clean\";b:1;s:5:\"title\";s:10:\"Part Title\";s:3:\"key\";s:7:\"iyiqfgo\";s:10:\"editActive\";b:1;s:14:\"drawerDisabled\";b:0;}}'),(758,8,'container_styles_background-color','','container_styles_background-color',''),(759,8,'container_styles_border','','container_styles_border',''),(760,8,'container_styles_border-style','','container_styles_border-style',''),(761,8,'container_styles_border-color','','container_styles_border-color',''),(762,8,'container_styles_color','','container_styles_color',''),(763,8,'container_styles_height','','container_styles_height',''),(764,8,'container_styles_width','','container_styles_width',''),(765,8,'container_styles_font-size','','container_styles_font-size',''),(766,8,'container_styles_margin','','container_styles_margin',''),(767,8,'container_styles_padding','','container_styles_padding',''),(768,8,'container_styles_display','','container_styles_display',''),(769,8,'container_styles_float','','container_styles_float',''),(770,8,'container_styles_show_advanced_css','1','container_styles_show_advanced_css','1'),(771,8,'container_styles_advanced','width: 50%!important','container_styles_advanced','width: 50%!important'),(772,8,'title_styles_background-color','','title_styles_background-color',''),(773,8,'title_styles_border','','title_styles_border',''),(774,8,'title_styles_border-style','','title_styles_border-style',''),(775,8,'title_styles_border-color','','title_styles_border-color',''),(776,8,'title_styles_color','','title_styles_color',''),(777,8,'title_styles_height','','title_styles_height',''),(778,8,'title_styles_width','','title_styles_width',''),(779,8,'title_styles_font-size','','title_styles_font-size',''),(780,8,'title_styles_margin','','title_styles_margin',''),(781,8,'title_styles_padding','','title_styles_padding',''),(782,8,'title_styles_display','','title_styles_display',''),(783,8,'title_styles_float','','title_styles_float',''),(784,8,'title_styles_show_advanced_css','0','title_styles_show_advanced_css','0'),(785,8,'title_styles_advanced','','title_styles_advanced',''),(786,8,'row_styles_background-color','','row_styles_background-color',''),(787,8,'row_styles_border','','row_styles_border',''),(788,8,'row_styles_border-style','','row_styles_border-style',''),(789,8,'row_styles_border-color','','row_styles_border-color',''),(790,8,'row_styles_color','','row_styles_color',''),(791,8,'row_styles_height','','row_styles_height',''),(792,8,'row_styles_width','','row_styles_width',''),(793,8,'row_styles_font-size','','row_styles_font-size',''),(794,8,'row_styles_margin','','row_styles_margin',''),(795,8,'row_styles_padding','','row_styles_padding',''),(796,8,'row_styles_display','','row_styles_display',''),(797,8,'row_styles_show_advanced_css','0','row_styles_show_advanced_css','0'),(798,8,'row_styles_advanced','','row_styles_advanced',''),(799,8,'row-odd_styles_background-color','00FFFFFF','row-odd_styles_background-color','00FFFFFF'),(800,8,'row-odd_styles_border','','row-odd_styles_border',''),(801,8,'row-odd_styles_border-style','','row-odd_styles_border-style',''),(802,8,'row-odd_styles_border-color','','row-odd_styles_border-color',''),(803,8,'row-odd_styles_color','','row-odd_styles_color',''),(804,8,'row-odd_styles_height','','row-odd_styles_height',''),(805,8,'row-odd_styles_width','','row-odd_styles_width',''),(806,8,'row-odd_styles_font-size','','row-odd_styles_font-size',''),(807,8,'row-odd_styles_margin','','row-odd_styles_margin',''),(808,8,'row-odd_styles_padding','','row-odd_styles_padding',''),(809,8,'row-odd_styles_display','','row-odd_styles_display',''),(810,8,'row-odd_styles_show_advanced_css','0','row-odd_styles_show_advanced_css','0'),(811,8,'row-odd_styles_advanced','','row-odd_styles_advanced',''),(812,8,'success-msg_styles_background-color','#d8d8d8A6','success-msg_styles_background-color','#d8d8d8A6'),(813,8,'success-msg_styles_border','','success-msg_styles_border',''),(814,8,'success-msg_styles_border-style','','success-msg_styles_border-style',''),(815,8,'success-msg_styles_border-color','','success-msg_styles_border-color',''),(816,8,'success-msg_styles_color','#211865','success-msg_styles_color','#211865'),(817,8,'success-msg_styles_height','','success-msg_styles_height',''),(818,8,'success-msg_styles_width','','success-msg_styles_width',''),(819,8,'success-msg_styles_font-size','22px','success-msg_styles_font-size','22px'),(820,8,'success-msg_styles_margin','','success-msg_styles_margin',''),(821,8,'success-msg_styles_padding','','success-msg_styles_padding',''),(822,8,'success-msg_styles_display','','success-msg_styles_display',''),(823,8,'success-msg_styles_show_advanced_css','1','success-msg_styles_show_advanced_css','1'),(824,8,'success-msg_styles_advanced','font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\nmargin: auto;\nwidth: 50%;\nmargin-left: 350px;\npadding: 27px\n','success-msg_styles_advanced','font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\nmargin: auto;\nwidth: 50%;\nmargin-left: 350px;\npadding: 27px\n'),(825,8,'error_msg_styles_background-color','','error_msg_styles_background-color',''),(826,8,'error_msg_styles_border','','error_msg_styles_border',''),(827,8,'error_msg_styles_border-style','','error_msg_styles_border-style',''),(828,8,'error_msg_styles_border-color','','error_msg_styles_border-color',''),(829,8,'error_msg_styles_color','','error_msg_styles_color',''),(830,8,'error_msg_styles_height','','error_msg_styles_height',''),(831,8,'error_msg_styles_width','','error_msg_styles_width',''),(832,8,'error_msg_styles_font-size','','error_msg_styles_font-size',''),(833,8,'error_msg_styles_margin','','error_msg_styles_margin',''),(834,8,'error_msg_styles_padding','','error_msg_styles_padding',''),(835,8,'error_msg_styles_display','','error_msg_styles_display',''),(836,8,'error_msg_styles_show_advanced_css','0','error_msg_styles_show_advanced_css','0'),(837,8,'error_msg_styles_advanced','','error_msg_styles_advanced',''),(838,8,'seq_num',NULL,'seq_num',NULL),(839,8,'currency','','currency',''),(840,8,'unique_field_error','A form with this value has already been submitted.','unique_field_error','A form with this value has already been submitted.'),(841,8,'mp_breadcrumb','1','mp_breadcrumb','1'),(842,8,'mp_progress_bar','1','mp_progress_bar','1'),(843,8,'mp_display_titles','0','mp_display_titles','0'),(844,8,'breadcrumb_container_styles_show_advanced_css','0','breadcrumb_container_styles_show_advanced_css','0'),(845,8,'breadcrumb_buttons_styles_show_advanced_css','0','breadcrumb_buttons_styles_show_advanced_css','0'),(846,8,'breadcrumb_button_hover_styles_show_advanced_css','0','breadcrumb_button_hover_styles_show_advanced_css','0'),(847,8,'breadcrumb_active_button_styles_show_advanced_css','0','breadcrumb_active_button_styles_show_advanced_css','0'),(848,8,'progress_bar_container_styles_show_advanced_css','0','progress_bar_container_styles_show_advanced_css','0'),(849,8,'progress_bar_fill_styles_show_advanced_css','0','progress_bar_fill_styles_show_advanced_css','0'),(850,8,'part_titles_styles_show_advanced_css','0','part_titles_styles_show_advanced_css','0'),(851,8,'navigation_container_styles_show_advanced_css','0','navigation_container_styles_show_advanced_css','0'),(852,8,'previous_button_styles_show_advanced_css','0','previous_button_styles_show_advanced_css','0'),(853,8,'next_button_styles_show_advanced_css','0','next_button_styles_show_advanced_css','0'),(854,8,'navigation_hover_styles_show_advanced_css','0','navigation_hover_styles_show_advanced_css','0'),(855,8,'changeEmailErrorMsg','','changeEmailErrorMsg',''),(856,8,'changeDateErrorMsg','','changeDateErrorMsg',''),(857,8,'confirmFieldErrorMsg','','confirmFieldErrorMsg',''),(858,8,'fieldNumberNumMinError','','fieldNumberNumMinError',''),(859,8,'fieldNumberNumMaxError','','fieldNumberNumMaxError',''),(860,8,'fieldNumberIncrementBy','','fieldNumberIncrementBy',''),(861,8,'formErrorsCorrectErrors','','formErrorsCorrectErrors',''),(862,8,'validateRequiredField','','validateRequiredField',''),(863,8,'honeypotHoneypotError','','honeypotHoneypotError',''),(864,8,'fieldsMarkedRequired','','fieldsMarkedRequired',''),(865,8,'drawerDisabled','','drawerDisabled',''),(866,8,'allow_public_link','0','allow_public_link','0'),(867,8,'embed_form','','embed_form','');
/*!40000 ALTER TABLE `cuB_nf3_form_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_nf3_forms`
--

DROP TABLE IF EXISTS `cuB_nf3_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_nf3_forms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` longtext,
  `key` longtext,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  `views` int(11) DEFAULT NULL,
  `subs` int(11) DEFAULT NULL,
  `form_title` longtext,
  `default_label_pos` varchar(15) DEFAULT NULL,
  `show_title` bit(1) DEFAULT NULL,
  `clear_complete` bit(1) DEFAULT NULL,
  `hide_complete` bit(1) DEFAULT NULL,
  `logged_in` bit(1) DEFAULT NULL,
  `seq_num` int(11) DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_nf3_forms`
--

LOCK TABLES `cuB_nf3_forms` WRITE;
/*!40000 ALTER TABLE `cuB_nf3_forms` DISABLE KEYS */;
INSERT INTO `cuB_nf3_forms` VALUES (1,'Long Form',NULL,'2019-07-29 23:32:52',NULL,NULL,NULL,'Long Form','above',_binary '\0',_binary '',_binary '',_binary '\0',NULL),(2,'Short Form',NULL,'2019-07-29 23:33:01',NULL,NULL,NULL,'Short Form','hidden',_binary '\0',_binary '',_binary '',_binary '\0',NULL),(3,'Email This Attorney',NULL,'2019-03-09 01:06:57',NULL,NULL,NULL,'Email This Attorney','above',_binary '\0',_binary '',_binary '',_binary '\0',NULL),(4,'Landing Page Form',NULL,'2019-04-02 18:10:40',NULL,NULL,NULL,'Landing Page Form','above',_binary '\0',_binary '',_binary '',_binary '\0',NULL),(5,'Contact - Refer a Claim - new',NULL,'2016-08-24 22:39:20',NULL,NULL,NULL,'Contact - Refer a Claim - new','hidden',_binary '\0',_binary '',_binary '',_binary '\0',18),(7,'Long Form - mobile',NULL,'2022-09-14 17:40:30',NULL,NULL,NULL,'Long Form - mobile','above',_binary '\0',_binary '',_binary '',_binary '\0',NULL),(8,'Contact - Refer a Claim - Mobile',NULL,'2022-09-19 19:56:01',NULL,NULL,NULL,'Contact - Refer a Claim - Mobile','hidden',_binary '\0',_binary '',_binary '',_binary '\0',NULL);
/*!40000 ALTER TABLE `cuB_nf3_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_nf3_object_meta`
--

DROP TABLE IF EXISTS `cuB_nf3_object_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_nf3_object_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `key` longtext NOT NULL,
  `value` longtext,
  `meta_key` longtext,
  `meta_value` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_nf3_object_meta`
--

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

--
-- Table structure for table `cuB_nf3_objects`
--

DROP TABLE IF EXISTS `cuB_nf3_objects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_nf3_objects` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` longtext,
  `title` longtext,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  `object_title` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_nf3_objects`
--

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

--
-- Table structure for table `cuB_nf3_relationships`
--

DROP TABLE IF EXISTS `cuB_nf3_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_nf3_relationships` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `child_id` int(11) NOT NULL,
  `child_type` longtext NOT NULL,
  `parent_id` int(11) NOT NULL,
  `parent_type` longtext NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_nf3_relationships`
--

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

--
-- Table structure for table `cuB_nf3_upgrades`
--

DROP TABLE IF EXISTS `cuB_nf3_upgrades`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_nf3_upgrades` (
  `id` int(11) NOT NULL,
  `cache` longtext,
  `stage` int(11) NOT NULL DEFAULT '0',
  `maintenance` bit(1) DEFAULT b'0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_nf3_upgrades`
--

LOCK TABLES `cuB_nf3_upgrades` WRITE;
/*!40000 ALTER TABLE `cuB_nf3_upgrades` DISABLE KEYS */;
INSERT INTO `cuB_nf3_upgrades` VALUES (1,'a:7:{s:2:\"id\";i:1;s:20:\"show_publish_options\";b:0;s:6:\"fields\";a:12:{i:0;a:2:{s:8:\"settings\";a:35:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"1\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:20:\"Personal Information\";s:7:\"default\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4047\";s:3:\"key\";s:34:\"personal_information_1534954814742\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:20:\"Personal Information\";s:9:\"field_key\";s:34:\"personal_information_1534954814742\";}s:2:\"id\";i:1;}i:1;a:2:{s:8:\"settings\";a:44:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"2\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:9:\"firstname\";s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:18:\"name_1534954806801\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:11:\"contactName\";s:9:\"help_text\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"fname\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4051\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:4:\"Name\";s:9:\"field_key\";s:18:\"name_1534954806801\";s:5:\"value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"560px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"15\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:20:\"element_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:19:\"margin-left: 255px;\";}s:2:\"id\";i:2;}i:2;a:2:{s:8:\"settings\";a:44:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"3\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:5:\"email\";s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:19:\"email_1534954365299\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:16:\"emailFromAddress\";s:9:\"help_text\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"email\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4054\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:5:\"Email\";s:9:\"field_key\";s:19:\"email_1534954365299\";s:5:\"value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"560px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:19:\"margin-left: 255px;\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"15\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:20:\"element_styles_float\";s:0:\"\";}s:2:\"id\";i:3;}i:3;a:2:{s:8:\"settings\";a:50:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"4\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:5:\"phone\";s:5:\"label\";s:5:\"Phone\";s:3:\"key\";s:19:\"phone_1534954373936\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:12:\"contactPhone\";s:9:\"help_text\";s:0:\"\";s:4:\"mask\";s:14:\"(999) 999-9999\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"phone\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4057\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:5:\"Phone\";s:9:\"field_key\";s:19:\"phone_1534954373936\";s:5:\"value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"560px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:19:\"margin-left: 255px;\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"15\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:20:\"element_styles_float\";s:0:\"\";}s:2:\"id\";i:4;}i:4;a:2:{s:8:\"settings\";a:50:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"5\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:3:\"zip\";s:5:\"label\";s:3:\"Zip\";s:3:\"key\";s:17:\"zip_1534954373399\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:10:\"contactZip\";s:9:\"help_text\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:3:\"zip\";s:23:\"personally_identifiable\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4060\";s:11:\"field_label\";s:3:\"Zip\";s:9:\"field_key\";s:17:\"zip_1534954373399\";s:5:\"value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"560px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:19:\"margin-left: 255px;\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"15\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:20:\"element_styles_float\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:5;}i:5;a:2:{s:8:\"settings\";a:64:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"6\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:9:\"liststate\";s:5:\"label\";s:9:\"US States\";s:3:\"key\";s:23:\"liststate_1534954369789\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"options\";a:54:{i:0;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Alabama\";s:5:\"value\";s:2:\"AL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:1;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Alaska\";s:5:\"value\";s:2:\"AK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:2;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Arizona\";s:5:\"value\";s:2:\"AZ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:2;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:3;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Arkansas\";s:5:\"value\";s:2:\"AR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:3;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:4;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"California\";s:5:\"value\";s:2:\"CA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:4;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:5;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Colorado\";s:5:\"value\";s:2:\"CO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:5;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:6;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:11:\"Connecticut\";s:5:\"value\";s:2:\"CT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:6;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:7;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Delaware\";s:5:\"value\";s:2:\"DE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:7;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:8;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Florida\";s:5:\"value\";s:2:\"FL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:8;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:9;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Georgia\";s:5:\"value\";s:2:\"GA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:9;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:10;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Hawaii\";s:5:\"value\";s:2:\"HI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:10;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:11;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Idaho\";s:5:\"value\";s:2:\"ID\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:11;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:12;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Illinois\";s:5:\"value\";s:2:\"IL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:12;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:13;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Indiana\";s:5:\"value\";s:2:\"IN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:13;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:14;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Iowa\";s:5:\"value\";s:2:\"IA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:14;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:15;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Kansas\";s:5:\"value\";s:2:\"KS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:15;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:16;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Kentucky\";s:5:\"value\";s:2:\"KY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:16;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:17;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Louisiana\";s:5:\"value\";s:2:\"LA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:17;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:18;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Maine\";s:5:\"value\";s:2:\"ME\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:18;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:19;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Maryland\";s:5:\"value\";s:2:\"MD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:19;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:20;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"Massachusetts\";s:5:\"value\";s:2:\"MA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:20;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:21;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Michigan\";s:5:\"value\";s:2:\"MI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:21;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:22;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Minnesota\";s:5:\"value\";s:2:\"MN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:22;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:23;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:11:\"Mississippi\";s:5:\"value\";s:2:\"MS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:23;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:24;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Missouri\";s:5:\"value\";s:2:\"MO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:24;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:25;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Montana\";s:5:\"value\";s:2:\"MT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:25;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:26;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Nebraska\";s:5:\"value\";s:2:\"NE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:26;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:27;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Nevada\";s:5:\"value\";s:2:\"NV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:27;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:28;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"New Hampshire\";s:5:\"value\";s:2:\"NH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:28;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:29;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"New Jersey\";s:5:\"value\";s:2:\"NJ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:29;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:30;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"New Mexico\";s:5:\"value\";s:2:\"NM\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:30;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:31;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"New York\";s:5:\"value\";s:2:\"NY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:31;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:32;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:14:\"North Carolina\";s:5:\"value\";s:2:\"NC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:32;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:33;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"North Dakota\";s:5:\"value\";s:2:\"ND\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:33;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:34;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Ohio\";s:5:\"value\";s:2:\"OH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:34;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:35;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Oklahoma\";s:5:\"value\";s:2:\"OK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:35;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:36;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Oregon\";s:5:\"value\";s:2:\"OR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:36;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:37;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"Pennsylvania\";s:5:\"value\";s:2:\"PA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:37;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:38;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"Rhode Island\";s:5:\"value\";s:2:\"RI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:38;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:39;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:14:\"South Carolina\";s:5:\"value\";s:2:\"SC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:39;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:40;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"South Dakota\";s:5:\"value\";s:2:\"SD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:40;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:41;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Tennessee\";s:5:\"value\";s:2:\"TN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:41;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:42;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Texas\";s:5:\"value\";s:2:\"TX\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:42;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:43;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Utah\";s:5:\"value\";s:2:\"UT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:43;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:44;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Vermont\";s:5:\"value\";s:2:\"VT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:44;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:45;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Virginia\";s:5:\"value\";s:2:\"VA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:45;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:46;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"Washington\";s:5:\"value\";s:2:\"WA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:46;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:47;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"West Virginia\";s:5:\"value\";s:2:\"WV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:47;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:48;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Wisconsin\";s:5:\"value\";s:2:\"WI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:48;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:49;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Wyoming\";s:5:\"value\";s:2:\"WY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:49;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:50;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"Washington DC\";s:5:\"value\";s:2:\"DC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:50;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:51;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:51:\"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST\";s:5:\"value\";s:2:\"AE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:51;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:52;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:36:\"ARMED FORCES AMERICA (EXCEPT CANADA)\";s:5:\"value\";s:2:\"AA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:52;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:53;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:20:\"ARMED FORCES PACIFIC\";s:5:\"value\";s:2:\"AP\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:53;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}}s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:38:\"list_item_row_styles_show_advanced_css\";s:1:\"0\";s:40:\"list_item_label_styles_show_advanced_css\";s:1:\"0\";s:42:\"list_item_element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4063\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:9:\"US States\";s:9:\"field_key\";s:23:\"liststate_1534954369789\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"560px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"15\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:20:\"element_styles_float\";s:0:\"\";s:27:\"list_item_row_styles_border\";s:0:\"\";s:27:\"list_item_row_styles_height\";s:0:\"\";s:26:\"list_item_row_styles_width\";s:0:\"\";s:30:\"list_item_row_styles_font-size\";s:0:\"\";s:27:\"list_item_row_styles_margin\";s:0:\"\";s:28:\"list_item_row_styles_padding\";s:0:\"\";s:26:\"list_item_row_styles_float\";s:0:\"\";s:29:\"list_item_label_styles_border\";s:0:\"\";s:29:\"list_item_label_styles_height\";s:0:\"\";s:28:\"list_item_label_styles_width\";s:0:\"\";s:32:\"list_item_label_styles_font-size\";s:0:\"\";s:29:\"list_item_label_styles_margin\";s:0:\"\";s:30:\"list_item_label_styles_padding\";s:0:\"\";s:28:\"list_item_label_styles_float\";s:0:\"\";s:31:\"list_item_element_styles_border\";s:0:\"\";s:31:\"list_item_element_styles_height\";s:0:\"\";s:30:\"list_item_element_styles_width\";s:0:\"\";s:34:\"list_item_element_styles_font-size\";s:2:\"15\";s:31:\"list_item_element_styles_margin\";s:0:\"\";s:32:\"list_item_element_styles_padding\";s:5:\"8.5px\";s:30:\"list_item_element_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:19:\"margin-left: 255px;\";}s:2:\"id\";i:6;}i:6;a:2:{s:8:\"settings\";a:35:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"7\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:19:\"Contact Preferences\";s:7:\"default\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4066\";s:3:\"key\";s:33:\"contact_preferences_1534954782835\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:19:\"Contact Preferences\";s:9:\"field_key\";s:33:\"contact_preferences_1534954782835\";}s:2:\"id\";i:7;}i:7;a:2:{s:8:\"settings\";a:64:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"8\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:12:\"listcheckbox\";s:5:\"label\";s:35:\"How Would You Like To Be Contacted?\";s:3:\"key\";s:48:\"how_would_you_like_to_be_contacted_1534954740097\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"options\";a:2:{i:0;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Phone\";s:5:\"value\";s:5:\"phone\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";s:1:\"0\";s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:1;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Email\";s:5:\"value\";s:5:\"email\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";s:1:\"1\";s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}}s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:11:\"contactPref\";s:9:\"help_text\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:38:\"list_item_row_styles_show_advanced_css\";s:1:\"0\";s:40:\"list_item_label_styles_show_advanced_css\";s:1:\"0\";s:42:\"list_item_element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4069\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:35:\"How Would You Like To Be Contacted?\";s:9:\"field_key\";s:48:\"how_would_you_like_to_be_contacted_1534954740097\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"560px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:19:\"margin-left: 255px;\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:27:\"list_item_row_styles_border\";s:0:\"\";s:27:\"list_item_row_styles_height\";s:0:\"\";s:26:\"list_item_row_styles_width\";s:0:\"\";s:30:\"list_item_row_styles_font-size\";s:2:\"15\";s:27:\"list_item_row_styles_margin\";s:0:\"\";s:28:\"list_item_row_styles_padding\";s:5:\"8.5px\";s:26:\"list_item_row_styles_float\";s:0:\"\";s:29:\"list_item_label_styles_border\";s:0:\"\";s:29:\"list_item_label_styles_height\";s:0:\"\";s:28:\"list_item_label_styles_width\";s:0:\"\";s:32:\"list_item_label_styles_font-size\";s:0:\"\";s:29:\"list_item_label_styles_margin\";s:0:\"\";s:30:\"list_item_label_styles_padding\";s:0:\"\";s:28:\"list_item_label_styles_float\";s:0:\"\";s:31:\"list_item_element_styles_border\";s:0:\"\";s:31:\"list_item_element_styles_height\";s:0:\"\";s:30:\"list_item_element_styles_width\";s:0:\"\";s:34:\"list_item_element_styles_font-size\";s:2:\"15\";s:31:\"list_item_element_styles_margin\";s:0:\"\";s:32:\"list_item_element_styles_padding\";s:5:\"8.5px\";s:30:\"list_item_element_styles_float\";s:0:\"\";}s:2:\"id\";i:8;}i:8;a:2:{s:8:\"settings\";a:49:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:2:\"10\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:8:\"textarea\";s:5:\"label\";s:37:\"Brief Description of Your Legal Issue\";s:3:\"key\";s:51:\"brief_description_of_your_legal_issue_1534954647282\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:11:\"formComment\";s:9:\"help_text\";s:0:\"\";s:12:\"textarea_rte\";s:0:\"\";s:18:\"disable_rte_mobile\";s:0:\"\";s:14:\"textarea_media\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4072\";s:11:\"field_label\";s:37:\"Brief Description of Your Legal Issue\";s:9:\"field_key\";s:51:\"brief_description_of_your_legal_issue_1534954647282\";s:5:\"value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"560px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:19:\"margin-left: 255px;\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:4:\"12.5\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"7.5px\";s:20:\"element_styles_float\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:10;}i:9;a:2:{s:8:\"settings\";a:36:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:2:\"11\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:0:\"\";s:7:\"default\";s:899:\"<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a>&nbsp;</div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4075\";s:3:\"key\";s:28:\"privacy_policy_1534954542111\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:0:\"\";s:9:\"field_key\";s:28:\"privacy_policy_1534954542111\";s:20:\"wrap_styles_advanced\";s:19:\"margin-left: 255px;\";}s:2:\"id\";i:11;}i:10;a:2:{s:8:\"settings\";a:47:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:2:\"12\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:8:\"checkbox\";s:5:\"label\";s:26:\"I Have Read The Disclaimer\";s:3:\"key\";s:40:\"i_have_read_the_disclaimer_1534954562191\";s:9:\"label_pos\";s:5:\"right\";s:8:\"required\";s:1:\"1\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:14:\"readDisclaimer\";s:9:\"help_text\";s:0:\"\";s:13:\"default_value\";s:9:\"unchecked\";s:13:\"checked_value\";s:0:\"\";s:15:\"unchecked_value\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4078\";s:14:\"drawerDisabled\";b:0;s:7:\"default\";s:9:\"unchecked\";s:11:\"field_label\";s:26:\"I Have Read The Disclaimer\";s:9:\"field_key\";s:40:\"i_have_read_the_disclaimer_1534954562191\";s:5:\"value\";s:9:\"unchecked\";s:18:\"checked_calc_value\";s:0:\"\";s:20:\"unchecked_calc_value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"560px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:19:\"margin-left: 255px;\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";}s:2:\"id\";i:12;}i:11;a:2:{s:8:\"settings\";a:36:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:2:\"13\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:6:\"submit\";s:5:\"label\";s:4:\"Send\";s:16:\"processing_label\";s:10:\"Processing\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:3:\"key\";s:18:\"send_1562680674669\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:45:\"submit_element_hover_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4081\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:4:\"Send\";s:9:\"field_key\";s:18:\"send_1562680674669\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:19:\"margin-left: 255px;\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:34:\"submit_element_hover_styles_border\";s:0:\"\";s:33:\"submit_element_hover_styles_width\";s:0:\"\";s:37:\"submit_element_hover_styles_font-size\";s:0:\"\";s:34:\"submit_element_hover_styles_margin\";s:0:\"\";s:35:\"submit_element_hover_styles_padding\";s:0:\"\";s:33:\"submit_element_hover_styles_float\";s:0:\"\";}s:2:\"id\";i:13;}}s:7:\"actions\";a:4:{i:0;a:2:{s:8:\"settings\";a:26:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-09-14 08:57:34\";s:5:\"label\";s:17:\"Record Submission\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:2:\"to\";s:16:\"{wp:admin_email}\";s:8:\"reply_to\";s:0:\"\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:19:\"email_message_plain\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:11:\"success_msg\";s:42:\"Your form has been successfully submitted.\";s:12:\"redirect_url\";s:0:\"\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";s:1:\"0\";s:16:\"subs_expire_time\";s:2:\"90\";s:14:\"drawerDisabled\";s:0:\"\";}s:2:\"id\";i:18;}i:1;a:2:{s:8:\"settings\";a:19:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-09-14 09:02:39\";s:5:\"label\";s:18:\"Email Confirmation\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:2:\"to\";s:27:\"{field:email_1534954365299}\";s:8:\"reply_to\";s:0:\"\";s:13:\"email_subject\";s:50:\"Your message to The Law Offices of Melissa A. Day \";s:13:\"email_message\";s:154:\"<p>Your message to The Law Offices of Melissa A. Day has been submitted and sent. A member of our team will be in touch soon!</p><p>{all_fields_table}</p>\";s:19:\"email_message_plain\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:19;}i:2;a:2:{s:8:\"settings\";a:19:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-09-14 09:02:39\";s:5:\"label\";s:18:\"Email Notification\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:2:\"to\";s:21:\"mail@madwcdefense.com\";s:8:\"reply_to\";s:0:\"\";s:13:\"email_subject\";s:30:\"New message from {field:name} \";s:13:\"email_message\";s:150:\"<p>A message has been received via the \"Contact/Refer a Claim\" form on the firm website. See the details below.&nbsp;</p><p>{all_fields_table}<br></p>\";s:19:\"email_message_plain\";s:0:\"\";s:9:\"from_name\";s:46:\"{field:name_1534954806801} (via LOMAD Website)\";s:12:\"from_address\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:25:\"hearings@madwcdefense.com\";s:3:\"bcc\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:20;}i:3;a:2:{s:8:\"settings\";a:20:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-09-14 09:02:39\";s:5:\"label\";s:15:\"Success Message\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:2:\"to\";s:16:\"{wp:admin_email}\";s:8:\"reply_to\";s:0:\"\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:19:\"email_message_plain\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:11:\"success_msg\";s:379:\"<p style=\"text-align: center;\">Your message to The Law Offices of Melissa A. Day has been successfully submitted.</p><p style=\"text-align: center;\">A confirmation email was sent to {field:email_1534954365299}. Please check your junk/spam folder for the confirmation.</p><p style=\"text-align: center;\">Thank you for your submission! A member of our team will contact you soon.</p>\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:21;}}s:8:\"settings\";a:92:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";b:1;s:5:\"title\";s:9:\"Long Form\";s:10:\"created_at\";s:19:\"2019-07-29 17:32:52\";s:10:\"form_title\";s:9:\"Long Form\";s:17:\"default_label_pos\";s:5:\"above\";s:10:\"show_title\";s:1:\"0\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:9:\"logged_in\";s:1:\"0\";s:13:\"wrapper_class\";s:12:\"fl-long-form\";s:13:\"element_class\";s:0:\"\";s:3:\"key\";s:0:\"\";s:10:\"add_submit\";s:1:\"0\";s:8:\"currency\";s:0:\"\";s:18:\"unique_field_error\";s:50:\"A form with this value has already been submitted.\";s:17:\"not_logged_in_msg\";s:0:\"\";s:13:\"sub_limit_msg\";s:42:\"The form has reached its submission limit.\";s:12:\"calculations\";a:0:{}s:34:\"container_styles_show_advanced_css\";s:1:\"0\";s:30:\"title_styles_show_advanced_css\";s:1:\"0\";s:28:\"row_styles_show_advanced_css\";s:1:\"0\";s:32:\"row-odd_styles_show_advanced_css\";s:1:\"0\";s:36:\"success-msg_styles_show_advanced_css\";i:1;s:34:\"error_msg_styles_show_advanced_css\";s:1:\"0\";s:15:\"formContentData\";a:1:{i:0;a:6:{s:15:\"formContentData\";a:12:{i:0;a:2:{s:5:\"order\";i:1;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:34:\"personal_information_1534954814742\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";i:2;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"name_1534954806801\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:3;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"email_1534954365299\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";i:4;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"phone_1534954373936\";}s:5:\"width\";s:3:\"100\";}}}i:4;a:2:{s:5:\"order\";i:5;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:17:\"zip_1534954373399\";}s:5:\"width\";s:3:\"100\";}}}i:5;a:2:{s:5:\"order\";i:6;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:23:\"liststate_1534954369789\";}s:5:\"width\";s:3:\"100\";}}}i:6;a:2:{s:5:\"order\";i:7;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:33:\"contact_preferences_1534954782835\";}s:5:\"width\";s:3:\"100\";}}}i:7;a:2:{s:5:\"order\";i:8;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:48:\"how_would_you_like_to_be_contacted_1534954740097\";}s:5:\"width\";s:3:\"100\";}}}i:8;a:2:{s:5:\"order\";i:10;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:51:\"brief_description_of_your_legal_issue_1534954647282\";}s:5:\"width\";s:3:\"100\";}}}i:9;a:2:{s:5:\"order\";i:11;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:28:\"privacy_policy_1534954542111\";}s:5:\"width\";s:3:\"100\";}}}i:10;a:2:{s:5:\"order\";i:12;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:40:\"i_have_read_the_disclaimer_1534954562191\";}s:5:\"width\";s:3:\"100\";}}}i:11;a:2:{s:5:\"order\";i:13;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"send_1562680674669\";}s:5:\"width\";s:3:\"100\";}}}}s:5:\"order\";i:0;s:4:\"type\";s:4:\"part\";s:5:\"clean\";b:1;s:5:\"title\";s:10:\"Part Title\";s:3:\"key\";s:7:\"znhzdws\";}}s:19:\"changeEmailErrorMsg\";s:0:\"\";s:18:\"changeDateErrorMsg\";s:0:\"\";s:20:\"confirmFieldErrorMsg\";s:0:\"\";s:22:\"fieldNumberNumMinError\";s:0:\"\";s:22:\"fieldNumberNumMaxError\";s:0:\"\";s:22:\"fieldNumberIncrementBy\";s:0:\"\";s:23:\"formErrorsCorrectErrors\";s:0:\"\";s:21:\"validateRequiredField\";s:0:\"\";s:21:\"honeypotHoneypotError\";s:0:\"\";s:20:\"fieldsMarkedRequired\";s:0:\"\";s:14:\"drawerDisabled\";b:0;s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";s:20:\"repeatable_fieldsets\";s:0:\"\";s:10:\"conditions\";a:0:{}s:13:\"mp_breadcrumb\";i:1;s:15:\"mp_progress_bar\";i:1;s:17:\"mp_display_titles\";i:0;s:45:\"breadcrumb_container_styles_show_advanced_css\";i:0;s:43:\"breadcrumb_buttons_styles_show_advanced_css\";i:0;s:48:\"breadcrumb_button_hover_styles_show_advanced_css\";i:0;s:49:\"breadcrumb_active_button_styles_show_advanced_css\";i:0;s:47:\"progress_bar_container_styles_show_advanced_css\";i:0;s:42:\"progress_bar_fill_styles_show_advanced_css\";i:0;s:36:\"part_titles_styles_show_advanced_css\";i:0;s:45:\"navigation_container_styles_show_advanced_css\";i:0;s:40:\"previous_button_styles_show_advanced_css\";i:0;s:36:\"next_button_styles_show_advanced_css\";i:0;s:41:\"navigation_hover_styles_show_advanced_css\";i:0;s:23:\"container_styles_border\";s:0:\"\";s:23:\"container_styles_height\";s:0:\"\";s:23:\"container_styles_margin\";s:0:\"\";s:24:\"container_styles_padding\";s:0:\"\";s:22:\"container_styles_float\";s:0:\"\";s:19:\"title_styles_border\";s:0:\"\";s:19:\"title_styles_height\";s:0:\"\";s:18:\"title_styles_width\";s:0:\"\";s:22:\"title_styles_font-size\";s:0:\"\";s:19:\"title_styles_margin\";s:0:\"\";s:20:\"title_styles_padding\";s:0:\"\";s:18:\"title_styles_float\";s:0:\"\";s:17:\"row_styles_border\";s:0:\"\";s:16:\"row_styles_width\";s:0:\"\";s:20:\"row_styles_font-size\";s:0:\"\";s:17:\"row_styles_margin\";s:0:\"\";s:18:\"row_styles_padding\";s:0:\"\";s:21:\"row-odd_styles_border\";s:0:\"\";s:21:\"row-odd_styles_height\";s:0:\"\";s:20:\"row-odd_styles_width\";s:0:\"\";s:24:\"row-odd_styles_font-size\";s:0:\"\";s:21:\"row-odd_styles_margin\";s:0:\"\";s:22:\"row-odd_styles_padding\";s:0:\"\";s:35:\"success-msg_styles_background-color\";s:9:\"#d8d8d8A6\";s:25:\"success-msg_styles_border\";s:0:\"\";s:24:\"success-msg_styles_color\";s:7:\"#211865\";s:25:\"success-msg_styles_height\";s:0:\"\";s:24:\"success-msg_styles_width\";s:0:\"\";s:28:\"success-msg_styles_font-size\";s:4:\"22px\";s:25:\"success-msg_styles_margin\";s:0:\"\";s:26:\"success-msg_styles_padding\";s:0:\"\";s:27:\"success-msg_styles_advanced\";s:136:\"font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\nmargin: auto;\nwidth: 50%;\nmargin-left: 350px;\npadding: 27px\n\";s:23:\"error_msg_styles_border\";s:0:\"\";s:22:\"error_msg_styles_width\";s:0:\"\";s:26:\"error_msg_styles_font-size\";s:0:\"\";s:23:\"error_msg_styles_margin\";s:0:\"\";s:24:\"error_msg_styles_padding\";s:0:\"\";}s:14:\"deleted_fields\";a:0:{}s:15:\"deleted_actions\";a:0:{}}',4,_binary '\0'),(2,'a:7:{s:2:\"id\";i:2;s:20:\"show_publish_options\";b:0;s:6:\"fields\";a:7:{i:0;a:2:{s:8:\"settings\";a:43:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:1;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:9:\"firstname\";s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:18:\"name_1534955086592\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:4:\"Name\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:11:\"contactName\";s:9:\"help_text\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"fname\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3946\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:4:\"Name\";s:9:\"field_key\";s:18:\"name_1534955086592\";s:5:\"value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";}s:2:\"id\";i:14;}i:1;a:2:{s:8:\"settings\";a:43:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:2;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:5:\"email\";s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:19:\"email_1534954990561\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:6:\"Email*\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:16:\"emailFromAddress\";s:9:\"help_text\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"email\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3949\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:5:\"Email\";s:9:\"field_key\";s:19:\"email_1534954990561\";s:5:\"value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";}s:2:\"id\";i:15;}i:2;a:2:{s:8:\"settings\";a:49:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:3;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:5:\"phone\";s:5:\"label\";s:5:\"Phone\";s:3:\"key\";s:19:\"phone_1534954991568\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:5:\"Phone\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:12:\"contactPhone\";s:9:\"help_text\";s:0:\"\";s:4:\"mask\";s:14:\"(999) 999-9999\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"phone\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3951\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:5:\"Phone\";s:9:\"field_key\";s:19:\"phone_1534954991568\";s:5:\"value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";}s:2:\"id\";i:16;}i:3;a:2:{s:8:\"settings\";a:48:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:4;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:8:\"textarea\";s:5:\"label\";s:7:\"Message\";s:3:\"key\";s:21:\"message_1534955077918\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:7:\"Message\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:11:\"formComment\";s:9:\"help_text\";s:0:\"\";s:12:\"textarea_rte\";s:0:\"\";s:18:\"disable_rte_mobile\";s:0:\"\";s:14:\"textarea_media\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3954\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:7:\"Message\";s:9:\"field_key\";s:21:\"message_1534955077918\";s:5:\"value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";}s:2:\"id\";i:17;}i:4;a:2:{s:8:\"settings\";a:18:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:5;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:0:\"\";s:7:\"default\";s:948:\"<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a> | <a href=\"/privacy/\" target=\"_blank\">Privacy Policy</a></div><div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div></div>\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3957\";s:3:\"key\";s:18:\"html_1534955009205\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:0:\"\";s:9:\"field_key\";s:18:\"html_1534955009205\";}s:2:\"id\";i:18;}i:5;a:2:{s:8:\"settings\";a:47:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:6;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:8:\"checkbox\";s:5:\"label\";s:26:\"I Have Read The Disclaimer\";s:3:\"key\";s:40:\"i_have_read_the_disclaimer_1534955054736\";s:9:\"label_pos\";s:5:\"right\";s:8:\"required\";s:1:\"1\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:14:\"readDisclaimer\";s:9:\"help_text\";s:0:\"\";s:13:\"default_value\";s:9:\"unchecked\";s:13:\"checked_value\";s:7:\"Checked\";s:15:\"unchecked_value\";s:9:\"Unchecked\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";i:0;s:7:\"cellcid\";s:5:\"c3959\";s:14:\"drawerDisabled\";b:0;s:7:\"default\";s:9:\"unchecked\";s:11:\"field_label\";s:26:\"I Have Read The Disclaimer\";s:9:\"field_key\";s:40:\"i_have_read_the_disclaimer_1534955054736\";s:5:\"value\";s:9:\"unchecked\";s:18:\"checked_calc_value\";s:0:\"\";s:20:\"unchecked_calc_value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:31:\"element_styles_background-color\";s:7:\"#ffffff\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";}s:2:\"id\";i:19;}i:6;a:2:{s:8:\"settings\";a:35:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:7;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:6:\"submit\";s:5:\"label\";s:6:\"Submit\";s:16:\"processing_label\";s:10:\"Processing\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:3:\"key\";s:20:\"submit_1629280585819\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:45:\"submit_element_hover_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3961\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:4:\"Send\";s:9:\"field_key\";s:18:\"send_1562680690974\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:34:\"submit_element_hover_styles_border\";s:0:\"\";s:33:\"submit_element_hover_styles_width\";s:0:\"\";s:37:\"submit_element_hover_styles_font-size\";s:0:\"\";s:34:\"submit_element_hover_styles_margin\";s:0:\"\";s:35:\"submit_element_hover_styles_padding\";s:0:\"\";s:33:\"submit_element_hover_styles_float\";s:0:\"\";}s:2:\"id\";i:20;}}s:7:\"actions\";a:1:{i:0;a:2:{s:8:\"settings\";a:18:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"label\";s:23:\"Send Notification Email\";s:6:\"active\";i:1;s:10:\"conditions\";a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:2:\"to\";s:21:\"mail@madwcdefense.com\";s:8:\"reply_to\";s:0:\"\";s:13:\"email_subject\";s:32:\"Website Referral/Contact Us Form\";s:13:\"email_message\";s:14:\"{fields_table}\";s:19:\"email_message_plain\";s:0:\"\";s:9:\"from_name\";s:26:\"{field:name_1534955086592}\";s:12:\"from_address\";s:27:\"{field:email_1534954990561}\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:25:\"hearings@madwcdefense.com\";s:3:\"bcc\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:8;}}s:8:\"settings\";a:159:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";b:1;s:5:\"title\";s:10:\"Short Form\";s:10:\"created_at\";s:19:\"2019-07-29 17:33:01\";s:10:\"form_title\";s:10:\"Short Form\";s:17:\"default_label_pos\";s:6:\"hidden\";s:10:\"show_title\";s:1:\"0\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:9:\"logged_in\";s:1:\"0\";s:13:\"wrapper_class\";s:13:\"fl-short-form\";s:13:\"element_class\";s:0:\"\";s:3:\"key\";s:0:\"\";s:10:\"add_submit\";s:1:\"0\";s:8:\"currency\";s:0:\"\";s:18:\"unique_field_error\";s:50:\"A form with this value has already been submitted.\";s:17:\"not_logged_in_msg\";s:0:\"\";s:13:\"sub_limit_msg\";s:42:\"The form has reached its submission limit.\";s:12:\"calculations\";a:0:{}s:34:\"container_styles_show_advanced_css\";s:1:\"0\";s:30:\"title_styles_show_advanced_css\";s:1:\"0\";s:28:\"row_styles_show_advanced_css\";s:1:\"0\";s:32:\"row-odd_styles_show_advanced_css\";s:1:\"0\";s:36:\"success-msg_styles_show_advanced_css\";s:1:\"0\";s:34:\"error_msg_styles_show_advanced_css\";s:1:\"0\";s:15:\"formContentData\";a:1:{i:0;a:6:{s:15:\"formContentData\";a:3:{i:0;a:2:{s:5:\"order\";i:1;s:5:\"cells\";a:3:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"name_1534955086592\";}s:5:\"width\";i:33;}i:1;a:3:{s:5:\"order\";i:1;s:6:\"fields\";a:1:{i:0;s:19:\"email_1534954990561\";}s:5:\"width\";i:33;}i:2;a:3:{s:5:\"order\";i:2;s:6:\"fields\";a:1:{i:0;s:19:\"phone_1534954991568\";}s:5:\"width\";i:33;}}}i:1;a:2:{s:5:\"order\";i:4;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:21:\"message_1534955077918\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:6;s:5:\"cells\";a:3:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"html_1534955009205\";}s:5:\"width\";i:33;}i:1;a:3:{s:5:\"order\";i:1;s:6:\"fields\";a:1:{i:0;s:40:\"i_have_read_the_disclaimer_1534955054736\";}s:5:\"width\";i:40;}i:2;a:3:{s:5:\"order\";i:2;s:6:\"fields\";a:1:{i:0;s:20:\"submit_1629280585819\";}s:5:\"width\";i:27;}}}}s:5:\"order\";i:0;s:4:\"type\";s:4:\"part\";s:5:\"clean\";b:1;s:5:\"title\";s:10:\"Part Title\";s:3:\"key\";s:8:\"kxtbboqb\";}}s:14:\"drawerDisabled\";b:0;s:19:\"changeEmailErrorMsg\";s:0:\"\";s:18:\"changeDateErrorMsg\";s:0:\"\";s:20:\"confirmFieldErrorMsg\";s:0:\"\";s:22:\"fieldNumberNumMinError\";s:0:\"\";s:22:\"fieldNumberNumMaxError\";s:0:\"\";s:22:\"fieldNumberIncrementBy\";s:0:\"\";s:23:\"formErrorsCorrectErrors\";s:0:\"\";s:21:\"validateRequiredField\";s:0:\"\";s:21:\"honeypotHoneypotError\";s:0:\"\";s:20:\"fieldsMarkedRequired\";s:0:\"\";s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";s:20:\"repeatable_fieldsets\";s:0:\"\";s:23:\"container_styles_border\";s:0:\"\";s:23:\"container_styles_height\";s:0:\"\";s:23:\"container_styles_margin\";s:0:\"\";s:24:\"container_styles_padding\";s:0:\"\";s:22:\"container_styles_float\";s:0:\"\";s:19:\"title_styles_border\";s:0:\"\";s:19:\"title_styles_height\";s:0:\"\";s:18:\"title_styles_width\";s:0:\"\";s:22:\"title_styles_font-size\";s:0:\"\";s:19:\"title_styles_margin\";s:0:\"\";s:20:\"title_styles_padding\";s:0:\"\";s:18:\"title_styles_float\";s:0:\"\";s:17:\"row_styles_border\";s:0:\"\";s:16:\"row_styles_width\";s:0:\"\";s:20:\"row_styles_font-size\";s:0:\"\";s:17:\"row_styles_margin\";s:0:\"\";s:18:\"row_styles_padding\";s:0:\"\";s:21:\"row-odd_styles_border\";s:0:\"\";s:21:\"row-odd_styles_height\";s:0:\"\";s:20:\"row-odd_styles_width\";s:0:\"\";s:24:\"row-odd_styles_font-size\";s:0:\"\";s:21:\"row-odd_styles_margin\";s:0:\"\";s:22:\"row-odd_styles_padding\";s:0:\"\";s:25:\"success-msg_styles_border\";s:0:\"\";s:25:\"success-msg_styles_height\";s:0:\"\";s:24:\"success-msg_styles_width\";s:0:\"\";s:28:\"success-msg_styles_font-size\";s:0:\"\";s:25:\"success-msg_styles_margin\";s:0:\"\";s:26:\"success-msg_styles_padding\";s:0:\"\";s:23:\"error_msg_styles_border\";s:0:\"\";s:22:\"error_msg_styles_width\";s:0:\"\";s:26:\"error_msg_styles_font-size\";s:0:\"\";s:23:\"error_msg_styles_margin\";s:0:\"\";s:24:\"error_msg_styles_padding\";s:0:\"\";s:10:\"conditions\";a:0:{}s:13:\"mp_breadcrumb\";i:1;s:15:\"mp_progress_bar\";i:1;s:17:\"mp_display_titles\";i:0;s:13:\"mp_prev_label\";s:0:\"\";s:13:\"mp_next_label\";s:0:\"\";s:34:\"breadcrumb_container_styles_border\";s:0:\"\";s:34:\"breadcrumb_container_styles_height\";s:0:\"\";s:33:\"breadcrumb_container_styles_width\";s:0:\"\";s:34:\"breadcrumb_container_styles_margin\";s:0:\"\";s:35:\"breadcrumb_container_styles_padding\";s:0:\"\";s:33:\"breadcrumb_container_styles_float\";s:0:\"\";s:45:\"breadcrumb_container_styles_show_advanced_css\";i:0;s:32:\"breadcrumb_buttons_styles_border\";s:0:\"\";s:32:\"breadcrumb_buttons_styles_height\";s:0:\"\";s:31:\"breadcrumb_buttons_styles_width\";s:0:\"\";s:35:\"breadcrumb_buttons_styles_font-size\";s:0:\"\";s:32:\"breadcrumb_buttons_styles_margin\";s:0:\"\";s:33:\"breadcrumb_buttons_styles_padding\";s:0:\"\";s:31:\"breadcrumb_buttons_styles_float\";s:0:\"\";s:43:\"breadcrumb_buttons_styles_show_advanced_css\";i:0;s:37:\"breadcrumb_button_hover_styles_border\";s:0:\"\";s:37:\"breadcrumb_button_hover_styles_height\";s:0:\"\";s:36:\"breadcrumb_button_hover_styles_width\";s:0:\"\";s:40:\"breadcrumb_button_hover_styles_font-size\";s:0:\"\";s:37:\"breadcrumb_button_hover_styles_margin\";s:0:\"\";s:38:\"breadcrumb_button_hover_styles_padding\";s:0:\"\";s:36:\"breadcrumb_button_hover_styles_float\";s:0:\"\";s:48:\"breadcrumb_button_hover_styles_show_advanced_css\";i:0;s:38:\"breadcrumb_active_button_styles_border\";s:0:\"\";s:38:\"breadcrumb_active_button_styles_height\";s:0:\"\";s:37:\"breadcrumb_active_button_styles_width\";s:0:\"\";s:41:\"breadcrumb_active_button_styles_font-size\";s:0:\"\";s:38:\"breadcrumb_active_button_styles_margin\";s:0:\"\";s:39:\"breadcrumb_active_button_styles_padding\";s:0:\"\";s:37:\"breadcrumb_active_button_styles_float\";s:0:\"\";s:49:\"breadcrumb_active_button_styles_show_advanced_css\";i:0;s:36:\"progress_bar_container_styles_border\";s:0:\"\";s:36:\"progress_bar_container_styles_height\";s:0:\"\";s:35:\"progress_bar_container_styles_width\";s:0:\"\";s:36:\"progress_bar_container_styles_margin\";s:0:\"\";s:37:\"progress_bar_container_styles_padding\";s:0:\"\";s:35:\"progress_bar_container_styles_float\";s:0:\"\";s:47:\"progress_bar_container_styles_show_advanced_css\";i:0;s:31:\"progress_bar_fill_styles_border\";s:0:\"\";s:31:\"progress_bar_fill_styles_height\";s:0:\"\";s:31:\"progress_bar_fill_styles_margin\";s:0:\"\";s:32:\"progress_bar_fill_styles_padding\";s:0:\"\";s:42:\"progress_bar_fill_styles_show_advanced_css\";i:0;s:25:\"part_titles_styles_border\";s:0:\"\";s:25:\"part_titles_styles_height\";s:0:\"\";s:24:\"part_titles_styles_width\";s:0:\"\";s:28:\"part_titles_styles_font-size\";s:0:\"\";s:25:\"part_titles_styles_margin\";s:0:\"\";s:26:\"part_titles_styles_padding\";s:0:\"\";s:24:\"part_titles_styles_float\";s:0:\"\";s:36:\"part_titles_styles_show_advanced_css\";i:0;s:34:\"navigation_container_styles_border\";s:0:\"\";s:34:\"navigation_container_styles_height\";s:0:\"\";s:33:\"navigation_container_styles_width\";s:0:\"\";s:34:\"navigation_container_styles_margin\";s:0:\"\";s:35:\"navigation_container_styles_padding\";s:0:\"\";s:33:\"navigation_container_styles_float\";s:0:\"\";s:45:\"navigation_container_styles_show_advanced_css\";i:0;s:29:\"previous_button_styles_border\";s:0:\"\";s:29:\"previous_button_styles_height\";s:0:\"\";s:28:\"previous_button_styles_width\";s:0:\"\";s:32:\"previous_button_styles_font-size\";s:0:\"\";s:29:\"previous_button_styles_margin\";s:0:\"\";s:30:\"previous_button_styles_padding\";s:0:\"\";s:40:\"previous_button_styles_show_advanced_css\";i:0;s:25:\"next_button_styles_border\";s:0:\"\";s:25:\"next_button_styles_height\";s:0:\"\";s:24:\"next_button_styles_width\";s:0:\"\";s:28:\"next_button_styles_font-size\";s:0:\"\";s:25:\"next_button_styles_margin\";s:0:\"\";s:26:\"next_button_styles_padding\";s:0:\"\";s:36:\"next_button_styles_show_advanced_css\";i:0;s:30:\"navigation_hover_styles_border\";s:0:\"\";s:30:\"navigation_hover_styles_height\";s:0:\"\";s:29:\"navigation_hover_styles_width\";s:0:\"\";s:33:\"navigation_hover_styles_font-size\";s:0:\"\";s:30:\"navigation_hover_styles_margin\";s:0:\"\";s:31:\"navigation_hover_styles_padding\";s:0:\"\";s:41:\"navigation_hover_styles_show_advanced_css\";i:0;}s:14:\"deleted_fields\";a:0:{}s:15:\"deleted_actions\";a:0:{}}',4,_binary '\0'),(3,'a:7:{s:2:\"id\";i:3;s:20:\"show_publish_options\";b:0;s:6:\"fields\";a:8:{i:0;a:2:{s:8:\"settings\";a:43:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:1;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:9:\"firstname\";s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:18:\"name_1534955086592\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";i:1;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:11:\"contactName\";s:9:\"help_text\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"fname\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3972\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:4:\"Name\";s:9:\"field_key\";s:18:\"name_1534955086592\";s:5:\"value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";}s:2:\"id\";i:21;}i:1;a:2:{s:8:\"settings\";a:26:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:2;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:5:\"email\";s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:19:\"email_1534954990561\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:16:\"emailFromAddress\";s:9:\"help_text\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"email\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3976\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:5:\"Email\";s:9:\"field_key\";s:19:\"email_1534954990561\";s:5:\"value\";s:0:\"\";}s:2:\"id\";i:22;}i:2;a:2:{s:8:\"settings\";a:32:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:3;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:5:\"phone\";s:5:\"label\";s:5:\"Phone\";s:3:\"key\";s:19:\"phone_1534954991568\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:12:\"contactPhone\";s:9:\"help_text\";s:0:\"\";s:4:\"mask\";s:14:\"(999) 999-9999\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"phone\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3979\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:5:\"Phone\";s:9:\"field_key\";s:19:\"phone_1534954991568\";s:5:\"value\";s:0:\"\";}s:2:\"id\";i:23;}i:3;a:2:{s:8:\"settings\";a:37:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:4;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:10:\"listselect\";s:5:\"label\";s:6:\"Select\";s:3:\"key\";s:24:\"listselect_1662654086358\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";b:0;s:7:\"options\";a:16:{i:0;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:16:\"Specify Attorney\";s:5:\"value\";s:16:\"Specify Attorney\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:1;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:14:\"Melissa A. Day\";s:5:\"value\";s:14:\"Melissa A. Day\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:2;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:16:\"James B. Cousins\";s:5:\"value\";s:16:\"James B. Cousins\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:2;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:3;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:3;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:15:\"Brian K. Prince\";s:5:\"value\";s:15:\"Brian K. Prince\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:4;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:4;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:17:\"Shannan M. Mackey\";s:5:\"value\";s:17:\"Shannan M. Mackey\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:5;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:5;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:16:\"Paul B. Kornacki\";s:5:\"value\";s:16:\"Paul B. Kornacki\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:6;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:6;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:22:\"Cassandra E. Christman\";s:5:\"value\";s:22:\"Cassandra E. Christman\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:7;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:7;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:15:\"Melanie A. Daly\";s:5:\"value\";s:15:\"Melanie A. Daly\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:8;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:8;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:17:\"Neil A. Diegelman\";s:5:\"value\";s:17:\"Neil A. Diegelman\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:9;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:9;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:18:\"Brendan T. Shannon\";s:5:\"value\";s:18:\"Brendan T. Shannon\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:10;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:10;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:15:\"Andrew P. Gould\";s:5:\"value\";s:15:\"Andrew P. Gould\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:11;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:11;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:14:\"Bingchen Huang\";s:5:\"value\";s:14:\"Bingchen Huang\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:12;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:12;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:13:\"Satoko Harada\";s:5:\"value\";s:13:\"Satoko Harada\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:13;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:13;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:12:\"Maria C. Lua\";s:5:\"value\";s:12:\"Maria C. Lua\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:14;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:14;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:16:\"Vicki L. Buehler\";s:5:\"value\";s:16:\"Vicki L. Buehler\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:15;a:11:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"order\";i:15;s:3:\"new\";b:0;s:7:\"options\";a:0:{}s:5:\"label\";s:15:\"Tyler J. Eckert\";s:5:\"value\";s:15:\"Tyler J. Eckert\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}}s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";i:0;s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";i:0;s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";i:0;s:7:\"cellcid\";s:5:\"c3982\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";s:2:\"46\";}i:4;a:2:{s:8:\"settings\";a:31:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:5;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:8:\"textarea\";s:5:\"label\";s:7:\"Message\";s:3:\"key\";s:21:\"message_1534955077918\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:11:\"formComment\";s:9:\"help_text\";s:0:\"\";s:12:\"textarea_rte\";s:0:\"\";s:18:\"disable_rte_mobile\";s:0:\"\";s:14:\"textarea_media\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3985\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:7:\"Message\";s:9:\"field_key\";s:21:\"message_1534955077918\";s:5:\"value\";s:0:\"\";}s:2:\"id\";i:24;}i:5;a:2:{s:8:\"settings\";a:35:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:6;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:0:\"\";s:7:\"default\";s:948:\"<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a> | <a href=\"/privacy/\" target=\"_blank\">Privacy Policy</a></div><div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div></div>\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3988\";s:3:\"key\";s:18:\"html_1534955009205\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:0:\"\";s:9:\"field_key\";s:18:\"html_1534955009205\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";}s:2:\"id\";i:25;}i:6;a:2:{s:8:\"settings\";a:46:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:7;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:8:\"checkbox\";s:5:\"label\";s:26:\"I Have Read The Disclaimer\";s:3:\"key\";s:40:\"i_have_read_the_disclaimer_1534955054736\";s:9:\"label_pos\";s:5:\"right\";s:8:\"required\";s:1:\"1\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:14:\"readDisclaimer\";s:9:\"help_text\";s:0:\"\";s:13:\"default_value\";s:9:\"unchecked\";s:13:\"checked_value\";s:7:\"Checked\";s:15:\"unchecked_value\";s:9:\"Unchecked\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3991\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:26:\"I Have Read The Disclaimer\";s:9:\"field_key\";s:40:\"i_have_read_the_disclaimer_1534955054736\";s:7:\"default\";s:9:\"unchecked\";s:5:\"value\";s:9:\"unchecked\";s:18:\"checked_calc_value\";s:0:\"\";s:20:\"unchecked_calc_value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";}s:2:\"id\";i:26;}i:7;a:2:{s:8:\"settings\";a:18:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:8;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:6:\"submit\";s:5:\"label\";s:4:\"Send\";s:16:\"processing_label\";s:10:\"Processing\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:3:\"key\";s:18:\"send_1562680748375\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:45:\"submit_element_hover_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3994\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:4:\"Send\";s:9:\"field_key\";s:18:\"send_1562680748375\";}s:2:\"id\";i:27;}}s:7:\"actions\";a:1:{i:0;a:2:{s:8:\"settings\";a:19:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-09-08 10:26:10\";s:5:\"label\";s:23:\"Send Notification Email\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:2:\"to\";s:21:\"mail@madwcdefense.com\";s:8:\"reply_to\";s:0:\"\";s:13:\"email_subject\";s:42:\"Email from {field:name_1534955086592} to {\";s:13:\"email_message\";s:14:\"{fields_table}\";s:19:\"email_message_plain\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:14:\"drawerDisabled\";s:0:\"\";}s:2:\"id\";i:17;}}s:8:\"settings\";a:89:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";s:1:\"1\";s:5:\"title\";s:19:\"Email This Attorney\";s:10:\"created_at\";s:19:\"2019-03-08 18:06:57\";s:10:\"form_title\";s:19:\"Email This Attorney\";s:17:\"default_label_pos\";s:5:\"above\";s:10:\"show_title\";s:1:\"0\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:9:\"logged_in\";s:1:\"0\";s:13:\"wrapper_class\";s:16:\"fl-attorney-form\";s:13:\"element_class\";s:0:\"\";s:3:\"key\";s:0:\"\";s:10:\"add_submit\";s:1:\"0\";s:8:\"currency\";s:0:\"\";s:18:\"unique_field_error\";s:50:\"A form with this value has already been submitted.\";s:17:\"not_logged_in_msg\";s:0:\"\";s:13:\"sub_limit_msg\";s:42:\"The form has reached its submission limit.\";s:12:\"calculations\";a:0:{}s:34:\"container_styles_show_advanced_css\";s:1:\"0\";s:30:\"title_styles_show_advanced_css\";s:1:\"0\";s:28:\"row_styles_show_advanced_css\";s:1:\"0\";s:32:\"row-odd_styles_show_advanced_css\";s:1:\"0\";s:36:\"success-msg_styles_show_advanced_css\";s:1:\"0\";s:34:\"error_msg_styles_show_advanced_css\";s:1:\"0\";s:15:\"formContentData\";a:1:{i:0;a:8:{s:15:\"formContentData\";a:8:{i:0;a:2:{s:5:\"order\";i:1;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"name_1534955086592\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";i:2;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"email_1534954990561\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:3;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"phone_1534954991568\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";i:4;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:24:\"listselect_1662654086358\";}s:5:\"width\";s:3:\"100\";}}}i:4;a:2:{s:5:\"order\";i:5;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:21:\"message_1534955077918\";}s:5:\"width\";s:3:\"100\";}}}i:5;a:2:{s:5:\"order\";i:6;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"html_1534955009205\";}s:5:\"width\";s:3:\"100\";}}}i:6;a:2:{s:5:\"order\";i:7;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:40:\"i_have_read_the_disclaimer_1534955054736\";}s:5:\"width\";s:3:\"100\";}}}i:7;a:2:{s:5:\"order\";i:8;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"send_1562680748375\";}s:5:\"width\";s:3:\"100\";}}}}s:5:\"order\";i:0;s:4:\"type\";s:4:\"part\";s:5:\"clean\";b:1;s:5:\"title\";s:10:\"Part Title\";s:3:\"key\";s:8:\"tvkfabgo\";s:10:\"editActive\";b:1;s:14:\"drawerDisabled\";b:0;}}s:14:\"drawerDisabled\";s:0:\"\";s:19:\"changeEmailErrorMsg\";s:0:\"\";s:18:\"changeDateErrorMsg\";s:0:\"\";s:20:\"confirmFieldErrorMsg\";s:0:\"\";s:22:\"fieldNumberNumMinError\";s:0:\"\";s:22:\"fieldNumberNumMaxError\";s:0:\"\";s:22:\"fieldNumberIncrementBy\";s:0:\"\";s:23:\"formErrorsCorrectErrors\";s:0:\"\";s:21:\"validateRequiredField\";s:0:\"\";s:21:\"honeypotHoneypotError\";s:0:\"\";s:20:\"fieldsMarkedRequired\";s:0:\"\";s:23:\"container_styles_border\";s:0:\"\";s:23:\"container_styles_height\";s:0:\"\";s:23:\"container_styles_margin\";s:0:\"\";s:24:\"container_styles_padding\";s:0:\"\";s:22:\"container_styles_float\";s:0:\"\";s:19:\"title_styles_border\";s:0:\"\";s:19:\"title_styles_height\";s:0:\"\";s:18:\"title_styles_width\";s:0:\"\";s:22:\"title_styles_font-size\";s:0:\"\";s:19:\"title_styles_margin\";s:0:\"\";s:20:\"title_styles_padding\";s:0:\"\";s:18:\"title_styles_float\";s:0:\"\";s:17:\"row_styles_border\";s:0:\"\";s:16:\"row_styles_width\";s:0:\"\";s:20:\"row_styles_font-size\";s:0:\"\";s:17:\"row_styles_margin\";s:0:\"\";s:18:\"row_styles_padding\";s:0:\"\";s:21:\"row-odd_styles_border\";s:0:\"\";s:21:\"row-odd_styles_height\";s:0:\"\";s:20:\"row-odd_styles_width\";s:0:\"\";s:24:\"row-odd_styles_font-size\";s:0:\"\";s:21:\"row-odd_styles_margin\";s:0:\"\";s:22:\"row-odd_styles_padding\";s:0:\"\";s:25:\"success-msg_styles_border\";s:0:\"\";s:25:\"success-msg_styles_height\";s:0:\"\";s:24:\"success-msg_styles_width\";s:0:\"\";s:28:\"success-msg_styles_font-size\";s:0:\"\";s:25:\"success-msg_styles_margin\";s:0:\"\";s:26:\"success-msg_styles_padding\";s:0:\"\";s:23:\"error_msg_styles_border\";s:0:\"\";s:22:\"error_msg_styles_width\";s:0:\"\";s:26:\"error_msg_styles_font-size\";s:0:\"\";s:23:\"error_msg_styles_margin\";s:0:\"\";s:24:\"error_msg_styles_padding\";s:0:\"\";s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";s:20:\"repeatable_fieldsets\";s:0:\"\";s:10:\"conditions\";a:0:{}s:13:\"mp_breadcrumb\";i:1;s:15:\"mp_progress_bar\";i:1;s:17:\"mp_display_titles\";i:0;s:45:\"breadcrumb_container_styles_show_advanced_css\";i:0;s:43:\"breadcrumb_buttons_styles_show_advanced_css\";i:0;s:48:\"breadcrumb_button_hover_styles_show_advanced_css\";i:0;s:49:\"breadcrumb_active_button_styles_show_advanced_css\";i:0;s:47:\"progress_bar_container_styles_show_advanced_css\";i:0;s:42:\"progress_bar_fill_styles_show_advanced_css\";i:0;s:36:\"part_titles_styles_show_advanced_css\";i:0;s:45:\"navigation_container_styles_show_advanced_css\";i:0;s:40:\"previous_button_styles_show_advanced_css\";i:0;s:36:\"next_button_styles_show_advanced_css\";i:0;s:41:\"navigation_hover_styles_show_advanced_css\";i:0;}s:14:\"deleted_fields\";a:0:{}s:15:\"deleted_actions\";a:0:{}}',4,_binary '\0'),(4,'a:7:{s:2:\"id\";i:4;s:20:\"show_publish_options\";b:0;s:6:\"fields\";a:7:{i:0;a:2:{s:8:\"settings\";a:26:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"1\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:9:\"firstname\";s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:18:\"name_1534955086592\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:11:\"contactName\";s:9:\"help_text\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"fname\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3228\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:4:\"Name\";s:9:\"field_key\";s:18:\"name_1534955086592\";s:5:\"value\";s:0:\"\";}s:2:\"id\";i:28;}i:1;a:2:{s:8:\"settings\";a:26:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"2\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:5:\"email\";s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:19:\"email_1534954990561\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:16:\"emailFromAddress\";s:9:\"help_text\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"email\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3232\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:5:\"Email\";s:9:\"field_key\";s:19:\"email_1534954990561\";s:5:\"value\";s:0:\"\";}s:2:\"id\";i:29;}i:2;a:2:{s:8:\"settings\";a:32:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"3\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:5:\"phone\";s:5:\"label\";s:5:\"Phone\";s:3:\"key\";s:19:\"phone_1534954991568\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:12:\"contactPhone\";s:9:\"help_text\";s:0:\"\";s:4:\"mask\";s:14:\"(999) 999-9999\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"phone\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3235\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:5:\"Phone\";s:9:\"field_key\";s:19:\"phone_1534954991568\";s:5:\"value\";s:0:\"\";}s:2:\"id\";i:30;}i:3;a:2:{s:8:\"settings\";a:31:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"4\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:8:\"textarea\";s:5:\"label\";s:7:\"Message\";s:3:\"key\";s:21:\"message_1534955077918\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:11:\"formComment\";s:9:\"help_text\";s:0:\"\";s:12:\"textarea_rte\";s:0:\"\";s:18:\"disable_rte_mobile\";s:0:\"\";s:14:\"textarea_media\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3238\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:7:\"Message\";s:9:\"field_key\";s:21:\"message_1534955077918\";s:5:\"value\";s:0:\"\";}s:2:\"id\";i:31;}i:4;a:2:{s:8:\"settings\";a:18:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"6\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:0:\"\";s:7:\"default\";s:956:\"<div class=\"form-links\">	<a href=\"/lp/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a> | <a href=\"/lp/privacy/\" target=\"_blank\">Privacy Policy</a></div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3241\";s:3:\"key\";s:18:\"html_1534955009205\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:0:\"\";s:9:\"field_key\";s:18:\"html_1534955009205\";}s:2:\"id\";i:32;}i:5;a:2:{s:8:\"settings\";a:27:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"7\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:8:\"checkbox\";s:5:\"label\";s:26:\"I Have Read The Disclaimer\";s:3:\"key\";s:40:\"i_have_read_the_disclaimer_1534955054736\";s:9:\"label_pos\";s:5:\"right\";s:8:\"required\";s:1:\"1\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:14:\"readDisclaimer\";s:9:\"help_text\";s:0:\"\";s:13:\"default_value\";s:9:\"unchecked\";s:13:\"checked_value\";s:7:\"Checked\";s:15:\"unchecked_value\";s:9:\"Unchecked\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3244\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:26:\"I Have Read The Disclaimer\";s:9:\"field_key\";s:40:\"i_have_read_the_disclaimer_1534955054736\";s:7:\"default\";s:9:\"unchecked\";s:5:\"value\";s:9:\"unchecked\";}s:2:\"id\";i:33;}i:6;a:2:{s:8:\"settings\";a:18:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"8\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:6:\"submit\";s:5:\"label\";s:4:\"Send\";s:16:\"processing_label\";s:10:\"Processing\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:3:\"key\";s:18:\"send_1562680741334\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:45:\"submit_element_hover_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3247\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:4:\"Send\";s:9:\"field_key\";s:18:\"send_1562680741334\";}s:2:\"id\";i:34;}}s:7:\"actions\";a:1:{i:0;a:2:{s:8:\"settings\";a:13:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:7:\"handler\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2019-04-02 18:10:40\";s:5:\"label\";s:23:\"Send Notification Email\";s:5:\"order\";s:1:\"0\";s:2:\"to\";s:21:\"mail@madwcdefense.com\";s:14:\"drawerDisabled\";b:0;s:6:\"parent\";s:1:\"3\";}s:2:\"id\";i:7;}}s:8:\"settings\";a:40:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";s:1:\"1\";s:5:\"title\";s:17:\"Landing Page Form\";s:10:\"created_at\";s:19:\"2019-04-02 18:10:40\";s:10:\"form_title\";s:17:\"Landing Page Form\";s:17:\"default_label_pos\";s:5:\"above\";s:10:\"show_title\";s:1:\"0\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:9:\"logged_in\";s:1:\"0\";s:13:\"wrapper_class\";s:20:\"fl-landing-page-form\";s:13:\"element_class\";s:0:\"\";s:3:\"key\";s:0:\"\";s:10:\"add_submit\";s:1:\"0\";s:8:\"currency\";s:0:\"\";s:18:\"unique_field_error\";s:50:\"A form with this value has already been submitted.\";s:17:\"not_logged_in_msg\";s:0:\"\";s:13:\"sub_limit_msg\";s:42:\"The form has reached its submission limit.\";s:12:\"calculations\";a:0:{}s:34:\"container_styles_show_advanced_css\";s:1:\"0\";s:30:\"title_styles_show_advanced_css\";s:1:\"0\";s:28:\"row_styles_show_advanced_css\";s:1:\"0\";s:32:\"row-odd_styles_show_advanced_css\";s:1:\"0\";s:36:\"success-msg_styles_show_advanced_css\";s:1:\"0\";s:34:\"error_msg_styles_show_advanced_css\";s:1:\"0\";s:15:\"formContentData\";a:7:{i:0;a:2:{s:5:\"order\";i:1;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"name_1534955086592\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";i:2;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"email_1534954990561\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:3;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"phone_1534954991568\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";i:4;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:21:\"message_1534955077918\";}s:5:\"width\";s:3:\"100\";}}}i:4;a:2:{s:5:\"order\";i:6;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"html_1534955009205\";}s:5:\"width\";s:3:\"100\";}}}i:5;a:2:{s:5:\"order\";i:7;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:40:\"i_have_read_the_disclaimer_1534955054736\";}s:5:\"width\";s:3:\"100\";}}}i:6;a:2:{s:5:\"order\";i:8;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"send_1562680741334\";}s:5:\"width\";s:3:\"100\";}}}}s:14:\"drawerDisabled\";s:0:\"\";s:19:\"changeEmailErrorMsg\";s:0:\"\";s:18:\"changeDateErrorMsg\";s:0:\"\";s:20:\"confirmFieldErrorMsg\";s:0:\"\";s:22:\"fieldNumberNumMinError\";s:0:\"\";s:22:\"fieldNumberNumMaxError\";s:0:\"\";s:22:\"fieldNumberIncrementBy\";s:0:\"\";s:23:\"formErrorsCorrectErrors\";s:0:\"\";s:21:\"validateRequiredField\";s:0:\"\";s:21:\"honeypotHoneypotError\";s:0:\"\";s:20:\"fieldsMarkedRequired\";s:0:\"\";s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";s:20:\"repeatable_fieldsets\";s:0:\"\";}s:14:\"deleted_fields\";a:0:{}s:15:\"deleted_actions\";a:0:{}}',4,_binary '\0'),(5,'a:7:{s:2:\"id\";i:5;s:20:\"show_publish_options\";b:0;s:6:\"fields\";a:7:{i:0;a:2:{s:8:\"settings\";a:76:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:1;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:4:\"name\";s:4:\"type\";s:7:\"textbox\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:9:\"label_pos\";s:6:\"hidden\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:5:\"Name*\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:11:\"<p><br></p>\";s:9:\"desc_text\";s:11:\"<p><br></p>\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"12\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";i:1;s:23:\"element_styles_advanced\";s:12:\"width: 440px\";s:7:\"cellcid\";s:5:\"c3972\";s:11:\"field_label\";s:4:\"Name\";s:9:\"field_key\";s:4:\"name\";s:21:\"custom_name_attribute\";s:0:\"\";s:23:\"personally_identifiable\";s:0:\"\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:35;}i:1;a:2:{s:8:\"settings\";a:68:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:2;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:5:\"email\";s:4:\"type\";s:5:\"email\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:9:\"label_pos\";s:6:\"hidden\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:6:\"Email*\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"12\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3975\";s:11:\"field_label\";s:5:\"Email\";s:9:\"field_key\";s:5:\"email\";s:21:\"custom_name_attribute\";s:5:\"email\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:36;}i:2;a:2:{s:8:\"settings\";a:48:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:3;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:5:\"phone\";s:5:\"label\";s:12:\"Phone Number\";s:3:\"key\";s:26:\"phone_number_1662652113554\";s:9:\"label_pos\";s:6:\"hidden\";s:8:\"required\";i:1;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:13:\"Phone Number*\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";b:0;s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:12:\"Phone Number\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";i:0;s:30:\"label_styles_show_advanced_css\";i:0;s:32:\"element_styles_show_advanced_css\";i:0;s:7:\"cellcid\";s:5:\"c3977\";s:5:\"value\";s:0:\"\";s:10:\"oldCellcid\";s:5:\"c4215\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"12\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:20:\"element_styles_float\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";s:2:\"39\";}i:3;a:2:{s:8:\"settings\";a:75:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:4;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:7:\"Message\";s:3:\"key\";s:7:\"message\";s:4:\"type\";s:8:\"textarea\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:9:\"label_pos\";s:6:\"hidden\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:36:\"Enter your message or request here. \";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:12:\"textarea_rte\";s:0:\"\";s:18:\"disable_rte_mobile\";s:0:\"\";s:14:\"textarea_media\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:4:\"12.5\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:3:\"7.5\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3980\";s:11:\"field_label\";s:7:\"Message\";s:9:\"field_key\";s:7:\"message\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:37;}i:4;a:2:{s:8:\"settings\";a:34:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:5;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:4:\"HTML\";s:7:\"default\";s:899:\"<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a>&nbsp;</div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";i:0;s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";i:0;s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";i:1;s:3:\"key\";s:18:\"html_1662651382914\";s:7:\"cellcid\";s:5:\"c3983\";s:14:\"drawerDisabled\";b:0;s:23:\"element_styles_advanced\";s:26:\"body {\n  color: #ffffff;\n}\";}s:2:\"id\";s:2:\"40\";}i:5;a:2:{s:8:\"settings\";a:74:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:6;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:12:\"listcheckbox\";s:5:\"label\";s:13:\"Checkbox List\";s:3:\"key\";s:26:\"listcheckbox_1662663562280\";s:9:\"label_pos\";s:6:\"hidden\";s:8:\"required\";b:0;s:7:\"options\";a:2:{i:0;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:26:\"I Have Read the Disclaimer\";s:5:\"value\";s:26:\"I Have Read the Disclaimer\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:1;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:36:\"I Acknowledge and Agree to its Terms\";s:5:\"value\";s:36:\"I Acknowledge and Agree to its Terms\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}}s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:19:\"lm-ignore-checkbox6\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";i:1;s:31:\"element_styles_background-color\";s:7:\"#ffffff\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:5:\"solid\";s:27:\"element_styles_border-color\";s:7:\"#000000\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";i:1;s:27:\"list_item_row_styles_border\";s:0:\"\";s:27:\"list_item_row_styles_height\";s:0:\"\";s:26:\"list_item_row_styles_width\";s:0:\"\";s:30:\"list_item_row_styles_font-size\";s:0:\"\";s:27:\"list_item_row_styles_margin\";s:0:\"\";s:28:\"list_item_row_styles_padding\";s:0:\"\";s:28:\"list_item_row_styles_display\";s:0:\"\";s:26:\"list_item_row_styles_float\";s:0:\"\";s:38:\"list_item_row_styles_show_advanced_css\";i:1;s:29:\"list_item_label_styles_border\";s:0:\"\";s:29:\"list_item_label_styles_height\";s:0:\"\";s:28:\"list_item_label_styles_width\";s:0:\"\";s:32:\"list_item_label_styles_font-size\";s:0:\"\";s:29:\"list_item_label_styles_margin\";s:0:\"\";s:30:\"list_item_label_styles_padding\";s:0:\"\";s:30:\"list_item_label_styles_display\";s:0:\"\";s:28:\"list_item_label_styles_float\";s:0:\"\";s:40:\"list_item_label_styles_show_advanced_css\";i:1;s:31:\"list_item_element_styles_border\";s:0:\"\";s:31:\"list_item_element_styles_height\";s:0:\"\";s:30:\"list_item_element_styles_width\";s:0:\"\";s:34:\"list_item_element_styles_font-size\";s:4:\"12.5\";s:31:\"list_item_element_styles_margin\";s:0:\"\";s:32:\"list_item_element_styles_padding\";s:3:\"5px\";s:32:\"list_item_element_styles_display\";s:0:\"\";s:30:\"list_item_element_styles_float\";s:0:\"\";s:42:\"list_item_element_styles_show_advanced_css\";i:1;s:7:\"cellcid\";s:5:\"c3985\";s:14:\"drawerDisabled\";b:0;s:9:\"cellOrder\";i:1;s:20:\"wrap_styles_advanced\";s:19:\"lm-ignore-checkbox1\";s:21:\"label_styles_advanced\";s:19:\"lm-ignore-checkbox2\";s:23:\"element_styles_advanced\";s:19:\"lm-ignore-checkbox3\";s:29:\"list_item_row_styles_advanced\";s:19:\"lm-ignore-checkbox4\";s:31:\"list_item_label_styles_advanced\";s:19:\"lm-ignore-checkbox4\";s:33:\"list_item_element_styles_advanced\";s:19:\"lm-ignore-checkbox5\";}s:2:\"id\";s:2:\"47\";}i:6;a:2:{s:8:\"settings\";a:72:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:7;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:6:\"Submit\";s:3:\"key\";s:6:\"submit\";s:4:\"type\";s:6:\"submit\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:16:\"processing_label\";s:10:\"Processing\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";i:1;s:23:\"element_styles_advanced\";s:281:\"background: #fff !important;\ncolor: #211865 !important;\nfont-size: 17px !important;\nfont-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\npadding: 15px 25px !important;\ntext-transform: uppercase !important;\nfont-weight: 400 !important;\nfloat:right !important;\";s:44:\"submit_element_hover_styles_background-color\";s:7:\"#211865\";s:34:\"submit_element_hover_styles_border\";s:0:\"\";s:40:\"submit_element_hover_styles_border-style\";s:0:\"\";s:40:\"submit_element_hover_styles_border-color\";s:0:\"\";s:33:\"submit_element_hover_styles_color\";s:7:\"#ffffff\";s:34:\"submit_element_hover_styles_height\";s:0:\"\";s:33:\"submit_element_hover_styles_width\";s:0:\"\";s:37:\"submit_element_hover_styles_font-size\";s:0:\"\";s:34:\"submit_element_hover_styles_margin\";s:0:\"\";s:35:\"submit_element_hover_styles_padding\";s:0:\"\";s:35:\"submit_element_hover_styles_display\";s:0:\"\";s:33:\"submit_element_hover_styles_float\";s:0:\"\";s:45:\"submit_element_hover_styles_show_advanced_css\";i:1;s:36:\"submit_element_hover_styles_advanced\";s:1:\"\n\";s:7:\"cellcid\";s:5:\"c3987\";s:11:\"field_label\";s:6:\"Submit\";s:9:\"field_key\";s:6:\"submit\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:38;}}s:7:\"actions\";a:4:{i:0;a:2:{s:8:\"settings\";a:30:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:5:\"label\";s:17:\"Record Submission\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";s:11:\"success_msg\";s:42:\"Your form has been successfully submitted.\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";s:1:\"0\";s:16:\"subs_expire_time\";s:2:\"90\";}s:2:\"id\";i:9;}i:1;a:2:{s:8:\"settings\";a:26:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:5:\"label\";s:18:\"Email Confirmation\";s:2:\"to\";s:13:\"{field:email}\";s:7:\"subject\";s:24:\"This is an email action.\";s:7:\"message\";s:19:\"Hello, Ninja Forms!\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:50:\"Your message to The Law Offices of Melissa A. Day \";s:13:\"email_message\";s:158:\"<p>Your message to The Law Offices of Melissa A. Day has been submitted and sent. A member of our team will be in touch soon!</p><p>{all_fields_table}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";s:14:\"drawerDisabled\";s:0:\"\";}s:2:\"id\";i:10;}i:2;a:2:{s:8:\"settings\";a:25:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-24 16:47:39\";s:5:\"label\";s:18:\"Email Notification\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:21:\"mail@madwcdefense.com\";s:13:\"email_subject\";s:30:\"New message from {field:name} \";s:13:\"email_message\";s:222:\"<p>A message has been received via the \"Contact/Refer a Claim form\" on the firm website. See the details below.&nbsp;</p><p>{field:name}<br>{field:email}<br>{field:phone_number_1662652113554}<br>{field:message}<br><br></p>\";s:9:\"from_name\";s:32:\"{field:name} (via LOMAD Website)\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:25:\"hearings@madwcdefense.com\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:1:\"0\";s:19:\"email_message_plain\";s:0:\"\";s:14:\"drawerDisabled\";s:0:\"\";}s:2:\"id\";i:11;}i:3;a:2:{s:8:\"settings\";a:27:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:5:\"label\";s:15:\"Success Message\";s:7:\"message\";s:47:\"Thank you {field:name} for filling out my form!\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:11:\"success_msg\";s:366:\"<p style=\"text-align: center;\">Your message to The Law Offices of Melissa A. Day has been successfully submitted.</p><p style=\"text-align: center;\">A confirmation email was sent to {field:email}. Please check your junk/spam folder for the confirmation.</p><p style=\"text-align: center;\"> Thank you for your submission! A member of our team will contact you soon.</p>\";s:19:\"email_message_plain\";s:0:\"\";s:14:\"drawerDisabled\";s:0:\"\";}s:2:\"id\";i:12;}}s:8:\"settings\";a:129:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";b:1;s:5:\"title\";s:29:\"Contact - Refer a Claim - new\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:10:\"form_title\";s:10:\"Contact Me\";s:17:\"default_label_pos\";s:6:\"hidden\";s:10:\"show_title\";i:0;s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:9:\"logged_in\";s:1:\"0\";s:3:\"key\";s:0:\"\";s:10:\"conditions\";a:0:{}s:13:\"wrapper_class\";s:18:\"lm-ignore-checkbox\";s:13:\"element_class\";s:0:\"\";s:10:\"add_submit\";s:1:\"1\";s:17:\"not_logged_in_msg\";s:0:\"\";s:16:\"sub_limit_number\";s:0:\"\";s:13:\"sub_limit_msg\";s:0:\"\";s:12:\"calculations\";a:0:{}s:15:\"formContentData\";a:1:{i:0;a:8:{s:15:\"formContentData\";a:3:{i:0;a:2:{s:5:\"order\";i:0;s:5:\"cells\";a:3:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:4:\"name\";}s:5:\"width\";i:33;}i:1;a:3:{s:5:\"order\";i:1;s:6:\"fields\";a:1:{i:0;s:5:\"email\";}s:5:\"width\";i:33;}i:2;a:3:{s:5:\"order\";i:2;s:6:\"fields\";a:1:{i:0;s:26:\"phone_number_1662652113554\";}s:5:\"width\";i:33;}}}i:1;a:2:{s:5:\"order\";i:2;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:7:\"message\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:3;s:5:\"cells\";a:3:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"html_1662651382914\";}s:5:\"width\";i:33;}i:1;a:3:{s:5:\"order\";i:1;s:6:\"fields\";a:1:{i:0;s:26:\"listcheckbox_1662663562280\";}s:5:\"width\";i:33;}i:2;a:3:{s:5:\"order\";i:2;s:6:\"fields\";a:1:{i:0;s:6:\"submit\";}s:5:\"width\";i:33;}}}}s:5:\"order\";i:0;s:4:\"type\";s:4:\"part\";s:5:\"clean\";b:1;s:5:\"title\";s:10:\"Part Title\";s:3:\"key\";s:7:\"iyiqfgo\";s:10:\"editActive\";b:1;s:14:\"drawerDisabled\";b:0;}}s:33:\"container_styles_background-color\";s:0:\"\";s:23:\"container_styles_border\";s:0:\"\";s:29:\"container_styles_border-style\";s:0:\"\";s:29:\"container_styles_border-color\";s:0:\"\";s:22:\"container_styles_color\";s:0:\"\";s:23:\"container_styles_height\";s:0:\"\";s:22:\"container_styles_width\";s:0:\"\";s:26:\"container_styles_font-size\";s:0:\"\";s:23:\"container_styles_margin\";s:0:\"\";s:24:\"container_styles_padding\";s:0:\"\";s:24:\"container_styles_display\";s:0:\"\";s:22:\"container_styles_float\";s:0:\"\";s:34:\"container_styles_show_advanced_css\";i:1;s:25:\"container_styles_advanced\";s:21:\"width: 100%!important\";s:29:\"title_styles_background-color\";s:0:\"\";s:19:\"title_styles_border\";s:0:\"\";s:25:\"title_styles_border-style\";s:0:\"\";s:25:\"title_styles_border-color\";s:0:\"\";s:18:\"title_styles_color\";s:0:\"\";s:19:\"title_styles_height\";s:0:\"\";s:18:\"title_styles_width\";s:0:\"\";s:22:\"title_styles_font-size\";s:0:\"\";s:19:\"title_styles_margin\";s:0:\"\";s:20:\"title_styles_padding\";s:0:\"\";s:20:\"title_styles_display\";s:0:\"\";s:18:\"title_styles_float\";s:0:\"\";s:30:\"title_styles_show_advanced_css\";s:1:\"0\";s:21:\"title_styles_advanced\";s:0:\"\";s:27:\"row_styles_background-color\";s:0:\"\";s:17:\"row_styles_border\";s:0:\"\";s:23:\"row_styles_border-style\";s:0:\"\";s:23:\"row_styles_border-color\";s:0:\"\";s:16:\"row_styles_color\";s:0:\"\";s:17:\"row_styles_height\";s:0:\"\";s:16:\"row_styles_width\";s:0:\"\";s:20:\"row_styles_font-size\";s:0:\"\";s:17:\"row_styles_margin\";s:0:\"\";s:18:\"row_styles_padding\";s:0:\"\";s:18:\"row_styles_display\";s:0:\"\";s:28:\"row_styles_show_advanced_css\";s:1:\"0\";s:19:\"row_styles_advanced\";s:0:\"\";s:31:\"row-odd_styles_background-color\";s:8:\"00FFFFFF\";s:21:\"row-odd_styles_border\";s:0:\"\";s:27:\"row-odd_styles_border-style\";s:0:\"\";s:27:\"row-odd_styles_border-color\";s:0:\"\";s:20:\"row-odd_styles_color\";s:0:\"\";s:21:\"row-odd_styles_height\";s:0:\"\";s:20:\"row-odd_styles_width\";s:0:\"\";s:24:\"row-odd_styles_font-size\";s:0:\"\";s:21:\"row-odd_styles_margin\";s:0:\"\";s:22:\"row-odd_styles_padding\";s:0:\"\";s:22:\"row-odd_styles_display\";s:0:\"\";s:32:\"row-odd_styles_show_advanced_css\";i:0;s:23:\"row-odd_styles_advanced\";s:0:\"\";s:35:\"success-msg_styles_background-color\";s:9:\"#d8d8d8A6\";s:25:\"success-msg_styles_border\";s:0:\"\";s:31:\"success-msg_styles_border-style\";s:0:\"\";s:31:\"success-msg_styles_border-color\";s:0:\"\";s:24:\"success-msg_styles_color\";s:7:\"#211865\";s:25:\"success-msg_styles_height\";s:0:\"\";s:24:\"success-msg_styles_width\";s:0:\"\";s:28:\"success-msg_styles_font-size\";s:4:\"22px\";s:25:\"success-msg_styles_margin\";s:0:\"\";s:26:\"success-msg_styles_padding\";s:0:\"\";s:26:\"success-msg_styles_display\";s:0:\"\";s:36:\"success-msg_styles_show_advanced_css\";i:1;s:27:\"success-msg_styles_advanced\";s:136:\"font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\nmargin: auto;\nwidth: 50%;\nmargin-left: 350px;\npadding: 27px\n\";s:33:\"error_msg_styles_background-color\";s:0:\"\";s:23:\"error_msg_styles_border\";s:0:\"\";s:29:\"error_msg_styles_border-style\";s:0:\"\";s:29:\"error_msg_styles_border-color\";s:0:\"\";s:22:\"error_msg_styles_color\";s:0:\"\";s:23:\"error_msg_styles_height\";s:0:\"\";s:22:\"error_msg_styles_width\";s:0:\"\";s:26:\"error_msg_styles_font-size\";s:0:\"\";s:23:\"error_msg_styles_margin\";s:0:\"\";s:24:\"error_msg_styles_padding\";s:0:\"\";s:24:\"error_msg_styles_display\";s:0:\"\";s:34:\"error_msg_styles_show_advanced_css\";s:1:\"0\";s:25:\"error_msg_styles_advanced\";s:0:\"\";s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";s:8:\"currency\";s:0:\"\";s:18:\"unique_field_error\";s:50:\"A form with this value has already been submitted.\";s:13:\"mp_breadcrumb\";i:1;s:15:\"mp_progress_bar\";i:1;s:17:\"mp_display_titles\";i:0;s:45:\"breadcrumb_container_styles_show_advanced_css\";i:0;s:43:\"breadcrumb_buttons_styles_show_advanced_css\";i:0;s:48:\"breadcrumb_button_hover_styles_show_advanced_css\";i:0;s:49:\"breadcrumb_active_button_styles_show_advanced_css\";i:0;s:47:\"progress_bar_container_styles_show_advanced_css\";i:0;s:42:\"progress_bar_fill_styles_show_advanced_css\";i:0;s:36:\"part_titles_styles_show_advanced_css\";i:0;s:45:\"navigation_container_styles_show_advanced_css\";i:0;s:40:\"previous_button_styles_show_advanced_css\";i:0;s:36:\"next_button_styles_show_advanced_css\";i:0;s:41:\"navigation_hover_styles_show_advanced_css\";i:0;s:19:\"changeEmailErrorMsg\";s:0:\"\";s:18:\"changeDateErrorMsg\";s:0:\"\";s:20:\"confirmFieldErrorMsg\";s:0:\"\";s:22:\"fieldNumberNumMinError\";s:0:\"\";s:22:\"fieldNumberNumMaxError\";s:0:\"\";s:22:\"fieldNumberIncrementBy\";s:0:\"\";s:23:\"formErrorsCorrectErrors\";s:0:\"\";s:21:\"validateRequiredField\";s:0:\"\";s:21:\"honeypotHoneypotError\";s:0:\"\";s:20:\"fieldsMarkedRequired\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:14:\"deleted_fields\";a:0:{}s:15:\"deleted_actions\";a:0:{}}',4,_binary '\0'),(7,'a:7:{s:2:\"id\";i:7;s:20:\"show_publish_options\";b:0;s:6:\"fields\";a:12:{i:0;a:2:{s:8:\"settings\";a:35:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"1\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:20:\"Personal Information\";s:7:\"default\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4047\";s:3:\"key\";s:34:\"personal_information_1534954814742\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:20:\"Personal Information\";s:9:\"field_key\";s:34:\"personal_information_1534954814742\";}s:2:\"id\";i:48;}i:1;a:2:{s:8:\"settings\";a:44:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"2\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:9:\"firstname\";s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:18:\"name_1534954806801\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:11:\"contactName\";s:9:\"help_text\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"fname\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"1\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";i:0;s:7:\"cellcid\";s:5:\"c4051\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:4:\"Name\";s:9:\"field_key\";s:18:\"name_1534954806801\";s:5:\"value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"315px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"15\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:20:\"element_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:0:\"\";}s:2:\"id\";i:49;}i:2;a:2:{s:8:\"settings\";a:44:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"3\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:5:\"email\";s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:19:\"email_1534954365299\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:16:\"emailFromAddress\";s:9:\"help_text\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"email\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"1\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4054\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:5:\"Email\";s:9:\"field_key\";s:19:\"email_1534954365299\";s:5:\"value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"315px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"15\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:20:\"element_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:0:\"\";}s:2:\"id\";i:50;}i:3;a:2:{s:8:\"settings\";a:50:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"4\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:5:\"phone\";s:5:\"label\";s:5:\"Phone\";s:3:\"key\";s:19:\"phone_1534954373936\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:12:\"contactPhone\";s:9:\"help_text\";s:0:\"\";s:4:\"mask\";s:14:\"(999) 999-9999\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"phone\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"1\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4057\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:5:\"Phone\";s:9:\"field_key\";s:19:\"phone_1534954373936\";s:5:\"value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"315px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"15\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:20:\"element_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:0:\"\";}s:2:\"id\";i:51;}i:4;a:2:{s:8:\"settings\";a:50:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"5\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:3:\"zip\";s:5:\"label\";s:3:\"Zip\";s:3:\"key\";s:17:\"zip_1534954373399\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:10:\"contactZip\";s:9:\"help_text\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:3:\"zip\";s:23:\"personally_identifiable\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"1\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4060\";s:11:\"field_label\";s:3:\"Zip\";s:9:\"field_key\";s:17:\"zip_1534954373399\";s:5:\"value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"315px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"15\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:20:\"element_styles_float\";s:0:\"\";s:14:\"drawerDisabled\";b:0;s:20:\"wrap_styles_advanced\";s:0:\"\";}s:2:\"id\";i:52;}i:5;a:2:{s:8:\"settings\";a:64:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"6\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:9:\"liststate\";s:5:\"label\";s:9:\"US States\";s:3:\"key\";s:23:\"liststate_1534954369789\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"options\";a:54:{i:0;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Alabama\";s:5:\"value\";s:2:\"AL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:1;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Alaska\";s:5:\"value\";s:2:\"AK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:2;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Arizona\";s:5:\"value\";s:2:\"AZ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:2;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:3;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Arkansas\";s:5:\"value\";s:2:\"AR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:3;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:4;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"California\";s:5:\"value\";s:2:\"CA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:4;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:5;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Colorado\";s:5:\"value\";s:2:\"CO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:5;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:6;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:11:\"Connecticut\";s:5:\"value\";s:2:\"CT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:6;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:7;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Delaware\";s:5:\"value\";s:2:\"DE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:7;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:8;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Florida\";s:5:\"value\";s:2:\"FL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:8;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:9;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Georgia\";s:5:\"value\";s:2:\"GA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:9;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:10;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Hawaii\";s:5:\"value\";s:2:\"HI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:10;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:11;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Idaho\";s:5:\"value\";s:2:\"ID\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:11;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:12;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Illinois\";s:5:\"value\";s:2:\"IL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:12;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:13;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Indiana\";s:5:\"value\";s:2:\"IN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:13;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:14;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Iowa\";s:5:\"value\";s:2:\"IA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:14;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:15;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Kansas\";s:5:\"value\";s:2:\"KS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:15;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:16;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Kentucky\";s:5:\"value\";s:2:\"KY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:16;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:17;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Louisiana\";s:5:\"value\";s:2:\"LA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:17;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:18;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Maine\";s:5:\"value\";s:2:\"ME\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:18;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:19;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Maryland\";s:5:\"value\";s:2:\"MD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:19;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:20;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"Massachusetts\";s:5:\"value\";s:2:\"MA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:20;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:21;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Michigan\";s:5:\"value\";s:2:\"MI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:21;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:22;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Minnesota\";s:5:\"value\";s:2:\"MN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:22;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:23;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:11:\"Mississippi\";s:5:\"value\";s:2:\"MS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:23;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:24;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Missouri\";s:5:\"value\";s:2:\"MO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:24;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:25;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Montana\";s:5:\"value\";s:2:\"MT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:25;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:26;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Nebraska\";s:5:\"value\";s:2:\"NE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:26;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:27;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Nevada\";s:5:\"value\";s:2:\"NV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:27;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:28;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"New Hampshire\";s:5:\"value\";s:2:\"NH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:28;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:29;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"New Jersey\";s:5:\"value\";s:2:\"NJ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:29;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:30;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"New Mexico\";s:5:\"value\";s:2:\"NM\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:30;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:31;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"New York\";s:5:\"value\";s:2:\"NY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:31;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:32;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:14:\"North Carolina\";s:5:\"value\";s:2:\"NC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:32;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:33;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"North Dakota\";s:5:\"value\";s:2:\"ND\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:33;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:34;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Ohio\";s:5:\"value\";s:2:\"OH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:34;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:35;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Oklahoma\";s:5:\"value\";s:2:\"OK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:35;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:36;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Oregon\";s:5:\"value\";s:2:\"OR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:36;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:37;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"Pennsylvania\";s:5:\"value\";s:2:\"PA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:37;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:38;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"Rhode Island\";s:5:\"value\";s:2:\"RI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:38;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:39;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:14:\"South Carolina\";s:5:\"value\";s:2:\"SC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:39;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:40;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"South Dakota\";s:5:\"value\";s:2:\"SD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:40;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:41;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Tennessee\";s:5:\"value\";s:2:\"TN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:41;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:42;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Texas\";s:5:\"value\";s:2:\"TX\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:42;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:43;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Utah\";s:5:\"value\";s:2:\"UT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:43;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:44;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Vermont\";s:5:\"value\";s:2:\"VT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:44;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:45;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Virginia\";s:5:\"value\";s:2:\"VA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:45;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:46;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"Washington\";s:5:\"value\";s:2:\"WA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:46;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:47;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"West Virginia\";s:5:\"value\";s:2:\"WV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:47;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:48;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Wisconsin\";s:5:\"value\";s:2:\"WI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:48;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:49;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Wyoming\";s:5:\"value\";s:2:\"WY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:49;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:50;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"Washington DC\";s:5:\"value\";s:2:\"DC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:50;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:51;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:51:\"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST\";s:5:\"value\";s:2:\"AE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:51;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:52;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:36:\"ARMED FORCES AMERICA (EXCEPT CANADA)\";s:5:\"value\";s:2:\"AA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:52;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:53;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:20:\"ARMED FORCES PACIFIC\";s:5:\"value\";s:2:\"AP\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:53;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}}s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"1\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:38:\"list_item_row_styles_show_advanced_css\";s:1:\"0\";s:40:\"list_item_label_styles_show_advanced_css\";s:1:\"0\";s:42:\"list_item_element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4063\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:9:\"US States\";s:9:\"field_key\";s:23:\"liststate_1534954369789\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"315px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"15\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:20:\"element_styles_float\";s:0:\"\";s:27:\"list_item_row_styles_border\";s:0:\"\";s:27:\"list_item_row_styles_height\";s:0:\"\";s:26:\"list_item_row_styles_width\";s:0:\"\";s:30:\"list_item_row_styles_font-size\";s:0:\"\";s:27:\"list_item_row_styles_margin\";s:0:\"\";s:28:\"list_item_row_styles_padding\";s:0:\"\";s:26:\"list_item_row_styles_float\";s:0:\"\";s:29:\"list_item_label_styles_border\";s:0:\"\";s:29:\"list_item_label_styles_height\";s:0:\"\";s:28:\"list_item_label_styles_width\";s:0:\"\";s:32:\"list_item_label_styles_font-size\";s:0:\"\";s:29:\"list_item_label_styles_margin\";s:0:\"\";s:30:\"list_item_label_styles_padding\";s:0:\"\";s:28:\"list_item_label_styles_float\";s:0:\"\";s:31:\"list_item_element_styles_border\";s:0:\"\";s:31:\"list_item_element_styles_height\";s:0:\"\";s:30:\"list_item_element_styles_width\";s:0:\"\";s:34:\"list_item_element_styles_font-size\";s:2:\"15\";s:31:\"list_item_element_styles_margin\";s:0:\"\";s:32:\"list_item_element_styles_padding\";s:5:\"8.5px\";s:30:\"list_item_element_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:0:\"\";}s:2:\"id\";i:53;}i:6;a:2:{s:8:\"settings\";a:35:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"7\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:19:\"Contact Preferences\";s:7:\"default\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4066\";s:3:\"key\";s:33:\"contact_preferences_1534954782835\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:19:\"Contact Preferences\";s:9:\"field_key\";s:33:\"contact_preferences_1534954782835\";}s:2:\"id\";i:54;}i:7;a:2:{s:8:\"settings\";a:64:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"8\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:12:\"listcheckbox\";s:5:\"label\";s:35:\"How Would You Like To Be Contacted?\";s:3:\"key\";s:48:\"how_would_you_like_to_be_contacted_1534954740097\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"options\";a:2:{i:0;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Phone\";s:5:\"value\";s:5:\"phone\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";s:1:\"0\";s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:1;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Email\";s:5:\"value\";s:5:\"email\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";s:1:\"1\";s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}}s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:11:\"contactPref\";s:9:\"help_text\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"1\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:38:\"list_item_row_styles_show_advanced_css\";s:1:\"0\";s:40:\"list_item_label_styles_show_advanced_css\";s:1:\"0\";s:42:\"list_item_element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4069\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:35:\"How Would You Like To Be Contacted?\";s:9:\"field_key\";s:48:\"how_would_you_like_to_be_contacted_1534954740097\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"315px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:27:\"list_item_row_styles_border\";s:0:\"\";s:27:\"list_item_row_styles_height\";s:0:\"\";s:26:\"list_item_row_styles_width\";s:0:\"\";s:30:\"list_item_row_styles_font-size\";s:2:\"15\";s:27:\"list_item_row_styles_margin\";s:0:\"\";s:28:\"list_item_row_styles_padding\";s:5:\"8.5px\";s:26:\"list_item_row_styles_float\";s:0:\"\";s:29:\"list_item_label_styles_border\";s:0:\"\";s:29:\"list_item_label_styles_height\";s:0:\"\";s:28:\"list_item_label_styles_width\";s:0:\"\";s:32:\"list_item_label_styles_font-size\";s:0:\"\";s:29:\"list_item_label_styles_margin\";s:0:\"\";s:30:\"list_item_label_styles_padding\";s:0:\"\";s:28:\"list_item_label_styles_float\";s:0:\"\";s:31:\"list_item_element_styles_border\";s:0:\"\";s:31:\"list_item_element_styles_height\";s:0:\"\";s:30:\"list_item_element_styles_width\";s:0:\"\";s:34:\"list_item_element_styles_font-size\";s:2:\"15\";s:31:\"list_item_element_styles_margin\";s:0:\"\";s:32:\"list_item_element_styles_padding\";s:5:\"8.5px\";s:30:\"list_item_element_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:0:\"\";}s:2:\"id\";i:55;}i:8;a:2:{s:8:\"settings\";a:49:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:2:\"10\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:8:\"textarea\";s:5:\"label\";s:37:\"Brief Description of Your Legal Issue\";s:3:\"key\";s:51:\"brief_description_of_your_legal_issue_1534954647282\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:11:\"formComment\";s:9:\"help_text\";s:0:\"\";s:12:\"textarea_rte\";s:0:\"\";s:18:\"disable_rte_mobile\";s:0:\"\";s:14:\"textarea_media\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"1\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4072\";s:11:\"field_label\";s:37:\"Brief Description of Your Legal Issue\";s:9:\"field_key\";s:51:\"brief_description_of_your_legal_issue_1534954647282\";s:5:\"value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"315px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:4:\"12.5\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"7.5px\";s:20:\"element_styles_float\";s:0:\"\";s:14:\"drawerDisabled\";b:0;s:20:\"wrap_styles_advanced\";s:0:\"\";}s:2:\"id\";i:56;}i:9;a:2:{s:8:\"settings\";a:36:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:2:\"11\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:0:\"\";s:7:\"default\";s:899:\"<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a>&nbsp;</div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"1\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4075\";s:3:\"key\";s:28:\"privacy_policy_1534954542111\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:0:\"\";s:9:\"field_key\";s:28:\"privacy_policy_1534954542111\";s:20:\"wrap_styles_advanced\";s:0:\"\";}s:2:\"id\";i:57;}i:10;a:2:{s:8:\"settings\";a:47:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:2:\"12\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:8:\"checkbox\";s:5:\"label\";s:26:\"I Have Read The Disclaimer\";s:3:\"key\";s:40:\"i_have_read_the_disclaimer_1534954562191\";s:9:\"label_pos\";s:5:\"right\";s:8:\"required\";s:1:\"1\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:14:\"readDisclaimer\";s:9:\"help_text\";s:0:\"\";s:13:\"default_value\";s:9:\"unchecked\";s:13:\"checked_value\";s:0:\"\";s:15:\"unchecked_value\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"1\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4078\";s:14:\"drawerDisabled\";b:0;s:7:\"default\";s:9:\"unchecked\";s:11:\"field_label\";s:26:\"I Have Read The Disclaimer\";s:9:\"field_key\";s:40:\"i_have_read_the_disclaimer_1534954562191\";s:5:\"value\";s:9:\"unchecked\";s:18:\"checked_calc_value\";s:0:\"\";s:20:\"unchecked_calc_value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"315px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:0:\"\";}s:2:\"id\";i:58;}i:11;a:2:{s:8:\"settings\";a:36:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:2:\"13\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:6:\"submit\";s:5:\"label\";s:6:\"Submit\";s:16:\"processing_label\";s:10:\"Processing\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:3:\"key\";s:20:\"submit_1663177781078\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"1\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:45:\"submit_element_hover_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4081\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:4:\"Send\";s:9:\"field_key\";s:18:\"send_1562680674669\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:34:\"submit_element_hover_styles_border\";s:0:\"\";s:33:\"submit_element_hover_styles_width\";s:0:\"\";s:37:\"submit_element_hover_styles_font-size\";s:0:\"\";s:34:\"submit_element_hover_styles_margin\";s:0:\"\";s:35:\"submit_element_hover_styles_padding\";s:0:\"\";s:33:\"submit_element_hover_styles_float\";s:0:\"\";}s:2:\"id\";i:59;}}s:7:\"actions\";a:4:{i:0;a:2:{s:8:\"settings\";a:26:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-09-14 11:40:30\";s:5:\"label\";s:17:\"Record Submission\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:2:\"to\";s:16:\"{wp:admin_email}\";s:8:\"reply_to\";s:0:\"\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:19:\"email_message_plain\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:11:\"success_msg\";s:42:\"Your form has been successfully submitted.\";s:12:\"redirect_url\";s:0:\"\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";s:1:\"0\";s:16:\"subs_expire_time\";s:2:\"90\";s:14:\"drawerDisabled\";s:0:\"\";}s:2:\"id\";i:23;}i:1;a:2:{s:8:\"settings\";a:19:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-09-14 11:40:30\";s:5:\"label\";s:18:\"Email Confirmation\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:2:\"to\";s:27:\"{field:email_1534954365299}\";s:8:\"reply_to\";s:0:\"\";s:13:\"email_subject\";s:50:\"Your message to The Law Offices of Melissa A. Day \";s:13:\"email_message\";s:154:\"<p>Your message to The Law Offices of Melissa A. Day has been submitted and sent. A member of our team will be in touch soon!</p><p>{all_fields_table}</p>\";s:19:\"email_message_plain\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:14:\"drawerDisabled\";s:0:\"\";}s:2:\"id\";i:24;}i:2;a:2:{s:8:\"settings\";a:19:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-09-14 11:40:30\";s:5:\"label\";s:18:\"Email Notification\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:2:\"to\";s:21:\"mail@madwcdefense.com\";s:8:\"reply_to\";s:0:\"\";s:13:\"email_subject\";s:30:\"New message from {field:name} \";s:13:\"email_message\";s:150:\"<p>A message has been received via the \"Contact/Refer a Claim\" form on the firm website. See the details below.&nbsp;</p><p>{all_fields_table}<br></p>\";s:19:\"email_message_plain\";s:0:\"\";s:9:\"from_name\";s:46:\"{field:name_1534954806801} (via LOMAD Website)\";s:12:\"from_address\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:25:\"hearings@madwcdefense.com\";s:3:\"bcc\";s:0:\"\";s:14:\"drawerDisabled\";s:0:\"\";}s:2:\"id\";i:25;}i:3;a:2:{s:8:\"settings\";a:20:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-09-14 11:40:30\";s:5:\"label\";s:15:\"Success Message\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:2:\"to\";s:16:\"{wp:admin_email}\";s:8:\"reply_to\";s:0:\"\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:19:\"email_message_plain\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:11:\"success_msg\";s:379:\"<p style=\"text-align: center;\">Your message to The Law Offices of Melissa A. Day has been successfully submitted.</p><p style=\"text-align: center;\">A confirmation email was sent to {field:email_1534954365299}. Please check your junk/spam folder for the confirmation.</p><p style=\"text-align: center;\">Thank you for your submission! A member of our team will contact you soon.</p>\";s:14:\"drawerDisabled\";s:0:\"\";}s:2:\"id\";i:26;}}s:8:\"settings\";a:91:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";b:1;s:5:\"title\";s:18:\"Long Form - mobile\";s:10:\"created_at\";s:19:\"2022-09-14 11:40:30\";s:17:\"default_label_pos\";s:5:\"above\";s:10:\"show_title\";s:1:\"0\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:9:\"logged_in\";s:1:\"0\";s:13:\"wrapper_class\";s:12:\"fl-long-form\";s:13:\"element_class\";s:0:\"\";s:3:\"key\";s:0:\"\";s:10:\"add_submit\";s:1:\"0\";s:8:\"currency\";s:0:\"\";s:18:\"unique_field_error\";s:50:\"A form with this value has already been submitted.\";s:17:\"not_logged_in_msg\";s:0:\"\";s:13:\"sub_limit_msg\";s:42:\"The form has reached its submission limit.\";s:12:\"calculations\";a:0:{}s:34:\"container_styles_show_advanced_css\";s:1:\"0\";s:30:\"title_styles_show_advanced_css\";s:1:\"0\";s:28:\"row_styles_show_advanced_css\";s:1:\"0\";s:32:\"row-odd_styles_show_advanced_css\";s:1:\"0\";s:36:\"success-msg_styles_show_advanced_css\";s:1:\"1\";s:34:\"error_msg_styles_show_advanced_css\";s:1:\"0\";s:15:\"formContentData\";a:1:{i:0;a:6:{s:15:\"formContentData\";a:12:{i:0;a:2:{s:5:\"order\";i:1;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:34:\"personal_information_1534954814742\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";i:2;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"name_1534954806801\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:3;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"email_1534954365299\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";i:4;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"phone_1534954373936\";}s:5:\"width\";s:3:\"100\";}}}i:4;a:2:{s:5:\"order\";i:5;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:17:\"zip_1534954373399\";}s:5:\"width\";s:3:\"100\";}}}i:5;a:2:{s:5:\"order\";i:6;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:23:\"liststate_1534954369789\";}s:5:\"width\";s:3:\"100\";}}}i:6;a:2:{s:5:\"order\";i:7;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:33:\"contact_preferences_1534954782835\";}s:5:\"width\";s:3:\"100\";}}}i:7;a:2:{s:5:\"order\";i:8;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:48:\"how_would_you_like_to_be_contacted_1534954740097\";}s:5:\"width\";s:3:\"100\";}}}i:8;a:2:{s:5:\"order\";i:10;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:51:\"brief_description_of_your_legal_issue_1534954647282\";}s:5:\"width\";s:3:\"100\";}}}i:9;a:2:{s:5:\"order\";i:11;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:28:\"privacy_policy_1534954542111\";}s:5:\"width\";s:3:\"100\";}}}i:10;a:2:{s:5:\"order\";i:12;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:40:\"i_have_read_the_disclaimer_1534954562191\";}s:5:\"width\";s:3:\"100\";}}}i:11;a:2:{s:5:\"order\";i:13;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:20:\"submit_1663177781078\";}s:5:\"width\";s:3:\"100\";}}}}s:5:\"order\";i:0;s:4:\"type\";s:4:\"part\";s:5:\"clean\";b:1;s:5:\"title\";s:10:\"Part Title\";s:3:\"key\";s:7:\"znhzdws\";}}s:19:\"changeEmailErrorMsg\";s:0:\"\";s:18:\"changeDateErrorMsg\";s:0:\"\";s:20:\"confirmFieldErrorMsg\";s:0:\"\";s:22:\"fieldNumberNumMinError\";s:0:\"\";s:22:\"fieldNumberNumMaxError\";s:0:\"\";s:22:\"fieldNumberIncrementBy\";s:0:\"\";s:23:\"formErrorsCorrectErrors\";s:0:\"\";s:21:\"validateRequiredField\";s:0:\"\";s:21:\"honeypotHoneypotError\";s:0:\"\";s:20:\"fieldsMarkedRequired\";s:0:\"\";s:14:\"drawerDisabled\";b:0;s:20:\"repeatable_fieldsets\";s:0:\"\";s:10:\"conditions\";a:0:{}s:13:\"mp_breadcrumb\";s:1:\"1\";s:15:\"mp_progress_bar\";s:1:\"1\";s:17:\"mp_display_titles\";s:1:\"0\";s:45:\"breadcrumb_container_styles_show_advanced_css\";s:1:\"0\";s:43:\"breadcrumb_buttons_styles_show_advanced_css\";s:1:\"0\";s:48:\"breadcrumb_button_hover_styles_show_advanced_css\";s:1:\"0\";s:49:\"breadcrumb_active_button_styles_show_advanced_css\";s:1:\"0\";s:47:\"progress_bar_container_styles_show_advanced_css\";s:1:\"0\";s:42:\"progress_bar_fill_styles_show_advanced_css\";s:1:\"0\";s:36:\"part_titles_styles_show_advanced_css\";s:1:\"0\";s:45:\"navigation_container_styles_show_advanced_css\";s:1:\"0\";s:40:\"previous_button_styles_show_advanced_css\";s:1:\"0\";s:36:\"next_button_styles_show_advanced_css\";s:1:\"0\";s:41:\"navigation_hover_styles_show_advanced_css\";s:1:\"0\";s:23:\"container_styles_border\";s:0:\"\";s:23:\"container_styles_height\";s:0:\"\";s:23:\"container_styles_margin\";s:0:\"\";s:24:\"container_styles_padding\";s:0:\"\";s:22:\"container_styles_float\";s:0:\"\";s:19:\"title_styles_border\";s:0:\"\";s:19:\"title_styles_height\";s:0:\"\";s:18:\"title_styles_width\";s:0:\"\";s:22:\"title_styles_font-size\";s:0:\"\";s:19:\"title_styles_margin\";s:0:\"\";s:20:\"title_styles_padding\";s:0:\"\";s:18:\"title_styles_float\";s:0:\"\";s:17:\"row_styles_border\";s:0:\"\";s:16:\"row_styles_width\";s:0:\"\";s:20:\"row_styles_font-size\";s:0:\"\";s:17:\"row_styles_margin\";s:0:\"\";s:18:\"row_styles_padding\";s:0:\"\";s:21:\"row-odd_styles_border\";s:0:\"\";s:21:\"row-odd_styles_height\";s:0:\"\";s:20:\"row-odd_styles_width\";s:0:\"\";s:24:\"row-odd_styles_font-size\";s:0:\"\";s:21:\"row-odd_styles_margin\";s:0:\"\";s:22:\"row-odd_styles_padding\";s:0:\"\";s:35:\"success-msg_styles_background-color\";s:9:\"#d8d8d8A6\";s:25:\"success-msg_styles_border\";s:0:\"\";s:24:\"success-msg_styles_color\";s:7:\"#211865\";s:25:\"success-msg_styles_height\";s:0:\"\";s:24:\"success-msg_styles_width\";s:0:\"\";s:28:\"success-msg_styles_font-size\";s:4:\"22px\";s:25:\"success-msg_styles_margin\";s:0:\"\";s:26:\"success-msg_styles_padding\";s:0:\"\";s:27:\"success-msg_styles_advanced\";s:75:\"font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\";s:23:\"error_msg_styles_border\";s:0:\"\";s:22:\"error_msg_styles_width\";s:0:\"\";s:26:\"error_msg_styles_font-size\";s:0:\"\";s:23:\"error_msg_styles_margin\";s:0:\"\";s:24:\"error_msg_styles_padding\";s:0:\"\";s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";}s:14:\"deleted_fields\";a:0:{}s:15:\"deleted_actions\";a:0:{}}',4,_binary '\0'),(8,'a:7:{s:2:\"id\";i:8;s:20:\"show_publish_options\";b:0;s:6:\"fields\";a:7:{i:0;a:2:{s:8:\"settings\";a:76:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"1\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:4:\"name\";s:4:\"type\";s:7:\"textbox\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:9:\"label_pos\";s:6:\"hidden\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:5:\"Name*\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:11:\"<p><br></p>\";s:9:\"desc_text\";s:11:\"<p><br></p>\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"12\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"1\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3972\";s:11:\"field_label\";s:4:\"Name\";s:9:\"field_key\";s:4:\"name\";s:21:\"custom_name_attribute\";s:0:\"\";s:23:\"personally_identifiable\";s:0:\"\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:60;}i:1;a:2:{s:8:\"settings\";a:68:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"2\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:5:\"email\";s:4:\"type\";s:5:\"email\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:9:\"label_pos\";s:6:\"hidden\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:6:\"Email*\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"12\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3975\";s:11:\"field_label\";s:5:\"Email\";s:9:\"field_key\";s:5:\"email\";s:21:\"custom_name_attribute\";s:5:\"email\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";s:0:\"\";}s:2:\"id\";i:61;}i:2;a:2:{s:8:\"settings\";a:50:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"3\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:5:\"phone\";s:5:\"label\";s:12:\"Phone Number\";s:3:\"key\";s:26:\"phone_number_1662652113554\";s:9:\"label_pos\";s:6:\"hidden\";s:8:\"required\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:13:\"Phone Number*\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:12:\"Phone Number\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3977\";s:5:\"value\";s:0:\"\";s:10:\"oldCellcid\";s:5:\"c4215\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"12\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:20:\"element_styles_float\";s:0:\"\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:12:\"Phone Number\";s:9:\"field_key\";s:26:\"phone_number_1662652113554\";}s:2:\"id\";i:64;}i:3;a:2:{s:8:\"settings\";a:75:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"4\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:7:\"Message\";s:3:\"key\";s:7:\"message\";s:4:\"type\";s:8:\"textarea\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:9:\"label_pos\";s:6:\"hidden\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:36:\"Enter your message or request here. \";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:12:\"textarea_rte\";s:0:\"\";s:18:\"disable_rte_mobile\";s:0:\"\";s:14:\"textarea_media\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:4:\"12.5\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:3:\"7.5\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3980\";s:11:\"field_label\";s:7:\"Message\";s:9:\"field_key\";s:7:\"message\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";s:0:\"\";}s:2:\"id\";i:62;}i:4;a:2:{s:8:\"settings\";a:36:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"5\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:4:\"HTML\";s:7:\"default\";s:899:\"<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a>&nbsp;</div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"1\";s:3:\"key\";s:18:\"html_1662651382914\";s:7:\"cellcid\";s:5:\"c3983\";s:14:\"drawerDisabled\";s:0:\"\";s:23:\"element_styles_advanced\";s:26:\"body {\n  color: #ffffff;\n}\";s:11:\"field_label\";s:4:\"HTML\";s:9:\"field_key\";s:18:\"html_1662651382914\";}s:2:\"id\";i:65;}i:5;a:2:{s:8:\"settings\";a:76:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"6\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:12:\"listcheckbox\";s:5:\"label\";s:13:\"Checkbox List\";s:3:\"key\";s:26:\"listcheckbox_1662663562280\";s:9:\"label_pos\";s:6:\"hidden\";s:8:\"required\";s:0:\"\";s:7:\"options\";a:2:{i:0;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:26:\"I Have Read the Disclaimer\";s:5:\"value\";s:26:\"I Have Read the Disclaimer\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}i:1;a:9:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:36:\"I Acknowledge and Agree to its Terms\";s:5:\"value\";s:36:\"I Acknowledge and Agree to its Terms\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:1;s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}s:12:\"manual_value\";b:1;}}s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:19:\"lm-ignore-checkbox6\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"1\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"1\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"1\";s:27:\"list_item_row_styles_border\";s:0:\"\";s:27:\"list_item_row_styles_height\";s:0:\"\";s:26:\"list_item_row_styles_width\";s:0:\"\";s:30:\"list_item_row_styles_font-size\";s:0:\"\";s:27:\"list_item_row_styles_margin\";s:0:\"\";s:28:\"list_item_row_styles_padding\";s:0:\"\";s:26:\"list_item_row_styles_float\";s:0:\"\";s:38:\"list_item_row_styles_show_advanced_css\";s:1:\"1\";s:29:\"list_item_label_styles_border\";s:0:\"\";s:29:\"list_item_label_styles_height\";s:0:\"\";s:28:\"list_item_label_styles_width\";s:0:\"\";s:32:\"list_item_label_styles_font-size\";s:0:\"\";s:29:\"list_item_label_styles_margin\";s:0:\"\";s:30:\"list_item_label_styles_padding\";s:0:\"\";s:28:\"list_item_label_styles_float\";s:0:\"\";s:40:\"list_item_label_styles_show_advanced_css\";s:1:\"1\";s:31:\"list_item_element_styles_border\";s:0:\"\";s:31:\"list_item_element_styles_height\";s:0:\"\";s:30:\"list_item_element_styles_width\";s:0:\"\";s:34:\"list_item_element_styles_font-size\";s:4:\"12.5\";s:31:\"list_item_element_styles_margin\";s:0:\"\";s:32:\"list_item_element_styles_padding\";s:3:\"5px\";s:30:\"list_item_element_styles_float\";s:0:\"\";s:42:\"list_item_element_styles_show_advanced_css\";s:1:\"1\";s:7:\"cellcid\";s:5:\"c3985\";s:14:\"drawerDisabled\";s:0:\"\";s:9:\"cellOrder\";s:1:\"1\";s:28:\"list_item_row_styles_display\";s:0:\"\";s:30:\"list_item_label_styles_display\";s:0:\"\";s:32:\"list_item_element_styles_display\";s:0:\"\";s:31:\"element_styles_background-color\";s:7:\"#ffffff\";s:27:\"element_styles_border-style\";s:5:\"solid\";s:27:\"element_styles_border-color\";s:7:\"#000000\";s:20:\"wrap_styles_advanced\";s:19:\"lm-ignore-checkbox1\";s:21:\"label_styles_advanced\";s:19:\"lm-ignore-checkbox2\";s:23:\"element_styles_advanced\";s:19:\"lm-ignore-checkbox3\";s:29:\"list_item_row_styles_advanced\";s:19:\"lm-ignore-checkbox4\";s:31:\"list_item_label_styles_advanced\";s:19:\"lm-ignore-checkbox4\";s:33:\"list_item_element_styles_advanced\";s:19:\"lm-ignore-checkbox5\";s:11:\"field_label\";s:13:\"Checkbox List\";s:9:\"field_key\";s:26:\"listcheckbox_1662663562280\";}s:2:\"id\";i:66;}i:6;a:2:{s:8:\"settings\";a:72:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"7\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:6:\"Submit\";s:3:\"key\";s:6:\"submit\";s:4:\"type\";s:6:\"submit\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:16:\"processing_label\";s:10:\"Processing\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"1\";s:23:\"element_styles_advanced\";s:281:\"background: #fff !important;\ncolor: #211865 !important;\nfont-size: 17px !important;\nfont-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\npadding: 15px 25px !important;\ntext-transform: uppercase !important;\nfont-weight: 400 !important;\nfloat:right !important;\";s:44:\"submit_element_hover_styles_background-color\";s:7:\"#211865\";s:34:\"submit_element_hover_styles_border\";s:0:\"\";s:40:\"submit_element_hover_styles_border-style\";s:0:\"\";s:40:\"submit_element_hover_styles_border-color\";s:0:\"\";s:33:\"submit_element_hover_styles_color\";s:7:\"#ffffff\";s:34:\"submit_element_hover_styles_height\";s:0:\"\";s:33:\"submit_element_hover_styles_width\";s:0:\"\";s:37:\"submit_element_hover_styles_font-size\";s:0:\"\";s:34:\"submit_element_hover_styles_margin\";s:0:\"\";s:35:\"submit_element_hover_styles_padding\";s:0:\"\";s:35:\"submit_element_hover_styles_display\";s:0:\"\";s:33:\"submit_element_hover_styles_float\";s:0:\"\";s:45:\"submit_element_hover_styles_show_advanced_css\";s:1:\"1\";s:36:\"submit_element_hover_styles_advanced\";s:1:\"\n\";s:7:\"cellcid\";s:5:\"c3987\";s:11:\"field_label\";s:6:\"Submit\";s:9:\"field_key\";s:6:\"submit\";s:14:\"drawerDisabled\";s:0:\"\";}s:2:\"id\";i:63;}}s:7:\"actions\";a:4:{i:0;a:2:{s:8:\"settings\";a:30:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-09-19 13:56:01\";s:5:\"label\";s:17:\"Record Submission\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";s:11:\"success_msg\";s:42:\"Your form has been successfully submitted.\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";s:1:\"0\";s:16:\"subs_expire_time\";s:2:\"90\";}s:2:\"id\";i:27;}i:1;a:2:{s:8:\"settings\";a:26:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-09-19 13:56:01\";s:5:\"label\";s:18:\"Email Confirmation\";s:2:\"to\";s:13:\"{field:email}\";s:7:\"subject\";s:24:\"This is an email action.\";s:7:\"message\";s:19:\"Hello, Ninja Forms!\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:50:\"Your message to The Law Offices of Melissa A. Day \";s:13:\"email_message\";s:158:\"<p>Your message to The Law Offices of Melissa A. Day has been submitted and sent. A member of our team will be in touch soon!</p><p>{all_fields_table}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";s:14:\"drawerDisabled\";s:0:\"\";}s:2:\"id\";i:28;}i:2;a:2:{s:8:\"settings\";a:25:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-09-19 13:56:01\";s:5:\"label\";s:18:\"Email Notification\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:21:\"mail@madwcdefense.com\";s:13:\"email_subject\";s:30:\"New message from {field:name} \";s:13:\"email_message\";s:222:\"<p>A message has been received via the \"Contact/Refer a Claim form\" on the firm website. See the details below.&nbsp;</p><p>{field:name}<br>{field:email}<br>{field:phone_number_1662652113554}<br>{field:message}<br><br></p>\";s:9:\"from_name\";s:32:\"{field:name} (via LOMAD Website)\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:25:\"hearings@madwcdefense.com\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:1:\"0\";s:19:\"email_message_plain\";s:0:\"\";s:14:\"drawerDisabled\";s:0:\"\";}s:2:\"id\";i:29;}i:3;a:2:{s:8:\"settings\";a:27:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-09-19 13:56:01\";s:5:\"label\";s:15:\"Success Message\";s:7:\"message\";s:47:\"Thank you {field:name} for filling out my form!\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:11:\"success_msg\";s:366:\"<p style=\"text-align: center;\">Your message to The Law Offices of Melissa A. Day has been successfully submitted.</p><p style=\"text-align: center;\">A confirmation email was sent to {field:email}. Please check your junk/spam folder for the confirmation.</p><p style=\"text-align: center;\"> Thank you for your submission! A member of our team will contact you soon.</p>\";s:19:\"email_message_plain\";s:0:\"\";s:14:\"drawerDisabled\";s:0:\"\";}s:2:\"id\";i:30;}}s:8:\"settings\";a:128:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";b:1;s:5:\"title\";s:32:\"Contact - Refer a Claim - Mobile\";s:10:\"created_at\";s:19:\"2022-09-19 13:56:01\";s:17:\"default_label_pos\";s:6:\"hidden\";s:10:\"show_title\";s:1:\"0\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:9:\"logged_in\";s:1:\"0\";s:3:\"key\";s:0:\"\";s:10:\"conditions\";a:0:{}s:13:\"wrapper_class\";s:18:\"lm-ignore-checkbox\";s:13:\"element_class\";s:0:\"\";s:10:\"add_submit\";s:1:\"1\";s:17:\"not_logged_in_msg\";s:0:\"\";s:16:\"sub_limit_number\";s:0:\"\";s:13:\"sub_limit_msg\";s:0:\"\";s:12:\"calculations\";a:0:{}s:15:\"formContentData\";a:1:{i:0;a:8:{s:15:\"formContentData\";a:3:{i:0;a:2:{s:5:\"order\";i:0;s:5:\"cells\";a:3:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:4:\"name\";}s:5:\"width\";i:33;}i:1;a:3:{s:5:\"order\";i:1;s:6:\"fields\";a:1:{i:0;s:5:\"email\";}s:5:\"width\";i:33;}i:2;a:3:{s:5:\"order\";i:2;s:6:\"fields\";a:1:{i:0;s:26:\"phone_number_1662652113554\";}s:5:\"width\";i:33;}}}i:1;a:2:{s:5:\"order\";i:2;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:7:\"message\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:3;s:5:\"cells\";a:3:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"html_1662651382914\";}s:5:\"width\";i:33;}i:1;a:3:{s:5:\"order\";i:1;s:6:\"fields\";a:1:{i:0;s:26:\"listcheckbox_1662663562280\";}s:5:\"width\";i:33;}i:2;a:3:{s:5:\"order\";i:2;s:6:\"fields\";a:1:{i:0;s:6:\"submit\";}s:5:\"width\";i:33;}}}}s:5:\"order\";i:0;s:4:\"type\";s:4:\"part\";s:5:\"clean\";b:1;s:5:\"title\";s:10:\"Part Title\";s:3:\"key\";s:7:\"iyiqfgo\";s:10:\"editActive\";b:1;s:14:\"drawerDisabled\";b:0;}}s:33:\"container_styles_background-color\";s:0:\"\";s:23:\"container_styles_border\";s:0:\"\";s:29:\"container_styles_border-style\";s:0:\"\";s:29:\"container_styles_border-color\";s:0:\"\";s:22:\"container_styles_color\";s:0:\"\";s:23:\"container_styles_height\";s:0:\"\";s:22:\"container_styles_width\";s:0:\"\";s:26:\"container_styles_font-size\";s:0:\"\";s:23:\"container_styles_margin\";s:0:\"\";s:24:\"container_styles_padding\";s:0:\"\";s:24:\"container_styles_display\";s:0:\"\";s:22:\"container_styles_float\";s:0:\"\";s:34:\"container_styles_show_advanced_css\";s:1:\"1\";s:25:\"container_styles_advanced\";s:20:\"width: 50%!important\";s:29:\"title_styles_background-color\";s:0:\"\";s:19:\"title_styles_border\";s:0:\"\";s:25:\"title_styles_border-style\";s:0:\"\";s:25:\"title_styles_border-color\";s:0:\"\";s:18:\"title_styles_color\";s:0:\"\";s:19:\"title_styles_height\";s:0:\"\";s:18:\"title_styles_width\";s:0:\"\";s:22:\"title_styles_font-size\";s:0:\"\";s:19:\"title_styles_margin\";s:0:\"\";s:20:\"title_styles_padding\";s:0:\"\";s:20:\"title_styles_display\";s:0:\"\";s:18:\"title_styles_float\";s:0:\"\";s:30:\"title_styles_show_advanced_css\";s:1:\"0\";s:21:\"title_styles_advanced\";s:0:\"\";s:27:\"row_styles_background-color\";s:0:\"\";s:17:\"row_styles_border\";s:0:\"\";s:23:\"row_styles_border-style\";s:0:\"\";s:23:\"row_styles_border-color\";s:0:\"\";s:16:\"row_styles_color\";s:0:\"\";s:17:\"row_styles_height\";s:0:\"\";s:16:\"row_styles_width\";s:0:\"\";s:20:\"row_styles_font-size\";s:0:\"\";s:17:\"row_styles_margin\";s:0:\"\";s:18:\"row_styles_padding\";s:0:\"\";s:18:\"row_styles_display\";s:0:\"\";s:28:\"row_styles_show_advanced_css\";s:1:\"0\";s:19:\"row_styles_advanced\";s:0:\"\";s:31:\"row-odd_styles_background-color\";s:8:\"00FFFFFF\";s:21:\"row-odd_styles_border\";s:0:\"\";s:27:\"row-odd_styles_border-style\";s:0:\"\";s:27:\"row-odd_styles_border-color\";s:0:\"\";s:20:\"row-odd_styles_color\";s:0:\"\";s:21:\"row-odd_styles_height\";s:0:\"\";s:20:\"row-odd_styles_width\";s:0:\"\";s:24:\"row-odd_styles_font-size\";s:0:\"\";s:21:\"row-odd_styles_margin\";s:0:\"\";s:22:\"row-odd_styles_padding\";s:0:\"\";s:22:\"row-odd_styles_display\";s:0:\"\";s:32:\"row-odd_styles_show_advanced_css\";s:1:\"0\";s:23:\"row-odd_styles_advanced\";s:0:\"\";s:35:\"success-msg_styles_background-color\";s:9:\"#d8d8d8A6\";s:25:\"success-msg_styles_border\";s:0:\"\";s:31:\"success-msg_styles_border-style\";s:0:\"\";s:31:\"success-msg_styles_border-color\";s:0:\"\";s:24:\"success-msg_styles_color\";s:7:\"#211865\";s:25:\"success-msg_styles_height\";s:0:\"\";s:24:\"success-msg_styles_width\";s:0:\"\";s:28:\"success-msg_styles_font-size\";s:4:\"22px\";s:25:\"success-msg_styles_margin\";s:0:\"\";s:26:\"success-msg_styles_padding\";s:0:\"\";s:26:\"success-msg_styles_display\";s:0:\"\";s:36:\"success-msg_styles_show_advanced_css\";s:1:\"1\";s:27:\"success-msg_styles_advanced\";s:136:\"font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\nmargin: auto;\nwidth: 50%;\nmargin-left: 350px;\npadding: 27px\n\";s:33:\"error_msg_styles_background-color\";s:0:\"\";s:23:\"error_msg_styles_border\";s:0:\"\";s:29:\"error_msg_styles_border-style\";s:0:\"\";s:29:\"error_msg_styles_border-color\";s:0:\"\";s:22:\"error_msg_styles_color\";s:0:\"\";s:23:\"error_msg_styles_height\";s:0:\"\";s:22:\"error_msg_styles_width\";s:0:\"\";s:26:\"error_msg_styles_font-size\";s:0:\"\";s:23:\"error_msg_styles_margin\";s:0:\"\";s:24:\"error_msg_styles_padding\";s:0:\"\";s:24:\"error_msg_styles_display\";s:0:\"\";s:34:\"error_msg_styles_show_advanced_css\";s:1:\"0\";s:25:\"error_msg_styles_advanced\";s:0:\"\";s:8:\"currency\";s:0:\"\";s:18:\"unique_field_error\";s:50:\"A form with this value has already been submitted.\";s:13:\"mp_breadcrumb\";s:1:\"1\";s:15:\"mp_progress_bar\";s:1:\"1\";s:17:\"mp_display_titles\";s:1:\"0\";s:45:\"breadcrumb_container_styles_show_advanced_css\";s:1:\"0\";s:43:\"breadcrumb_buttons_styles_show_advanced_css\";s:1:\"0\";s:48:\"breadcrumb_button_hover_styles_show_advanced_css\";s:1:\"0\";s:49:\"breadcrumb_active_button_styles_show_advanced_css\";s:1:\"0\";s:47:\"progress_bar_container_styles_show_advanced_css\";s:1:\"0\";s:42:\"progress_bar_fill_styles_show_advanced_css\";s:1:\"0\";s:36:\"part_titles_styles_show_advanced_css\";s:1:\"0\";s:45:\"navigation_container_styles_show_advanced_css\";s:1:\"0\";s:40:\"previous_button_styles_show_advanced_css\";s:1:\"0\";s:36:\"next_button_styles_show_advanced_css\";s:1:\"0\";s:41:\"navigation_hover_styles_show_advanced_css\";s:1:\"0\";s:19:\"changeEmailErrorMsg\";s:0:\"\";s:18:\"changeDateErrorMsg\";s:0:\"\";s:20:\"confirmFieldErrorMsg\";s:0:\"\";s:22:\"fieldNumberNumMinError\";s:0:\"\";s:22:\"fieldNumberNumMaxError\";s:0:\"\";s:22:\"fieldNumberIncrementBy\";s:0:\"\";s:23:\"formErrorsCorrectErrors\";s:0:\"\";s:21:\"validateRequiredField\";s:0:\"\";s:21:\"honeypotHoneypotError\";s:0:\"\";s:20:\"fieldsMarkedRequired\";s:0:\"\";s:14:\"drawerDisabled\";b:0;s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";}s:14:\"deleted_fields\";a:0:{}s:15:\"deleted_actions\";a:0:{}}',4,_binary '\0');
/*!40000 ALTER TABLE `cuB_nf3_upgrades` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_ninja_forms_uploads`
--

DROP TABLE IF EXISTS `cuB_ninja_forms_uploads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_ninja_forms_uploads` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `form_id` int(11) NOT NULL,
  `field_id` int(11) NOT NULL,
  `data` longtext CHARACTER SET utf8 NOT NULL,
  `date_updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_ninja_forms_uploads`
--

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

--
-- Table structure for table `cuB_options`
--

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

--
-- Dumping data for table `cuB_options`
--

LOCK TABLES `cuB_options` WRITE;
/*!40000 ALTER TABLE `cuB_options` DISABLE KEYS */;
INSERT INTO `cuB_options` VALUES (1,'siteurl','https://thelomad.com','yes'),(2,'home','https://thelomad.com','yes'),(3,'blogname','The Law Offices of Melissa A. Day, PLLC','yes'),(4,'blogdescription','The Law Offices of Melissa A. Day, PLLC','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','mdoldan@madwcdefense.com','yes'),(7,'start_of_week','0','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','4','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/blog/%year%/%monthnum%/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(34,'category_base','','yes'),(35,'ping_sites','https://thelomad.com/getmad.today/wp-contentrpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','','yes'),(38,'default_email_category','0','yes'),(39,'recently_edited','','no'),(40,'template','Divi','yes'),(41,'stylesheet','Divi','yes'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','58975','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','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:3:{i:1;a:0:{}i:2;a:4:{s:5:\"title\";s:8:\"RSS Feed\";s:4:\"text\";s:86:\"<a href=\"/feed/atom/\" target=\"_blank\" rel=\"noopener\">Subscribe To This Blog\'s Feed</a>\";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:6:{s:27:\"ninja-forms/ninja-forms.php\";s:21:\"ninja_forms_uninstall\";s:33:\"classic-editor/classic-editor.php\";a:2:{i:0;s:14:\"Classic_Editor\";i:1;s:9:\"uninstall\";}s:27:\"redirection/redirection.php\";a:2:{i:0;s:17:\"Redirection_Admin\";i:1;s:16:\"plugin_uninstall\";}s:29:\"jch-optimize/jch-optimize.php\";a:2:{i:0;s:25:\"JchOptimize\\Plugin\\Loader\";i:1;s:20:\"runUninstallRoutines\";}s:45:\"enable-media-replace/enable-media-replace.php\";s:33:\"\\EnableMediaReplace\\emr_uninstall\";s:39:\"wp-external-links/wp-external-links.php\";a:2:{i:0;s:14:\"WPEL_Uninstall\";i:1;s:13:\"_cb_procedure\";}}','no'),(82,'timezone_string','America/New_York','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','6','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','47268','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','14','yes'),(92,'show_comments_cookies_opt_in','0','yes'),(93,'cuB_user_roles','a:9:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:176:{s:13:\"switch_themes\";b:1;s:16:\"activate_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:15:\"install_plugins\";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:6:\"export\";b:1;s:12:\"create_pages\";b:1;s:16:\"edit_ninja_forms\";b:1;s:11:\"edit_people\";b:1;s:11:\"read_people\";b:1;s:13:\"delete_people\";b:1;s:12:\"edit_peoples\";b:1;s:19:\"edit_others_peoples\";b:1;s:15:\"publish_peoples\";b:1;s:20:\"read_private_peoples\";b:1;s:18:\"edit_header_layout\";b:1;s:19:\"read_header_layouts\";b:1;s:21:\"delete_header_layouts\";b:1;s:21:\"create_header_layouts\";b:1;s:19:\"edit_header_layouts\";b:1;s:26:\"edit_others_header_layouts\";b:1;s:22:\"publish_header_layouts\";b:1;s:27:\"read_private_header_layouts\";b:1;s:19:\"create_shared_panel\";b:1;s:17:\"edit_shared_panel\";b:1;s:17:\"read_shared_panel\";b:1;s:19:\"delete_shared_panel\";b:1;s:18:\"edit_shared_panels\";b:1;s:25:\"edit_others_shared_panels\";b:1;s:28:\"edit_published_shared_panels\";b:1;s:21:\"publish_shared_panels\";b:1;s:26:\"read_private_shared_panels\";b:1;s:12:\"landing_page\";b:1;s:19:\"create_landing_page\";b:1;s:17:\"edit_landing_page\";b:1;s:17:\"read_landing_page\";b:1;s:19:\"delete_landing_page\";b:1;s:20:\"delete_landing_pages\";b:1;s:27:\"delete_others_landing_pages\";b:1;s:28:\"delete_private_landing_pages\";b:1;s:30:\"delete_published_landing_pages\";b:1;s:18:\"edit_landing_pages\";b:1;s:25:\"edit_others_landing_pages\";b:1;s:28:\"edit_published_landing_pages\";b:1;s:21:\"publish_landing_pages\";b:1;s:18:\"list_landing_pages\";b:1;s:26:\"read_private_landing_pages\";b:1;s:13:\"sync_registry\";b:1;s:13:\"fork_for_edit\";b:1;s:15:\"fork_for_layout\";b:1;s:20:\"assign_practice_area\";b:1;s:21:\"edit_copy_information\";b:1;s:14:\"view_all_sites\";b:1;s:14:\"edit_all_sites\";b:1;s:14:\"manage_network\";b:1;s:20:\"manage_network_users\";b:1;s:9:\"customize\";b:1;s:11:\"view_stream\";b:1;s:10:\"copy_posts\";b:1;s:25:\"can_access_all_panel_tabs\";b:1;s:15:\"can_sort_panels\";b:1;s:14:\"can_add_panels\";b:1;s:17:\"can_delete_panels\";b:1;s:12:\"can_add_rows\";b:1;s:15:\"can_delete_rows\";b:1;s:13:\"can_sort_rows\";b:1;s:20:\"can_add_child_panels\";b:1;s:23:\"can_delete_child_panels\";b:1;s:21:\"can_sort_child_panels\";b:1;s:18:\"can_add_panel_sets\";b:1;s:19:\"can_edit_panel_sets\";b:1;s:19:\"can_save_panel_sets\";b:1;s:14:\"manage_profile\";b:1;s:11:\"p3_profiler\";b:1;s:15:\"delete_ms_sites\";b:1;s:9:\"copy_edit\";b:1;s:7:\"json_ld\";b:1;s:15:\"view_trash_page\";b:1;s:23:\"view_trash_landing_page\";b:1;s:15:\"view_trash_post\";b:1;s:14:\"view_revisions\";b:1;s:23:\"quick_bulk_post_creator\";b:1;s:10:\"url_mapper\";b:1;s:21:\"better_search_replace\";b:1;s:12:\"divi_library\";b:1;s:5:\"bloom\";b:1;s:23:\"create_divi_map_markers\";b:1;s:20:\"edit_divi_map_marker\";b:1;s:21:\"edit_divi_map_markers\";b:1;s:28:\"edit_others_divi_map_markers\";b:1;s:31:\"edit_published_divi_map_markers\";b:1;s:23:\"delete_divi_map_markers\";b:1;s:30:\"delete_others_divi_map_markers\";b:1;s:33:\"delete_published_divi_map_markers\";b:1;s:24:\"publish_divi_map_markers\";b:1;s:27:\"view_trash_divi_map_markers\";b:1;s:13:\"author_select\";b:1;s:16:\"author_all_users\";b:1;s:18:\"edit_custom_fields\";b:1;s:8:\"facet_wp\";b:1;s:10:\"upload_kml\";b:1;s:10:\"carry_over\";b:1;s:13:\"administrator\";b:1;s:10:\"view_tools\";b:1;s:14:\"nap_management\";b:1;s:12:\"findlaw_tags\";b:1;s:32:\"edit_people_personal_information\";b:1;s:20:\"author_all_customers\";b:1;s:23:\"select_author_byline_by\";b:1;s:33:\"select_author_byline_on_behalf_of\";b:1;s:24:\"manage_wp_external_links\";b:1;s:17:\"view_forked_sites\";b:1;s:16:\"ninja_forms_menu\";b:1;s:32:\"sync_people_personal_information\";b:1;s:20:\"better_notifications\";b:1;s:12:\"access_wrike\";b:1;s:17:\"allow_clear_cache\";b:1;s:23:\"aioseo_general_settings\";b:1;s:33:\"aioseo_search_appearance_settings\";b:1;s:31:\"aioseo_social_networks_settings\";b:1;s:23:\"aioseo_sitemap_settings\";b:1;s:28:\"aioseo_seo_analysis_settings\";b:1;s:28:\"aioseo_page_general_settings\";b:1;s:20:\"aioseo_page_analysis\";b:1;s:29:\"aioseo_page_advanced_settings\";b:1;s:27:\"aioseo_page_social_settings\";b:1;s:21:\"aioseo_details_column\";b:1;s:30:\"aioseo_link_assistant_settings\";b:1;s:35:\"aioseo_page_link_assistant_settings\";b:1;s:15:\"access_depicter\";b:1;s:13:\"edit_depicter\";b:1;s:20:\"edit_others_depicter\";b:1;s:16:\"publish_depicter\";b:1;s:15:\"delete_depicter\";b:1;s:22:\"delete_others_depicter\";b:1;s:15:\"create_depicter\";b:1;s:15:\"import_depicter\";b:1;s:15:\"export_depicter\";b:1;s:18:\"duplicate_depicter\";b:1;s:15:\"manage_depicter\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:45:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"access_depicter\";b:1;s:13:\"edit_depicter\";b:1;s:20:\"edit_others_depicter\";b:1;s:16:\"publish_depicter\";b:1;s:15:\"delete_depicter\";b:1;s:22:\"delete_others_depicter\";b:1;s:15:\"create_depicter\";b:1;s:15:\"import_depicter\";b:1;s:15:\"export_depicter\";b:1;s:18:\"duplicate_depicter\";b:1;s:15:\"manage_depicter\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:17:\"advanced-customer\";a:2:{s:4:\"name\";s:17:\"Advanced Customer\";s:12:\"capabilities\";a:120:{s:16:\"edit_ninja_forms\";b:1;s:17:\"edit_landing_page\";b:1;s:17:\"read_landing_page\";b:1;s:28:\"edit_published_landing_pages\";b:1;s:18:\"edit_landing_pages\";b:1;s:25:\"edit_others_landing_pages\";b:1;s:21:\"publish_landing_pages\";b:1;s:26:\"read_private_landing_pages\";b:1;s:13:\"sync_registry\";b:1;s:17:\"edit_shared_panel\";b:1;s:17:\"read_shared_panel\";b:1;s:19:\"delete_shared_panel\";b:1;s:27:\"delete_others_shared_panels\";b:1;s:30:\"delete_published_shared_panels\";b:1;s:28:\"edit_published_shared_panels\";b:1;s:18:\"edit_shared_panels\";b:1;s:25:\"edit_others_shared_panels\";b:1;s:21:\"publish_shared_panels\";b:1;s:26:\"read_private_shared_panels\";b:1;s:19:\"create_shared_panel\";b:1;s:13:\"publish_pages\";b:1;s:12:\"create_pages\";b:1;s:18:\"edit_header_layout\";b:1;s:18:\"read_header_layout\";b:1;s:20:\"delete_header_layout\";b:1;s:28:\"delete_others_header_layouts\";b:1;s:31:\"delete_published_header_layouts\";b:1;s:29:\"edit_published_header_layouts\";b:1;s:19:\"edit_header_layouts\";b:1;s:26:\"edit_others_header_layouts\";b:1;s:22:\"publish_header_layouts\";b:1;s:27:\"read_private_header_layouts\";b:1;s:20:\"create_header_layout\";b:1;s:25:\"can_access_all_panel_tabs\";b:1;s:15:\"can_sort_panels\";b:1;s:14:\"can_add_panels\";b:1;s:17:\"can_delete_panels\";b:1;s:12:\"can_add_rows\";b:1;s:15:\"can_delete_rows\";b:1;s:13:\"can_sort_rows\";b:1;s:20:\"can_add_child_panels\";b:1;s:23:\"can_delete_child_panels\";b:1;s:21:\"can_sort_child_panels\";b:1;s:18:\"can_add_panel_sets\";b:1;s:19:\"can_edit_panel_sets\";b:1;s:19:\"can_save_panel_sets\";b:1;s:10:\"copy_posts\";b:1;s:15:\"manage_comments\";b:1;s:11:\"delete_page\";b:1;s:15:\"view_trash_page\";b:1;s:15:\"view_trash_post\";b:1;s:14:\"view_revisions\";b:1;s:12:\"edit_widgets\";b:1;s:10:\"edit_menus\";b:1;s:9:\"copy_edit\";b:1;s:20:\"assign_practice_area\";b:1;s:12:\"divi_library\";b:1;s:23:\"create_divi_map_markers\";b:1;s:20:\"edit_divi_map_marker\";b:1;s:21:\"edit_divi_map_markers\";b:1;s:28:\"edit_others_divi_map_markers\";b:1;s:31:\"edit_published_divi_map_markers\";b:1;s:23:\"delete_divi_map_markers\";b:1;s:30:\"delete_others_divi_map_markers\";b:1;s:33:\"delete_published_divi_map_markers\";b:1;s:24:\"publish_divi_map_markers\";b:1;s:27:\"view_trash_divi_map_markers\";b:1;s:13:\"author_select\";b:1;s:20:\"author_all_customers\";b:1;s:18:\"edit_custom_fields\";b:1;s:8:\"facet_wp\";b:1;s:17:\"advanced-customer\";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: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: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:10:\"view_tools\";b:1;s:11:\"edit_people\";b:1;s:11:\"read_people\";b:1;s:13:\"delete_people\";b:1;s:12:\"edit_peoples\";b:1;s:19:\"edit_others_peoples\";b:1;s:15:\"publish_peoples\";b:1;s:20:\"read_private_peoples\";b:1;s:23:\"select_author_byline_by\";b:1;s:16:\"ninja_forms_menu\";b:1;s:32:\"sync_people_personal_information\";b:1;s:17:\"allow_clear_cache\";b:1;s:28:\"aioseo_page_general_settings\";b:1;s:29:\"aioseo_page_advanced_settings\";b:1;s:27:\"aioseo_page_social_settings\";b:1;}}s:17:\"copywriter-vendor\";a:2:{s:4:\"name\";s:17:\"Copywriter Vendor\";s:12:\"capabilities\";a:43:{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:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:15:\"view_trash_post\";b:1;s:17:\"assign_categories\";b:1;s:10:\"edit_pages\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:20:\"assign_practice_area\";b:1;s:18:\"edit_landing_pages\";b:1;s:25:\"edit_others_landing_pages\";b:1;s:28:\"edit_published_landing_pages\";b:1;s:21:\"publish_landing_pages\";b:1;s:9:\"copy_edit\";b:1;s:13:\"fork_for_edit\";b:1;s:28:\"can_access_panel_tab_content\";b:1;s:14:\"manage_network\";b:1;s:14:\"view_all_sites\";b:1;s:14:\"view_revisions\";b:1;s:23:\"create_divi_map_markers\";b:1;s:20:\"edit_divi_map_marker\";b:1;s:21:\"edit_divi_map_markers\";b:1;s:28:\"edit_others_divi_map_markers\";b:1;s:31:\"edit_published_divi_map_markers\";b:1;s:23:\"delete_divi_map_markers\";b:1;s:30:\"delete_others_divi_map_markers\";b:1;s:33:\"delete_published_divi_map_markers\";b:1;s:24:\"publish_divi_map_markers\";b:1;s:27:\"view_trash_divi_map_markers\";b:1;s:17:\"copywriter-vendor\";b:1;s:4:\"read\";b:1;s:7:\"level_0\";b:1;s:17:\"view_forked_sites\";b:1;s:12:\"access_wrike\";b:1;s:28:\"aioseo_page_general_settings\";b:1;s:29:\"aioseo_page_advanced_settings\";b:1;s:27:\"aioseo_page_social_settings\";b:1;s:21:\"aioseo_details_column\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:34:{s:12:\"create_posts\";b:1;s:11:\"delete_post\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:9:\"edit_post\";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:15:\"view_trash_post\";b:1;s:9:\"edit_page\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_pages\";b:1;s:17:\"edit_landing_page\";b:1;s:18:\"edit_landing_pages\";b:1;s:28:\"edit_published_landing_pages\";b:1;s:25:\"edit_others_landing_pages\";b:1;s:21:\"publish_landing_pages\";b:1;s:17:\"manage_categories\";b:1;s:11:\"manage_tags\";b:1;s:20:\"assign_practice_area\";b:1;s:12:\"upload_files\";b:1;s:9:\"copy_edit\";b:1;s:13:\"author_select\";b:1;s:20:\"author_all_customers\";b:1;s:8:\"customer\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:23:\"select_author_byline_by\";b:1;s:25:\"force_update_capabilities\";b:1;}}s:13:\"design-vendor\";a:2:{s:4:\"name\";s:13:\"Design Vendor\";s:12:\"capabilities\";a:53:{s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:15:\"edit_forks_only\";b:1;s:18:\"edit_landing_pages\";b:1;s:19:\"edit_header_layouts\";b:1;s:15:\"can_sort_panels\";b:1;s:14:\"can_add_panels\";b:1;s:17:\"can_delete_panels\";b:1;s:12:\"can_add_rows\";b:1;s:15:\"can_delete_rows\";b:1;s:13:\"can_sort_rows\";b:1;s:20:\"can_add_child_panels\";b:1;s:23:\"can_delete_child_panels\";b:1;s:21:\"can_sort_child_panels\";b:1;s:18:\"can_add_panel_sets\";b:1;s:19:\"can_edit_panel_sets\";b:1;s:19:\"can_save_panel_sets\";b:1;s:28:\"can_access_panel_tab_content\";b:1;s:27:\"can_access_panel_tab_design\";b:1;s:12:\"upload_files\";b:1;s:16:\"edit_ninja_forms\";b:1;s:12:\"edit_widgets\";b:1;s:12:\"divi_library\";b:1;s:15:\"fork_for_layout\";b:1;s:14:\"manage_network\";b:1;s:14:\"view_all_sites\";b:1;s:14:\"view_revisions\";b:1;s:6:\"export\";b:1;s:23:\"create_divi_map_markers\";b:1;s:20:\"edit_divi_map_marker\";b:1;s:21:\"edit_divi_map_markers\";b:1;s:28:\"edit_others_divi_map_markers\";b:1;s:31:\"edit_published_divi_map_markers\";b:1;s:23:\"delete_divi_map_markers\";b:1;s:30:\"delete_others_divi_map_markers\";b:1;s:33:\"delete_published_divi_map_markers\";b:1;s:24:\"publish_divi_map_markers\";b:1;s:27:\"view_trash_divi_map_markers\";b:1;s:8:\"facet_wp\";b:1;s:15:\"unfiltered_html\";b:1;s:13:\"design-vendor\";b:1;s:4:\"read\";b:1;s:7:\"level_0\";b:1;s:4:\"mhmm\";b:1;s:26:\"fl_manage_general_settings\";b:1;s:7:\"json_ld\";b:1;s:14:\"nap_management\";b:1;s:12:\"findlaw_tags\";b:1;s:16:\"ninja_forms_menu\";b:1;s:28:\"aioseo_page_general_settings\";b:1;s:29:\"aioseo_page_advanced_settings\";b:1;s:27:\"aioseo_page_social_settings\";b:1;s:21:\"aioseo_details_column\";b:1;}}}','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:10:{s:19:\"wp_inactive_widgets\";a:7:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:10:\"archives-2\";i:3;s:12:\"categories-2\";i:4;s:6:\"text-2\";i:5;s:10:\"nav_menu-2\";i:6;s:10:\"nav_menu-3\";}s:9:\"sidebar-1\";a:1:{i:0;s:10:\"nav_menu-4\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:9:\"sidebar-6\";a:0:{}s:9:\"sidebar-7\";a:0:{}s:19:\"et_pb_widget_area_1\";a:1:{i:0;s:10:\"nav_menu-5\";}s:13:\"array_version\";i:3;}','yes'),(100,'WPLANG','','yes'),(101,'et_divi','a:329:{s:9:\"divi_logo\";s:0:\"\";s:14:\"divi_fixed_nav\";s:2:\"on\";s:26:\"divi_gallery_layout_enable\";s:5:\"false\";s:18:\"divi_color_palette\";s:63:\"#000000|#ffffff|#2e5591|#211865|#696969|#7cda24|#0c71c3|#8300e9\";s:15:\"divi_grab_image\";s:5:\"false\";s:15:\"divi_blog_style\";s:5:\"false\";s:12:\"divi_sidebar\";s:16:\"et_right_sidebar\";s:22:\"divi_shop_page_sidebar\";s:16:\"et_right_sidebar\";s:30:\"et_google_api_settings_api_key\";s:0:\"\";s:29:\"et_enqueue_google_maps_script\";s:2:\"on\";s:19:\"et_use_google_fonts\";s:2:\"on\";s:23:\"divi_show_facebook_icon\";s:5:\"false\";s:22:\"divi_show_twitter_icon\";s:5:\"false\";s:21:\"divi_show_google_icon\";s:5:\"false\";s:18:\"divi_show_rss_icon\";s:5:\"false\";s:17:\"divi_facebook_url\";s:1:\"#\";s:16:\"divi_twitter_url\";s:1:\"#\";s:15:\"divi_google_url\";s:1:\"#\";s:12:\"divi_rss_url\";s:0:\"\";s:34:\"divi_woocommerce_archive_num_posts\";i:10;s:17:\"divi_catnum_posts\";i:10;s:21:\"divi_archivenum_posts\";i:10;s:20:\"divi_searchnum_posts\";i:10;s:17:\"divi_tagnum_posts\";i:10;s:16:\"divi_date_format\";s:6:\"M j, Y\";s:16:\"divi_use_excerpt\";s:5:\"false\";s:26:\"divi_responsive_shortcodes\";s:2:\"on\";s:33:\"divi_gf_enable_all_character_sets\";s:5:\"false\";s:16:\"divi_back_to_top\";s:2:\"on\";s:18:\"divi_smooth_scroll\";s:5:\"false\";s:25:\"divi_disable_translations\";s:5:\"false\";s:27:\"divi_minify_combine_scripts\";s:2:\"on\";s:26:\"divi_minify_combine_styles\";s:2:\"on\";s:15:\"divi_custom_css\";s:42182:\"/*\r\n	|--------------------------------------------------------------------------\r\n	| MJD - Mobile Menu - 9-2022\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n\r\n/* X icon in expanded mobile menu */\r\n\r\n.mobile_nav.opened .mobile_menu_bar:before {\r\ncontent: \'\\4d\';\r\n}\r\n\r\n/* Center-align moble menu items */\r\n.et_mobile_menu li {\r\ntext-align:center !important;\r\n}\r\n  \r\n.et_mobile_menu li li, .et_mobile_menu li ul {\r\npadding-left:0 !important;\r\n}\r\n\r\n/* Make mobile menu fullwidth */\r\n.et_mobile_menu {\r\nmin-width: 100vw;\r\nmargin-left: 0vw;\r\n}\r\n\r\n/* Make the mobile menu full height */\r\n.et_mobile_menu {\r\nmin-height:100vh !important;\r\nmin-height: -webkit-fill-available;\r\npadding-top:50px !important;\r\n}\r\nhtml {\r\nheight: -webkit-fill-available;\r\n}\r\n\r\n/*\r\n	|-------------------------------------------------------------------------- \r\n	| Table of Contents\r\n	|-------------------------------------------------------------------------- \r\n\r\n		General\r\n		Typography\r\n		Links\r\n		Buttons\r\n		Forms\r\n		Form Disclaimer\r\n		Header\r\n		Footer\r\n		Home Page\r\n		Internal Layout\r\n		Blog\r\n		Attorney Profiles\r\n		PPC\r\n		VFI\r\n\r\n	*/\r\n\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n	| General\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n\r\n	/* Set cursor for anchors without HREF */\r\n	a:not([href]) {\r\n		cursor: default;\r\n	}\r\n\r\n	/* Prevent NAP phone numbers from breaking mid-word */\r\n	.nap-item--phone {\r\n		white-space: nowrap;\r\n	}\r\n\r\n	/* Hide empty paragraph tags */\r\n	p:empty {\r\n		display: none;\r\n	}\r\n\r\n	/* Remove bottom margin on single post pages */\r\n	.single .et_pb_post {\r\n		margin-bottom: 0;\r\n	}\r\n\r\n	/* Remove margin from Brightcove video */\r\n	figure.c-brightcove {\r\n		margin: 0;\r\n	}\r\n\r\n	/* Fixes FontAwesome load issue where multiple icons initially appear */\r\n	#fl-template.fl-template .et_pb_custom_button_icon:before {\r\n		display: none !important;\r\n	}\r\n\r\n	#fl-template.fl-template .et_pb_custom_button_icon.divi_font_awesome_icon:before {\r\n		display:inline-block !important;\r\n	}\r\n\r\n	/* Sets image width for featured images in search results */\r\n	.search .entry-featured-image-url img {\r\n		width: 200px!important;\r\n	} \r\n\r\n	/* Remove animation for mobile devices */\r\n	@media (max-width: 768px) {\r\n		.et_had_animation, .et_animated {\r\n			animation: none !important;\r\n			transform: none !important;\r\n			opacity: 1!important;\r\n		}\r\n	}\r\n\r\n	/* Reverse order of column stacking for row on mobile */\r\n	@media (max-width: 980px) {\r\n		.fl-reverse-column-order {\r\n			display: flex;\r\n			flex-direction: column-reverse;\r\n		 }\r\n	}\r\n\r\n	/* Vertically Align Items */\r\n	@media (min-width: 981px) {\r\n		.fl-align-center {\r\n			display: flex;\r\n			align-items: center;\r\n		 }\r\n	}\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Typography\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	html {\r\n		font-size: 18px;\r\n	}\r\n\r\n	body,\r\n	input,\r\n	textarea,\r\n	select {\r\n		font-weight: unset;\r\n		line-height: 1.5;\r\n	}\r\n\r\n	p,\r\n	.et_pb_text ol,\r\n	.et_pb_text ul {\r\n		padding-bottom: 1.5em;\r\n	}\r\n\r\n	hr {\r\n		border: 0.5px solid rgba(0, 0, 0, 0.2);\r\n	}\r\n\r\n	blockquote {\r\n		margin-top: 0;\r\n		margin-bottom: 1.5em;\r\n	}\r\n\r\n	h1,\r\n	h2,\r\n	h3,\r\n	h4,\r\n	h5,\r\n	h6 {\r\n		padding-top: 1.5rem;\r\n		padding-bottom: 1.5rem;\r\n		font-weight: unset;\r\n		line-height: 1.2;\r\n		overflow-wrap: normal;\r\n	}\r\n\r\n	/* Remove the top padding from a header if it’s the first child */\r\n	h1:first-child,\r\n	h2:first-child,\r\n	h3:first-child,\r\n	h4:first-child,\r\n	h5:first-child,\r\n	h6:first-child {\r\n		padding-top: 0;\r\n	}\r\n\r\n	/* Remove the bottom padding from a header if it’s the last child */\r\n	h1:last-child,\r\n	h2:last-child,\r\n	h3:last-child,\r\n	h4:last-child,\r\n	h5:last-child,\r\n	h6:last-child {\r\n		padding-bottom: 0;\r\n	}\r\n\r\n	/* Reset button font weight and line height */\r\n	.et_pb_button {\r\n		font-weight: unset;\r\n		line-height: 1.2 !important;\r\n	}\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Links\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/* Dark links (dark links on a light background) */\r\n	/* .fl-darklinks a:link,\r\n	.fl-darklinks a:visited {\r\n		color: #1c5285 !important;\r\n		text-decoration: underline;\r\n	} */\r\n\r\n	.fl-darklinks a:hover,\r\n	.fl-darklinks a:focus,\r\n	.fl-darklinks a:active {\r\n		color: #000000 !important;\r\n		text-decoration: none;\r\n	}\r\n\r\n	/* Light links (light links on a dark background) */\r\n	/* .fl-lightlinks a:link,\r\n	.fl-lightlinks a:visited {\r\n		color: #ccdceb !important;\r\n		text-decoration: underline;\r\n	} */\r\n\r\n	.fl-lightlinks a:hover,\r\n	.fl-lightlinks a:focus,\r\n	.fl-lightlinks a:active {\r\n		color: #211865 !important;\r\n		text-decoration: none;\r\n	}\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Buttons\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/* Form submit buttons */\r\n	.fl-short-form input[type=\'button\'],\r\n	.fl-long-form input[type=\'button\'],\r\n	.fl-attorney-form .nf-form-content input[type=\'button\'] {\r\n		height: auto !important;\r\n		padding: 15px 30px !important;\r\n		color: #ffffff !important;\r\n		background: #1c5285 !important;\r\n		border: none !important;\r\n		border-width: 0px !important;\r\n		border-radius: 0px !important;\r\n		font-family: inherit !important;\r\n		font-size: inherit !important;\r\n		font-weight: inherit !important;\r\n		line-height: 1.2 !important;\r\n		letter-spacing: 0px !important;\r\n		text-transform: none !important;\r\n		cursor: pointer !important;\r\n		transition: all 0.2s ease-out !important;\r\n	}\r\n\r\n	/* Form submit buttons hover */\r\n	.fl-short-form input[type=\'button\']:hover,\r\n	.fl-long-form input[type=\'button\']:hover,\r\n	.fl-attorney-form .nf-form-content input[type=\'button\']:hover {\r\n		color: #ffffff !important;\r\n		background: #000000 !important;\r\n	}\r\n\r\n	/* Email me button */\r\n	.fl-email-attorney a.et_pb_email_attorney {\r\n		height: auto !important;\r\n		padding: 15px 30px !important;\r\n		color: #ffffff !important;\r\n		background: #1c5285 !important;\r\n		border: none !important;\r\n		border-width: 0px !important;\r\n		border-radius: 0px !important;\r\n		font-family: inherit !important;\r\n		font-size: inherit !important;\r\n		font-weight: inherit !important;\r\n		line-height: 1em !important;\r\n		letter-spacing: 0px !important;\r\n		text-transform: none !important;\r\n		cursor: pointer !important;\r\n		transition: all 0.2s ease-out !important;\r\n	}\r\n\r\n	/* Email me button hover */\r\n	.fl-email-attorney a.et_pb_email_attorney:hover {\r\n		padding: 15px 30px !important;\r\n		color: #ffffff !important;\r\n		background: #000000 !important;\r\n		border: none !important;\r\n		border-radius: 0px !important;\r\n		letter-spacing: 0px !important;\r\n		cursor: pointer !important;\r\n	}\r\n\r\n	/* Back to top button */\r\n	.et_pb_scroll_top.et-pb-icon {\r\n\r\n	} \r\n\r\n	/* Back to top button hover */\r\n	.et_pb_scroll_top.et-pb-icon:hover {\r\n\r\n	}\r\n\r\n	/* \r\n	|-------------------------------------------------------------------------- \r\n	| Forms\r\n	|-------------------------------------------------------------------------- \r\n	*/ \r\n\r\n	/* Remove max width and padding */ \r\n	.nf-form-content {\r\n		padding: 0 !important;\r\n		max-width: 100% !important;\r\n	}\r\n\r\n	/* Hide Short Form – Contact Page, Thank You Page */\r\n	.page-contact .fl-short-form-section,\r\n	.page-contact .fl-short-form,\r\n	.page-thank-you .fl-short-form-section,\r\n	.page-thank-you .fl-short-form {\r\n		display: none;\r\n	}\r\n\r\n	/* Fixes checkboxes on Long Form */\r\n	.nf-form-content label,\r\n	.fl-long-form .nf-form-content label {\r\n		line-height: 25px!important;\r\n	}\r\n\r\n	.checkbox-container .nf-field-element,\r\n	.listcheckbox-container .nf-field-element input[type=\"checkbox\"],\r\n	.fl-long-form .checkbox-container .nf-field-element,\r\n	.fl-long-form .listcheckbox-container .nf-field-element input[type=\"checkbox\"] {\r\n		opacity: 1!important;\r\n	}\r\n\r\n	.listcheckbox-container .nf-field-element label:after,\r\n	.fl-long-form .listcheckbox-container .nf-field-element label:after {\r\n		left: -30px !important;\r\n	}\r\n\r\n	.nf-form-content .listcheckbox-wrap li {\r\n		margin-bottom: 10px!important;\r\n	}\r\n\r\n	/* Changes Error Message, Required Symbol when Short Form is set to light text */\r\n	.fl-short-form.et_pb_bg_layout_dark .nf-error .nf-error-msg,\r\n	.fl-short-form.et_pb_bg_layout_dark .ninja-forms-req-symbol,\r\n	.fl-short-form.et_pb_bg_layout_dark .nf-error-msg {\r\n		color: #FF0000 !important;\r\n	}\r\n\r\n	/* Customize Short Form styles - enable, as needed */\r\n\r\n	/* Short Form Field Sytles */\r\n	/*.fl-short-form .nf-form-content .list-select-wrap .nf-field-element>div,\r\n	.fl-short-form .nf-form-content input:not([type=button]),\r\n	.fl-short-form .nf-form-content textarea,\r\n	.fl-short-form .nf-form-content .list-select-wrap .nf-field-element>div:focus,\r\n	.fl-short-form .nf-form-content input:not([type=button]):focus,\r\n	.fl-short-form .nf-form-content textarea:focus {\r\n		background: ;\r\n		border: ;\r\n		border-radius: ;\r\n		box-shadow: ;\r\n		color: ;\r\n	}*/\r\n\r\n	/* Short Form Field Placeholder Text */\r\n	/*.fl-short-form .nf-form-content .list-select-wrap .nf-field-element>div::placeholder,\r\n	.fl-short-form .nf-form-content input:not([type=button])::placeholder,\r\n	.fl-short-form .nf-form-content textarea::placeholder {\r\n		color: ;\r\n	}*/\r\n\r\n	/* Short Form Field Label Text */\r\n	/*.fl-short-form .nf-field-label label {\r\n		font-family: ;\r\n		text-transform: ;\r\n		font-weight: ;\r\n	}*/\r\n\r\n	/* Short Form Error Message */\r\n	/*.fl-short-form .nf-error.field-wrap .nf-field-element:after {\r\n		background: !important;\r\n		color: !important;\r\n	}*/\r\n\r\n	/* Short Form Required Symbol */\r\n	/*.fl-short-form .nf-error-msg,\r\n	.fl-short-form .ninja-forms-req-symbol {\r\n		color: !important;\r\n	}*/\r\n\r\n	/* Short Form Field Error */\r\n	/*.fl-short-form .nf-error .ninja-forms-field {\r\n	 * 	border: 1px solid !important;\r\n	}*/\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Form Disclaimer\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	.fl-disclaimer {\r\n		max-height: 0;\r\n		opacity: 0;\r\n		overflow: hidden;\r\n		transition: opacity 0.15s ease-in, max-height 0.15s ease-in 0.15s;\r\n	}\r\n\r\n	.fl-disclaimer.active {\r\n		opacity: 1;\r\n		transition: opacity 0.15s ease-out 0.15s, max-height 0.15s ease-out;\r\n	}\r\n\r\n	.fl-disclaimer__inner {\r\n		position: relative;\r\n		margin-top: 25px;\r\n		padding: 20px;\r\n		border: 1px solid rgba(0, 0, 0, 0.2);\r\n		background: #fff;\r\n		font-size: 14px;\r\n		color: black;\r\n		transform: scale(0.95);\r\n		transition: transform 0.15s ease-out;\r\n	}\r\n\r\n	.fl-disclaimer.active .fl-disclaimer__inner {\r\n		transform: scale(1);\r\n		transition: transform 0.15s ease-out 0.15s;\r\n	}\r\n\r\n	.fl-disclaimer__icon {\r\n		display: inline-block;\r\n		vertical-align: top;\r\n		font-family: dashicons;\r\n	} \r\n\r\n	.fl-disclaimer__close {\r\n		position: absolute;\r\n		top: 0;\r\n		right: 0;\r\n		display: flex;\r\n		justify-content: center;\r\n		padding: 5px;\r\n		font-family: dashicons;\r\n		font-size: 16px;\r\n		cursor: pointer;\r\n		transition: .15s ease-out;\r\n	}\r\n\r\n	.fl-disclaimer__close:hover, .fl-disclaimer__close:focus {\r\n		opacity: 0.5;\r\n	}\r\n\r\n	/* Fixes form disclaimer popup icons not showing. */\r\n	.dashicons-info {\r\n		vertical-align: bottom;\r\n	}\r\n\r\n	.dashicons-info:before {\r\n		content: \"\\f335\";\r\n	}\r\n\r\n	.dashicons-no-alt {\r\n		padding-top: 0;\r\n	}\r\n\r\n	.dashicons-no-alt:before {\r\n		font-family: FontAwesome;\r\n		content: \"f00d\";\r\n	} \r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Header\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Footer\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Home Page\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Internal Layout\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Blog\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/* Adds space above Monarch share buttons */\r\n	.single-post .et_social_inline {\r\n		margin-top: 30px!important;\r\n	}\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Attorney Profiles\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/* Indents bulleted lists on attorney profiles */\r\n	.type-people .fl_people_single ul.bio-list {\r\n		padding-left: 30px;\r\n	}\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| PPC\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/* PPC Form Button */\r\n	.fl-ppc-form input[type=’button’] {\r\n		height: auto !important;\r\n		padding: 15px 30px !important;\r\n		color: #ffffff !important;\r\n		background: #1c5285 !important;\r\n		border: none !important;\r\n		border-width: 0px !important;\r\n		border-radius: 0px !important;\r\n		font-family: inherit !important;\r\n		font-size: inherit !important;\r\n		font-weight: inherit !important;\r\n		line-height: 1.2 !important;\r\n		letter-spacing: 0px !important;\r\n		text-transform: none !important;\r\n		cursor: pointer !important;\r\n		transition: all 0.2s ease-out !important;\r\n	}\r\n\r\n	/* PPC Form Button Hover */\r\n	.fl-ppc-form input[type=’button’]:hover {\r\n		color: #ffffff !important;\r\n		background: #000000 !important;\r\n	}\r\n\r\n	/* PPC Dark links (dark links on a light background) */\r\n	.fl-ppc-darklinks a:link,\r\n	.fl-ppc-darklinks a:visited {\r\n		color: #1c5285 !important;\r\n		text-decoration: underline;\r\n	}\r\n\r\n	.fl-ppc-darklinks a:hover,\r\n	.fl-ppc-darklinks a:focus,\r\n	.fl-ppc-darklinks a:active {\r\n		color: #000000 !important;\r\n		text-decoration: none;\r\n	}\r\n\r\n	/* PPC Light links (light links on a dark background) */\r\n	.fl-ppc-lightlinks a:link,\r\n	.fl-ppc-lightlinks a:visited {\r\n		color: #ccdceb !important;\r\n		text-decoration: underline;\r\n	} \r\n\r\n	.fl-ppc-lightlinks a:hover,\r\n	.fl-ppc-lightlinks a:focus,\r\n	.fl-ppc-lightlinks a:active {\r\n		color: #ffffff !important;\r\n		text-decoration: none;\r\n	} \r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| VFI\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/* Visual Focus Indicator (VFI) across entire site. */\r\n	a:focus,\r\n	form .ninja-forms-field.nf-element[type=button]:focus,\r\n	input[type=search]:focus,\r\n	form.search-form input.search-submit:focus,\r\n	form.et_pb_searchform input.et_pb_searchsubmit:focus,\r\n	select:focus,\r\n	.nf-form-content input:focus,\r\n	.nf-form-content textarea:focus,\r\n	.nf-form-content .checkbox-label-focused:after,\r\n	.swiper-buttton-container div:focus {\r\n		outline: #000 2px dotted!important;\r\n		outline-offset: 0!important;\r\n		box-shadow: 0 0 0 2px #fff!important;\r\n		border-radius: 0!important;\r\n	} \r\n\r\n	/* Allows VFIs to be seen on blog share buttons */\r\n	.single-post a.et_social_share.keyboard-outline,\r\n	.et_social_icons_container a:focus {\r\n		outline: #fff 2px dotted!important;\r\n		outline-offset: -4px!important;\r\n	} \r\n\r\n	/* Allows VFIs to be seen on carousel links, blurb links, logo links */\r\n	.dica_divi_carousel a,\r\n	.et_pb_main_blurb_image a,\r\n	.et_pb_menu__logo a {\r\n		display: table!important;\r\n	}\r\n\r\n	/* Allows VFIs to be seen on logo links */\r\n	.et_pb_menu__logo a {\r\n		outline-offset: -2px!important;\r\n	}\r\n\r\n	/* Allows VFIs to be seen on carousel links */\r\n	.dica_divi_carousel a,\r\n	.et_pb_image a {\r\n		display: inline-block!important;\r\n	}\r\n\r\n	/* Allows VFIs to be seen on radio buttons */\r\n	.listradio-wrap .nf-field-element input {\r\n		display: initial!important;\r\n	}\r\n\r\n	/* Fixes tabbing and Visual Focus Indicators (VFIs) working properly in the main menu (in older sites) */\r\n	.nav li.et-hover>ul {\r\n		opacity: 1;\r\n		visibility: visible;\r\n	}\r\n	/*\r\n	|------------------------------------------------------------------\r\n	|       1.  Verical center/end\r\n	|------------------------------------------------------------------\r\n	*/\r\n	/* Vertically center header elements */\r\n	.fl-vertical-center {\r\n		display: flex;\r\n		flex-direction: column;\r\n		justify-content: center;\r\n	}\r\n	/* Vertically end header elements */\r\n	.fl-vertical-end {\r\n		display: flex;\r\n		flex-direction: column;\r\n		justify-content: flex-end;\r\n	}\r\n	body{overflow-x: hidden !important;}\r\n	.et_pb_row{\r\n	max-width: 1366px!important;\r\n	padding:0px !important;\r\n	}\r\n.fl-banner-row{\r\n	max-width: 100% !important;\r\n	width:100% !important;\r\n}\r\n	#fl-sticky-mobile-menu {\r\n		width: 100% !important;\r\n	}\r\n	/*\r\n	|------------------------------------------------------------------\r\n	|       2.   Light Links & Dark Links\r\n	|------------------------------------------------------------------\r\n	*/\r\n	.fl-lightlinks a,#email_attorney a{color: #fff !important; text-decoration:underline !important;}\r\n	.fl-lightlinks a:hover, .fl-lightlinks a:focus, .fl-lightlinks a:active,#email_attorney a:hover{color:#fff !important;text-decoration:none !important;}\r\n	.fl-darklinks a{color: #211865 !important;\r\n	  text-decoration:underline !important;\r\n	}\r\n	.fl-darklinks a:hover, .fl-darklinks a:focus, .fl-darklinks a:active{color:#000 !important;\r\n	text-decoration:none !important;}\r\n	.fl-inner-left a,.fl-blog-left a{text-decoration:underline !important;}\r\n	.fl-inner-left a:hover,.fl-blog-left a:hover{text-decoration:none !important;}\r\n	.fl-blog-left h2.entry-title a{text-decoration:none !important;}\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n			  3. Desktop Header\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n	@media all and (min-width: 981px) {\r\n	  .fl-center{\r\n		display: flex;\r\n		flex-direction: column;\r\n		justify-content: center;\r\n	  }\r\n	  .fl-desk-header .nav li.menu-item--depth-0 a:hover{\r\n		opacity:1 !important;\r\n	  }\r\n	  .fl-desk-header .nav li.menu-item--depth-0>a{\r\n		color: #fff !important;\r\n		padding: 13px 0 0 !important;\r\n	  }\r\n	  .fl-desk-header .nav li.current-menu-item>a, .fl-desk-header .nav li>a:hover{opacity:1 !important; color: #fff !important;}\r\n		.fl-desk-header li.menu-item--depth-0:last-child{\r\n			padding-right: 0px !important;\r\n		}\r\n		.fl-desk-header .et-menu li li a{\r\n			padding: 10px !important;\r\n			width:240px !important;\r\n		color: #211865 !important;\r\n		font-size: 17px !important;\r\n		}\r\n		.fl-desk-header .et-menu-nav>ul ul{padding:0px !important;\r\n	  margin-top:5px !important;}\r\n		.fl-desk-header .nav li li{\r\n		padding:0px !important;\r\n		background-color: #ffff;\r\n	  }\r\n	  .fl-desk-header .nav li.menu-item--depth-0{\r\n		padding:0px !important;\r\n		margin:0px 20px 0px 20px!important;\r\n	  }\r\n	  .fl-desk-header .nav li.menu-item--depth-0:last-child{\r\n		padding-right:0px !important;\r\n		margin-right:0px !important;\r\n	  }\r\n	  .lm-ignoreme .nav ul li a:hover, .fl-desk-header ul.sub-menu li.current-menu-item>a, .fl-desk-header .et_pb_menu .nav li ul.sub-menu a:hover,.fl-desk-header .et_pb_menu .nav li ul.sub-menu li.current-menu-item>a{\r\n		background-color: #2e5591!important;\r\n		color: #fff !important;\r\n	  }\r\n	  .fl-desk-header .et_pb_menu_0_tb_header.et_pb_menu .nav li ul.sub-menu li.current-menu-item>a {\r\n		  background-color: #ed7f66 !important;\r\n		color: #fff !important;\r\n	  }\r\n	  .fl-desk-header .et_pb_menu_0_tb_header.et_pb_menu .nav li ul.sub-menu li.current-menu-item ul li a:hover{\r\n		  background-color: #ed7f66 !important;\r\n		color: #000 !important;\r\n	  }\r\n	   .fl-desk-header .et_pb_menu_inner_container{\r\n		float:none !important;\r\n	  } \r\n	  .fl-desk-header .et_pb_menu ul li>a {\r\n		padding: 0px 0px 8px !important;\r\n		color:#870821 !important;\r\n	}\r\n	  .fl-desk-header .et-menu .menu-item-has-children>a {\r\n		padding-right: 20px !important;}\r\n	  .fl-desk-header .et_pb_menu .nav li ul.sub-menu a {\r\n		padding: 50px 15px !important;\r\n		font-size: 17px !important;\r\n	   background: #fbeace !important;\r\n		color: #000 !important;\r\n	}\r\n	  .fl-desk-header .et-menu-nav .menu-item--depth-1>ul {\r\n		margin-top: 20px !important;\r\n	}\r\n	.fl-desk-header .et-menu .menu-item-has-children:hover>a {\r\n		color: #fff !important;\r\n	}\r\n	.fl-desk-header .nav li>a:before {\r\n		content: \"\";\r\n	  border-top: #fff solid 4px;\r\n		position: absolute;\r\n		width: 1%;\r\n		left: 0;\r\n		top: -15px;\r\n		transition: all 1s;\r\n	   opacity:0;\r\n	}\r\n	.fl-desk-header .nav li.current-menu-item>a:before,.fl-desk-header .nav li>a:hover:before  {\r\n	   width: 100%;\r\n		opacity: 1;\r\n	}\r\n	\r\n	  .fl-desk-header .et-menu li li.menu-item-has-children>a:first-child:after {\r\n		right: 10px !important;\r\n	}\r\n	  .fl-desk-header .et-menu .menu-item-has-children>a:first-child:after {\r\n		right: -15px;\r\n		top: 15px;\r\n	}\r\n	}\r\n	@media (max-width:1440px) and (min-width:981px){\r\n	  .fl-desk-header .nav li.menu-item--depth-0{\r\n		margin: 0px 8px 0px 8px!important;\r\n	  }\r\n	}\r\n	header{background:#000 !important;}\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n	|    4. Mobile Header Columns\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n	 #fl-template .mobile_menu_bar:after{\r\n	  color:#fff !important;\r\n	}\r\n	.fl-mobile-menu.et_pb_menu ul li a{\r\n	  opacity:1 !important;\r\n	}\r\n	.fl-mobile-menu.et_pb_menu ul li.current-menu-item>a{ \r\n		color: #211865 !important;\r\n	  }\r\n	#fl-template .et_pb_menu .et_mobile_menu .menu-item-has-children.visible>a.fl-toggle-icon, #main-header #fl-template .et_mobile_menu .menu-item-has-children.visible>a.fl-toggle-icon{\r\n	  transform: rotate(0deg) !important;\r\n	}\r\n	#fl-template .et_pb_menu .et_mobile_menu .menu-item-has-children>a.fl-toggle-icon{\r\n	  right:0px !important;\r\n	}\r\n	#main-header #fl-template .et_mobile_menu .menu-item-has-children>a.fl-toggle-icon{\r\n	  right:5px !important;\r\n	}\r\n	#fl-template .et_mobile_menu { width: 100vw; height: calc(100vh - 50px); padding-bottom: 350px; overflow: auto; }\r\n	@media (max-width:457px){\r\n	  .fl-logo {\r\n		width: 200px!important;\r\n	}\r\n	}\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n	|    5. Practice Area\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n	.fl-prac-module:hover .et_pb_main_blurb_image img{\r\n		filter: brightness(0) invert(1);\r\n		transform: rotateY( 360deg);\r\n		transition: all ease-out .6s;\r\n	}\r\n	.fl-prac-module h3.et_pb_module_header {\r\n		padding-bottom: 0px !important;\r\n	}\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n					  Module3\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n	.fl-list ul {\r\n		padding-bottom: 0px !important;\r\n	}\r\n	.fl-list ul li {\r\n		padding-left: 1.5em;\r\n		margin-bottom: 10px;\r\n	}\r\n	.fl-feature.et_pb_equal_columns {\r\n		max-width: 900px !important;\r\n	}\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n		Testimonial slider CSS\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n		.fl-testimonials .et_pb_slide_description, .et_pb_slider_fullwidth_off .et_pb_slide_description {\r\n		width: auto; margin: auto; padding: 0px !important; }\r\n		.fl-testimonials .et-pb-arrow-prev { left: 1px !important; opacity: 1 !important; top:55px !important; }\r\n		.fl-testimonials .et-pb-arrow-next { right: 1px !important; opacity: 1 !important; top:55px !important; }\r\n		.fl-testimonials h2.et_pb_slide_title { padding-bottom: 20px; }\r\n		.fl-testimonials .et_pb_slider:hover .et-pb-arrow-next { right: 0; }\r\n		.fl-testimonials .et_pb_slider:hover .et-pb-arrow-prev { left: 0; }\r\n		.fl-testimonials .et_pb_slide { padding: 5% 10%; }\r\n		.fl-testimonials .et_pb_slide_content { text-shadow: none !important; }\r\n		.fl-testimonials span { font-size: 17px !important; }\r\n	.fl-testimonials  .et-pb-controllers {\r\n		position: absolute;\r\n		bottom: 0px;\r\n		left: 0;\r\n		width: 100%;\r\n		text-align: center;\r\n		z-index: 10;\r\n	}\r\n	.fl-testimonials .et-pb-controllers .et-pb-active-control {\r\n		color: #fff!important;\r\n		background-color: #004993!important;\r\n	}\r\n	.fl-testimonials .et-pb-controllers a {\r\n		width: 12px!important;\r\n		height: 12px!important;\r\n		border: 2px solid #004993!important;\r\n		background-color: #efefef!important;\r\n		color: #6d6d6d!important;\r\n		opacity: 1!important;\r\n	}\r\n/***********Banner fullwidth slider************/\r\n\r\n}\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n					   Short Form\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n\r\n	.fl-short-form::-webkit-input-placeholder { /* Edge */\r\n	  color:#333 !important;\r\n	  opacity:1 !important;\r\n	}\r\n\r\n	.fl-short-form::-ms-input-placeholder { /* Internet Explorer 10-11 */\r\n	  color:#333 !important;\r\n	  opacity:1 !important;\r\n	}\r\n	.fl-short-form::-moz-input-placeholder{\r\n	  color:#333 !important;\r\n	  opacity: 1 !important;}\r\n\r\n	.fl-short-form::placeholder {\r\n	  color:#333 !important;\r\n	  opacity:1 !important;\r\n	}\r\n	.fl-short-form .nf-field-container .field-wrap .nf-element::placeholder {\r\n		color: #333;\r\n	  opacity:1 !important;\r\n	  font-size:16px !important;\r\n	}\r\n	.fl-short-form .nf-form-content input[type=button] {\r\n		background: #fff !important;\r\n		color: #211865 !important;\r\n		font-size: 17px !important;\r\n		font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\r\n		padding: 15px 25px !important;\r\n		cursor: pointer;\r\n	  line-height: 20px !important;\r\n	letter-spacing: 1px;\r\n	  float:right !important;\r\n	 text-transform: uppercase !important;\r\n	  font-weight: 400 !important;\r\n	  filter:none !important;\r\n	 } \r\n	.fl-short-form .nf-form-content input[type=button]:hover{\r\n	   background: #2e5591 !important;\r\n	  color: #fff !important;\r\n	}\r\n	.fl-short-form .nf-form-content {padding-top: 30px !important;}\r\n	.fl-short-form .nf-form-fields-required {text-align: center !important;\r\n	font-size:18px !important;}\r\n	.fl-short-from .form-links{\r\n	  text-align:left !important;\r\n	  font-size: 17px !important;\r\n	}\r\n	.fl-short-form .nf-form-content textarea.ninja-forms-field {\r\n		height: 170px;\r\n		width: 99.5%!important;\r\n		float: left!important;\r\n	}\r\n	@media (max-width:980px){\r\n	  .fl-short-form .nf-form-content input[type=button]{\r\n		padding: 15px 25px!important;\r\n		font-size:14px !important;\r\n	  }\r\n	  .fl-short-form .nf-form-fields-required{\r\n		text-align: center !important;\r\n	  }\r\n	}\r\n	@media (min-width: 600px){\r\n	.fl-short-form .nf-row .nf-cell:nth-child(3) {padding-right: 0px!important;}\r\n	}\r\n	.fl-short-form .nf-error-msg,.fl-short-form .ninja-forms-req-symbol {color:#000 !important;}\r\n	@media (max-width: 600px){\r\n	.fl-short-form .form-links,.fl-disclaimer.active {\r\n	  float: left!important;\r\n	  text-align:left !important;}\r\n	  .fl-short-form .nf-form-content input[type=button]{padding:15px 35px !important;\r\n		font-size:18px !important; \r\n	  float:none !important;}\r\n	}\r\n	.fl-short-form .nf-form-content .list-select-wrap .nf-field-element>div, .fl-short-form .nf-form-content input:not([type=button]), .fl-short-form .nf-form-content textarea{\r\n	  border-width: 1px!important;\r\n		border-color: #c4c4c4 !important;\r\n		background: #fff !important;\r\n		color: #000 !important;\r\n	}\r\n	@media (max-width:350px){\r\n	  .fl-short-form .nf-form-content input[type=button]{\r\n		padding: 15px 10px!important;\r\n		font-size: 14px!important;\r\n	  }\r\n	}\r\n	.fl-short-form input[type=email], .fl-long-form input[type=email]{padding-right:50px !important;}\r\n	.fl-short-form .nf-form-content label {\r\n		font-size: 14px !important;\r\n	}\r\n	@media (min-width:980px){\r\n	  .page-id-46220 #contactform .et_pb_row {\r\n		max-width: 100% !important;\r\n	}\r\n	}\r\n	.fl-short-form .nf-field-container {\r\n		margin-bottom: 15px !important;\r\n	}\r\n@media (max-width:980px){\r\n	.fl-short-form .nf-row:nth-child(3) .nf-cell {\r\n    width: 100%!important;\r\n}\r\n	.fl-short-form .nf-form-content input[type=button]{\r\n		float: none !important;\r\n	}\r\n}\r\n	 /*\r\n	|--------------------------------------------------------------------------\r\n	| Form Disclaimer iCOn Fix\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n	.dashicons-info:before {\r\n	   content: \"70\" !important;\r\n	font-weight: 900 !important;\r\n	font-family: \'ETmodules\' !important;\r\n	}\r\n	.dashicons-no-alt:before {\r\n	content: \"4d\" !important;\r\n	  font-weight: 900 !important;\r\n	font-family: \'ETmodules\' !important;\r\n	}\r\n	.fl-disclaimer__close {\r\n	font-family: ETmodules !important;\r\n	}\r\n	.fl-disclaimer__icon {\r\n	font-family: ETmodules !important;\r\n	font-weight: 900 !important;\r\n	}\r\n	@media(max-width:450px){\r\n	  h1,h2,h3,h4{\r\n		word-break:keep-all;\r\n	  }\r\n	  .fl-cta-button{\r\n		font-size:18px !important;\r\n	  }\r\n	  .fl-image {\r\n		max-width: 250px!important;\r\n	}\r\n	}\r\n	/*\r\n	|------------------------------------------------------------------\r\n	|      animation setting css\r\n	|------------------------------------------------------------------\r\n	*/\r\n	@media (max-width: 768px) {\r\n	.et_had_animation, .et_animated {\r\n	   animation: none!important;\r\n	   transform: none!important;\r\n	   opacity: 1!important;\r\n	}\r\n	}\r\n	.fl-attorney .et_pb_blurb_container {\r\n		padding: 18px 0 0!important;\r\n	}\r\n	/*\r\n		|--------------------------------------------------------------------------\r\n		| Innerpage\r\n		|--------------------------------------------------------------------------\r\n		*/\r\n	/* Show parent pages */\r\n	  .fl-sidebar .menu-practice-areas-container > ul > li {\r\n		display: block;\r\n	  margin-bottom: 12px !important;\r\n	  }\r\n\r\n	  /* Show related child pages */\r\n	  .fl-sidebar .menu-practice-areas-container .current-menu-item > ul > li,\r\n	  .fl-sidebar .menu-practice-areas-container .current-menu-parent > ul > li,\r\n	  .fl-sidebar .menu-practice-areas-container .current-menu-grandparent > ul > li  {\r\n		display: block;\r\n	  }\r\n	  .fl-sidebar .menu-item-has-children.current-menu-item > a::after,\r\n	  .fl-sidebar .menu-item-has-children.current-menu-parent > a::after {\r\n		  content: \"\";\r\n	  }\r\n\r\n	  /* style sub menu */\r\n	  .fl-sidebar .sub-menu {\r\n		margin-top: .5em;\r\n		text-transform: initial;\r\n		font-weight: 400;\r\n	  }\r\n\r\n	  /* style parent pages */\r\n	  .fl-sidebar .menu-practice-areas-container > ul > li {\r\n		font-weight: 400;\r\n	  }\r\n	.fl-sidebar ul.menu,#fl-sidebar-blog ul, #fl-sidebar-blog .textwidget p {\r\n		margin: 0px 0px 0px 22px;\r\n	}\r\n	.fl-sidebar li a{color:#fff !important;\r\n	  text-decoration:none !important;}\r\n	.fl-sidebar li.current-menu-item>a,.fl-sidebar li a:hover,.fl-sidebar .menu-practice-areas-container>ul>li.menu-item.menu-item-has-children.current-menu-parent.menu-item--depth-0>a, .fl-sidebar li.menu-item.menu-item-has-children.current-menu-parent.menu-item--depth-1>a {\r\n		color: #fff !important;\r\n	text-decoration:underline !important;}\r\n	.fl-sidebar h4.widgettitle {\r\n		border-bottom: 2px dotted #fff;\r\n		padding-bottom: 15px!important;\r\n		margin-bottom: 25px;\r\n	}\r\n	.fl-sidebar .menu-practice-areas-container>ul>li{\r\n	  margin-top: 12px !important;\r\n	}\r\n	.fl-inner-left .et_pb_section, .fl-inner-left .et_pb_row {\r\n		padding: 0;\r\n	}\r\n	.fl-inner-left h1,.fl-inner-left h2, .fl-inner-left h3 {\r\n		padding: 10px 0px 22px !important;\r\n	  line-height: 1.25em !important;\r\n	}\r\n	.fl-inner-left p,.fl-row-attorney p, .fl-row-attorney li ,.fl-inner-left li{\r\n		padding-bottom: 15px;\r\n	  font-size: 18px;\r\n		line-height: 1.5em;\r\n	}\r\n	.fl-inner-left ul {\r\n		padding-bottom: 15px;\r\n	}\r\n	.fl-inner-left .simple-sitemap-page .children{\r\n	  margin-top: 10px;\r\n	}\r\n	.et_pb_widget_area{\r\n	  border:3px solid #fff !important;\r\n	}\r\n	@media (max-width:980px){\r\n	  .fl-inner-left h1,.fl-inner-left h2, .fl-inner-left h3,.fl-row-attorney h1{\r\n		font-size: 30px !important;\r\n		line-height: 1.25em !important;\r\n	  }\r\n	  .fl-row-attorney h2,.fl-row-attorney h3{\r\n		font-size:24px !important;\r\n		line-height: 1.25em !important;\r\n	  }\r\n	}\r\n	@media (max-width:768px){\r\n	  .fl-inner-left h1, .fl-inner-left h2, .fl-inner-left h3, .fl-row-attorney h1{\r\n		font-size:28px !important;\r\n		line-height: 1.25em !important;\r\n	  }\r\n	  .fl-row-attorney h2,.fl-row-attorney h3{\r\n		font-size:24px !important;\r\n		line-height: 1.25em !important;\r\n	  }\r\n	}\r\n	.fl-sidebar h2.widgettitle {\r\n		padding-bottom: 10px !important;\r\n	}\r\n	/*\r\n		|--------------------------------------------------------------------------\r\n		| Contact Page\r\n		|--------------------------------------------------------------------------\r\n		*/\r\n	/************Hidden shortform in contact page*********************/\r\n	.page-id-45927 #contactform {\r\n		display: none !important;\r\n	}\r\n	.fl-long-form {\r\n		margin-top: 30px;\r\n	}\r\n	.fl-long-form .nf-form-content input[type=button],#email_attorney .nf-form-content input[type=button],body.et-db #et-boc .fl-email-btn .et_pb_button{\r\n		background: #211865 !important;\r\n		color: #fff !important;\r\n		font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\r\n		padding: 15px 30px!important;\r\n		cursor: pointer;\r\n		line-height: 20px!important;\r\n		letter-spacing: 1px !important;\r\n	  	font-weight: 400;\r\n	  	text-transform: uppercase !important;\r\n	}\r\n	.fl-long-form .nf-form-content input[type=button]:hover,#email_attorney .nf-form-content input[type=button]:hover,body.et-db #et-boc .fl-email-btn .et_pb_button:hover{\r\n	    background:#000!important;\r\n		color:#fff   !important;\r\n	}\r\n	.checkbox-container .nf-field-element, .listcheckbox-container .nf-field-element input[type=\"checkbox\"]{\r\n	  opacity: 0;}\r\n	.fl-long-form .nf-form-content .ninja-forms-field{\r\n	  color:#000 !important;\r\n	}\r\n	#email_attorney .nf-form-content input:not([type=button]), #email_attorney .nf-form-content textarea{\r\n	  color:#000 !important;\r\n	}\r\n	.fl-email-me a.et_pb_button {\r\n		padding: 15px 30px !important;\r\n		color: #000!important;\r\n		border-radius: 60px 0 60px 60px!important;\r\n	}\r\n	.fl-email-me a.et_pb_button:hover {\r\n		padding: 15px 30px !important;\r\n		color: #000!important;\r\n		border-radius: 60px 60px 60px 60px!important;\r\n	}\r\n		#email_attorney {\r\n    background: #2e5591!important;\r\n}\r\n\r\n	 /* Remove duplicate checkboxes */\r\n	.fl-long-form .list-checkbox-wrap input[type=”checkbox”] {\r\n	   opacity: 0;\r\n	 }\r\n\r\n	 /* Correct line-height alignment issue after duplicate checkboxes have been removed */\r\n	.fl-long-form .list-checkbox-wrap li label{\r\n	  line-height:1.4em !important;\r\n	}\r\n	.fl-long-form .nf-form-fields-required,.fl-long-form .form-links,.fl-short-form .form-links,.fl_people_single a {\r\n		font-size: 18px !important;\r\n	}\r\n\r\n\r\n	/* --------------------------------\r\n	Blog Right side content\r\n	--------------------------------- */\r\n	@media (min-width: 981px){\r\n	  #fl-sidebar-blog{ width: 30% !important; }\r\n	  .et_pb_column #fl-sidebar-blog{ width: 100% !important; }\r\n	  #fl-sidebar-blog .et_pb_widget.widget_media_image img{ max-width: 95% !important;}\r\n	}\r\n	#fl-sidebar-blog { padding: 30px !important; margin-bottom: 0px;}\r\n	#fl-sidebar-blog .et_pb_widget{ float: none; width: 100%; margin-bottom: 30px;}\r\n\r\n	#fl-sidebar-blog a{ color: #fff !important;\r\n	  text-decoration:none !important;}\r\n	#fl-sidebar-blog a:hover { color: #fff !important;\r\n	text-decoration:underline !important;}\r\n	/* Sidebar WidgetTitle */\r\n	#fl-sidebar-blog .widgettitle { font-weight: 600; font-size: 32px; color: #fff;\r\n	padding-bottom: 17px !important;}\r\n\r\n	/* Sidebar List */\r\n	#fl-sidebar-blog .et_pb_widget ul{ list-style-type: circle; padding-left: 20px;}\r\n	#fl-sidebar-blog .et_pb_widget ul li { padding-left: 0px; position: relative; color: #fff;\r\n	margin-bottom: 25px;}\r\n	#fl-sidebar-blog .et_pb_widget ul li a { color: #fff;\r\n	text-decoration:none !important;}\r\n	#fl-sidebar-blog .et_pb_widget ul li a:hover { color: #fff !important;\r\n	text-decoration:underline !important;}\r\n\r\n	/* Sidebar Search Bar */\r\n	#fl-sidebar-blog input.search-field{\r\n	  padding: 0 14px;\r\n	  border: none !important;\r\n		width: 63%;\r\n	  height:50px;\r\n	  margin-right: 5px;\r\n	}\r\n	#fl-sidebar-blog input[type=\'submit\']{\r\n	   width:32%;\r\n		 height:50px !important;\r\n		 font-size:14px;\r\n		 line-height: 20px !important;\r\n		 cursor: pointer!important;\r\n		background: #fff !important;;\r\n		color: #211865 !important;\r\n		font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\r\n	  vertical-align: middle;\r\n		letter-spacing: 1px;\r\n	  border:1px solid transparent !important;\r\n	}\r\n	#fl-sidebar-blog input[type=\'submit\']:hover{\r\n	  background: #318bb4 !important;\r\n	  color: #fff !important;\r\n	}\r\n	#fl-sidebar-blog::-webkit-input-placeholder {\r\n	  color: #333 !important;\r\n	  font-size:16px;\r\n	  line-height:20px;\r\n	}\r\n	#fl-sidebar-blog :-ms-input-placeholder { \r\n	  color: #333 !important;\r\n	  font-size:16px;\r\n	  line-height:20px;\r\n	}\r\n	#fl-sidebar-blog ::placeholder {\r\n	  color: #333  !important;\r\n	  font-size:16px;\r\n	  line-height:20px;\r\n	}\r\n	.fl-blog-left article {\r\n		margin-bottom: 30px !important;\r\n	}\r\n	.fl-blog-left .post-content-inner {\r\n		padding-bottom: 7px !important;\r\n	}\r\n	.fl-blog-left article p.post-meta {\r\n		margin-bottom: 8px !important;\r\n	}\r\n	.fl-blog-left h2.entry-title {\r\n		padding: 0 0 18px !important;\r\n	}\r\n	.fl-blog-left h1 {\r\n		padding: 0 0 18px !important;\r\n	  font-size: 40px !important;\r\n	}\r\n	.fl-blog-left .et_social_inline {\r\n		margin-top: 25px !important;\r\n	}\r\n	@media (max-width:767px){\r\n	  .fl-blog-left h2{\r\n		font-size: 32px !important;\r\n	  }\r\n	  .fl-blog-left h1{\r\n		font-size: 35px !important;\r\n	  }\r\n	}\r\n	@media (max-width:400px){\r\n	 #fl-sidebar-blog input[type=\'submit\'] {\r\n		width: 40%;\r\n		font-size: 14px;\r\n		letter-spacing: 0px;\r\n		margin-top: 2px;\r\n	}\r\n	#fl-sidebar-blog input.search-field {\r\n		width: 45%;\r\n	}\r\n	}\r\n	.fl-row-attorney ul{\r\n	  padding-bottom:12px !important;\r\n	}\r\n	#email_attorney span.ninja-forms-req-symbol,.fl-long-form .ninja-forms-req-symbol {\r\n		color: #FF0000 !important;\r\n	}\r\n	#fl-sidebar-blog  input::placeholder{\r\n	color:#333 !important;\r\n	font-weight:600;\r\n	}\r\n	.fl-inner-left .alignright,.fl-inner-left article img,.fl-inner-left figure img,.fl-inner-left img {\r\n		margin: 5px 10px 15px !important;\r\n		display: block !important;\r\n		float: none !important;\r\n	}\r\n\r\n	.fl-cta-button-mobile .et_pb_text_inner{\r\n	  line-height:3em !important;\r\n	}\r\n\r\n	@media(max-width:450px){\r\n	  h1,h2,h3,h4{\r\n		word-break:keep-all;\r\n	  }\r\n	  .fl-cta-button{\r\n		font-size:18px !important;\r\n	  }\r\n	  .fl-image {\r\n		max-width: 250px!important;\r\n	}\r\n	}\r\n.mfp-close-btn-in .mfp-close {\r\n    color: #fff;\r\n    opacity: 1;\r\n}\r\n.fl-row-attorney h2 {\r\n    padding-bottom: 10px !important;\r\n}\r\n/*\r\n|--------------------------------------------------------------------------\r\n          Banner\r\n|--------------------------------------------------------------------------\r\n*/\r\n.fl-banner-slider .et-pb-active-slide .et_pb_slide_description {\r\nanimation-name: none;}\r\n\r\n.fl-banner-slider .et-pb-controllers a {\r\n   width: 14px !important;\r\n   height: 14px !important;\r\n   opacity: 1 !important;\r\n   background-color: 000 !important;\r\n   border: 2px solid #fff !important;\r\n	color:#fff !important;\r\n}\r\n.fl-banner-slider .et-pb-controllers a.et-pb-active-control {\r\n   background-color: #fff !important;\r\n	color:#000 !important;\r\n}\r\n.fl-banner-slider .et-pb-controllers {\r\n   position: absolute;\r\n   bottom: 60px;\r\n   left: 0;\r\n   width: 100%;\r\n   text-align: center;\r\n   z-index: 10;\r\n}\r\n.fl-banner-slider .et_pb_slide_description\r\n{\r\n	padding:19% 0 !important;\r\n}\r\n/*Mobile Slider */\r\n.fl-disable-lightbox .et-pb-controllers a{\r\n	background-color: #fff !important;\r\n}\r\n.fl-disable-lightbox .et_pb_bg_layout_light .et-pb-controllers .et-pb-active-control{\r\n	background-color: #fff !important;\r\n}\r\n.fl-disable-lightbox .et-pb-slider-arrows{display: none !important;}\r\n.fl-disable-lightbox .et-pb-controllers{display:block !important;}\r\n/* Disable click effect of image */\r\n.fl-disable-lightbox a { pointer-events: none;}\r\n.fl-disable-lightbox .et_overlay {display: none !important;}\r\n/*Mobile Slider */\r\n.fl-disable-lightbox .et-pb-slider-arrows,\r\n.fl-disable-lightbox .et-pb-controllers{display:none !important;}\r\n/* Disable click effect of image */\r\n.fl-disable-lightbox a { pointer-events: none;}\r\n.fl-disable-lightbox .et_overlay {display: none !important;}\r\n@media(min-width:980px) and (max-width:1140px){\r\n	.fl-menu li{margin-left:14px !important;}\r\n}\r\n@media all and (max-width: 350px){\r\n	.fl-border-style-left .et_pb_image_wrap:after{display:none !important}\r\n	.fl-border-style-right .et_pb_image_wrap:after{display:none !important;}\r\n}\r\n\r\n\r\n.nf-form-content .nf-field-container .nf-field .nf-field-element input[type=button]:focus {\r\n    outline: #000 2px dotted!important;\r\n    outline-offset: 0!important;\r\n    box-shadow: 0 0 0 2px #fff!important;\r\n    border-radius: 0!important; }\r\n\r\n\r\n/*---call btn misalign for text spacing*/\r\n.fl-3-column a{\r\n    line-height: 2.5!important;\r\n}\r\n\r\n#fl-template .mobile_menu_bar:after{\r\n	font-size: 16px!important;\r\n}\r\n\r\n.mobile_menu_bar{\r\n	top:-6px!important;\r\n}\r\n.parent-pageid-45925 #main-content .fl-inner-left.fl-darklinks h2{\r\n	font-size: 23px !important;\r\n	padding-top: 5px !important;\r\n	padding-bottom: 10px !important;\r\n}\r\n.et_pb_post_content_0_tb_body.et_pb_post_content a.btn-email-staff {\r\n	display: inline-block;\r\n    background: #211865!important;\r\n    color: #fff!important;\r\n    font-size: 19px!important;\r\n    font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif!important;\r\n    padding: 15px 30px!important;\r\n    cursor: pointer;\r\n    line-height: 20px!important;\r\n    letter-spacing: 1px!important;\r\n    font-weight: 700;\r\n    text-transform: uppercase!important;\r\n    text-decoration: none !important;\r\n    text-align: center;\r\n	margin-bottom: 20px;\r\n}\r\n.et_pb_post_content_0_tb_body.et_pb_post_content a.btn-email-staff:hover,\r\n.et_pb_post_content_0_tb_body.et_pb_post_content a.btn-email-staff:focus{\r\n	background: #000 !important;\r\n	color: #fff !important;\r\n}\r\n\r\n\r\n.simple-sitemap-container-6310c0e0dae11.tab-enabled input:checked+label {\r\n    background-color: #fff;\r\n}\r\n\r\n@media screen and (min-width: 981px) {\r\n.sub-menu {\r\n	min-width: 300px;\r\n}\r\n#top-menu li li a {\r\n    width: 260px;\r\n	/* Extra - Reduce padding on list items */\r\n	padding: 4px 12px;\r\n	}\r\n}\";s:21:\"divi_enable_dropdowns\";s:2:\"on\";s:14:\"divi_home_link\";s:2:\"on\";s:15:\"divi_sort_pages\";s:10:\"menu_order\";s:15:\"divi_order_page\";s:3:\"asc\";s:22:\"divi_tiers_shown_pages\";i:3;s:32:\"divi_enable_dropdowns_categories\";s:2:\"on\";s:21:\"divi_categories_empty\";s:2:\"on\";s:27:\"divi_tiers_shown_categories\";i:3;s:13:\"divi_sort_cat\";s:4:\"name\";s:14:\"divi_order_cat\";s:3:\"asc\";s:20:\"divi_disable_toptier\";s:5:\"false\";s:25:\"divi_scroll_to_anchor_fix\";s:5:\"false\";s:14:\"divi_postinfo2\";a:3:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";}s:22:\"divi_show_postcomments\";s:5:\"false\";s:15:\"divi_thumbnails\";s:5:\"false\";s:20:\"divi_page_thumbnails\";s:5:\"false\";s:23:\"divi_show_pagescomments\";s:5:\"false\";s:14:\"divi_postinfo1\";a:3:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";}s:21:\"divi_thumbnails_index\";s:5:\"false\";s:19:\"divi_seo_home_title\";s:5:\"false\";s:25:\"divi_seo_home_description\";s:5:\"false\";s:22:\"divi_seo_home_keywords\";s:5:\"false\";s:23:\"divi_seo_home_canonical\";s:5:\"false\";s:23:\"divi_seo_home_titletext\";s:0:\"\";s:29:\"divi_seo_home_descriptiontext\";s:0:\"\";s:26:\"divi_seo_home_keywordstext\";s:0:\"\";s:18:\"divi_seo_home_type\";s:27:\"BlogName | Blog description\";s:22:\"divi_seo_home_separate\";s:3:\" | \";s:21:\"divi_seo_single_title\";s:5:\"false\";s:27:\"divi_seo_single_description\";s:5:\"false\";s:24:\"divi_seo_single_keywords\";s:5:\"false\";s:25:\"divi_seo_single_canonical\";s:5:\"false\";s:27:\"divi_seo_single_field_title\";s:9:\"seo_title\";s:33:\"divi_seo_single_field_description\";s:15:\"seo_description\";s:30:\"divi_seo_single_field_keywords\";s:12:\"seo_keywords\";s:20:\"divi_seo_single_type\";s:21:\"Post title | BlogName\";s:24:\"divi_seo_single_separate\";s:3:\" | \";s:24:\"divi_seo_index_canonical\";s:5:\"false\";s:26:\"divi_seo_index_description\";s:5:\"false\";s:19:\"divi_seo_index_type\";s:24:\"Category name | BlogName\";s:23:\"divi_seo_index_separate\";s:3:\" | \";s:28:\"divi_integrate_header_enable\";s:2:\"on\";s:26:\"divi_integrate_body_enable\";s:2:\"on\";s:31:\"divi_integrate_singletop_enable\";s:2:\"on\";s:34:\"divi_integrate_singlebottom_enable\";s:2:\"on\";s:21:\"divi_integration_head\";s:0:\"\";s:21:\"divi_integration_body\";s:695:\"<script>\r\n/*\r\n|--------------------------------------------------------------------------\r\n| Disclaimer Pop Up\r\n|--------------------------------------------------------------------------\r\n|\r\n| When the long and short form disclaimer link is clicked, add the class\r\n| \'active\' and apply the max height to the disclaimer content\r\n|\r\n*/\r\n\r\njQuery(document).on(\'click\', \'#form-disclaimer-trigger, #fl-disclaimer__close\', function(e){\r\n	var disclaimerHeight = jQuery(\'#fl-disclaimer__inner\').outerHeight(true);\r\n	e.preventDefault();\r\n	jQuery(\'#fl-disclaimer\').toggleClass(\'active\').css(\'max-height\',\'0px\');\r\n	jQuery(\'#fl-disclaimer.active\').css(\'max-height\',disclaimerHeight + \'px\');\r\n});\r\n</script>\";s:27:\"divi_integration_single_top\";s:0:\"\";s:30:\"divi_integration_single_bottom\";s:0:\"\";s:37:\"et_automatic_updates_options_username\";s:0:\"\";s:36:\"et_automatic_updates_options_api_key\";s:0:\"\";s:15:\"divi_468_enable\";s:5:\"false\";s:14:\"divi_468_image\";s:0:\"\";s:12:\"divi_468_url\";s:0:\"\";s:16:\"divi_468_adsense\";s:0:\"\";s:24:\"divi_show_instagram_icon\";s:5:\"false\";s:18:\"divi_instagram_url\";s:1:\"#\";s:29:\"divi_enable_responsive_images\";s:2:\"on\";s:39:\"static_css_custom_css_safety_check_done\";b:1;s:23:\"2_5_flush_rewrite_rules\";s:4:\"done\";s:25:\"3_0_flush_rewrite_rules_2\";s:4:\"done\";s:31:\"divi_previous_installed_version\";s:6:\"4.14.8\";s:29:\"divi_latest_installed_version\";s:6:\"4.18.0\";s:27:\"divi_skip_font_subset_force\";b:1;s:40:\"divi_email_provider_credentials_migrated\";b:1;s:15:\"divi_1_3_images\";s:7:\"checked\";s:21:\"et_pb_layouts_updated\";b:1;s:30:\"library_removed_legacy_layouts\";b:1;s:30:\"divi_2_4_documentation_message\";s:9:\"triggered\";s:19:\"product_tour_status\";a:28:{i:29;s:3:\"off\";i:155;s:3:\"off\";i:163;s:3:\"off\";i:115;s:3:\"off\";i:462;s:3:\"off\";i:422;s:3:\"off\";i:671;s:3:\"off\";i:182;s:3:\"off\";i:202;s:3:\"off\";i:148;s:3:\"off\";i:829;s:3:\"off\";i:1262;s:3:\"off\";i:688;s:3:\"off\";i:1429;s:3:\"off\";i:72;s:3:\"off\";i:1260;s:3:\"off\";i:1255;s:3:\"off\";i:1256;s:3:\"off\";i:904;s:3:\"off\";i:488;s:3:\"off\";i:694;s:3:\"off\";i:901;s:3:\"off\";i:431;s:3:\"off\";i:434;s:3:\"off\";i:1155;s:3:\"off\";i:1254;s:3:\"off\";i:153;s:3:\"off\";i:12;s:3:\"off\";}s:27:\"et_pb_post_type_integration\";a:4:{s:4:\"post\";s:3:\"off\";s:4:\"page\";s:2:\"on\";s:17:\"brainaddons-popup\";s:2:\"on\";s:7:\"project\";s:2:\"on\";}s:21:\"et_pb_static_css_file\";s:3:\"off\";s:19:\"et_pb_css_in_footer\";s:3:\"off\";s:25:\"et_pb_product_tour_global\";s:3:\"off\";s:24:\"footer_widget_text_color\";s:7:\"#ffffff\";s:24:\"footer_widget_link_color\";s:7:\"#ffffff\";s:30:\"3_0_flush_rewrite_rules_3.19.5\";s:4:\"done\";s:24:\"et_enable_classic_editor\";s:2:\"on\";s:13:\"content_width\";i:1366;s:14:\"body_font_size\";i:17;s:16:\"body_header_size\";i:40;s:18:\"body_header_height\";d:1.3000000000000000444089209850062616169452667236328125;s:16:\"body_font_height\";d:1.5;s:9:\"body_font\";s:10:\"Montserrat\";s:12:\"heading_font\";s:16:\"Playfair Display\";s:10:\"font_color\";s:7:\"#000000\";s:10:\"link_color\";s:7:\"#2e5591\";s:12:\"header_color\";s:7:\"#211865\";s:20:\"phone_body_font_size\";i:18;s:21:\"tablet_body_font_size\";i:18;s:22:\"phone_header_font_size\";i:36;s:23:\"tablet_header_font_size\";i:36;s:30:\"et_flush_rewrite_rules_library\";s:6:\"4.18.0\";s:32:\"et_fb_pref_settings_bar_location\";s:6:\"bottom\";s:28:\"et_fb_pref_builder_animation\";s:4:\"true\";s:41:\"et_fb_pref_builder_display_modal_settings\";s:5:\"false\";s:39:\"et_fb_pref_builder_enable_dummy_content\";s:4:\"true\";s:21:\"et_fb_pref_event_mode\";s:5:\"hover\";s:28:\"et_fb_pref_limited_view_mode\";s:9:\"wireframe\";s:32:\"et_fb_pref_hide_disabled_modules\";s:5:\"false\";s:28:\"et_fb_pref_history_intervals\";i:1;s:29:\"et_fb_pref_page_creation_flow\";s:7:\"default\";s:42:\"et_fb_pref_quick_actions_always_start_with\";s:7:\"nothing\";s:44:\"et_fb_pref_quick_actions_show_recent_queries\";s:3:\"off\";s:39:\"et_fb_pref_quick_actions_recent_queries\";s:0:\"\";s:40:\"et_fb_pref_quick_actions_recent_category\";s:0:\"\";s:35:\"et_fb_pref_limited_modal_preference\";s:7:\"default\";s:30:\"et_fb_pref_modal_snap_location\";s:0:\"\";s:21:\"et_fb_pref_modal_snap\";s:5:\"false\";s:27:\"et_fb_pref_modal_fullscreen\";s:5:\"false\";s:32:\"et_fb_pref_modal_dimension_width\";i:400;s:33:\"et_fb_pref_modal_dimension_height\";i:722;s:27:\"et_fb_pref_modal_position_x\";i:1395;s:27:\"et_fb_pref_modal_position_y\";i:75;s:32:\"et_fb_pref_limited_toolbar_click\";s:4:\"true\";s:34:\"et_fb_pref_limited_toolbar_desktop\";s:4:\"true\";s:31:\"et_fb_pref_limited_toolbar_grid\";s:5:\"false\";s:32:\"et_fb_pref_limited_toolbar_hover\";s:4:\"true\";s:32:\"et_fb_pref_limited_toolbar_phone\";s:4:\"true\";s:33:\"et_fb_pref_limited_toolbar_tablet\";s:4:\"true\";s:36:\"et_fb_pref_limited_toolbar_wireframe\";s:4:\"true\";s:31:\"et_fb_pref_limited_toolbar_zoom\";s:4:\"true\";s:26:\"divi_bfb_optin_modal_shown\";s:3:\"yes\";s:20:\"et_fb_pref_view_mode\";s:7:\"desktop\";s:27:\"et_fb_pref_modal_preference\";s:7:\"default\";s:24:\"et_fb_pref_toolbar_click\";s:5:\"false\";s:26:\"et_fb_pref_toolbar_desktop\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_grid\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_hover\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_phone\";s:4:\"true\";s:25:\"et_fb_pref_toolbar_tablet\";s:4:\"true\";s:28:\"et_fb_pref_toolbar_wireframe\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_zoom\";s:4:\"true\";s:12:\"gutter_width\";i:1;s:16:\"show_search_icon\";b:1;s:20:\"all_buttons_bg_color\";s:7:\"#ffffff\";s:24:\"all_buttons_border_width\";i:0;s:25:\"all_buttons_border_radius\";i:0;s:16:\"all_buttons_font\";s:16:\"Playfair Display\";s:16:\"all_buttons_icon\";s:2:\"no\";s:24:\"all_buttons_border_color\";s:7:\"#ffffff\";s:26:\"all_buttons_bg_color_hover\";s:7:\"#2e5591\";s:30:\"all_buttons_border_color_hover\";s:7:\"#211865\";s:31:\"all_buttons_border_radius_hover\";i:0;s:20:\"phone_section_height\";i:0;s:21:\"tablet_section_height\";i:0;s:16:\"phone_row_height\";i:0;s:17:\"tablet_row_height\";i:0;s:27:\"et_pb_clear_templates_cache\";b:1;s:15:\"section_padding\";i:0;s:11:\"row_padding\";i:0;s:12:\"accent_color\";s:7:\"#0099c4\";s:16:\"menu_link_active\";s:7:\"#0099c4\";s:31:\"primary_nav_dropdown_line_color\";s:7:\"#0099c4\";s:22:\"fixed_menu_link_active\";s:7:\"#2ea3f2\";s:29:\"disable_custom_footer_credits\";b:1;s:25:\"all_buttons_spacing_hover\";i:1;s:23:\"builder_custom_defaults\";a:0:{}s:33:\"customizer_settings_migrated_flag\";b:1;s:34:\"builder_custom_defaults_unmigrated\";b:0;s:19:\"post_meta_font_size\";i:16;s:21:\"all_buttons_font_size\";i:19;s:13:\"wp_custom_css\";s:3682:\"/*\r\n|--------------------------------------------------------------------------\r\n| General\r\n|--------------------------------------------------------------------------\r\n*/\r\n\r\n/* Set site width */\r\n.et_pb_row, .container {\r\n	width: 90%;\r\n}\r\n\r\n/* Set cursor for anchors without HREF */\r\na:not([href]) {\r\n	cursor: default;\r\n}\r\n\r\n/* Prevent NAP phone numbers from breaking mid-word */\r\n.nap-item--phone {\r\n	white-space: nowrap;\r\n}\r\n\r\n/* Hide empty paragraph tags */\r\np:empty {\r\n	display: none;\r\n}\r\n\r\n/* Remove bottom margin on single post pages */\r\n.single .et_pb_post {\r\n	margin-bottom: 0;\r\n}\r\n\r\n/* Remove margin from Brightcove video */\r\nfigure.c-brightcove {\r\n	margin: 0;\r\n}\r\n\r\n/*\r\n|--------------------------------------------------------------------------\r\n| Typography\r\n|--------------------------------------------------------------------------\r\n*/\r\n\r\n/* Set the root font size */\r\nhtml {\r\n	font-size: 18px;\r\n}\r\n\r\n/* Reset font weight and set default line height */\r\nbody, input, textarea, select {\r\n	font-weight: unset;\r\n	line-height: 1.5;\r\n}\r\n\r\n/* Set the default p, ol, and ul padding */\r\np, .et_pb_text ol, .et_pb_text ul {\r\n	padding-bottom: 1.5em;\r\n}\r\n\r\n/* Set the default hr styles */\r\nhr {\r\n	border: 0.5px solid rgba(0, 0, 0, 0.2);\r\n}\r\n\r\n/* Set the default blockquote margins */\r\nblockquote {\r\n	margin-top: 0;\r\n	margin-bottom: 1.5em;\r\n}\r\n \r\n/* Set default header styles */\r\nh1, h2, h3, h4, h5, h6 {\r\n	padding-top: 1.5rem;\r\n	padding-bottom: 1.5rem;\r\n	font-weight: unset;\r\n	line-height: 1.2;\r\n	overflow-wrap: normal;\r\n}\r\n\r\n/* Remove the top padding from a header if it’s the first child */\r\nh1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {\r\n	padding-top: 0;\r\n}\r\n\r\n/* Remove the bottom padding from a header if it’s the last child */\r\nh1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {\r\n	padding-bottom: 0;\r\n}\r\n\r\n/* Reset button font weight and line height */\r\n.et_pb_button {\r\n	font-weight: unset;\r\n	line-height: 1.2 !important;\r\n}\r\n\r\n/*\r\n|--------------------------------------------------------------------------\r\n| Forms\r\n|--------------------------------------------------------------------------\r\n*/\r\n\r\n/* Remove max width and padding */\r\n.nf-form-content {\r\n	padding: 0 !important;\r\n	max-width: 100% !important;\r\n}\r\n\r\n/* Hide the short form on the contact page */\r\n.page-contact .fl-short-form {\r\n	display: none;\r\n}\r\n\r\n/*\r\n|--------------------------------------------------------------------------\r\n| Form Disclaimer\r\n|--------------------------------------------------------------------------\r\n*/\r\n \r\n.fl-disclaimer {\r\n  max-height: 0;\r\n  opacity: 0;\r\n  overflow: hidden;\r\n  transition: opacity 0.15s ease-in, max-height 0.15s ease-in 0.15s;\r\n}\r\n \r\n.fl-disclaimer.active {\r\n  opacity: 1;\r\n  transition: opacity 0.15s ease-out 0.15s, max-height 0.15s ease-out;\r\n}\r\n \r\n.fl-disclaimer__inner {\r\n  position: relative;\r\n  margin-top: 25px;\r\n  padding: 20px;\r\n  border: 1px solid rgba(0, 0, 0, 0.2);\r\n  background: #fff;\r\n  font-size: 14px;\r\n  color: black;\r\n  transform: scale(0.95);\r\n  transition: transform 0.15s ease-out;\r\n}\r\n \r\n.fl-disclaimer.active .fl-disclaimer__inner {\r\n  transform: scale(1);\r\n  transition: transform 0.15s ease-out 0.15s;\r\n}\r\n \r\n.fl-disclaimer__icon {\r\n  display: inline-block;\r\n  vertical-align: top;\r\n  font-family: dashicons;\r\n}\r\n \r\n.fl-disclaimer__close {\r\n  position: absolute;\r\n  top: 0;\r\n  right: 0;\r\n  display: flex;\r\n  justify-content: center;\r\n  padding: 5px;\r\n  font-family: dashicons;\r\n  font-size: 16px;\r\n  cursor: pointer;\r\n  transition: .15s ease-out;\r\n}\r\n \r\n.fl-disclaimer__close:hover, .fl-disclaimer__close:focus {\r\n  opacity: 0.5;\r\n}\";s:16:\"post_meta_height\";s:1:\"1\";s:17:\"post_meta_spacing\";s:1:\"0\";s:15:\"post_meta_style\";s:0:\"\";s:21:\"post_header_font_size\";s:2:\"30\";s:18:\"post_header_height\";s:1:\"1\";s:19:\"post_header_spacing\";s:1:\"0\";s:17:\"post_header_style\";s:0:\"\";s:12:\"boxed_layout\";s:0:\"\";s:17:\"use_sidebar_width\";b:1;s:13:\"sidebar_width\";i:19;s:16:\"cover_background\";s:2:\"on\";s:19:\"body_header_spacing\";s:1:\"0\";s:17:\"body_header_style\";s:0:\"\";s:13:\"color_schemes\";s:4:\"none\";s:12:\"header_style\";s:4:\"left\";s:12:\"vertical_nav\";s:0:\"\";s:24:\"vertical_nav_orientation\";s:4:\"left\";s:8:\"hide_nav\";s:0:\"\";s:24:\"show_header_social_icons\";s:0:\"\";s:22:\"slide_nav_show_top_bar\";s:2:\"on\";s:15:\"slide_nav_width\";s:3:\"320\";s:19:\"slide_nav_font_size\";s:2:\"14\";s:23:\"slide_nav_top_font_size\";s:2:\"14\";s:24:\"fullscreen_nav_font_size\";s:2:\"30\";s:28:\"fullscreen_nav_top_font_size\";s:2:\"18\";s:22:\"slide_nav_font_spacing\";s:1:\"0\";s:14:\"slide_nav_font\";s:4:\"none\";s:20:\"slide_nav_font_style\";s:0:\"\";s:12:\"slide_nav_bg\";s:7:\"#0099c4\";s:21:\"slide_nav_links_color\";s:7:\"#ffffff\";s:28:\"slide_nav_links_color_active\";s:7:\"#ffffff\";s:19:\"slide_nav_top_color\";s:21:\"rgba(255,255,255,0.6)\";s:16:\"slide_nav_search\";s:21:\"rgba(255,255,255,0.6)\";s:19:\"slide_nav_search_bg\";s:15:\"rgba(0,0,0,0.2)\";s:13:\"nav_fullwidth\";s:0:\"\";s:17:\"hide_primary_logo\";s:0:\"\";s:11:\"menu_height\";i:66;s:11:\"logo_height\";s:2:\"54\";s:15:\"menu_margin_top\";s:1:\"0\";s:21:\"primary_nav_font_size\";s:2:\"14\";s:24:\"primary_nav_font_spacing\";s:1:\"0\";s:16:\"primary_nav_font\";s:4:\"none\";s:22:\"primary_nav_font_style\";s:0:\"\";s:23:\"secondary_nav_font_size\";s:2:\"12\";s:23:\"secondary_nav_fullwidth\";s:0:\"\";s:26:\"secondary_nav_font_spacing\";s:1:\"0\";s:18:\"secondary_nav_font\";s:4:\"none\";s:24:\"secondary_nav_font_style\";s:0:\"\";s:9:\"menu_link\";s:7:\"#ffffff\";s:16:\"hide_mobile_logo\";s:0:\"\";s:16:\"mobile_menu_link\";s:15:\"rgba(0,0,0,0.6)\";s:14:\"primary_nav_bg\";s:7:\"#ffffff\";s:23:\"primary_nav_dropdown_bg\";s:7:\"#ffffff\";s:31:\"primary_nav_dropdown_link_color\";s:7:\"#211865\";s:30:\"primary_nav_dropdown_animation\";s:4:\"fade\";s:21:\"mobile_primary_nav_bg\";s:7:\"#ffffff\";s:16:\"secondary_nav_bg\";s:7:\"#0099c4\";s:28:\"secondary_nav_text_color_new\";s:7:\"#ffffff\";s:25:\"secondary_nav_dropdown_bg\";s:7:\"#0099c4\";s:33:\"secondary_nav_dropdown_link_color\";s:7:\"#ffffff\";s:32:\"secondary_nav_dropdown_animation\";s:4:\"fade\";s:22:\"primary_nav_text_color\";s:4:\"dark\";s:24:\"secondary_nav_text_color\";s:5:\"light\";s:15:\"hide_fixed_logo\";b:0;s:21:\"minimized_menu_height\";s:2:\"40\";s:27:\"fixed_primary_nav_font_size\";s:2:\"14\";s:20:\"fixed_primary_nav_bg\";s:7:\"#ffffff\";s:22:\"fixed_secondary_nav_bg\";s:7:\"#2ea3f2\";s:15:\"fixed_menu_link\";s:7:\"#ffffff\";s:25:\"fixed_secondary_menu_link\";s:7:\"#ffffff\";s:12:\"phone_number\";s:0:\"\";s:12:\"header_email\";s:0:\"\";s:24:\"show_footer_social_icons\";s:2:\"on\";s:14:\"footer_columns\";s:1:\"4\";s:9:\"footer_bg\";s:7:\"#222222\";s:23:\"widget_header_font_size\";d:21.599999999999997868371792719699442386627197265625;s:24:\"widget_header_font_style\";b:0;s:21:\"widget_body_font_size\";i:18;s:23:\"widget_body_line_height\";s:3:\"1.7\";s:22:\"widget_body_font_style\";b:0;s:26:\"footer_widget_header_color\";s:7:\"#0099c4\";s:26:\"footer_widget_bullet_color\";s:7:\"#0099c4\";s:28:\"footer_menu_background_color\";s:22:\"rgba(255,255,255,0.05)\";s:22:\"footer_menu_text_color\";s:7:\"#bbbbbb\";s:29:\"footer_menu_active_link_color\";s:7:\"#0099c4\";s:26:\"footer_menu_letter_spacing\";s:1:\"0\";s:22:\"footer_menu_font_style\";b:0;s:21:\"footer_menu_font_size\";s:2:\"14\";s:27:\"bottom_bar_background_color\";s:16:\"rgba(0,0,0,0.32)\";s:21:\"bottom_bar_text_color\";s:7:\"#666666\";s:21:\"bottom_bar_font_style\";b:0;s:20:\"bottom_bar_font_size\";s:2:\"14\";s:27:\"bottom_bar_social_icon_size\";s:2:\"24\";s:28:\"bottom_bar_social_icon_color\";s:7:\"#666666\";s:21:\"custom_footer_credits\";s:0:\"\";s:22:\"all_buttons_text_color\";s:7:\"#211865\";s:19:\"all_buttons_spacing\";i:1;s:22:\"all_buttons_font_style\";s:14:\"bold|uppercase\";s:25:\"all_buttons_selected_icon\";s:1:\"5\";s:22:\"all_buttons_icon_color\";s:7:\"#ffffff\";s:26:\"all_buttons_icon_placement\";s:5:\"right\";s:22:\"all_buttons_icon_hover\";s:3:\"yes\";s:28:\"all_buttons_text_color_hover\";s:7:\"#ffffff\";s:12:\"divi_favicon\";s:0:\"\";s:29:\"custom_defaults_migrated_flag\";b:1;s:29:\"divi_dynamic_module_framework\";s:2:\"on\";s:16:\"divi_dynamic_css\";s:2:\"on\";s:30:\"divi_dynamic_icons_child_theme\";s:5:\"false\";s:22:\"divi_inline_stylesheet\";s:5:\"false\";s:17:\"divi_critical_css\";s:2:\"on\";s:30:\"divi_critical_threshold_height\";s:6:\"Medium\";s:25:\"divi_dynamic_js_libraries\";s:2:\"on\";s:19:\"divi_disable_emojis\";s:5:\"false\";s:20:\"divi_defer_block_css\";s:5:\"false\";s:24:\"divi_google_fonts_inline\";s:5:\"false\";s:51:\"divi_limit_google_fonts_support_for_legacy_browsers\";s:2:\"on\";s:23:\"divi_enable_jquery_body\";s:5:\"false\";s:32:\"divi_enable_jquery_compatibility\";s:5:\"false\";s:29:\"divi_enable_jquery_body_super\";s:5:\"false\";s:22:\"builder_global_presets\";O:8:\"stdClass\":0:{}s:36:\"et_fb_pref_lv_modal_dimension_height\";i:0;s:35:\"et_fb_pref_lv_modal_dimension_width\";i:0;s:30:\"et_fb_pref_lv_modal_position_x\";i:0;s:30:\"et_fb_pref_lv_modal_position_y\";i:0;s:34:\"et_fb_pref_responsive_tablet_width\";i:768;s:35:\"et_fb_pref_responsive_tablet_height\";i:0;s:33:\"et_fb_pref_responsive_phone_width\";i:400;s:34:\"et_fb_pref_responsive_phone_height\";i:0;s:35:\"et_fb_pref_responsive_minimum_width\";i:320;s:35:\"et_fb_pref_responsive_maximum_width\";i:980;s:46:\"et_fb_pref_builder_enable_visual_theme_builder\";s:4:\"true\";s:18:\"divi_dynamic_icons\";s:5:\"false\";}','yes'),(102,'acf_version','5.12.3','yes'),(103,'cron','a:24:{i:1752349202;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:1752349668;a:1:{s:39:\"WPEngineSecurityAuditor_Scans_scheduler\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1752350730;a:1:{s:44:\"check_plugin_updates-divi-breadcrumbs-module\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1752350948;a:1:{s:28:\"primeMoverDeleteSymlinkEvent\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:24:\"every_prime_mover_biweek\";s:4:\"args\";a:0:{}s:8:\"interval\";i:259200;}}}i:1752370096;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1752370799;a:2:{s:28:\"check_plugin_updates-aioseop\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:41:\"puc_cron_check_updates-divi-stop-stacking\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1752370802;a:1:{s:20:\"wp_stream_auto_purge\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1752374679;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1752378657;a:1:{s:59:\"puc_cron_check_updates-dwd-custom-fullwidth-header-extended\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1752378701;a:1:{s:40:\"puc_cron_check_updates-dwd-maps-extended\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1752382982;a:1:{s:22:\"redirection_log_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1752383055;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:1752414005;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:1752417879;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:1752422391;a:2:{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;}}s:21:\"et_builder_fonts_cron\";a:1:{s:32:\"552cbb9d6515dadbbc4718ad75114f08\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:1:{s:8:\"interval\";s:5:\"daily\";}s:8:\"interval\";i:86400;}}}i:1752429574;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:1752490781;a:1:{s:22:\"nf_marketing_feed_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"nf-weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1752490853;a:1:{s:23:\"nf_email_telemetry_push\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"nf-weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1752629368;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1752659116;a:1:{s:26:\"nf_weekly_promotion_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"nf-weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1752845295;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:1754564381;a:1:{s:13:\"nf_optin_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"nf-monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2678400;}}}i:1754660401;a:1:{s:32:\"et_core_page_resource_auto_clear\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2678400;}}}s:7:\"version\";i:2;}','on'),(104,'ninja_forms_oauth_client_secret','uI9maAx4CE1TYJkjfUd4fXJa4umyfyyevJ9C2gyH','yes'),(105,'ninja_forms_version','3.6.12','yes'),(106,'ninja_forms_db_version','1.4','no'),(107,'ninja_forms_required_updates','a:5:{s:19:\"CacheCollateActions\";s:19:\"2019-07-26 13:39:59\";s:17:\"CacheCollateForms\";s:19:\"2019-07-26 13:39:59\";s:18:\"CacheCollateFields\";s:19:\"2019-07-26 13:39:59\";s:19:\"CacheCollateObjects\";s:19:\"2019-07-26 13:39:59\";s:19:\"CacheCollateCleanup\";s:19:\"2019-07-26 13:39:59\";}','yes'),(108,'disable_comments_options','a:7:{s:10:\"db_version\";i:7;s:19:\"disabled_post_types\";a:3:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:10:\"attachment\";}s:17:\"remove_everywhere\";b:1;s:9:\"permanent\";b:0;s:17:\"sitewide_settings\";b:0;s:14:\"disabled_sites\";a:2448:{s:3:\"all\";b:1;s:6:\"site_1\";b:1;s:9:\"site_1102\";b:1;s:12:\"site_1500001\";b:1;s:12:\"site_1500002\";b:1;s:12:\"site_1500003\";b:1;s:12:\"site_1500004\";b:1;s:12:\"site_1500005\";b:1;s:12:\"site_1500006\";b:1;s:12:\"site_1500007\";b:1;s:12:\"site_1500008\";b:1;s:12:\"site_1500009\";b:1;s:12:\"site_1500010\";b:1;s:12:\"site_1500011\";b:1;s:12:\"site_1500012\";b:1;s:12:\"site_1500013\";b:1;s:12:\"site_1500014\";b:1;s:12:\"site_1500015\";b:1;s:12:\"site_1500016\";b:1;s:12:\"site_1500017\";b:1;s:12:\"site_1500018\";b:1;s:12:\"site_1500019\";b:1;s:12:\"site_1500020\";b:1;s:12:\"site_1500021\";b:1;s:12:\"site_1500022\";b:1;s:12:\"site_1500023\";b:1;s:12:\"site_1500024\";b:1;s:12:\"site_1500025\";b:1;s:12:\"site_1500026\";b:1;s:12:\"site_1500027\";b:1;s:12:\"site_1500028\";b:1;s:12:\"site_1500029\";b:1;s:12:\"site_1500030\";b:1;s:12:\"site_1500031\";b:1;s:12:\"site_1500032\";b:1;s:12:\"site_1500033\";b:1;s:12:\"site_1500034\";b:1;s:12:\"site_1500035\";b:1;s:12:\"site_1500036\";b:1;s:12:\"site_1500037\";b:1;s:12:\"site_1500038\";b:1;s:12:\"site_1500039\";b:1;s:12:\"site_1500040\";b:1;s:12:\"site_1500041\";b:1;s:12:\"site_1500042\";b:1;s:12:\"site_1500043\";b:1;s:12:\"site_1500044\";b:1;s:12:\"site_1500045\";b:1;s:12:\"site_1500046\";b:1;s:12:\"site_1500047\";b:1;s:12:\"site_1500048\";b:1;s:12:\"site_1500049\";b:1;s:12:\"site_1500051\";b:1;s:12:\"site_1500052\";b:1;s:12:\"site_1500053\";b:1;s:12:\"site_1500055\";b:1;s:12:\"site_1500056\";b:1;s:12:\"site_1500057\";b:1;s:12:\"site_1500058\";b:1;s:12:\"site_1500059\";b:1;s:12:\"site_1500060\";b:1;s:12:\"site_1500061\";b:1;s:12:\"site_1500062\";b:1;s:12:\"site_1500063\";b:1;s:12:\"site_1500064\";b:1;s:12:\"site_1500065\";b:1;s:12:\"site_1500066\";b:1;s:12:\"site_1500067\";b:1;s:12:\"site_1500068\";b:1;s:12:\"site_1500069\";b:1;s:12:\"site_1500070\";b:1;s:12:\"site_1500071\";b:1;s:12:\"site_1500072\";b:1;s:12:\"site_1500073\";b:1;s:12:\"site_1500074\";b:1;s:12:\"site_1500075\";b:1;s:12:\"site_1500076\";b:1;s:12:\"site_1500077\";b:1;s:12:\"site_1500078\";b:1;s:12:\"site_1500079\";b:1;s:12:\"site_1500080\";b:1;s:12:\"site_1500081\";b:1;s:12:\"site_1500082\";b:1;s:12:\"site_1500083\";b:1;s:12:\"site_1500084\";b:1;s:12:\"site_1500085\";b:1;s:12:\"site_1500086\";b:1;s:12:\"site_1500087\";b:1;s:12:\"site_1500088\";b:1;s:12:\"site_1500089\";b:1;s:12:\"site_1500090\";b:1;s:12:\"site_1500091\";b:1;s:12:\"site_1500092\";b:1;s:12:\"site_1500093\";b:1;s:12:\"site_1500094\";b:1;s:12:\"site_1500095\";b:1;s:12:\"site_1500096\";b:1;s:12:\"site_1500098\";b:1;s:12:\"site_1500099\";b:1;s:12:\"site_1500100\";b:1;s:12:\"site_1500101\";b:1;s:12:\"site_1500102\";b:1;s:12:\"site_1500103\";b:1;s:12:\"site_1500104\";b:1;s:12:\"site_1500105\";b:1;s:12:\"site_1500106\";b:1;s:12:\"site_1500107\";b:1;s:12:\"site_1500108\";b:1;s:12:\"site_1500109\";b:1;s:12:\"site_1500110\";b:1;s:12:\"site_1500111\";b:1;s:12:\"site_1500112\";b:1;s:12:\"site_1500113\";b:1;s:12:\"site_1500114\";b:1;s:12:\"site_1500115\";b:1;s:12:\"site_1500116\";b:1;s:12:\"site_1500117\";b:1;s:12:\"site_1500118\";b:1;s:12:\"site_1500120\";b:1;s:12:\"site_1500121\";b:1;s:12:\"site_1500122\";b:1;s:12:\"site_1500123\";b:1;s:12:\"site_1500124\";b:1;s:12:\"site_1500125\";b:1;s:12:\"site_1500128\";b:1;s:12:\"site_1500129\";b:1;s:12:\"site_1500130\";b:1;s:12:\"site_1500131\";b:1;s:12:\"site_1500132\";b:1;s:12:\"site_1500133\";b:1;s:12:\"site_1500134\";b:1;s:12:\"site_1500135\";b:1;s:12:\"site_1500136\";b:1;s:12:\"site_1500137\";b:1;s:12:\"site_1500138\";b:1;s:12:\"site_1500139\";b:1;s:12:\"site_1500140\";b:1;s:12:\"site_1500141\";b:1;s:12:\"site_1500142\";b:1;s:12:\"site_1500143\";b:1;s:12:\"site_1500144\";b:1;s:12:\"site_1500145\";b:1;s:12:\"site_1500146\";b:1;s:12:\"site_1500147\";b:1;s:12:\"site_1500148\";b:1;s:12:\"site_1500149\";b:1;s:12:\"site_1500150\";b:1;s:12:\"site_1500151\";b:1;s:12:\"site_1500152\";b:1;s:12:\"site_1500153\";b:1;s:12:\"site_1500154\";b:1;s:12:\"site_1500155\";b:1;s:12:\"site_1500156\";b:1;s:12:\"site_1500157\";b:1;s:12:\"site_1500158\";b:1;s:12:\"site_1500159\";b:1;s:12:\"site_1500160\";b:1;s:12:\"site_1500161\";b:1;s:12:\"site_1500162\";b:1;s:12:\"site_1500163\";b:1;s:12:\"site_1500164\";b:1;s:12:\"site_1500165\";b:1;s:12:\"site_1500166\";b:1;s:12:\"site_1500167\";b:1;s:12:\"site_1500168\";b:1;s:12:\"site_1500169\";b:1;s:12:\"site_1500170\";b:1;s:12:\"site_1500171\";b:1;s:12:\"site_1500172\";b:1;s:12:\"site_1500173\";b:1;s:12:\"site_1500174\";b:1;s:12:\"site_1500175\";b:1;s:12:\"site_1500176\";b:1;s:12:\"site_1500177\";b:1;s:12:\"site_1500178\";b:1;s:12:\"site_1500180\";b:1;s:12:\"site_1500181\";b:1;s:12:\"site_1500182\";b:1;s:12:\"site_1500183\";b:1;s:12:\"site_1500184\";b:1;s:12:\"site_1500185\";b:1;s:12:\"site_1500186\";b:1;s:12:\"site_1500187\";b:1;s:12:\"site_1500188\";b:1;s:12:\"site_1500189\";b:1;s:12:\"site_1500190\";b:1;s:12:\"site_1500191\";b:1;s:12:\"site_1500192\";b:1;s:12:\"site_1500193\";b:1;s:12:\"site_1500194\";b:1;s:12:\"site_1500195\";b:1;s:12:\"site_1500196\";b:1;s:12:\"site_1500197\";b:1;s:12:\"site_1500198\";b:1;s:12:\"site_1500199\";b:1;s:12:\"site_1500200\";b:1;s:12:\"site_1500201\";b:1;s:12:\"site_1500202\";b:1;s:12:\"site_1500203\";b:1;s:12:\"site_1500204\";b:1;s:12:\"site_1500205\";b:1;s:12:\"site_1500206\";b:1;s:12:\"site_1500207\";b:1;s:12:\"site_1500208\";b:1;s:12:\"site_1500209\";b:1;s:12:\"site_1500210\";b:1;s:12:\"site_1500211\";b:1;s:12:\"site_1500212\";b:1;s:12:\"site_1500213\";b:1;s:12:\"site_1500214\";b:1;s:12:\"site_1500215\";b:1;s:12:\"site_1500216\";b:1;s:12:\"site_1500217\";b:1;s:12:\"site_1500218\";b:1;s:12:\"site_1500219\";b:1;s:12:\"site_1500220\";b:1;s:12:\"site_1500221\";b:1;s:12:\"site_1500222\";b:1;s:12:\"site_1500223\";b:1;s:12:\"site_1500224\";b:1;s:12:\"site_1500225\";b:1;s:12:\"site_1500226\";b:1;s:12:\"site_1500227\";b:1;s:12:\"site_1500228\";b:1;s:12:\"site_1500229\";b:1;s:12:\"site_1500230\";b:1;s:12:\"site_1500231\";b:1;s:12:\"site_1500232\";b:1;s:12:\"site_1500233\";b:1;s:12:\"site_1500234\";b:1;s:12:\"site_1500235\";b:1;s:12:\"site_1500237\";b:1;s:12:\"site_1500238\";b:1;s:12:\"site_1500239\";b:1;s:12:\"site_1500240\";b:1;s:12:\"site_1500241\";b:1;s:12:\"site_1500242\";b:1;s:12:\"site_1500243\";b:1;s:12:\"site_1500244\";b:1;s:12:\"site_1500245\";b:1;s:12:\"site_1500246\";b:1;s:12:\"site_1500247\";b:1;s:12:\"site_1500248\";b:1;s:12:\"site_1500249\";b:1;s:12:\"site_1500250\";b:1;s:12:\"site_1500251\";b:1;s:12:\"site_1500252\";b:1;s:12:\"site_1500253\";b:1;s:12:\"site_1500254\";b:1;s:12:\"site_1500256\";b:1;s:12:\"site_1500257\";b:1;s:12:\"site_1500258\";b:1;s:12:\"site_1500259\";b:1;s:12:\"site_1500260\";b:1;s:12:\"site_1500261\";b:1;s:12:\"site_1500262\";b:1;s:12:\"site_1500263\";b:1;s:12:\"site_1500264\";b:1;s:12:\"site_1500265\";b:1;s:12:\"site_1500266\";b:1;s:12:\"site_1500267\";b:1;s:12:\"site_1500268\";b:1;s:12:\"site_1500269\";b:1;s:12:\"site_1500270\";b:1;s:12:\"site_1500271\";b:1;s:12:\"site_1500272\";b:1;s:12:\"site_1500273\";b:1;s:12:\"site_1500274\";b:1;s:12:\"site_1500275\";b:1;s:12:\"site_1500276\";b:1;s:12:\"site_1500277\";b:1;s:12:\"site_1500278\";b:1;s:12:\"site_1500279\";b:1;s:12:\"site_1500280\";b:1;s:12:\"site_1500281\";b:1;s:12:\"site_1500282\";b:1;s:12:\"site_1500283\";b:1;s:12:\"site_1500284\";b:1;s:12:\"site_1500285\";b:1;s:12:\"site_1500286\";b:1;s:12:\"site_1500287\";b:1;s:12:\"site_1500288\";b:1;s:12:\"site_1500289\";b:1;s:12:\"site_1500290\";b:1;s:12:\"site_1500291\";b:1;s:12:\"site_1500292\";b:1;s:12:\"site_1500293\";b:1;s:12:\"site_1500294\";b:1;s:12:\"site_1500295\";b:1;s:12:\"site_1500296\";b:1;s:12:\"site_1500297\";b:1;s:12:\"site_1500298\";b:1;s:12:\"site_1500299\";b:1;s:12:\"site_1500300\";b:1;s:12:\"site_1500301\";b:1;s:12:\"site_1500302\";b:1;s:12:\"site_1500303\";b:1;s:12:\"site_1500304\";b:1;s:12:\"site_1500305\";b:1;s:12:\"site_1500306\";b:1;s:12:\"site_1500308\";b:1;s:12:\"site_1500309\";b:1;s:12:\"site_1500310\";b:1;s:12:\"site_1500311\";b:1;s:12:\"site_1500312\";b:1;s:12:\"site_1500313\";b:1;s:12:\"site_1500314\";b:1;s:12:\"site_1500315\";b:1;s:12:\"site_1500317\";b:1;s:12:\"site_1500318\";b:1;s:12:\"site_1500321\";b:1;s:12:\"site_1500322\";b:1;s:12:\"site_1500323\";b:1;s:12:\"site_1500324\";b:1;s:12:\"site_1500325\";b:1;s:12:\"site_1500326\";b:1;s:12:\"site_1500327\";b:1;s:12:\"site_1500328\";b:1;s:12:\"site_1500329\";b:1;s:12:\"site_1500330\";b:1;s:12:\"site_1500331\";b:1;s:12:\"site_1500332\";b:1;s:12:\"site_1500333\";b:1;s:12:\"site_1500335\";b:1;s:12:\"site_1500336\";b:1;s:12:\"site_1500337\";b:1;s:12:\"site_1500338\";b:1;s:12:\"site_1500339\";b:1;s:12:\"site_1500340\";b:1;s:12:\"site_1500341\";b:1;s:12:\"site_1500342\";b:1;s:12:\"site_1500343\";b:1;s:12:\"site_1500344\";b:1;s:12:\"site_1500345\";b:1;s:12:\"site_1500346\";b:1;s:12:\"site_1500347\";b:1;s:12:\"site_1500348\";b:1;s:12:\"site_1500350\";b:1;s:12:\"site_1500351\";b:1;s:12:\"site_1500352\";b:1;s:12:\"site_1500353\";b:1;s:12:\"site_1500354\";b:1;s:12:\"site_1500356\";b:1;s:12:\"site_1500357\";b:1;s:12:\"site_1500358\";b:1;s:12:\"site_1500359\";b:1;s:12:\"site_1500360\";b:1;s:12:\"site_1500361\";b:1;s:12:\"site_1500362\";b:1;s:12:\"site_1500363\";b:1;s:12:\"site_1500364\";b:1;s:12:\"site_1500365\";b:1;s:12:\"site_1500366\";b:1;s:12:\"site_1500367\";b:1;s:12:\"site_1500368\";b:1;s:12:\"site_1500369\";b:1;s:12:\"site_1500370\";b:1;s:12:\"site_1500371\";b:1;s:12:\"site_1500372\";b:1;s:12:\"site_1500373\";b:1;s:12:\"site_1500374\";b:1;s:12:\"site_1500375\";b:1;s:12:\"site_1500376\";b:1;s:12:\"site_1500377\";b:1;s:12:\"site_1500378\";b:1;s:12:\"site_1500379\";b:1;s:12:\"site_1500380\";b:1;s:12:\"site_1500381\";b:1;s:12:\"site_1500382\";b:1;s:12:\"site_1500383\";b:1;s:12:\"site_1500384\";b:1;s:12:\"site_1500385\";b:1;s:12:\"site_1500386\";b:1;s:12:\"site_1500387\";b:1;s:12:\"site_1500388\";b:1;s:12:\"site_1500389\";b:1;s:12:\"site_1500390\";b:1;s:12:\"site_1500391\";b:1;s:12:\"site_1500392\";b:1;s:12:\"site_1500393\";b:1;s:12:\"site_1500394\";b:1;s:12:\"site_1500395\";b:1;s:12:\"site_1500396\";b:1;s:12:\"site_1500397\";b:1;s:12:\"site_1500399\";b:1;s:12:\"site_1500400\";b:1;s:12:\"site_1500401\";b:1;s:12:\"site_1500402\";b:1;s:12:\"site_1500403\";b:1;s:12:\"site_1500404\";b:1;s:12:\"site_1500405\";b:1;s:12:\"site_1500406\";b:1;s:12:\"site_1500407\";b:1;s:12:\"site_1500408\";b:1;s:12:\"site_1500409\";b:1;s:12:\"site_1500410\";b:1;s:12:\"site_1500411\";b:1;s:12:\"site_1500412\";b:1;s:12:\"site_1500413\";b:1;s:12:\"site_1500414\";b:1;s:12:\"site_1500415\";b:1;s:12:\"site_1500416\";b:1;s:12:\"site_1500417\";b:1;s:12:\"site_1500418\";b:1;s:12:\"site_1500419\";b:1;s:12:\"site_1500420\";b:1;s:12:\"site_1500421\";b:1;s:12:\"site_1500423\";b:1;s:12:\"site_1500424\";b:1;s:12:\"site_1500425\";b:1;s:12:\"site_1500426\";b:1;s:12:\"site_1500427\";b:1;s:12:\"site_1500428\";b:1;s:12:\"site_1500429\";b:1;s:12:\"site_1500430\";b:1;s:12:\"site_1500431\";b:1;s:12:\"site_1500433\";b:1;s:12:\"site_1500434\";b:1;s:12:\"site_1500435\";b:1;s:12:\"site_1500436\";b:1;s:12:\"site_1500437\";b:1;s:12:\"site_1500438\";b:1;s:12:\"site_1500439\";b:1;s:12:\"site_1500440\";b:1;s:12:\"site_1500441\";b:1;s:12:\"site_1500442\";b:1;s:12:\"site_1500443\";b:1;s:12:\"site_1500444\";b:1;s:12:\"site_1500445\";b:1;s:12:\"site_1500446\";b:1;s:12:\"site_1500447\";b:1;s:12:\"site_1500448\";b:1;s:12:\"site_1500449\";b:1;s:12:\"site_1500450\";b:1;s:12:\"site_1500451\";b:1;s:12:\"site_1500452\";b:1;s:12:\"site_1500453\";b:1;s:12:\"site_1500455\";b:1;s:12:\"site_1500456\";b:1;s:12:\"site_1500457\";b:1;s:12:\"site_1500458\";b:1;s:12:\"site_1500459\";b:1;s:12:\"site_1500460\";b:1;s:12:\"site_1500461\";b:1;s:12:\"site_1500462\";b:1;s:12:\"site_1500463\";b:1;s:12:\"site_1500464\";b:1;s:12:\"site_1500466\";b:1;s:12:\"site_1500467\";b:1;s:12:\"site_1500468\";b:1;s:12:\"site_1500469\";b:1;s:12:\"site_1500470\";b:1;s:12:\"site_1500471\";b:1;s:12:\"site_1500472\";b:1;s:12:\"site_1500473\";b:1;s:12:\"site_1500474\";b:1;s:12:\"site_1500475\";b:1;s:12:\"site_1500476\";b:1;s:12:\"site_1500477\";b:1;s:12:\"site_1500478\";b:1;s:12:\"site_1500479\";b:1;s:12:\"site_1500480\";b:1;s:12:\"site_1500481\";b:1;s:12:\"site_1500482\";b:1;s:12:\"site_1500483\";b:1;s:12:\"site_1500484\";b:1;s:12:\"site_1500485\";b:1;s:12:\"site_1500486\";b:1;s:12:\"site_1500487\";b:1;s:12:\"site_1500488\";b:1;s:12:\"site_1500489\";b:1;s:12:\"site_1500490\";b:1;s:12:\"site_1500491\";b:1;s:12:\"site_1500492\";b:1;s:12:\"site_1500493\";b:1;s:12:\"site_1500494\";b:1;s:12:\"site_1500495\";b:1;s:12:\"site_1500496\";b:1;s:12:\"site_1500497\";b:1;s:12:\"site_1500498\";b:1;s:12:\"site_1500499\";b:1;s:12:\"site_1500500\";b:1;s:12:\"site_1500502\";b:1;s:12:\"site_1500503\";b:1;s:12:\"site_1500504\";b:1;s:12:\"site_1500505\";b:1;s:12:\"site_1500506\";b:1;s:12:\"site_1500507\";b:1;s:12:\"site_1500508\";b:1;s:12:\"site_1500509\";b:1;s:12:\"site_1500510\";b:1;s:12:\"site_1500511\";b:1;s:12:\"site_1500512\";b:1;s:12:\"site_1500513\";b:1;s:12:\"site_1500514\";b:1;s:12:\"site_1500515\";b:1;s:12:\"site_1500516\";b:1;s:12:\"site_1500517\";b:1;s:12:\"site_1500518\";b:1;s:12:\"site_1500519\";b:1;s:12:\"site_1500520\";b:1;s:12:\"site_1500521\";b:1;s:12:\"site_1500522\";b:1;s:12:\"site_1500523\";b:1;s:12:\"site_1500524\";b:1;s:12:\"site_1500525\";b:1;s:12:\"site_1500526\";b:1;s:12:\"site_1500527\";b:1;s:12:\"site_1500528\";b:1;s:12:\"site_1500529\";b:1;s:12:\"site_1500530\";b:1;s:12:\"site_1500531\";b:1;s:12:\"site_1500532\";b:1;s:12:\"site_1500533\";b:1;s:12:\"site_1500534\";b:1;s:12:\"site_1500535\";b:1;s:12:\"site_1500536\";b:1;s:12:\"site_1500537\";b:1;s:12:\"site_1500538\";b:1;s:12:\"site_1500540\";b:1;s:12:\"site_1500541\";b:1;s:12:\"site_1500542\";b:1;s:12:\"site_1500543\";b:1;s:12:\"site_1500544\";b:1;s:12:\"site_1500545\";b:1;s:12:\"site_1500546\";b:1;s:12:\"site_1500547\";b:1;s:12:\"site_1500548\";b:1;s:12:\"site_1500549\";b:1;s:12:\"site_1500550\";b:1;s:12:\"site_1500551\";b:1;s:12:\"site_1500552\";b:1;s:12:\"site_1500553\";b:1;s:12:\"site_1500554\";b:1;s:12:\"site_1500555\";b:1;s:12:\"site_1500556\";b:1;s:12:\"site_1500557\";b:1;s:12:\"site_1500558\";b:1;s:12:\"site_1500559\";b:1;s:12:\"site_1500560\";b:1;s:12:\"site_1500561\";b:1;s:12:\"site_1500562\";b:1;s:12:\"site_1500563\";b:1;s:12:\"site_1500564\";b:1;s:12:\"site_1500565\";b:1;s:12:\"site_1500566\";b:1;s:12:\"site_1500567\";b:1;s:12:\"site_1500568\";b:1;s:12:\"site_1500570\";b:1;s:12:\"site_1500571\";b:1;s:12:\"site_1500572\";b:1;s:12:\"site_1500573\";b:1;s:12:\"site_1500574\";b:1;s:12:\"site_1500575\";b:1;s:12:\"site_1500576\";b:1;s:12:\"site_1500577\";b:1;s:12:\"site_1500578\";b:1;s:12:\"site_1500579\";b:1;s:12:\"site_1500580\";b:1;s:12:\"site_1500581\";b:1;s:12:\"site_1500582\";b:1;s:12:\"site_1500583\";b:1;s:12:\"site_1500584\";b:1;s:12:\"site_1500585\";b:1;s:12:\"site_1500586\";b:1;s:12:\"site_1500587\";b:1;s:12:\"site_1500588\";b:1;s:12:\"site_1500589\";b:1;s:12:\"site_1500590\";b:1;s:12:\"site_1500591\";b:1;s:12:\"site_1500592\";b:1;s:12:\"site_1500593\";b:1;s:12:\"site_1500594\";b:1;s:12:\"site_1500595\";b:1;s:12:\"site_1500596\";b:1;s:12:\"site_1500597\";b:1;s:12:\"site_1500598\";b:1;s:12:\"site_1500599\";b:1;s:12:\"site_1500600\";b:1;s:12:\"site_1500601\";b:1;s:12:\"site_1500602\";b:1;s:12:\"site_1500603\";b:1;s:12:\"site_1500604\";b:1;s:12:\"site_1500605\";b:1;s:12:\"site_1500606\";b:1;s:12:\"site_1500607\";b:1;s:12:\"site_1500609\";b:1;s:12:\"site_1500610\";b:1;s:12:\"site_1500611\";b:1;s:12:\"site_1500612\";b:1;s:12:\"site_1500613\";b:1;s:12:\"site_1500614\";b:1;s:12:\"site_1500615\";b:1;s:12:\"site_1500616\";b:1;s:12:\"site_1500617\";b:1;s:12:\"site_1500618\";b:1;s:12:\"site_1500619\";b:1;s:12:\"site_1500620\";b:1;s:12:\"site_1500621\";b:1;s:12:\"site_1500622\";b:1;s:12:\"site_1500623\";b:1;s:12:\"site_1500624\";b:1;s:12:\"site_1500625\";b:1;s:12:\"site_1500626\";b:1;s:12:\"site_1500627\";b:1;s:12:\"site_1500628\";b:1;s:12:\"site_1500629\";b:1;s:12:\"site_1500630\";b:1;s:12:\"site_1500631\";b:1;s:12:\"site_1500632\";b:1;s:12:\"site_1500633\";b:1;s:12:\"site_1500634\";b:1;s:12:\"site_1500635\";b:1;s:12:\"site_1500636\";b:1;s:12:\"site_1500637\";b:1;s:12:\"site_1500638\";b:1;s:12:\"site_1500639\";b:1;s:12:\"site_1500640\";b:1;s:12:\"site_1500641\";b:1;s:12:\"site_1500642\";b:1;s:12:\"site_1500643\";b:1;s:12:\"site_1500644\";b:1;s:12:\"site_1500645\";b:1;s:12:\"site_1500646\";b:1;s:12:\"site_1500647\";b:1;s:12:\"site_1500648\";b:1;s:12:\"site_1500649\";b:1;s:12:\"site_1500650\";b:1;s:12:\"site_1500651\";b:1;s:12:\"site_1500652\";b:1;s:12:\"site_1500653\";b:1;s:12:\"site_1500654\";b:1;s:12:\"site_1500655\";b:1;s:12:\"site_1500656\";b:1;s:12:\"site_1500657\";b:1;s:12:\"site_1500658\";b:1;s:12:\"site_1500659\";b:1;s:12:\"site_1500660\";b:1;s:12:\"site_1500661\";b:1;s:12:\"site_1500662\";b:1;s:12:\"site_1500663\";b:1;s:12:\"site_1500664\";b:1;s:12:\"site_1500665\";b:1;s:12:\"site_1500666\";b:1;s:12:\"site_1500667\";b:1;s:12:\"site_1500668\";b:1;s:12:\"site_1500669\";b:1;s:12:\"site_1500670\";b:1;s:12:\"site_1500671\";b:1;s:12:\"site_1500672\";b:1;s:12:\"site_1500673\";b:1;s:12:\"site_1500674\";b:1;s:12:\"site_1500675\";b:1;s:12:\"site_1500677\";b:1;s:12:\"site_1500678\";b:1;s:12:\"site_1500679\";b:1;s:12:\"site_1500680\";b:1;s:12:\"site_1500681\";b:1;s:12:\"site_1500682\";b:1;s:12:\"site_1500683\";b:1;s:12:\"site_1500684\";b:1;s:12:\"site_1500685\";b:1;s:12:\"site_1500686\";b:1;s:12:\"site_1500687\";b:1;s:12:\"site_1500688\";b:1;s:12:\"site_1500689\";b:1;s:12:\"site_1500690\";b:1;s:12:\"site_1500691\";b:1;s:12:\"site_1500692\";b:1;s:12:\"site_1500693\";b:1;s:12:\"site_1500694\";b:1;s:12:\"site_1500695\";b:1;s:12:\"site_1500696\";b:1;s:12:\"site_1500697\";b:1;s:12:\"site_1500698\";b:1;s:12:\"site_1500699\";b:1;s:12:\"site_1500700\";b:1;s:12:\"site_1500701\";b:1;s:12:\"site_1500702\";b:1;s:12:\"site_1500703\";b:1;s:12:\"site_1500704\";b:1;s:12:\"site_1500705\";b:1;s:12:\"site_1500706\";b:1;s:12:\"site_1500707\";b:1;s:12:\"site_1500708\";b:1;s:12:\"site_1500709\";b:1;s:12:\"site_1500710\";b:1;s:12:\"site_1500711\";b:1;s:12:\"site_1500712\";b:1;s:12:\"site_1500713\";b:1;s:12:\"site_1500714\";b:1;s:12:\"site_1500715\";b:1;s:12:\"site_1500716\";b:1;s:12:\"site_1500717\";b:1;s:12:\"site_1500718\";b:1;s:12:\"site_1500719\";b:1;s:12:\"site_1500720\";b:1;s:12:\"site_1500721\";b:1;s:12:\"site_1500722\";b:1;s:12:\"site_1500723\";b:1;s:12:\"site_1500724\";b:1;s:12:\"site_1500726\";b:1;s:12:\"site_1500727\";b:1;s:12:\"site_1500728\";b:1;s:12:\"site_1500729\";b:1;s:12:\"site_1500730\";b:1;s:12:\"site_1500731\";b:1;s:12:\"site_1500732\";b:1;s:12:\"site_1500733\";b:1;s:12:\"site_1500734\";b:1;s:12:\"site_1500735\";b:1;s:12:\"site_1500736\";b:1;s:12:\"site_1500737\";b:1;s:12:\"site_1500738\";b:1;s:12:\"site_1500739\";b:1;s:12:\"site_1500740\";b:1;s:12:\"site_1500741\";b:1;s:12:\"site_1500742\";b:1;s:12:\"site_1500743\";b:1;s:12:\"site_1500744\";b:1;s:12:\"site_1500745\";b:1;s:12:\"site_1500746\";b:1;s:12:\"site_1500747\";b:1;s:12:\"site_1500748\";b:1;s:12:\"site_1500749\";b:1;s:12:\"site_1500750\";b:1;s:12:\"site_1500751\";b:1;s:12:\"site_1500752\";b:1;s:12:\"site_1500753\";b:1;s:12:\"site_1500754\";b:1;s:12:\"site_1500755\";b:1;s:12:\"site_1500756\";b:1;s:12:\"site_1500757\";b:1;s:12:\"site_1500758\";b:1;s:12:\"site_1500759\";b:1;s:12:\"site_1500760\";b:1;s:12:\"site_1500761\";b:1;s:12:\"site_1500762\";b:1;s:12:\"site_1500763\";b:1;s:12:\"site_1500765\";b:1;s:12:\"site_1500766\";b:1;s:12:\"site_1500767\";b:1;s:12:\"site_1500768\";b:1;s:12:\"site_1500769\";b:1;s:12:\"site_1500770\";b:1;s:12:\"site_1500771\";b:1;s:12:\"site_1500772\";b:1;s:12:\"site_1500773\";b:1;s:12:\"site_1500774\";b:1;s:12:\"site_1500775\";b:1;s:12:\"site_1500776\";b:1;s:12:\"site_1500777\";b:1;s:12:\"site_1500778\";b:1;s:12:\"site_1500779\";b:1;s:12:\"site_1500780\";b:1;s:12:\"site_1500781\";b:1;s:12:\"site_1500782\";b:1;s:12:\"site_1500783\";b:1;s:12:\"site_1500784\";b:1;s:12:\"site_1500786\";b:1;s:12:\"site_1500788\";b:1;s:12:\"site_1500789\";b:1;s:12:\"site_1500790\";b:1;s:12:\"site_1500791\";b:1;s:12:\"site_1500792\";b:1;s:12:\"site_1500793\";b:1;s:12:\"site_1500794\";b:1;s:12:\"site_1500798\";b:1;s:12:\"site_1500799\";b:1;s:12:\"site_1500800\";b:1;s:12:\"site_1500801\";b:1;s:12:\"site_1500802\";b:1;s:12:\"site_1500803\";b:1;s:12:\"site_1500804\";b:1;s:12:\"site_1500805\";b:1;s:12:\"site_1500806\";b:1;s:12:\"site_1500807\";b:1;s:12:\"site_1500808\";b:1;s:12:\"site_1500809\";b:1;s:12:\"site_1500810\";b:1;s:12:\"site_1500811\";b:1;s:12:\"site_1500812\";b:1;s:12:\"site_1500813\";b:1;s:12:\"site_1500814\";b:1;s:12:\"site_1500815\";b:1;s:12:\"site_1500816\";b:1;s:12:\"site_1500817\";b:1;s:12:\"site_1500818\";b:1;s:12:\"site_1500819\";b:1;s:12:\"site_1500820\";b:1;s:12:\"site_1500821\";b:1;s:12:\"site_1500822\";b:1;s:12:\"site_1500823\";b:1;s:12:\"site_1500824\";b:1;s:12:\"site_1500825\";b:1;s:12:\"site_1500826\";b:1;s:12:\"site_1500827\";b:1;s:12:\"site_1500828\";b:1;s:12:\"site_1500829\";b:1;s:12:\"site_1500830\";b:1;s:12:\"site_1500831\";b:1;s:12:\"site_1500832\";b:1;s:12:\"site_1500833\";b:1;s:12:\"site_1500834\";b:1;s:12:\"site_1500835\";b:1;s:12:\"site_1500836\";b:1;s:12:\"site_1500837\";b:1;s:12:\"site_1500838\";b:1;s:12:\"site_1500839\";b:1;s:12:\"site_1500840\";b:1;s:12:\"site_1500841\";b:1;s:12:\"site_1500842\";b:1;s:12:\"site_1500843\";b:1;s:12:\"site_1500844\";b:1;s:12:\"site_1500845\";b:1;s:12:\"site_1500846\";b:1;s:12:\"site_1500848\";b:1;s:12:\"site_1500849\";b:1;s:12:\"site_1500850\";b:1;s:12:\"site_1500852\";b:1;s:12:\"site_1500853\";b:1;s:12:\"site_1500854\";b:1;s:12:\"site_1500855\";b:1;s:12:\"site_1500856\";b:1;s:12:\"site_1500857\";b:1;s:12:\"site_1500858\";b:1;s:12:\"site_1500859\";b:1;s:12:\"site_1500860\";b:1;s:12:\"site_1500861\";b:1;s:12:\"site_1500862\";b:1;s:12:\"site_1500863\";b:1;s:12:\"site_1500864\";b:1;s:12:\"site_1500865\";b:1;s:12:\"site_1500866\";b:1;s:12:\"site_1500867\";b:1;s:12:\"site_1500868\";b:1;s:12:\"site_1500869\";b:1;s:12:\"site_1500870\";b:1;s:12:\"site_1500871\";b:1;s:12:\"site_1500872\";b:1;s:12:\"site_1500874\";b:1;s:12:\"site_1500875\";b:1;s:12:\"site_1500876\";b:1;s:12:\"site_1500877\";b:1;s:12:\"site_1500878\";b:1;s:12:\"site_1500879\";b:1;s:12:\"site_1500880\";b:1;s:12:\"site_1500881\";b:1;s:12:\"site_1500882\";b:1;s:12:\"site_1500883\";b:1;s:12:\"site_1500884\";b:1;s:12:\"site_1500885\";b:1;s:12:\"site_1500886\";b:1;s:12:\"site_1500887\";b:1;s:12:\"site_1500888\";b:1;s:12:\"site_1500889\";b:1;s:12:\"site_1500890\";b:1;s:12:\"site_1500891\";b:1;s:12:\"site_1500892\";b:1;s:12:\"site_1500893\";b:1;s:12:\"site_1500894\";b:1;s:12:\"site_1500895\";b:1;s:12:\"site_1500896\";b:1;s:12:\"site_1500897\";b:1;s:12:\"site_1500898\";b:1;s:12:\"site_1500899\";b:1;s:12:\"site_1500900\";b:1;s:12:\"site_1500903\";b:1;s:12:\"site_1500905\";b:1;s:12:\"site_1500906\";b:1;s:12:\"site_1500907\";b:1;s:12:\"site_1500908\";b:1;s:12:\"site_1500910\";b:1;s:12:\"site_1500913\";b:1;s:12:\"site_1500914\";b:1;s:12:\"site_1500915\";b:1;s:12:\"site_1500916\";b:1;s:12:\"site_1500918\";b:1;s:12:\"site_1500920\";b:1;s:12:\"site_1500921\";b:1;s:12:\"site_1500922\";b:1;s:12:\"site_1500923\";b:1;s:12:\"site_1500924\";b:1;s:12:\"site_1500925\";b:1;s:12:\"site_1500926\";b:1;s:12:\"site_1500927\";b:1;s:12:\"site_1500928\";b:1;s:12:\"site_1500929\";b:1;s:12:\"site_1500931\";b:1;s:12:\"site_1500934\";b:1;s:12:\"site_1500935\";b:1;s:12:\"site_1500936\";b:1;s:12:\"site_1500937\";b:1;s:12:\"site_1500938\";b:1;s:12:\"site_1500939\";b:1;s:12:\"site_1500940\";b:1;s:12:\"site_1500941\";b:1;s:12:\"site_1500942\";b:1;s:12:\"site_1500943\";b:1;s:12:\"site_1500944\";b:1;s:12:\"site_1500945\";b:1;s:12:\"site_1500946\";b:1;s:12:\"site_1500947\";b:1;s:12:\"site_1500948\";b:1;s:12:\"site_1500949\";b:1;s:12:\"site_1500950\";b:1;s:12:\"site_1500951\";b:1;s:12:\"site_1500952\";b:1;s:12:\"site_1500953\";b:1;s:12:\"site_1500954\";b:1;s:12:\"site_1500955\";b:1;s:12:\"site_1500956\";b:1;s:12:\"site_1500957\";b:1;s:12:\"site_1500958\";b:1;s:12:\"site_1500959\";b:1;s:12:\"site_1500960\";b:1;s:12:\"site_1500961\";b:1;s:12:\"site_1500962\";b:1;s:12:\"site_1500963\";b:1;s:12:\"site_1500964\";b:1;s:12:\"site_1500965\";b:1;s:12:\"site_1500967\";b:1;s:12:\"site_1500968\";b:1;s:12:\"site_1500969\";b:1;s:12:\"site_1500970\";b:1;s:12:\"site_1500972\";b:1;s:12:\"site_1500973\";b:1;s:12:\"site_1500974\";b:1;s:12:\"site_1500976\";b:1;s:12:\"site_1500977\";b:1;s:12:\"site_1500978\";b:1;s:12:\"site_1500979\";b:1;s:12:\"site_1500980\";b:1;s:12:\"site_1500981\";b:1;s:12:\"site_1500982\";b:1;s:12:\"site_1500983\";b:1;s:12:\"site_1500984\";b:1;s:12:\"site_1500985\";b:1;s:12:\"site_1500986\";b:1;s:12:\"site_1500987\";b:1;s:12:\"site_1500988\";b:1;s:12:\"site_1500989\";b:1;s:12:\"site_1500990\";b:1;s:12:\"site_1500991\";b:1;s:12:\"site_1500992\";b:1;s:12:\"site_1500993\";b:1;s:12:\"site_1500994\";b:1;s:12:\"site_1500996\";b:1;s:12:\"site_1500997\";b:1;s:12:\"site_1500998\";b:1;s:12:\"site_1500999\";b:1;s:12:\"site_1501000\";b:1;s:12:\"site_1501001\";b:1;s:12:\"site_1501002\";b:1;s:12:\"site_1501003\";b:1;s:12:\"site_1501004\";b:1;s:12:\"site_1501005\";b:1;s:12:\"site_1501006\";b:1;s:12:\"site_1501007\";b:1;s:12:\"site_1501008\";b:1;s:12:\"site_1501010\";b:1;s:12:\"site_1501011\";b:1;s:12:\"site_1501012\";b:1;s:12:\"site_1501014\";b:1;s:12:\"site_1501015\";b:1;s:12:\"site_1501016\";b:1;s:12:\"site_1501017\";b:1;s:12:\"site_1501018\";b:1;s:12:\"site_1501019\";b:1;s:12:\"site_1501020\";b:1;s:12:\"site_1501021\";b:1;s:12:\"site_1501022\";b:1;s:12:\"site_1501023\";b:1;s:12:\"site_1501024\";b:1;s:12:\"site_1501025\";b:1;s:12:\"site_1501026\";b:1;s:12:\"site_1501027\";b:1;s:12:\"site_1501028\";b:1;s:12:\"site_1501029\";b:1;s:12:\"site_1501030\";b:1;s:12:\"site_1501031\";b:1;s:12:\"site_1501032\";b:1;s:12:\"site_1501033\";b:1;s:12:\"site_1501034\";b:1;s:12:\"site_1501035\";b:1;s:12:\"site_1501036\";b:1;s:12:\"site_1501037\";b:1;s:12:\"site_1501038\";b:1;s:12:\"site_1501039\";b:1;s:12:\"site_1501040\";b:1;s:12:\"site_1501041\";b:1;s:12:\"site_1501042\";b:1;s:12:\"site_1501043\";b:1;s:12:\"site_1501044\";b:1;s:12:\"site_1501045\";b:1;s:12:\"site_1501046\";b:1;s:12:\"site_1501047\";b:1;s:12:\"site_1501048\";b:1;s:12:\"site_1501049\";b:1;s:12:\"site_1501050\";b:1;s:12:\"site_1501051\";b:1;s:12:\"site_1501052\";b:1;s:12:\"site_1501053\";b:1;s:12:\"site_1501054\";b:1;s:12:\"site_1501055\";b:1;s:12:\"site_1501057\";b:1;s:12:\"site_1501060\";b:1;s:12:\"site_1501061\";b:1;s:12:\"site_1501062\";b:1;s:12:\"site_1501063\";b:1;s:12:\"site_1501064\";b:1;s:12:\"site_1501065\";b:1;s:12:\"site_1501066\";b:1;s:12:\"site_1501067\";b:1;s:12:\"site_1501068\";b:1;s:12:\"site_1501069\";b:1;s:12:\"site_1501070\";b:1;s:12:\"site_1501071\";b:1;s:12:\"site_1501072\";b:1;s:12:\"site_1501073\";b:1;s:12:\"site_1501074\";b:1;s:12:\"site_1501075\";b:1;s:12:\"site_1501076\";b:1;s:12:\"site_1501077\";b:1;s:12:\"site_1501078\";b:1;s:12:\"site_1501080\";b:1;s:12:\"site_1501081\";b:1;s:12:\"site_1501082\";b:1;s:12:\"site_1501083\";b:1;s:12:\"site_1501085\";b:1;s:12:\"site_1501086\";b:1;s:12:\"site_1501088\";b:1;s:12:\"site_1501089\";b:1;s:12:\"site_1501090\";b:1;s:12:\"site_1501091\";b:1;s:12:\"site_1501093\";b:1;s:12:\"site_1501094\";b:1;s:12:\"site_1501095\";b:1;s:12:\"site_1501096\";b:1;s:12:\"site_1501097\";b:1;s:12:\"site_1501098\";b:1;s:12:\"site_1501099\";b:1;s:12:\"site_1501101\";b:1;s:12:\"site_1501102\";b:1;s:12:\"site_1501103\";b:1;s:12:\"site_1501104\";b:1;s:12:\"site_1501105\";b:1;s:12:\"site_1501106\";b:1;s:12:\"site_1501107\";b:1;s:12:\"site_1501110\";b:1;s:12:\"site_1501111\";b:1;s:12:\"site_1501113\";b:1;s:12:\"site_1501114\";b:1;s:12:\"site_1501115\";b:1;s:12:\"site_1501116\";b:1;s:12:\"site_1501119\";b:1;s:12:\"site_1501120\";b:1;s:12:\"site_1501121\";b:1;s:12:\"site_1501122\";b:1;s:12:\"site_1501123\";b:1;s:12:\"site_1501124\";b:1;s:12:\"site_1501125\";b:1;s:12:\"site_1501126\";b:1;s:12:\"site_1501127\";b:1;s:12:\"site_1501128\";b:1;s:12:\"site_1501129\";b:1;s:12:\"site_1501130\";b:1;s:12:\"site_1501131\";b:1;s:12:\"site_1501132\";b:1;s:12:\"site_1501133\";b:1;s:12:\"site_1501134\";b:1;s:12:\"site_1501135\";b:1;s:12:\"site_1501136\";b:1;s:12:\"site_1501137\";b:1;s:12:\"site_1501138\";b:1;s:12:\"site_1501139\";b:1;s:12:\"site_1501140\";b:1;s:12:\"site_1501141\";b:1;s:12:\"site_1501142\";b:1;s:12:\"site_1501143\";b:1;s:12:\"site_1501144\";b:1;s:12:\"site_1501146\";b:1;s:12:\"site_1501147\";b:1;s:12:\"site_1501148\";b:1;s:12:\"site_1501149\";b:1;s:12:\"site_1501150\";b:1;s:12:\"site_1501151\";b:1;s:12:\"site_1501152\";b:1;s:12:\"site_1501153\";b:1;s:12:\"site_1501154\";b:1;s:12:\"site_1501155\";b:1;s:12:\"site_1501156\";b:1;s:12:\"site_1501157\";b:1;s:12:\"site_1501158\";b:1;s:12:\"site_1501159\";b:1;s:12:\"site_1501160\";b:1;s:12:\"site_1501161\";b:1;s:12:\"site_1501162\";b:1;s:12:\"site_1501163\";b:1;s:12:\"site_1501164\";b:1;s:12:\"site_1501165\";b:1;s:12:\"site_1501166\";b:1;s:12:\"site_1501167\";b:1;s:12:\"site_1501168\";b:1;s:12:\"site_1501169\";b:1;s:12:\"site_1501170\";b:1;s:12:\"site_1501171\";b:1;s:12:\"site_1501172\";b:1;s:12:\"site_1501173\";b:1;s:12:\"site_1501174\";b:1;s:12:\"site_1501175\";b:1;s:12:\"site_1501176\";b:1;s:12:\"site_1501177\";b:1;s:12:\"site_1501179\";b:1;s:12:\"site_1501180\";b:1;s:12:\"site_1501181\";b:1;s:12:\"site_1501182\";b:1;s:12:\"site_1501183\";b:1;s:12:\"site_1501184\";b:1;s:12:\"site_1501185\";b:1;s:12:\"site_1501186\";b:1;s:12:\"site_1501187\";b:1;s:12:\"site_1501188\";b:1;s:12:\"site_1501189\";b:1;s:12:\"site_1501190\";b:1;s:12:\"site_1501191\";b:1;s:12:\"site_1501192\";b:1;s:12:\"site_1501193\";b:1;s:12:\"site_1501194\";b:1;s:12:\"site_1501195\";b:1;s:12:\"site_1501196\";b:1;s:12:\"site_1501197\";b:1;s:12:\"site_1501198\";b:1;s:12:\"site_1501199\";b:1;s:12:\"site_1501201\";b:1;s:12:\"site_1501202\";b:1;s:12:\"site_1501203\";b:1;s:12:\"site_1501207\";b:1;s:12:\"site_1501208\";b:1;s:12:\"site_1501210\";b:1;s:12:\"site_1501211\";b:1;s:12:\"site_1501212\";b:1;s:12:\"site_1501213\";b:1;s:12:\"site_1501214\";b:1;s:12:\"site_1501215\";b:1;s:12:\"site_1501216\";b:1;s:12:\"site_1501218\";b:1;s:12:\"site_1501219\";b:1;s:12:\"site_1501220\";b:1;s:12:\"site_1501221\";b:1;s:12:\"site_1501222\";b:1;s:12:\"site_1501223\";b:1;s:12:\"site_1501224\";b:1;s:12:\"site_1501225\";b:1;s:12:\"site_1501226\";b:1;s:12:\"site_1501227\";b:1;s:12:\"site_1501228\";b:1;s:12:\"site_1501229\";b:1;s:12:\"site_1501230\";b:1;s:12:\"site_1501231\";b:1;s:12:\"site_1501232\";b:1;s:12:\"site_1501233\";b:1;s:12:\"site_1501234\";b:1;s:12:\"site_1501235\";b:1;s:12:\"site_1501236\";b:1;s:12:\"site_1501237\";b:1;s:12:\"site_1501238\";b:1;s:12:\"site_1501239\";b:1;s:12:\"site_1501240\";b:1;s:12:\"site_1501241\";b:1;s:12:\"site_1501242\";b:1;s:12:\"site_1501243\";b:1;s:12:\"site_1501244\";b:1;s:12:\"site_1501245\";b:1;s:12:\"site_1501246\";b:1;s:12:\"site_1501247\";b:1;s:12:\"site_1501248\";b:1;s:12:\"site_1501249\";b:1;s:12:\"site_1501250\";b:1;s:12:\"site_1501251\";b:1;s:12:\"site_1501252\";b:1;s:12:\"site_1501253\";b:1;s:12:\"site_1501254\";b:1;s:12:\"site_1501255\";b:1;s:12:\"site_1501256\";b:1;s:12:\"site_1501257\";b:1;s:12:\"site_1501258\";b:1;s:12:\"site_1501259\";b:1;s:12:\"site_1501260\";b:1;s:12:\"site_1501261\";b:1;s:12:\"site_1501262\";b:1;s:12:\"site_1501263\";b:1;s:12:\"site_1501264\";b:1;s:12:\"site_1501265\";b:1;s:12:\"site_1501266\";b:1;s:12:\"site_1501268\";b:1;s:12:\"site_1501271\";b:1;s:12:\"site_1501272\";b:1;s:12:\"site_1501274\";b:1;s:12:\"site_1501276\";b:1;s:12:\"site_1501277\";b:1;s:12:\"site_1501278\";b:1;s:12:\"site_1501279\";b:1;s:12:\"site_1501280\";b:1;s:12:\"site_1501281\";b:1;s:12:\"site_1501282\";b:1;s:12:\"site_1501283\";b:1;s:12:\"site_1501284\";b:1;s:12:\"site_1501285\";b:1;s:12:\"site_1501286\";b:1;s:12:\"site_1501287\";b:1;s:12:\"site_1501288\";b:1;s:12:\"site_1501289\";b:1;s:12:\"site_1501290\";b:1;s:12:\"site_1501291\";b:1;s:12:\"site_1501292\";b:1;s:12:\"site_1501293\";b:1;s:12:\"site_1501294\";b:1;s:12:\"site_1501295\";b:1;s:12:\"site_1501296\";b:1;s:12:\"site_1501297\";b:1;s:12:\"site_1501298\";b:1;s:12:\"site_1501299\";b:1;s:12:\"site_1501300\";b:1;s:12:\"site_1501301\";b:1;s:12:\"site_1501302\";b:1;s:12:\"site_1501303\";b:1;s:12:\"site_1501304\";b:1;s:12:\"site_1501305\";b:1;s:12:\"site_1501306\";b:1;s:12:\"site_1501307\";b:1;s:12:\"site_1501308\";b:1;s:12:\"site_1501309\";b:1;s:12:\"site_1501310\";b:1;s:12:\"site_1501311\";b:1;s:12:\"site_1501312\";b:1;s:12:\"site_1501313\";b:1;s:12:\"site_1501314\";b:1;s:12:\"site_1501315\";b:1;s:12:\"site_1501316\";b:1;s:12:\"site_1501317\";b:1;s:12:\"site_1501318\";b:1;s:12:\"site_1501319\";b:1;s:12:\"site_1501320\";b:1;s:12:\"site_1501321\";b:1;s:12:\"site_1501322\";b:1;s:12:\"site_1501323\";b:1;s:12:\"site_1501325\";b:1;s:12:\"site_1501327\";b:1;s:12:\"site_1501328\";b:1;s:12:\"site_1501329\";b:1;s:12:\"site_1501330\";b:1;s:12:\"site_1501331\";b:1;s:12:\"site_1501332\";b:1;s:12:\"site_1501334\";b:1;s:12:\"site_1501336\";b:1;s:12:\"site_1501337\";b:1;s:12:\"site_1501338\";b:1;s:12:\"site_1501340\";b:1;s:12:\"site_1501341\";b:1;s:12:\"site_1501342\";b:1;s:12:\"site_1501343\";b:1;s:12:\"site_1501344\";b:1;s:12:\"site_1501345\";b:1;s:12:\"site_1501346\";b:1;s:12:\"site_1501347\";b:1;s:12:\"site_1501349\";b:1;s:12:\"site_1501350\";b:1;s:12:\"site_1501351\";b:1;s:12:\"site_1501352\";b:1;s:12:\"site_1501353\";b:1;s:12:\"site_1501354\";b:1;s:12:\"site_1501355\";b:1;s:12:\"site_1501356\";b:1;s:12:\"site_1501357\";b:1;s:12:\"site_1501358\";b:1;s:12:\"site_1501359\";b:1;s:12:\"site_1501360\";b:1;s:12:\"site_1501361\";b:1;s:12:\"site_1501362\";b:1;s:12:\"site_1501363\";b:1;s:12:\"site_1501364\";b:1;s:12:\"site_1501365\";b:1;s:12:\"site_1501366\";b:1;s:12:\"site_1501367\";b:1;s:12:\"site_1501368\";b:1;s:12:\"site_1501369\";b:1;s:12:\"site_1501371\";b:1;s:12:\"site_1501372\";b:1;s:12:\"site_1501373\";b:1;s:12:\"site_1501374\";b:1;s:12:\"site_1501375\";b:1;s:12:\"site_1501376\";b:1;s:12:\"site_1501377\";b:1;s:12:\"site_1501378\";b:1;s:12:\"site_1501379\";b:1;s:12:\"site_1501380\";b:1;s:12:\"site_1501381\";b:1;s:12:\"site_1501382\";b:1;s:12:\"site_1501383\";b:1;s:12:\"site_1501384\";b:1;s:12:\"site_1501385\";b:1;s:12:\"site_1501386\";b:1;s:12:\"site_1501387\";b:1;s:12:\"site_1501388\";b:1;s:12:\"site_1501389\";b:1;s:12:\"site_1501390\";b:1;s:12:\"site_1501391\";b:1;s:12:\"site_1501392\";b:1;s:12:\"site_1501393\";b:1;s:12:\"site_1501394\";b:1;s:12:\"site_1501395\";b:1;s:12:\"site_1501396\";b:1;s:12:\"site_1501397\";b:1;s:12:\"site_1501401\";b:1;s:12:\"site_1501403\";b:1;s:12:\"site_1501405\";b:1;s:12:\"site_1501406\";b:1;s:12:\"site_1501407\";b:1;s:12:\"site_1501408\";b:1;s:12:\"site_1501409\";b:1;s:12:\"site_1501410\";b:1;s:12:\"site_1501411\";b:1;s:12:\"site_1501412\";b:1;s:12:\"site_1501413\";b:1;s:12:\"site_1501414\";b:1;s:12:\"site_1501415\";b:1;s:12:\"site_1501416\";b:1;s:12:\"site_1501417\";b:1;s:12:\"site_1501418\";b:1;s:12:\"site_1501419\";b:1;s:12:\"site_1501420\";b:1;s:12:\"site_1501421\";b:1;s:12:\"site_1501422\";b:1;s:12:\"site_1501423\";b:1;s:12:\"site_1501424\";b:1;s:12:\"site_1501425\";b:1;s:12:\"site_1501426\";b:1;s:12:\"site_1501427\";b:1;s:12:\"site_1501428\";b:1;s:12:\"site_1501429\";b:1;s:12:\"site_1501430\";b:1;s:12:\"site_1501431\";b:1;s:12:\"site_1501433\";b:1;s:12:\"site_1501434\";b:1;s:12:\"site_1501435\";b:1;s:12:\"site_1501436\";b:1;s:12:\"site_1501437\";b:1;s:12:\"site_1501438\";b:1;s:12:\"site_1501439\";b:1;s:12:\"site_1501440\";b:1;s:12:\"site_1501441\";b:1;s:12:\"site_1501442\";b:1;s:12:\"site_1501443\";b:1;s:12:\"site_1501444\";b:1;s:12:\"site_1501445\";b:1;s:12:\"site_1501446\";b:1;s:12:\"site_1501447\";b:1;s:12:\"site_1501448\";b:1;s:12:\"site_1501449\";b:1;s:12:\"site_1501451\";b:1;s:12:\"site_1501452\";b:1;s:12:\"site_1501453\";b:1;s:12:\"site_1501454\";b:1;s:12:\"site_1501455\";b:1;s:12:\"site_1501456\";b:1;s:12:\"site_1501457\";b:1;s:12:\"site_1501458\";b:1;s:12:\"site_1501459\";b:1;s:12:\"site_1501460\";b:1;s:12:\"site_1501461\";b:1;s:12:\"site_1501462\";b:1;s:12:\"site_1501463\";b:1;s:12:\"site_1501464\";b:1;s:12:\"site_1501465\";b:1;s:12:\"site_1501466\";b:1;s:12:\"site_1501467\";b:1;s:12:\"site_1501468\";b:1;s:12:\"site_1501470\";b:1;s:12:\"site_1501471\";b:1;s:12:\"site_1501472\";b:1;s:12:\"site_1501473\";b:1;s:12:\"site_1501474\";b:1;s:12:\"site_1501475\";b:1;s:12:\"site_1501476\";b:1;s:12:\"site_1501477\";b:1;s:12:\"site_1501478\";b:1;s:12:\"site_1501479\";b:1;s:12:\"site_1501480\";b:1;s:12:\"site_1501481\";b:1;s:12:\"site_1501482\";b:1;s:12:\"site_1501483\";b:1;s:12:\"site_1501484\";b:1;s:12:\"site_1501485\";b:1;s:12:\"site_1501486\";b:1;s:12:\"site_1501487\";b:1;s:12:\"site_1501488\";b:1;s:12:\"site_1501489\";b:1;s:12:\"site_1501490\";b:1;s:12:\"site_1501491\";b:1;s:12:\"site_1501494\";b:1;s:12:\"site_1501495\";b:1;s:12:\"site_1501497\";b:1;s:12:\"site_1501498\";b:1;s:12:\"site_1501499\";b:1;s:12:\"site_1501500\";b:1;s:12:\"site_1501501\";b:1;s:12:\"site_1501502\";b:1;s:12:\"site_1501503\";b:1;s:12:\"site_1501504\";b:1;s:12:\"site_1501505\";b:1;s:12:\"site_1501506\";b:1;s:12:\"site_1501507\";b:1;s:12:\"site_1501508\";b:1;s:12:\"site_1501509\";b:1;s:12:\"site_1501510\";b:1;s:12:\"site_1501511\";b:1;s:12:\"site_1501512\";b:1;s:12:\"site_1501513\";b:1;s:12:\"site_1501514\";b:1;s:12:\"site_1501515\";b:1;s:12:\"site_1501516\";b:1;s:12:\"site_1501517\";b:1;s:12:\"site_1501518\";b:1;s:12:\"site_1501519\";b:1;s:12:\"site_1501520\";b:1;s:12:\"site_1501521\";b:1;s:12:\"site_1501522\";b:1;s:12:\"site_1501523\";b:1;s:12:\"site_1501524\";b:1;s:12:\"site_1501525\";b:1;s:12:\"site_1501526\";b:1;s:12:\"site_1501527\";b:1;s:12:\"site_1501528\";b:1;s:12:\"site_1501529\";b:1;s:12:\"site_1501531\";b:1;s:12:\"site_1501532\";b:1;s:12:\"site_1501533\";b:1;s:12:\"site_1501535\";b:1;s:12:\"site_1501537\";b:1;s:12:\"site_1501538\";b:1;s:12:\"site_1501539\";b:1;s:12:\"site_1501540\";b:1;s:12:\"site_1501541\";b:1;s:12:\"site_1501542\";b:1;s:12:\"site_1501543\";b:1;s:12:\"site_1501544\";b:1;s:12:\"site_1501545\";b:1;s:12:\"site_1501546\";b:1;s:12:\"site_1501547\";b:1;s:12:\"site_1501548\";b:1;s:12:\"site_1501549\";b:1;s:12:\"site_1501550\";b:1;s:12:\"site_1501551\";b:1;s:12:\"site_1501552\";b:1;s:12:\"site_1501553\";b:1;s:12:\"site_1501554\";b:1;s:12:\"site_1501555\";b:1;s:12:\"site_1501556\";b:1;s:12:\"site_1501557\";b:1;s:12:\"site_1501558\";b:1;s:12:\"site_1501559\";b:1;s:12:\"site_1501560\";b:1;s:12:\"site_1501561\";b:1;s:12:\"site_1501562\";b:1;s:12:\"site_1501563\";b:1;s:12:\"site_1501564\";b:1;s:12:\"site_1501565\";b:1;s:12:\"site_1501566\";b:1;s:12:\"site_1501567\";b:1;s:12:\"site_1501568\";b:1;s:12:\"site_1501569\";b:1;s:12:\"site_1501570\";b:1;s:12:\"site_1501571\";b:1;s:12:\"site_1501572\";b:1;s:12:\"site_1501573\";b:1;s:12:\"site_1501574\";b:1;s:12:\"site_1501575\";b:1;s:12:\"site_1501576\";b:1;s:12:\"site_1501577\";b:1;s:12:\"site_1501578\";b:1;s:12:\"site_1501579\";b:1;s:12:\"site_1501580\";b:1;s:12:\"site_1501581\";b:1;s:12:\"site_1501582\";b:1;s:12:\"site_1501583\";b:1;s:12:\"site_1501584\";b:1;s:12:\"site_1501585\";b:1;s:12:\"site_1501586\";b:1;s:12:\"site_1501587\";b:1;s:12:\"site_1501588\";b:1;s:12:\"site_1501590\";b:1;s:12:\"site_1501591\";b:1;s:12:\"site_1501592\";b:1;s:12:\"site_1501593\";b:1;s:12:\"site_1501594\";b:1;s:12:\"site_1501595\";b:1;s:12:\"site_1501603\";b:1;s:12:\"site_1501604\";b:1;s:12:\"site_1501607\";b:1;s:12:\"site_1501608\";b:1;s:12:\"site_1501609\";b:1;s:12:\"site_1501610\";b:1;s:12:\"site_1501611\";b:1;s:12:\"site_1501612\";b:1;s:12:\"site_1501613\";b:1;s:12:\"site_1501614\";b:1;s:12:\"site_1501615\";b:1;s:12:\"site_1501616\";b:1;s:12:\"site_1501617\";b:1;s:12:\"site_1501618\";b:1;s:12:\"site_1501619\";b:1;s:12:\"site_1501620\";b:1;s:12:\"site_1501621\";b:1;s:12:\"site_1501622\";b:1;s:12:\"site_1501623\";b:1;s:12:\"site_1501624\";b:1;s:12:\"site_1501625\";b:1;s:12:\"site_1501628\";b:1;s:12:\"site_1501635\";b:1;s:12:\"site_1501638\";b:1;s:12:\"site_1501639\";b:1;s:12:\"site_1501641\";b:1;s:12:\"site_1501644\";b:1;s:12:\"site_1501647\";b:1;s:12:\"site_1501649\";b:1;s:12:\"site_1501650\";b:1;s:12:\"site_1501651\";b:1;s:12:\"site_1501652\";b:1;s:12:\"site_1501653\";b:1;s:12:\"site_1501654\";b:1;s:12:\"site_1501657\";b:1;s:12:\"site_1501658\";b:1;s:12:\"site_1501660\";b:1;s:12:\"site_1501661\";b:1;s:12:\"site_1501663\";b:1;s:12:\"site_1501664\";b:1;s:12:\"site_1501665\";b:1;s:12:\"site_1501666\";b:1;s:12:\"site_1501667\";b:1;s:12:\"site_1501668\";b:1;s:12:\"site_1501670\";b:1;s:12:\"site_1501671\";b:1;s:12:\"site_1501674\";b:1;s:12:\"site_1501675\";b:1;s:12:\"site_1501676\";b:1;s:12:\"site_1501677\";b:1;s:12:\"site_1501678\";b:1;s:12:\"site_1501679\";b:1;s:12:\"site_1501680\";b:1;s:12:\"site_1501681\";b:1;s:12:\"site_1501682\";b:1;s:12:\"site_1501684\";b:1;s:12:\"site_1501685\";b:1;s:12:\"site_1501686\";b:1;s:12:\"site_1501687\";b:1;s:12:\"site_1501688\";b:1;s:12:\"site_1501689\";b:1;s:12:\"site_1501690\";b:1;s:12:\"site_1501691\";b:1;s:12:\"site_1501692\";b:1;s:12:\"site_1501695\";b:1;s:12:\"site_1501696\";b:1;s:12:\"site_1501698\";b:1;s:12:\"site_1501699\";b:1;s:12:\"site_1501700\";b:1;s:12:\"site_1501701\";b:1;s:12:\"site_1501702\";b:1;s:12:\"site_1501703\";b:1;s:12:\"site_1501704\";b:1;s:12:\"site_1501705\";b:1;s:12:\"site_1501706\";b:1;s:12:\"site_1501707\";b:1;s:12:\"site_1501710\";b:1;s:12:\"site_1501711\";b:1;s:12:\"site_1501712\";b:1;s:12:\"site_1501713\";b:1;s:12:\"site_1501715\";b:1;s:12:\"site_1501716\";b:1;s:12:\"site_1501717\";b:1;s:12:\"site_1501718\";b:1;s:12:\"site_1501719\";b:1;s:12:\"site_1501720\";b:1;s:12:\"site_1501721\";b:1;s:12:\"site_1501722\";b:1;s:12:\"site_1501723\";b:1;s:12:\"site_1501724\";b:1;s:12:\"site_1501725\";b:1;s:12:\"site_1501726\";b:1;s:12:\"site_1501728\";b:1;s:12:\"site_1501729\";b:1;s:12:\"site_1501730\";b:1;s:12:\"site_1501733\";b:1;s:12:\"site_1501734\";b:1;s:12:\"site_1501735\";b:1;s:12:\"site_1501736\";b:1;s:12:\"site_1501737\";b:1;s:12:\"site_1501738\";b:1;s:12:\"site_1501739\";b:1;s:12:\"site_1501740\";b:1;s:12:\"site_1501741\";b:1;s:12:\"site_1501742\";b:1;s:12:\"site_1501743\";b:1;s:12:\"site_1501744\";b:1;s:12:\"site_1501745\";b:1;s:12:\"site_1501747\";b:1;s:12:\"site_1501749\";b:1;s:12:\"site_1501750\";b:1;s:12:\"site_1501751\";b:1;s:12:\"site_1501752\";b:1;s:12:\"site_1501753\";b:1;s:12:\"site_1501754\";b:1;s:12:\"site_1501756\";b:1;s:12:\"site_1501757\";b:1;s:12:\"site_1501758\";b:1;s:12:\"site_1501760\";b:1;s:12:\"site_1501761\";b:1;s:12:\"site_1501762\";b:1;s:12:\"site_1501763\";b:1;s:12:\"site_1501764\";b:1;s:12:\"site_1501765\";b:1;s:12:\"site_1501766\";b:1;s:12:\"site_1501767\";b:1;s:12:\"site_1501768\";b:1;s:12:\"site_1501769\";b:1;s:12:\"site_1501770\";b:1;s:12:\"site_1501771\";b:1;s:12:\"site_1501772\";b:1;s:12:\"site_1501773\";b:1;s:12:\"site_1501774\";b:1;s:12:\"site_1501776\";b:1;s:12:\"site_1501777\";b:1;s:12:\"site_1501778\";b:1;s:12:\"site_1501779\";b:1;s:12:\"site_1501780\";b:1;s:12:\"site_1501781\";b:1;s:12:\"site_1501783\";b:1;s:12:\"site_1501784\";b:1;s:12:\"site_1501785\";b:1;s:12:\"site_1501788\";b:1;s:12:\"site_1501790\";b:1;s:12:\"site_1501791\";b:1;s:12:\"site_1501792\";b:1;s:12:\"site_1501793\";b:1;s:12:\"site_1501794\";b:1;s:12:\"site_1501795\";b:1;s:12:\"site_1501796\";b:1;s:12:\"site_1501797\";b:1;s:12:\"site_1501798\";b:1;s:12:\"site_1501799\";b:1;s:12:\"site_1501800\";b:1;s:12:\"site_1501801\";b:1;s:12:\"site_1501803\";b:1;s:12:\"site_1501804\";b:1;s:12:\"site_1501805\";b:1;s:12:\"site_1501807\";b:1;s:12:\"site_1501808\";b:1;s:12:\"site_1501809\";b:1;s:12:\"site_1501810\";b:1;s:12:\"site_1501811\";b:1;s:12:\"site_1501812\";b:1;s:12:\"site_1501813\";b:1;s:12:\"site_1501814\";b:1;s:12:\"site_1501815\";b:1;s:12:\"site_1501816\";b:1;s:12:\"site_1501817\";b:1;s:12:\"site_1501818\";b:1;s:12:\"site_1501819\";b:1;s:12:\"site_1501821\";b:1;s:12:\"site_1501822\";b:1;s:12:\"site_1501823\";b:1;s:12:\"site_1501824\";b:1;s:12:\"site_1501825\";b:1;s:12:\"site_1501826\";b:1;s:12:\"site_1501827\";b:1;s:12:\"site_1501828\";b:1;s:12:\"site_1501829\";b:1;s:12:\"site_1501830\";b:1;s:12:\"site_1501832\";b:1;s:12:\"site_1501833\";b:1;s:12:\"site_1501834\";b:1;s:12:\"site_1501835\";b:1;s:12:\"site_1501836\";b:1;s:12:\"site_1501837\";b:1;s:12:\"site_1501838\";b:1;s:12:\"site_1501839\";b:1;s:12:\"site_1501840\";b:1;s:12:\"site_1501841\";b:1;s:12:\"site_1501842\";b:1;s:12:\"site_1501843\";b:1;s:12:\"site_1501844\";b:1;s:12:\"site_1501845\";b:1;s:12:\"site_1501846\";b:1;s:12:\"site_1501847\";b:1;s:12:\"site_1501848\";b:1;s:12:\"site_1501850\";b:1;s:12:\"site_1501851\";b:1;s:12:\"site_1501852\";b:1;s:12:\"site_1501853\";b:1;s:12:\"site_1501854\";b:1;s:12:\"site_1501855\";b:1;s:12:\"site_1501856\";b:1;s:12:\"site_1501857\";b:1;s:12:\"site_1501858\";b:1;s:12:\"site_1501859\";b:1;s:12:\"site_1501860\";b:1;s:12:\"site_1501861\";b:1;s:12:\"site_1501862\";b:1;s:12:\"site_1501863\";b:1;s:12:\"site_1501864\";b:1;s:12:\"site_1501865\";b:1;s:12:\"site_1501866\";b:1;s:12:\"site_1501867\";b:1;s:12:\"site_1501868\";b:1;s:12:\"site_1501869\";b:1;s:12:\"site_1501870\";b:1;s:12:\"site_1501871\";b:1;s:12:\"site_1501872\";b:1;s:12:\"site_1501873\";b:1;s:12:\"site_1501877\";b:1;s:12:\"site_1501878\";b:1;s:12:\"site_1501879\";b:1;s:12:\"site_1501880\";b:1;s:12:\"site_1501881\";b:1;s:12:\"site_1501882\";b:1;s:12:\"site_1501883\";b:1;s:12:\"site_1501884\";b:1;s:12:\"site_1501885\";b:1;s:12:\"site_1501886\";b:1;s:12:\"site_1501887\";b:1;s:12:\"site_1501888\";b:1;s:12:\"site_1501889\";b:1;s:12:\"site_1501890\";b:1;s:12:\"site_1501891\";b:1;s:12:\"site_1501892\";b:1;s:12:\"site_1501893\";b:1;s:12:\"site_1501894\";b:1;s:12:\"site_1501895\";b:1;s:12:\"site_1501896\";b:1;s:12:\"site_1501897\";b:1;s:12:\"site_1501898\";b:1;s:12:\"site_1501899\";b:1;s:12:\"site_1501900\";b:1;s:12:\"site_1501901\";b:1;s:12:\"site_1501902\";b:1;s:12:\"site_1501903\";b:1;s:12:\"site_1501904\";b:1;s:12:\"site_1501905\";b:1;s:12:\"site_1501906\";b:1;s:12:\"site_1501907\";b:1;s:12:\"site_1501908\";b:1;s:12:\"site_1501910\";b:1;s:12:\"site_1501911\";b:1;s:12:\"site_1501912\";b:1;s:12:\"site_1501913\";b:1;s:12:\"site_1501914\";b:1;s:12:\"site_1501915\";b:1;s:12:\"site_1501916\";b:1;s:12:\"site_1501917\";b:1;s:12:\"site_1501918\";b:1;s:12:\"site_1501919\";b:1;s:12:\"site_1501920\";b:1;s:12:\"site_1501921\";b:1;s:12:\"site_1501922\";b:1;s:12:\"site_1501923\";b:1;s:12:\"site_1501924\";b:1;s:12:\"site_1501925\";b:1;s:12:\"site_1501926\";b:1;s:12:\"site_1501927\";b:1;s:12:\"site_1501928\";b:1;s:12:\"site_1501929\";b:1;s:12:\"site_1501930\";b:1;s:12:\"site_1501931\";b:1;s:12:\"site_1501932\";b:1;s:12:\"site_1501933\";b:1;s:12:\"site_1501934\";b:1;s:12:\"site_1501935\";b:1;s:12:\"site_1501936\";b:1;s:12:\"site_1501937\";b:1;s:12:\"site_1501938\";b:1;s:12:\"site_1501939\";b:1;s:12:\"site_1501940\";b:1;s:12:\"site_1501943\";b:1;s:12:\"site_1501944\";b:1;s:12:\"site_1501945\";b:1;s:12:\"site_1501946\";b:1;s:12:\"site_1501947\";b:1;s:12:\"site_1501948\";b:1;s:12:\"site_1501949\";b:1;s:12:\"site_1501950\";b:1;s:12:\"site_1501951\";b:1;s:12:\"site_1501952\";b:1;s:12:\"site_1501953\";b:1;s:12:\"site_1501954\";b:1;s:12:\"site_1501955\";b:1;s:12:\"site_1501956\";b:1;s:12:\"site_1501957\";b:1;s:12:\"site_1501958\";b:1;s:12:\"site_1501959\";b:1;s:12:\"site_1501960\";b:1;s:12:\"site_1501961\";b:1;s:12:\"site_1501962\";b:1;s:12:\"site_1501963\";b:1;s:12:\"site_1501964\";b:1;s:12:\"site_1501965\";b:1;s:12:\"site_1501966\";b:1;s:12:\"site_1501967\";b:1;s:12:\"site_1501968\";b:1;s:12:\"site_1501969\";b:1;s:12:\"site_1501970\";b:1;s:12:\"site_1501971\";b:1;s:12:\"site_1501972\";b:1;s:12:\"site_1501974\";b:1;s:12:\"site_1501975\";b:1;s:12:\"site_1501976\";b:1;s:12:\"site_1501977\";b:1;s:12:\"site_1501978\";b:1;s:12:\"site_1501979\";b:1;s:12:\"site_1501980\";b:1;s:12:\"site_1501981\";b:1;s:12:\"site_1501982\";b:1;s:12:\"site_1501983\";b:1;s:12:\"site_1501984\";b:1;s:12:\"site_1501985\";b:1;s:12:\"site_1501987\";b:1;s:12:\"site_1501988\";b:1;s:12:\"site_1501989\";b:1;s:12:\"site_1501990\";b:1;s:12:\"site_1501991\";b:1;s:12:\"site_1501992\";b:1;s:12:\"site_1501993\";b:1;s:12:\"site_1501994\";b:1;s:12:\"site_1501995\";b:1;s:12:\"site_1501996\";b:1;s:12:\"site_1501997\";b:1;s:12:\"site_1501998\";b:1;s:12:\"site_1501999\";b:1;s:12:\"site_1502000\";b:1;s:12:\"site_1502001\";b:1;s:12:\"site_1502002\";b:1;s:12:\"site_1502003\";b:1;s:12:\"site_1502004\";b:1;s:12:\"site_1502005\";b:1;s:12:\"site_1502006\";b:1;s:12:\"site_1502007\";b:1;s:12:\"site_1502008\";b:1;s:12:\"site_1502009\";b:1;s:12:\"site_1502010\";b:1;s:12:\"site_1502011\";b:1;s:12:\"site_1502012\";b:1;s:12:\"site_1502013\";b:1;s:12:\"site_1502014\";b:1;s:12:\"site_1502015\";b:1;s:12:\"site_1502016\";b:1;s:12:\"site_1502017\";b:1;s:12:\"site_1502018\";b:1;s:12:\"site_1502019\";b:1;s:12:\"site_1502021\";b:1;s:12:\"site_1502022\";b:1;s:12:\"site_1502023\";b:1;s:12:\"site_1502024\";b:1;s:12:\"site_1502025\";b:1;s:12:\"site_1502026\";b:1;s:12:\"site_1502027\";b:1;s:12:\"site_1502028\";b:1;s:12:\"site_1502030\";b:1;s:12:\"site_1502033\";b:1;s:12:\"site_1502034\";b:1;s:12:\"site_1502035\";b:1;s:12:\"site_1502036\";b:1;s:12:\"site_1502037\";b:1;s:12:\"site_1502038\";b:1;s:12:\"site_1502039\";b:1;s:12:\"site_1502040\";b:1;s:12:\"site_1502041\";b:1;s:12:\"site_1502042\";b:1;s:12:\"site_1502043\";b:1;s:12:\"site_1502044\";b:1;s:12:\"site_1502045\";b:1;s:12:\"site_1502047\";b:1;s:12:\"site_1502048\";b:1;s:12:\"site_1502049\";b:1;s:12:\"site_1502050\";b:1;s:12:\"site_1502052\";b:1;s:12:\"site_1502053\";b:1;s:12:\"site_1502054\";b:1;s:12:\"site_1502055\";b:1;s:12:\"site_1502056\";b:1;s:12:\"site_1502057\";b:1;s:12:\"site_1502058\";b:1;s:12:\"site_1502059\";b:1;s:12:\"site_1502060\";b:1;s:12:\"site_1502061\";b:1;s:12:\"site_1502062\";b:1;s:12:\"site_1502063\";b:1;s:12:\"site_1502064\";b:1;s:12:\"site_1502065\";b:1;s:12:\"site_1502066\";b:1;s:12:\"site_1502067\";b:1;s:12:\"site_1502068\";b:1;s:12:\"site_1502069\";b:1;s:12:\"site_1502071\";b:1;s:12:\"site_1502072\";b:1;s:12:\"site_1502073\";b:1;s:12:\"site_1502074\";b:1;s:12:\"site_1502075\";b:1;s:12:\"site_1502076\";b:1;s:12:\"site_1502077\";b:1;s:12:\"site_1502078\";b:1;s:12:\"site_1502079\";b:1;s:12:\"site_1502080\";b:1;s:12:\"site_1502081\";b:1;s:12:\"site_1502082\";b:1;s:12:\"site_1502084\";b:1;s:12:\"site_1502085\";b:1;s:12:\"site_1502086\";b:1;s:12:\"site_1502087\";b:1;s:12:\"site_1502088\";b:1;s:12:\"site_1502089\";b:1;s:12:\"site_1502090\";b:1;s:12:\"site_1502091\";b:1;s:12:\"site_1502092\";b:1;s:12:\"site_1502093\";b:1;s:12:\"site_1502094\";b:1;s:12:\"site_1502096\";b:1;s:12:\"site_1502097\";b:1;s:12:\"site_1502098\";b:1;s:12:\"site_1502100\";b:1;s:12:\"site_1502101\";b:1;s:12:\"site_1502102\";b:1;s:12:\"site_1502103\";b:1;s:12:\"site_1502104\";b:1;s:12:\"site_1502105\";b:1;s:12:\"site_1502106\";b:1;s:12:\"site_1502107\";b:1;s:12:\"site_1502108\";b:1;s:12:\"site_1502109\";b:1;s:12:\"site_1502110\";b:1;s:12:\"site_1502111\";b:1;s:12:\"site_1502112\";b:1;s:12:\"site_1502113\";b:1;s:12:\"site_1502114\";b:1;s:12:\"site_1502115\";b:1;s:12:\"site_1502116\";b:1;s:12:\"site_1502117\";b:1;s:12:\"site_1502118\";b:1;s:12:\"site_1502119\";b:1;s:12:\"site_1502120\";b:1;s:12:\"site_1502121\";b:1;s:12:\"site_1502122\";b:1;s:12:\"site_1502123\";b:1;s:12:\"site_1502124\";b:1;s:12:\"site_1502125\";b:1;s:12:\"site_1502126\";b:1;s:12:\"site_1502127\";b:1;s:12:\"site_1502128\";b:1;s:12:\"site_1502129\";b:1;s:12:\"site_1502130\";b:1;s:12:\"site_1502133\";b:1;s:12:\"site_1502134\";b:1;s:12:\"site_1502135\";b:1;s:12:\"site_1502136\";b:1;s:12:\"site_1502137\";b:1;s:12:\"site_1502138\";b:1;s:12:\"site_1502139\";b:1;s:12:\"site_1502140\";b:1;s:12:\"site_1502141\";b:1;s:12:\"site_1502143\";b:1;s:12:\"site_1502144\";b:1;s:12:\"site_1502145\";b:1;s:12:\"site_1502146\";b:1;s:12:\"site_1502147\";b:1;s:12:\"site_1502148\";b:1;s:12:\"site_1502149\";b:1;s:12:\"site_1502150\";b:1;s:12:\"site_1502151\";b:1;s:12:\"site_1502153\";b:1;s:12:\"site_1502154\";b:1;s:12:\"site_1502155\";b:1;s:12:\"site_1502156\";b:1;s:12:\"site_1502157\";b:1;s:12:\"site_1502158\";b:1;s:12:\"site_1502159\";b:1;s:12:\"site_1502160\";b:1;s:12:\"site_1502161\";b:1;s:12:\"site_1502162\";b:1;s:12:\"site_1502163\";b:1;s:12:\"site_1502164\";b:1;s:12:\"site_1502165\";b:1;s:12:\"site_1502166\";b:1;s:12:\"site_1502167\";b:1;s:12:\"site_1502168\";b:1;s:12:\"site_1502169\";b:1;s:12:\"site_1502170\";b:1;s:12:\"site_1502171\";b:1;s:12:\"site_1502172\";b:1;s:12:\"site_1502173\";b:1;s:12:\"site_1502174\";b:1;s:12:\"site_1502175\";b:1;s:12:\"site_1502176\";b:1;s:12:\"site_1502177\";b:1;s:12:\"site_1502178\";b:1;s:12:\"site_1502179\";b:1;s:12:\"site_1502180\";b:1;s:12:\"site_1502181\";b:1;s:12:\"site_1502182\";b:1;s:12:\"site_1502183\";b:1;s:12:\"site_1502184\";b:1;s:12:\"site_1502185\";b:1;s:12:\"site_1502186\";b:1;s:12:\"site_1502187\";b:1;s:12:\"site_1502188\";b:1;s:12:\"site_1502189\";b:1;s:12:\"site_1502190\";b:1;s:12:\"site_1502191\";b:1;s:12:\"site_1502192\";b:1;s:12:\"site_1502193\";b:1;s:12:\"site_1502194\";b:1;s:12:\"site_1502195\";b:1;s:12:\"site_1502196\";b:1;s:12:\"site_1502197\";b:1;s:12:\"site_1502198\";b:1;s:12:\"site_1502199\";b:1;s:12:\"site_1502201\";b:1;s:12:\"site_1502203\";b:1;s:12:\"site_1502204\";b:1;s:12:\"site_1502205\";b:1;s:12:\"site_1502206\";b:1;s:12:\"site_1502207\";b:1;s:12:\"site_1502208\";b:1;s:12:\"site_1502209\";b:1;s:12:\"site_1502210\";b:1;s:12:\"site_1502211\";b:1;s:12:\"site_1502212\";b:1;s:12:\"site_1502213\";b:1;s:12:\"site_1502214\";b:1;s:12:\"site_1502215\";b:1;s:12:\"site_1502216\";b:1;s:12:\"site_1502217\";b:1;s:12:\"site_1502218\";b:1;s:12:\"site_1502220\";b:1;s:12:\"site_1502221\";b:1;s:12:\"site_1502222\";b:1;s:12:\"site_1502226\";b:1;s:12:\"site_1502227\";b:1;s:12:\"site_1502231\";b:1;s:12:\"site_1502232\";b:1;s:12:\"site_1502233\";b:1;s:12:\"site_1502235\";b:1;s:12:\"site_1502236\";b:1;s:12:\"site_1502237\";b:1;s:12:\"site_1502238\";b:1;s:12:\"site_1502239\";b:1;s:12:\"site_1502240\";b:1;s:12:\"site_1502241\";b:1;s:12:\"site_1502242\";b:1;s:12:\"site_1502243\";b:1;s:12:\"site_1502244\";b:1;s:12:\"site_1502245\";b:1;s:12:\"site_1502246\";b:1;s:12:\"site_1502247\";b:1;s:12:\"site_1502248\";b:1;s:12:\"site_1502250\";b:1;s:12:\"site_1502251\";b:1;s:12:\"site_1502252\";b:1;s:12:\"site_1502253\";b:1;s:12:\"site_1502254\";b:1;s:12:\"site_1502255\";b:1;s:12:\"site_1502256\";b:1;s:12:\"site_1502257\";b:1;s:12:\"site_1502258\";b:1;s:12:\"site_1502259\";b:1;s:12:\"site_1502260\";b:1;s:12:\"site_1502261\";b:1;s:12:\"site_1502262\";b:1;s:12:\"site_1502264\";b:1;s:12:\"site_1502265\";b:1;s:12:\"site_1502266\";b:1;s:12:\"site_1502267\";b:1;s:12:\"site_1502268\";b:1;s:12:\"site_1502269\";b:1;s:12:\"site_1502270\";b:1;s:12:\"site_1502271\";b:1;s:12:\"site_1502272\";b:1;s:12:\"site_1502273\";b:1;s:12:\"site_1502274\";b:1;s:12:\"site_1502275\";b:1;s:12:\"site_1502276\";b:1;s:12:\"site_1502278\";b:1;s:12:\"site_1502279\";b:1;s:12:\"site_1502280\";b:1;s:12:\"site_1502281\";b:1;s:12:\"site_1502282\";b:1;s:12:\"site_1502284\";b:1;s:12:\"site_1502285\";b:1;s:12:\"site_1502286\";b:1;s:12:\"site_1502287\";b:1;s:12:\"site_1502288\";b:1;s:12:\"site_1502289\";b:1;s:12:\"site_1502290\";b:1;s:12:\"site_1502291\";b:1;s:12:\"site_1502293\";b:1;s:12:\"site_1502295\";b:1;s:12:\"site_1502296\";b:1;s:12:\"site_1502297\";b:1;s:12:\"site_1502298\";b:1;s:12:\"site_1502299\";b:1;s:12:\"site_1502300\";b:1;s:12:\"site_1502301\";b:1;s:12:\"site_1502302\";b:1;s:12:\"site_1502303\";b:1;s:12:\"site_1502304\";b:1;s:12:\"site_1502305\";b:1;s:12:\"site_1502306\";b:1;s:12:\"site_1502307\";b:1;s:12:\"site_1502308\";b:1;s:12:\"site_1502309\";b:1;s:12:\"site_1502310\";b:1;s:12:\"site_1502311\";b:1;s:12:\"site_1502312\";b:1;s:12:\"site_1502313\";b:1;s:12:\"site_1502314\";b:1;s:12:\"site_1502315\";b:1;s:12:\"site_1502316\";b:1;s:12:\"site_1502317\";b:1;s:12:\"site_1502318\";b:1;s:12:\"site_1502319\";b:1;s:12:\"site_1502320\";b:1;s:12:\"site_1502321\";b:1;s:12:\"site_1502322\";b:1;s:12:\"site_1502323\";b:1;s:12:\"site_1502324\";b:1;s:12:\"site_1502325\";b:1;s:12:\"site_1502326\";b:1;s:12:\"site_1502327\";b:1;s:12:\"site_1502328\";b:1;s:12:\"site_1502329\";b:1;s:12:\"site_1502330\";b:1;s:12:\"site_1502331\";b:1;s:12:\"site_1502332\";b:1;s:12:\"site_1502333\";b:1;s:12:\"site_1502334\";b:1;s:12:\"site_1502337\";b:1;s:12:\"site_1502338\";b:1;s:12:\"site_1502339\";b:1;s:12:\"site_1502340\";b:1;s:12:\"site_1502342\";b:1;s:12:\"site_1502343\";b:1;s:12:\"site_1502344\";b:1;s:12:\"site_1502345\";b:1;s:12:\"site_1502346\";b:1;s:12:\"site_1502347\";b:1;s:12:\"site_1502348\";b:1;s:12:\"site_1502349\";b:1;s:12:\"site_1502350\";b:1;s:12:\"site_1502351\";b:1;s:12:\"site_1502352\";b:1;s:12:\"site_1502354\";b:1;s:12:\"site_1502355\";b:1;s:12:\"site_1502356\";b:1;s:12:\"site_1502357\";b:1;s:12:\"site_1502358\";b:1;s:12:\"site_1502359\";b:1;s:12:\"site_1502360\";b:1;s:12:\"site_1502361\";b:1;s:12:\"site_1502362\";b:1;s:12:\"site_1502363\";b:1;s:12:\"site_1502365\";b:1;s:12:\"site_1502366\";b:1;s:12:\"site_1502367\";b:1;s:12:\"site_1502369\";b:1;s:12:\"site_1502370\";b:1;s:12:\"site_1502371\";b:1;s:12:\"site_1502372\";b:1;s:12:\"site_1502373\";b:1;s:12:\"site_1502374\";b:1;s:12:\"site_1502375\";b:1;s:12:\"site_1502376\";b:1;s:12:\"site_1502377\";b:1;s:12:\"site_1502378\";b:1;s:12:\"site_1502379\";b:1;s:12:\"site_1502380\";b:1;s:12:\"site_1502382\";b:1;s:12:\"site_1502383\";b:1;s:12:\"site_1502384\";b:1;s:12:\"site_1502385\";b:1;s:12:\"site_1502386\";b:1;s:12:\"site_1502387\";b:1;s:12:\"site_1502388\";b:1;s:12:\"site_1502389\";b:1;s:12:\"site_1502390\";b:1;s:12:\"site_1502392\";b:1;s:12:\"site_1502393\";b:1;s:12:\"site_1502394\";b:1;s:12:\"site_1502395\";b:1;s:12:\"site_1502396\";b:1;s:12:\"site_1502397\";b:1;s:12:\"site_1502399\";b:1;s:12:\"site_1502400\";b:1;s:12:\"site_1502401\";b:1;s:12:\"site_1502402\";b:1;s:12:\"site_1502403\";b:1;s:12:\"site_1502404\";b:1;s:12:\"site_1502405\";b:1;s:12:\"site_1502406\";b:1;s:12:\"site_1502407\";b:1;s:12:\"site_1502408\";b:1;s:12:\"site_1502409\";b:1;s:12:\"site_1502410\";b:1;s:12:\"site_1502412\";b:1;s:12:\"site_1502413\";b:1;s:12:\"site_1502414\";b:1;s:12:\"site_1502415\";b:1;s:12:\"site_1502416\";b:1;s:12:\"site_1502417\";b:1;s:12:\"site_1502418\";b:1;s:12:\"site_1502419\";b:1;s:12:\"site_1502420\";b:1;s:12:\"site_1502421\";b:1;s:12:\"site_1502422\";b:1;s:12:\"site_1502423\";b:1;s:12:\"site_1502424\";b:1;s:12:\"site_1502425\";b:1;s:12:\"site_1502427\";b:1;s:12:\"site_1502429\";b:1;s:12:\"site_1502430\";b:1;s:12:\"site_1502432\";b:1;s:12:\"site_1502433\";b:1;s:12:\"site_1502437\";b:1;s:12:\"site_1502438\";b:1;s:12:\"site_1502439\";b:1;s:12:\"site_1502440\";b:1;s:12:\"site_1502441\";b:1;s:12:\"site_1502442\";b:1;s:12:\"site_1502443\";b:1;s:12:\"site_1502445\";b:1;s:12:\"site_1502447\";b:1;s:12:\"site_1502448\";b:1;s:12:\"site_1502449\";b:1;s:12:\"site_1502450\";b:1;s:12:\"site_1502451\";b:1;s:12:\"site_1502452\";b:1;s:12:\"site_1502453\";b:1;s:12:\"site_1502454\";b:1;s:12:\"site_1502455\";b:1;s:12:\"site_1502456\";b:1;s:12:\"site_1502457\";b:1;s:12:\"site_1502458\";b:1;s:12:\"site_1502459\";b:1;s:12:\"site_1502460\";b:1;s:12:\"site_1502461\";b:1;s:12:\"site_1502462\";b:1;s:12:\"site_1502464\";b:1;s:12:\"site_1502465\";b:1;s:12:\"site_1502466\";b:1;s:12:\"site_1502467\";b:1;s:12:\"site_1502468\";b:1;s:12:\"site_1502469\";b:1;s:12:\"site_1502471\";b:1;s:12:\"site_1502472\";b:1;s:12:\"site_1502473\";b:1;s:12:\"site_1502474\";b:1;s:12:\"site_1502475\";b:1;s:12:\"site_1502476\";b:1;s:12:\"site_1502477\";b:1;s:12:\"site_1502478\";b:1;s:12:\"site_1502479\";b:1;s:12:\"site_1502480\";b:1;s:12:\"site_1502481\";b:1;s:12:\"site_1502482\";b:1;s:12:\"site_1502483\";b:1;s:12:\"site_1502484\";b:1;s:12:\"site_1502485\";b:1;s:12:\"site_1502486\";b:1;s:12:\"site_1502487\";b:1;s:12:\"site_1502488\";b:1;s:12:\"site_1502489\";b:1;s:12:\"site_1502490\";b:1;s:12:\"site_1502491\";b:1;s:12:\"site_1502492\";b:1;s:12:\"site_1502493\";b:1;s:12:\"site_1502494\";b:1;s:12:\"site_1502495\";b:1;s:12:\"site_1502496\";b:1;s:12:\"site_1502497\";b:1;s:12:\"site_1502498\";b:1;s:12:\"site_1502499\";b:1;s:12:\"site_1502500\";b:1;s:12:\"site_1502501\";b:1;s:12:\"site_1502502\";b:1;s:12:\"site_1502503\";b:1;s:12:\"site_1502504\";b:1;s:12:\"site_1502505\";b:1;s:12:\"site_1502506\";b:1;s:12:\"site_1502507\";b:1;s:12:\"site_1502508\";b:1;s:12:\"site_1502509\";b:1;s:12:\"site_1502510\";b:1;s:12:\"site_1502511\";b:1;s:12:\"site_1502512\";b:1;s:12:\"site_1502513\";b:1;s:12:\"site_1502514\";b:1;s:12:\"site_1502515\";b:1;s:12:\"site_1502516\";b:1;s:12:\"site_1502517\";b:1;s:12:\"site_1502518\";b:1;s:12:\"site_1502519\";b:1;s:12:\"site_1502520\";b:1;s:12:\"site_1502521\";b:1;s:12:\"site_1502522\";b:1;s:12:\"site_1502523\";b:1;s:12:\"site_1502524\";b:1;s:12:\"site_1502525\";b:1;s:12:\"site_1502526\";b:1;s:12:\"site_1502527\";b:1;s:12:\"site_1502528\";b:1;s:12:\"site_1502530\";b:1;s:12:\"site_1502535\";b:1;s:12:\"site_1502536\";b:1;s:12:\"site_1502537\";b:1;s:12:\"site_1502539\";b:1;s:12:\"site_1502540\";b:1;s:12:\"site_1502543\";b:1;s:12:\"site_1502544\";b:1;s:12:\"site_1502545\";b:1;s:12:\"site_1502546\";b:1;s:12:\"site_1502547\";b:1;s:12:\"site_1502548\";b:1;s:12:\"site_1502549\";b:1;s:12:\"site_1502550\";b:1;s:12:\"site_1502551\";b:1;s:12:\"site_1502554\";b:1;s:12:\"site_1502555\";b:1;s:12:\"site_1502557\";b:1;s:12:\"site_1502558\";b:1;s:12:\"site_1502559\";b:1;s:12:\"site_1502562\";b:1;s:12:\"site_1502563\";b:1;s:12:\"site_1502564\";b:1;s:12:\"site_1502566\";b:1;s:12:\"site_1502567\";b:1;s:12:\"site_1502568\";b:1;s:12:\"site_1502571\";b:1;s:12:\"site_1502572\";b:1;s:12:\"site_1502575\";b:1;s:12:\"site_1502576\";b:1;s:12:\"site_1502577\";b:1;s:12:\"site_1502578\";b:1;s:12:\"site_1502579\";b:1;s:12:\"site_1502580\";b:1;s:12:\"site_1502581\";b:1;s:12:\"site_1502582\";b:1;s:12:\"site_1502583\";b:1;s:12:\"site_1502584\";b:1;s:12:\"site_1502585\";b:1;s:12:\"site_1502586\";b:1;s:12:\"site_1502587\";b:1;s:12:\"site_1502588\";b:1;s:12:\"site_1502590\";b:1;s:12:\"site_1502592\";b:1;s:12:\"site_1502593\";b:1;s:12:\"site_1502594\";b:1;s:12:\"site_1502595\";b:1;s:12:\"site_1502596\";b:1;s:12:\"site_1502597\";b:1;s:12:\"site_1502598\";b:1;s:12:\"site_1502599\";b:1;s:12:\"site_1502600\";b:1;s:12:\"site_1502601\";b:1;s:12:\"site_1502603\";b:1;s:12:\"site_1502604\";b:1;s:12:\"site_1502605\";b:1;s:12:\"site_1502608\";b:1;s:12:\"site_1502611\";b:1;s:12:\"site_1502612\";b:1;s:12:\"site_1502614\";b:1;s:12:\"site_1502615\";b:1;s:12:\"site_1502616\";b:1;s:12:\"site_1502618\";b:1;s:12:\"site_1502619\";b:1;s:12:\"site_1502620\";b:1;s:12:\"site_1502621\";b:1;s:12:\"site_1502623\";b:1;s:12:\"site_1502624\";b:1;s:12:\"site_1502625\";b:1;s:12:\"site_1502626\";b:1;s:12:\"site_1502627\";b:1;s:12:\"site_1502628\";b:1;s:12:\"site_1502629\";b:1;s:12:\"site_1502630\";b:1;s:12:\"site_1502631\";b:1;s:12:\"site_1502633\";b:1;s:12:\"site_1502634\";b:1;s:12:\"site_1502635\";b:1;s:12:\"site_1502637\";b:1;s:12:\"site_1502638\";b:1;s:12:\"site_1502639\";b:1;s:12:\"site_1502640\";b:1;s:12:\"site_1502641\";b:1;s:12:\"site_1502642\";b:1;s:12:\"site_1502643\";b:1;s:12:\"site_1502644\";b:1;s:12:\"site_1502645\";b:1;s:12:\"site_1502646\";b:1;s:12:\"site_1502647\";b:1;s:12:\"site_1502648\";b:1;s:12:\"site_1502649\";b:1;s:12:\"site_1502651\";b:1;s:12:\"site_1502652\";b:1;s:12:\"site_1502653\";b:1;s:12:\"site_1502654\";b:1;s:12:\"site_1502655\";b:1;s:12:\"site_1502657\";b:1;s:12:\"site_1502659\";b:1;s:12:\"site_1502660\";b:1;s:12:\"site_1502661\";b:1;s:12:\"site_1502665\";b:1;s:12:\"site_1502667\";b:1;s:12:\"site_1502669\";b:1;s:12:\"site_1502671\";b:1;s:12:\"site_1502672\";b:1;s:12:\"site_1502673\";b:1;s:12:\"site_1502674\";b:1;s:12:\"site_1502675\";b:1;s:12:\"site_1502676\";b:1;s:12:\"site_1502677\";b:1;s:12:\"site_1502678\";b:1;s:12:\"site_1502679\";b:1;s:12:\"site_1502681\";b:1;s:12:\"site_1502682\";b:1;s:12:\"site_1502683\";b:1;s:12:\"site_1502684\";b:1;s:12:\"site_1502685\";b:1;s:12:\"site_1502686\";b:1;s:12:\"site_1502687\";b:1;s:12:\"site_1502688\";b:1;s:12:\"site_1502689\";b:1;s:12:\"site_1502690\";b:1;s:12:\"site_1502691\";b:1;s:12:\"site_1502692\";b:1;s:12:\"site_1502693\";b:1;s:12:\"site_1502694\";b:1;s:12:\"site_1502695\";b:1;s:12:\"site_1502696\";b:1;s:12:\"site_1502697\";b:1;s:12:\"site_1502698\";b:1;s:12:\"site_1502699\";b:1;s:12:\"site_1502700\";b:1;}s:16:\"extra_post_types\";b:0;}','yes'),(109,'Tribe\\Project\\Site_Init\\Disable_Comments-schema','1','yes'),(110,'el-divi-blurb-extended','a:9:{s:4:\"name\";s:19:\"Divi Blurb Extended\";s:4:\"slug\";s:19:\"divi-blurb-extended\";s:4:\"path\";s:43:\"divi-blurb-extended/divi-blurb-extended.php\";s:17:\"installed_version\";s:5:\"1.2.2\";s:15:\"current_version\";s:5:\"1.2.3\";s:12:\"metadata_url\";s:56:\"https://thelomad.com/getmad.today/wp-contentcdn.elicus.com\";s:12:\"last_checked\";i:1566918685;s:17:\"should_set_update\";s:4:\"true\";s:15:\"update_metadata\";s:6140:\"O:8:\"stdClass\":11:{s:4:\"slug\";s:19:\"divi-blurb-extended\";s:4:\"name\";s:19:\"Divi Blurb Extended\";s:7:\"banners\";a:2:{s:3:\"low\";s:123:\"https://thelomad.com/getmad.today/wp-contentdiviextended.com/wp-content/uploads/2018/04/divi-blurb-extended-product-image.png\";s:4:\"high\";s:123:\"https://thelomad.com/getmad.today/wp-contentdiviextended.com/wp-content/uploads/2018/04/divi-blurb-extended-product-image.png\";}s:6:\"author\";s:86:\"<a href=\"https://thelomad.com/getmad.today/wp-contentelicus.com\">Elicus Technologies</a>\";s:8:\"homepage\";s:86:\"https://thelomad.com/getmad.today/wp-contentdiviextended.com/product/divi-blurb-extended\";s:12:\"contributors\";a:2:{s:9:\"Mohd Arif\";s:64:\"https://thelomad.com/getmad.today/wp-contenten.gravatar.com/elicus\";s:13:\"Ankur Khurana\";s:72:\"https://thelomad.com/getmad.today/wp-contenten.gravatar.com/ankurkhurana18\";}s:7:\"version\";s:5:\"1.2.3\";s:8:\"requires\";s:5:\"3.0.0\";s:6:\"tested\";s:5:\"5.0.3\";s:12:\"last_updated\";s:10:\"2019-02-13\";s:8:\"sections\";a:4:{s:11:\"description\";s:178:\"Divi Blurb Extended is a plugin by Divi Extended which work upon Divi/Extra theme or Divi builder. Using this plugin, one can create a nice looking Divi Blurb layouts in minutes.\";s:12:\"installation\";s:108:\"<p>Upload Divi Blurb Extended plugin at your website and activate it.</p>\n        					<p>And all done!!</p>\";s:9:\"changelog\";s:4037:\"<h4>1.2.3</h4>\n							<p><em>Release Date – 13 February 2019</em></p>\n							<ul>\n								<li>FIXED: Fixed icon visibility issue in flipbox for safari browser.</li>\n							</ul>\n							<h4>1.2.2</h4>\n							<p><em>Release Date – 2 January 2019</em></p>\n							<ul>\n								<li>Fixed: Unable to add new module on VB when using easebox layout.</li>\n								<li>Fixed: Image size issue for different layouts.</li>\n								<li>Fixed: Image size on easebox layout.</li>\n								<li>Improvement: Improved CSS for easebox layout.</li>\n							</ul>\n							<h4>1.2.1</h4>\n							<p><em>Release Date – 29 December 2018</em></p>\n							<ul>\n								<li>Improvement: Improved CSS.</li>\n								<li>Improvement: Changed Default Module Values.</li>\n							</ul>\n							<h4>1.2.0</h4>\n							<p><em>Release Date – 28 December 2018</em></p>\n							<ul>\n							    <li>Added: Full Visual Builder Support.</li>\n                                <li>Added: Content background color control.</li>\n                                <li>Fixed: Image sizing control.</li>\n								<li>Fixed: Icon display issue on visual builder.</li>\n								<li>Improvement: Improved CSS.</li>\n								<li>Improvement: Improved module structure.</li>\n							</ul>\n							<h4>1.1.3</h4>\n							<p><em>Release Date – 16 November 2018</em></p>\n							<ul>\n							    <li>Fixed: Fixed issue causing read more button color not changing on hover.</li>\n                                <li>Fixed: Fixed target attribute issue of the read more button.</li>\n                                <li>Fixed: Fixed compatibility issues with the latest version of Divi.</li>\n							</ul>\n							<h4>1.1.2</h4>\n							<p><em>Release Date – 03 July 2018</em></p>\n							<ul>\n							    <li>Fixed issue causing Easebox not working properly on Mac.</li>\n                                <li>Some CSS fixes.</li>\n							</ul>\n							<h4>1.1.1</h4>\n							<p><em>Release Date – 25 May 2018</em></p>\n							<ul>\n							    <li>Fixed compatibility issue with older versions of Divi.</li>\n                                <li>Fixed issue causing Flipbox and Easebox not working properly.</li>\n                                <li>Fixed Flipbox borders issue.</li>\n                                <li>Fixed Blurb content not coming issue.</li>\n							</ul>\n							<h4>1.1.0</h4>\n							<p><em>Release Date – 14 May 2018</em></p>\n							<ul>\n							    <li>Compatibility with Divi 3.2.2 and older versions.</li>\n                                <li>Enabled Partial support for Divi Visual Builder.</li>\n                                <li>Optimized CSS & JS according to new Divi standard.</li>\n                                <li>Setup new folder structure according to the new Divi standard.</li>\n                                <li>Added template(only layout files) overriding feature.</li>\n                                <li>Fixed Heading issue.</li>\n							</ul>\n							<h4>1.0.5</h4>\n							<p><em>Release Date – 05 April 2018</em></p>\n							<ul>\n								<li>Fixed Flipbox layout for IE.</li>\n							</ul>\n                            <h4>1.0.4</h4>\n							<p><em>Release Date – 20 March 2018</em></p>\n							<ul>\n								<li>Removed API.</li>\n								<li>Fixed max width setting of the module.</li>\n							</ul>\n                            <h4>1.0.3</h4>\n							<p><em>Release Date – 13 Feb 2018</em></p>\n							<ul>\n								<li>Fixed the hover color problem of title.</li>\n							</ul>\n                            <h4>1.0.2</h4>\n							<p><em>Release Date – 5 Feb 2018</em></p>\n							<ul>\n								<li>Added compatiblity for latest Divi/Extra/Builder version.</li>\n								<li>CSS Fixes.</li>\n							</ul>\n        \n                            <h4>1.0.1</h4>\n							<p><em>Release Date – 5 Oct 2017</em></p>\n							<ul>\n								<li>Fixed bug causing CSS issues in some browsers.</li>\n								<li>Fixed API Validation.</li>\n							</ul>\n\n							<h4>1.0.0</h4>\n							<p><em>Release Date – 12 Sept 2017</em></p>\n							<ul>\n								<li>Initial release of plugin.</li>\n							</ul>\";s:3:\"FAQ\";s:746:\"<h4>What is Divi Blurb Extended?</h4>\n							<p>Divi Blurb Extended is a plugin by Divi Extended which work upon Divi/Extra theme or Divi builder. Using this plugin, one can create a nice looking Divi Blurb layouts in minutes.</p>\n\n							<h4>How many blurb layouts are there in the current version?</h4>\n							<p>In version 1.0.3, we have 5 blurb layouts and we plan to add more in coming releases.</p>\n\n							<h4>Will it work with DIVI Builder plugin installed on any theme other than DIVI?</h4>\n							<p>Yes, the plugin only works with Divi, Extras and Divi Builder.</p>\n\n							<h4>Can I use other modules on same page where I use Divi Blurb Extended module.</h4>\n							<p>Yes, it can be used like any other modules without any issue.</p>\";}}\";}','yes'),(111,'Tribe\\Project\\Site_Init\\Divi_Blurb_Extended-schema','1','yes'),(112,'ninja_forms_settings','a:24:{s:11:\"date_format\";s:5:\"m/d/Y\";s:8:\"currency\";s:3:\"USD\";s:18:\"recaptcha_site_key\";s:0:\"\";s:20:\"recaptcha_secret_key\";s:0:\"\";s:14:\"recaptcha_lang\";s:0:\"\";s:19:\"delete_on_uninstall\";i:0;s:21:\"disable_admin_notices\";i:0;s:13:\"style_license\";s:32:\"eccb6c284e898af57185258e2dc368fc\";s:19:\"style_license_error\";s:0:\"\";s:20:\"style_license_status\";s:5:\"valid\";s:16:\"builder_dev_mode\";i:1;s:5:\"style\";a:1:{s:14:\"field_settings\";a:3:{s:4:\"wrap\";a:13:{s:16:\"background-color\";s:0:\"\";s:6:\"border\";s:0:\"\";s:12:\"border-style\";s:0:\"\";s:12:\"border-color\";s:0:\"\";s:5:\"color\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:6:\"margin\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"display\";s:0:\"\";s:5:\"float\";s:0:\"\";s:8:\"advanced\";s:0:\"\";}s:5:\"label\";a:13:{s:16:\"background-color\";s:0:\"\";s:6:\"border\";s:0:\"\";s:12:\"border-style\";s:0:\"\";s:12:\"border-color\";s:0:\"\";s:5:\"color\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:6:\"margin\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"display\";s:0:\"\";s:5:\"float\";s:0:\"\";s:8:\"advanced\";s:0:\"\";}s:5:\"field\";a:13:{s:16:\"background-color\";s:0:\"\";s:6:\"border\";s:0:\"\";s:12:\"border-style\";s:0:\"\";s:12:\"border-color\";s:0:\"\";s:5:\"color\";s:7:\"#666666\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:6:\"margin\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:7:\"display\";s:0:\"\";s:5:\"float\";s:0:\"\";s:8:\"advanced\";s:0:\"\";}}}s:20:\"recaptcha_site_key_3\";s:0:\"\";s:22:\"recaptcha_secret_key_3\";s:0:\"\";s:21:\"uploads_table_version\";s:6:\"3.0.10\";s:25:\"conditional-logic_license\";s:32:\"e234c827614bb97c0f98bec0ae3755f7\";s:31:\"conditional-logic_license_error\";s:0:\"\";s:32:\"conditional-logic_license_status\";s:5:\"valid\";s:10:\"mp_license\";s:32:\"e234c827614bb97c0f98bec0ae3755f7\";s:16:\"mp_license_error\";s:0:\"\";s:17:\"mp_license_status\";s:5:\"valid\";s:15:\"uploads_license\";s:32:\"e234c827614bb97c0f98bec0ae3755f7\";s:21:\"uploads_license_error\";s:0:\"\";s:22:\"uploads_license_status\";s:5:\"valid\";}','yes'),(113,'Tribe\\Project\\Site_Init\\Ninja_Forms-schema','1','yes'),(114,'redirection_options','a:32:{s:7:\"support\";b:0;s:5:\"token\";s:32:\"af9dfdf07921a6c0835fd9e01956eaff\";s:12:\"monitor_post\";i:2;s:13:\"monitor_types\";a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:6:\"people\";i:3;s:12:\"landing-page\";}s:19:\"associated_redirect\";s:0:\"\";s:11:\"auto_target\";s:0:\"\";s:15:\"expire_redirect\";i:30;s:10:\"expire_404\";i:30;s:7:\"modules\";a:1:{i:2;a:1:{s:8:\"location\";s:0:\"\";}}s:10:\"newsletter\";b:0;s:14:\"redirect_cache\";i:1;s:10:\"ip_logging\";i:0;s:13:\"last_group_id\";i:2;s:8:\"rest_api\";i:0;s:5:\"https\";b:0;s:8:\"database\";s:3:\"4.2\";s:7:\"headers\";a:0:{}s:8:\"relocate\";s:0:\"\";s:16:\"preferred_domain\";s:0:\"\";s:7:\"aliases\";a:0:{}s:10:\"flag_query\";s:4:\"pass\";s:9:\"flag_case\";b:0;s:13:\"flag_trailing\";b:0;s:10:\"flag_regex\";b:0;s:12:\"log_external\";b:0;s:10:\"log_header\";b:0;s:10:\"track_hits\";b:1;s:10:\"permalinks\";a:0:{}s:9:\"cache_key\";i:0;s:13:\"plugin_update\";s:6:\"prompt\";s:13:\"update_notice\";s:3:\"5.1\";s:8:\"location\";s:0:\"\";}','yes'),(115,'Tribe\\Project\\Site_Init\\Redirection-schema','1','yes'),(116,'current_theme','Divi','yes'),(117,'theme_mods_divi_child','a:8:{i:0;b:0;s:18:\"custom_css_post_id\";i:3;s:16:\"et_pb_css_synced\";s:3:\"yes\";s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:12;s:12:\"primary-menu\";i:12;}s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:11:\"mhmm_layout\";s:8:\"disabled\";s:10:\"mhmm_style\";s:10:\"mhmm-basic\";s:13:\"et_pb_widgets\";a:2:{s:5:\"areas\";a:2:{s:19:\"et_pb_widget_area_1\";s:14:\"Practice Areas\";s:19:\"et_pb_widget_area_2\";s:9:\"Attorneys\";}s:6:\"number\";i:2;}}','no'),(118,'theme_switched','','yes'),(119,'Tribe\\Project\\Site_Init\\Site_Theme-schema','1','yes'),(120,'et_core_version','4.18.0','yes'),(121,'administrator_cap_hash','0a806f8ab1b05efe28aa6c85a08664f2','yes'),(122,'advanced-customer_cap_hash','479700da2362b27c56e55f0ac6b749ff','yes'),(123,'copywriter-vendor_cap_hash','a40553332a6556fe780a93af3388443c','yes'),(124,'customer_cap_hash','cbfe9b1a2282511065cbc0f6e60bfe3f','yes'),(125,'design-vendor_cap_hash','056db2a88023a5764e64ab78192d9a1e','yes'),(127,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(128,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(129,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(130,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(131,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(132,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(133,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(134,'widget_nav_menu','a:5:{i:2;a:1:{s:8:\"nav_menu\";i:12;}i:3;a:2:{s:5:\"title\";s:9:\"Attorneys\";s:8:\"nav_menu\";i:11;}i:4;a:1:{s:8:\"nav_menu\";i:12;}i:5;a:1:{s:8:\"nav_menu\";i:12;}s:12:\"_multiwidget\";i:1;}','yes'),(135,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(136,'widget_wpe_powered_by_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(137,'widget_ninja_forms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(138,'widget_monarchwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(139,'widget_aboutmewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(140,'widget_adsensewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(141,'widget_advwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(142,'et_support_site_id','iWT!eNRQ8(t*^XbLd4Fc','yes'),(143,'et_safe_mode_plugins_whitelist','a:8:{i:0;s:15:\"etdev/etdev.php\";i:1;s:15:\"bloom/bloom.php\";i:2;s:19:\"monarch/monarch.php\";i:3;s:29:\"divi-builder/divi-builder.php\";i:4;s:27:\"ari-adminer/ari-adminer.php\";i:5;s:31:\"query-monitor/query-monitor.php\";i:6;s:27:\"woocommerce/woocommerce.php\";i:7;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";}','yes'),(144,'et_support_center_installed','true','yes'),(145,'tribe_cache_group_keys','a:3:{s:17:\"p2p_relationships\";s:27:\"p2p_relationships1660932646\";s:3:\"nav\";s:13:\"nav1660932646\";s:11:\"target_data\";s:21:\"target_data1628720399\";}','yes'),(146,'aioseop_options','a:116:{s:17:\"aiosp_license_key\";s:17:\"8T691609LC565611C\";s:16:\"aiosp_home_title\";s:0:\"\";s:22:\"aiosp_home_description\";s:0:\"\";s:20:\"aiosp_togglekeywords\";s:1:\"1\";s:19:\"aiosp_home_keywords\";s:0:\"\";s:26:\"aiosp_use_static_home_info\";s:1:\"1\";s:9:\"aiosp_can\";s:2:\"on\";s:30:\"aiosp_no_paged_canonical_links\";s:0:\"\";s:31:\"aiosp_customize_canonical_links\";s:2:\"on\";s:20:\"aiosp_rewrite_titles\";s:1:\"1\";s:20:\"aiosp_force_rewrites\";s:1:\"1\";s:24:\"aiosp_use_original_title\";s:1:\"0\";s:28:\"aiosp_home_page_title_format\";s:12:\"%page_title%\";s:23:\"aiosp_page_title_format\";s:12:\"%page_title%\";s:23:\"aiosp_post_title_format\";s:12:\"%post_title%\";s:27:\"aiosp_category_title_format\";s:31:\"%category_title% | %blog_title%\";s:26:\"aiosp_archive_title_format\";s:30:\"%archive_title% | %blog_title%\";s:23:\"aiosp_date_title_format\";s:21:\"%date% | %blog_title%\";s:25:\"aiosp_author_title_format\";s:23:\"%author% | %blog_title%\";s:22:\"aiosp_tag_title_format\";s:20:\"%tag% | %blog_title%\";s:25:\"aiosp_search_title_format\";s:23:\"%search% | %blog_title%\";s:24:\"aiosp_description_format\";s:13:\"%description%\";s:22:\"aiosp_404_title_format\";s:33:\"Nothing found for %request_words%\";s:18:\"aiosp_paged_format\";s:14:\" - Part %page%\";s:17:\"aiosp_cpostactive\";a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:6:\"people\";i:3;s:12:\"landing-page\";}s:15:\"aiosp_taxactive\";a:1:{i:0;s:8:\"category\";}s:18:\"aiosp_cpostnoindex\";a:11:{i:0;s:10:\"attachment\";i:1;s:12:\"oembed_cache\";i:2;s:12:\"user_request\";i:3;s:8:\"wp_block\";i:4;s:16:\"dwd_map_posttype\";i:5;s:7:\"project\";i:6;s:15:\"acf-field-group\";i:7;s:9:\"acf-field\";i:8;s:6:\"nf_sub\";i:9;s:12:\"landing-page\";i:10;s:16:\"wp_stream_alerts\";}s:19:\"aiosp_cpostnofollow\";s:0:\"\";s:21:\"aiosp_posttypecolumns\";a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:6:\"people\";i:3;s:12:\"landing-page\";}s:19:\"aiosp_google_verify\";s:43:\"ScncfkqfnkgA3msczh6NQg3J5O-vWrl_0zNbtW_XwJg\";s:17:\"aiosp_bing_verify\";s:0:\"\";s:22:\"aiosp_pinterest_verify\";s:0:\"\";s:22:\"aiosp_google_publisher\";s:0:\"\";s:28:\"aiosp_google_disable_profile\";s:2:\"on\";s:29:\"aiosp_google_sitelinks_search\";s:0:\"\";s:26:\"aiosp_google_set_site_name\";s:0:\"\";s:30:\"aiosp_google_specify_site_name\";s:0:\"\";s:28:\"aiosp_google_author_advanced\";s:1:\"0\";s:28:\"aiosp_google_author_location\";a:1:{i:0;s:3:\"all\";}s:29:\"aiosp_google_enable_publisher\";s:2:\"on\";s:30:\"aiosp_google_specify_publisher\";s:0:\"\";s:25:\"aiosp_google_analytics_id\";s:0:\"\";s:25:\"aiosp_ga_advanced_options\";s:2:\"on\";s:15:\"aiosp_ga_domain\";s:0:\"\";s:21:\"aiosp_ga_multi_domain\";s:0:\"\";s:21:\"aiosp_ga_addl_domains\";s:0:\"\";s:21:\"aiosp_ga_anonymize_ip\";s:0:\"\";s:28:\"aiosp_ga_display_advertising\";s:0:\"\";s:22:\"aiosp_ga_exclude_users\";s:0:\"\";s:29:\"aiosp_ga_track_outbound_links\";s:0:\"\";s:25:\"aiosp_ga_link_attribution\";s:0:\"\";s:27:\"aiosp_ga_enhanced_ecommerce\";s:0:\"\";s:20:\"aiosp_use_categories\";s:0:\"\";s:26:\"aiosp_use_tags_as_keywords\";s:2:\"on\";s:32:\"aiosp_dynamic_postspage_keywords\";s:2:\"on\";s:22:\"aiosp_category_noindex\";s:2:\"on\";s:26:\"aiosp_archive_date_noindex\";s:2:\"on\";s:28:\"aiosp_archive_author_noindex\";s:2:\"on\";s:18:\"aiosp_tags_noindex\";s:2:\"on\";s:20:\"aiosp_search_noindex\";s:2:\"on\";s:17:\"aiosp_404_noindex\";s:2:\"on\";s:17:\"aiosp_tax_noindex\";a:4:{i:0;s:17:\"divi_map_category\";i:1;s:16:\"project_category\";i:2;s:11:\"project_tag\";i:3;s:7:\"posttag\";}s:23:\"aiosp_paginated_noindex\";s:2:\"on\";s:24:\"aiosp_paginated_nofollow\";s:0:\"\";s:27:\"aiosp_generate_descriptions\";s:2:\"on\";s:18:\"aiosp_skip_excerpt\";s:2:\"on\";s:20:\"aiosp_run_shortcodes\";s:2:\"on\";s:33:\"aiosp_hide_paginated_descriptions\";s:2:\"on\";s:32:\"aiosp_dont_truncate_descriptions\";s:0:\"\";s:19:\"aiosp_schema_markup\";s:0:\"\";s:20:\"aiosp_unprotect_meta\";s:0:\"\";s:33:\"aiosp_redirect_attachement_parent\";s:2:\"on\";s:14:\"aiosp_ex_pages\";s:0:\"\";s:20:\"aiosp_post_meta_tags\";s:0:\"\";s:20:\"aiosp_page_meta_tags\";s:0:\"\";s:21:\"aiosp_front_meta_tags\";s:0:\"\";s:20:\"aiosp_home_meta_tags\";s:0:\"\";s:12:\"aiosp_do_log\";s:0:\"\";s:17:\"aiosp_showseonews\";s:0:\"\";s:15:\"aiosp_admin_bar\";s:0:\"\";s:23:\"aiosp_custom_menu_order\";s:0:\"\";s:29:\"aiosp_ga_track_outbound_forms\";s:0:\"\";s:21:\"aiosp_ga_track_events\";s:0:\"\";s:26:\"aiosp_ga_track_url_changes\";s:0:\"\";s:25:\"aiosp_ga_track_visibility\";s:0:\"\";s:26:\"aiosp_ga_track_media_query\";s:0:\"\";s:26:\"aiosp_ga_track_impressions\";s:0:\"\";s:23:\"aiosp_ga_track_scroller\";s:0:\"\";s:21:\"aiosp_ga_track_social\";s:0:\"\";s:24:\"aiosp_ga_track_clean_url\";s:0:\"\";s:19:\"last_active_version\";s:5:\"3.1.1\";s:21:\"version_feature_flags\";a:1:{s:18:\"term_meta_migrated\";s:3:\"yes\";}s:7:\"modules\";a:3:{s:29:\"aiosp_feature_manager_options\";a:8:{s:36:\"aiosp_feature_manager_enable_sitemap\";s:2:\"on\";s:38:\"aiosp_feature_manager_enable_opengraph\";s:2:\"on\";s:35:\"aiosp_feature_manager_enable_robots\";s:2:\"on\";s:40:\"aiosp_feature_manager_enable_file_editor\";s:0:\"\";s:46:\"aiosp_feature_manager_enable_importer_exporter\";s:0:\"\";s:39:\"aiosp_feature_manager_enable_bad_robots\";s:0:\"\";s:40:\"aiosp_feature_manager_enable_performance\";s:2:\"on\";s:42:\"aiosp_feature_manager_enable_video_sitemap\";s:0:\"\";}s:21:\"aiosp_sitemap_options\";a:47:{s:25:\"aiosp_sitemap_rss_sitemap\";s:0:\"\";s:24:\"aiosp_sitemap_daily_cron\";s:1:\"0\";s:21:\"aiosp_sitemap_indexes\";s:0:\"\";s:23:\"aiosp_sitemap_max_posts\";s:5:\"50000\";s:23:\"aiosp_sitemap_posttypes\";a:3:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:6:\"people\";}s:24:\"aiosp_sitemap_taxonomies\";s:0:\"\";s:21:\"aiosp_sitemap_archive\";s:0:\"\";s:20:\"aiosp_sitemap_author\";s:0:\"\";s:20:\"aiosp_sitemap_images\";s:0:\"\";s:21:\"aiosp_sitemap_gzipped\";s:2:\"on\";s:20:\"aiosp_sitemap_robots\";s:2:\"on\";s:21:\"aiosp_sitemap_rewrite\";s:2:\"On\";s:24:\"aiosp_sitemap_addl_pages\";a:0:{}s:29:\"aiosp_sitemap_excl_categories\";s:0:\"\";s:24:\"aiosp_sitemap_excl_pages\";s:0:\"\";s:27:\"aiosp_sitemap_prio_homepage\";s:2:\"no\";s:23:\"aiosp_sitemap_prio_post\";s:2:\"no\";s:36:\"aiosp_sitemap_prio_post_landing-page\";s:2:\"no\";s:30:\"aiosp_sitemap_prio_post_people\";s:2:\"no\";s:34:\"aiosp_sitemap_prio_post_attachment\";s:2:\"no\";s:28:\"aiosp_sitemap_prio_post_page\";s:2:\"no\";s:28:\"aiosp_sitemap_prio_post_post\";s:2:\"no\";s:29:\"aiosp_sitemap_prio_taxonomies\";s:2:\"no\";s:37:\"aiosp_sitemap_prio_taxonomies_posttag\";s:2:\"no\";s:41:\"aiosp_sitemap_prio_taxonomies_project_tag\";s:2:\"no\";s:46:\"aiosp_sitemap_prio_taxonomies_project_category\";s:2:\"no\";s:47:\"aiosp_sitemap_prio_taxonomies_divi_map_category\";s:2:\"no\";s:41:\"aiosp_sitemap_prio_taxonomies_post_format\";s:2:\"no\";s:38:\"aiosp_sitemap_prio_taxonomies_category\";s:2:\"no\";s:26:\"aiosp_sitemap_prio_archive\";s:2:\"no\";s:25:\"aiosp_sitemap_prio_author\";s:2:\"no\";s:27:\"aiosp_sitemap_freq_homepage\";s:2:\"no\";s:23:\"aiosp_sitemap_freq_post\";s:2:\"no\";s:36:\"aiosp_sitemap_freq_post_landing-page\";s:2:\"no\";s:30:\"aiosp_sitemap_freq_post_people\";s:2:\"no\";s:34:\"aiosp_sitemap_freq_post_attachment\";s:2:\"no\";s:28:\"aiosp_sitemap_freq_post_page\";s:2:\"no\";s:28:\"aiosp_sitemap_freq_post_post\";s:2:\"no\";s:29:\"aiosp_sitemap_freq_taxonomies\";s:2:\"no\";s:37:\"aiosp_sitemap_freq_taxonomies_posttag\";s:2:\"no\";s:41:\"aiosp_sitemap_freq_taxonomies_project_tag\";s:2:\"no\";s:46:\"aiosp_sitemap_freq_taxonomies_project_category\";s:2:\"no\";s:47:\"aiosp_sitemap_freq_taxonomies_divi_map_category\";s:2:\"no\";s:41:\"aiosp_sitemap_freq_taxonomies_post_format\";s:2:\"no\";s:38:\"aiosp_sitemap_freq_taxonomies_category\";s:2:\"no\";s:26:\"aiosp_sitemap_freq_archive\";s:2:\"no\";s:25:\"aiosp_sitemap_freq_author\";s:2:\"no\";}s:23:\"aiosp_opengraph_options\";a:64:{s:27:\"aiosp_opengraph_scan_header\";s:0:\"\";s:23:\"aiosp_opengraph_setmeta\";s:2:\"on\";s:19:\"aiosp_opengraph_key\";s:0:\"\";s:21:\"aiosp_opengraph_appid\";s:0:\"\";s:32:\"aiosp_opengraph_title_shortcodes\";s:2:\"on\";s:38:\"aiosp_opengraph_description_shortcodes\";s:2:\"on\";s:24:\"aiosp_opengraph_sitename\";s:39:\"The Law Offices of Melissa A. Day, PLLC\";s:25:\"aiosp_opengraph_hometitle\";s:0:\"\";s:27:\"aiosp_opengraph_description\";s:0:\"\";s:25:\"aiosp_opengraph_homeimage\";s:0:\"\";s:37:\"aiosp_opengraph_generate_descriptions\";s:2:\"on\";s:22:\"aiosp_opengraph_defimg\";s:0:\"\";s:24:\"aiosp_opengraph_fallback\";s:2:\"on\";s:20:\"aiosp_opengraph_dimg\";s:108:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/OgImage_New.png\";s:25:\"aiosp_opengraph_dimgwidth\";s:0:\"\";s:26:\"aiosp_opengraph_dimgheight\";s:0:\"\";s:24:\"aiosp_opengraph_meta_key\";s:0:\"\";s:21:\"aiosp_opengraph_image\";N;s:25:\"aiosp_opengraph_customimg\";N;s:26:\"aiosp_opengraph_imagewidth\";s:0:\"\";s:27:\"aiosp_opengraph_imageheight\";s:0:\"\";s:21:\"aiosp_opengraph_video\";N;s:26:\"aiosp_opengraph_videowidth\";s:0:\"\";s:27:\"aiosp_opengraph_videoheight\";s:0:\"\";s:23:\"aiosp_opengraph_defcard\";s:19:\"summary_large_image\";s:23:\"aiosp_opengraph_setcard\";N;s:28:\"aiosp_opengraph_twitter_site\";s:0:\"\";s:31:\"aiosp_opengraph_twitter_creator\";s:0:\"\";s:30:\"aiosp_opengraph_twitter_domain\";s:0:\"\";s:33:\"aiosp_opengraph_customimg_twitter\";N;s:24:\"aiosp_opengraph_gen_tags\";s:0:\"\";s:28:\"aiosp_opengraph_gen_keywords\";s:2:\"on\";s:30:\"aiosp_opengraph_gen_categories\";s:2:\"on\";s:29:\"aiosp_opengraph_gen_post_tags\";s:2:\"on\";s:21:\"aiosp_opengraph_types\";a:3:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:6:\"people\";}s:21:\"aiosp_opengraph_title\";s:0:\"\";s:20:\"aiosp_opengraph_desc\";s:0:\"\";s:24:\"aiosp_opengraph_category\";s:0:\"\";s:23:\"aiosp_opengraph_section\";s:0:\"\";s:19:\"aiosp_opengraph_tag\";s:0:\"\";s:34:\"aiosp_opengraph_facebook_publisher\";s:0:\"\";s:31:\"aiosp_opengraph_facebook_author\";s:0:\"\";s:29:\"aiosp_opengraph_profile_links\";s:0:\"\";s:29:\"aiosp_opengraph_person_or_org\";s:0:\"\";s:27:\"aiosp_opengraph_social_name\";s:0:\"\";s:35:\"aiosp_opengraph_post_fb_object_type\";s:7:\"article\";s:35:\"aiosp_opengraph_page_fb_object_type\";s:7:\"website\";s:41:\"aiosp_opengraph_attachment_fb_object_type\";s:7:\"article\";s:43:\"aiosp_opengraph_oembed_cache_fb_object_type\";s:7:\"article\";s:43:\"aiosp_opengraph_user_request_fb_object_type\";s:7:\"article\";s:39:\"aiosp_opengraph_wp_block_fb_object_type\";s:7:\"article\";s:47:\"aiosp_opengraph_dwd_map_posttype_fb_object_type\";s:7:\"article\";s:38:\"aiosp_opengraph_project_fb_object_type\";s:7:\"article\";s:46:\"aiosp_opengraph_acf-field-group_fb_object_type\";s:7:\"article\";s:40:\"aiosp_opengraph_acf-field_fb_object_type\";s:7:\"article\";s:37:\"aiosp_opengraph_nf_sub_fb_object_type\";s:7:\"article\";s:37:\"aiosp_opengraph_people_fb_object_type\";s:7:\"profile\";s:43:\"aiosp_opengraph_landing-page_fb_object_type\";s:7:\"article\";s:47:\"aiosp_opengraph_wp_stream_alerts_fb_object_type\";s:7:\"article\";s:47:\"aiosp_opengraph_et_theme_builder_fb_object_type\";s:7:\"article\";s:42:\"aiosp_opengraph_et_template_fb_object_type\";s:7:\"article\";s:47:\"aiosp_opengraph_et_header_layout_fb_object_type\";s:7:\"article\";s:45:\"aiosp_opengraph_et_body_layout_fb_object_type\";s:7:\"article\";s:47:\"aiosp_opengraph_et_footer_layout_fb_object_type\";s:7:\"article\";}}s:29:\"aiosp_attachment_title_format\";s:27:\"%post_title% | %blog_title%\";s:31:\"aiosp_oembed_cache_title_format\";s:27:\"%post_title% | %blog_title%\";s:31:\"aiosp_user_request_title_format\";s:27:\"%post_title% | %blog_title%\";s:27:\"aiosp_wp_block_title_format\";s:27:\"%post_title% | %blog_title%\";s:35:\"aiosp_dwd_map_posttype_title_format\";s:27:\"%post_title% | %blog_title%\";s:26:\"aiosp_project_title_format\";s:27:\"%post_title% | %blog_title%\";s:34:\"aiosp_acf-field-group_title_format\";s:27:\"%post_title% | %blog_title%\";s:28:\"aiosp_acf-field_title_format\";s:27:\"%post_title% | %blog_title%\";s:25:\"aiosp_nf_sub_title_format\";s:27:\"%post_title% | %blog_title%\";s:25:\"aiosp_people_title_format\";s:27:\"%post_title% | %blog_title%\";s:31:\"aiosp_landing-page_title_format\";s:27:\"%post_title% | %blog_title%\";s:35:\"aiosp_wp_stream_alerts_title_format\";s:27:\"%post_title% | %blog_title%\";s:40:\"aiosp_divi_map_category_tax_title_format\";s:31:\"%taxonomy_title% | %blog_title%\";s:39:\"aiosp_project_category_tax_title_format\";s:31:\"%taxonomy_title% | %blog_title%\";s:34:\"aiosp_project_tag_tax_title_format\";s:31:\"%taxonomy_title% | %blog_title%\";s:30:\"aiosp_posttag_tax_title_format\";s:31:\"%taxonomy_title% | %blog_title%\";s:19:\"aiosp_yandex_verify\";s:0:\"\";s:18:\"aiosp_baidu_verify\";s:0:\"\";s:35:\"aiosp_et_theme_builder_title_format\";s:27:\"%post_title% | %site_title%\";s:30:\"aiosp_et_template_title_format\";s:27:\"%post_title% | %site_title%\";s:35:\"aiosp_et_header_layout_title_format\";s:27:\"%post_title% | %site_title%\";s:33:\"aiosp_et_body_layout_title_format\";s:27:\"%post_title% | %site_title%\";s:35:\"aiosp_et_footer_layout_title_format\";s:27:\"%post_title% | %site_title%\";}','yes'),(147,'et_images_temp_folder','/nas/content/live/findlawprod3https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/et_temp','yes'),(148,'et_schedule_clean_images_last_time','1752116716','yes'),(149,'ninja_forms_needs_updates','0','yes'),(150,'nf_tel_collate','1','no'),(151,'ss_plugin_version','2.6','yes'),(152,'bsr_version','1.4','yes'),(153,'nf_admin_notice','a:1:{s:16:\"one_week_support\";a:3:{s:5:\"start\";s:8:\"8/2/2019\";s:3:\"int\";i:7;s:9:\"dismissed\";i:1;}}','yes'),(154,'wpe_notices','a:1:{s:4:\"read\";s:0:\"\";}','yes'),(155,'wpe_notices_ttl','1627568133','yes'),(156,'options_sub_id','3602675','no'),(157,'_options_sub_id','field_576ae9ls83jfy','no'),(158,'options_wld_id','5239763','no'),(159,'_options_wld_id','field_576aekjd983ys','no'),(160,'options_profile_id','1','no'),(161,'_options_profile_id','field_576akei28839s','no'),(162,'options_folder_name','3602675','no'),(163,'_options_folder_name','field_576aeksuw9762','no'),(164,'options_header_tagline','','no'),(165,'_options_header_tagline','field_486t99b0as6pk','no'),(166,'options_cluster_id','','no'),(167,'_options_cluster_id','field_576a6354yfhtr','no'),(168,'options_pub_3008','','no'),(169,'_options_pub_3008','field_576alkjeyrut8','no'),(170,'options_google_maps_api_key','','no'),(171,'_options_google_maps_api_key','field_576ae96ffdsfdd','no'),(172,'options_image_url','https://thelomad.com/getmad.today/wp-contentwldimages.findlaw.com/images/5239763/5239763_1.jpg','no'),(173,'_options_image_url','field_lkjaeioidjksal','no'),(174,'options_template_site','0','no'),(175,'_options_template_site','field_5b919e34e3316','no'),(176,'bsr_license_key','4b1af2de9ead21e2b47ac3abf3982796','yes'),(177,'bsr_page_size','20000','yes'),(178,'bsr_max_results','60','yes'),(179,'bsr_enable_gzip','on','yes'),(181,'et_pb_builder_options','a:2:{i:0;b:0;s:35:\"email_provider_credentials_migrated\";b:1;}','yes'),(182,'bsr_license_status','valid','yes'),(183,'et_automatic_updates_options','a:2:{s:8:\"username\";s:15:\"joseph.wilebski\";s:7:\"api_key\";s:40:\"2204d58dc5443b1322f821343754f84d0ed6374e\";}','yes'),(185,'dfa_license_status','valid','yes'),(186,'dfa_license_key','f8c6e701fbcf0bf4af4a6d7ca57d71c4','yes'),(187,'divi_fontawesome_gtm_settings','a:2:{s:16:\"fa_embed_code_id\";s:0:\"\";s:20:\"fa_embed_code_format\";s:3:\"css\";}','yes'),(188,'fhe_license_key','dwd5d00f4cea0941','yes'),(189,'fhe_license_key_activated','activated','yes'),(190,'map_license_key','dwd5d00f4cebd171','yes'),(191,'map_license_key_activated','activated','yes'),(192,'recently_activated','a:0:{}','off'),(200,'fresh_site','0','off'),(201,'tadv_settings','a:10:{s:7:\"options\";s:44:\"menubar,advlist,menubar_block,merge_toolbars\";s:7:\"plugins\";s:104:\"anchor,code,insertdatetime,nonbreaking,print,searchreplace,table,visualblocks,visualchars,advlist,wptadv\";s:9:\"toolbar_1\";s:106:\"formatselect,bold,italic,blockquote,bullist,numlist,alignleft,aligncenter,alignright,link,unlink,undo,redo\";s:9:\"toolbar_2\";s:103:\"fontselect,fontsizeselect,outdent,indent,pastetext,removeformat,charmap,wp_more,forecolor,table,wp_help\";s:9:\"toolbar_3\";s:0:\"\";s:9:\"toolbar_4\";s:0:\"\";s:21:\"toolbar_classic_block\";s:123:\"formatselect,bold,italic,blockquote,bullist,numlist,alignleft,aligncenter,alignright,link,forecolor,backcolor,table,wp_help\";s:13:\"toolbar_block\";s:67:\"core/code,core/image,core/strikethrough,tadv/mark,tadv/removeformat\";s:18:\"toolbar_block_side\";s:46:\"core/superscript,core/subscript,core/underline\";s:12:\"panels_block\";s:44:\"tadv/color-panel,tadv/background-color-panel\";}','yes'),(202,'tadv_admin_settings','a:1:{s:7:\"options\";s:86:\"classic_paragraph_block,table_resize_bars,table_grid,table_tab_navigation,table_advtab\";}','yes'),(206,'ninja_forms_optin_reported','1','yes'),(207,'ninja_forms_memberships_feed','<div class=\"widget widget-memberships\">\r\n<div class=\"pricing-container\">\r\n<div class=\"pricing-block widget\">\r\n<div class=\"pricing-header\">\r\n<div class=\"pricing-title\">Agency</div>\r\n<div class=\"pricing-price\">$499</div>\r\n<div class=\"pricing-savings\">Save $2000+</div>\r\n<div class=\"pricing-cta\"><a class=\"nf-button primary\" href=\"https://thelomad.com/getmad.today/wp-contentninjaforms.com/checkout/?edd_action=add_to_cart&download_id=203757&utm_source=Ninja+Forms+Plugin&utm_medium=Apps+and+Integrations&utm_campaign=Dashboard+Memberships&utm_content=Agency+Buy+Now\" target=\"_blank\" rel=\"noopener\">Buy Now</a></div>\r\n</div>\r\n<div class=\"pricing-body\">\r\n<div><i class=\"fa fa-users\" aria-hidden=\"true\"></i>\r\n<span class=\"pricing-body-title\">Unlimited Sites</span>\r\n<span>Updates &amp; Support</span></div>\r\n<div><i class=\"fa fa-rocket\" aria-hidden=\"true\"></i>\r\n<span class=\"pricing-body-title\">Fastest Support</span>\r\n<span>1 Year of Updates &amp; Support</span></div>\r\n<div><i class=\"fa fa-trophy\" aria-hidden=\"true\"></i>\r\n<span class=\"pricing-body-title\">All add-ons included!</span>\r\n<ul>\r\n 	<li>Builder PRO Pack</li>\r\n 	<li>PDF Form Submissions</li>\r\n 	<li>Zapier</li>\r\n 	<li>Newsletters (MailChimp, etc.)</li>\r\n 	<li>CRMs (Saleforce, etc.)</li>\r\n 	<li>Payments (PayPal, etc.)</li>\r\n 	<li>And so much more...</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"pricing-block widget highlight\">\r\n\r\n<!--\r\n<div class=\"callout\">\r\n                    Most Popular</div>\r\n-->\r\n<div class=\"pricing-header\">\r\n<div class=\"pricing-title\">Professional</div>\r\n<div class=\"pricing-price\">$199</div>\r\n<div class=\"pricing-savings\">Save $197</div>\r\n<div class=\"pricing-cta\"><a class=\"nf-button primary\" href=\"https://thelomad.com/getmad.today/wp-contentninjaforms.com/checkout/?edd_action=add_to_cart&download_id=471355&utm_source=Ninja+Forms+Plugin&utm_medium=Apps+and+Integrations&utm_campaign=Dashboard+Memberships&utm_content=Professional+Buy+Now\" target=\"_blank\" rel=\"noopener\">Buy Now</a></div>\r\n</div>\r\n<div class=\"pricing-body\">\r\n<div><i class=\"fa fa-users\" aria-hidden=\"true\"></i>\r\n<span class=\"pricing-body-title\">20 Sites</span>\r\n<span>Updates &amp; Support</span></div>\r\n<div><i class=\"fa fa-plane\" aria-hidden=\"true\"></i>\r\n<span class=\"pricing-body-title\">Faster Support</span></div>\r\n<div><i class=\"fa fa-wrench\" aria-hidden=\"true\"></i>\r\n<span class=\"pricing-body-title\">Builder Pro Pack</span>\r\n<span>Layout &amp; Styles, Multi-Part Forms, Conditional Logic, File Uploads</span></div>\r\n<div><i class=\"fa fa-percent\" aria-hidden=\"true\"></i>\r\n<span>Plus <strong>40% off</strong>\r\nAdditional Add-Ons</span></div>\r\n</div>\r\n</div>\r\n<div class=\"pricing-block widget\">\r\n<div class=\"pricing-header\">\r\n<div class=\"pricing-title\">Personal</div>\r\n<div class=\"pricing-price\">$99</div>\r\n<div class=\"pricing-savings\">Save $57</div>\r\n<div class=\"pricing-cta\"><a class=\"nf-button primary\" href=\"https://thelomad.com/getmad.today/wp-contentninjaforms.com/checkout/?edd_action=add_to_cart&download_id=471356&utm_medium=plugin&utm_source=Ninja+Forms+Plugin&utm_medium=Apps+and+Integrations&utm_campaign=Dashboard+Memberships&utm_content=Personal+Buy+Now\" target=\"_blank\" rel=\"noopener\">Buy Now</a></div>\r\n</div>\r\n<div class=\"pricing-body\">\r\n<div><i class=\"fa fa-user\" aria-hidden=\"true\"></i>\r\n<span class=\"pricing-body-title\">1 Site</span>\r\n<span>Updates &amp; Support</span></div>\r\n<div><i class=\"fa fa-car\" aria-hidden=\"true\"></i>\r\n<span class=\"pricing-body-title\">Fast Support</span></div>\r\n<div><i class=\"fa fa-wrench\" aria-hidden=\"true\"></i>\r\n<span class=\"pricing-body-title\">Builder Pro Pack</span>\r\n<span>Layout &amp; Styles, Multi-Part Forms, Conditional Logic, File Uploads</span></div>\r\n<div><i class=\"fa fa-percent\" aria-hidden=\"true\"></i>\r\n<span>Plus <strong>20% off</strong>\r\nAdditional Add-Ons</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"widget widget-plan-notice\">\r\n<p class=\"widget-title\">That sounds amazing! What else comes with Ninja Forms?</p>\r\n<a class=\"nf-button primary feature-list-link\" href=\"https://thelomad.com/getmad.today/wp-contentninjaforms.com/features/?utm_source=Ninja+Forms+Plugin&utm_medium=Apps+and+Integrations&utm_campaign=Dashboard+Features+Link\" target=\"_blank\" rel=\"noopener\">We\'re glad you asked! Checkout our full list of features! <i class=\"fa fa-chevron-circle-right\" aria-hidden=\"true\"></i></a>\r\n<div><em>All plans include a 14 day money back guarantee.</em></div>\r\n<div>Requires a current active license and subject to our <a href=\"https://thelomad.com/getmad.today/wp-contentninjaforms.com/terms-conditions/?utm_medium=plugin&utm_source=plugin-dashboard&utm_campaign=Ninja+Forms+Memberships&utm_content=Terms+Conditions\" target=\"_blank\" rel=\"noopener\">Terms &amp; Conditions</a>.</div>\r\n</div>','no'),(208,'ninja_forms_addons_feed','[{\"title\":\"Multi Step Forms\",\"image\":\"assets\\/img\\/add-ons\\/multi-step-forms.png\",\"content\":\"Give submissions a boost on any longer form by making it a multipage form. Drag and drop fields between pages, add breadcrumb navigation, a progress bar, and loads more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/multi-step-forms\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Multi+Step+Forms+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-multi-part\\/multi-part.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/multi-step-forms\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Multi+Step+Forms+Add-ons+Docs\",\"version\":\"3.0.26\",\"categories\":[{\"name\":\"Look &amp; Feel\",\"slug\":\"look-feel\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Basic 2022\",\"slug\":\"basic-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"},{\"name\":\"Advanced Functionality\",\"slug\":\"advanced-functionality\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Advanced Form Features\",\"slug\":\"advanced-form-features\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Front-End Posting\",\"image\":\"assets\\/img\\/add-ons\\/front-end-posting.png\",\"content\":\"Let users publish content just by submitting a form! Completely configurable including post type, title, even categories and tags. Set post status, author, and much more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/post-creation\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Front-End+Posting+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-post-creation\\/ninja-forms-post-creation.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/post-creation\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Front-End+Posting+Add-ons+Docs\",\"version\":\"3.0.11\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Submissions Extended\",\"slug\":\"submissions-extended\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Campaign Monitor\",\"image\":\"assets\\/img\\/add-ons\\/campaign-monitor.png\",\"content\":\"Make any form a custom crafted WordPress signup form for Campaign Monitor. Connect to any list, link form fields to list fields, and watch your lists grow!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/campaign-monitor\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Campaign+Monitor+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-campaign-monitor\\/ninja-forms-campaign-monitor.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/campaign-monitor\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Campaign+Monitor+Add-ons+Docs\",\"version\":\"3.0.7\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"User Analytics\",\"image\":\"assets\\/img\\/add-ons\\/user-analytics.png\",\"content\":\"Get better data on where your form traffic is coming from with every submission. Add 10 analytics fields including UTM source, medium, campaign, content, and more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/user-analytics\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=User+Analytics+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-user-analytics\\/ninja-forms-user-analytics.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/user-analytics\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=User+Analytics+Add-ons+Docs\",\"version\":\"3.0.4\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Advanced Functionality\",\"slug\":\"advanced-functionality\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Advanced Form Features\",\"slug\":\"advanced-form-features\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Constant Contact\",\"image\":\"assets\\/img\\/add-ons\\/constant-contact.png\",\"content\":\"Connect WordPress to Constant Contact with forms that you can build and design just the way you want, no tech skills required! Subscribe users to any list or interest group.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/constant-contact\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Constant+Contact+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-constant-contact\\/ninja-forms-constant-contact.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/constant-contact\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Constant+Contact+Add-ons+Docs\",\"version\":\"3.1.1\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"AWeber\",\"image\":\"assets\\/img\\/add-ons\\/aweber.png\",\"content\":\"Build your lists faster with easy to design, professional quality WordPress signup forms. No technical skills required. Connect WordPress to AWeber with style!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/aweber\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=AWeber+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-aweber\\/ninja-forms-aweber.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/aweber\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=AWeber+Add-ons+Docs\",\"version\":\"3.2.1\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"PayPal Express\",\"image\":\"assets\\/img\\/add-ons\\/paypal-express.png\",\"content\":\"Set up any form to accept PayPal payments with PayPal Express for WordPress! Base totals on a fixed amount, user entered amount, or a calculated total.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/paypal-express\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=PayPal+Express+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-paypal-express\\/ninja-forms-paypal-express.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/paypal-express\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=PayPal+Express+Add-ons+Docs\",\"version\":\"3.1.3\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"MailPoet\",\"image\":\"assets\\/img\\/add-ons\\/mailpoet.png\",\"content\":\"Say hello better! Customize your MailPoet signup forms to draw more subscribers than ever before. Connect WordPress to any MailPoet list in minutes!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/mailpoet\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=MailPoet+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-mailpoet\\/nf-mailpoet.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/mailpoet\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=MailPoet+Add-ons+Docs\",\"version\":\"3.0.2\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Zoho CRM\",\"image\":\"assets\\/img\\/add-ons\\/zoho-crm.png\",\"content\":\"Customize your forms to get the most out of your connection between WordPress and Zoho. Link form fields directly to Zoho fields, custom fields included, from almost any module.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/zoho-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Zoho+CRM+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-zoho-crm\\/ninja-forms-zoho-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/zoho-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Zoho+CRM+Add-ons+Docs\",\"version\":\"3.5.2\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"CRMs\",\"slug\":\"crms\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Capsule CRM\",\"image\":\"assets\\/img\\/add-ons\\/capsule-crm.png\",\"content\":\"Boost conversions from WordPress to Capsule with forms tailor made to your audience. Link form fields to Capsule fields from a wide range of modules. Custom fields too!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/capsule-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Capsule+CRM+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-capsule-crm\\/ninja-forms-capsule-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/capsule-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Capsule+CRM+Add-ons+Docs\",\"version\":\"3.4.6\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"CRMs\",\"slug\":\"crms\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Insightly CRM\",\"image\":\"assets\\/img\\/add-ons\\/insightly-crm.png\",\"content\":\"Your customer\'s journey begins with your WordPress forms. Send Contacts, Leads, Opportunities, Custom fields and more seamlessly from WordPress to Insightly!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/insightly-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Insightly+CRM+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-insightly-crm\\/ninja-forms-insightly-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/insightly-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Insightly+CRM+Add-ons+Docs\",\"version\":\"3.2.2\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"CRMs\",\"slug\":\"crms\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Trello\",\"image\":\"assets\\/img\\/add-ons\\/trello.png\",\"content\":\"Create a new Trello card with data from any WordPress form submission. Map fields to card details, assign members and labels, upload images, embed links.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/trello\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Trello+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-trello\\/ninja-forms-trello.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/trello\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Trello+Add-ons+Docs\",\"version\":\"3.0.6\",\"categories\":[{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"},{\"name\":\"Automation and Integration\",\"slug\":\"automation-and-integration\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Elavon\",\"image\":\"assets\\/img\\/add-ons\\/elavon.png\",\"content\":\"Accept credit card payments from any of your WordPress forms. Pass customer and invoice info from any field securely into Elavon with each payment.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/elavon\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Elavon+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-elavon-payment-gateway\\/ninja-forms-elavon-payment-gateway.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/elavon\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Elavon+Add-ons+Docs\",\"version\":\"3.1.2\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Accept Payments\",\"slug\":\"accept-payments\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Zapier\",\"image\":\"assets\\/img\\/add-ons\\/zapier.png\",\"content\":\"Don\'t see an add-on integration for a service you love? Don\'t worry! Connect WordPress to more than 4,000 different services through Zapier, no code required!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/zapier\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Zapier+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-zapier\\/ninja-forms-zapier.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/zapier\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Zapier+Add-ons+Docs\",\"version\":\"3.1.0\",\"categories\":[{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Custom Integrations\",\"slug\":\"custom-integrations\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"},{\"name\":\"Automation and Integration\",\"slug\":\"automation-and-integration\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Automation\",\"slug\":\"automation\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Salesforce CRM\",\"image\":\"assets\\/img\\/add-ons\\/salesforce-crm.png\",\"content\":\"Easily map any form field to any Salesforce Object or Field. A better connection to your customers begins with a better WordPress form builder!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/salesforce-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Salesforce+CRM+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-salesforce-crm\\/ninja-forms-salesforce-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/salesforce-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Salesforce+CRM+Add-ons+Docs\",\"version\":\"3.3.4\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"CRMs\",\"slug\":\"crms\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Slack\",\"image\":\"assets\\/img\\/add-ons\\/slack.png\",\"content\":\"Get realtime Slack notifications in the workspace and channel of your choice with any new WordPress form submission. @Mention any team member!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/slack\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Slack+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-slack\\/ninja-forms-slack.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/slack\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Slack+Add-ons+Docs\",\"version\":\"3.0.4\",\"categories\":[{\"name\":\"Notifications\",\"slug\":\"notifications\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"},{\"name\":\"Automation and Integration\",\"slug\":\"automation-and-integration\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"CleverReach\",\"image\":\"assets\\/img\\/add-ons\\/cleverreach.png\",\"content\":\"Grow the reach of your email marketing with better CleverReach signup forms. Tailor your forms to your audience with this easy to set up integration!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/cleverreach\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=CleverReach+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-cleverreach\\/ninja-forms-cleverreach.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/cleverreach\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=CleverReach+Add-ons+Docs\",\"version\":\"3.1.8\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Webhooks\",\"image\":\"assets\\/img\\/add-ons\\/webhooks.png\",\"content\":\"Can\'t find a WordPress integration for the service you love? Send WordPress forms data to any external URL using a simple GET or POST request!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/webhooks\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Webhooks+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-webhooks\\/ninja-forms-webhooks.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/webhooks\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Webhooks+Add-ons+Docs\",\"version\":\"3.0.8\",\"categories\":[{\"name\":\"Notifications\",\"slug\":\"notifications\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Custom Integrations\",\"slug\":\"custom-integrations\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Automation and Integration\",\"slug\":\"automation-and-integration\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Automation\",\"slug\":\"automation\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Help Scout\",\"image\":\"assets\\/img\\/add-ons\\/help-scout.png\",\"content\":\"Offering great support is hard. Tailor your WordPress forms to match your customers\' needs with this Help Scout integration for WordPress.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/help-scout\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Help+Scout+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/help-scout\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Help+Scout+Add-ons+Docs\",\"version\":\"3.1.4\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Automation and Integration\",\"slug\":\"automation-and-integration\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Emma\",\"image\":\"assets\\/img\\/add-ons\\/emma.png\",\"content\":\"Take your email marketing further with handcrafted, easy to build signup forms that connect directly into your Emma account! \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/emma\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Emma+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-emma\\/ninja-forms-emma.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/emma\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Emma+Add-ons+Docs\",\"version\":\"3.0.4\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"ClickSend SMS\",\"image\":\"assets\\/img\\/add-ons\\/clicksend-sms.png\",\"content\":\"Get instant SMS notifications with every new WordPress form submission. Respond to leads faster and make more personal connections!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/clicksend-sms\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=ClickSend+SMS+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-clicksend\\/ninja-forms-clicksend.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/clicksend-sms\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=ClickSend+SMS+Add-ons+Docs\",\"version\":\"3.0.2\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"SMS Notifications\",\"slug\":\"sms-notifications\"},{\"name\":\"Automation and Integration\",\"slug\":\"automation-and-integration\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Twilio SMS\",\"image\":\"assets\\/img\\/add-ons\\/twilio-sms.png\",\"content\":\"Get instant SMS notifications with every new WordPress form submission. Respond to leads faster and make more personal connections!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/twilio\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Twilio+SMS+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-twilio\\/ninja-forms-twilio.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/twilio\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Twilio+SMS+Add-ons+Docs\",\"version\":\"3.0.2\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"SMS Notifications\",\"slug\":\"sms-notifications\"},{\"name\":\"Automation and Integration\",\"slug\":\"automation-and-integration\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Recurly\",\"image\":\"assets\\/img\\/add-ons\\/recurly.png\",\"content\":\"Subscription plans a part of your business model? Let your users subscribe from any WordPress form & make management easier with Recurly!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/recurly\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Recurly+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-recurly\\/ninja-forms-recurly.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/recurly\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Recurly+Add-ons+Docs\",\"version\":\"3.0.7\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Accept Payments\",\"slug\":\"accept-payments\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Save Progress\",\"image\":\"assets\\/img\\/add-ons\\/save-progress.png\",\"content\":\"Let your users save their work and reload it all when they have time to return. Don\'t lose out on valuable submissions for longer forms!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/save-progress\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Save+Progress+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-save-progress\\/ninja-forms-save-progress.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/save-progress\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Save+Progress+Add-ons+Docs\",\"version\":\"3.0.29\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Advanced Functionality\",\"slug\":\"advanced-functionality\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Advanced Form Features\",\"slug\":\"advanced-form-features\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"EmailOctopus\",\"image\":\"assets\\/img\\/add-ons\\/emailoctopus.png\",\"content\":\"Pair WordPress\' best drag and drop form builder with your EmailOctopus account for incredibly effective signup forms. Easy, complete integration.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/emailoctopus\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=EmailOctopus+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-emailoctopus\\/ninja-forms-emailoctopus.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/emailoctopus\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=EmailOctopus+Add-ons+Docs\",\"version\":\"3.0.2\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Pipeline CRM\",\"image\":\"assets\\/img\\/add-ons\\/pipelinedeals-crm.png\",\"content\":\"Complete, effortless integration with Pipeline CRM. Increase the flow of leads into your sales pipeline with upgraded lead generation forms!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/pipelinedeals-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Pipeline+CRM+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-zoho-crm\\/zoho-integration.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/pipelinedeals-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Pipeline+CRM+Add-ons+Docs\",\"version\":\"3.0.2\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"CRMs\",\"slug\":\"crms\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Kit\",\"image\":\"assets\\/img\\/add-ons\\/convertkit.png\",\"content\":\"Connect WordPress to your Kit (formerly known as ConvertKit) account with completely customizable opt-in forms. Watch your audience & sales grow like never before!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/convertkit\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Kit+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-convertkit\\/ninja-forms-convertkit.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/convertkit\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Kit+Add-ons+Docs\",\"version\":\"3.1.2\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"OnePageCRM\",\"image\":\"assets\\/img\\/add-ons\\/onepage-crm.png\",\"content\":\"Integrate WordPress with OnePage CRM seamlessly through highly customizable WordPress forms. Make better conversions <em>your<\\/em> Next Action!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/onepage-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=OnePageCRM+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-onepage-crm\\/ninja-forms-onepage-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/onepage-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=OnePageCRM+Add-ons+Docs\",\"version\":\"3.0.5\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"CRMs\",\"slug\":\"crms\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"ActiveCampaign\",\"image\":\"assets\\/img\\/add-ons\\/active-campaign.png\",\"content\":\"Design custom forms that link perfectly to your ActiveCampaign account for the ultimate in marketing automation. Better leads begin here!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/activecampaign\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=ActiveCampaign+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-active-campaign\\/ninja-forms-active-campaign.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/activecampaign\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=ActiveCampaign+Add-ons+Docs\",\"version\":\"3.1.3\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Agency Membership\",\"image\":\"assets\\/img\\/add-ons\\/ninja-forms-membership-bundle-2.png\",\"content\":\"Get every single Ninja Forms add-ons, at an amazingly discounted price.\",\"link\":\"https:\\/\\/ninjaforms.com\\/documentation\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Agency+Membership+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"https:\\/\\/ninjaforms.com\\/documentation\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Agency+Membership+Add-ons+Docs\",\"version\":\"\",\"categories\":[{\"name\":\"Deprecated\",\"slug\":\"deprecated\"},{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"Personal Membership\",\"image\":\"assets\\/img\\/add-ons\\/individual-membership-2.png\",\"content\":\"Get our most popular add-ons at an amazingly discounted price. Perfect for the single site owner.\",\"link\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Personal+Membership+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Personal+Membership+Add-ons+Docs\",\"version\":\"\",\"categories\":[{\"name\":\"Deprecated\",\"slug\":\"deprecated\"},{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"Professional Membership\",\"image\":\"assets\\/img\\/add-ons\\/professional-membership-2.png\",\"content\":\"Get our 4 most popular add-ons at an amazingly discounted price. Perfect for your Do It Yourself business owner.\",\"link\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Professional+Membership+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Professional+Membership+Add-ons+Docs\",\"version\":\"\",\"categories\":[{\"name\":\"Deprecated\",\"slug\":\"deprecated\"},{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"HubSpot\",\"image\":\"assets\\/img\\/add-ons\\/hubspot-crm.png\",\"content\":\"Looking for an easier way to connect HubSpot with WordPress? Need more flexibility and features for your HubSpot forms? This is your answer.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/hubspot\\/ \\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=HubSpot+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-hubspot\\/ninja-forms-hubspot.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/hubspot\\/ \\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=HubSpot+Add-ons+Docs\",\"version\":\"3.0.10\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"CRMs\",\"slug\":\"crms\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Advanced Datepicker\",\"image\":\"assets\\/img\\/add-ons\\/advanced-datepicker.png\",\"content\":\"Let your users book dates and times for appointments and more directly from any WordPress form!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/advanced-datepicker\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Advanced+Datepicker+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-advanced-datepicker\\/ninja-forms-advanced-datepicker-3.2.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/advanced-datepicker\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Advanced+Datepicker+Add-ons+Docs\",\"version\":\"3.3.2\",\"categories\":[{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"},{\"name\":\"Advanced Functionality\",\"slug\":\"advanced-functionality\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Advanced Form Features\",\"slug\":\"advanced-form-features\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Authorize.net\",\"image\":\"assets\\/img\\/add-ons\\/authorize-net.png\",\"content\":\"Need a quick, simple way to connect WordPress to Authorize.net? The Authorize.net add-on is your ticket!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/authorize-net\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Authorize.net+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-authorize-net\\/ninja-forms-authorize-net.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/authorize-net\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Authorize.net+Add-ons+Docs\",\"version\":\"3.1.4\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Accept Payments\",\"slug\":\"accept-payments\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Plus Membership 2022\",\"image\":\"assets\\/img\\/add-ons\\/plus-membership.png\",\"content\":\"\",\"link\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Plus+Membership+2022+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Plus+Membership+2022+Add-ons+Docs\",\"version\":\"\",\"categories\":[{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"Pro Membership 2022\",\"image\":\"assets\\/img\\/add-ons\\/pro-membership.png\",\"content\":\"\",\"link\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Pro+Membership+2022+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Pro+Membership+2022+Add-ons+Docs\",\"version\":\"\",\"categories\":[{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"Elite Membership 2022\",\"image\":\"assets\\/img\\/add-ons\\/elite-membership.png\",\"content\":\"\",\"link\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Elite+Membership+2022+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Elite+Membership+2022+Add-ons+Docs\",\"version\":\"\",\"categories\":[{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"Scheduled Submissions Export\",\"image\":\"assets\\/img\\/add-ons\\/scheduled-submissions-export.png\",\"content\":\"Use Scheduled Submissions Export to set hourly, daily, or weekly exports of any WordPress form submissions to any email address(es)!\",\"link\":\" https:\\/\\/ninjaforms.com\\/extensions\\/scheduled-submissions-export\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Scheduled+Submissions+Export+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-scheduled-exports\\/ninja-forms-scheduled-exports.php\",\"docs\":\" https:\\/\\/ninjaforms.com\\/docs\\/scheduled-submissions-export\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Scheduled+Submissions+Export+Add-ons+Docs\",\"version\":\"3.0.3\",\"categories\":[{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Submissions Extended\",\"slug\":\"submissions-extended\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"CiviCRM\",\"image\":\"assets\\/img\\/add-ons\\/civicrm.png\",\"content\":\"Connect & update your CiviCRM account from any WordPress form with the Ninja Forms CiviCRM add-on. Easily add or update Contacts & Activities!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/civicrm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=CiviCRM+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-civicrm\\/ninja-forms-civicrm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/civicrm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=CiviCRM+Add-ons+Docs\",\"version\":\"3.0.2\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"CRMs\",\"slug\":\"crms\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"File Uploads\",\"image\":\"assets\\/img\\/add-ons\\/file-uploads.png\",\"content\":\"Add file upload fields to any WordPress form. Set allowed file sizes and types, upload directories, and save to Google Drive, WordPress, and more.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/file-uploads\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=File+Uploads+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-uploads\\/file-uploads.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/file-uploads\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=File+Uploads+Add-ons+Docs\",\"version\":\"3.3.22\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Basic 2022\",\"slug\":\"basic-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"},{\"name\":\"Advanced Functionality\",\"slug\":\"advanced-functionality\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Advanced Form Features\",\"slug\":\"advanced-form-features\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Layout and Styles\",\"image\":\"assets\\/img\\/add-ons\\/layout-styles.png\",\"content\":\"Edit form styles. Create two-column and multicolumn forms and easily adjust form layout. You don\'t need a designer \\u2014 just Layout and Styles! \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/layouts-and-styles\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Layout+and+Styles+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-style\\/ninja-forms-style.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/layouts-and-styles\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Layout+and+Styles+Add-ons+Docs\",\"version\":\"3.0.30\",\"categories\":[{\"name\":\"Look &amp; Feel\",\"slug\":\"look-feel\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Basic 2022\",\"slug\":\"basic-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"},{\"name\":\"Advanced Functionality\",\"slug\":\"advanced-functionality\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Advanced Form Features\",\"slug\":\"advanced-form-features\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Conditional Logic\",\"image\":\"assets\\/img\\/add-ons\\/conditional-logic.png\",\"content\":\"Conditional Logic forms change as they\'re filled out. Show and hide fields, modify lists, send emails to different recipients conditionally, and much more.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/conditional-logic\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Conditional+Logic+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-conditionals\\/conditionals.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/conditional-logic\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Conditional+Logic+Add-ons+Docs\",\"version\":\"3.1\",\"categories\":[{\"name\":\"Look &amp; Feel\",\"slug\":\"look-feel\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Basic 2022\",\"slug\":\"basic-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"},{\"name\":\"Advanced Functionality\",\"slug\":\"advanced-functionality\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Advanced Form Features\",\"slug\":\"advanced-form-features\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"PDF Form Submission\",\"image\":\"assets\\/img\\/add-ons\\/pdf-form-submission.png\",\"content\":\"Use PDF Form Submission to generate a PDF from any WordPress form submission. Create a fully customizable PDF from top to bottom!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/pdf\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=PDF+Form+Submission+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-pdf-submissions\\/nf-pdf-submissions.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/pdf\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=PDF+Form+Submission+Add-ons+Docs\",\"version\":\"3.2.4\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Submissions Extended\",\"slug\":\"submissions-extended\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Elite Membership\",\"image\":\"assets\\/img\\/add-ons\\/elite-membership-2.png\",\"content\":\"\",\"link\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Elite+Membership+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Elite+Membership+Add-ons+Docs\",\"version\":\"\",\"categories\":[{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"}]},{\"title\":\"Pro Membership\",\"image\":\"assets\\/img\\/add-ons\\/pro-membership-2.png\",\"content\":\"\",\"link\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Pro+Membership+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Pro+Membership+Add-ons+Docs\",\"version\":\"\",\"categories\":[{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"}]},{\"title\":\"Plus Membership\",\"image\":\"assets\\/img\\/add-ons\\/plus-membership-2.png\",\"content\":\"\",\"link\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Plus+Membership+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Plus+Membership+Add-ons+Docs\",\"version\":\"\",\"categories\":[{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"Legacy (Agency 2015 - Upgrade Only)\",\"image\":\"assets\\/img\\/add-ons\\/legacy-agency-2015-upgrade-only.png\",\"content\":\"\",\"link\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Legacy+(Agency+2015+-+Upgrade+Only)+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Legacy+(Agency+2015+-+Upgrade+Only)+Add-ons+Docs\",\"version\":\"\",\"categories\":[{\"name\":null,\"slug\":null}]},{\"title\":\"User Management\",\"image\":\"assets\\/img\\/add-ons\\/user-management.png\",\"content\":\"Use customizable form templates to allow users to register, log in, update their profiles, and assign roles to view or edit form submissions.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/user-management\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=User+Management+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-user-management\\/ninja-forms-user-management.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/user-management\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=User+Management+Add-ons+Docs\",\"version\":\"3.2.2\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Advanced Functionality\",\"slug\":\"advanced-functionality\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Advanced Form Features\",\"slug\":\"advanced-form-features\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Mailchimp\",\"image\":\"assets\\/img\\/add-ons\\/mailchimp.png\",\"content\":\"Take your email marketing to the next level when you add a Mailchimp signup form to WordPress! \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/mailchimp\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Mailchimp+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-mail-chimp\\/ninja-forms-mail-chimp.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/mailchimp\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Mailchimp+Add-ons+Docs\",\"version\":\"3.3.6\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Stripe\",\"image\":\"assets\\/img\\/add-ons\\/stripe.png\",\"content\":\"Use Stripe Checkout forms to accept one-time and recurring Stripe payments through your WordPress from Apple Pay, credit cards, Google Pay, and more.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/stripe\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Stripe+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-stripe\\/ninja-forms-stripe.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/stripe\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Stripe+Add-ons+Docs\",\"version\":\"3.2.8\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Accept Payments\",\"slug\":\"accept-payments\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Excel Export\",\"image\":\"assets\\/img\\/add-ons\\/excel-export.png\",\"content\":\"Exporting form submissions into Excel is smooth and simple with Excel Export. Choose the fields you want and export your data to the reliable Excel spreadsheet file format.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/excel-export\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Excel+Export+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-excel-export\\/ninja-forms-excel-export.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/excel-export\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Excel+Export+Add-ons+Docs\",\"version\":\"3.3.5\",\"categories\":[{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Submissions Extended\",\"slug\":\"submissions-extended\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"PayPal\",\"image\":\"assets\\/img\\/add-ons\\/paypal-checkout.png\",\"content\":\"Easily accept payments in WordPress by adding a PayPal button widget to your website!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/paypal-checkout\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=PayPal+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-paypal\\/ninja-forms-paypal.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/paypal-checkout\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=PayPal+Add-ons+Docs\",\"version\":\"3.1.1\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Accept Payments\",\"slug\":\"accept-payments\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]}]','off'),(209,'anh_notices','a:2:{s:6:\"update\";a:0:{}s:5:\"error\";a:0:{}}','yes'),(210,'et_bfb_settings','a:1:{s:10:\"enable_bfb\";s:2:\"on\";}','yes'),(211,'nf_email_send_count','0','yes'),(212,'nf_email_with_attachment_count','0','yes'),(213,'nf_email_to_count','0','yes'),(214,'nf_email_to_max','0','yes'),(215,'nf_email_cc_count','0','yes'),(216,'nf_email_cc_max','0','yes'),(217,'nf_email_bcc_count','0','yes'),(218,'nf_email_bcc_max','0','yes'),(219,'nf_email_recipient_max','0','yes'),(220,'nf_email_attachment_count','0','yes'),(221,'nf_email_attachment_filesize_count','0','yes'),(222,'nf_email_attachment_filesize_max','0','yes'),(223,'_oembed_filtered_10d2d7832869dcc943a08689a31cb09e','<figure class=\"wp-embed-lazy\" data-js=\"lazyload-embed\" data-embed-provider=\"youtube\"><a href=\"https://thelomad.com/getmad.today/wp-contentwww.youtube.com/watch?v=FkQuawiGWUw\" class=\"wp-embed-lazy__trigger\" data-js=\"lazyload-trigger\" title=\"Divi. The Ultimate WordPress Theme And Visual Page Builder\" data-embed-id=\"FkQuawiGWUw\"><img class=\"wp-embed-lazy__image lazyload\" src=\"/wp-content/themes/Divi/img/shims/16x9.png\" data-src=\"https://thelomad.com/getmad.today/wp-contenti.ytimg.com/vi/FkQuawiGWUw/maxresdefault.jpg\" alt=\"Divi. The Ultimate WordPress Theme And Visual Page Builder\" /><figcaption class=\"wp-embed-lazy__caption\"><i class=\"wp-embed-lazy__icon icon icon-play\"></i><span class=\"wp-embed-lazy__trigger-label\">Play Video</span><span class=\"wp-embed-lazy__title\">Divi. The Ultimate WordPress Theme And Visual Page Builder</span></figcaption></a></figure>','yes'),(224,'et_google_api_settings','a:3:{s:7:\"api_key\";s:0:\"\";s:26:\"enqueue_google_maps_script\";s:2:\"on\";s:16:\"use_google_fonts\";s:2:\"on\";}','yes'),(231,'divi_ultimate_footer_plugin_footer_styling_settings','none','yes'),(232,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','off'),(233,'posttag_children','a:0:{}','yes'),(234,'nf_form_tel_sent','true','no'),(235,'ninja_forms_do_not_allow_tracking','1','yes'),(244,'nf_last_form_update','2022-02-08 18:34:15','no'),(245,'post_count','96','yes'),(246,'et_pb_role_settings','a:8:{s:13:\"administrator\";a:101:{s:13:\"theme_options\";s:2:\"on\";s:12:\"divi_library\";s:2:\"on\";s:10:\"ab_testing\";s:2:\"on\";s:16:\"theme_customizer\";s:2:\"on\";s:17:\"module_customizer\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";s:11:\"portability\";s:2:\"on\";s:10:\"add_module\";s:2:\"on\";s:11:\"edit_module\";s:2:\"on\";s:11:\"move_module\";s:2:\"on\";s:14:\"disable_module\";s:2:\"on\";s:11:\"lock_module\";s:2:\"on\";s:20:\"divi_builder_control\";s:2:\"on\";s:11:\"load_layout\";s:2:\"on\";s:18:\"use_visual_builder\";s:2:\"on\";s:23:\"custom_fonts_management\";s:2:\"on\";s:34:\"read_dynamic_content_custom_fields\";s:2:\"on\";s:12:\"save_library\";s:2:\"on\";s:11:\"add_library\";s:2:\"on\";s:19:\"edit_global_library\";s:2:\"on\";s:16:\"general_settings\";s:2:\"on\";s:17:\"advanced_settings\";s:2:\"on\";s:19:\"custom_css_settings\";s:2:\"on\";s:11:\"edit_colors\";s:2:\"on\";s:12:\"edit_content\";s:2:\"on\";s:10:\"edit_fonts\";s:2:\"on\";s:12:\"edit_buttons\";s:2:\"on\";s:11:\"edit_layout\";s:2:\"on\";s:12:\"edit_borders\";s:2:\"on\";s:18:\"edit_configuration\";s:2:\"on\";s:15:\"et_pb_accordion\";s:2:\"on\";s:11:\"et_pb_audio\";s:2:\"on\";s:14:\"et_pb_counters\";s:2:\"on\";s:9:\"fl_people\";s:2:\"on\";s:10:\"et_pb_blog\";s:2:\"on\";s:11:\"et_pb_blurb\";s:2:\"on\";s:12:\"et_pb_button\";s:2:\"on\";s:9:\"et_pb_cta\";s:2:\"on\";s:20:\"et_pb_circle_counter\";s:2:\"on\";s:10:\"et_pb_code\";s:2:\"on\";s:14:\"et_pb_comments\";s:3:\"off\";s:18:\"et_pb_contact_form\";s:3:\"off\";s:21:\"et_pb_countdown_timer\";s:2:\"on\";s:20:\"et_pb_blurb_extended\";s:2:\"on\";s:36:\"et_pb_dcsbcm_divi_breadcrumbs_module\";s:2:\"on\";s:13:\"et_pb_divider\";s:2:\"on\";s:25:\"et_pb_fullwidth_dwd_popup\";s:2:\"on\";s:12:\"et_pb_signup\";s:3:\"off\";s:26:\"et_pb_filterable_portfolio\";s:3:\"off\";s:20:\"et_pb_fullwidth_code\";s:2:\"on\";s:22:\"et_pb_fullwidth_header\";s:2:\"on\";s:31:\"et_pb_fullwidth_header_extended\";s:2:\"on\";s:21:\"et_pb_fullwidth_image\";s:2:\"on\";s:19:\"et_pb_fullwidth_map\";s:3:\"off\";s:28:\"et_pb_map_fullwidth_extended\";s:3:\"off\";s:20:\"et_pb_fullwidth_menu\";s:2:\"on\";s:25:\"et_pb_fullwidth_portfolio\";s:2:\"on\";s:27:\"et_pb_fullwidth_post_slider\";s:2:\"on\";s:26:\"et_pb_fullwidth_post_title\";s:2:\"on\";s:22:\"et_pb_fullwidth_slider\";s:2:\"on\";s:19:\"et_pb_text_extender\";s:2:\"on\";s:13:\"et_pb_gallery\";s:2:\"on\";s:11:\"et_pb_image\";s:2:\"on\";s:11:\"et_pb_login\";s:2:\"on\";s:9:\"et_pb_map\";s:3:\"off\";s:18:\"et_pb_map_extended\";s:3:\"off\";s:15:\"et_pb_mhmm_menu\";s:2:\"on\";s:22:\"et_pb_mhmm_inline_menu\";s:2:\"on\";s:22:\"et_pb_mhmm_menu_layout\";s:2:\"on\";s:15:\"divi_ninja_form\";s:2:\"on\";s:20:\"et_pb_number_counter\";s:2:\"on\";s:17:\"et_pb_team_member\";s:2:\"on\";s:16:\"fl_people_single\";s:2:\"on\";s:15:\"et_pb_portfolio\";s:3:\"off\";s:14:\"et_pb_post_nav\";s:2:\"on\";s:17:\"et_pb_post_slider\";s:2:\"on\";s:16:\"et_pb_post_title\";s:2:\"on\";s:20:\"et_pb_pricing_tables\";s:2:\"on\";s:12:\"et_pb_search\";s:2:\"on\";s:10:\"et_pb_shop\";s:3:\"off\";s:13:\"et_pb_sidebar\";s:2:\"on\";s:12:\"et_pb_slider\";s:2:\"on\";s:25:\"et_pb_social_media_follow\";s:2:\"on\";s:19:\"et_pb_stop_stacking\";s:2:\"on\";s:10:\"et_pb_tabs\";s:2:\"on\";s:17:\"et_pb_testimonial\";s:2:\"on\";s:10:\"et_pb_text\";s:2:\"on\";s:12:\"et_pb_toggle\";s:2:\"on\";s:11:\"et_pb_video\";s:2:\"on\";s:18:\"et_pb_video_slider\";s:2:\"on\";s:17:\"et_support_center\";s:2:\"on\";s:24:\"et_support_center_system\";s:2:\"on\";s:31:\"et_support_center_remote_access\";s:2:\"on\";s:31:\"et_support_center_documentation\";s:2:\"on\";s:27:\"et_support_center_safe_mode\";s:2:\"on\";s:22:\"et_support_center_logs\";s:2:\"on\";s:24:\"et_divi_mods_portability\";s:2:\"on\";s:18:\"epanel_portability\";s:2:\"on\";s:23:\"et_pb_roles_portability\";s:2:\"on\";s:30:\"et_builder_layouts_portability\";s:2:\"on\";s:22:\"et_builder_portability\";s:2:\"on\";}s:6:\"editor\";a:98:{s:12:\"divi_library\";s:3:\"off\";s:10:\"ab_testing\";s:3:\"off\";s:12:\"page_options\";s:3:\"off\";s:11:\"portability\";s:3:\"off\";s:10:\"add_module\";s:3:\"off\";s:11:\"edit_module\";s:3:\"off\";s:11:\"move_module\";s:3:\"off\";s:14:\"disable_module\";s:3:\"off\";s:11:\"lock_module\";s:3:\"off\";s:20:\"divi_builder_control\";s:3:\"off\";s:11:\"load_layout\";s:3:\"off\";s:18:\"use_visual_builder\";s:3:\"off\";s:23:\"custom_fonts_management\";s:3:\"off\";s:34:\"read_dynamic_content_custom_fields\";s:3:\"off\";s:12:\"save_library\";s:3:\"off\";s:11:\"add_library\";s:3:\"off\";s:19:\"edit_global_library\";s:3:\"off\";s:16:\"general_settings\";s:3:\"off\";s:17:\"advanced_settings\";s:3:\"off\";s:19:\"custom_css_settings\";s:3:\"off\";s:11:\"edit_colors\";s:3:\"off\";s:12:\"edit_content\";s:3:\"off\";s:10:\"edit_fonts\";s:3:\"off\";s:12:\"edit_buttons\";s:3:\"off\";s:11:\"edit_layout\";s:3:\"off\";s:12:\"edit_borders\";s:2:\"on\";s:18:\"edit_configuration\";s:3:\"off\";s:15:\"et_pb_accordion\";s:3:\"off\";s:11:\"et_pb_audio\";s:3:\"off\";s:14:\"et_pb_counters\";s:3:\"off\";s:9:\"fl_people\";s:3:\"off\";s:10:\"et_pb_blog\";s:3:\"off\";s:11:\"et_pb_blurb\";s:3:\"off\";s:12:\"et_pb_button\";s:3:\"off\";s:9:\"et_pb_cta\";s:3:\"off\";s:20:\"et_pb_circle_counter\";s:3:\"off\";s:10:\"et_pb_code\";s:3:\"off\";s:14:\"et_pb_comments\";s:3:\"off\";s:18:\"et_pb_contact_form\";s:3:\"off\";s:21:\"et_pb_countdown_timer\";s:3:\"off\";s:20:\"et_pb_blurb_extended\";s:3:\"off\";s:36:\"et_pb_dcsbcm_divi_breadcrumbs_module\";s:3:\"off\";s:13:\"et_pb_divider\";s:3:\"off\";s:25:\"et_pb_fullwidth_dwd_popup\";s:3:\"off\";s:12:\"et_pb_signup\";s:3:\"off\";s:26:\"et_pb_filterable_portfolio\";s:3:\"off\";s:20:\"et_pb_fullwidth_code\";s:3:\"off\";s:22:\"et_pb_fullwidth_header\";s:3:\"off\";s:31:\"et_pb_fullwidth_header_extended\";s:3:\"off\";s:21:\"et_pb_fullwidth_image\";s:3:\"off\";s:19:\"et_pb_fullwidth_map\";s:3:\"off\";s:28:\"et_pb_map_fullwidth_extended\";s:3:\"off\";s:20:\"et_pb_fullwidth_menu\";s:3:\"off\";s:25:\"et_pb_fullwidth_portfolio\";s:3:\"off\";s:27:\"et_pb_fullwidth_post_slider\";s:3:\"off\";s:26:\"et_pb_fullwidth_post_title\";s:3:\"off\";s:22:\"et_pb_fullwidth_slider\";s:3:\"off\";s:19:\"et_pb_text_extender\";s:3:\"off\";s:13:\"et_pb_gallery\";s:3:\"off\";s:11:\"et_pb_image\";s:3:\"off\";s:11:\"et_pb_login\";s:3:\"off\";s:9:\"et_pb_map\";s:3:\"off\";s:18:\"et_pb_map_extended\";s:3:\"off\";s:15:\"et_pb_mhmm_menu\";s:3:\"off\";s:22:\"et_pb_mhmm_inline_menu\";s:3:\"off\";s:22:\"et_pb_mhmm_menu_layout\";s:3:\"off\";s:15:\"divi_ninja_form\";s:2:\"on\";s:20:\"et_pb_number_counter\";s:3:\"off\";s:17:\"et_pb_team_member\";s:3:\"off\";s:16:\"fl_people_single\";s:2:\"on\";s:15:\"et_pb_portfolio\";s:3:\"off\";s:14:\"et_pb_post_nav\";s:3:\"off\";s:17:\"et_pb_post_slider\";s:3:\"off\";s:16:\"et_pb_post_title\";s:3:\"off\";s:20:\"et_pb_pricing_tables\";s:3:\"off\";s:12:\"et_pb_search\";s:3:\"off\";s:10:\"et_pb_shop\";s:3:\"off\";s:13:\"et_pb_sidebar\";s:3:\"off\";s:12:\"et_pb_slider\";s:3:\"off\";s:25:\"et_pb_social_media_follow\";s:3:\"off\";s:19:\"et_pb_stop_stacking\";s:3:\"off\";s:10:\"et_pb_tabs\";s:3:\"off\";s:17:\"et_pb_testimonial\";s:3:\"off\";s:10:\"et_pb_text\";s:3:\"off\";s:12:\"et_pb_toggle\";s:3:\"off\";s:11:\"et_pb_video\";s:3:\"off\";s:18:\"et_pb_video_slider\";s:3:\"off\";s:17:\"et_support_center\";s:2:\"on\";s:24:\"et_support_center_system\";s:2:\"on\";s:31:\"et_support_center_remote_access\";s:2:\"on\";s:31:\"et_support_center_documentation\";s:2:\"on\";s:27:\"et_support_center_safe_mode\";s:2:\"on\";s:22:\"et_support_center_logs\";s:2:\"on\";s:24:\"et_divi_mods_portability\";s:3:\"off\";s:18:\"epanel_portability\";s:3:\"off\";s:23:\"et_pb_roles_portability\";s:3:\"off\";s:30:\"et_builder_layouts_portability\";s:3:\"off\";s:22:\"et_builder_portability\";s:3:\"off\";}s:6:\"author\";a:98:{s:12:\"divi_library\";s:3:\"off\";s:10:\"ab_testing\";s:3:\"off\";s:12:\"page_options\";s:3:\"off\";s:11:\"portability\";s:3:\"off\";s:10:\"add_module\";s:3:\"off\";s:11:\"edit_module\";s:3:\"off\";s:11:\"move_module\";s:3:\"off\";s:14:\"disable_module\";s:3:\"off\";s:11:\"lock_module\";s:3:\"off\";s:20:\"divi_builder_control\";s:3:\"off\";s:11:\"load_layout\";s:3:\"off\";s:18:\"use_visual_builder\";s:3:\"off\";s:23:\"custom_fonts_management\";s:3:\"off\";s:34:\"read_dynamic_content_custom_fields\";s:3:\"off\";s:12:\"save_library\";s:3:\"off\";s:11:\"add_library\";s:3:\"off\";s:19:\"edit_global_library\";s:3:\"off\";s:16:\"general_settings\";s:3:\"off\";s:17:\"advanced_settings\";s:3:\"off\";s:19:\"custom_css_settings\";s:3:\"off\";s:11:\"edit_colors\";s:3:\"off\";s:12:\"edit_content\";s:3:\"off\";s:10:\"edit_fonts\";s:3:\"off\";s:12:\"edit_buttons\";s:3:\"off\";s:11:\"edit_layout\";s:3:\"off\";s:12:\"edit_borders\";s:2:\"on\";s:18:\"edit_configuration\";s:3:\"off\";s:15:\"et_pb_accordion\";s:3:\"off\";s:11:\"et_pb_audio\";s:3:\"off\";s:14:\"et_pb_counters\";s:3:\"off\";s:9:\"fl_people\";s:3:\"off\";s:10:\"et_pb_blog\";s:3:\"off\";s:11:\"et_pb_blurb\";s:3:\"off\";s:12:\"et_pb_button\";s:3:\"off\";s:9:\"et_pb_cta\";s:3:\"off\";s:20:\"et_pb_circle_counter\";s:3:\"off\";s:10:\"et_pb_code\";s:3:\"off\";s:14:\"et_pb_comments\";s:3:\"off\";s:18:\"et_pb_contact_form\";s:3:\"off\";s:21:\"et_pb_countdown_timer\";s:3:\"off\";s:20:\"et_pb_blurb_extended\";s:3:\"off\";s:36:\"et_pb_dcsbcm_divi_breadcrumbs_module\";s:3:\"off\";s:13:\"et_pb_divider\";s:3:\"off\";s:25:\"et_pb_fullwidth_dwd_popup\";s:3:\"off\";s:12:\"et_pb_signup\";s:3:\"off\";s:26:\"et_pb_filterable_portfolio\";s:3:\"off\";s:20:\"et_pb_fullwidth_code\";s:3:\"off\";s:22:\"et_pb_fullwidth_header\";s:3:\"off\";s:31:\"et_pb_fullwidth_header_extended\";s:3:\"off\";s:21:\"et_pb_fullwidth_image\";s:3:\"off\";s:19:\"et_pb_fullwidth_map\";s:3:\"off\";s:28:\"et_pb_map_fullwidth_extended\";s:3:\"off\";s:20:\"et_pb_fullwidth_menu\";s:3:\"off\";s:25:\"et_pb_fullwidth_portfolio\";s:3:\"off\";s:27:\"et_pb_fullwidth_post_slider\";s:3:\"off\";s:26:\"et_pb_fullwidth_post_title\";s:3:\"off\";s:22:\"et_pb_fullwidth_slider\";s:3:\"off\";s:19:\"et_pb_text_extender\";s:3:\"off\";s:13:\"et_pb_gallery\";s:3:\"off\";s:11:\"et_pb_image\";s:3:\"off\";s:11:\"et_pb_login\";s:3:\"off\";s:9:\"et_pb_map\";s:3:\"off\";s:18:\"et_pb_map_extended\";s:3:\"off\";s:15:\"et_pb_mhmm_menu\";s:3:\"off\";s:22:\"et_pb_mhmm_inline_menu\";s:3:\"off\";s:22:\"et_pb_mhmm_menu_layout\";s:3:\"off\";s:15:\"divi_ninja_form\";s:2:\"on\";s:20:\"et_pb_number_counter\";s:3:\"off\";s:17:\"et_pb_team_member\";s:3:\"off\";s:16:\"fl_people_single\";s:2:\"on\";s:15:\"et_pb_portfolio\";s:3:\"off\";s:14:\"et_pb_post_nav\";s:3:\"off\";s:17:\"et_pb_post_slider\";s:3:\"off\";s:16:\"et_pb_post_title\";s:3:\"off\";s:20:\"et_pb_pricing_tables\";s:3:\"off\";s:12:\"et_pb_search\";s:3:\"off\";s:10:\"et_pb_shop\";s:3:\"off\";s:13:\"et_pb_sidebar\";s:3:\"off\";s:12:\"et_pb_slider\";s:3:\"off\";s:25:\"et_pb_social_media_follow\";s:3:\"off\";s:19:\"et_pb_stop_stacking\";s:3:\"off\";s:10:\"et_pb_tabs\";s:3:\"off\";s:17:\"et_pb_testimonial\";s:3:\"off\";s:10:\"et_pb_text\";s:3:\"off\";s:12:\"et_pb_toggle\";s:3:\"off\";s:11:\"et_pb_video\";s:3:\"off\";s:18:\"et_pb_video_slider\";s:3:\"off\";s:17:\"et_support_center\";s:2:\"on\";s:24:\"et_support_center_system\";s:2:\"on\";s:31:\"et_support_center_remote_access\";s:2:\"on\";s:31:\"et_support_center_documentation\";s:2:\"on\";s:27:\"et_support_center_safe_mode\";s:2:\"on\";s:22:\"et_support_center_logs\";s:2:\"on\";s:24:\"et_divi_mods_portability\";s:3:\"off\";s:18:\"epanel_portability\";s:3:\"off\";s:23:\"et_pb_roles_portability\";s:3:\"off\";s:30:\"et_builder_layouts_portability\";s:3:\"off\";s:22:\"et_builder_portability\";s:3:\"off\";}s:11:\"contributor\";a:98:{s:12:\"divi_library\";s:3:\"off\";s:10:\"ab_testing\";s:3:\"off\";s:12:\"page_options\";s:3:\"off\";s:11:\"portability\";s:3:\"off\";s:10:\"add_module\";s:3:\"off\";s:11:\"edit_module\";s:3:\"off\";s:11:\"move_module\";s:3:\"off\";s:14:\"disable_module\";s:3:\"off\";s:11:\"lock_module\";s:3:\"off\";s:20:\"divi_builder_control\";s:3:\"off\";s:11:\"load_layout\";s:3:\"off\";s:18:\"use_visual_builder\";s:3:\"off\";s:23:\"custom_fonts_management\";s:3:\"off\";s:34:\"read_dynamic_content_custom_fields\";s:3:\"off\";s:12:\"save_library\";s:3:\"off\";s:11:\"add_library\";s:3:\"off\";s:19:\"edit_global_library\";s:3:\"off\";s:16:\"general_settings\";s:3:\"off\";s:17:\"advanced_settings\";s:3:\"off\";s:19:\"custom_css_settings\";s:3:\"off\";s:11:\"edit_colors\";s:3:\"off\";s:12:\"edit_content\";s:3:\"off\";s:10:\"edit_fonts\";s:3:\"off\";s:12:\"edit_buttons\";s:3:\"off\";s:11:\"edit_layout\";s:3:\"off\";s:12:\"edit_borders\";s:2:\"on\";s:18:\"edit_configuration\";s:3:\"off\";s:15:\"et_pb_accordion\";s:3:\"off\";s:11:\"et_pb_audio\";s:3:\"off\";s:14:\"et_pb_counters\";s:3:\"off\";s:9:\"fl_people\";s:3:\"off\";s:10:\"et_pb_blog\";s:3:\"off\";s:11:\"et_pb_blurb\";s:3:\"off\";s:12:\"et_pb_button\";s:3:\"off\";s:9:\"et_pb_cta\";s:3:\"off\";s:20:\"et_pb_circle_counter\";s:3:\"off\";s:10:\"et_pb_code\";s:3:\"off\";s:14:\"et_pb_comments\";s:3:\"off\";s:18:\"et_pb_contact_form\";s:3:\"off\";s:21:\"et_pb_countdown_timer\";s:3:\"off\";s:20:\"et_pb_blurb_extended\";s:3:\"off\";s:36:\"et_pb_dcsbcm_divi_breadcrumbs_module\";s:3:\"off\";s:13:\"et_pb_divider\";s:3:\"off\";s:25:\"et_pb_fullwidth_dwd_popup\";s:3:\"off\";s:12:\"et_pb_signup\";s:3:\"off\";s:26:\"et_pb_filterable_portfolio\";s:3:\"off\";s:20:\"et_pb_fullwidth_code\";s:3:\"off\";s:22:\"et_pb_fullwidth_header\";s:3:\"off\";s:31:\"et_pb_fullwidth_header_extended\";s:3:\"off\";s:21:\"et_pb_fullwidth_image\";s:3:\"off\";s:19:\"et_pb_fullwidth_map\";s:3:\"off\";s:28:\"et_pb_map_fullwidth_extended\";s:3:\"off\";s:20:\"et_pb_fullwidth_menu\";s:3:\"off\";s:25:\"et_pb_fullwidth_portfolio\";s:3:\"off\";s:27:\"et_pb_fullwidth_post_slider\";s:3:\"off\";s:26:\"et_pb_fullwidth_post_title\";s:3:\"off\";s:22:\"et_pb_fullwidth_slider\";s:3:\"off\";s:19:\"et_pb_text_extender\";s:3:\"off\";s:13:\"et_pb_gallery\";s:3:\"off\";s:11:\"et_pb_image\";s:3:\"off\";s:11:\"et_pb_login\";s:3:\"off\";s:9:\"et_pb_map\";s:3:\"off\";s:18:\"et_pb_map_extended\";s:3:\"off\";s:15:\"et_pb_mhmm_menu\";s:3:\"off\";s:22:\"et_pb_mhmm_inline_menu\";s:3:\"off\";s:22:\"et_pb_mhmm_menu_layout\";s:3:\"off\";s:15:\"divi_ninja_form\";s:2:\"on\";s:20:\"et_pb_number_counter\";s:3:\"off\";s:17:\"et_pb_team_member\";s:3:\"off\";s:16:\"fl_people_single\";s:2:\"on\";s:15:\"et_pb_portfolio\";s:3:\"off\";s:14:\"et_pb_post_nav\";s:3:\"off\";s:17:\"et_pb_post_slider\";s:3:\"off\";s:16:\"et_pb_post_title\";s:3:\"off\";s:20:\"et_pb_pricing_tables\";s:3:\"off\";s:12:\"et_pb_search\";s:3:\"off\";s:10:\"et_pb_shop\";s:3:\"off\";s:13:\"et_pb_sidebar\";s:3:\"off\";s:12:\"et_pb_slider\";s:3:\"off\";s:25:\"et_pb_social_media_follow\";s:3:\"off\";s:19:\"et_pb_stop_stacking\";s:3:\"off\";s:10:\"et_pb_tabs\";s:3:\"off\";s:17:\"et_pb_testimonial\";s:3:\"off\";s:10:\"et_pb_text\";s:3:\"off\";s:12:\"et_pb_toggle\";s:3:\"off\";s:11:\"et_pb_video\";s:3:\"off\";s:18:\"et_pb_video_slider\";s:3:\"off\";s:17:\"et_support_center\";s:2:\"on\";s:24:\"et_support_center_system\";s:2:\"on\";s:31:\"et_support_center_remote_access\";s:2:\"on\";s:31:\"et_support_center_documentation\";s:2:\"on\";s:27:\"et_support_center_safe_mode\";s:2:\"on\";s:22:\"et_support_center_logs\";s:2:\"on\";s:24:\"et_divi_mods_portability\";s:3:\"off\";s:18:\"epanel_portability\";s:3:\"off\";s:23:\"et_pb_roles_portability\";s:3:\"off\";s:30:\"et_builder_layouts_portability\";s:3:\"off\";s:22:\"et_builder_portability\";s:3:\"off\";}s:17:\"advanced-customer\";a:98:{s:12:\"divi_library\";s:2:\"on\";s:10:\"ab_testing\";s:3:\"off\";s:12:\"page_options\";s:2:\"on\";s:11:\"portability\";s:2:\"on\";s:10:\"add_module\";s:2:\"on\";s:11:\"edit_module\";s:2:\"on\";s:11:\"move_module\";s:2:\"on\";s:14:\"disable_module\";s:2:\"on\";s:11:\"lock_module\";s:2:\"on\";s:20:\"divi_builder_control\";s:2:\"on\";s:11:\"load_layout\";s:2:\"on\";s:18:\"use_visual_builder\";s:2:\"on\";s:23:\"custom_fonts_management\";s:2:\"on\";s:34:\"read_dynamic_content_custom_fields\";s:3:\"off\";s:12:\"save_library\";s:2:\"on\";s:11:\"add_library\";s:2:\"on\";s:19:\"edit_global_library\";s:2:\"on\";s:16:\"general_settings\";s:2:\"on\";s:17:\"advanced_settings\";s:2:\"on\";s:19:\"custom_css_settings\";s:2:\"on\";s:11:\"edit_colors\";s:2:\"on\";s:12:\"edit_content\";s:2:\"on\";s:10:\"edit_fonts\";s:2:\"on\";s:12:\"edit_buttons\";s:2:\"on\";s:11:\"edit_layout\";s:2:\"on\";s:12:\"edit_borders\";s:2:\"on\";s:18:\"edit_configuration\";s:2:\"on\";s:15:\"et_pb_accordion\";s:2:\"on\";s:11:\"et_pb_audio\";s:2:\"on\";s:14:\"et_pb_counters\";s:2:\"on\";s:9:\"fl_people\";s:2:\"on\";s:10:\"et_pb_blog\";s:2:\"on\";s:11:\"et_pb_blurb\";s:2:\"on\";s:12:\"et_pb_button\";s:2:\"on\";s:9:\"et_pb_cta\";s:2:\"on\";s:20:\"et_pb_circle_counter\";s:2:\"on\";s:10:\"et_pb_code\";s:2:\"on\";s:14:\"et_pb_comments\";s:3:\"off\";s:18:\"et_pb_contact_form\";s:3:\"off\";s:21:\"et_pb_countdown_timer\";s:2:\"on\";s:20:\"et_pb_blurb_extended\";s:2:\"on\";s:36:\"et_pb_dcsbcm_divi_breadcrumbs_module\";s:2:\"on\";s:13:\"et_pb_divider\";s:2:\"on\";s:25:\"et_pb_fullwidth_dwd_popup\";s:2:\"on\";s:12:\"et_pb_signup\";s:3:\"off\";s:26:\"et_pb_filterable_portfolio\";s:3:\"off\";s:20:\"et_pb_fullwidth_code\";s:2:\"on\";s:22:\"et_pb_fullwidth_header\";s:2:\"on\";s:31:\"et_pb_fullwidth_header_extended\";s:2:\"on\";s:21:\"et_pb_fullwidth_image\";s:2:\"on\";s:19:\"et_pb_fullwidth_map\";s:3:\"off\";s:28:\"et_pb_map_fullwidth_extended\";s:3:\"off\";s:20:\"et_pb_fullwidth_menu\";s:2:\"on\";s:25:\"et_pb_fullwidth_portfolio\";s:2:\"on\";s:27:\"et_pb_fullwidth_post_slider\";s:2:\"on\";s:26:\"et_pb_fullwidth_post_title\";s:2:\"on\";s:22:\"et_pb_fullwidth_slider\";s:2:\"on\";s:19:\"et_pb_text_extender\";s:2:\"on\";s:13:\"et_pb_gallery\";s:2:\"on\";s:11:\"et_pb_image\";s:2:\"on\";s:11:\"et_pb_login\";s:2:\"on\";s:9:\"et_pb_map\";s:3:\"off\";s:18:\"et_pb_map_extended\";s:3:\"off\";s:15:\"et_pb_mhmm_menu\";s:2:\"on\";s:22:\"et_pb_mhmm_inline_menu\";s:2:\"on\";s:22:\"et_pb_mhmm_menu_layout\";s:2:\"on\";s:15:\"divi_ninja_form\";s:2:\"on\";s:20:\"et_pb_number_counter\";s:2:\"on\";s:17:\"et_pb_team_member\";s:2:\"on\";s:16:\"fl_people_single\";s:2:\"on\";s:15:\"et_pb_portfolio\";s:3:\"off\";s:14:\"et_pb_post_nav\";s:2:\"on\";s:17:\"et_pb_post_slider\";s:2:\"on\";s:16:\"et_pb_post_title\";s:2:\"on\";s:20:\"et_pb_pricing_tables\";s:2:\"on\";s:12:\"et_pb_search\";s:2:\"on\";s:10:\"et_pb_shop\";s:3:\"off\";s:13:\"et_pb_sidebar\";s:2:\"on\";s:12:\"et_pb_slider\";s:2:\"on\";s:25:\"et_pb_social_media_follow\";s:2:\"on\";s:19:\"et_pb_stop_stacking\";s:2:\"on\";s:10:\"et_pb_tabs\";s:2:\"on\";s:17:\"et_pb_testimonial\";s:2:\"on\";s:10:\"et_pb_text\";s:2:\"on\";s:12:\"et_pb_toggle\";s:2:\"on\";s:11:\"et_pb_video\";s:2:\"on\";s:18:\"et_pb_video_slider\";s:2:\"on\";s:17:\"et_support_center\";s:2:\"on\";s:24:\"et_support_center_system\";s:2:\"on\";s:31:\"et_support_center_remote_access\";s:2:\"on\";s:31:\"et_support_center_documentation\";s:2:\"on\";s:27:\"et_support_center_safe_mode\";s:2:\"on\";s:22:\"et_support_center_logs\";s:2:\"on\";s:24:\"et_divi_mods_portability\";s:3:\"off\";s:18:\"epanel_portability\";s:3:\"off\";s:23:\"et_pb_roles_portability\";s:3:\"off\";s:30:\"et_builder_layouts_portability\";s:3:\"off\";s:22:\"et_builder_portability\";s:3:\"off\";}s:17:\"copywriter-vendor\";a:98:{s:12:\"divi_library\";s:3:\"off\";s:10:\"ab_testing\";s:3:\"off\";s:12:\"page_options\";s:3:\"off\";s:11:\"portability\";s:3:\"off\";s:10:\"add_module\";s:3:\"off\";s:11:\"edit_module\";s:2:\"on\";s:11:\"move_module\";s:3:\"off\";s:14:\"disable_module\";s:3:\"off\";s:11:\"lock_module\";s:3:\"off\";s:20:\"divi_builder_control\";s:3:\"off\";s:11:\"load_layout\";s:3:\"off\";s:18:\"use_visual_builder\";s:2:\"on\";s:23:\"custom_fonts_management\";s:3:\"off\";s:34:\"read_dynamic_content_custom_fields\";s:3:\"off\";s:12:\"save_library\";s:3:\"off\";s:11:\"add_library\";s:3:\"off\";s:19:\"edit_global_library\";s:3:\"off\";s:16:\"general_settings\";s:2:\"on\";s:17:\"advanced_settings\";s:3:\"off\";s:19:\"custom_css_settings\";s:3:\"off\";s:11:\"edit_colors\";s:3:\"off\";s:12:\"edit_content\";s:2:\"on\";s:10:\"edit_fonts\";s:3:\"off\";s:12:\"edit_buttons\";s:3:\"off\";s:11:\"edit_layout\";s:3:\"off\";s:12:\"edit_borders\";s:2:\"on\";s:18:\"edit_configuration\";s:3:\"off\";s:15:\"et_pb_accordion\";s:2:\"on\";s:11:\"et_pb_audio\";s:2:\"on\";s:14:\"et_pb_counters\";s:2:\"on\";s:9:\"fl_people\";s:2:\"on\";s:10:\"et_pb_blog\";s:2:\"on\";s:11:\"et_pb_blurb\";s:2:\"on\";s:12:\"et_pb_button\";s:2:\"on\";s:9:\"et_pb_cta\";s:2:\"on\";s:20:\"et_pb_circle_counter\";s:2:\"on\";s:10:\"et_pb_code\";s:3:\"off\";s:14:\"et_pb_comments\";s:3:\"off\";s:18:\"et_pb_contact_form\";s:3:\"off\";s:21:\"et_pb_countdown_timer\";s:2:\"on\";s:20:\"et_pb_blurb_extended\";s:2:\"on\";s:36:\"et_pb_dcsbcm_divi_breadcrumbs_module\";s:2:\"on\";s:13:\"et_pb_divider\";s:2:\"on\";s:25:\"et_pb_fullwidth_dwd_popup\";s:2:\"on\";s:12:\"et_pb_signup\";s:3:\"off\";s:26:\"et_pb_filterable_portfolio\";s:3:\"off\";s:20:\"et_pb_fullwidth_code\";s:3:\"off\";s:22:\"et_pb_fullwidth_header\";s:2:\"on\";s:31:\"et_pb_fullwidth_header_extended\";s:2:\"on\";s:21:\"et_pb_fullwidth_image\";s:2:\"on\";s:19:\"et_pb_fullwidth_map\";s:3:\"off\";s:28:\"et_pb_map_fullwidth_extended\";s:3:\"off\";s:20:\"et_pb_fullwidth_menu\";s:2:\"on\";s:25:\"et_pb_fullwidth_portfolio\";s:2:\"on\";s:27:\"et_pb_fullwidth_post_slider\";s:2:\"on\";s:26:\"et_pb_fullwidth_post_title\";s:2:\"on\";s:22:\"et_pb_fullwidth_slider\";s:2:\"on\";s:19:\"et_pb_text_extender\";s:2:\"on\";s:13:\"et_pb_gallery\";s:2:\"on\";s:11:\"et_pb_image\";s:2:\"on\";s:11:\"et_pb_login\";s:2:\"on\";s:9:\"et_pb_map\";s:3:\"off\";s:18:\"et_pb_map_extended\";s:3:\"off\";s:15:\"et_pb_mhmm_menu\";s:2:\"on\";s:22:\"et_pb_mhmm_inline_menu\";s:2:\"on\";s:22:\"et_pb_mhmm_menu_layout\";s:2:\"on\";s:15:\"divi_ninja_form\";s:2:\"on\";s:20:\"et_pb_number_counter\";s:2:\"on\";s:17:\"et_pb_team_member\";s:2:\"on\";s:16:\"fl_people_single\";s:2:\"on\";s:15:\"et_pb_portfolio\";s:3:\"off\";s:14:\"et_pb_post_nav\";s:2:\"on\";s:17:\"et_pb_post_slider\";s:2:\"on\";s:16:\"et_pb_post_title\";s:2:\"on\";s:20:\"et_pb_pricing_tables\";s:2:\"on\";s:12:\"et_pb_search\";s:2:\"on\";s:10:\"et_pb_shop\";s:3:\"off\";s:13:\"et_pb_sidebar\";s:2:\"on\";s:12:\"et_pb_slider\";s:2:\"on\";s:25:\"et_pb_social_media_follow\";s:2:\"on\";s:19:\"et_pb_stop_stacking\";s:2:\"on\";s:10:\"et_pb_tabs\";s:2:\"on\";s:17:\"et_pb_testimonial\";s:2:\"on\";s:10:\"et_pb_text\";s:2:\"on\";s:12:\"et_pb_toggle\";s:2:\"on\";s:11:\"et_pb_video\";s:2:\"on\";s:18:\"et_pb_video_slider\";s:2:\"on\";s:17:\"et_support_center\";s:2:\"on\";s:24:\"et_support_center_system\";s:2:\"on\";s:31:\"et_support_center_remote_access\";s:2:\"on\";s:31:\"et_support_center_documentation\";s:2:\"on\";s:27:\"et_support_center_safe_mode\";s:2:\"on\";s:22:\"et_support_center_logs\";s:2:\"on\";s:24:\"et_divi_mods_portability\";s:3:\"off\";s:18:\"epanel_portability\";s:3:\"off\";s:23:\"et_pb_roles_portability\";s:3:\"off\";s:30:\"et_builder_layouts_portability\";s:3:\"off\";s:22:\"et_builder_portability\";s:3:\"off\";}s:8:\"customer\";a:98:{s:12:\"divi_library\";s:3:\"off\";s:10:\"ab_testing\";s:3:\"off\";s:12:\"page_options\";s:3:\"off\";s:11:\"portability\";s:3:\"off\";s:10:\"add_module\";s:3:\"off\";s:11:\"edit_module\";s:2:\"on\";s:11:\"move_module\";s:3:\"off\";s:14:\"disable_module\";s:3:\"off\";s:11:\"lock_module\";s:3:\"off\";s:20:\"divi_builder_control\";s:3:\"off\";s:11:\"load_layout\";s:3:\"off\";s:18:\"use_visual_builder\";s:2:\"on\";s:23:\"custom_fonts_management\";s:3:\"off\";s:34:\"read_dynamic_content_custom_fields\";s:3:\"off\";s:12:\"save_library\";s:3:\"off\";s:11:\"add_library\";s:3:\"off\";s:19:\"edit_global_library\";s:3:\"off\";s:16:\"general_settings\";s:2:\"on\";s:17:\"advanced_settings\";s:3:\"off\";s:19:\"custom_css_settings\";s:3:\"off\";s:11:\"edit_colors\";s:3:\"off\";s:12:\"edit_content\";s:2:\"on\";s:10:\"edit_fonts\";s:3:\"off\";s:12:\"edit_buttons\";s:3:\"off\";s:11:\"edit_layout\";s:3:\"off\";s:12:\"edit_borders\";s:2:\"on\";s:18:\"edit_configuration\";s:3:\"off\";s:15:\"et_pb_accordion\";s:2:\"on\";s:11:\"et_pb_audio\";s:2:\"on\";s:14:\"et_pb_counters\";s:2:\"on\";s:9:\"fl_people\";s:2:\"on\";s:10:\"et_pb_blog\";s:2:\"on\";s:11:\"et_pb_blurb\";s:2:\"on\";s:12:\"et_pb_button\";s:2:\"on\";s:9:\"et_pb_cta\";s:2:\"on\";s:20:\"et_pb_circle_counter\";s:2:\"on\";s:10:\"et_pb_code\";s:3:\"off\";s:14:\"et_pb_comments\";s:3:\"off\";s:18:\"et_pb_contact_form\";s:3:\"off\";s:21:\"et_pb_countdown_timer\";s:2:\"on\";s:20:\"et_pb_blurb_extended\";s:2:\"on\";s:36:\"et_pb_dcsbcm_divi_breadcrumbs_module\";s:2:\"on\";s:13:\"et_pb_divider\";s:2:\"on\";s:25:\"et_pb_fullwidth_dwd_popup\";s:2:\"on\";s:12:\"et_pb_signup\";s:3:\"off\";s:26:\"et_pb_filterable_portfolio\";s:3:\"off\";s:20:\"et_pb_fullwidth_code\";s:3:\"off\";s:22:\"et_pb_fullwidth_header\";s:2:\"on\";s:31:\"et_pb_fullwidth_header_extended\";s:2:\"on\";s:21:\"et_pb_fullwidth_image\";s:2:\"on\";s:19:\"et_pb_fullwidth_map\";s:3:\"off\";s:28:\"et_pb_map_fullwidth_extended\";s:3:\"off\";s:20:\"et_pb_fullwidth_menu\";s:2:\"on\";s:25:\"et_pb_fullwidth_portfolio\";s:2:\"on\";s:27:\"et_pb_fullwidth_post_slider\";s:2:\"on\";s:26:\"et_pb_fullwidth_post_title\";s:2:\"on\";s:22:\"et_pb_fullwidth_slider\";s:2:\"on\";s:19:\"et_pb_text_extender\";s:2:\"on\";s:13:\"et_pb_gallery\";s:2:\"on\";s:11:\"et_pb_image\";s:2:\"on\";s:11:\"et_pb_login\";s:2:\"on\";s:9:\"et_pb_map\";s:3:\"off\";s:18:\"et_pb_map_extended\";s:3:\"off\";s:15:\"et_pb_mhmm_menu\";s:2:\"on\";s:22:\"et_pb_mhmm_inline_menu\";s:2:\"on\";s:22:\"et_pb_mhmm_menu_layout\";s:2:\"on\";s:15:\"divi_ninja_form\";s:2:\"on\";s:20:\"et_pb_number_counter\";s:2:\"on\";s:17:\"et_pb_team_member\";s:2:\"on\";s:16:\"fl_people_single\";s:2:\"on\";s:15:\"et_pb_portfolio\";s:3:\"off\";s:14:\"et_pb_post_nav\";s:2:\"on\";s:17:\"et_pb_post_slider\";s:2:\"on\";s:16:\"et_pb_post_title\";s:2:\"on\";s:20:\"et_pb_pricing_tables\";s:2:\"on\";s:12:\"et_pb_search\";s:2:\"on\";s:10:\"et_pb_shop\";s:3:\"off\";s:13:\"et_pb_sidebar\";s:2:\"on\";s:12:\"et_pb_slider\";s:2:\"on\";s:25:\"et_pb_social_media_follow\";s:2:\"on\";s:19:\"et_pb_stop_stacking\";s:2:\"on\";s:10:\"et_pb_tabs\";s:2:\"on\";s:17:\"et_pb_testimonial\";s:2:\"on\";s:10:\"et_pb_text\";s:2:\"on\";s:12:\"et_pb_toggle\";s:2:\"on\";s:11:\"et_pb_video\";s:2:\"on\";s:18:\"et_pb_video_slider\";s:2:\"on\";s:17:\"et_support_center\";s:2:\"on\";s:24:\"et_support_center_system\";s:2:\"on\";s:31:\"et_support_center_remote_access\";s:2:\"on\";s:31:\"et_support_center_documentation\";s:2:\"on\";s:27:\"et_support_center_safe_mode\";s:2:\"on\";s:22:\"et_support_center_logs\";s:2:\"on\";s:24:\"et_divi_mods_portability\";s:3:\"off\";s:18:\"epanel_portability\";s:3:\"off\";s:23:\"et_pb_roles_portability\";s:3:\"off\";s:30:\"et_builder_layouts_portability\";s:3:\"off\";s:22:\"et_builder_portability\";s:3:\"off\";}s:13:\"design-vendor\";a:98:{s:12:\"divi_library\";s:2:\"on\";s:10:\"ab_testing\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";s:11:\"portability\";s:3:\"off\";s:10:\"add_module\";s:2:\"on\";s:11:\"edit_module\";s:2:\"on\";s:11:\"move_module\";s:2:\"on\";s:14:\"disable_module\";s:2:\"on\";s:11:\"lock_module\";s:2:\"on\";s:20:\"divi_builder_control\";s:2:\"on\";s:11:\"load_layout\";s:2:\"on\";s:18:\"use_visual_builder\";s:2:\"on\";s:23:\"custom_fonts_management\";s:2:\"on\";s:34:\"read_dynamic_content_custom_fields\";s:3:\"off\";s:12:\"save_library\";s:2:\"on\";s:11:\"add_library\";s:2:\"on\";s:19:\"edit_global_library\";s:2:\"on\";s:16:\"general_settings\";s:2:\"on\";s:17:\"advanced_settings\";s:2:\"on\";s:19:\"custom_css_settings\";s:2:\"on\";s:11:\"edit_colors\";s:2:\"on\";s:12:\"edit_content\";s:2:\"on\";s:10:\"edit_fonts\";s:2:\"on\";s:12:\"edit_buttons\";s:2:\"on\";s:11:\"edit_layout\";s:2:\"on\";s:12:\"edit_borders\";s:2:\"on\";s:18:\"edit_configuration\";s:2:\"on\";s:15:\"et_pb_accordion\";s:2:\"on\";s:11:\"et_pb_audio\";s:2:\"on\";s:14:\"et_pb_counters\";s:2:\"on\";s:9:\"fl_people\";s:2:\"on\";s:10:\"et_pb_blog\";s:2:\"on\";s:11:\"et_pb_blurb\";s:2:\"on\";s:12:\"et_pb_button\";s:2:\"on\";s:9:\"et_pb_cta\";s:2:\"on\";s:20:\"et_pb_circle_counter\";s:2:\"on\";s:10:\"et_pb_code\";s:2:\"on\";s:14:\"et_pb_comments\";s:3:\"off\";s:18:\"et_pb_contact_form\";s:3:\"off\";s:21:\"et_pb_countdown_timer\";s:2:\"on\";s:20:\"et_pb_blurb_extended\";s:2:\"on\";s:36:\"et_pb_dcsbcm_divi_breadcrumbs_module\";s:2:\"on\";s:13:\"et_pb_divider\";s:2:\"on\";s:25:\"et_pb_fullwidth_dwd_popup\";s:2:\"on\";s:12:\"et_pb_signup\";s:3:\"off\";s:26:\"et_pb_filterable_portfolio\";s:3:\"off\";s:20:\"et_pb_fullwidth_code\";s:2:\"on\";s:22:\"et_pb_fullwidth_header\";s:2:\"on\";s:31:\"et_pb_fullwidth_header_extended\";s:2:\"on\";s:21:\"et_pb_fullwidth_image\";s:2:\"on\";s:19:\"et_pb_fullwidth_map\";s:3:\"off\";s:28:\"et_pb_map_fullwidth_extended\";s:3:\"off\";s:20:\"et_pb_fullwidth_menu\";s:2:\"on\";s:25:\"et_pb_fullwidth_portfolio\";s:2:\"on\";s:27:\"et_pb_fullwidth_post_slider\";s:2:\"on\";s:26:\"et_pb_fullwidth_post_title\";s:2:\"on\";s:22:\"et_pb_fullwidth_slider\";s:2:\"on\";s:19:\"et_pb_text_extender\";s:2:\"on\";s:13:\"et_pb_gallery\";s:2:\"on\";s:11:\"et_pb_image\";s:2:\"on\";s:11:\"et_pb_login\";s:2:\"on\";s:9:\"et_pb_map\";s:3:\"off\";s:18:\"et_pb_map_extended\";s:3:\"off\";s:15:\"et_pb_mhmm_menu\";s:2:\"on\";s:22:\"et_pb_mhmm_inline_menu\";s:2:\"on\";s:22:\"et_pb_mhmm_menu_layout\";s:2:\"on\";s:15:\"divi_ninja_form\";s:2:\"on\";s:20:\"et_pb_number_counter\";s:2:\"on\";s:17:\"et_pb_team_member\";s:2:\"on\";s:16:\"fl_people_single\";s:2:\"on\";s:15:\"et_pb_portfolio\";s:3:\"off\";s:14:\"et_pb_post_nav\";s:2:\"on\";s:17:\"et_pb_post_slider\";s:2:\"on\";s:16:\"et_pb_post_title\";s:2:\"on\";s:20:\"et_pb_pricing_tables\";s:2:\"on\";s:12:\"et_pb_search\";s:2:\"on\";s:10:\"et_pb_shop\";s:3:\"off\";s:13:\"et_pb_sidebar\";s:2:\"on\";s:12:\"et_pb_slider\";s:2:\"on\";s:25:\"et_pb_social_media_follow\";s:2:\"on\";s:19:\"et_pb_stop_stacking\";s:2:\"on\";s:10:\"et_pb_tabs\";s:2:\"on\";s:17:\"et_pb_testimonial\";s:2:\"on\";s:10:\"et_pb_text\";s:2:\"on\";s:12:\"et_pb_toggle\";s:2:\"on\";s:11:\"et_pb_video\";s:2:\"on\";s:18:\"et_pb_video_slider\";s:2:\"on\";s:17:\"et_support_center\";s:2:\"on\";s:24:\"et_support_center_system\";s:2:\"on\";s:31:\"et_support_center_remote_access\";s:2:\"on\";s:31:\"et_support_center_documentation\";s:2:\"on\";s:27:\"et_support_center_safe_mode\";s:2:\"on\";s:22:\"et_support_center_logs\";s:2:\"on\";s:24:\"et_divi_mods_portability\";s:3:\"off\";s:18:\"epanel_portability\";s:3:\"off\";s:23:\"et_pb_roles_portability\";s:3:\"off\";s:30:\"et_builder_layouts_portability\";s:3:\"off\";s:22:\"et_builder_portability\";s:3:\"off\";}}','yes'),(247,'flum_api_url','https://thelomad.com/getmad.today/wp-contentflcr.fantasktic.com/api/','no'),(248,'flum_indexed','1','no'),(249,'flco_api_url','https://thelomad.com/getmad.today/wp-contentflcr.fantasktic.com/api','yes'),(250,'acf_pro_license','YToyOntzOjM6ImtleSI7czo3NjoiYjNKa1pYSmZhV1E5TVRNME1EZ3pmSFI1Y0dVOVpHVjJaV3h2Y0dWeWZHUmhkR1U5TWpBeE9DMHdOaTB5T0NBeE5qbzFNRG8wTUE9PSI7czozOiJ1cmwiO3M6ODA6Imh0dHBzOi8vbG9tYWQtdGVzdC5nZXRtYWQudG9kYXkvd3AtY29udGVudGltLXRlbXBsYXRlLmZpbmRsYXczLmZsc2l0ZWJ1aWxkZXIuY29tIjt9','yes'),(251,'db_upgraded','','on'),(252,'ninja_forms_zuul','56','no'),(253,'nf_active_promotions','{\"dashboard\":[{\"id\":\"sendwp-banner\",\"location\":\"dashboard\",\"content\":\"<span aria-label=\\\"SendWP. Getting WordPress email into an inbox shouldn\'t be that hard! Never miss another receipt, form submission, or any WordPress email ever again.\\\" style=\\\"cursor:pointer;width:800px;height:83px;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;background-image:url(\'https:\\/\\/thelomad.com/getmad.today\\/wp-content\\/plugins\\/ninja-forms\\/assets\\/img\\/promotions\\/dashboard-banner-sendwp.png\');display:block;\\\"><\\/span>\",\"type\":\"sendwp\",\"script\":\"\\n      setTimeout(function(){ \\/* Wait for services to init. *\\/\\n        var data = {\\n          width: 450,\\n          closeOnClick: \'body\',\\n          closeOnEsc: true,\\n          content: \'<p><h2>Frustrated that WordPress email isn\\u2019t being received?<\\/h2><p>Form submission notifications not hitting your inbox? Some of your visitors getting form feedback via email, others not? By default, your WordPress site sends emails through your web host, which can be unreliable. Your host has spent lots of time and money optimizing to serve your pages, not send your emails.<\\/p><h3>Sign up for SendWP today, and never deal with WordPress email issues again!<\\/h3><p>SendWP is an email service that removes your web host from the email equation.<\\/p><ul style=&quot;list-style-type:initial;margin-left: 20px;&quot;><li>Sends email through dedicated email service, increasing email deliverability.<\\/li><li>Keeps form submission emails out of spam by using a trusted email provider.<\\/li><li>On a shared web host? Don\\u2019t worry about emails being rejected because of blocked IP addresses.<\\/li><li><strong>$1 for the first month. $9\\/month after. Cancel anytime!<\\/strong><\\/li><\\/ul><\\/p><br \\/>\',\\n          btnPrimary: {\\n            text: \'Sign me up!\',\\n            callback: function() {\\n              var spinner = document.createElement(\'span\');\\n              spinner.classList.add(\'dashicons\', \'dashicons-update\', \'dashicons-update-spin\');\\n              var w = this.offsetWidth;\\n              this.innerHTML = spinner.outerHTML;\\n              this.style.width = w+\'px\';\\n              ninja_forms_sendwp_remote_install();\\n            }\\n          },\\n          btnSecondary: {\\n            text: \'Cancel\',\\n            callback: function() {\\n              sendwpModal.toggleModal(false);\\n            }\\n          }\\n        }\\n        var sendwpModal = new NinjaModal(data);\\n      }, 500);\\n    \"}]}','off'),(259,'divi_accessibility_options','a:13:{s:12:\"aria_support\";i:1;s:28:\"dropdown_keyboard_navigation\";i:1;s:10:\"fix_labels\";i:1;s:17:\"focusable_modules\";i:1;s:27:\"keyboard_navigation_outline\";i:1;s:13:\"outline_color\";s:7:\"#2ea3f2\";s:18:\"screen_reader_text\";i:1;s:20:\"skip_navigation_link\";i:1;s:17:\"aria_hidden_icons\";i:0;s:22:\"fix_duplicate_menu_ids\";i:1;s:7:\"tota11y\";i:1;s:14:\"developer_mode\";i:0;s:16:\"aria_mobile_menu\";i:1;}','yes'),(262,'et_support_center_setup_done','processed','yes'),(263,'admin_email_lifespan','1708782333','yes'),(290,'options_locked_site','0','no'),(291,'_options_locked_site','field_5b919e87ab902','no'),(635,'fl-admin-notice-option','a:72:{i:0;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:1;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:2;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:3;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:4;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:5;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:6;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:7;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:8;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:9;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:10;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:11;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:12;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:13;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:14;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:15;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:16;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:17;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:18;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:19;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:20;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:21;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:22;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:23;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:24;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:25;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:26;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:27;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:28;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:29;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:30;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:31;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:32;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:33;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:34;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:35;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:36;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:37;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:38;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:39;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:40;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:41;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:42;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:43;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:44;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:45;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:46;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:47;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:48;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:49;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:50;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:51;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:52;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:53;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:54;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:55;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:56;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:57;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:58;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:59;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:60;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:61;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:62;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:63;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:64;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:65;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:66;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:67;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:68;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:69;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:70;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}i:71;O:50:\"Tribe\\Project\\Util\\Admin_Notice\\Admin_Notice_Model\":7:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:18:\"upgrade.php access\";s:7:\"content\";s:114:\"You cannot access the page for Upgrade the Network. Contact one of the followings: paul.samuels@thomsonreuters.com\";s:9:\"was_shown\";b:0;s:17:\"for_network_admin\";b:1;s:14:\"for_blog_admin\";b:0;s:16:\"assigned_user_id\";i:0;}}','yes'),(2004,'options_enable_alttext_from_library','1','no'),(2005,'_options_enable_alttext_from_library','field_options-divi-alt-text.php','no'),(2025,'fbv_review','0','yes'),(2061,'widget_mo_oauth_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2092,'rewrite_rules','a:305:{s:25:\"blog/brainaddons-popup/?$\";s:37:\"index.php?post_type=brainaddons-popup\";s:55:\"blog/brainaddons-popup/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?post_type=brainaddons-popup&feed=$matches[1]\";s:50:\"blog/brainaddons-popup/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?post_type=brainaddons-popup&feed=$matches[1]\";s:42:\"blog/brainaddons-popup/page/([0-9]{1,})/?$\";s:55:\"index.php?post_type=brainaddons-popup&paged=$matches[1]\";s:10:\"project/?$\";s:27:\"index.php?post_type=project\";s:40:\"project/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:35:\"project/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:27:\"project/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=project&paged=$matches[1]\";s:29:\"^ninja-forms/([a-zA-Z0-9]+)/?\";s:36:\"index.php?nf_public_link=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:50:\"blog/brainaddons-popup/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:60:\"blog/brainaddons-popup/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:80:\"blog/brainaddons-popup/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:75:\"blog/brainaddons-popup/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:75:\"blog/brainaddons-popup/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:56:\"blog/brainaddons-popup/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:39:\"blog/brainaddons-popup/([^/]+)/embed/?$\";s:50:\"index.php?brainaddons-popup=$matches[1]&embed=true\";s:43:\"blog/brainaddons-popup/([^/]+)/trackback/?$\";s:44:\"index.php?brainaddons-popup=$matches[1]&tb=1\";s:63:\"blog/brainaddons-popup/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?brainaddons-popup=$matches[1]&feed=$matches[2]\";s:58:\"blog/brainaddons-popup/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?brainaddons-popup=$matches[1]&feed=$matches[2]\";s:51:\"blog/brainaddons-popup/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?brainaddons-popup=$matches[1]&paged=$matches[2]\";s:58:\"blog/brainaddons-popup/([^/]+)/comment-page-([0-9]{1,})/?$\";s:57:\"index.php?brainaddons-popup=$matches[1]&cpage=$matches[2]\";s:47:\"blog/brainaddons-popup/([^/]+)(?:/([0-9]+))?/?$\";s:56:\"index.php?brainaddons-popup=$matches[1]&page=$matches[2]\";s:39:\"blog/brainaddons-popup/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"blog/brainaddons-popup/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"blog/brainaddons-popup/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"blog/brainaddons-popup/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"blog/brainaddons-popup/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"blog/brainaddons-popup/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:52:\"blog/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:47:\"blog/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:28:\"blog/category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:40:\"blog/category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:22:\"blog/category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:49:\"blog/tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:44:\"blog/tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:25:\"blog/tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:37:\"blog/tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:19:\"blog/tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:50:\"blog/type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:45:\"blog/type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:26:\"blog/type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:38:\"blog/type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:20:\"blog/type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:61:\"blog/layout_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?layout_category=$matches[1]&feed=$matches[2]\";s:56:\"blog/layout_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?layout_category=$matches[1]&feed=$matches[2]\";s:37:\"blog/layout_category/([^/]+)/embed/?$\";s:48:\"index.php?layout_category=$matches[1]&embed=true\";s:49:\"blog/layout_category/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?layout_category=$matches[1]&paged=$matches[2]\";s:31:\"blog/layout_category/([^/]+)/?$\";s:37:\"index.php?layout_category=$matches[1]\";s:56:\"blog/layout_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?layout_tag=$matches[1]&feed=$matches[2]\";s:51:\"blog/layout_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?layout_tag=$matches[1]&feed=$matches[2]\";s:32:\"blog/layout_tag/([^/]+)/embed/?$\";s:43:\"index.php?layout_tag=$matches[1]&embed=true\";s:44:\"blog/layout_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?layout_tag=$matches[1]&paged=$matches[2]\";s:26:\"blog/layout_tag/([^/]+)/?$\";s:32:\"index.php?layout_tag=$matches[1]\";s:61:\"blog/et_tb_item_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?et_tb_item_type=$matches[1]&feed=$matches[2]\";s:56:\"blog/et_tb_item_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?et_tb_item_type=$matches[1]&feed=$matches[2]\";s:37:\"blog/et_tb_item_type/([^/]+)/embed/?$\";s:48:\"index.php?et_tb_item_type=$matches[1]&embed=true\";s:49:\"blog/et_tb_item_type/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?et_tb_item_type=$matches[1]&paged=$matches[2]\";s:31:\"blog/et_tb_item_type/([^/]+)/?$\";s:37:\"index.php?et_tb_item_type=$matches[1]\";s:43:\"blog/et_tb_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"blog/et_tb_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"blog/et_tb_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"blog/et_tb_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"blog/et_tb_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"blog/et_tb_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"blog/et_tb_item/([^/]+)/embed/?$\";s:58:\"index.php?post_type=et_tb_item&name=$matches[1]&embed=true\";s:36:\"blog/et_tb_item/([^/]+)/trackback/?$\";s:52:\"index.php?post_type=et_tb_item&name=$matches[1]&tb=1\";s:44:\"blog/et_tb_item/([^/]+)/page/?([0-9]{1,})/?$\";s:65:\"index.php?post_type=et_tb_item&name=$matches[1]&paged=$matches[2]\";s:51:\"blog/et_tb_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?post_type=et_tb_item&name=$matches[1]&cpage=$matches[2]\";s:40:\"blog/et_tb_item/([^/]+)(?:/([0-9]+))?/?$\";s:64:\"index.php?post_type=et_tb_item&name=$matches[1]&page=$matches[2]\";s:32:\"blog/et_tb_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"blog/et_tb_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"blog/et_tb_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"blog/et_tb_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"blog/et_tb_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"blog/et_tb_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"project/([^/]+)/embed/?$\";s:40:\"index.php?project=$matches[1]&embed=true\";s:28:\"project/([^/]+)/trackback/?$\";s:34:\"index.php?project=$matches[1]&tb=1\";s:48:\"project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:43:\"project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&cpage=$matches[2]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?project=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:62:\"blog/project_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:57:\"blog/project_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:38:\"blog/project_category/([^/]+)/embed/?$\";s:49:\"index.php?project_category=$matches[1]&embed=true\";s:50:\"blog/project_category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?project_category=$matches[1]&paged=$matches[2]\";s:32:\"blog/project_category/([^/]+)/?$\";s:38:\"index.php?project_category=$matches[1]\";s:57:\"blog/project_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:52:\"blog/project_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:33:\"blog/project_tag/([^/]+)/embed/?$\";s:44:\"index.php?project_tag=$matches[1]&embed=true\";s:45:\"blog/project_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?project_tag=$matches[1]&paged=$matches[2]\";s:27:\"blog/project_tag/([^/]+)/?$\";s:33:\"index.php?project_tag=$matches[1]\";s:39:\"blog/nf_sub/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"blog/nf_sub/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"blog/nf_sub/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"blog/nf_sub/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"blog/nf_sub/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"blog/nf_sub/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"blog/nf_sub/([^/]+)/embed/?$\";s:39:\"index.php?nf_sub=$matches[1]&embed=true\";s:32:\"blog/nf_sub/([^/]+)/trackback/?$\";s:33:\"index.php?nf_sub=$matches[1]&tb=1\";s:40:\"blog/nf_sub/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?nf_sub=$matches[1]&paged=$matches[2]\";s:47:\"blog/nf_sub/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?nf_sub=$matches[1]&cpage=$matches[2]\";s:36:\"blog/nf_sub/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?nf_sub=$matches[1]&page=$matches[2]\";s:28:\"blog/nf_sub/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"blog/nf_sub/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"blog/nf_sub/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"blog/nf_sub/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"blog/nf_sub/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"blog/nf_sub/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:49:\"blog/wp_stream_alerts/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:59:\"blog/wp_stream_alerts/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:79:\"blog/wp_stream_alerts/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:74:\"blog/wp_stream_alerts/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:74:\"blog/wp_stream_alerts/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:55:\"blog/wp_stream_alerts/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"blog/wp_stream_alerts/([^/]+)/embed/?$\";s:49:\"index.php?wp_stream_alerts=$matches[1]&embed=true\";s:42:\"blog/wp_stream_alerts/([^/]+)/trackback/?$\";s:43:\"index.php?wp_stream_alerts=$matches[1]&tb=1\";s:50:\"blog/wp_stream_alerts/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?wp_stream_alerts=$matches[1]&paged=$matches[2]\";s:57:\"blog/wp_stream_alerts/([^/]+)/comment-page-([0-9]{1,})/?$\";s:56:\"index.php?wp_stream_alerts=$matches[1]&cpage=$matches[2]\";s:46:\"blog/wp_stream_alerts/([^/]+)(?:/([0-9]+))?/?$\";s:55:\"index.php?wp_stream_alerts=$matches[1]&page=$matches[2]\";s:38:\"blog/wp_stream_alerts/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"blog/wp_stream_alerts/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"blog/wp_stream_alerts/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"blog/wp_stream_alerts/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"blog/wp_stream_alerts/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"blog/wp_stream_alerts/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:49:\"blog/et_theme_builder/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:59:\"blog/et_theme_builder/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:79:\"blog/et_theme_builder/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:74:\"blog/et_theme_builder/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:74:\"blog/et_theme_builder/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:55:\"blog/et_theme_builder/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"blog/et_theme_builder/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_theme_builder&name=$matches[1]&embed=true\";s:42:\"blog/et_theme_builder/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_theme_builder&name=$matches[1]&tb=1\";s:50:\"blog/et_theme_builder/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_theme_builder&name=$matches[1]&paged=$matches[2]\";s:57:\"blog/et_theme_builder/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_theme_builder&name=$matches[1]&cpage=$matches[2]\";s:46:\"blog/et_theme_builder/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_theme_builder&name=$matches[1]&page=$matches[2]\";s:38:\"blog/et_theme_builder/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"blog/et_theme_builder/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"blog/et_theme_builder/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"blog/et_theme_builder/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"blog/et_theme_builder/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"blog/et_theme_builder/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"blog/et_template/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"blog/et_template/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"blog/et_template/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"blog/et_template/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"blog/et_template/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"blog/et_template/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"blog/et_template/([^/]+)/embed/?$\";s:59:\"index.php?post_type=et_template&name=$matches[1]&embed=true\";s:37:\"blog/et_template/([^/]+)/trackback/?$\";s:53:\"index.php?post_type=et_template&name=$matches[1]&tb=1\";s:45:\"blog/et_template/([^/]+)/page/?([0-9]{1,})/?$\";s:66:\"index.php?post_type=et_template&name=$matches[1]&paged=$matches[2]\";s:52:\"blog/et_template/([^/]+)/comment-page-([0-9]{1,})/?$\";s:66:\"index.php?post_type=et_template&name=$matches[1]&cpage=$matches[2]\";s:41:\"blog/et_template/([^/]+)(?:/([0-9]+))?/?$\";s:65:\"index.php?post_type=et_template&name=$matches[1]&page=$matches[2]\";s:33:\"blog/et_template/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"blog/et_template/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"blog/et_template/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"blog/et_template/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"blog/et_template/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"blog/et_template/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:49:\"blog/et_header_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:59:\"blog/et_header_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:79:\"blog/et_header_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:74:\"blog/et_header_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:74:\"blog/et_header_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:55:\"blog/et_header_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"blog/et_header_layout/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_header_layout&name=$matches[1]&embed=true\";s:42:\"blog/et_header_layout/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_header_layout&name=$matches[1]&tb=1\";s:50:\"blog/et_header_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_header_layout&name=$matches[1]&paged=$matches[2]\";s:57:\"blog/et_header_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_header_layout&name=$matches[1]&cpage=$matches[2]\";s:46:\"blog/et_header_layout/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_header_layout&name=$matches[1]&page=$matches[2]\";s:38:\"blog/et_header_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"blog/et_header_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"blog/et_header_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"blog/et_header_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"blog/et_header_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"blog/et_header_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:47:\"blog/et_body_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"blog/et_body_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"blog/et_body_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"blog/et_body_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"blog/et_body_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"blog/et_body_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"blog/et_body_layout/([^/]+)/embed/?$\";s:62:\"index.php?post_type=et_body_layout&name=$matches[1]&embed=true\";s:40:\"blog/et_body_layout/([^/]+)/trackback/?$\";s:56:\"index.php?post_type=et_body_layout&name=$matches[1]&tb=1\";s:48:\"blog/et_body_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:69:\"index.php?post_type=et_body_layout&name=$matches[1]&paged=$matches[2]\";s:55:\"blog/et_body_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:69:\"index.php?post_type=et_body_layout&name=$matches[1]&cpage=$matches[2]\";s:44:\"blog/et_body_layout/([^/]+)(?:/([0-9]+))?/?$\";s:68:\"index.php?post_type=et_body_layout&name=$matches[1]&page=$matches[2]\";s:36:\"blog/et_body_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"blog/et_body_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"blog/et_body_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"blog/et_body_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"blog/et_body_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"blog/et_body_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:49:\"blog/et_footer_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:59:\"blog/et_footer_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:79:\"blog/et_footer_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:74:\"blog/et_footer_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:74:\"blog/et_footer_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:55:\"blog/et_footer_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"blog/et_footer_layout/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_footer_layout&name=$matches[1]&embed=true\";s:42:\"blog/et_footer_layout/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_footer_layout&name=$matches[1]&tb=1\";s:50:\"blog/et_footer_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_footer_layout&name=$matches[1]&paged=$matches[2]\";s:57:\"blog/et_footer_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_footer_layout&name=$matches[1]&cpage=$matches[2]\";s:46:\"blog/et_footer_layout/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_footer_layout&name=$matches[1]&page=$matches[2]\";s:38:\"blog/et_footer_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"blog/et_footer_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"blog/et_footer_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"blog/et_footer_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"blog/et_footer_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"blog/et_footer_layout/[^/]+/([^/]+)/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:12:\"sitemap\\.xml\";s:24:\"index.php??sitemap=index\";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=6&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:52:\"blog/author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:47:\"blog/author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:28:\"blog/author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:40:\"blog/author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:22:\"blog/author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:74:\"blog/([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:69:\"blog/([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:50:\"blog/([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:62:\"blog/([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:44:\"blog/([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:61:\"blog/([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:56:\"blog/([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:37:\"blog/([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:49:\"blog/([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:31:\"blog/([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:48:\"blog/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:43:\"blog/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:24:\"blog/([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:36:\"blog/([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:18:\"blog/([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:52:\"blog/[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:62:\"blog/[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:82:\"blog/[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:77:\"blog/[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:77:\"blog/[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:58:\"blog/[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"blog/([0-9]{4})/([0-9]{1,2})/([^/]+)/embed/?$\";s:75:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&embed=true\";s:49:\"blog/([0-9]{4})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:69:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&tb=1\";s:69:\"blog/([0-9]{4})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]\";s:64:\"blog/([0-9]{4})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]\";s:57:\"blog/([0-9]{4})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&paged=$matches[4]\";s:64:\"blog/([0-9]{4})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&cpage=$matches[4]\";s:53:\"blog/([0-9]{4})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&page=$matches[4]\";s:41:\"blog/[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"blog/[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"blog/[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"blog/[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"blog/[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"blog/[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:56:\"blog/([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:43:\"blog/([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(2098,'ninja-forms-views-secret','yCAmI3UvVPpsxj7tiECwQPbUPtVzuw9nCjxzt3yw','yes'),(2101,'_transient_ninja_forms_styles_plugin_styles','<style>\n\n        /* PLUGIN WIDE STYLES */\n    \n        .nf-form-content .nf-field-element .ninja-forms-field:not(select) {\n                                    color:#666666;\n                    }\n    </style>','yes'),(3147,'firm_meta_addresses','[{\"id\":56033,\"customerLevelType\":\"MAIN\",\"subLevelType\":\"MAIN\",\"sequenceNumber\":\"1\",\"line1\":\"636 N French Rd\",\"line2\":\"Suite 3\",\"line3\":null,\"line4\":null,\"line5\":null,\"cityText\":\"Amherst\",\"stateText\":\"NY\",\"postCodeText\":\"14228\",\"latitude\":\"43.0358760\",\"longitude\":\"-78.8008900\",\"country\":\"US\",\"primary\":true,\"checkvalue\":\"636 N French Rd\\r\\nSuite 3\\r\\nAmherst, NY 14228\"}]','yes'),(3148,'firm_meta_phones','[{\"phoneNumber\":\"+1-716-616-0111\",\"category\":\"R\",\"type\":\"Local\",\"addressId\":\"56033\",\"checkvalue\":\"+1-716-616-0111 (R)\",\"id\":97450},{\"phoneNumber\":\"+1-855-443-8623\",\"category\":\"R\",\"type\":\"Fax\",\"addressId\":\"56033\",\"checkvalue\":\"+1-855-443-8623 (R)\",\"id\":97451},{\"phoneNumber\":\"+1-716-312-1371\",\"category\":\"CT\",\"type\":\"Local\",\"addressId\":\"56033\",\"checkvalue\":\"+1-716-312-1371 (CT)\",\"id\":2370006}]','yes'),(3149,'firm_meta_emails','[{\"emailId\":63955,\"emailAddress\":\"mail@madwcdefense.com\",\"checkvalue\":\"mail@madwcdefense.com\",\"id\":63955}]','yes'),(3150,'firm_meta_names','[{\"firmNameId\":148766,\"firmName\":\"The Law Offices of Melissa A. Day, PLLC\",\"firmNameType\":\"LEGAL\",\"checkvalue\":\"The Law Offices of Melissa A. Day, PLLC-LEGAL\",\"id\":148766},{\"firmNameId\":148767,\"firmName\":\"The Law Offices of Melissa A. Day, PLLC\",\"firmNameType\":\"DISPLAY\",\"checkvalue\":\"The Law Offices of Melissa A. Day, PLLC-DISPLAY\",\"id\":148767},{\"firmNameId\":148768,\"firmName\":\"The Law Offices of Melissa A. Day, PLLC\",\"firmNameType\":\"SHORT\",\"checkvalue\":\"The Law Offices of Melissa A. Day, PLLC-SHORT\",\"id\":148768}]','yes'),(3151,'coportal_sync_results','a:4:{s:9:\"addresses\";a:2:{s:3:\"new\";a:0:{}s:7:\"deleted\";a:0:{}}s:6:\"phones\";a:2:{s:3:\"new\";a:0:{}s:7:\"deleted\";a:0:{}}s:6:\"emails\";a:2:{s:3:\"new\";a:0:{}s:7:\"deleted\";a:0:{}}s:5:\"names\";a:2:{s:3:\"new\";a:0:{}s:7:\"deleted\";a:0:{}}}','yes'),(3152,'coportal_sync_time','1628720386','yes'),(3153,'options_aliases_names_0_alias','1','no'),(3154,'_options_aliases_names_0_alias','field_59f77f304db91','no'),(3155,'options_aliases_names_0_value','148766','no'),(3156,'_options_aliases_names_0_value','field_59f77f3c4db92','no'),(3157,'options_aliases_names_1_alias','2','no'),(3158,'_options_aliases_names_1_alias','field_59f77f304db91','no'),(3159,'options_aliases_names_1_value','148767','no'),(3160,'_options_aliases_names_1_value','field_59f77f3c4db92','no'),(3161,'options_aliases_names_2_alias','3','no'),(3162,'_options_aliases_names_2_alias','field_59f77f304db91','no'),(3163,'options_aliases_names_2_value','148768','no'),(3164,'_options_aliases_names_2_value','field_59f77f3c4db92','no'),(3165,'options_aliases_names','3','no'),(3166,'_options_aliases_names','field_59f77f214db90','no'),(3167,'options_aliases_addresses_0_alias','1','no'),(3168,'_options_aliases_addresses_0_alias','field_59f7lsiejhf8234','no'),(3169,'options_aliases_addresses_0_value','56033','no'),(3170,'_options_aliases_addresses_0_value','field_595lsdifhw838','no'),(3171,'options_aliases_addresses','1','no'),(3172,'_options_aliases_addresses','field_59f7lksdf83jsh','no'),(3173,'options_aliases_phones','3','no'),(3174,'_options_aliases_phones','field_59wlksjdfow8439','no'),(3175,'options_aliases_emails_0_alias','1','no'),(3176,'_options_aliases_emails_0_alias','field_59asfefoiwe84734','no'),(3177,'options_aliases_emails_0_value','63955','no'),(3178,'_options_aliases_emails_0_value','field_59fffeefoe8823498f','no'),(3179,'options_aliases_emails','1','no'),(3180,'_options_aliases_emails','field_59sfwefo6362395jf','no'),(3181,'options_aliases_phones_0_alias','1','no'),(3182,'_options_aliases_phones_0_alias','field_59fwef239878231','no'),(3183,'options_aliases_phones_0_vanity_label','716-616-0111','no'),(3184,'_options_aliases_phones_0_vanity_label','field_57239lksjdflksdf','no'),(3185,'options_aliases_phones_0_value','97450','no'),(3186,'_options_aliases_phones_0_value','field_59sdfjelwif48858','no'),(3187,'options_aliases_phones_1_alias','2','no'),(3188,'_options_aliases_phones_1_alias','field_59fwef239878231','no'),(3189,'options_aliases_phones_1_vanity_label','855-443-8623','no'),(3190,'_options_aliases_phones_1_vanity_label','field_57239lksjdflksdf','no'),(3191,'options_aliases_phones_1_value','97451','no'),(3192,'_options_aliases_phones_1_value','field_59sdfjelwif48858','no'),(3197,'fbv_is_new_user','1','yes'),(3198,'fbv_first_time_active','1','yes'),(3200,'et_safe_mode_plugins_allowlist','a:8:{i:0;s:15:\"etdev/etdev.php\";i:1;s:15:\"bloom/bloom.php\";i:2;s:19:\"monarch/monarch.php\";i:3;s:29:\"divi-builder/divi-builder.php\";i:4;s:27:\"ari-adminer/ari-adminer.php\";i:5;s:31:\"query-monitor/query-monitor.php\";i:6;s:27:\"woocommerce/woocommerce.php\";i:7;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";}','yes'),(3201,'fbv_version','5.0.5','yes'),(3202,'https_detection_errors','a:0:{}','off'),(3203,'wpe-health-check-site-status-result','{\"good\":17,\"recommended\":4,\"critical\":4}','yes'),(3204,'tadv_version','5600','yes'),(3206,'finished_updating_comment_type','1','yes'),(3229,'category_children','a:0:{}','yes'),(3267,'et_monarch_options','a:170:{s:34:\"sharing_locations_manage_locations\";a:1:{i:0;s:6:\"inline\";}s:26:\"sharing_sidebar_icon_style\";s:4:\"flip\";s:26:\"sharing_sidebar_icon_shape\";s:9:\"rectangle\";s:35:\"sharing_sidebar_sidebar_orientation\";s:4:\"left\";s:25:\"sharing_sidebar_animation\";s:10:\"slideright\";s:22:\"sharing_sidebar_counts\";b:0;s:26:\"sharing_sidebar_counts_num\";i:0;s:21:\"sharing_sidebar_total\";b:0;s:27:\"sharing_sidebar_total_color\";s:4:\"dark\";s:27:\"sharing_sidebar_display_all\";b:0;s:23:\"sharing_sidebar_spacing\";b:0;s:22:\"sharing_sidebar_mobile\";b:0;s:29:\"sharing_sidebar_custom_colors\";b:0;s:24:\"sharing_sidebar_bg_color\";s:0:\"\";s:30:\"sharing_sidebar_bg_color_hover\";s:0:\"\";s:26:\"sharing_sidebar_icon_color\";s:0:\"\";s:32:\"sharing_sidebar_icon_color_hover\";s:0:\"\";s:26:\"sharing_sidebar_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:25:\"sharing_inline_icon_style\";s:5:\"slide\";s:25:\"sharing_inline_icon_shape\";s:7:\"rounded\";s:29:\"sharing_inline_icons_location\";s:5:\"below\";s:30:\"sharing_inline_icons_alignment\";s:4:\"left\";s:25:\"sharing_inline_col_number\";s:1:\"4\";s:21:\"sharing_inline_counts\";s:1:\"1\";s:25:\"sharing_inline_counts_num\";i:0;s:20:\"sharing_inline_total\";b:0;s:28:\"sharing_inline_network_names\";s:1:\"1\";s:26:\"sharing_inline_display_all\";b:0;s:26:\"sharing_inline_outer_color\";s:4:\"dark\";s:22:\"sharing_inline_spacing\";b:0;s:21:\"sharing_inline_mobile\";b:0;s:28:\"sharing_inline_custom_colors\";b:0;s:23:\"sharing_inline_bg_color\";s:0:\"\";s:29:\"sharing_inline_bg_color_hover\";s:0:\"\";s:25:\"sharing_inline_icon_color\";s:0:\"\";s:31:\"sharing_inline_icon_color_hover\";s:0:\"\";s:25:\"sharing_inline_post_types\";a:1:{i:0;s:4:\"post\";}s:24:\"sharing_popup_icon_style\";s:5:\"slide\";s:24:\"sharing_popup_icon_shape\";s:7:\"rounded\";s:24:\"sharing_popup_title_text\";s:10:\"Share This\";s:26:\"sharing_popup_message_text\";s:34:\"Share this post with your friends!\";s:29:\"sharing_popup_icons_alignment\";s:4:\"left\";s:24:\"sharing_popup_col_number\";s:1:\"3\";s:23:\"sharing_popup_animation\";s:6:\"fadein\";s:24:\"sharing_popup_auto_popup\";s:1:\"1\";s:25:\"sharing_popup_popup_delay\";i:20;s:26:\"sharing_popup_trigger_idle\";b:0;s:26:\"sharing_popup_idle_timeout\";i:15;s:28:\"sharing_popup_trigger_bottom\";b:0;s:29:\"sharing_popup_trigger_comment\";b:0;s:28:\"sharing_popup_scroll_trigger\";b:0;s:24:\"sharing_popup_scroll_pos\";i:50;s:30:\"sharing_popup_trigger_purchase\";b:0;s:21:\"sharing_popup_cookies\";b:0;s:29:\"sharing_popup_cookie_duration\";i:1;s:20:\"sharing_popup_counts\";s:1:\"1\";s:24:\"sharing_popup_counts_num\";i:0;s:19:\"sharing_popup_total\";b:0;s:27:\"sharing_popup_network_names\";s:1:\"1\";s:25:\"sharing_popup_display_all\";b:0;s:21:\"sharing_popup_spacing\";b:0;s:20:\"sharing_popup_mobile\";b:0;s:27:\"sharing_popup_custom_colors\";b:0;s:22:\"sharing_popup_bg_color\";s:0:\"\";s:28:\"sharing_popup_bg_color_hover\";s:0:\"\";s:24:\"sharing_popup_icon_color\";s:0:\"\";s:30:\"sharing_popup_icon_color_hover\";s:0:\"\";s:24:\"sharing_popup_post_types\";a:1:{i:0;s:4:\"post\";}s:24:\"sharing_flyin_icon_style\";s:5:\"slide\";s:24:\"sharing_flyin_icon_shape\";s:7:\"rounded\";s:24:\"sharing_flyin_title_text\";s:10:\"Share This\";s:26:\"sharing_flyin_message_text\";s:34:\"Share this post with your friends!\";s:28:\"sharing_flyin_icons_location\";s:12:\"bottom_right\";s:29:\"sharing_flyin_icons_alignment\";s:4:\"left\";s:24:\"sharing_flyin_col_number\";s:1:\"2\";s:23:\"sharing_flyin_animation\";s:7:\"slideup\";s:24:\"sharing_flyin_auto_popup\";b:0;s:25:\"sharing_flyin_popup_delay\";i:20;s:26:\"sharing_flyin_trigger_idle\";b:0;s:26:\"sharing_flyin_idle_timeout\";i:15;s:28:\"sharing_flyin_trigger_bottom\";s:1:\"1\";s:29:\"sharing_flyin_trigger_comment\";b:0;s:28:\"sharing_flyin_scroll_trigger\";b:0;s:24:\"sharing_flyin_scroll_pos\";i:50;s:30:\"sharing_flyin_trigger_purchase\";b:0;s:21:\"sharing_flyin_cookies\";b:0;s:29:\"sharing_flyin_cookie_duration\";i:1;s:20:\"sharing_flyin_counts\";b:0;s:24:\"sharing_flyin_counts_num\";i:0;s:19:\"sharing_flyin_total\";b:0;s:27:\"sharing_flyin_network_names\";s:1:\"1\";s:25:\"sharing_flyin_display_all\";b:0;s:21:\"sharing_flyin_spacing\";b:0;s:20:\"sharing_flyin_mobile\";b:0;s:27:\"sharing_flyin_custom_colors\";b:0;s:22:\"sharing_flyin_bg_color\";s:0:\"\";s:28:\"sharing_flyin_bg_color_hover\";s:0:\"\";s:24:\"sharing_flyin_icon_color\";s:0:\"\";s:30:\"sharing_flyin_icon_color_hover\";s:0:\"\";s:24:\"sharing_flyin_post_types\";a:1:{i:0;s:4:\"post\";}s:24:\"sharing_media_icon_style\";s:6:\"simple\";s:24:\"sharing_media_icon_shape\";s:7:\"rounded\";s:29:\"sharing_media_icons_alignment\";s:4:\"left\";s:24:\"sharing_media_col_number\";s:4:\"auto\";s:20:\"sharing_media_counts\";b:0;s:24:\"sharing_media_counts_num\";i:0;s:19:\"sharing_media_total\";b:0;s:27:\"sharing_media_network_names\";s:1:\"1\";s:25:\"sharing_media_display_all\";b:0;s:25:\"sharing_media_outer_color\";s:4:\"dark\";s:21:\"sharing_media_spacing\";b:0;s:20:\"sharing_media_mobile\";b:0;s:27:\"sharing_media_custom_colors\";b:0;s:22:\"sharing_media_bg_color\";s:0:\"\";s:28:\"sharing_media_bg_color_hover\";s:0:\"\";s:24:\"sharing_media_icon_color\";s:0:\"\";s:30:\"sharing_media_icon_color_hover\";s:0:\"\";s:24:\"sharing_media_post_types\";a:1:{i:0;s:4:\"post\";}s:26:\"follow_networks_new_window\";s:1:\"1\";s:23:\"follow_networks_use_api\";b:0;s:24:\"follow_networks_vimeo_id\";s:0:\"\";s:28:\"follow_networks_vimeo_secret\";s:0:\"\";s:27:\"follow_networks_linkedin_id\";s:0:\"\";s:31:\"follow_networks_linkedin_secret\";s:0:\"\";s:31:\"follow_networks_twitter_api_key\";s:0:\"\";s:34:\"follow_networks_twitter_api_secret\";s:0:\"\";s:29:\"follow_networks_twitter_token\";s:0:\"\";s:36:\"follow_networks_twitter_token_secret\";s:0:\"\";s:31:\"follow_networks_youtube_api_key\";s:0:\"\";s:24:\"follow_widget_icon_style\";s:5:\"slide\";s:24:\"follow_widget_icon_shape\";s:7:\"rounded\";s:28:\"follow_widget_icons_location\";s:3:\"top\";s:24:\"follow_widget_col_number\";s:1:\"2\";s:20:\"follow_widget_counts\";s:1:\"1\";s:24:\"follow_widget_counts_num\";i:0;s:19:\"follow_widget_total\";s:1:\"1\";s:27:\"follow_widget_network_names\";s:1:\"1\";s:25:\"follow_widget_outer_color\";s:4:\"dark\";s:21:\"follow_widget_spacing\";b:0;s:20:\"follow_widget_mobile\";b:0;s:27:\"follow_widget_custom_colors\";b:0;s:22:\"follow_widget_bg_color\";s:0:\"\";s:28:\"follow_widget_bg_color_hover\";s:0:\"\";s:24:\"follow_widget_icon_color\";s:0:\"\";s:30:\"follow_widget_icon_color_hover\";s:0:\"\";s:27:\"follow_shortcode_icon_style\";s:5:\"slide\";s:27:\"follow_shortcode_icon_shape\";s:7:\"rounded\";s:31:\"follow_shortcode_icons_location\";s:3:\"top\";s:27:\"follow_shortcode_col_number\";s:4:\"auto\";s:23:\"follow_shortcode_counts\";s:1:\"1\";s:27:\"follow_shortcode_counts_num\";i:0;s:22:\"follow_shortcode_total\";s:1:\"1\";s:30:\"follow_shortcode_network_names\";s:1:\"1\";s:28:\"follow_shortcode_outer_color\";s:4:\"dark\";s:24:\"follow_shortcode_spacing\";b:0;s:23:\"follow_shortcode_mobile\";b:0;s:30:\"follow_shortcode_custom_colors\";b:0;s:25:\"follow_shortcode_bg_color\";s:0:\"\";s:31:\"follow_shortcode_bg_color_hover\";s:0:\"\";s:27:\"follow_shortcode_icon_color\";s:0:\"\";s:33:\"follow_shortcode_icon_color_hover\";s:0:\"\";s:24:\"general_main_update_freq\";i:3;s:27:\"general_main_reset_postdata\";b:0;s:24:\"general_main_facebook_id\";s:0:\"\";s:28:\"general_main_facebook_secret\";s:0:\"\";s:35:\"general_main_facebook_instagram_api\";b:0;s:45:\"general_main_facebook_instagram_business_page\";s:0:\"\";s:32:\"general_main_facebook_legacy_api\";b:0;s:23:\"general_main_custom_css\";s:0:\"\";s:33:\"sharing_networks_networks_sorting\";a:3:{s:5:\"label\";a:3:{i:0;s:8:\"Facebook\";i:1;s:7:\"Twitter\";i:2;s:8:\"LinkedIn\";}s:5:\"class\";a:3:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:8:\"linkedin\";}s:8:\"username\";a:1:{i:1;s:0:\"\";}}}','yes'),(3268,'wpel-external-link-settings','a:18:{s:14:\"apply_settings\";s:1:\"1\";s:6:\"target\";s:6:\"_blank\";s:16:\"target_overwrite\";s:0:\"\";s:10:\"rel_follow\";s:0:\"\";s:20:\"rel_follow_overwrite\";s:0:\"\";s:12:\"rel_noopener\";s:1:\"1\";s:14:\"rel_noreferrer\";s:1:\"1\";s:12:\"rel_external\";i:0;s:13:\"rel_sponsored\";s:1:\"0\";s:7:\"rel_ugc\";s:1:\"0\";s:5:\"title\";s:7:\"{title}\";s:5:\"class\";s:0:\"\";s:9:\"icon_type\";s:0:\"\";s:10:\"icon_image\";s:1:\"1\";s:13:\"icon_dashicon\";s:0:\"\";s:16:\"icon_fontawesome\";s:0:\"\";s:13:\"icon_position\";s:5:\"right\";s:15:\"no_icon_for_img\";s:1:\"1\";}','yes'),(3269,'wpel-internal-link-settings','a:15:{s:14:\"apply_settings\";s:0:\"\";s:6:\"target\";s:0:\"\";s:16:\"target_overwrite\";s:0:\"\";s:10:\"rel_follow\";s:0:\"\";s:20:\"rel_follow_overwrite\";s:0:\"\";s:12:\"rel_noopener\";s:1:\"1\";s:14:\"rel_noreferrer\";s:1:\"1\";s:5:\"title\";s:7:\"{title}\";s:5:\"class\";s:0:\"\";s:9:\"icon_type\";s:0:\"\";s:10:\"icon_image\";s:1:\"1\";s:13:\"icon_dashicon\";s:0:\"\";s:16:\"icon_fontawesome\";s:0:\"\";s:13:\"icon_position\";s:5:\"right\";s:15:\"no_icon_for_img\";s:1:\"1\";}','yes'),(3270,'wpel-excluded-link-settings','a:15:{s:14:\"apply_settings\";s:0:\"\";s:6:\"target\";s:0:\"\";s:16:\"target_overwrite\";s:0:\"\";s:10:\"rel_follow\";s:0:\"\";s:20:\"rel_follow_overwrite\";s:0:\"\";s:12:\"rel_noopener\";s:1:\"1\";s:14:\"rel_noreferrer\";s:1:\"1\";s:5:\"title\";s:7:\"{title}\";s:5:\"class\";s:0:\"\";s:9:\"icon_type\";s:0:\"\";s:10:\"icon_image\";s:1:\"1\";s:13:\"icon_dashicon\";s:0:\"\";s:16:\"icon_fontawesome\";s:0:\"\";s:13:\"icon_position\";s:5:\"right\";s:15:\"no_icon_for_img\";s:1:\"1\";}','yes'),(3271,'wpel-exceptions-settings','a:12:{s:9:\"apply_all\";s:1:\"1\";s:18:\"apply_post_content\";s:1:\"1\";s:14:\"apply_comments\";s:1:\"1\";s:13:\"apply_widgets\";s:1:\"1\";s:13:\"skip_post_ids\";s:0:\"\";s:14:\"ignore_classes\";s:0:\"\";s:28:\"subdomains_as_internal_links\";s:0:\"\";s:12:\"include_urls\";s:0:\"\";s:12:\"exclude_urls\";s:0:\"\";s:26:\"excludes_as_internal_links\";s:0:\"\";s:18:\"ignore_script_tags\";s:1:\"1\";s:19:\"ignore_mailto_links\";s:1:\"1\";}','yes'),(3272,'wpel-admin-settings','a:1:{s:14:\"own_admin_menu\";s:1:\"1\";}','yes'),(3273,'Tribe\\Project\\Site_Init\\WP_External_Links-schema','1','yes'),(3285,'wpel-version','2.55','yes'),(3286,'wpel-first-install','1633365607','yes'),(3342,'Tribe\\Project\\Site_Init\\DIVI_Settings-schema','5','yes'),(3422,'wpe_cache_config','a:28:{s:20:\"sanitized_post_types\";a:4:{s:4:\"post\";s:4:\"post\";s:4:\"page\";s:4:\"page\";s:6:\"people\";s:6:\"people\";s:12:\"landing-page\";s:12:\"landing-page\";}s:28:\"sanitized_builtin_post_types\";a:2:{s:4:\"post\";s:4:\"post\";s:4:\"page\";s:4:\"page\";}s:21:\"smarter_cache_enabled\";s:1:\"0\";s:21:\"last_modified_enabled\";s:1:\"0\";s:27:\"wpe_ac_global_last_modified\";s:10:\"1262304000\";s:24:\"post_cache_expires_value\";s:2:\"-1\";s:24:\"page_cache_expires_value\";s:2:\"-1\";s:26:\"people_cache_expires_value\";s:2:\"-1\";s:32:\"landing-page_cache_expires_value\";s:2:\"-1\";s:10:\"namespaces\";a:18:{i:0;s:10:\"oembed/1.0\";i:1;s:19:\"wpe/cache-plugin/v1\";i:2;s:21:\"wpe_sign_on_plugin/v1\";i:3;s:17:\"ninja-forms-views\";i:4;s:14:\"redirection/v1\";i:5;s:17:\"simple-sitemap/v1\";i:6;s:11:\"tr-services\";i:7;s:20:\"tr/site-endpoints/v1\";i:8;s:20:\"tr/site-endpoints/v2\";i:9;s:20:\"tr/site-endpoints/v3\";i:10;s:16:\"quality-check/v1\";i:11;s:10:\"workify/v1\";i:12;s:10:\"workify/v2\";i:13;s:11:\"filebird/v1\";i:14;s:18:\"filebird/public/v1\";i:15;s:7:\"divi/v1\";i:16;s:5:\"wp/v2\";i:17;s:17:\"wp-site-health/v1\";}s:30:\"oembed/1.0_cache_expires_value\";s:2:\"-1\";s:39:\"wpe/cache-plugin/v1_cache_expires_value\";s:2:\"-1\";s:41:\"wpe_sign_on_plugin/v1_cache_expires_value\";s:2:\"-1\";s:37:\"ninja-forms-views_cache_expires_value\";s:2:\"-1\";s:34:\"redirection/v1_cache_expires_value\";s:2:\"-1\";s:37:\"simple-sitemap/v1_cache_expires_value\";s:2:\"-1\";s:31:\"tr-services_cache_expires_value\";s:2:\"-1\";s:40:\"tr/site-endpoints/v1_cache_expires_value\";s:2:\"-1\";s:40:\"tr/site-endpoints/v2_cache_expires_value\";s:2:\"-1\";s:40:\"tr/site-endpoints/v3_cache_expires_value\";s:2:\"-1\";s:36:\"quality-check/v1_cache_expires_value\";s:2:\"-1\";s:30:\"workify/v1_cache_expires_value\";s:2:\"-1\";s:30:\"workify/v2_cache_expires_value\";s:2:\"-1\";s:31:\"filebird/v1_cache_expires_value\";s:2:\"-1\";s:38:\"filebird/public/v1_cache_expires_value\";s:2:\"-1\";s:27:\"divi/v1_cache_expires_value\";s:2:\"-1\";s:25:\"wp/v2_cache_expires_value\";s:2:\"-1\";s:37:\"wp-site-health/v1_cache_expires_value\";s:2:\"-1\";}','yes'),(3453,'fulm_notices','a:2:{s:6:\"update\";a:0:{}s:5:\"error\";a:0:{}}','yes'),(3549,'disallowed_keys','','no'),(3550,'comment_previously_approved','1','yes'),(3551,'auto_plugin_theme_update_emails','a:0:{}','no'),(3552,'auto_update_core_dev','enabled','yes'),(3553,'auto_update_core_minor','enabled','yes'),(3554,'auto_update_core_major','unset','yes'),(3569,'options_fl-tag-header','<!-- No flTag Header -->','no'),(3570,'_options_fl-tag-header','field_576aelkf84jsd','no'),(3571,'options_fl-tag-footer','<!-- START flTag Footer -->\n<script language=\"JavaScript\" type=\"text/javascript\">\nvar FL = FL || {};\nFL = \n{\n  \"account\": {\n    \"accountId\": 5239763,\n    \"siteId\": 74010,\n    \"subscriptionId\": \"3602675\",\n    \"pixelReady\": true\n  },\n  \"adobeAnalytics\": {\n    \"prodReportSuites\": \"findlaw-46758,findlaw-global-v1,findlawfirmstaging\",\n    \"stageReportSuites\": \"findlawfsindividualstage,findlawfsglobalstage,findlawglobalstage\"\n  },\n  \"google\": {\n    \"conversionId\": \"AW-302864025\",\n    \"conversions\": {\n      \"fl_tag_site_chat_started\": \"uCH7CLaku_MCEJmttZAB\",\n      \"fl_tag_site_contact_form_submitted\": \"eBRuCMKhkPMCEJmttZAB\"\n    }\n  }\n};\n</script>\n<script src=\"//thelomad.com/getmad.today/wp-contentassets.adobedtm.com/a0c0d582e2e6/99ae645efd27/launch-4b8eab27482e.min.js\" async></script><!-- END flTag Footer -->','no'),(3572,'_options_fl-tag-footer','field_576ae98kdli37sy','no'),(3603,'flum_domains','a:1:{i:0;s:55:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/\";}','no'),(3604,'flum_crawl_5986','a:0:{}','no'),(3605,'flum_crawl_indexed_5986','a:1:{s:21:\"https://getmad.today/\";a:0:{}}','no'),(3606,'flum_crawls','a:1:{i:5986;a:6:{s:2:\"id\";i:5986;s:4:\"date\";i:1637581189;s:7:\"targets\";a:1:{i:0;s:55:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/\";}s:11:\"destination\";s:99:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/?secret=true\";s:6:\"status\";s:8:\"finished\";s:8:\"end_date\";i:1637583316;}}','no');
INSERT INTO `cuB_options` VALUES (3609,'flum_source_5986','a:6013:{s:32:\"6d49096f992e7dfad50ddc340f56eacc\";a:10:{s:4:\"hash\";s:32:\"6d49096f992e7dfad50ddc340f56eacc\";s:3:\"url\";s:54:\"https://thelomad.com/getmad.today/wp-contentgetmad.today\";s:4:\"path\";s:1:\"/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:86:\"New York State Workers\' Compensation Defense | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Dont get angry, GET M.A.D. Latest Webinar Videos Email mday@getmad.today for video password Featured\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:32:\"1899074a58316d8605b24080dd0f26ae\";}s:7:\"indexed\";b:0;}s:32:\"4c2adfb49fb71c4f05686094cf28377d\";a:10:{s:4:\"hash\";s:32:\"4c2adfb49fb71c4f05686094cf28377d\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/06/imes-the-next-summer-movie-blockbuster-or-just-another-ime-gone-bust/\";s:4:\"path\";s:78:\"/2015/06/imes-the-next-summer-movie-blockbuster-or-just-another-ime-gone-bust/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8573f660df81fb780b02a9bb11b6a2e2\";a:10:{s:4:\"hash\";s:32:\"8573f660df81fb780b02a9bb11b6a2e2\";s:3:\"url\";s:67:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/07/927/\";s:4:\"path\";s:13:\"/2015/07/927/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e2313084b18b6c4fa82822d856526513\";a:10:{s:4:\"hash\";s:32:\"e2313084b18b6c4fa82822d856526513\";s:3:\"url\";s:86:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/07/hot-dogs-or-hamburgers/\";s:4:\"path\";s:32:\"/2015/07/hot-dogs-or-hamburgers/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:65:\"HOT DOGS OR HAMBURGERS? | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"HOT DOGS OR HAMBURGERS? Featured Contact Information Recent Blog Posts For this weeks blog post, I d\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"3cefb1cdf23bd6a8bdf6d6bfcc7b89ee\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"86424ba38e769c17bef9bd6f6b8f4b80\";a:10:{s:4:\"hash\";s:32:\"86424ba38e769c17bef9bd6f6b8f4b80\";s:3:\"url\";s:123:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/08/answers-to-the-quiz-test-your-ny-workers-compensation-chops/\";s:4:\"path\";s:69:\"/2015/08/answers-to-the-quiz-test-your-ny-workers-compensation-chops/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2825bf2a8bb4ce415fe7d24edcfceadd\";a:10:{s:4:\"hash\";s:32:\"2825bf2a8bb4ce415fe7d24edcfceadd\";s:3:\"url\";s:126:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/08/average-wages-cost-containment-by-controlling-the-fundamentals/\";s:4:\"path\";s:72:\"/2015/08/average-wages-cost-containment-by-controlling-the-fundamentals/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:56:\"Average Wages? | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Average Wages? Featured Contact Information Recent Blog Posts Average Wages? Cost-Containment by Con\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"99eddd642518dc35b175832c164cd8ff\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"71b1169e896989488ac4592e61fac6d3\";a:10:{s:4:\"hash\";s:32:\"71b1169e896989488ac4592e61fac6d3\";s:3:\"url\";s:150:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/08/compliance-monitoring-aka-claims-handling-performance-the-board-is-watching-you-part-i/\";s:4:\"path\";s:96:\"/2015/08/compliance-monitoring-aka-claims-handling-performance-the-board-is-watching-you-part-i/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:69:\"Claims Handling Performance | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Claims Handling Performance Featured Contact Information Recent Blog Posts COMPLIANCE MONITORING, AK\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"5074528fbb0cc47dd02f7e02ba6acd88\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e7f879061712884681aa97756b656f04\";a:10:{s:4:\"hash\";s:32:\"e7f879061712884681aa97756b656f04\";s:3:\"url\";s:139:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/08/we-now-have-the-non-acute-pain-treatment-guidelines-but-what-does-that-mean/\";s:4:\"path\";s:85:\"/2015/08/we-now-have-the-non-acute-pain-treatment-guidelines-but-what-does-that-mean/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3603526acdf69f0cead576916aa177c4\";a:10:{s:4:\"hash\";s:32:\"3603526acdf69f0cead576916aa177c4\";s:3:\"url\";s:82:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/09/challenge-yourself/\";s:4:\"path\";s:28:\"/2015/09/challenge-yourself/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4aeec4cff730f9f63e02d02b07082fa0\";a:10:{s:4:\"hash\";s:32:\"4aeec4cff730f9f63e02d02b07082fa0\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/09/labor-market-attachment-refresher/\";s:4:\"path\";s:43:\"/2015/09/labor-market-attachment-refresher/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b62f25650c1df39bfddeb46372569cac\";a:10:{s:4:\"hash\";s:32:\"b62f25650c1df39bfddeb46372569cac\";s:3:\"url\";s:150:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/09/summer-is-almost-over-seasonal-employees-back-to-work-or-not-part-2-on-calculating-aww/\";s:4:\"path\";s:96:\"/2015/09/summer-is-almost-over-seasonal-employees-back-to-work-or-not-part-2-on-calculating-aww/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:64:\"Summer is Almost Over! | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Summer is Almost Over! Featured Contact Information Recent Blog Posts Seasonal Employees Back to Wor\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"d1a252349779dc7a0cb77c6439f4805c\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cd6dd76d4ae009e04202648627b8c847\";a:10:{s:4:\"hash\";s:32:\"cd6dd76d4ae009e04202648627b8c847\";s:3:\"url\";s:214:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/10/when-does-vocational-and-functional-considerations-such-as-a-claimants-age-education-training-experience-etc-have-an-influence-on-a-claimants-benefits/\";s:4:\"path\";s:160:\"/2015/10/when-does-vocational-and-functional-considerations-such-as-a-claimants-age-education-training-experience-etc-have-an-influence-on-a-claimants-benefits/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:70:\"Vocational and Functional… | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Vocational and Functional Featured Contact Information Recent Blog Posts WHEN DOES VOCATIONAL AND FU\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"129084c22487b37d6b3239197a2bb43d\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"82dfb5934e5959cf8437bbf8b9d423eb\";a:10:{s:4:\"hash\";s:32:\"82dfb5934e5959cf8437bbf8b9d423eb\";s:3:\"url\";s:183:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/11/full-board-holds-that-an-employee-cannot-be-considered-a-six-day-worker-merely-because-he-has-worked-more-than-270-days/\";s:4:\"path\";s:129:\"/2015/11/full-board-holds-that-an-employee-cannot-be-considered-a-six-day-worker-merely-because-he-has-worked-more-than-270-days/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:66:\"An Employee Cannot be… | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"An Employee Cannot be Featured Contact Information Recent Blog Posts FULL BOARD HOLDS THAT AN EMPLOY\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"8e7c6800388e670595db5e4c241bad0f\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"42474a035ae97004ea1ea74060dde35d\";a:10:{s:4:\"hash\";s:32:\"42474a035ae97004ea1ea74060dde35d\";s:3:\"url\";s:166:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/11/ny-allows-employer-to-utilize-a-preferred-provider-organization-ppo-for-the-first-30-days-of-treatment/\";s:4:\"path\";s:112:\"/2015/11/ny-allows-employer-to-utilize-a-preferred-provider-organization-ppo-for-the-first-30-days-of-treatment/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"66eb37948db92f1152cab3b7105966d4\";a:10:{s:4:\"hash\";s:32:\"66eb37948db92f1152cab3b7105966d4\";s:3:\"url\";s:102:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\";s:4:\"path\";s:48:\"/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"935109045ebf4be3d017a26e7680e6b9\";a:10:{s:4:\"hash\";s:32:\"935109045ebf4be3d017a26e7680e6b9\";s:3:\"url\";s:173:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\";s:4:\"path\";s:119:\"/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a0f767aca993902fbdf15106413caa7d\";a:10:{s:4:\"hash\";s:32:\"a0f767aca993902fbdf15106413caa7d\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/\";s:4:\"path\";s:93:\"/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"17086b190bef0c730bd64c3afc73d960\";a:10:{s:4:\"hash\";s:32:\"17086b190bef0c730bd64c3afc73d960\";s:3:\"url\";s:174:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2019/05/claimants-conviction-of-unlawful-manufacture-of-methamphetamine-does-not-amount-to-a-violation-under-wcl-114-a/\";s:4:\"path\";s:120:\"/2019/05/claimants-conviction-of-unlawful-manufacture-of-methamphetamine-does-not-amount-to-a-violation-under-wcl-114-a/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:156:\"Claimant’s conviction of unlawful manufacture of methamphetamine does not amount to a violation under WCL 114-a. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Claimants conviction of unlawful manufacture of methamphetamine does not amount to a violation under\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e36d7cd8cfa26725261c09952592f0c0\";a:10:{s:4:\"hash\";s:32:\"e36d7cd8cfa26725261c09952592f0c0\";s:3:\"url\";s:137:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2019/07/melissa-a-day-esq-invited-to-join-buffalo-business-first-leadership-trust/\";s:4:\"path\";s:83:\"/2019/07/melissa-a-day-esq-invited-to-join-buffalo-business-first-leadership-trust/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:118:\"Melissa A. Day, Esq. invited to join Buffalo Business First Leadership Trust | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Melissa A. Day, Esq. invited to join Buffalo Business First Leadership Trust Featured Contact Inform\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"64ca23be1461329ac521ef079b8d2c76\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2cc433e4e88363d7ee8418cf66f5e921\";a:10:{s:4:\"hash\";s:32:\"2cc433e4e88363d7ee8418cf66f5e921\";s:3:\"url\";s:126:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2020/06/proposed-changes-to-%c2%a7%c2%a7300-22-and-300-23-overpayments/\";s:4:\"path\";s:72:\"/2020/06/proposed-changes-to-%c2%a7%c2%a7300-22-and-300-23-overpayments/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:100:\"Proposed Changes to §§300.22 and 300.23 – Overpayments | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Proposed Changes to 300.22 and 300.23  Overpayments Featured Contact Information Recent Blog Posts N\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"53bf9cc231f1a041ef61c05e4a19c616\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fb9650dd6cd64cc3b70d0e2d789dfe0b\";a:10:{s:4:\"hash\";s:32:\"fb9650dd6cd64cc3b70d0e2d789dfe0b\";s:3:\"url\";s:106:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2020/07/a-win-for-the-law-offices-of-melissa-a-day/\";s:4:\"path\";s:52:\"/2020/07/a-win-for-the-law-offices-of-melissa-a-day/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:85:\"A Win for The Law Offices of Melissa A. Day | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"A Win for The Law Offices of Melissa A. Day Featured Contact Information Recent Blog Posts By Reserv\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"6b2be5ae250a54ad62ac0871bedc0486\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"89bb08ac4258da61fea310f8a7a824c0\";a:10:{s:4:\"hash\";s:32:\"89bb08ac4258da61fea310f8a7a824c0\";s:3:\"url\";s:112:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2020/07/another-win-for-the-law-offices-of-melissa-a-day/\";s:4:\"path\";s:58:\"/2020/07/another-win-for-the-law-offices-of-melissa-a-day/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ec1d9390f40edc783a3d0b5c853d8ac1\";a:10:{s:4:\"hash\";s:32:\"ec1d9390f40edc783a3d0b5c853d8ac1\";s:3:\"url\";s:140:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\";s:4:\"path\";s:86:\"/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a29fee0273565a54315f4c6950f60e01\";a:10:{s:4:\"hash\";s:32:\"a29fee0273565a54315f4c6950f60e01\";s:3:\"url\";s:102:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/05/labor-market-attachment-and-retirement/\";s:4:\"path\";s:48:\"/2021/05/labor-market-attachment-and-retirement/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:80:\"Labor Market Attachment and Retirement | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Labor Market Attachment and Retirement Leave a Reply Cancel reply Featured Contact Information Recen\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"3aa943cc4bc91b81b56f2fd521d9d076\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2e06b0f64ddc32e046f3b6882c02e69e\";a:10:{s:4:\"hash\";s:32:\"2e06b0f64ddc32e046f3b6882c02e69e\";s:3:\"url\";s:111:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/06/stipulations-reimbursements-underpayments-oh-my/\";s:4:\"path\";s:57:\"/2021/06/stipulations-reimbursements-underpayments-oh-my/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:93:\"Stipulations, Reimbursements, Underpayments. Oh My! | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Stipulations, Reimbursements, Underpayments. Oh My! Leave a Reply Cancel reply Featured Contact Info\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"5b288cef2c963aa20d19e2aa50d754c1\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5a7f6f1b43c2bcce2c62fdd14f1ce9e4\";a:10:{s:4:\"hash\";s:32:\"5a7f6f1b43c2bcce2c62fdd14f1ce9e4\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/06/third-deparment-decision-disputing-causal-relationship/\";s:4:\"path\";s:64:\"/2021/06/third-deparment-decision-disputing-causal-relationship/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0d9d659db7db615d7aeaabd7cb1155a1\";a:10:{s:4:\"hash\";s:32:\"0d9d659db7db615d7aeaabd7cb1155a1\";s:3:\"url\";s:101:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/07/an-exploration-of-legal-apportionment/\";s:4:\"path\";s:47:\"/2021/07/an-exploration-of-legal-apportionment/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:85:\"An Exploration of “Legal Apportionment” | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"An Exploration of Legal Apportionment Leave a Reply Cancel reply Featured Contact Information Recent\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2d4597fedd81cbd373c733260d7ba1c9\";a:10:{s:4:\"hash\";s:32:\"2d4597fedd81cbd373c733260d7ba1c9\";s:3:\"url\";s:121:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/07/carpal-tunnel-and-causal-relation-not-always-so-clear-cut/\";s:4:\"path\";s:67:\"/2021/07/carpal-tunnel-and-causal-relation-not-always-so-clear-cut/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:99:\"Carpal Tunnel and Causal Relation Not Always So Clear-Cut | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Carpal Tunnel and Causal Relation Not Always So Clear-Cut Leave a Reply Cancel reply Featured Contac\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"df1a9925532ba875a7495de4ff003c4c\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"286e97f2be3c28be192a7502a98f16da\";a:10:{s:4:\"hash\";s:32:\"286e97f2be3c28be192a7502a98f16da\";s:3:\"url\";s:79:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/07/its-no-accident/\";s:4:\"path\";s:25:\"/2021/07/its-no-accident/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1181ea9e938d14dbae001858da43d0ef\";a:10:{s:4:\"hash\";s:32:\"1181ea9e938d14dbae001858da43d0ef\";s:3:\"url\";s:115:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\";s:4:\"path\";s:61:\"/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"37cf981f13b30525880e258aa33e05c7\";a:10:{s:4:\"hash\";s:32:\"37cf981f13b30525880e258aa33e05c7\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/08/disallowance-due-to-intoxication/\";s:4:\"path\";s:42:\"/2021/08/disallowance-due-to-intoxication/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:74:\"Disallowance Due to Intoxication | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Disallowance Due to Intoxication Leave a Reply Cancel reply Featured Contact Information Recent Blog\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"c5e6fade6822445e55f818c37eca7c19\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0b12391de543e2779fccb021984f4eca\";a:10:{s:4:\"hash\";s:32:\"0b12391de543e2779fccb021984f4eca\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/08/surveillance-social-media-section-32/\";s:4:\"path\";s:46:\"/2021/08/surveillance-social-media-section-32/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:82:\"Surveillance, Social Media…Section 32? | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Surveillance, Social MediaSection 32? Leave a Reply Cancel reply Featured Contact Information Recent\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"5cd9d23240f5f9ad3513e73d8f880553\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8bd6277be00e526d3061c23985e59ffa\";a:10:{s:4:\"hash\";s:32:\"8bd6277be00e526d3061c23985e59ffa\";s:3:\"url\";s:110:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/08/that-prior-loss-wont-just-come-out-in-the-wash/\";s:4:\"path\";s:56:\"/2021/08/that-prior-loss-wont-just-come-out-in-the-wash/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:91:\"That Prior Loss Won’t Just Come Out in the Wash | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"That Prior Loss Wont Just Come Out in the Wash Leave a Reply Cancel reply Featured Contact Informati\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b0f5dbeaaac9974341e6c6fa04b511d6\";a:10:{s:4:\"hash\";s:32:\"b0f5dbeaaac9974341e6c6fa04b511d6\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/08/using-the-contralateral-limb-as-a-baseline-for-calculating-schedule-loss-of-use/\";s:4:\"path\";s:89:\"/2021/08/using-the-contralateral-limb-as-a-baseline-for-calculating-schedule-loss-of-use/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:121:\"Using the Contralateral Limb as a Baseline for Calculating Schedule Loss of Use | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Using the Contralateral Limb as a Baseline for Calculating Schedule Loss of Use Leave a Reply Cancel\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"6334e0685a66f60a6e9874624825962e\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ec15f37e85764e6525615f03120f5c50\";a:10:{s:4:\"hash\";s:32:\"ec15f37e85764e6525615f03120f5c50\";s:3:\"url\";s:64:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/about-us/\";s:4:\"path\";s:10:\"/about-us/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:50:\"About Us | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"About Us Featured Contact Information Recent Blog Posts The Law Offices of Melissa A. Day, PLLC is W\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"91e89aba7f17e67d68c0df54f9936d6b\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"23f460d0b580ebe1b966af572319c094\";a:10:{s:4:\"hash\";s:32:\"23f460d0b580ebe1b966af572319c094\";s:3:\"url\";s:70:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/author/efourie/\";s:4:\"path\";s:16:\"/author/efourie/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c2908122fa3cb71aefaecdd8bfa1e385\";a:10:{s:4:\"hash\";s:32:\"c2908122fa3cb71aefaecdd8bfa1e385\";s:3:\"url\";s:71:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/author/jcousins/\";s:4:\"path\";s:17:\"/author/jcousins/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"18538a1781b30a57d72cfad3311cb1dd\";a:10:{s:4:\"hash\";s:32:\"18538a1781b30a57d72cfad3311cb1dd\";s:3:\"url\";s:67:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/author/mday/\";s:4:\"path\";s:13:\"/author/mday/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:53:\"Melissa Day | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Author Archives: Melissa Day A Win for The Law Offices of Melissa A. Day Proposed Changes to 300.22 \";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"594f250f3292943c525b5365defc432f\";a:10:{s:4:\"hash\";s:32:\"594f250f3292943c525b5365defc432f\";s:3:\"url\";s:74:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/author/mday/page/2/\";s:4:\"path\";s:20:\"/author/mday/page/2/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9a4f11fe6c425c20dc6165213f6b803e\";a:10:{s:4:\"hash\";s:32:\"9a4f11fe6c425c20dc6165213f6b803e\";s:3:\"url\";s:71:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/author/mszeliga/\";s:4:\"path\";s:17:\"/author/mszeliga/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ad1f72ed21c456d2b64d8082fe6dc4d\";a:10:{s:4:\"hash\";s:32:\"8ad1f72ed21c456d2b64d8082fe6dc4d\";s:3:\"url\";s:71:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/category/im-mad/\";s:4:\"path\";s:17:\"/category/im-mad/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:51:\"I’m MAD | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Category Archives: Im MAD A Win for The Law Offices of Melissa A. Day Proposed Changes to 300.22 and\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9ba9bf20afca0d9f21144fe16ffc8873\";a:10:{s:4:\"hash\";s:32:\"9ba9bf20afca0d9f21144fe16ffc8873\";s:3:\"url\";s:78:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/category/im-mad/page/2/\";s:4:\"path\";s:24:\"/category/im-mad/page/2/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:51:\"I’m MAD | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Category Archives: Im MAD Review of Workers Compensation Board Schedule Loss of Use Frequently Asked\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5d646def6d55fbd696898160eef7eb72\";a:10:{s:4:\"hash\";s:32:\"5d646def6d55fbd696898160eef7eb72\";s:3:\"url\";s:73:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/category/mad-news/\";s:4:\"path\";s:19:\"/category/mad-news/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:50:\"MAD News | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Category Archives: MAD News That Prior Loss Wont Just Come Out in the Wash Using the Contralateral L\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"3e4c69461ea6d21f2a9eeb3a466e4202\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b4eb196bf8825be8d1b00d3835342de9\";a:10:{s:4:\"hash\";s:32:\"b4eb196bf8825be8d1b00d3835342de9\";s:3:\"url\";s:80:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/category/mad-news/page/2/\";s:4:\"path\";s:26:\"/category/mad-news/page/2/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:50:\"MAD News | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Category Archives: MAD News Carpal Tunnel and Causal Relation Not Always So Clear-Cut Pain is Not En\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"3e4c69461ea6d21f2a9eeb3a466e4202\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c98f257972886fac21b0e0e729f7129\";a:10:{s:4:\"hash\";s:32:\"2c98f257972886fac21b0e0e729f7129\";s:3:\"url\";s:80:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/category/mad-news/page/3/\";s:4:\"path\";s:26:\"/category/mad-news/page/3/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c873cab52a0fdee93f134b8db16cfc5a\";a:10:{s:4:\"hash\";s:32:\"c873cab52a0fdee93f134b8db16cfc5a\";s:3:\"url\";s:89:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/category/nys-workers-compensation/\";s:4:\"path\";s:35:\"/category/nys-workers-compensation/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:66:\"NYS Workers Compensation | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Category Archives: NYS Workers Compensation That Prior Loss Wont Just Come Out in the Wash Using the\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"0d9970a57d14cccc7e0ef4404f971a3e\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8f040a73de1792e2d4c9d61cdb3e5d52\";a:10:{s:4:\"hash\";s:32:\"8f040a73de1792e2d4c9d61cdb3e5d52\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/category/nys-workers-compensation/page/2/\";s:4:\"path\";s:42:\"/category/nys-workers-compensation/page/2/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eb7c8eb9840a662d8187a739e69bb0ff\";a:10:{s:4:\"hash\";s:32:\"eb7c8eb9840a662d8187a739e69bb0ff\";s:3:\"url\";s:78:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/category/uncategorized/\";s:4:\"path\";s:24:\"/category/uncategorized/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"Uncategorized | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Category Archives: Uncategorized IMEs : The Next Summer Movie Blockbuster or Just Another IME Gone B\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b3c394d3cd81a75857428c2b8b7ec95a\";a:10:{s:4:\"hash\";s:32:\"b3c394d3cd81a75857428c2b8b7ec95a\";s:3:\"url\";s:72:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/client-resources/\";s:4:\"path\";s:18:\"/client-resources/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:58:\"Client Resources | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Client Resources Featured Contact Information Recent Blog Posts Webinar Videos Permanent Partial Dis\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"0cc3e1c4c92eb996bebe317d66fef85c\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:32:\"0cc3e1c4c92eb996bebe317d66fef85c\";}s:7:\"indexed\";b:0;}s:32:\"5045279d86a7ec130fc786a3171ec161\";a:10:{s:4:\"hash\";s:32:\"5045279d86a7ec130fc786a3171ec161\";s:3:\"url\";s:89:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/client-resources/case-law-updates/\";s:4:\"path\";s:35:\"/client-resources/case-law-updates/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:58:\"Case Law Updates | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Case Law Updates Featured Contact Information Recent Blog Posts Every year, LOMADs attorneys practic\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"d757abef6cdda55afcdb11ddbba0b7ce\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a4b2b0816c143fbc3a5324f050a82809\";a:10:{s:4:\"hash\";s:32:\"a4b2b0816c143fbc3a5324f050a82809\";s:3:\"url\";s:86:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/client-resources/helpful-links/\";s:4:\"path\";s:32:\"/client-resources/helpful-links/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"Helpful Links | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Helpful Links Featured Contact Information Recent Blog Posts NEW YORK STATEWORKERS COMPENSATION BOAR\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"60ad4c9ddef597be6d764af1fd2c720a\";a:10:{s:4:\"hash\";s:32:\"60ad4c9ddef597be6d764af1fd2c720a\";s:3:\"url\";s:86:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/client-resources/life-awards-2/\";s:4:\"path\";s:32:\"/client-resources/life-awards-2/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:53:\"Life Awards | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Life Awards Featured Contact Information Recent Blog Posts 5% Interest&#10;(Accident on or after Jan\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d8102e11852b2f1d30a814190503350a\";a:10:{s:4:\"hash\";s:32:\"d8102e11852b2f1d30a814190503350a\";s:3:\"url\";s:82:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/client-resources/max-rates/\";s:4:\"path\";s:28:\"/client-resources/max-rates/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:51:\"Max Rates | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Max Rates Featured Contact Information Recent Blog Posts   ATTORNEY ADVERTISING - PRIOR RESULTS DO N\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"a9f7255f3a2bbda249a611140a9ff68c\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:32:\"a9f7255f3a2bbda249a611140a9ff68c\";}s:7:\"indexed\";b:0;}s:32:\"3500709a03140095c5571fe2edc829c1\";a:10:{s:4:\"hash\";s:32:\"3500709a03140095c5571fe2edc829c1\";s:3:\"url\";s:81:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/client-resources/mt-rates/\";s:4:\"path\";s:27:\"/client-resources/mt-rates/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e5662e01cb66aca4050ce0fbde89646d\";a:10:{s:4:\"hash\";s:32:\"e5662e01cb66aca4050ce0fbde89646d\";s:3:\"url\";s:94:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/client-resources/permanency-guidelines/\";s:4:\"path\";s:40:\"/client-resources/permanency-guidelines/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:64:\"Presentations/Case Law | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Presentations/Case Law THE BREAKFAST CLUB  ADVANCED NY WC ISSUES WEBINAR SERIES SCHEDULE NEW YORK WO\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e5e90fd7289c498a6a065cb7f075a6f4\";a:10:{s:4:\"hash\";s:32:\"e5e90fd7289c498a6a065cb7f075a6f4\";s:3:\"url\";s:81:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/client-resources/ppd-caps/\";s:4:\"path\";s:27:\"/client-resources/ppd-caps/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:50:\"PPD Caps | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"PPD Caps Featured Contact Information Recent Blog Posts  ATTORNEY ADVERTISING - PRIOR RESULTS DO NOT\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"e6f4ec1ed34b8ac51580cae195d5fc5d\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:32:\"e6f4ec1ed34b8ac51580cae195d5fc5d\";}s:7:\"indexed\";b:0;}s:32:\"f4c9c7969c75a5dc65046de44ca5dce5\";a:10:{s:4:\"hash\";s:32:\"f4c9c7969c75a5dc65046de44ca5dce5\";s:3:\"url\";s:79:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/client-resources/sluphp/\";s:4:\"path\";s:25:\"/client-resources/sluphp/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:49:\"SLU/PHP | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"SLU/PHP Featured Contact Information Recent Blog Posts [CP_CALCULATED_FIELDS id=1]  ATTORNEY ADVERTI\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"0876e3f5e61525b806ac976249f03276\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6667c17ca648e83adf154ff532eda77e\";a:10:{s:4:\"hash\";s:32:\"6667c17ca648e83adf154ff532eda77e\";s:3:\"url\";s:66:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/contact-us/\";s:4:\"path\";s:12:\"/contact-us/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:63:\"Contact/Refer a Claim | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Contact/Refer a Claim Featured Contact Information Recent Blog Posts Location: North Forest Office P\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d5b0b2dd3f7579c7571c4d818f9dde99\";a:10:{s:4:\"hash\";s:32:\"d5b0b2dd3f7579c7571c4d818f9dde99\";s:3:\"url\";s:120:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/attorney-james-cousins-receives-ny-guard-achievement-medal/\";s:4:\"path\";s:66:\"/event/attorney-james-cousins-receives-ny-guard-achievement-medal/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"92d053d924e26cbeedd31486f070acd0\";a:10:{s:4:\"hash\";s:32:\"92d053d924e26cbeedd31486f070acd0\";s:3:\"url\";s:137:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/attorney-james-cousins-receives-ny-guard-achievement-medal/?instance_id=217/\";s:4:\"path\";s:66:\"/event/attorney-james-cousins-receives-ny-guard-achievement-medal/\";s:5:\"query\";s:15:\"instance_id=217\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"76abced99c115d5d45b2cc763fb4d116\";a:10:{s:4:\"hash\";s:32:\"76abced99c115d5d45b2cc763fb4d116\";s:3:\"url\";s:86:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/bca-golf-tournament-2021/\";s:4:\"path\";s:32:\"/event/bca-golf-tournament-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cdd1f7b29539e465854cd06349f4079c\";a:10:{s:4:\"hash\";s:32:\"cdd1f7b29539e465854cd06349f4079c\";s:3:\"url\";s:103:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/bca-golf-tournament-2021/?instance_id=319/\";s:4:\"path\";s:32:\"/event/bca-golf-tournament-2021/\";s:5:\"query\";s:15:\"instance_id=319\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:66:\"BCA Golf Tournament 2021 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"BCA Golf Tournament 2021 Featured Contact Information Recent Blog Posts   Save the Date! The Buffalo\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1ff11f1a8c9cf4cb4942599b94b2c83d\";a:10:{s:4:\"hash\";s:32:\"1ff11f1a8c9cf4cb4942599b94b2c83d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/bisons-family-night-featuring-lomad/\";s:4:\"path\";s:43:\"/event/bisons-family-night-featuring-lomad/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c6f33c4c4164c44273c04bcc82d6d00\";a:10:{s:4:\"hash\";s:32:\"2c6f33c4c4164c44273c04bcc82d6d00\";s:3:\"url\";s:114:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/bisons-family-night-featuring-lomad/?instance_id=221/\";s:4:\"path\";s:43:\"/event/bisons-family-night-featuring-lomad/\";s:5:\"query\";s:15:\"instance_id=221\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:78:\"Bisons Family Night featuring LOMAD! | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Bisons Family Night featuring LOMAD! Featured Contact Information Recent Blog Posts  The Law Offices\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"da6114b43ed9183ac92b69ba9b829fb0\";a:10:{s:4:\"hash\";s:32:\"da6114b43ed9183ac92b69ba9b829fb0\";s:3:\"url\";s:93:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/brian-prince-is-getting-married/\";s:4:\"path\";s:39:\"/event/brian-prince-is-getting-married/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2e719887d7cbf8159d430402579146ee\";a:10:{s:4:\"hash\";s:32:\"2e719887d7cbf8159d430402579146ee\";s:3:\"url\";s:110:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/brian-prince-is-getting-married/?instance_id=216/\";s:4:\"path\";s:39:\"/event/brian-prince-is-getting-married/\";s:5:\"query\";s:15:\"instance_id=216\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:74:\"Brian Prince is Getting Married! | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Brian Prince is Getting Married! Featured Contact Information Recent Blog Posts Congratulations to A\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6e03071d3ace70b418b6a383f4e7ec33\";a:10:{s:4:\"hash\";s:32:\"6e03071d3ace70b418b6a383f4e7ec33\";s:3:\"url\";s:107:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/buffalo-claims-association-education-day-2019/\";s:4:\"path\";s:53:\"/event/buffalo-claims-association-education-day-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:91:\"Buffalo Claims Association – Education Day 2019 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Buffalo Claims Association  Education Day 2019 Featured Contact Information Recent Blog Posts The at\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fe7bae3d5a95192013eceae0f66071b2\";a:10:{s:4:\"hash\";s:32:\"fe7bae3d5a95192013eceae0f66071b2\";s:3:\"url\";s:124:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/buffalo-claims-association-education-day-2019/?instance_id=222/\";s:4:\"path\";s:53:\"/event/buffalo-claims-association-education-day-2019/\";s:5:\"query\";s:15:\"instance_id=222\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f86ef044b9971d56aacce5ab931fcc1\";a:10:{s:4:\"hash\";s:32:\"7f86ef044b9971d56aacce5ab931fcc1\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/congratulations-to-brian-k-prince-for-one-year-with-lomad/?instance_id=75/\";s:4:\"path\";s:65:\"/event/congratulations-to-brian-k-prince-for-one-year-with-lomad/\";s:5:\"query\";s:14:\"instance_id=75\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:100:\"Congratulations to Brian K. Prince for one year with LOMAD | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Congratulations to Brian K. Prince for one year with LOMAD Featured Contact Information Recent Blog \";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6dc2d88ef3ca16f2486363f8ed593d77\";a:10:{s:4:\"hash\";s:32:\"6dc2d88ef3ca16f2486363f8ed593d77\";s:3:\"url\";s:113:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/james-cousins-speaks-at-national-business-institute/\";s:4:\"path\";s:59:\"/event/james-cousins-speaks-at-national-business-institute/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:93:\"James Cousins speaks at National Business Institute | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"James Cousins speaks at National Business Institute Featured Contact Information Recent Blog Posts J\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ca6b43da2fe0b2bb187eb72fb634ae41\";a:10:{s:4:\"hash\";s:32:\"ca6b43da2fe0b2bb187eb72fb634ae41\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/james-cousins-speaks-at-national-business-institute/?instance_id=322/\";s:4:\"path\";s:59:\"/event/james-cousins-speaks-at-national-business-institute/\";s:5:\"query\";s:15:\"instance_id=322\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"02f46747a551872c01bcbeb286fc1d54\";a:10:{s:4:\"hash\";s:32:\"02f46747a551872c01bcbeb286fc1d54\";s:3:\"url\";s:110:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/kids-chance-of-new-york-charity-golf-outing-2021/\";s:4:\"path\";s:56:\"/event/kids-chance-of-new-york-charity-golf-outing-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:90:\"Kids Chance of New York Charity Golf Outing 2021 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Kids Chance of New York Charity Golf Outing 2021 Featured Contact Information Recent Blog Posts Kids\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e1697613826f7cdd72f9a3c516be0e09\";a:10:{s:4:\"hash\";s:32:\"e1697613826f7cdd72f9a3c516be0e09\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/kids-chance-of-new-york-charity-golf-outing-2021/?instance_id=258/\";s:4:\"path\";s:56:\"/event/kids-chance-of-new-york-charity-golf-outing-2021/\";s:5:\"query\";s:15:\"instance_id=258\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3cf70949bd9b5c1dbf2d7463cddd7c40\";a:10:{s:4:\"hash\";s:32:\"3cf70949bd9b5c1dbf2d7463cddd7c40\";s:3:\"url\";s:95:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/little-league-softball-lomad-wins/\";s:4:\"path\";s:41:\"/event/little-league-softball-lomad-wins/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"547d71fbbb17ac2b712997892d4e3424\";a:10:{s:4:\"hash\";s:32:\"547d71fbbb17ac2b712997892d4e3424\";s:3:\"url\";s:112:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/little-league-softball-lomad-wins/?instance_id=215/\";s:4:\"path\";s:41:\"/event/little-league-softball-lomad-wins/\";s:5:\"query\";s:15:\"instance_id=215\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:80:\"Little League Softball – LOMAD Wins! | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Little League Softball  LOMAD Wins! Featured Contact Information Recent Blog Posts   ATTORNEY ADVERT\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5bfcd8ca106e14e9eed63a217f15ae9f\";a:10:{s:4:\"hash\";s:32:\"5bfcd8ca106e14e9eed63a217f15ae9f\";s:3:\"url\";s:86:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomad-attends-bca-outing/\";s:4:\"path\";s:32:\"/event/lomad-attends-bca-outing/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:67:\"LOMAD Attends BCA Outing! | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"LOMAD Attends BCA Outing! Featured Contact Information Recent Blog Posts  LOMAD was invited to socia\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f5c16983d86908e3c15830e44aa0dbe2\";a:10:{s:4:\"hash\";s:32:\"f5c16983d86908e3c15830e44aa0dbe2\";s:3:\"url\";s:103:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomad-attends-bca-outing/?instance_id=320/\";s:4:\"path\";s:32:\"/event/lomad-attends-bca-outing/\";s:5:\"query\";s:15:\"instance_id=320\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f15ed9480c14549acabbd947803e2db0\";a:10:{s:4:\"hash\";s:32:\"f15ed9480c14549acabbd947803e2db0\";s:3:\"url\";s:121:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomad-sponsorship-of-2020-yms-of-niagara-county-golf-outing/\";s:4:\"path\";s:67:\"/event/lomad-sponsorship-of-2020-yms-of-niagara-county-golf-outing/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"811052bd19afc13ca3f25a895a579e56\";a:10:{s:4:\"hash\";s:32:\"811052bd19afc13ca3f25a895a579e56\";s:3:\"url\";s:138:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomad-sponsorship-of-2020-yms-of-niagara-county-golf-outing/?instance_id=255/\";s:4:\"path\";s:67:\"/event/lomad-sponsorship-of-2020-yms-of-niagara-county-golf-outing/\";s:5:\"query\";s:15:\"instance_id=255\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0354fdc0f48932051144730d7b31afb3\";a:10:{s:4:\"hash\";s:32:\"0354fdc0f48932051144730d7b31afb3\";s:3:\"url\";s:105:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomads-anniversary-6-years/?instance_id=129/\";s:4:\"path\";s:34:\"/event/lomads-anniversary-6-years/\";s:5:\"query\";s:15:\"instance_id=129\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:73:\"LOMAD’s Anniversary! 6 years! | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"LOMADs Anniversary! 6 years! Featured Contact Information Recent Blog Posts The Law Offices of Melis\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8d6c91e3d868f4df3c9ff5b4f9ba3676\";a:10:{s:4:\"hash\";s:32:\"8d6c91e3d868f4df3c9ff5b4f9ba3676\";s:3:\"url\";s:87:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomads-bisons-game-outing/\";s:4:\"path\";s:33:\"/event/lomads-bisons-game-outing/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9ce809f482c6520de1d15b5bb85d1ba7\";a:10:{s:4:\"hash\";s:32:\"9ce809f482c6520de1d15b5bb85d1ba7\";s:3:\"url\";s:104:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomads-bisons-game-outing/?instance_id=218/\";s:4:\"path\";s:33:\"/event/lomads-bisons-game-outing/\";s:5:\"query\";s:15:\"instance_id=218\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"307944ce19c701e6222c80de1f7a1382\";a:10:{s:4:\"hash\";s:32:\"307944ce19c701e6222c80de1f7a1382\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=242/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=242\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:68:\"LOMADtv: Lawyers & Friends | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"LOMADtv: Lawyers &amp; Friends Featured Contact Information Recent Blog Posts  ATTORNEY ADVERTISING \";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"69bfa0ab72468ce80062aed859f5502d\";a:10:{s:4:\"hash\";s:32:\"69bfa0ab72468ce80062aed859f5502d\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=243/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=243\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef258ed42b575c6ef23536efbf4c75f3\";a:10:{s:4:\"hash\";s:32:\"ef258ed42b575c6ef23536efbf4c75f3\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=244/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=244\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ce0c19099cb0a7a49fba60e4f250df87\";a:10:{s:4:\"hash\";s:32:\"ce0c19099cb0a7a49fba60e4f250df87\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=260/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=260\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8061cb4ae0fe45a263489fc7b6ddbcaf\";a:10:{s:4:\"hash\";s:32:\"8061cb4ae0fe45a263489fc7b6ddbcaf\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=263/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=263\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"890151e480e5e6bf021a73241dfc8a0f\";a:10:{s:4:\"hash\";s:32:\"890151e480e5e6bf021a73241dfc8a0f\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=264/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=264\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b702ef45a9aa20308f11596c12093aef\";a:10:{s:4:\"hash\";s:32:\"b702ef45a9aa20308f11596c12093aef\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=265/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=265\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6853e9cc50661e40bb54090967c2f908\";a:10:{s:4:\"hash\";s:32:\"6853e9cc50661e40bb54090967c2f908\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=266/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=266\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"568699e7ce89d1018045de708b4e3285\";a:10:{s:4:\"hash\";s:32:\"568699e7ce89d1018045de708b4e3285\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=267/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=267\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c7bdfb8fe50290ac9b479ffc7b88b54\";a:10:{s:4:\"hash\";s:32:\"2c7bdfb8fe50290ac9b479ffc7b88b54\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=268/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=268\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dea3643829697aaf9b3ea519d0fff88f\";a:10:{s:4:\"hash\";s:32:\"dea3643829697aaf9b3ea519d0fff88f\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=269/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=269\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"386f78bd39f491b9dd0d3d581a5700d6\";a:10:{s:4:\"hash\";s:32:\"386f78bd39f491b9dd0d3d581a5700d6\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=270/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=270\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:68:\"LOMADtv: Lawyers & Friends | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"LOMADtv: Lawyers &amp; Friends Featured Contact Information Recent Blog Posts  ATTORNEY ADVERTISING \";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"53a980cb4d46898131b17c69e785d4e5\";a:10:{s:4:\"hash\";s:32:\"53a980cb4d46898131b17c69e785d4e5\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=274/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=274\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"698bacadc509a003b01d32b0513709bc\";a:10:{s:4:\"hash\";s:32:\"698bacadc509a003b01d32b0513709bc\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=275/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=275\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9561dd74b60e707da602b4f81d60ed50\";a:10:{s:4:\"hash\";s:32:\"9561dd74b60e707da602b4f81d60ed50\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=276/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=276\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"686b9985660809b1394b7284b3209110\";a:10:{s:4:\"hash\";s:32:\"686b9985660809b1394b7284b3209110\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=277/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=277\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"777bb6e9169a79430eb9fa3ba155302a\";a:10:{s:4:\"hash\";s:32:\"777bb6e9169a79430eb9fa3ba155302a\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=278/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=278\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d15bfc56254269082a64abc3f7be35b\";a:10:{s:4:\"hash\";s:32:\"4d15bfc56254269082a64abc3f7be35b\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=279/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=279\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7b857ecd3fc5895777d04d33eb0f8e87\";a:10:{s:4:\"hash\";s:32:\"7b857ecd3fc5895777d04d33eb0f8e87\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=280/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=280\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"014f25759aa4a103b44256701a868340\";a:10:{s:4:\"hash\";s:32:\"014f25759aa4a103b44256701a868340\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=281/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=281\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"307e5edfef48be45085fd096feea1428\";a:10:{s:4:\"hash\";s:32:\"307e5edfef48be45085fd096feea1428\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=282/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=282\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ef8e255e987daf4c7c2888a2d9111e2\";a:10:{s:4:\"hash\";s:32:\"8ef8e255e987daf4c7c2888a2d9111e2\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=283/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=283\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"01ec99a42eb3a6b7d495e1af6425af3c\";a:10:{s:4:\"hash\";s:32:\"01ec99a42eb3a6b7d495e1af6425af3c\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=284/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=284\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8bb2bc10f08760fbe4daf4cc7728d632\";a:10:{s:4:\"hash\";s:32:\"8bb2bc10f08760fbe4daf4cc7728d632\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2-2/?instance_id=285/\";s:4:\"path\";s:37:\"/event/lomadtv-lawyers-friends-2-2-2/\";s:5:\"query\";s:15:\"instance_id=285\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"35dea5f31368c0e80febe39d76b9b8bb\";a:10:{s:4:\"hash\";s:32:\"35dea5f31368c0e80febe39d76b9b8bb\";s:3:\"url\";s:89:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2/\";s:4:\"path\";s:35:\"/event/lomadtv-lawyers-friends-2-2/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff819dc7a9477be7345b5c2134ec4694\";a:10:{s:4:\"hash\";s:32:\"ff819dc7a9477be7345b5c2134ec4694\";s:3:\"url\";s:106:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2-2/?instance_id=223/\";s:4:\"path\";s:35:\"/event/lomadtv-lawyers-friends-2-2/\";s:5:\"query\";s:15:\"instance_id=223\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:116:\"LOMADtv: Lawyers & Friends – Episode 6, The One with The Medical Records | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"LOMADtv: Lawyers &amp; Friends  Episode 6, The One with The Medical Records Featured Contact Informa\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a42450acfbf941c85d49fb193e32dc5d\";a:10:{s:4:\"hash\";s:32:\"a42450acfbf941c85d49fb193e32dc5d\";s:3:\"url\";s:104:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-2/?instance_id=206/\";s:4:\"path\";s:33:\"/event/lomadtv-lawyers-friends-2/\";s:5:\"query\";s:15:\"instance_id=206\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5ba4210147a36cc5edb9a24947f4b50b\";a:10:{s:4:\"hash\";s:32:\"5ba4210147a36cc5edb9a24947f4b50b\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-episode-1-fool-proof-claims-using-evidence-in-ny-comp-claims/\";s:4:\"path\";s:92:\"/event/lomadtv-lawyers-friends-episode-1-fool-proof-claims-using-evidence-in-ny-comp-claims/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d2cbd6fe6bb0296dd5b3901107a3fc5\";a:10:{s:4:\"hash\";s:32:\"4d2cbd6fe6bb0296dd5b3901107a3fc5\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-episode-20-asthma-medical-treatment-guidelines/\";s:4:\"path\";s:78:\"/event/lomadtv-lawyers-friends-episode-20-asthma-medical-treatment-guidelines/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d0a76bc203713fa9425638df2b296276\";a:10:{s:4:\"hash\";s:32:\"d0a76bc203713fa9425638df2b296276\";s:3:\"url\";s:149:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-episode-20-asthma-medical-treatment-guidelines/?instance_id=318/\";s:4:\"path\";s:78:\"/event/lomadtv-lawyers-friends-episode-20-asthma-medical-treatment-guidelines/\";s:5:\"query\";s:15:\"instance_id=318\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f6634d5a4623f42cdc2e08e93184af93\";a:10:{s:4:\"hash\";s:32:\"f6634d5a4623f42cdc2e08e93184af93\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-episode-23/\";s:4:\"path\";s:42:\"/event/lomadtv-lawyers-friends-episode-23/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:83:\"LOMADtv: Lawyers & Friends – Episode 23 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"LOMADtv: Lawyers &amp; Friends  Episode 23 Featured Contact Information Recent Blog Posts Katrina Gr\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"209591fa126315937627b46ae94ffb69\";a:10:{s:4:\"hash\";s:32:\"209591fa126315937627b46ae94ffb69\";s:3:\"url\";s:113:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-episode-23/?instance_id=259/\";s:4:\"path\";s:42:\"/event/lomadtv-lawyers-friends-episode-23/\";s:5:\"query\";s:15:\"instance_id=259\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d0b17db2fa671df59d7701cbe337a7c5\";a:10:{s:4:\"hash\";s:32:\"d0b17db2fa671df59d7701cbe337a7c5\";s:3:\"url\";s:160:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-episode-3-changes-to-the-post-classification-standard-and-extreme-hardship/\";s:4:\"path\";s:106:\"/event/lomadtv-lawyers-friends-episode-3-changes-to-the-post-classification-standard-and-extreme-hardship/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d473c72237859dbb03d7f2903ba4c3d9\";a:10:{s:4:\"hash\";s:32:\"d473c72237859dbb03d7f2903ba4c3d9\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-episode-5-son-of-a-c-8-1b/?instance_id=214/\";s:4:\"path\";s:57:\"/event/lomadtv-lawyers-friends-episode-5-son-of-a-c-8-1b/\";s:5:\"query\";s:15:\"instance_id=214\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8893105b852877c0a31f9c60968c9093\";a:10:{s:4:\"hash\";s:32:\"8893105b852877c0a31f9c60968c9093\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-episode-8-idiopathic-accidents/?instance_id=237/\";s:4:\"path\";s:62:\"/event/lomadtv-lawyers-friends-episode-8-idiopathic-accidents/\";s:5:\"query\";s:15:\"instance_id=237\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5c861ec868bd4f60bb842c005e10b3dc\";a:10:{s:4:\"hash\";s:32:\"5c861ec868bd4f60bb842c005e10b3dc\";s:3:\"url\";s:109:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-episode-9-loss-transfer/\";s:4:\"path\";s:55:\"/event/lomadtv-lawyers-friends-episode-9-loss-transfer/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:97:\"LOMADtv: Lawyers & Friends – Episode 9, Loss Transfer | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"LOMADtv: Lawyers &amp; Friends  Episode 9, Loss Transfer Featured Contact Information Recent Blog Po\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"97892b1d0e1d498ba20e21e7d689f083\";a:10:{s:4:\"hash\";s:32:\"97892b1d0e1d498ba20e21e7d689f083\";s:3:\"url\";s:126:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-lawyers-friends-episode-9-loss-transfer/?instance_id=248/\";s:4:\"path\";s:55:\"/event/lomadtv-lawyers-friends-episode-9-loss-transfer/\";s:5:\"query\";s:15:\"instance_id=248\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:97:\"LOMADtv: Lawyers & Friends – Episode 9, Loss Transfer | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"LOMADtv: Lawyers &amp; Friends  Episode 9, Loss Transfer Featured Contact Information Recent Blog Po\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2edbb200ccfe302d7e43b3d9e2b1cd04\";a:10:{s:4:\"hash\";s:32:\"2edbb200ccfe302d7e43b3d9e2b1cd04\";s:3:\"url\";s:200:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-virtual-lawyers-friends-episode-21-a-year-in-review-case-law-from-the-appellate-division-third-department-in-2020/?instance_id=316/\";s:4:\"path\";s:129:\"/event/lomadtv-virtual-lawyers-friends-episode-21-a-year-in-review-case-law-from-the-appellate-division-third-department-in-2020/\";s:5:\"query\";s:15:\"instance_id=316\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"30d0ca2225103a37b91609d816231161\";a:10:{s:4:\"hash\";s:32:\"30d0ca2225103a37b91609d816231161\";s:3:\"url\";s:141:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lomadtv-virtual-lawyers-friends-episode-22-dont-play-with-msas/?instance_id=302/\";s:4:\"path\";s:70:\"/event/lomadtv-virtual-lawyers-friends-episode-22-dont-play-with-msas/\";s:5:\"query\";s:15:\"instance_id=302\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"564e900c4932398f2b4aa1af955249ee\";a:10:{s:4:\"hash\";s:32:\"564e900c4932398f2b4aa1af955249ee\";s:3:\"url\";s:87:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lunch-and-learn-with-esis/\";s:4:\"path\";s:33:\"/event/lunch-and-learn-with-esis/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ca8dfe685bae5ece56707dde78cb47ca\";a:10:{s:4:\"hash\";s:32:\"ca8dfe685bae5ece56707dde78cb47ca\";s:3:\"url\";s:104:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/lunch-and-learn-with-esis/?instance_id=252/\";s:4:\"path\";s:33:\"/event/lunch-and-learn-with-esis/\";s:5:\"query\";s:15:\"instance_id=252\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9d0b9606214fa7fdc9dbd57375968328\";a:10:{s:4:\"hash\";s:32:\"9d0b9606214fa7fdc9dbd57375968328\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/megans-medical-minutes-episode-1-medical-marijuana/?instance_id=70/\";s:4:\"path\";s:58:\"/event/megans-medical-minutes-episode-1-medical-marijuana/\";s:5:\"query\";s:14:\"instance_id=70\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:103:\"Megan’s Medical Minutes – Episode 1 – Medical Marijuana | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Megans Medical Minutes  Episode 1  Medical Marijuana Featured Contact Information Recent Blog Posts \";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"875402d93b7ff9fe5548b2967911fb0e\";a:10:{s:4:\"hash\";s:32:\"875402d93b7ff9fe5548b2967911fb0e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/megans-medical-minutes-episode-2-marijuana-variance/?instance_id=71/\";s:4:\"path\";s:59:\"/event/megans-medical-minutes-episode-2-marijuana-variance/\";s:5:\"query\";s:14:\"instance_id=71\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:104:\"Megan’s Medical Minutes – Episode 2 – Marijuana Variance | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Megans Medical Minutes  Episode 2  Marijuana Variance Featured Contact Information Recent Blog Posts\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"98e2dbeccbe7473b55cc743166cae60e\";a:10:{s:4:\"hash\";s:32:\"98e2dbeccbe7473b55cc743166cae60e\";s:3:\"url\";s:115:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/melissa-a-day-board-member-of-kids-chance-of-new-york/\";s:4:\"path\";s:61:\"/event/melissa-a-day-board-member-of-kids-chance-of-new-york/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"508f98eed710a816e12d20959672096a\";a:10:{s:4:\"hash\";s:32:\"508f98eed710a816e12d20959672096a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/melissa-a-day-board-member-of-kids-chance-of-new-york/?instance_id=256/\";s:4:\"path\";s:61:\"/event/melissa-a-day-board-member-of-kids-chance-of-new-york/\";s:5:\"query\";s:15:\"instance_id=256\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:103:\"Melissa A. Day – Board Member of Kids’ Chance of New York | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Melissa A. Day  Board Member of Kids Chance of New York Featured Contact Information Recent Blog Pos\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ad423ec936ed2acabab9155866cf2eac\";a:10:{s:4:\"hash\";s:32:\"ad423ec936ed2acabab9155866cf2eac\";s:3:\"url\";s:95:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/mock-hearing-presentation-nysasic/\";s:4:\"path\";s:41:\"/event/mock-hearing-presentation-nysasic/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:104:\"Mock Trial Presentation @ NYSASIC – May 2, 3 p.m. – 4 p.m. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Mock Trial Presentation @ NYSASIC  May 2, 3 p.m.  4 p.m. Featured Contact Information Recent Blog Po\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e15e3a9e24a5bfbf26b5a15d6f57b1de\";a:10:{s:4:\"hash\";s:32:\"e15e3a9e24a5bfbf26b5a15d6f57b1de\";s:3:\"url\";s:112:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/mock-hearing-presentation-nysasic/?instance_id=189/\";s:4:\"path\";s:41:\"/event/mock-hearing-presentation-nysasic/\";s:5:\"query\";s:15:\"instance_id=189\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f6310d3fb0e08fd4f03edb674d41170a\";a:10:{s:4:\"hash\";s:32:\"f6310d3fb0e08fd4f03edb674d41170a\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/on-the-bench-episode-4-you-cant-have-your-diaper-cake-and-eat-it-too/?instance_id=67/\";s:4:\"path\";s:76:\"/event/on-the-bench-episode-4-you-cant-have-your-diaper-cake-and-eat-it-too/\";s:5:\"query\";s:14:\"instance_id=67\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:118:\"On the Bench, Episode 4 – You Can’t Have Your Diaper Cake and Eat It Too | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"On the Bench, Episode 4  You Cant Have Your Diaper Cake and Eat It Too Featured Contact Information \";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1eb7790bedfaf739c0cc63a316fd0345\";a:10:{s:4:\"hash\";s:32:\"1eb7790bedfaf739c0cc63a316fd0345\";s:3:\"url\";s:114:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/on-the-bench-with-the-lomad-players/?instance_id=173/\";s:4:\"path\";s:43:\"/event/on-the-bench-with-the-lomad-players/\";s:5:\"query\";s:15:\"instance_id=173\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:106:\"On the Bench, Episode 10: These Are A Few of Our Favorite Things | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"On the Bench, Episode 10: These Are A Few of Our Favorite Things Featured Contact Information Recent\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3592269f5d747af209eb5cfc19549d6f\";a:10:{s:4:\"hash\";s:32:\"3592269f5d747af209eb5cfc19549d6f\";s:3:\"url\";s:99:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/rims-chapter-meeting/?instance_id=253/\";s:4:\"path\";s:28:\"/event/rims-chapter-meeting/\";s:5:\"query\";s:15:\"instance_id=253\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"06d2a0650e560e82d8150834c202898e\";a:10:{s:4:\"hash\";s:32:\"06d2a0650e560e82d8150834c202898e\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/rims-golf-tournament-sponsored-by-the-law-offices-of-melissa-a-day-pllc/\";s:4:\"path\";s:79:\"/event/rims-golf-tournament-sponsored-by-the-law-offices-of-melissa-a-day-pllc/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e222537dd2a66afbbc1638c5927f2036\";a:10:{s:4:\"hash\";s:32:\"e222537dd2a66afbbc1638c5927f2036\";s:3:\"url\";s:150:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/rims-golf-tournament-sponsored-by-the-law-offices-of-melissa-a-day-pllc/?instance_id=212/\";s:4:\"path\";s:79:\"/event/rims-golf-tournament-sponsored-by-the-law-offices-of-melissa-a-day-pllc/\";s:5:\"query\";s:15:\"instance_id=212\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f6bda59d9b98c1bffc84e7c8707fdc34\";a:10:{s:4:\"hash\";s:32:\"f6bda59d9b98c1bffc84e7c8707fdc34\";s:3:\"url\";s:114:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/thank-you-megan-happy-hour-send-off/?instance_id=167/\";s:4:\"path\";s:43:\"/event/thank-you-megan-happy-hour-send-off/\";s:5:\"query\";s:15:\"instance_id=167\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:88:\"Thank You, Megan! – Happy/Sad Hour Send Off! | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Thank You, Megan!  Happy/Sad Hour Send Off! Featured Contact Information Recent Blog Posts Attorney \";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"649477869bc59400120549b43969df40\";a:10:{s:4:\"hash\";s:32:\"649477869bc59400120549b43969df40\";s:3:\"url\";s:110:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/event/workers-compensation-law-update/?instance_id=254/\";s:4:\"path\";s:39:\"/event/workers-compensation-law-update/\";s:5:\"query\";s:15:\"instance_id=254\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:76:\"Workers’ Compensation Law Update | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Workers Compensation Law Update Featured Contact Information Recent Blog Posts The Law Offices of Me\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b133d2ebb63f2d092caed9011a4beb0b\";a:10:{s:4:\"hash\";s:32:\"b133d2ebb63f2d092caed9011a4beb0b\";s:3:\"url\";s:62:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/\";s:4:\"path\";s:8:\"/events/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b17b69a7254a235132c9050e5fa85dab\";a:10:{s:4:\"hash\";s:32:\"b17b69a7254a235132c9050e5fa85dab\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1525147200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1525147200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b3a67bdf7f3842c54f9a8123b99c8cb0\";a:10:{s:4:\"hash\";s:32:\"b3a67bdf7f3842c54f9a8123b99c8cb0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1541044800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1541044800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1aaee26d023f78d4c33b96bb29f9ae38\";a:10:{s:4:\"hash\";s:32:\"1aaee26d023f78d4c33b96bb29f9ae38\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1556683200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1556683200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a6bdc2ff3b083bea01fcbb69892d8e1b\";a:10:{s:4:\"hash\";s:32:\"a6bdc2ff3b083bea01fcbb69892d8e1b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1556683200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1556683200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a1c552cfc42f54b9cfd765371c808e50\";a:10:{s:4:\"hash\";s:32:\"a1c552cfc42f54b9cfd765371c808e50\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1556683200/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1556683200/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cd3dbdffde02ddfc5875495f1d2bcbce\";a:10:{s:4:\"hash\";s:32:\"cd3dbdffde02ddfc5875495f1d2bcbce\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1556683200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1556683200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"767c9feee4afbe9c5d7737272630c925\";a:10:{s:4:\"hash\";s:32:\"767c9feee4afbe9c5d7737272630c925\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1557201600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1557201600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"560e76cab2f779c2bfadf3b3bd59288c\";a:10:{s:4:\"hash\";s:32:\"560e76cab2f779c2bfadf3b3bd59288c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1557201600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1557201600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2a3eeeddb3ce33bd81e0cd786b0bbae7\";a:10:{s:4:\"hash\";s:32:\"2a3eeeddb3ce33bd81e0cd786b0bbae7\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1557201600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1557201600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2f7e111c8e4343f5a878c47844f3970a\";a:10:{s:4:\"hash\";s:32:\"2f7e111c8e4343f5a878c47844f3970a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1557288000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1557288000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0091e9d58b02d3488b1d973931a5ef00\";a:10:{s:4:\"hash\";s:32:\"0091e9d58b02d3488b1d973931a5ef00\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1557806400/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1557806400/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cfde2414aa560bbeaba3a54363dcd162\";a:10:{s:4:\"hash\";s:32:\"cfde2414aa560bbeaba3a54363dcd162\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1557806400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1557806400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e369b4af454bac2173e6ebfe4fc9ed5c\";a:10:{s:4:\"hash\";s:32:\"e369b4af454bac2173e6ebfe4fc9ed5c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1557806400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1557806400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"40e2e15c5d4c41c81424b12bba636798\";a:10:{s:4:\"hash\";s:32:\"40e2e15c5d4c41c81424b12bba636798\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1557806400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1557806400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1f304d85c67edf2bf79f28e249e74ec2\";a:10:{s:4:\"hash\";s:32:\"1f304d85c67edf2bf79f28e249e74ec2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1557892800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1557892800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8f13e8554d670cc6840847aeff3c5c39\";a:10:{s:4:\"hash\";s:32:\"8f13e8554d670cc6840847aeff3c5c39\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1558238400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1558238400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1cb5f9cfe4957d1381a549b66e288bda\";a:10:{s:4:\"hash\";s:32:\"1cb5f9cfe4957d1381a549b66e288bda\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1558324800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1558324800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"08a61ff44080dc37bd58bd8fb486ff5e\";a:10:{s:4:\"hash\";s:32:\"08a61ff44080dc37bd58bd8fb486ff5e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1558324800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1558324800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0916fb6c4fd38270140be7026d0080cd\";a:10:{s:4:\"hash\";s:32:\"0916fb6c4fd38270140be7026d0080cd\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1558411200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1558411200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b3f86d4e165186e901296b45a109b5f9\";a:10:{s:4:\"hash\";s:32:\"b3f86d4e165186e901296b45a109b5f9\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1558497600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1558497600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c342934e6399408b36015778eeb5a48\";a:10:{s:4:\"hash\";s:32:\"3c342934e6399408b36015778eeb5a48\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1558756800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1558756800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7554189974e34015f0e6d41bee7e7d09\";a:10:{s:4:\"hash\";s:32:\"7554189974e34015f0e6d41bee7e7d09\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1558756800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1558756800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d16f4aa86e1803730d2620d8a0587644\";a:10:{s:4:\"hash\";s:32:\"d16f4aa86e1803730d2620d8a0587644\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1558756800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1558756800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"03c8931f42cd2e0ca67a48b6939e2430\";a:10:{s:4:\"hash\";s:32:\"03c8931f42cd2e0ca67a48b6939e2430\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1558756800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1558756800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"85b080f756e48972a53acb0ea330f60b\";a:10:{s:4:\"hash\";s:32:\"85b080f756e48972a53acb0ea330f60b\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1558929600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1558929600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2a4bdaecd4e2d0d93beec255ad02df38\";a:10:{s:4:\"hash\";s:32:\"2a4bdaecd4e2d0d93beec255ad02df38\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1558929600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1558929600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"08375f662075e0fb8451a0db4f415219\";a:10:{s:4:\"hash\";s:32:\"08375f662075e0fb8451a0db4f415219\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1558929600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1558929600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"803f554a9643d3c3fe8ddf5d51462032\";a:10:{s:4:\"hash\";s:32:\"803f554a9643d3c3fe8ddf5d51462032\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1558929600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1558929600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"026421d481845f6596126d2cd6fbe0ab\";a:10:{s:4:\"hash\";s:32:\"026421d481845f6596126d2cd6fbe0ab\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559188800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1559188800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f9e72db3018636324b4a04f1b732519e\";a:10:{s:4:\"hash\";s:32:\"f9e72db3018636324b4a04f1b732519e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559188800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1559188800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3713f69ce6b18384ab40dba542291d71\";a:10:{s:4:\"hash\";s:32:\"3713f69ce6b18384ab40dba542291d71\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559188800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1559188800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1ab5f3f24702181aab48cf5fa0463483\";a:10:{s:4:\"hash\";s:32:\"1ab5f3f24702181aab48cf5fa0463483\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559188800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1559188800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ad0a0c9c6ff7e4dde9caa78beb886aac\";a:10:{s:4:\"hash\";s:32:\"ad0a0c9c6ff7e4dde9caa78beb886aac\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559275200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1559275200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dd8a331ebaab3356301ab4af8acdc96a\";a:10:{s:4:\"hash\";s:32:\"dd8a331ebaab3356301ab4af8acdc96a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559275200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1559275200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5cb3daa93da476864d896171bd35973f\";a:10:{s:4:\"hash\";s:32:\"5cb3daa93da476864d896171bd35973f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559361600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1559361600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5ab450a66f5f1d0feb5b1a958c9aeeb5\";a:10:{s:4:\"hash\";s:32:\"5ab450a66f5f1d0feb5b1a958c9aeeb5\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559361600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1559361600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9247d30c848cee723c2f61fb43e7ca54\";a:10:{s:4:\"hash\";s:32:\"9247d30c848cee723c2f61fb43e7ca54\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559361600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1559361600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f2d5819c4e6ac453b1f7a0fb078a158\";a:10:{s:4:\"hash\";s:32:\"7f2d5819c4e6ac453b1f7a0fb078a158\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559361600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1559361600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"197fb368aa65de1baeb8b56ba90c8857\";a:10:{s:4:\"hash\";s:32:\"197fb368aa65de1baeb8b56ba90c8857\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559361600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1559361600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0550b9b927a2e9fe9f52a02403d1027e\";a:10:{s:4:\"hash\";s:32:\"0550b9b927a2e9fe9f52a02403d1027e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559448000/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1559448000/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5a79412429f28a49bf1965a611c7c893\";a:10:{s:4:\"hash\";s:32:\"5a79412429f28a49bf1965a611c7c893\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559534400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1559534400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1d04d19dacf4d5dc7f266b2c03b754e0\";a:10:{s:4:\"hash\";s:32:\"1d04d19dacf4d5dc7f266b2c03b754e0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559620800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1559620800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f6991c3d22451897ea7da497c70cde62\";a:10:{s:4:\"hash\";s:32:\"f6991c3d22451897ea7da497c70cde62\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559620800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1559620800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"271ef49d84f0d84ece7552330991efa7\";a:10:{s:4:\"hash\";s:32:\"271ef49d84f0d84ece7552330991efa7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559620800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1559620800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ea414e62139b05200b8079c53166f778\";a:10:{s:4:\"hash\";s:32:\"ea414e62139b05200b8079c53166f778\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559620800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1559620800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ba7ebaa055f1d212961f9cd9407b8840\";a:10:{s:4:\"hash\";s:32:\"ba7ebaa055f1d212961f9cd9407b8840\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559707200/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1559707200/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cbaad2c63fe88d4b980db028f6c03aec\";a:10:{s:4:\"hash\";s:32:\"cbaad2c63fe88d4b980db028f6c03aec\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559707200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1559707200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"40cc2f12cf3c5b5453ad69d405db5fcf\";a:10:{s:4:\"hash\";s:32:\"40cc2f12cf3c5b5453ad69d405db5fcf\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559707200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1559707200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5c41fbd01db9bb34d68bcf3fdbb76494\";a:10:{s:4:\"hash\";s:32:\"5c41fbd01db9bb34d68bcf3fdbb76494\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559707200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1559707200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c3dc1ae3a256dd70175ac02318bcc4df\";a:10:{s:4:\"hash\";s:32:\"c3dc1ae3a256dd70175ac02318bcc4df\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559793600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1559793600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ee73c84a4d86ff1741352d33df3e951b\";a:10:{s:4:\"hash\";s:32:\"ee73c84a4d86ff1741352d33df3e951b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559880000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1559880000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f948b15849e81ce45af29e501d021d1d\";a:10:{s:4:\"hash\";s:32:\"f948b15849e81ce45af29e501d021d1d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1559880000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1559880000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4112b45b4fb8513aca4801d7f7e5b198\";a:10:{s:4:\"hash\";s:32:\"4112b45b4fb8513aca4801d7f7e5b198\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560052800/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1560052800/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ac7f069d91a80e98d01c303f0a329803\";a:10:{s:4:\"hash\";s:32:\"ac7f069d91a80e98d01c303f0a329803\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560052800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1560052800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"efc02a68439a806b8427604444f4f141\";a:10:{s:4:\"hash\";s:32:\"efc02a68439a806b8427604444f4f141\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560139200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1560139200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7304cef0017e7ed6e84d661d52aef34f\";a:10:{s:4:\"hash\";s:32:\"7304cef0017e7ed6e84d661d52aef34f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560139200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1560139200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d33de35bf2c3e4de821f37399300d3a3\";a:10:{s:4:\"hash\";s:32:\"d33de35bf2c3e4de821f37399300d3a3\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560139200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1560139200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aad92878d9a5893109605edc8ca0c4aa\";a:10:{s:4:\"hash\";s:32:\"aad92878d9a5893109605edc8ca0c4aa\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560139200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1560139200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"745c30e12366cfd7e9ecdc5e6acbac7f\";a:10:{s:4:\"hash\";s:32:\"745c30e12366cfd7e9ecdc5e6acbac7f\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560139200/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1560139200/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"532597e5a04bfa8972f38975c79c9890\";a:10:{s:4:\"hash\";s:32:\"532597e5a04bfa8972f38975c79c9890\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560139200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1560139200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7481fc8014881dcb80f7cb6186b3e6ba\";a:10:{s:4:\"hash\";s:32:\"7481fc8014881dcb80f7cb6186b3e6ba\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560139200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1560139200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"99a0557ae5adc1eb66290e402923110b\";a:10:{s:4:\"hash\";s:32:\"99a0557ae5adc1eb66290e402923110b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560139200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1560139200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5668f6cf4687a21852de0f96f593546c\";a:10:{s:4:\"hash\";s:32:\"5668f6cf4687a21852de0f96f593546c\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560139200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1560139200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1b9c568a7eaa90d38dac15b9dc7e87b8\";a:10:{s:4:\"hash\";s:32:\"1b9c568a7eaa90d38dac15b9dc7e87b8\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560225600/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1560225600/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ee049599f95057ad74bbd8f050667b54\";a:10:{s:4:\"hash\";s:32:\"ee049599f95057ad74bbd8f050667b54\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560225600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1560225600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"53e1bf7a85c11a876d419b88d6f7e44e\";a:10:{s:4:\"hash\";s:32:\"53e1bf7a85c11a876d419b88d6f7e44e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560312000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1560312000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3e4fd3ef2641e0ea036f1a3fa30914f9\";a:10:{s:4:\"hash\";s:32:\"3e4fd3ef2641e0ea036f1a3fa30914f9\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560312000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1560312000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0bced5e8c8ee70dd88292387b75a0244\";a:10:{s:4:\"hash\";s:32:\"0bced5e8c8ee70dd88292387b75a0244\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560571200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1560571200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"82a4b0e255bd6e896dac1f12ac7f0759\";a:10:{s:4:\"hash\";s:32:\"82a4b0e255bd6e896dac1f12ac7f0759\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560830400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1560830400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"24eacebec571118f138eabc3b7725180\";a:10:{s:4:\"hash\";s:32:\"24eacebec571118f138eabc3b7725180\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560830400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1560830400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f08e9a81b05a1b1646d1399aafc59724\";a:10:{s:4:\"hash\";s:32:\"f08e9a81b05a1b1646d1399aafc59724\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560830400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1560830400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a52154db6b4913ecc63c163d43ea7b4a\";a:10:{s:4:\"hash\";s:32:\"a52154db6b4913ecc63c163d43ea7b4a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560916800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1560916800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c66ad8b03c81589743785db003af456\";a:10:{s:4:\"hash\";s:32:\"3c66ad8b03c81589743785db003af456\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1560916800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1560916800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1c47886fc39fd3827b11e22c82b28cd9\";a:10:{s:4:\"hash\";s:32:\"1c47886fc39fd3827b11e22c82b28cd9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1561176000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1561176000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3483d6a1f3e7ba1bc664ef65411b0be1\";a:10:{s:4:\"hash\";s:32:\"3483d6a1f3e7ba1bc664ef65411b0be1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1561262400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1561262400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"feb6de2f03f189966046c1dd64e6e93a\";a:10:{s:4:\"hash\";s:32:\"feb6de2f03f189966046c1dd64e6e93a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1561262400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1561262400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"168ab516b9d9ca02dc0bfd2d180ec6ba\";a:10:{s:4:\"hash\";s:32:\"168ab516b9d9ca02dc0bfd2d180ec6ba\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1561608000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1561608000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bbf15cc918523f85c2bde4265ed6d1e8\";a:10:{s:4:\"hash\";s:32:\"bbf15cc918523f85c2bde4265ed6d1e8\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1561694400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1561694400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"67bc37155768b5bd2f13b74f89d26642\";a:10:{s:4:\"hash\";s:32:\"67bc37155768b5bd2f13b74f89d26642\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1561953600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1561953600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"30b913976b48afc4fe9b28d6f5104d8c\";a:10:{s:4:\"hash\";s:32:\"30b913976b48afc4fe9b28d6f5104d8c\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1561953600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1561953600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3f7eb041375d24296e37e9ad284d30ba\";a:10:{s:4:\"hash\";s:32:\"3f7eb041375d24296e37e9ad284d30ba\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1561953600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1561953600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7ab90fa9e805e77cf23736e9258538b9\";a:10:{s:4:\"hash\";s:32:\"7ab90fa9e805e77cf23736e9258538b9\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1561953600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1561953600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f7845d9673150f11c58fc92f3ece7cee\";a:10:{s:4:\"hash\";s:32:\"f7845d9673150f11c58fc92f3ece7cee\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1562385600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1562385600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"15c099069469100f81e72c807811add8\";a:10:{s:4:\"hash\";s:32:\"15c099069469100f81e72c807811add8\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1562904000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1562904000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"42e6584c5bbd74a60468c5601d873058\";a:10:{s:4:\"hash\";s:32:\"42e6584c5bbd74a60468c5601d873058\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1562990400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1562990400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"be39df71682b0b9c24e7a4166dafef77\";a:10:{s:4:\"hash\";s:32:\"be39df71682b0b9c24e7a4166dafef77\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1562990400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1562990400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3d69c5e0476ba62b04acdbd54904a477\";a:10:{s:4:\"hash\";s:32:\"3d69c5e0476ba62b04acdbd54904a477\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1562990400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1562990400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"68024cb0bcf5d1b0b41bffb199da4dec\";a:10:{s:4:\"hash\";s:32:\"68024cb0bcf5d1b0b41bffb199da4dec\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1563076800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1563076800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f3987da3f09e9e0c6c060156c8bfbb27\";a:10:{s:4:\"hash\";s:32:\"f3987da3f09e9e0c6c060156c8bfbb27\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1563163200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1563163200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c89697be1a8df1b3075907405b3034d2\";a:10:{s:4:\"hash\";s:32:\"c89697be1a8df1b3075907405b3034d2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1563163200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1563163200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6ddbe460e3d7e93464bd23d738a3b2ce\";a:10:{s:4:\"hash\";s:32:\"6ddbe460e3d7e93464bd23d738a3b2ce\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1563163200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1563163200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"86312b7b799e3a86ed2945fb479318a4\";a:10:{s:4:\"hash\";s:32:\"86312b7b799e3a86ed2945fb479318a4\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1563163200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1563163200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"666702951eab03147e7cacd2d33143de\";a:10:{s:4:\"hash\";s:32:\"666702951eab03147e7cacd2d33143de\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1563508800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1563508800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"05c94b20f2406e4da5330e820dd6be8a\";a:10:{s:4:\"hash\";s:32:\"05c94b20f2406e4da5330e820dd6be8a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1564632000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1564632000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7b9b16c0f18ce97cb906c6a49db870f9\";a:10:{s:4:\"hash\";s:32:\"7b9b16c0f18ce97cb906c6a49db870f9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1564632000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1564632000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c469c13c673a1e38f06a4e8a0d0b7b3\";a:10:{s:4:\"hash\";s:32:\"2c469c13c673a1e38f06a4e8a0d0b7b3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1564718400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1564718400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e7431f0d98e1cbc005b53485b3706cac\";a:10:{s:4:\"hash\";s:32:\"e7431f0d98e1cbc005b53485b3706cac\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1564718400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1564718400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"508dba9a40c8ad8898cb681526623f6a\";a:10:{s:4:\"hash\";s:32:\"508dba9a40c8ad8898cb681526623f6a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1564718400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1564718400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e536ade53c01686f8efef2ac22c09e5f\";a:10:{s:4:\"hash\";s:32:\"e536ade53c01686f8efef2ac22c09e5f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1564718400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1564718400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3926ba5b368fad835ecd68b777f779f5\";a:10:{s:4:\"hash\";s:32:\"3926ba5b368fad835ecd68b777f779f5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1564804800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1564804800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7c2be9558fe19c139341a482d959e590\";a:10:{s:4:\"hash\";s:32:\"7c2be9558fe19c139341a482d959e590\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1564804800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1564804800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a452604acaeffb99a8d6a20a12333d00\";a:10:{s:4:\"hash\";s:32:\"a452604acaeffb99a8d6a20a12333d00\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1564804800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1564804800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"feda61b9a00eab9a72e156830834150e\";a:10:{s:4:\"hash\";s:32:\"feda61b9a00eab9a72e156830834150e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1567051200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1567051200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4790070c566742c23ddb8ef82f827565\";a:10:{s:4:\"hash\";s:32:\"4790070c566742c23ddb8ef82f827565\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1567051200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1567051200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a877bcb7cadea392a87d19c586eb682c\";a:10:{s:4:\"hash\";s:32:\"a877bcb7cadea392a87d19c586eb682c\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1567137600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1567137600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d36bfdaf4b837e8e956670a496614727\";a:10:{s:4:\"hash\";s:32:\"d36bfdaf4b837e8e956670a496614727\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1567224000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1567224000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6532ca61574cfd224c97ab23691e965a\";a:10:{s:4:\"hash\";s:32:\"6532ca61574cfd224c97ab23691e965a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1572580800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1572580800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"730f0376f339341c14a58a00477ec372\";a:10:{s:4:\"hash\";s:32:\"730f0376f339341c14a58a00477ec372\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1572580800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1572580800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f1fda4af52891db0489d6d2917a98b76\";a:10:{s:4:\"hash\";s:32:\"f1fda4af52891db0489d6d2917a98b76\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1572667200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1572667200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2d033a8c3a179dc9f2315c3964ce1fd0\";a:10:{s:4:\"hash\";s:32:\"2d033a8c3a179dc9f2315c3964ce1fd0\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1572753600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1572753600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c403277c6819a2a263bdf6264d3366c\";a:10:{s:4:\"hash\";s:32:\"3c403277c6819a2a263bdf6264d3366c\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1573275600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1573275600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d22980d7d798e1d290cf3ec2d6ceedb9\";a:10:{s:4:\"hash\";s:32:\"d22980d7d798e1d290cf3ec2d6ceedb9\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1573362000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1573362000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6532c312badc87f1163b0e2b75ac0659\";a:10:{s:4:\"hash\";s:32:\"6532c312badc87f1163b0e2b75ac0659\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1573448400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1573448400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8150e689dfbe35829e2393ad6fcafa6d\";a:10:{s:4:\"hash\";s:32:\"8150e689dfbe35829e2393ad6fcafa6d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1573707600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1573707600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"23b0d7c27e4f22191c55cbd4742bca1c\";a:10:{s:4:\"hash\";s:32:\"23b0d7c27e4f22191c55cbd4742bca1c\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1574053200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1574053200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b96346ad821dba9fa7bf326df216b0d5\";a:10:{s:4:\"hash\";s:32:\"b96346ad821dba9fa7bf326df216b0d5\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1574485200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1574485200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3decbb69c3a25a0de8845b54cb598665\";a:10:{s:4:\"hash\";s:32:\"3decbb69c3a25a0de8845b54cb598665\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1574658000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1574658000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a455bdc072ef08c7787b1f6711bb51be\";a:10:{s:4:\"hash\";s:32:\"a455bdc072ef08c7787b1f6711bb51be\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1574830800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1574830800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"99393a6037d0c9be1052077967fc6bb2\";a:10:{s:4:\"hash\";s:32:\"99393a6037d0c9be1052077967fc6bb2\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1574917200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1574917200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2ea2ae0080bf56a28cafac5f933824bd\";a:10:{s:4:\"hash\";s:32:\"2ea2ae0080bf56a28cafac5f933824bd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1580533200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1580533200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"33a9e5e96bb24ed310f1631a2607ad35\";a:10:{s:4:\"hash\";s:32:\"33a9e5e96bb24ed310f1631a2607ad35\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1585713600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1585713600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cd07b41276f886cbee94890428e47cb0\";a:10:{s:4:\"hash\";s:32:\"cd07b41276f886cbee94890428e47cb0\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1586318400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1586318400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cdeb067f55cf395911d09b32969ef2ea\";a:10:{s:4:\"hash\";s:32:\"cdeb067f55cf395911d09b32969ef2ea\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1586577600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1586577600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ea3351ccc9b776fcb23398bdff01e447\";a:10:{s:4:\"hash\";s:32:\"ea3351ccc9b776fcb23398bdff01e447\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1587096000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1587096000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"63bf82c86f8cec42b929de6fb8d189c9\";a:10:{s:4:\"hash\";s:32:\"63bf82c86f8cec42b929de6fb8d189c9\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1587355200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1587355200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ee9b641086721b4c058b021b1ed274d3\";a:10:{s:4:\"hash\";s:32:\"ee9b641086721b4c058b021b1ed274d3\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1587960000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1587960000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6c6cff81bd7bba23dc7acf0001a841ba\";a:10:{s:4:\"hash\";s:32:\"6c6cff81bd7bba23dc7acf0001a841ba\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1588132800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1588132800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"14a01358bd6ec7c8f9d122a1be463d39\";a:10:{s:4:\"hash\";s:32:\"14a01358bd6ec7c8f9d122a1be463d39\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1588305600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1588305600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2e9358a18572639676b6cb0fccc930ae\";a:10:{s:4:\"hash\";s:32:\"2e9358a18572639676b6cb0fccc930ae\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1588305600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1588305600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3834961f2da84631233868a90f328bd9\";a:10:{s:4:\"hash\";s:32:\"3834961f2da84631233868a90f328bd9\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1588305600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1588305600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4f50aa73959472e5f0df24cbbe502eba\";a:10:{s:4:\"hash\";s:32:\"4f50aa73959472e5f0df24cbbe502eba\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1588305600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1588305600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b083135b1fef2dbda91d41e9bd3ae377\";a:10:{s:4:\"hash\";s:32:\"b083135b1fef2dbda91d41e9bd3ae377\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1588305600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1588305600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f916348dcf34d949c1ffb6a70e0369e1\";a:10:{s:4:\"hash\";s:32:\"f916348dcf34d949c1ffb6a70e0369e1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1588651200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1588651200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1326e9fecafbfc7e74fcfb52e50286be\";a:10:{s:4:\"hash\";s:32:\"1326e9fecafbfc7e74fcfb52e50286be\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1588651200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1588651200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7edfefd8c983a2e9093fedac5de140c0\";a:10:{s:4:\"hash\";s:32:\"7edfefd8c983a2e9093fedac5de140c0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1588737600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1588737600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"612e1703de4e37aec5f713f6089f418b\";a:10:{s:4:\"hash\";s:32:\"612e1703de4e37aec5f713f6089f418b\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1588737600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1588737600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1ad5c470e8f8d96fccc2c24ab781e483\";a:10:{s:4:\"hash\";s:32:\"1ad5c470e8f8d96fccc2c24ab781e483\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1588824000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1588824000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9b5e63ab1f15d6dc3ea75150024169d5\";a:10:{s:4:\"hash\";s:32:\"9b5e63ab1f15d6dc3ea75150024169d5\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1589428800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1589428800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"279ad214b947eaf4f74b18ea5878e5be\";a:10:{s:4:\"hash\";s:32:\"279ad214b947eaf4f74b18ea5878e5be\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1589601600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1589601600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c1a73174c7245fd0e3d8107e9d638c3f\";a:10:{s:4:\"hash\";s:32:\"c1a73174c7245fd0e3d8107e9d638c3f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1589688000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1589688000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"28ee22444f705327f55bd2614b315a47\";a:10:{s:4:\"hash\";s:32:\"28ee22444f705327f55bd2614b315a47\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1589688000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1589688000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"68038db4b2fc2112dce2f4bbe9f243e7\";a:10:{s:4:\"hash\";s:32:\"68038db4b2fc2112dce2f4bbe9f243e7\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1589688000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1589688000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9a7cfdeb881e8e61904bb21c02a5fbe2\";a:10:{s:4:\"hash\";s:32:\"9a7cfdeb881e8e61904bb21c02a5fbe2\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1589860800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1589860800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"484dd2daae6799c78bf0941e06910069\";a:10:{s:4:\"hash\";s:32:\"484dd2daae6799c78bf0941e06910069\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1589860800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1589860800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"80072689fd6ddf0328d29a535d6bb115\";a:10:{s:4:\"hash\";s:32:\"80072689fd6ddf0328d29a535d6bb115\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1589860800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1589860800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0afd23fd9c52bc418e0ebce589decf51\";a:10:{s:4:\"hash\";s:32:\"0afd23fd9c52bc418e0ebce589decf51\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1589947200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1589947200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"81f61c720759fe63d888c85fd32d85e2\";a:10:{s:4:\"hash\";s:32:\"81f61c720759fe63d888c85fd32d85e2\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1589947200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1589947200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4c79e7adaae7b121b003807df7badce2\";a:10:{s:4:\"hash\";s:32:\"4c79e7adaae7b121b003807df7badce2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1589947200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1589947200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c88469a9daaad91729b49cbb5c678221\";a:10:{s:4:\"hash\";s:32:\"c88469a9daaad91729b49cbb5c678221\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1589947200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1589947200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5bdba15990192a8d21253009a9a12e98\";a:10:{s:4:\"hash\";s:32:\"5bdba15990192a8d21253009a9a12e98\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1590033600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1590033600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"de657b9abd307e3b49803012e148fc8d\";a:10:{s:4:\"hash\";s:32:\"de657b9abd307e3b49803012e148fc8d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1590033600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1590033600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0bf517f228071d66295baf607e6aeabb\";a:10:{s:4:\"hash\";s:32:\"0bf517f228071d66295baf607e6aeabb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1590033600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1590033600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c7a966ba88a3db3d748842b91f05c5f\";a:10:{s:4:\"hash\";s:32:\"3c7a966ba88a3db3d748842b91f05c5f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1590033600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1590033600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"83ee8409ef3310d6d1d0c4560f886561\";a:10:{s:4:\"hash\";s:32:\"83ee8409ef3310d6d1d0c4560f886561\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1590379200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1590379200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4eb1a51732e09394b5d345a219056868\";a:10:{s:4:\"hash\";s:32:\"4eb1a51732e09394b5d345a219056868\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1590552000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1590552000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4318e410bd9f668392b42b572cd99afe\";a:10:{s:4:\"hash\";s:32:\"4318e410bd9f668392b42b572cd99afe\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1590638400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1590638400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ea47229d554fb79f82f151c997e31157\";a:10:{s:4:\"hash\";s:32:\"ea47229d554fb79f82f151c997e31157\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1590638400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1590638400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7ebffd0beeca73d3edb57cdfe8a74a89\";a:10:{s:4:\"hash\";s:32:\"7ebffd0beeca73d3edb57cdfe8a74a89\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1590984000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1590984000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f9bea7323652d24107a06f306484f60e\";a:10:{s:4:\"hash\";s:32:\"f9bea7323652d24107a06f306484f60e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1590984000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1590984000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"74f8e564d803af190b17285dd62e2e00\";a:10:{s:4:\"hash\";s:32:\"74f8e564d803af190b17285dd62e2e00\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1590984000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1590984000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"10364944a474ebbcca6c1a0a0eec90d8\";a:10:{s:4:\"hash\";s:32:\"10364944a474ebbcca6c1a0a0eec90d8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1590984000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1590984000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cb039bef3ac29269d35deb415f4e3e40\";a:10:{s:4:\"hash\";s:32:\"cb039bef3ac29269d35deb415f4e3e40\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1590984000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1590984000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4813fb6a93909185bf4c370edd4d4b23\";a:10:{s:4:\"hash\";s:32:\"4813fb6a93909185bf4c370edd4d4b23\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1591070400/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1591070400/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"21abcfe569de3b6839ce9011bfd1b976\";a:10:{s:4:\"hash\";s:32:\"21abcfe569de3b6839ce9011bfd1b976\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1591070400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1591070400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e59f9947b9eff963083edf64f60bef44\";a:10:{s:4:\"hash\";s:32:\"e59f9947b9eff963083edf64f60bef44\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1591070400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1591070400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d448567e21168a3dd32757b76faa8e09\";a:10:{s:4:\"hash\";s:32:\"d448567e21168a3dd32757b76faa8e09\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1591156800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1591156800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dece6c6bd70c15619fab3c19e470d5cf\";a:10:{s:4:\"hash\";s:32:\"dece6c6bd70c15619fab3c19e470d5cf\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1591156800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1591156800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aeee902d1f7aacc37a5e0aa627946bcb\";a:10:{s:4:\"hash\";s:32:\"aeee902d1f7aacc37a5e0aa627946bcb\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1591243200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1591243200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a7d8251fae0c87ed0a4eee398b1a5945\";a:10:{s:4:\"hash\";s:32:\"a7d8251fae0c87ed0a4eee398b1a5945\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1591329600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1591329600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"510fd8112becc7530a71ba8bdc3d2391\";a:10:{s:4:\"hash\";s:32:\"510fd8112becc7530a71ba8bdc3d2391\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1591588800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1591588800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"40c3de436225f29949b8f22aad06efc9\";a:10:{s:4:\"hash\";s:32:\"40c3de436225f29949b8f22aad06efc9\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1591675200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1591675200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e5c9743f382e43a3b63547ec274b3337\";a:10:{s:4:\"hash\";s:32:\"e5c9743f382e43a3b63547ec274b3337\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1591675200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1591675200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fb1b26c07faf7685b0804554fb2dca27\";a:10:{s:4:\"hash\";s:32:\"fb1b26c07faf7685b0804554fb2dca27\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1591675200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1591675200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0b5eb1a0ab78c4927c04401088d2f80f\";a:10:{s:4:\"hash\";s:32:\"0b5eb1a0ab78c4927c04401088d2f80f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1591761600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1591761600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5538e56816708b93c96e8a3391ee40bc\";a:10:{s:4:\"hash\";s:32:\"5538e56816708b93c96e8a3391ee40bc\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1591761600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1591761600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"000846d39c80d9aeab4da99215db4a7a\";a:10:{s:4:\"hash\";s:32:\"000846d39c80d9aeab4da99215db4a7a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1592020800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1592020800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"902dfbcda33c6a5d821a788f4a7bf862\";a:10:{s:4:\"hash\";s:32:\"902dfbcda33c6a5d821a788f4a7bf862\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1592107200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1592107200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"035171d22eea1c11f74de4e83aa083a3\";a:10:{s:4:\"hash\";s:32:\"035171d22eea1c11f74de4e83aa083a3\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1592107200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1592107200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dc76d4064a34f53affb13ca51bce0a93\";a:10:{s:4:\"hash\";s:32:\"dc76d4064a34f53affb13ca51bce0a93\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1592280000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1592280000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a9f254e3ce54af88bded73c8208ba00f\";a:10:{s:4:\"hash\";s:32:\"a9f254e3ce54af88bded73c8208ba00f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1592280000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1592280000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"80bc0b595dfa746711b15fe9f26b7c10\";a:10:{s:4:\"hash\";s:32:\"80bc0b595dfa746711b15fe9f26b7c10\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1592366400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1592366400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"553f4b8c541c700d7d9b85975ac1e5cf\";a:10:{s:4:\"hash\";s:32:\"553f4b8c541c700d7d9b85975ac1e5cf\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593057600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1593057600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1233a57fa88c51a5e558c3588d51809e\";a:10:{s:4:\"hash\";s:32:\"1233a57fa88c51a5e558c3588d51809e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593144000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1593144000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b78309f86ae084851f84d57ec3e965e8\";a:10:{s:4:\"hash\";s:32:\"b78309f86ae084851f84d57ec3e965e8\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593144000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1593144000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f7a9cc03fa6b7de943b98ff96e3819e3\";a:10:{s:4:\"hash\";s:32:\"f7a9cc03fa6b7de943b98ff96e3819e3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593576000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1593576000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8f0064665ae2d98f62f4c2dafa8d2064\";a:10:{s:4:\"hash\";s:32:\"8f0064665ae2d98f62f4c2dafa8d2064\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593576000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1593576000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8044002f0d21460fe99bab1c442afa69\";a:10:{s:4:\"hash\";s:32:\"8044002f0d21460fe99bab1c442afa69\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593576000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1593576000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a8f6d12fa89b1359860721d9cdfb376b\";a:10:{s:4:\"hash\";s:32:\"a8f6d12fa89b1359860721d9cdfb376b\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593576000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1593576000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"673aa35407a6ef703067a0f15b6abb0f\";a:10:{s:4:\"hash\";s:32:\"673aa35407a6ef703067a0f15b6abb0f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593662400/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1593662400/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"770321f1c5f23f8afb949188e16d298a\";a:10:{s:4:\"hash\";s:32:\"770321f1c5f23f8afb949188e16d298a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593662400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1593662400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8fd2eed20601c4ff2524efb570458b50\";a:10:{s:4:\"hash\";s:32:\"8fd2eed20601c4ff2524efb570458b50\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593662400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1593662400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"36efbbd4f13b00bc38fae60a2e690a49\";a:10:{s:4:\"hash\";s:32:\"36efbbd4f13b00bc38fae60a2e690a49\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593662400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1593662400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3608d32c85f71025393801f9ef242f25\";a:10:{s:4:\"hash\";s:32:\"3608d32c85f71025393801f9ef242f25\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593662400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1593662400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6d673dec589f0b4d13f462a840da2dfe\";a:10:{s:4:\"hash\";s:32:\"6d673dec589f0b4d13f462a840da2dfe\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593748800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1593748800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1a21bbbe2ead78c9d2a26755ecbfe82b\";a:10:{s:4:\"hash\";s:32:\"1a21bbbe2ead78c9d2a26755ecbfe82b\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593748800/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1593748800/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"902cd87ffe0ce52fca45ca670d288992\";a:10:{s:4:\"hash\";s:32:\"902cd87ffe0ce52fca45ca670d288992\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593748800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1593748800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"295f51eeee3f37c6d1dccde6e1c9125e\";a:10:{s:4:\"hash\";s:32:\"295f51eeee3f37c6d1dccde6e1c9125e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593748800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1593748800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4675d3cafd15e94ff2ea1db19e9d31cc\";a:10:{s:4:\"hash\";s:32:\"4675d3cafd15e94ff2ea1db19e9d31cc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593748800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1593748800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d97d607e8640aec061c01e36c27cec2\";a:10:{s:4:\"hash\";s:32:\"4d97d607e8640aec061c01e36c27cec2\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593748800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1593748800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fb78bde3f5ba7b140121522f4385b746\";a:10:{s:4:\"hash\";s:32:\"fb78bde3f5ba7b140121522f4385b746\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593835200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1593835200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ebf8389ba0eccd2022060f6822723d00\";a:10:{s:4:\"hash\";s:32:\"ebf8389ba0eccd2022060f6822723d00\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593835200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1593835200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c06895829021086ee8c4005aa8d549b6\";a:10:{s:4:\"hash\";s:32:\"c06895829021086ee8c4005aa8d549b6\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593835200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1593835200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"381c14b8e55042d22b403b83e273b48a\";a:10:{s:4:\"hash\";s:32:\"381c14b8e55042d22b403b83e273b48a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593921600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1593921600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ecfb61f604a984a3e88379648b7d5a9d\";a:10:{s:4:\"hash\";s:32:\"ecfb61f604a984a3e88379648b7d5a9d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1593921600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1593921600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0dba8fcc6b53d8ac0a488e4e0940df3f\";a:10:{s:4:\"hash\";s:32:\"0dba8fcc6b53d8ac0a488e4e0940df3f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1594353600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1594353600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b4d6a763735755cd59b37702853ac0a8\";a:10:{s:4:\"hash\";s:32:\"b4d6a763735755cd59b37702853ac0a8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1594353600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1594353600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1f5a3e25eaed7f98b8b78b745d878500\";a:10:{s:4:\"hash\";s:32:\"1f5a3e25eaed7f98b8b78b745d878500\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1594353600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1594353600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"36004ac71091f8afc0cf8837b49f4e77\";a:10:{s:4:\"hash\";s:32:\"36004ac71091f8afc0cf8837b49f4e77\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1594526400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1594526400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6c87126a00cc5dca3b9c052034cf7c3e\";a:10:{s:4:\"hash\";s:32:\"6c87126a00cc5dca3b9c052034cf7c3e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1594612800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1594612800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2379e37e9772faf4460be046368e5a12\";a:10:{s:4:\"hash\";s:32:\"2379e37e9772faf4460be046368e5a12\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1594785600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1594785600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c7aae8ba1e60606509979e5e62d263ef\";a:10:{s:4:\"hash\";s:32:\"c7aae8ba1e60606509979e5e62d263ef\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1594785600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1594785600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5db355941ae2ed2f8a31ab7bbb3bc56e\";a:10:{s:4:\"hash\";s:32:\"5db355941ae2ed2f8a31ab7bbb3bc56e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1594785600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1594785600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2f503b01170e0c0fe9520810d1f3e497\";a:10:{s:4:\"hash\";s:32:\"2f503b01170e0c0fe9520810d1f3e497\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1594785600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1594785600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6def8d806ff25dbe55ff6c97304b53aa\";a:10:{s:4:\"hash\";s:32:\"6def8d806ff25dbe55ff6c97304b53aa\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1594785600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1594785600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9deadb4f56db553e80d5cff4fb3239d5\";a:10:{s:4:\"hash\";s:32:\"9deadb4f56db553e80d5cff4fb3239d5\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1594785600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1594785600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eefc8c021d4936c261727c0a2d0b8f79\";a:10:{s:4:\"hash\";s:32:\"eefc8c021d4936c261727c0a2d0b8f79\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1594958400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1594958400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5fe43046aee1cf7120bffa1d4f66c3e5\";a:10:{s:4:\"hash\";s:32:\"5fe43046aee1cf7120bffa1d4f66c3e5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1594958400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1594958400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"717cffa92fad783f623e53beea3f8ab8\";a:10:{s:4:\"hash\";s:32:\"717cffa92fad783f623e53beea3f8ab8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1594958400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1594958400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8c1120f26db8683e9e7bdf7f8d4e21de\";a:10:{s:4:\"hash\";s:32:\"8c1120f26db8683e9e7bdf7f8d4e21de\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1594958400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1594958400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"96dc04993f96b8d8a4a78ca94823d118\";a:10:{s:4:\"hash\";s:32:\"96dc04993f96b8d8a4a78ca94823d118\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1595131200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1595131200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"463ff70c30126ac2491376544966f52d\";a:10:{s:4:\"hash\";s:32:\"463ff70c30126ac2491376544966f52d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1595217600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1595217600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3a284e55b63cb61b0d75ad09ec81f038\";a:10:{s:4:\"hash\";s:32:\"3a284e55b63cb61b0d75ad09ec81f038\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1595390400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1595390400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a52da680522fa2f296f78b308362952\";a:10:{s:4:\"hash\";s:32:\"8a52da680522fa2f296f78b308362952\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1595736000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1595736000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"31a0c6a9804e9bae95d6bc088c369b43\";a:10:{s:4:\"hash\";s:32:\"31a0c6a9804e9bae95d6bc088c369b43\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1595736000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1595736000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"43ee1d051088c4189b3c5192b7f04f85\";a:10:{s:4:\"hash\";s:32:\"43ee1d051088c4189b3c5192b7f04f85\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1595822400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1595822400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c465aaaf4b4cb3db943efdb126780abd\";a:10:{s:4:\"hash\";s:32:\"c465aaaf4b4cb3db943efdb126780abd\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1595822400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1595822400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ac794dd98534437b8902e696da38c058\";a:10:{s:4:\"hash\";s:32:\"ac794dd98534437b8902e696da38c058\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1595908800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1595908800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b6951e5ab4a98463255c167f59a9a7b5\";a:10:{s:4:\"hash\";s:32:\"b6951e5ab4a98463255c167f59a9a7b5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1595908800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1595908800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c4722deca68392e16b11cede97c5248e\";a:10:{s:4:\"hash\";s:32:\"c4722deca68392e16b11cede97c5248e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1595908800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1595908800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"266239d6420f232ccf8a3a4a60a825be\";a:10:{s:4:\"hash\";s:32:\"266239d6420f232ccf8a3a4a60a825be\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1595908800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1595908800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e05513e33d1d5d6bd3a3e840315d1f47\";a:10:{s:4:\"hash\";s:32:\"e05513e33d1d5d6bd3a3e840315d1f47\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1595908800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1595908800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"37dc2ba17a43447f0a15d0ff21708272\";a:10:{s:4:\"hash\";s:32:\"37dc2ba17a43447f0a15d0ff21708272\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1595995200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1595995200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"801e7720d768074746540e51c1dae84e\";a:10:{s:4:\"hash\";s:32:\"801e7720d768074746540e51c1dae84e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1595995200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1595995200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d3ea21cbb8604c097c0537eda5bc2f4c\";a:10:{s:4:\"hash\";s:32:\"d3ea21cbb8604c097c0537eda5bc2f4c\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1596254400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1596254400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8f0d5da006760c98173b094f9005b020\";a:10:{s:4:\"hash\";s:32:\"8f0d5da006760c98173b094f9005b020\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1596254400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1596254400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cb8bee8dec8b886f9e8158b417ee2ae3\";a:10:{s:4:\"hash\";s:32:\"cb8bee8dec8b886f9e8158b417ee2ae3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1596254400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1596254400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b1f027aa2b8a0fc0396651dffb718d1d\";a:10:{s:4:\"hash\";s:32:\"b1f027aa2b8a0fc0396651dffb718d1d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1596254400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1596254400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"31fbeec4a41f4cfe466b621bb9605d30\";a:10:{s:4:\"hash\";s:32:\"31fbeec4a41f4cfe466b621bb9605d30\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1596340800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1596340800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"777e36e584f89339c9539e67ec89d9a7\";a:10:{s:4:\"hash\";s:32:\"777e36e584f89339c9539e67ec89d9a7\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1596600000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1596600000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9e95ee1f28c829d6961985110de4e0b8\";a:10:{s:4:\"hash\";s:32:\"9e95ee1f28c829d6961985110de4e0b8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1596686400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1596686400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1c0a976686b0e2b6f230df7c25f4714a\";a:10:{s:4:\"hash\";s:32:\"1c0a976686b0e2b6f230df7c25f4714a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1596686400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1596686400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"809e1ac324b87f31bd6ba2a79a511b75\";a:10:{s:4:\"hash\";s:32:\"809e1ac324b87f31bd6ba2a79a511b75\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1596686400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1596686400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c428761be1ec4ef1630398a7ab889c75\";a:10:{s:4:\"hash\";s:32:\"c428761be1ec4ef1630398a7ab889c75\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1596859200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1596859200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bc1d052245dccbf2313f9592b830aa40\";a:10:{s:4:\"hash\";s:32:\"bc1d052245dccbf2313f9592b830aa40\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1596945600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1596945600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3dc0cd4019eaafda1f17d707919bf6f4\";a:10:{s:4:\"hash\";s:32:\"3dc0cd4019eaafda1f17d707919bf6f4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1597032000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1597032000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"de20a769afc0d0f4c8f4d6804f1e2c3d\";a:10:{s:4:\"hash\";s:32:\"de20a769afc0d0f4c8f4d6804f1e2c3d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1597032000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1597032000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"84d47e9c1a522feb61a44a916a9eff89\";a:10:{s:4:\"hash\";s:32:\"84d47e9c1a522feb61a44a916a9eff89\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1597377600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1597377600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c3e82426c4eddb248ca77dbdd1de8cf3\";a:10:{s:4:\"hash\";s:32:\"c3e82426c4eddb248ca77dbdd1de8cf3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1597377600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1597377600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d822a1e2856e6380a84e222298fab789\";a:10:{s:4:\"hash\";s:32:\"d822a1e2856e6380a84e222298fab789\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1597377600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1597377600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6ab35df873e84964d099ef0e050a7623\";a:10:{s:4:\"hash\";s:32:\"6ab35df873e84964d099ef0e050a7623\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1597550400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1597550400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f360c8746e72a056e7dc1ac622ff7c33\";a:10:{s:4:\"hash\";s:32:\"f360c8746e72a056e7dc1ac622ff7c33\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1597636800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1597636800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"31a1bffd7dd1987a1dd0e314c0d722f5\";a:10:{s:4:\"hash\";s:32:\"31a1bffd7dd1987a1dd0e314c0d722f5\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1597636800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1597636800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7905a03af5e5f371eefd5f3b9c56f89a\";a:10:{s:4:\"hash\";s:32:\"7905a03af5e5f371eefd5f3b9c56f89a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1598155200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1598155200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f9f275ce8c1b741d7ee1397e4b554e2c\";a:10:{s:4:\"hash\";s:32:\"f9f275ce8c1b741d7ee1397e4b554e2c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1598155200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1598155200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ca56298933eb0b12148cffd729d8fd7c\";a:10:{s:4:\"hash\";s:32:\"ca56298933eb0b12148cffd729d8fd7c\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1598155200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1598155200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a0444deeb8610b158596dccf377e4e88\";a:10:{s:4:\"hash\";s:32:\"a0444deeb8610b158596dccf377e4e88\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1598241600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1598241600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d5294bfcfb962732f95699d42263e0d6\";a:10:{s:4:\"hash\";s:32:\"d5294bfcfb962732f95699d42263e0d6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1598241600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1598241600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6f5fa6451569e039baa7fd6968ac3f70\";a:10:{s:4:\"hash\";s:32:\"6f5fa6451569e039baa7fd6968ac3f70\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1598241600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1598241600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9fb9d2a2475578a953632ec9aa7a959c\";a:10:{s:4:\"hash\";s:32:\"9fb9d2a2475578a953632ec9aa7a959c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1598414400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1598414400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"062531007cb181076a28c8966667e445\";a:10:{s:4:\"hash\";s:32:\"062531007cb181076a28c8966667e445\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1598414400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1598414400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"897540457d179282be4df7875d50b053\";a:10:{s:4:\"hash\";s:32:\"897540457d179282be4df7875d50b053\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1598500800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1598500800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f6935a5978be21655c4cb47d3733b901\";a:10:{s:4:\"hash\";s:32:\"f6935a5978be21655c4cb47d3733b901\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1601524800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1601524800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4eaab7a71313392ec7a101b4451d9b9b\";a:10:{s:4:\"hash\";s:32:\"4eaab7a71313392ec7a101b4451d9b9b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1604116800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1604116800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8836bcfb691e41b0c1dc3950e4be5484\";a:10:{s:4:\"hash\";s:32:\"8836bcfb691e41b0c1dc3950e4be5484\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1604203200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1604203200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"74025601ea1e0ea12b93dcdae6b6319a\";a:10:{s:4:\"hash\";s:32:\"74025601ea1e0ea12b93dcdae6b6319a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1604203200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1604203200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"95f3a31d99b4578212f7539ab28939da\";a:10:{s:4:\"hash\";s:32:\"95f3a31d99b4578212f7539ab28939da\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1604203200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1604203200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2355b8b42f579174ef84efdfda2e438f\";a:10:{s:4:\"hash\";s:32:\"2355b8b42f579174ef84efdfda2e438f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1604203200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1604203200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e1b07aebfc4cfe3158bcfe5317d433b7\";a:10:{s:4:\"hash\";s:32:\"e1b07aebfc4cfe3158bcfe5317d433b7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1604293200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1604293200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4809389a39ff8b5ec8bd8b695228a14d\";a:10:{s:4:\"hash\";s:32:\"4809389a39ff8b5ec8bd8b695228a14d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1604293200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1604293200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c224fffa16f86087d2cb7253c7e01d3\";a:10:{s:4:\"hash\";s:32:\"2c224fffa16f86087d2cb7253c7e01d3\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1604552400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1604552400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"33249d12c4f424497bf0cb222c19226f\";a:10:{s:4:\"hash\";s:32:\"33249d12c4f424497bf0cb222c19226f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1605070800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1605070800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d6ab8f702d1eb10d25849c8afac07db6\";a:10:{s:4:\"hash\";s:32:\"d6ab8f702d1eb10d25849c8afac07db6\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1605070800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1605070800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7581a66467034fcfdab7153bd5fdcb37\";a:10:{s:4:\"hash\";s:32:\"7581a66467034fcfdab7153bd5fdcb37\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1605157200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1605157200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bb43fa246fc449394b7b33ce9e82cae3\";a:10:{s:4:\"hash\";s:32:\"bb43fa246fc449394b7b33ce9e82cae3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1605157200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1605157200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aaaeb16462f95d3e7ff128f3cbb39ba9\";a:10:{s:4:\"hash\";s:32:\"aaaeb16462f95d3e7ff128f3cbb39ba9\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1605157200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1605157200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f99523473848ceb9cad878989862c628\";a:10:{s:4:\"hash\";s:32:\"f99523473848ceb9cad878989862c628\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1605157200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1605157200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff811f63d619ef69e53a687ec4af545a\";a:10:{s:4:\"hash\";s:32:\"ff811f63d619ef69e53a687ec4af545a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1605157200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1605157200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"73452918e1f3fd5d2e130a22a9ae56e6\";a:10:{s:4:\"hash\";s:32:\"73452918e1f3fd5d2e130a22a9ae56e6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1605157200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1605157200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"206c8f1acacfb117111d2d607e4c03d2\";a:10:{s:4:\"hash\";s:32:\"206c8f1acacfb117111d2d607e4c03d2\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1605157200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1605157200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"22675aa016118e8cdf036631f8678518\";a:10:{s:4:\"hash\";s:32:\"22675aa016118e8cdf036631f8678518\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1605243600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1605243600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3245d2bb0337d712b7202dac3cb22c9f\";a:10:{s:4:\"hash\";s:32:\"3245d2bb0337d712b7202dac3cb22c9f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1605243600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1605243600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cbd6fb269fbe9a2c569b54a500001bfe\";a:10:{s:4:\"hash\";s:32:\"cbd6fb269fbe9a2c569b54a500001bfe\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1605762000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1605762000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dcb6a835a4e7ce51b028e0c247d73c3d\";a:10:{s:4:\"hash\";s:32:\"dcb6a835a4e7ce51b028e0c247d73c3d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1605762000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1605762000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f469177e115d468725e51179ab7b19c8\";a:10:{s:4:\"hash\";s:32:\"f469177e115d468725e51179ab7b19c8\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1605934800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1605934800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"645b382bc114aeecc207bf6ed3f70997\";a:10:{s:4:\"hash\";s:32:\"645b382bc114aeecc207bf6ed3f70997\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1606539600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1606539600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"396b2d501f26dc5c0e2f64dc515d4222\";a:10:{s:4:\"hash\";s:32:\"396b2d501f26dc5c0e2f64dc515d4222\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1606626000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1606626000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"637f331c8d49583a2364502e65044828\";a:10:{s:4:\"hash\";s:32:\"637f331c8d49583a2364502e65044828\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1606626000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1606626000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eaee67f38e3a274d0722a4ae1ef0869f\";a:10:{s:4:\"hash\";s:32:\"eaee67f38e3a274d0722a4ae1ef0869f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1606626000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1606626000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"06e825f324438be8def4be350bda8f6c\";a:10:{s:4:\"hash\";s:32:\"06e825f324438be8def4be350bda8f6c\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1606712400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1606712400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b9b1473152df66757f13604439e724aa\";a:10:{s:4:\"hash\";s:32:\"b9b1473152df66757f13604439e724aa\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1609477200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1609477200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"da53c33507a6850d94e40195c379abc7\";a:10:{s:4:\"hash\";s:32:\"da53c33507a6850d94e40195c379abc7\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1611550800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1611550800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"40258bc38e4634434f66b30abd5ef040\";a:10:{s:4:\"hash\";s:32:\"40258bc38e4634434f66b30abd5ef040\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612069200/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1612069200/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b7e1cf0f9f4e9260632c8e1b18691a7c\";a:10:{s:4:\"hash\";s:32:\"b7e1cf0f9f4e9260632c8e1b18691a7c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612069200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1612069200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef67bdcfa6912db59ac94b69301e2ec9\";a:10:{s:4:\"hash\";s:32:\"ef67bdcfa6912db59ac94b69301e2ec9\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612155600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1612155600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d1ab933bbec2a0d8abb64ce12609a664\";a:10:{s:4:\"hash\";s:32:\"d1ab933bbec2a0d8abb64ce12609a664\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612155600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1612155600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"adebc1ec0df6f24398dc999b2e8b4577\";a:10:{s:4:\"hash\";s:32:\"adebc1ec0df6f24398dc999b2e8b4577\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612155600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1612155600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e8a50ea427e1dd68f4af8a40bc396993\";a:10:{s:4:\"hash\";s:32:\"e8a50ea427e1dd68f4af8a40bc396993\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612155600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1612155600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b5a7d17947058e66d1782394576ec972\";a:10:{s:4:\"hash\";s:32:\"b5a7d17947058e66d1782394576ec972\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612155600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1612155600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fc8a9f8ec3c0f4dc309b51eb1f910f14\";a:10:{s:4:\"hash\";s:32:\"fc8a9f8ec3c0f4dc309b51eb1f910f14\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612155600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1612155600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"21f9887f01c7cb2b517f81b33f871fcc\";a:10:{s:4:\"hash\";s:32:\"21f9887f01c7cb2b517f81b33f871fcc\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612155600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1612155600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6f29bf75f90b5e6e7d7c7bf5c409c8ab\";a:10:{s:4:\"hash\";s:32:\"6f29bf75f90b5e6e7d7c7bf5c409c8ab\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612155600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1612155600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8b5a7008765ebbd1314f069d83ed83d6\";a:10:{s:4:\"hash\";s:32:\"8b5a7008765ebbd1314f069d83ed83d6\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612155600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1612155600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"21819f1896c5a6ae9327707309910436\";a:10:{s:4:\"hash\";s:32:\"21819f1896c5a6ae9327707309910436\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612155600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1612155600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"35e469e9162ce0bd44dccb2ead89a8c6\";a:10:{s:4:\"hash\";s:32:\"35e469e9162ce0bd44dccb2ead89a8c6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612155600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1612155600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e4f3f5b9e92ef8896cf511c3079045fb\";a:10:{s:4:\"hash\";s:32:\"e4f3f5b9e92ef8896cf511c3079045fb\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612155600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1612155600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e8281546d6400740ec549b136f1f8755\";a:10:{s:4:\"hash\";s:32:\"e8281546d6400740ec549b136f1f8755\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612242000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1612242000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"23df6dd77978f5ad55478b90dc0bec01\";a:10:{s:4:\"hash\";s:32:\"23df6dd77978f5ad55478b90dc0bec01\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612242000/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1612242000/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"acc17e3abe34afe461d70e68a78094dc\";a:10:{s:4:\"hash\";s:32:\"acc17e3abe34afe461d70e68a78094dc\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612242000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1612242000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c02ac95f1251c7aef06242cfdc0581ca\";a:10:{s:4:\"hash\";s:32:\"c02ac95f1251c7aef06242cfdc0581ca\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612674000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1612674000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cde034afb3f75aef8950b1e06c6c339b\";a:10:{s:4:\"hash\";s:32:\"cde034afb3f75aef8950b1e06c6c339b\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612674000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1612674000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"21b4acfdbb01c05fa3a6da5a938b2d68\";a:10:{s:4:\"hash\";s:32:\"21b4acfdbb01c05fa3a6da5a938b2d68\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612674000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1612674000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e1659cd32a45ddc2f5739be2eef6e609\";a:10:{s:4:\"hash\";s:32:\"e1659cd32a45ddc2f5739be2eef6e609\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612674000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1612674000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2811cd252f5a2c56910f9abef6d71909\";a:10:{s:4:\"hash\";s:32:\"2811cd252f5a2c56910f9abef6d71909\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612760400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1612760400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2aa9bfc0a7d949eb7842eafb4b13c56f\";a:10:{s:4:\"hash\";s:32:\"2aa9bfc0a7d949eb7842eafb4b13c56f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612760400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1612760400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4c0c65ca1aedb09bfb7703bfed9a54af\";a:10:{s:4:\"hash\";s:32:\"4c0c65ca1aedb09bfb7703bfed9a54af\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612760400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1612760400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9f85676f593158b4fde00e660558e216\";a:10:{s:4:\"hash\";s:32:\"9f85676f593158b4fde00e660558e216\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1612760400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1612760400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a5a8c9ba492d7b73ad2989beb683a22f\";a:10:{s:4:\"hash\";s:32:\"a5a8c9ba492d7b73ad2989beb683a22f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1613278800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1613278800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ba56481531bd096df070cf5c4b41251e\";a:10:{s:4:\"hash\";s:32:\"ba56481531bd096df070cf5c4b41251e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1613365200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1613365200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5c7197da60ce1866a73ad1434899bd47\";a:10:{s:4:\"hash\";s:32:\"5c7197da60ce1866a73ad1434899bd47\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1614574800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1614574800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2036571abd10a9aedd2418ce0a9f37a2\";a:10:{s:4:\"hash\";s:32:\"2036571abd10a9aedd2418ce0a9f37a2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1619236800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1619236800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"21f5068815e401072082616f75bfc253\";a:10:{s:4:\"hash\";s:32:\"21f5068815e401072082616f75bfc253\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1619236800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1619236800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"45a0e32fafc02d529f71efea6327e469\";a:10:{s:4:\"hash\";s:32:\"45a0e32fafc02d529f71efea6327e469\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1619323200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1619323200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8fd18ca326813094139e04b152821be6\";a:10:{s:4:\"hash\";s:32:\"8fd18ca326813094139e04b152821be6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1619323200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1619323200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"37439d12df736923735b914c1c74684c\";a:10:{s:4:\"hash\";s:32:\"37439d12df736923735b914c1c74684c\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1619323200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1619323200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dcc0e0b0d5e8251b63d3e044ca232d9a\";a:10:{s:4:\"hash\";s:32:\"dcc0e0b0d5e8251b63d3e044ca232d9a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1619496000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1619496000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"885d2557d74ad459714043c3fbcbb2eb\";a:10:{s:4:\"hash\";s:32:\"885d2557d74ad459714043c3fbcbb2eb\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1619668800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1619668800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"14bcff78314256f30dd1de83faeef475\";a:10:{s:4:\"hash\";s:32:\"14bcff78314256f30dd1de83faeef475\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1619755200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1619755200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"719426698d8fd92038afe3be471f5807\";a:10:{s:4:\"hash\";s:32:\"719426698d8fd92038afe3be471f5807\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1619755200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1619755200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"75265cc255bf9c913fcf357967ab7b4b\";a:10:{s:4:\"hash\";s:32:\"75265cc255bf9c913fcf357967ab7b4b\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1619755200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1619755200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b39c0f05c881d4177c2151b9473383b7\";a:10:{s:4:\"hash\";s:32:\"b39c0f05c881d4177c2151b9473383b7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1619841600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1619841600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e5cedb397990810273dbb08c76c2afa1\";a:10:{s:4:\"hash\";s:32:\"e5cedb397990810273dbb08c76c2afa1\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1619841600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1619841600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"360c7bf14727722bb108c58ecd9017f8\";a:10:{s:4:\"hash\";s:32:\"360c7bf14727722bb108c58ecd9017f8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1619841600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1619841600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"42b012144101d52055dff449dae820fa\";a:10:{s:4:\"hash\";s:32:\"42b012144101d52055dff449dae820fa\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1619841600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1619841600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0b306fc6a503a28501aeb59ba8b89268\";a:10:{s:4:\"hash\";s:32:\"0b306fc6a503a28501aeb59ba8b89268\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620100800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1620100800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"746449a210ce51120b8d17c9e915c115\";a:10:{s:4:\"hash\";s:32:\"746449a210ce51120b8d17c9e915c115\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620100800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1620100800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ba314826d9e689925dab9db14ca18b06\";a:10:{s:4:\"hash\";s:32:\"ba314826d9e689925dab9db14ca18b06\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620100800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1620100800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b898afc6e2da3a417a820f52e16b9469\";a:10:{s:4:\"hash\";s:32:\"b898afc6e2da3a417a820f52e16b9469\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620100800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1620100800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c9c2ac488b4a41377071777bee07b3ac\";a:10:{s:4:\"hash\";s:32:\"c9c2ac488b4a41377071777bee07b3ac\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620187200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1620187200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a4f2fd067737e829607f0e7cf0692a85\";a:10:{s:4:\"hash\";s:32:\"a4f2fd067737e829607f0e7cf0692a85\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620187200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1620187200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e6aec0b4371bdaa1b1dcdc3bd7aed773\";a:10:{s:4:\"hash\";s:32:\"e6aec0b4371bdaa1b1dcdc3bd7aed773\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620273600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1620273600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d5a1bfc089726c50ebea4508f858c8cd\";a:10:{s:4:\"hash\";s:32:\"d5a1bfc089726c50ebea4508f858c8cd\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620360000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1620360000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6d3d98a45409d39a3e6149dab59c5556\";a:10:{s:4:\"hash\";s:32:\"6d3d98a45409d39a3e6149dab59c5556\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620446400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1620446400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fe99429f10557a70d67739b5e45abbf3\";a:10:{s:4:\"hash\";s:32:\"fe99429f10557a70d67739b5e45abbf3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620532800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1620532800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"378076901b7f0aa1c362a1277e917fdc\";a:10:{s:4:\"hash\";s:32:\"378076901b7f0aa1c362a1277e917fdc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620532800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1620532800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cea82833baa7a295a50bde8bad602cbb\";a:10:{s:4:\"hash\";s:32:\"cea82833baa7a295a50bde8bad602cbb\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620532800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1620532800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"07853937f5a6e0d0556c46dc297a81e1\";a:10:{s:4:\"hash\";s:32:\"07853937f5a6e0d0556c46dc297a81e1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620619200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1620619200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f0fe0f8b0af3dafd2508331f6ceced44\";a:10:{s:4:\"hash\";s:32:\"f0fe0f8b0af3dafd2508331f6ceced44\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620619200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1620619200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c0dfdd37b8bbe1b2c37ea9e21b2eddca\";a:10:{s:4:\"hash\";s:32:\"c0dfdd37b8bbe1b2c37ea9e21b2eddca\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620619200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1620619200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"20789cde45ae10b0212767598c7323a7\";a:10:{s:4:\"hash\";s:32:\"20789cde45ae10b0212767598c7323a7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620705600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1620705600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bd32156ea1ffd868a99163a59d573c1c\";a:10:{s:4:\"hash\";s:32:\"bd32156ea1ffd868a99163a59d573c1c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620705600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1620705600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dfb9b940b40f4766256ab2438ca58394\";a:10:{s:4:\"hash\";s:32:\"dfb9b940b40f4766256ab2438ca58394\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620705600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1620705600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ea3e7e0321ad6a300792998c050eb5a7\";a:10:{s:4:\"hash\";s:32:\"ea3e7e0321ad6a300792998c050eb5a7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620792000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1620792000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e44fe19f02d93410121b4fae22a8fc4b\";a:10:{s:4:\"hash\";s:32:\"e44fe19f02d93410121b4fae22a8fc4b\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620792000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1620792000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c801ea2e8c298bf25301a03b0eb7b817\";a:10:{s:4:\"hash\";s:32:\"c801ea2e8c298bf25301a03b0eb7b817\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620792000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1620792000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"49a1a765dfe94b87267261c68ada85e1\";a:10:{s:4:\"hash\";s:32:\"49a1a765dfe94b87267261c68ada85e1\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620792000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1620792000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ec68ee2b2786021896bfbee9c5aebc7d\";a:10:{s:4:\"hash\";s:32:\"ec68ee2b2786021896bfbee9c5aebc7d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620878400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1620878400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"39626237151ef41513766c1bd0308735\";a:10:{s:4:\"hash\";s:32:\"39626237151ef41513766c1bd0308735\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620964800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1620964800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"076f372c8c95e49da6a0035d533607d2\";a:10:{s:4:\"hash\";s:32:\"076f372c8c95e49da6a0035d533607d2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620964800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1620964800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e0c873b88b1e548cda574ec50efaebe8\";a:10:{s:4:\"hash\";s:32:\"e0c873b88b1e548cda574ec50efaebe8\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1620964800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1620964800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"96d1242744970e7ff2919efe68ba08fa\";a:10:{s:4:\"hash\";s:32:\"96d1242744970e7ff2919efe68ba08fa\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1621051200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1621051200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"00916b1c91c07bd8213a890f69854509\";a:10:{s:4:\"hash\";s:32:\"00916b1c91c07bd8213a890f69854509\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1621051200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1621051200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c172593c76ece79fc52269ef161cdeae\";a:10:{s:4:\"hash\";s:32:\"c172593c76ece79fc52269ef161cdeae\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1621051200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1621051200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"72f59b7406c11d1265a9a38d0aa8930d\";a:10:{s:4:\"hash\";s:32:\"72f59b7406c11d1265a9a38d0aa8930d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1621224000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1621224000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"666208ada9ceb6ad857199726db87b39\";a:10:{s:4:\"hash\";s:32:\"666208ada9ceb6ad857199726db87b39\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1621224000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1621224000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9b193dda77a304238cbfcb6ece292574\";a:10:{s:4:\"hash\";s:32:\"9b193dda77a304238cbfcb6ece292574\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1621224000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1621224000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0bb6af79a8151592f39679fbc4865557\";a:10:{s:4:\"hash\";s:32:\"0bb6af79a8151592f39679fbc4865557\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1621224000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1621224000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9d73c5f4203ca99d84bf9bfd501e8c14\";a:10:{s:4:\"hash\";s:32:\"9d73c5f4203ca99d84bf9bfd501e8c14\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1621310400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1621310400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b1fb08231a68ae666e5d2d87a87f65ae\";a:10:{s:4:\"hash\";s:32:\"b1fb08231a68ae666e5d2d87a87f65ae\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1621396800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1621396800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"72d4a64f74e5746ec0b7628de882d532\";a:10:{s:4:\"hash\";s:32:\"72d4a64f74e5746ec0b7628de882d532\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1621828800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1621828800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2eef35a8385f6f8839c16eeceb5aaa91\";a:10:{s:4:\"hash\";s:32:\"2eef35a8385f6f8839c16eeceb5aaa91\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1621915200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1621915200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b8dbcf0a6d478d0e7f90593e59d304ca\";a:10:{s:4:\"hash\";s:32:\"b8dbcf0a6d478d0e7f90593e59d304ca\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1621915200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1621915200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f1022bf64c9157cecd944871d865494c\";a:10:{s:4:\"hash\";s:32:\"f1022bf64c9157cecd944871d865494c\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1621915200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1621915200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d5efc1fbd7b3c41d9f11e8e59efc7e7d\";a:10:{s:4:\"hash\";s:32:\"d5efc1fbd7b3c41d9f11e8e59efc7e7d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1622001600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1622001600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cd12f98ea8a897187e07f465c8da8ca9\";a:10:{s:4:\"hash\";s:32:\"cd12f98ea8a897187e07f465c8da8ca9\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1622001600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1622001600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"37adf5fe2b16ec433c39cba94a5c0ccd\";a:10:{s:4:\"hash\";s:32:\"37adf5fe2b16ec433c39cba94a5c0ccd\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1622174400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1622174400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3d73398c5ff4a65070d6feacad84573f\";a:10:{s:4:\"hash\";s:32:\"3d73398c5ff4a65070d6feacad84573f\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1622520000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1622520000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8825d26519b73e326c66169a2309047c\";a:10:{s:4:\"hash\";s:32:\"8825d26519b73e326c66169a2309047c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1622520000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1622520000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"04a79b10982e359db62d92cf708846c3\";a:10:{s:4:\"hash\";s:32:\"04a79b10982e359db62d92cf708846c3\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1622520000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1622520000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"71fe8d18c105c9d1d2f66b76596a4875\";a:10:{s:4:\"hash\";s:32:\"71fe8d18c105c9d1d2f66b76596a4875\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1622692800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1622692800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a5168bd8acd4b2f22ef40ea06560ae39\";a:10:{s:4:\"hash\";s:32:\"a5168bd8acd4b2f22ef40ea06560ae39\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1622779200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1622779200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7feabc9c21832161916fe947e63f874f\";a:10:{s:4:\"hash\";s:32:\"7feabc9c21832161916fe947e63f874f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1622779200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1622779200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"862911796659217ed64ba0dbc500897f\";a:10:{s:4:\"hash\";s:32:\"862911796659217ed64ba0dbc500897f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1622779200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1622779200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"014bb49f2963ba9727abec587c8697e8\";a:10:{s:4:\"hash\";s:32:\"014bb49f2963ba9727abec587c8697e8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1622865600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1622865600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7cede52b678053c8392970c12b306387\";a:10:{s:4:\"hash\";s:32:\"7cede52b678053c8392970c12b306387\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623038400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1623038400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6f262cfb8f6c098f16195d6c61a74d8b\";a:10:{s:4:\"hash\";s:32:\"6f262cfb8f6c098f16195d6c61a74d8b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623124800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1623124800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"be672bc0a3b436ef481fb3e82e060a18\";a:10:{s:4:\"hash\";s:32:\"be672bc0a3b436ef481fb3e82e060a18\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623124800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1623124800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0db87ed5e15076e9c10c9f1970e15173\";a:10:{s:4:\"hash\";s:32:\"0db87ed5e15076e9c10c9f1970e15173\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623211200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1623211200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"627e026083a357fa2579bae71a57b27b\";a:10:{s:4:\"hash\";s:32:\"627e026083a357fa2579bae71a57b27b\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623384000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1623384000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4fe220ad817b1e35d150a76846c0f210\";a:10:{s:4:\"hash\";s:32:\"4fe220ad817b1e35d150a76846c0f210\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623384000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1623384000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ac63971228ba5638eeba2d174032d384\";a:10:{s:4:\"hash\";s:32:\"ac63971228ba5638eeba2d174032d384\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623384000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1623384000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6b14d526a1a8b85a6a3ced2178c58506\";a:10:{s:4:\"hash\";s:32:\"6b14d526a1a8b85a6a3ced2178c58506\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623470400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1623470400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"31041126664e49082483fe8484d781de\";a:10:{s:4:\"hash\";s:32:\"31041126664e49082483fe8484d781de\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623556800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1623556800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3aeb5e5213476987ce5d41f1fd55161a\";a:10:{s:4:\"hash\";s:32:\"3aeb5e5213476987ce5d41f1fd55161a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623556800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1623556800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d1f1f38d36211718cd98dbd8e43aa17a\";a:10:{s:4:\"hash\";s:32:\"d1f1f38d36211718cd98dbd8e43aa17a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623643200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1623643200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aab19bbb0b18ddc278ba513dde4e207a\";a:10:{s:4:\"hash\";s:32:\"aab19bbb0b18ddc278ba513dde4e207a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623643200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1623643200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6ade5113bc99103c9f8fc94b8b899c37\";a:10:{s:4:\"hash\";s:32:\"6ade5113bc99103c9f8fc94b8b899c37\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623643200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1623643200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3fa573ca72ddf634a3fa86e57a50c2a7\";a:10:{s:4:\"hash\";s:32:\"3fa573ca72ddf634a3fa86e57a50c2a7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623643200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1623643200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"87d42c92c1d4e7119bbe30ed2c0f3a19\";a:10:{s:4:\"hash\";s:32:\"87d42c92c1d4e7119bbe30ed2c0f3a19\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623643200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1623643200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"38717b0a3e51af809ee14da9c89e0b3b\";a:10:{s:4:\"hash\";s:32:\"38717b0a3e51af809ee14da9c89e0b3b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623729600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1623729600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a2310182d49e5018d29d0af82955d95f\";a:10:{s:4:\"hash\";s:32:\"a2310182d49e5018d29d0af82955d95f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623729600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1623729600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a002de7d697f86e91757fbaf987cff0a\";a:10:{s:4:\"hash\";s:32:\"a002de7d697f86e91757fbaf987cff0a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623729600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1623729600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5eb432c1ec7230b5085e6960c5c3b681\";a:10:{s:4:\"hash\";s:32:\"5eb432c1ec7230b5085e6960c5c3b681\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623729600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1623729600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"432732ea68b10ca23efefd2c614cd2ee\";a:10:{s:4:\"hash\";s:32:\"432732ea68b10ca23efefd2c614cd2ee\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623729600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1623729600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2baf4efa9c7473763e8e486be2a263ff\";a:10:{s:4:\"hash\";s:32:\"2baf4efa9c7473763e8e486be2a263ff\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623729600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1623729600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f5722fdcbbd3d176392d171700c93d3\";a:10:{s:4:\"hash\";s:32:\"7f5722fdcbbd3d176392d171700c93d3\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623729600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1623729600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1a7cac615033eaf8e4ddbd5642f68822\";a:10:{s:4:\"hash\";s:32:\"1a7cac615033eaf8e4ddbd5642f68822\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623816000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1623816000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d44557433b6136abfbaa1001bfb76146\";a:10:{s:4:\"hash\";s:32:\"d44557433b6136abfbaa1001bfb76146\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623816000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1623816000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8c4eddb97a40f44c23f3624c08cadaf8\";a:10:{s:4:\"hash\";s:32:\"8c4eddb97a40f44c23f3624c08cadaf8\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623816000/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1623816000/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1c6e424e35c61730660db6f3850ec5b7\";a:10:{s:4:\"hash\";s:32:\"1c6e424e35c61730660db6f3850ec5b7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623816000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1623816000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aa6285dcc1a1dd88ec66002911e537a6\";a:10:{s:4:\"hash\";s:32:\"aa6285dcc1a1dd88ec66002911e537a6\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623816000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1623816000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0892f4367b420dbd5a6e58407b33f5f6\";a:10:{s:4:\"hash\";s:32:\"0892f4367b420dbd5a6e58407b33f5f6\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623902400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1623902400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e89bd363a5d4e6fbb9a24657345f16b7\";a:10:{s:4:\"hash\";s:32:\"e89bd363a5d4e6fbb9a24657345f16b7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623902400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1623902400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1e98dfc65383e6edc501a4967967070e\";a:10:{s:4:\"hash\";s:32:\"1e98dfc65383e6edc501a4967967070e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623902400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1623902400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ea8efa5cc0cfc8ee8ae663ca19980f5b\";a:10:{s:4:\"hash\";s:32:\"ea8efa5cc0cfc8ee8ae663ca19980f5b\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623988800/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1623988800/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5021a52d72feee73e045f45bff8e0735\";a:10:{s:4:\"hash\";s:32:\"5021a52d72feee73e045f45bff8e0735\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623988800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1623988800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f406ae971a1e945dc4ebcf414d4db5f8\";a:10:{s:4:\"hash\";s:32:\"f406ae971a1e945dc4ebcf414d4db5f8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623988800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1623988800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ceea1668c8e52340fd619d41aa4df93a\";a:10:{s:4:\"hash\";s:32:\"ceea1668c8e52340fd619d41aa4df93a\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623988800/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1623988800/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d43321cb9758618e7d9dd0d0468cd183\";a:10:{s:4:\"hash\";s:32:\"d43321cb9758618e7d9dd0d0468cd183\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623988800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1623988800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"21a3887c28aa0bdcbacdea5ad2f1222e\";a:10:{s:4:\"hash\";s:32:\"21a3887c28aa0bdcbacdea5ad2f1222e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1623988800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1623988800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d3ccf88c79ec58bfe4c535efafdea7ca\";a:10:{s:4:\"hash\";s:32:\"d3ccf88c79ec58bfe4c535efafdea7ca\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1624075200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1624075200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d77286e2b52cac0b15f4678a3dfde76d\";a:10:{s:4:\"hash\";s:32:\"d77286e2b52cac0b15f4678a3dfde76d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1624075200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1624075200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"60ff2415cb42b9296b1862d7b57136e4\";a:10:{s:4:\"hash\";s:32:\"60ff2415cb42b9296b1862d7b57136e4\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1624075200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1624075200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"58defff66c6f0fb12e9ef4a1ca7bb2d9\";a:10:{s:4:\"hash\";s:32:\"58defff66c6f0fb12e9ef4a1ca7bb2d9\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1624334400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1624334400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3353f0fea5db0b77a8741fb8d0b5eb53\";a:10:{s:4:\"hash\";s:32:\"3353f0fea5db0b77a8741fb8d0b5eb53\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1624507200/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1624507200/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9c78edd990266a47490d78b0f45ac3b3\";a:10:{s:4:\"hash\";s:32:\"9c78edd990266a47490d78b0f45ac3b3\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1624507200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1624507200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d1484ed9c6d49b05fe8ba29300d14ecd\";a:10:{s:4:\"hash\";s:32:\"d1484ed9c6d49b05fe8ba29300d14ecd\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1624939200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1624939200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b9e5f0617011636a08b300089d79ec5e\";a:10:{s:4:\"hash\";s:32:\"b9e5f0617011636a08b300089d79ec5e\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1625112000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1625112000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"34bcf22c82f5f9a99944e681416e88b0\";a:10:{s:4:\"hash\";s:32:\"34bcf22c82f5f9a99944e681416e88b0\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1625112000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1625112000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"058629b477cf6ec1291af2296a033e20\";a:10:{s:4:\"hash\";s:32:\"058629b477cf6ec1291af2296a033e20\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1625112000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1625112000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e58a53c4a8649d62e5446e1e64c910e2\";a:10:{s:4:\"hash\";s:32:\"e58a53c4a8649d62e5446e1e64c910e2\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1626321600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1626321600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d3fc17631b389b3798f69b737d0c9af4\";a:10:{s:4:\"hash\";s:32:\"d3fc17631b389b3798f69b737d0c9af4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1626321600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1626321600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bb5f525aaf3fbf1ff7b69f18a72c9da1\";a:10:{s:4:\"hash\";s:32:\"bb5f525aaf3fbf1ff7b69f18a72c9da1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1626321600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1626321600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"294933e2311989b8cc17ce24d48304d9\";a:10:{s:4:\"hash\";s:32:\"294933e2311989b8cc17ce24d48304d9\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1626321600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1626321600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef71c5d79723502fce6222d3b9fe8748\";a:10:{s:4:\"hash\";s:32:\"ef71c5d79723502fce6222d3b9fe8748\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1626408000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1626408000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7932f3a367e37ed80ac818f640c5222f\";a:10:{s:4:\"hash\";s:32:\"7932f3a367e37ed80ac818f640c5222f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1626494400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1626494400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a3d58366963941e9187e0071bd6ab94\";a:10:{s:4:\"hash\";s:32:\"8a3d58366963941e9187e0071bd6ab94\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1626494400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1626494400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a0bd4c831c5d87f64eb7264a8bd68abe\";a:10:{s:4:\"hash\";s:32:\"a0bd4c831c5d87f64eb7264a8bd68abe\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1626494400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1626494400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef4d19a8db6d8a0da2ed79a7094db161\";a:10:{s:4:\"hash\";s:32:\"ef4d19a8db6d8a0da2ed79a7094db161\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1626580800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1626580800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6eaeb2cf38846edc2a7ef7240a8a6200\";a:10:{s:4:\"hash\";s:32:\"6eaeb2cf38846edc2a7ef7240a8a6200\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1626580800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1626580800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"20075acbbc0b5d5f168efc757096d16a\";a:10:{s:4:\"hash\";s:32:\"20075acbbc0b5d5f168efc757096d16a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1626580800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1626580800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"874ff0d76ab79011d8a276d7de302c46\";a:10:{s:4:\"hash\";s:32:\"874ff0d76ab79011d8a276d7de302c46\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1626580800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1626580800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3b8f69c4c601eb9762b04a70cb6c7e25\";a:10:{s:4:\"hash\";s:32:\"3b8f69c4c601eb9762b04a70cb6c7e25\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1626580800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1626580800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eaec0b51723700a2731b246e73678fdf\";a:10:{s:4:\"hash\";s:32:\"eaec0b51723700a2731b246e73678fdf\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1626667200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1626667200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"066bb67c16ab3074aa395fd8d90bde12\";a:10:{s:4:\"hash\";s:32:\"066bb67c16ab3074aa395fd8d90bde12\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1626667200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1626667200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"52f88ac79af88b1c6989a1c206a0e1ee\";a:10:{s:4:\"hash\";s:32:\"52f88ac79af88b1c6989a1c206a0e1ee\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1626667200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1626667200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8382cf0f7ceaa194d370c113909c5976\";a:10:{s:4:\"hash\";s:32:\"8382cf0f7ceaa194d370c113909c5976\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1626667200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1626667200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8515b1e8dc66bf0baa95764ad060072f\";a:10:{s:4:\"hash\";s:32:\"8515b1e8dc66bf0baa95764ad060072f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1626753600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1626753600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"90cda792b5630f28f3ebe49afd724788\";a:10:{s:4:\"hash\";s:32:\"90cda792b5630f28f3ebe49afd724788\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1627099200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1627099200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b6af4e83e76d58f6645bec1bff646162\";a:10:{s:4:\"hash\";s:32:\"b6af4e83e76d58f6645bec1bff646162\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1627099200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1627099200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5701917e23f3f45534d6ce56b1346b9f\";a:10:{s:4:\"hash\";s:32:\"5701917e23f3f45534d6ce56b1346b9f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1627099200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1627099200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a719afb7e6aca9d5c3e5dcbcb2dfb97\";a:10:{s:4:\"hash\";s:32:\"8a719afb7e6aca9d5c3e5dcbcb2dfb97\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1627185600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1627185600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5a22226be1fa9cacd52bf046ba467786\";a:10:{s:4:\"hash\";s:32:\"5a22226be1fa9cacd52bf046ba467786\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1627185600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1627185600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"43d4ffe57739e1b95433549aafa10784\";a:10:{s:4:\"hash\";s:32:\"43d4ffe57739e1b95433549aafa10784\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1627272000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1627272000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"02fa9e4bd03acbcab405ee1a4c2270f9\";a:10:{s:4:\"hash\";s:32:\"02fa9e4bd03acbcab405ee1a4c2270f9\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1627272000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1627272000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0335ff23c41b2f18a40cd8779670c966\";a:10:{s:4:\"hash\";s:32:\"0335ff23c41b2f18a40cd8779670c966\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1627358400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1627358400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e690febbfc4bce7e1ab6a8fd9009b5e9\";a:10:{s:4:\"hash\";s:32:\"e690febbfc4bce7e1ab6a8fd9009b5e9\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1627358400/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1627358400/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"58aaac1ef879be80e671bb1424517f67\";a:10:{s:4:\"hash\";s:32:\"58aaac1ef879be80e671bb1424517f67\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1627358400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1627358400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2d76d335abe63ee06bde83bf54a5b73b\";a:10:{s:4:\"hash\";s:32:\"2d76d335abe63ee06bde83bf54a5b73b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1627358400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1627358400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a2b9e3e63f696898e5249a48de63bbc\";a:10:{s:4:\"hash\";s:32:\"8a2b9e3e63f696898e5249a48de63bbc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1627358400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1627358400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"566b6c126520b5cdd1fd612d3c0c0b38\";a:10:{s:4:\"hash\";s:32:\"566b6c126520b5cdd1fd612d3c0c0b38\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1627358400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1627358400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6736c4d180a84f27ccffc7a7c3693535\";a:10:{s:4:\"hash\";s:32:\"6736c4d180a84f27ccffc7a7c3693535\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1627704000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1627704000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a7e894924ff3abd3a467cfe910132d46\";a:10:{s:4:\"hash\";s:32:\"a7e894924ff3abd3a467cfe910132d46\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1627704000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1627704000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"84bc923dbb5f7a2a88187e926a3bf4eb\";a:10:{s:4:\"hash\";s:32:\"84bc923dbb5f7a2a88187e926a3bf4eb\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1627704000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1627704000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"22e37c4cd000f7638371973ce8013bbb\";a:10:{s:4:\"hash\";s:32:\"22e37c4cd000f7638371973ce8013bbb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1627790400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1627790400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"81f561406cf082feba56e86776775b44\";a:10:{s:4:\"hash\";s:32:\"81f561406cf082feba56e86776775b44\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1627790400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1627790400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6e0428966b439d9e7ac5945c19525ced\";a:10:{s:4:\"hash\";s:32:\"6e0428966b439d9e7ac5945c19525ced\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1627790400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1627790400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fd25d33a313a2da2f59eacce91fb2885\";a:10:{s:4:\"hash\";s:32:\"fd25d33a313a2da2f59eacce91fb2885\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1627876800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1627876800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"907b1864c6794634a9522429f69f415d\";a:10:{s:4:\"hash\";s:32:\"907b1864c6794634a9522429f69f415d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1635739200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1635739200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a5af14da807dd4353b85f532e38ebe9a\";a:10:{s:4:\"hash\";s:32:\"a5af14da807dd4353b85f532e38ebe9a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1635912000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1635912000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3ceeaeb79bc2f485b09effd5496123cd\";a:10:{s:4:\"hash\";s:32:\"3ceeaeb79bc2f485b09effd5496123cd\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1635998400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1635998400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d2c9cf513924ad0f7ac51f6b251e6958\";a:10:{s:4:\"hash\";s:32:\"d2c9cf513924ad0f7ac51f6b251e6958\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1636257600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1636257600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a1b6f116923de09ccb6a30e81555a762\";a:10:{s:4:\"hash\";s:32:\"a1b6f116923de09ccb6a30e81555a762\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1636257600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1636257600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ab3d6a3d51e90c8a9be8e6623447f335\";a:10:{s:4:\"hash\";s:32:\"ab3d6a3d51e90c8a9be8e6623447f335\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1636257600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1636257600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2588f30027b903e5ef85bbe9dd0323d7\";a:10:{s:4:\"hash\";s:32:\"2588f30027b903e5ef85bbe9dd0323d7\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1636520400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1636520400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ca89f3d26234a3b4a8c20570d48ae906\";a:10:{s:4:\"hash\";s:32:\"ca89f3d26234a3b4a8c20570d48ae906\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1636606800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1636606800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d8df55e7bf6a2a93d4d4c60edf184436\";a:10:{s:4:\"hash\";s:32:\"d8df55e7bf6a2a93d4d4c60edf184436\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1636606800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1636606800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8792630c7433c3944046da9739d96df5\";a:10:{s:4:\"hash\";s:32:\"8792630c7433c3944046da9739d96df5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1636606800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1636606800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bae1f684d79cc745b5978b6474333fa7\";a:10:{s:4:\"hash\";s:32:\"bae1f684d79cc745b5978b6474333fa7\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1636606800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1636606800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9539c3ebfafa7a114fd98a32ce15bb0b\";a:10:{s:4:\"hash\";s:32:\"9539c3ebfafa7a114fd98a32ce15bb0b\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1636693200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1636693200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"30641de6de1109705bcb178b7e296e6f\";a:10:{s:4:\"hash\";s:32:\"30641de6de1109705bcb178b7e296e6f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637125200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1637125200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5e0c442684a526be4eff25e3b32395bc\";a:10:{s:4:\"hash\";s:32:\"5e0c442684a526be4eff25e3b32395bc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637211600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1637211600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"737dc8b594bff7664f6fd2f7e554df9f\";a:10:{s:4:\"hash\";s:32:\"737dc8b594bff7664f6fd2f7e554df9f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637211600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1637211600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f1bdf0582e62985f53b4d6344cc9a56f\";a:10:{s:4:\"hash\";s:32:\"f1bdf0582e62985f53b4d6344cc9a56f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637211600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1637211600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"16b3abdddb32936e03b636b3a312ca63\";a:10:{s:4:\"hash\";s:32:\"16b3abdddb32936e03b636b3a312ca63\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637298000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1637298000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0c5b504555746270abaa32ff5df5715a\";a:10:{s:4:\"hash\";s:32:\"0c5b504555746270abaa32ff5df5715a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637298000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1637298000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cf93d454f2367dae34fdcf2b4637f0e0\";a:10:{s:4:\"hash\";s:32:\"cf93d454f2367dae34fdcf2b4637f0e0\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637298000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1637298000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"acca4087cf74768bf7fe3f8fafbeab8f\";a:10:{s:4:\"hash\";s:32:\"acca4087cf74768bf7fe3f8fafbeab8f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637298000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1637298000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d7e6937b66f15754463b0f0ebd65895\";a:10:{s:4:\"hash\";s:32:\"4d7e6937b66f15754463b0f0ebd65895\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637298000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1637298000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"44e368c2aeaa7c45fc2db8ae8d6eec6f\";a:10:{s:4:\"hash\";s:32:\"44e368c2aeaa7c45fc2db8ae8d6eec6f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637384400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1637384400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0add5e8bbc4e99227662a9de2f33b10d\";a:10:{s:4:\"hash\";s:32:\"0add5e8bbc4e99227662a9de2f33b10d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637384400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1637384400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c8f666c49faeaf79ef8a678832770214\";a:10:{s:4:\"hash\";s:32:\"c8f666c49faeaf79ef8a678832770214\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637384400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1637384400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"653e32fd79fe08975ed618ae43446933\";a:10:{s:4:\"hash\";s:32:\"653e32fd79fe08975ed618ae43446933\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637470800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1637470800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2603924879b0e3bc33fe7e95ff3a47f8\";a:10:{s:4:\"hash\";s:32:\"2603924879b0e3bc33fe7e95ff3a47f8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637470800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1637470800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5cf712fa2dd4282d0d0b83af7d8de990\";a:10:{s:4:\"hash\";s:32:\"5cf712fa2dd4282d0d0b83af7d8de990\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637470800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1637470800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"905d9e07e8581334c05bff08b569f3fb\";a:10:{s:4:\"hash\";s:32:\"905d9e07e8581334c05bff08b569f3fb\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637557200/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/exact_date~1637557200/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ac7081a6ffb91aac8b1a00156ab6bfbb\";a:10:{s:4:\"hash\";s:32:\"ac7081a6ffb91aac8b1a00156ab6bfbb\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637557200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1637557200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"40d3a49d72e6ef065c6f573f2e0cbba8\";a:10:{s:4:\"hash\";s:32:\"40d3a49d72e6ef065c6f573f2e0cbba8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637557200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1637557200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"18e3c66b61739023426ff58ae66e7f0f\";a:10:{s:4:\"hash\";s:32:\"18e3c66b61739023426ff58ae66e7f0f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637557200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1637557200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6951d319f219ae4a32f69a479811de8b\";a:10:{s:4:\"hash\";s:32:\"6951d319f219ae4a32f69a479811de8b\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637557200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1637557200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d795a0dc0db5b387354b2e9780184503\";a:10:{s:4:\"hash\";s:32:\"d795a0dc0db5b387354b2e9780184503\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637730000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1637730000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6276fb5e2c075343686087d542ce4da2\";a:10:{s:4:\"hash\";s:32:\"6276fb5e2c075343686087d542ce4da2\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637816400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1637816400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"25664bc70312af0fc8c9602cd1542704\";a:10:{s:4:\"hash\";s:32:\"25664bc70312af0fc8c9602cd1542704\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637816400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1637816400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"02eb9b4c7a8530a5d692a82c553d5777\";a:10:{s:4:\"hash\";s:32:\"02eb9b4c7a8530a5d692a82c553d5777\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637816400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1637816400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d97b3720b7536e12c9bd79c6572ed359\";a:10:{s:4:\"hash\";s:32:\"d97b3720b7536e12c9bd79c6572ed359\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637902800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1637902800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a831daf1f0c87cf3fd6f1e4995996dd2\";a:10:{s:4:\"hash\";s:32:\"a831daf1f0c87cf3fd6f1e4995996dd2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637989200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1637989200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5d28982cef0da52f439f621c9e562cff\";a:10:{s:4:\"hash\";s:32:\"5d28982cef0da52f439f621c9e562cff\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637989200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1637989200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bb70d0f68aeeefe22c5dde86e022593a\";a:10:{s:4:\"hash\";s:32:\"bb70d0f68aeeefe22c5dde86e022593a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637989200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1637989200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5807745c5504a19fbc1d86d24aa5c0b1\";a:10:{s:4:\"hash\";s:32:\"5807745c5504a19fbc1d86d24aa5c0b1\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1637989200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1637989200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5c8531cbbc02778a2ee3a40e324983c1\";a:10:{s:4:\"hash\";s:32:\"5c8531cbbc02778a2ee3a40e324983c1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1638075600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1638075600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3f257e004a0fc1a0559d45668ccdb9da\";a:10:{s:4:\"hash\";s:32:\"3f257e004a0fc1a0559d45668ccdb9da\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1638075600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/exact_date~1638075600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5b564a64b4800e9cbbf0a3668769fcbd\";a:10:{s:4:\"hash\";s:32:\"5b564a64b4800e9cbbf0a3668769fcbd\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1638075600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1638075600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ce3ce1e8f4ac9887793c5d94c3ee8d9d\";a:10:{s:4:\"hash\";s:32:\"ce3ce1e8f4ac9887793c5d94c3ee8d9d\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1638162000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1638162000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d1a2956806b6215969ca6ca7da389091\";a:10:{s:4:\"hash\";s:32:\"d1a2956806b6215969ca6ca7da389091\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1638162000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1638162000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"13a3733c1237b01448f44350e4cdab18\";a:10:{s:4:\"hash\";s:32:\"13a3733c1237b01448f44350e4cdab18\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1638248400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1638248400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"419cf7ef25d3f5ed9445a20681a0636f\";a:10:{s:4:\"hash\";s:32:\"419cf7ef25d3f5ed9445a20681a0636f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1638594000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1638594000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4bbf975954ff7b35c5621bc6d752f07a\";a:10:{s:4:\"hash\";s:32:\"4bbf975954ff7b35c5621bc6d752f07a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1651377600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/exact_date~1651377600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1f27af5be3db868275ba63be7a80b522\";a:10:{s:4:\"hash\";s:32:\"1f27af5be3db868275ba63be7a80b522\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/exact_date~1654056000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/exact_date~1654056000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2d630d2044715422f990d3a9739ab066\";a:10:{s:4:\"hash\";s:32:\"2d630d2044715422f990d3a9739ab066\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1557201600/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1557201600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"46e19f5ae3f714f74c4f8217d8250e7e\";a:10:{s:4:\"hash\";s:32:\"46e19f5ae3f714f74c4f8217d8250e7e\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1558411200/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1558411200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8c17dfdca28d9f4b8f9fdc3b071ecb57\";a:10:{s:4:\"hash\";s:32:\"8c17dfdca28d9f4b8f9fdc3b071ecb57\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1558497600/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1558497600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3946383536cf7505b86e5fc86f96e51d\";a:10:{s:4:\"hash\";s:32:\"3946383536cf7505b86e5fc86f96e51d\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1558929600/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1558929600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6a172380d99f1870a919a1b2ca5e8b04\";a:10:{s:4:\"hash\";s:32:\"6a172380d99f1870a919a1b2ca5e8b04\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1559620800/cat_ids~88/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1559620800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e6180c529423d8e98cd9f43cddbefd09\";a:10:{s:4:\"hash\";s:32:\"e6180c529423d8e98cd9f43cddbefd09\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1559707200/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1559707200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7b36cdfcb0a5a2733bd6409b8c4949ac\";a:10:{s:4:\"hash\";s:32:\"7b36cdfcb0a5a2733bd6409b8c4949ac\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1560052800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:93:\"/events/action~agenda/page_offset~-1/time_limit~1560052800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ac79898c5c4425c333d0991e32c6cda0\";a:10:{s:4:\"hash\";s:32:\"ac79898c5c4425c333d0991e32c6cda0\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1560225600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:93:\"/events/action~agenda/page_offset~-1/time_limit~1560225600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"69409233381762a422e65af9862e6cd5\";a:10:{s:4:\"hash\";s:32:\"69409233381762a422e65af9862e6cd5\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1560312000/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1560312000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c045283d978d44ef445eead13e5780f\";a:10:{s:4:\"hash\";s:32:\"2c045283d978d44ef445eead13e5780f\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1560830400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:93:\"/events/action~agenda/page_offset~-1/time_limit~1560830400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5891320fb37154a1755b3da6060a8ed3\";a:10:{s:4:\"hash\";s:32:\"5891320fb37154a1755b3da6060a8ed3\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1561176000/cat_ids~87/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1561176000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fbe0bfd197cd34c3b78d1584dc203e64\";a:10:{s:4:\"hash\";s:32:\"fbe0bfd197cd34c3b78d1584dc203e64\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1561953600/cat_ids~88/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1561953600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"02902951954f7d553997a1538c568b59\";a:10:{s:4:\"hash\";s:32:\"02902951954f7d553997a1538c568b59\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1588737600/cat_ids~88/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1588737600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5b99d4560f93d891ca68f40487ce679d\";a:10:{s:4:\"hash\";s:32:\"5b99d4560f93d891ca68f40487ce679d\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1590379200/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1590379200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"67d79cdfa28bf9b5f52b8d50a2f6add1\";a:10:{s:4:\"hash\";s:32:\"67d79cdfa28bf9b5f52b8d50a2f6add1\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1590552000/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1590552000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7a9401dc9db27e8c1d768af11d11fd57\";a:10:{s:4:\"hash\";s:32:\"7a9401dc9db27e8c1d768af11d11fd57\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1590638400/cat_ids~89/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1590638400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"81e2c9aaf1aeba5aa6f6c27ce595dfad\";a:10:{s:4:\"hash\";s:32:\"81e2c9aaf1aeba5aa6f6c27ce595dfad\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1590984000/cat_ids~88/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1590984000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c79871f703cd6e98f1a9125abcf6907d\";a:10:{s:4:\"hash\";s:32:\"c79871f703cd6e98f1a9125abcf6907d\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1590984000/cat_ids~89/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1590984000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"30906d98667def8ea2585fc2e27a8689\";a:10:{s:4:\"hash\";s:32:\"30906d98667def8ea2585fc2e27a8689\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1590984000/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1590984000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ada3d70d8b70f554197d5720844aee4b\";a:10:{s:4:\"hash\";s:32:\"ada3d70d8b70f554197d5720844aee4b\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1591070400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:93:\"/events/action~agenda/page_offset~-1/time_limit~1591070400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f87d8acea4fa48ea991022b34cf2509\";a:10:{s:4:\"hash\";s:32:\"7f87d8acea4fa48ea991022b34cf2509\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1591675200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:93:\"/events/action~agenda/page_offset~-1/time_limit~1591675200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2cee11303e25ccdd350e61de9ea95a04\";a:10:{s:4:\"hash\";s:32:\"2cee11303e25ccdd350e61de9ea95a04\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1592020800/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1592020800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"85b0b88bf267c6d02f32347289b46522\";a:10:{s:4:\"hash\";s:32:\"85b0b88bf267c6d02f32347289b46522\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1592107200/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1592107200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ad6dc5e91387805b0455f61c50b75449\";a:10:{s:4:\"hash\";s:32:\"ad6dc5e91387805b0455f61c50b75449\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1593576000/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1593576000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"96030f84a9db03b448018b2efcabe573\";a:10:{s:4:\"hash\";s:32:\"96030f84a9db03b448018b2efcabe573\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1593662400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:93:\"/events/action~agenda/page_offset~-1/time_limit~1593662400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e5b1a4e152a989e88716e88d993f5077\";a:10:{s:4:\"hash\";s:32:\"e5b1a4e152a989e88716e88d993f5077\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1593835200/cat_ids~88/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1593835200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7bd7702ee2ef7875c55c0f411a3b9660\";a:10:{s:4:\"hash\";s:32:\"7bd7702ee2ef7875c55c0f411a3b9660\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1594612800/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1594612800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"96d2affa405935f8feb27c0432325088\";a:10:{s:4:\"hash\";s:32:\"96d2affa405935f8feb27c0432325088\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1594785600/cat_ids~88/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1594785600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9d4d9fa6e6f3434ff51592a26ca4ff92\";a:10:{s:4:\"hash\";s:32:\"9d4d9fa6e6f3434ff51592a26ca4ff92\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1594958400/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1594958400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cb143835f328a8ab694758173db9b7ae\";a:10:{s:4:\"hash\";s:32:\"cb143835f328a8ab694758173db9b7ae\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1595131200/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1595131200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"52aac5f30a484b44b319e5d63c960111\";a:10:{s:4:\"hash\";s:32:\"52aac5f30a484b44b319e5d63c960111\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1595908800/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1595908800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2d4f1f9d262f66977c00c6d5c9a8659b\";a:10:{s:4:\"hash\";s:32:\"2d4f1f9d262f66977c00c6d5c9a8659b\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1596254400/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1596254400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f2529796844fb13893bd12ff24cdb91\";a:10:{s:4:\"hash\";s:32:\"7f2529796844fb13893bd12ff24cdb91\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1596859200/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1596859200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9e335ffd0ec0da33761e9e3fa011bf86\";a:10:{s:4:\"hash\";s:32:\"9e335ffd0ec0da33761e9e3fa011bf86\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1597032000/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1597032000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b303b87159180f44482ab50b91708b26\";a:10:{s:4:\"hash\";s:32:\"b303b87159180f44482ab50b91708b26\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1597377600/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1597377600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"caf9f3e3684feb8d2a336cb9cea64f1e\";a:10:{s:4:\"hash\";s:32:\"caf9f3e3684feb8d2a336cb9cea64f1e\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1604203200/cat_ids~89/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1604203200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"015445891ea54e78e08f70bb7cd3791d\";a:10:{s:4:\"hash\";s:32:\"015445891ea54e78e08f70bb7cd3791d\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1605070800/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1605070800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9c6b8b5d95fbeee9195d88f98ce572bc\";a:10:{s:4:\"hash\";s:32:\"9c6b8b5d95fbeee9195d88f98ce572bc\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1605243600/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1605243600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"42e714e7bb98cb14dcf6e9ecafe24b81\";a:10:{s:4:\"hash\";s:32:\"42e714e7bb98cb14dcf6e9ecafe24b81\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1605762000/cat_ids~88/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1605762000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2ee4a99d530c2665760106b36a106f66\";a:10:{s:4:\"hash\";s:32:\"2ee4a99d530c2665760106b36a106f66\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612069200/cat_ids~88/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1612069200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3a07ceee36e06b8cfe2755a251a2ab23\";a:10:{s:4:\"hash\";s:32:\"3a07ceee36e06b8cfe2755a251a2ab23\";s:3:\"url\";s:150:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:96:\"/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6e5d934bd38a1b1692c49330c380fde4\";a:10:{s:4:\"hash\";s:32:\"6e5d934bd38a1b1692c49330c380fde4\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:93:\"/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a5bcab8a90575d57fb53adacb7934e5a\";a:10:{s:4:\"hash\";s:32:\"a5bcab8a90575d57fb53adacb7934e5a\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:93:\"/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bcfc1869e6e84109b27fd1cf01e84c20\";a:10:{s:4:\"hash\";s:32:\"bcfc1869e6e84109b27fd1cf01e84c20\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~87/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d814b07455ca00d616deb64a824a0874\";a:10:{s:4:\"hash\";s:32:\"d814b07455ca00d616deb64a824a0874\";s:3:\"url\";s:150:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:96:\"/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dd68430cf8fdd18e17bdab6c7d9c0fd5\";a:10:{s:4:\"hash\";s:32:\"dd68430cf8fdd18e17bdab6c7d9c0fd5\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:93:\"/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d58c5b67bf66a8eeac1dab83d0465026\";a:10:{s:4:\"hash\";s:32:\"d58c5b67bf66a8eeac1dab83d0465026\";s:3:\"url\";s:150:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:96:\"/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c6aea3631609f0050d378c5da9c239c2\";a:10:{s:4:\"hash\";s:32:\"c6aea3631609f0050d378c5da9c239c2\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:93:\"/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b67697c986c3b4ca4494b9ca156a588e\";a:10:{s:4:\"hash\";s:32:\"b67697c986c3b4ca4494b9ca156a588e\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~88/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fcd029f5499d8244ee5d5d63cef46c1f\";a:10:{s:4:\"hash\";s:32:\"fcd029f5499d8244ee5d5d63cef46c1f\";s:3:\"url\";s:150:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:96:\"/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fe7afb917090376c43b018f5183ce124\";a:10:{s:4:\"hash\";s:32:\"fe7afb917090376c43b018f5183ce124\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:93:\"/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dfaaaf981c5ebac86516302a23206846\";a:10:{s:4:\"hash\";s:32:\"dfaaaf981c5ebac86516302a23206846\";s:3:\"url\";s:150:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:96:\"/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"72d557f3079b566b8b5c58aeaa30c5b6\";a:10:{s:4:\"hash\";s:32:\"72d557f3079b566b8b5c58aeaa30c5b6\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:93:\"/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"93e2a906a0d9c3315e0879bec1d5b615\";a:10:{s:4:\"hash\";s:32:\"93e2a906a0d9c3315e0879bec1d5b615\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~89/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1612155600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0a2853b0d95ea9e947bb4c467faff9ff\";a:10:{s:4:\"hash\";s:32:\"0a2853b0d95ea9e947bb4c467faff9ff\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612155600/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1612155600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6bae64dfca233fdf9adee6e9a2ab50bc\";a:10:{s:4:\"hash\";s:32:\"6bae64dfca233fdf9adee6e9a2ab50bc\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612155600/request_format~json/cat_ids~87/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1612155600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3e4b06e45e62db8fb6b28de9d377ebc5\";a:10:{s:4:\"hash\";s:32:\"3e4b06e45e62db8fb6b28de9d377ebc5\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612155600/request_format~json/cat_ids~88/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1612155600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6fa91e183373b1e87e7bc5bab8135bf8\";a:10:{s:4:\"hash\";s:32:\"6fa91e183373b1e87e7bc5bab8135bf8\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612155600/request_format~json/cat_ids~89/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1612155600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6609c0833dfa1d0166b70a5561d4834d\";a:10:{s:4:\"hash\";s:32:\"6609c0833dfa1d0166b70a5561d4834d\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612242000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:93:\"/events/action~agenda/page_offset~-1/time_limit~1612242000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"90a86ecf725a04d370a5286703514938\";a:10:{s:4:\"hash\";s:32:\"90a86ecf725a04d370a5286703514938\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612760400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:93:\"/events/action~agenda/page_offset~-1/time_limit~1612760400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c63055c171121c673e8231848fc7b0ab\";a:10:{s:4:\"hash\";s:32:\"c63055c171121c673e8231848fc7b0ab\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1612760400/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1612760400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aecfa01689f66ce0255a8be7138a498c\";a:10:{s:4:\"hash\";s:32:\"aecfa01689f66ce0255a8be7138a498c\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1619323200/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1619323200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e50128203361932a53f268a32956dddb\";a:10:{s:4:\"hash\";s:32:\"e50128203361932a53f268a32956dddb\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1619841600/cat_ids~89/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1619841600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"da54472d100b37f1859ac857ff64fe69\";a:10:{s:4:\"hash\";s:32:\"da54472d100b37f1859ac857ff64fe69\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1619841600/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1619841600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"91c6c80e9a117feda47720a5d70ee94c\";a:10:{s:4:\"hash\";s:32:\"91c6c80e9a117feda47720a5d70ee94c\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1620532800/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1620532800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1b7f2d04fcf0da1a852dee15e37bc905\";a:10:{s:4:\"hash\";s:32:\"1b7f2d04fcf0da1a852dee15e37bc905\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1620705600/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1620705600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b21c8834fcf25cc822e42511f5a210b4\";a:10:{s:4:\"hash\";s:32:\"b21c8834fcf25cc822e42511f5a210b4\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1620964800/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1620964800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2043edaf4deeb40e18ae7d42ebc31989\";a:10:{s:4:\"hash\";s:32:\"2043edaf4deeb40e18ae7d42ebc31989\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1621051200/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1621051200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dc6f76b4b778fb42ac151543a3f58bb6\";a:10:{s:4:\"hash\";s:32:\"dc6f76b4b778fb42ac151543a3f58bb6\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1623211200/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1623211200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"51129a3f92b0a3c84e3e127b89ceae6a\";a:10:{s:4:\"hash\";s:32:\"51129a3f92b0a3c84e3e127b89ceae6a\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1623384000/cat_ids~88/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1623384000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2ffbee2d2b5bb1bd2f288949dd1a5c33\";a:10:{s:4:\"hash\";s:32:\"2ffbee2d2b5bb1bd2f288949dd1a5c33\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1623384000/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1623384000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0ab068ea63a318216cc7d63efcf82021\";a:10:{s:4:\"hash\";s:32:\"0ab068ea63a318216cc7d63efcf82021\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1623643200/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1623643200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff853898ce68dc28fe9becbdd24de0cf\";a:10:{s:4:\"hash\";s:32:\"ff853898ce68dc28fe9becbdd24de0cf\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1623729600/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1623729600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a9ae63521e22505ddd386c96ef0e5170\";a:10:{s:4:\"hash\";s:32:\"a9ae63521e22505ddd386c96ef0e5170\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1623988800/cat_ids~88/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1623988800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6fb07062d62be5f20427d41951f973f6\";a:10:{s:4:\"hash\";s:32:\"6fb07062d62be5f20427d41951f973f6\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1623988800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:93:\"/events/action~agenda/page_offset~-1/time_limit~1623988800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"050b89e3e54121247f9593b771323f7a\";a:10:{s:4:\"hash\";s:32:\"050b89e3e54121247f9593b771323f7a\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1623988800/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1623988800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1ba2d3b02132eac1c767578455f7c2ef\";a:10:{s:4:\"hash\";s:32:\"1ba2d3b02132eac1c767578455f7c2ef\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1624075200/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1624075200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"90fa0a333a7412a04328f83e1d6c75fa\";a:10:{s:4:\"hash\";s:32:\"90fa0a333a7412a04328f83e1d6c75fa\";s:3:\"url\";s:150:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1625112000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:96:\"/events/action~agenda/page_offset~-1/time_limit~1625112000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5c8d690c034bcf4db49adc352163749e\";a:10:{s:4:\"hash\";s:32:\"5c8d690c034bcf4db49adc352163749e\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1625112000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:93:\"/events/action~agenda/page_offset~-1/time_limit~1625112000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"14d5d34ad441c152105b91f18357f2d6\";a:10:{s:4:\"hash\";s:32:\"14d5d34ad441c152105b91f18357f2d6\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1626494400/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1626494400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4f16e5bdd5b67937da7be39e4ee52ca7\";a:10:{s:4:\"hash\";s:32:\"4f16e5bdd5b67937da7be39e4ee52ca7\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1626753600/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1626753600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"44c857111579b2f4571b9777f00dbbec\";a:10:{s:4:\"hash\";s:32:\"44c857111579b2f4571b9777f00dbbec\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1627358400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:93:\"/events/action~agenda/page_offset~-1/time_limit~1627358400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b61e5c029eaffe6b8aaa7bfb30fe492e\";a:10:{s:4:\"hash\";s:32:\"b61e5c029eaffe6b8aaa7bfb30fe492e\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1627358400/cat_ids~88/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1627358400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e6503d858da8b696accdb11b63ea60ed\";a:10:{s:4:\"hash\";s:32:\"e6503d858da8b696accdb11b63ea60ed\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1637125200/cat_ids~89/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1637125200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0182e2966f9e2f191c4a2af677254d0b\";a:10:{s:4:\"hash\";s:32:\"0182e2966f9e2f191c4a2af677254d0b\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1637298000/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1637298000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f3b8c0320479ab0c2603eb52b3c26209\";a:10:{s:4:\"hash\";s:32:\"f3b8c0320479ab0c2603eb52b3c26209\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1637384400/cat_ids~89/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1637384400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"73830cf466d40b2e6cfbfbc77e8a9d98\";a:10:{s:4:\"hash\";s:32:\"73830cf466d40b2e6cfbfbc77e8a9d98\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1637557200/cat_ids~88/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1637557200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9390440fb32ab78ae328d97022eeda00\";a:10:{s:4:\"hash\";s:32:\"9390440fb32ab78ae328d97022eeda00\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1637816400/cat_ids~88/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1637816400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"30b8cbbfe015392641f350c11b4f7b73\";a:10:{s:4:\"hash\";s:32:\"30b8cbbfe015392641f350c11b4f7b73\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1637816400/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1637816400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"829c919f9c07c4f17685e8a4c84664af\";a:10:{s:4:\"hash\";s:32:\"829c919f9c07c4f17685e8a4c84664af\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1637989200/cat_ids~89/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-1/time_limit~1637989200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2bca413506b2f520f6168455df9f344e\";a:10:{s:4:\"hash\";s:32:\"2bca413506b2f520f6168455df9f344e\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1637989200/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1637989200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"25b5ac5461635044ff74e7f301406136\";a:10:{s:4:\"hash\";s:32:\"25b5ac5461635044ff74e7f301406136\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-1/time_limit~1638248400/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-1/time_limit~1638248400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8da435b0f268de61a6b2047e7eaccef2\";a:10:{s:4:\"hash\";s:32:\"8da435b0f268de61a6b2047e7eaccef2\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-2/time_limit~1612155600/cat_ids~87/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-2/time_limit~1612155600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e865c5e47a7ad67e805996d9c323bf4f\";a:10:{s:4:\"hash\";s:32:\"e865c5e47a7ad67e805996d9c323bf4f\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-2/time_limit~1612155600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:93:\"/events/action~agenda/page_offset~-2/time_limit~1612155600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a0e27878d21f474b3d462e3ad0fe4f29\";a:10:{s:4:\"hash\";s:32:\"a0e27878d21f474b3d462e3ad0fe4f29\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-2/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:93:\"/events/action~agenda/page_offset~-2/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"af2876858e9b315c336bdc8b635980c5\";a:10:{s:4:\"hash\";s:32:\"af2876858e9b315c336bdc8b635980c5\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-2/time_limit~1612155600/cat_ids~89/request_format~json/\";s:4:\"path\";s:90:\"/events/action~agenda/page_offset~-2/time_limit~1612155600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a766474dbcac821a994b9da13a3d043a\";a:10:{s:4:\"hash\";s:32:\"a766474dbcac821a994b9da13a3d043a\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~-2/time_limit~1612155600/request_format~json/\";s:4:\"path\";s:79:\"/events/action~agenda/page_offset~-2/time_limit~1612155600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b11dd833d7f327f5927d0e13c1e43943\";a:10:{s:4:\"hash\";s:32:\"b11dd833d7f327f5927d0e13c1e43943\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1557201600/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1557201600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a2502c2c23af6f75b4dc8ab38f71e7ca\";a:10:{s:4:\"hash\";s:32:\"a2502c2c23af6f75b4dc8ab38f71e7ca\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1558411200/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1558411200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"afc888d001d769dcd2dbc6c87c75f697\";a:10:{s:4:\"hash\";s:32:\"afc888d001d769dcd2dbc6c87c75f697\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1558497600/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1558497600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"53d87f3945ed54efcd74d119d1b14031\";a:10:{s:4:\"hash\";s:32:\"53d87f3945ed54efcd74d119d1b14031\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1558929600/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1558929600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bf4cbf9e5c71df2a34b214d86c98ebdd\";a:10:{s:4:\"hash\";s:32:\"bf4cbf9e5c71df2a34b214d86c98ebdd\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1559620800/cat_ids~88/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1559620800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"48d2c374896facdd2b8d0371ca5785fe\";a:10:{s:4:\"hash\";s:32:\"48d2c374896facdd2b8d0371ca5785fe\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1559707200/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1559707200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"93f2ab6cb62219d43df6e4fbfed5e985\";a:10:{s:4:\"hash\";s:32:\"93f2ab6cb62219d43df6e4fbfed5e985\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1560052800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:92:\"/events/action~agenda/page_offset~1/time_limit~1560052800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"913b01447cb96e4cd530431922d269df\";a:10:{s:4:\"hash\";s:32:\"913b01447cb96e4cd530431922d269df\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1560225600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:92:\"/events/action~agenda/page_offset~1/time_limit~1560225600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"302d792f2d1bf496d78a1bff8872c891\";a:10:{s:4:\"hash\";s:32:\"302d792f2d1bf496d78a1bff8872c891\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1560312000/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1560312000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7bb9ab1d668d63afd5419e5e0c7b2957\";a:10:{s:4:\"hash\";s:32:\"7bb9ab1d668d63afd5419e5e0c7b2957\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1560830400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:92:\"/events/action~agenda/page_offset~1/time_limit~1560830400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"51bf40a410eb28063f6e3300c46e4df0\";a:10:{s:4:\"hash\";s:32:\"51bf40a410eb28063f6e3300c46e4df0\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1561176000/cat_ids~87/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1561176000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e8ee91106a10e06bc675a53a8e09a141\";a:10:{s:4:\"hash\";s:32:\"e8ee91106a10e06bc675a53a8e09a141\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1561953600/cat_ids~88/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1561953600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ec3e38d2be5196aee9f3917fafe7c728\";a:10:{s:4:\"hash\";s:32:\"ec3e38d2be5196aee9f3917fafe7c728\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1588737600/cat_ids~88/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1588737600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f4c659570a650a2b17d3b3e646a23340\";a:10:{s:4:\"hash\";s:32:\"f4c659570a650a2b17d3b3e646a23340\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1590379200/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1590379200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"523191c277298a76d939dd88065c57b0\";a:10:{s:4:\"hash\";s:32:\"523191c277298a76d939dd88065c57b0\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1590552000/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1590552000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"205d6fedf00af0b5f378d2f11ceb5ec0\";a:10:{s:4:\"hash\";s:32:\"205d6fedf00af0b5f378d2f11ceb5ec0\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1590638400/cat_ids~89/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1590638400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"37b0224d3004f01a4b3ca915d5e7f941\";a:10:{s:4:\"hash\";s:32:\"37b0224d3004f01a4b3ca915d5e7f941\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1590984000/cat_ids~88/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1590984000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"54bae3eb72d331591af5dac026632989\";a:10:{s:4:\"hash\";s:32:\"54bae3eb72d331591af5dac026632989\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1590984000/cat_ids~89/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1590984000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3d52e9d9b5980c3e67a53d05a69e97ab\";a:10:{s:4:\"hash\";s:32:\"3d52e9d9b5980c3e67a53d05a69e97ab\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1590984000/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1590984000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3d5422b8769d93e817982daeb3f8cf9f\";a:10:{s:4:\"hash\";s:32:\"3d5422b8769d93e817982daeb3f8cf9f\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1591070400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:92:\"/events/action~agenda/page_offset~1/time_limit~1591070400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9d8feaa06b4c26bdda19cdd0eb05e5bd\";a:10:{s:4:\"hash\";s:32:\"9d8feaa06b4c26bdda19cdd0eb05e5bd\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1591675200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:92:\"/events/action~agenda/page_offset~1/time_limit~1591675200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c8fb3488ea20223da639306a7ece0524\";a:10:{s:4:\"hash\";s:32:\"c8fb3488ea20223da639306a7ece0524\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1592020800/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1592020800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fddc61c4e44896f6f0a6c923640d1cda\";a:10:{s:4:\"hash\";s:32:\"fddc61c4e44896f6f0a6c923640d1cda\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1592107200/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1592107200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"834be57a68c74739387d3e8be854d22f\";a:10:{s:4:\"hash\";s:32:\"834be57a68c74739387d3e8be854d22f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1593576000/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1593576000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"feef5b903196f1b74685b043262b84e0\";a:10:{s:4:\"hash\";s:32:\"feef5b903196f1b74685b043262b84e0\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1593662400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:92:\"/events/action~agenda/page_offset~1/time_limit~1593662400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"af73b3f22b945ba772530d5a40ae6c83\";a:10:{s:4:\"hash\";s:32:\"af73b3f22b945ba772530d5a40ae6c83\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1593835200/cat_ids~88/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1593835200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dd94b629f8e3c42004b5ba8b1214fcec\";a:10:{s:4:\"hash\";s:32:\"dd94b629f8e3c42004b5ba8b1214fcec\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1594612800/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1594612800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aed688751295eb37ca2bc4da1c0a94c0\";a:10:{s:4:\"hash\";s:32:\"aed688751295eb37ca2bc4da1c0a94c0\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1594785600/cat_ids~88/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1594785600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"09c0d309ded39d53f17928ad011941db\";a:10:{s:4:\"hash\";s:32:\"09c0d309ded39d53f17928ad011941db\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1594958400/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1594958400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"20ea596d487a4080553f0f02591bcb24\";a:10:{s:4:\"hash\";s:32:\"20ea596d487a4080553f0f02591bcb24\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1595131200/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1595131200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6b45fe98f997ba7bbe437b73cb05d24e\";a:10:{s:4:\"hash\";s:32:\"6b45fe98f997ba7bbe437b73cb05d24e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1595908800/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1595908800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"70ca35d13b4a54361bda75e774a47d4f\";a:10:{s:4:\"hash\";s:32:\"70ca35d13b4a54361bda75e774a47d4f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1596254400/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1596254400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"651ada36a97155cc996560564426cbdf\";a:10:{s:4:\"hash\";s:32:\"651ada36a97155cc996560564426cbdf\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1596859200/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1596859200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2ea5870c5c4b46de67d4fdea9a4b384c\";a:10:{s:4:\"hash\";s:32:\"2ea5870c5c4b46de67d4fdea9a4b384c\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1597032000/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1597032000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"34e076ecc9cf1a62711d6e08dc3eb7db\";a:10:{s:4:\"hash\";s:32:\"34e076ecc9cf1a62711d6e08dc3eb7db\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1597377600/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1597377600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a2f3313b15159d693320ed9f6c0f40f4\";a:10:{s:4:\"hash\";s:32:\"a2f3313b15159d693320ed9f6c0f40f4\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1604203200/cat_ids~89/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1604203200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"570ca05dd7abd5aa58d20b6a32360455\";a:10:{s:4:\"hash\";s:32:\"570ca05dd7abd5aa58d20b6a32360455\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1605070800/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1605070800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"903e8bf14ed7528ec360aeac3a09fb83\";a:10:{s:4:\"hash\";s:32:\"903e8bf14ed7528ec360aeac3a09fb83\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1605243600/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1605243600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9d86c20d94e56617978f3d04c1347018\";a:10:{s:4:\"hash\";s:32:\"9d86c20d94e56617978f3d04c1347018\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1605762000/cat_ids~88/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1605762000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ba6b5e251fcef792d1d4163619840e88\";a:10:{s:4:\"hash\";s:32:\"ba6b5e251fcef792d1d4163619840e88\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1612069200/cat_ids~88/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1612069200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"92d64407ca80ee17fa700f138f923d40\";a:10:{s:4:\"hash\";s:32:\"92d64407ca80ee17fa700f138f923d40\";s:3:\"url\";s:149:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:95:\"/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ec46ffbf571a3b768b121312f456b732\";a:10:{s:4:\"hash\";s:32:\"ec46ffbf571a3b768b121312f456b732\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~87/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"843f8194bb6ec660c5d7a7b075f524d5\";a:10:{s:4:\"hash\";s:32:\"843f8194bb6ec660c5d7a7b075f524d5\";s:3:\"url\";s:149:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:95:\"/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ab0687601869871517affa2e2e794cf\";a:10:{s:4:\"hash\";s:32:\"8ab0687601869871517affa2e2e794cf\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:92:\"/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b1ad2e52b0e60db045fbece48c78b80c\";a:10:{s:4:\"hash\";s:32:\"b1ad2e52b0e60db045fbece48c78b80c\";s:3:\"url\";s:149:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:95:\"/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fda36847799a2630a6b2919e930d2d2a\";a:10:{s:4:\"hash\";s:32:\"fda36847799a2630a6b2919e930d2d2a\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:92:\"/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c8e80464fce0cf0ac1e9f76eba86bf08\";a:10:{s:4:\"hash\";s:32:\"c8e80464fce0cf0ac1e9f76eba86bf08\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~88/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"293acf7cad83f67b15cb774fb5d8ce17\";a:10:{s:4:\"hash\";s:32:\"293acf7cad83f67b15cb774fb5d8ce17\";s:3:\"url\";s:149:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:95:\"/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c77d5c99ae658875a98af9b6bcbe371\";a:10:{s:4:\"hash\";s:32:\"3c77d5c99ae658875a98af9b6bcbe371\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:92:\"/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"be4aa6396014cb7a8e10bf501419c01a\";a:10:{s:4:\"hash\";s:32:\"be4aa6396014cb7a8e10bf501419c01a\";s:3:\"url\";s:149:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:95:\"/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c3f1eef5ffcc6ab901e9a1b548a675f\";a:10:{s:4:\"hash\";s:32:\"2c3f1eef5ffcc6ab901e9a1b548a675f\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:92:\"/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c796a79cfa4919241d4cf530b970ab6b\";a:10:{s:4:\"hash\";s:32:\"c796a79cfa4919241d4cf530b970ab6b\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~89/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1612155600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dc3f4d1ee9fc72fbd09ce4f90f4625d7\";a:10:{s:4:\"hash\";s:32:\"dc3f4d1ee9fc72fbd09ce4f90f4625d7\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1612155600/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1612155600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a52c08f208c93083ce1eb665c87bd9d8\";a:10:{s:4:\"hash\";s:32:\"a52c08f208c93083ce1eb665c87bd9d8\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1612155600/request_format~json/cat_ids~87/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1612155600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"42b9edb493c40a2fe5348bfad94fac32\";a:10:{s:4:\"hash\";s:32:\"42b9edb493c40a2fe5348bfad94fac32\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1612155600/request_format~json/cat_ids~88/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1612155600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0fa982432e7c0e72c52183a219d7b301\";a:10:{s:4:\"hash\";s:32:\"0fa982432e7c0e72c52183a219d7b301\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1612155600/request_format~json/cat_ids~89/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1612155600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"609df7c45afb227e1c16c0950bf5f829\";a:10:{s:4:\"hash\";s:32:\"609df7c45afb227e1c16c0950bf5f829\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1612242000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:92:\"/events/action~agenda/page_offset~1/time_limit~1612242000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"27604d2ab2f75727fb1173c63bcfc161\";a:10:{s:4:\"hash\";s:32:\"27604d2ab2f75727fb1173c63bcfc161\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1612760400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:92:\"/events/action~agenda/page_offset~1/time_limit~1612760400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"564b92ecb915134e265a37b49b16a5e9\";a:10:{s:4:\"hash\";s:32:\"564b92ecb915134e265a37b49b16a5e9\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1612760400/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1612760400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3ab7c94c3856f0d50b0751dc823898ab\";a:10:{s:4:\"hash\";s:32:\"3ab7c94c3856f0d50b0751dc823898ab\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1619323200/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1619323200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b52e6818fe8e77b6b444e3975d28d5cf\";a:10:{s:4:\"hash\";s:32:\"b52e6818fe8e77b6b444e3975d28d5cf\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1619841600/cat_ids~89/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1619841600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1114712547555e3fb49ed9149aea1924\";a:10:{s:4:\"hash\";s:32:\"1114712547555e3fb49ed9149aea1924\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1619841600/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1619841600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3183e3ec6614587feff806765a43b1f8\";a:10:{s:4:\"hash\";s:32:\"3183e3ec6614587feff806765a43b1f8\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1620532800/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1620532800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5d6cf2f095374a58f19f72ba162d1008\";a:10:{s:4:\"hash\";s:32:\"5d6cf2f095374a58f19f72ba162d1008\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1620705600/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1620705600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"39efbb11f91811645a28bbf3813e706c\";a:10:{s:4:\"hash\";s:32:\"39efbb11f91811645a28bbf3813e706c\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1620964800/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1620964800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d4839e455c81cde935864752b085b6a5\";a:10:{s:4:\"hash\";s:32:\"d4839e455c81cde935864752b085b6a5\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1621051200/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1621051200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d33508b474ddac5ec45361e3ab63b68e\";a:10:{s:4:\"hash\";s:32:\"d33508b474ddac5ec45361e3ab63b68e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1623211200/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1623211200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a705a3837a514f1eb1e774a2b2635e0b\";a:10:{s:4:\"hash\";s:32:\"a705a3837a514f1eb1e774a2b2635e0b\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1623384000/cat_ids~88/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1623384000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"14fed312ca4b9dd53eeb00b412dba91b\";a:10:{s:4:\"hash\";s:32:\"14fed312ca4b9dd53eeb00b412dba91b\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1623384000/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1623384000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"06560fd4114daa45006f476277cf7e07\";a:10:{s:4:\"hash\";s:32:\"06560fd4114daa45006f476277cf7e07\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1623643200/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1623643200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"51875f34fe5d28a46fa2d051c536696f\";a:10:{s:4:\"hash\";s:32:\"51875f34fe5d28a46fa2d051c536696f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1623729600/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1623729600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1023c90b2591e01656781e8b67b444bf\";a:10:{s:4:\"hash\";s:32:\"1023c90b2591e01656781e8b67b444bf\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1623988800/cat_ids~88/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1623988800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cb027992f4d7ba9005921b56955d5e68\";a:10:{s:4:\"hash\";s:32:\"cb027992f4d7ba9005921b56955d5e68\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1623988800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:92:\"/events/action~agenda/page_offset~1/time_limit~1623988800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cfd9eb59b2718450cc192edc6cdce66c\";a:10:{s:4:\"hash\";s:32:\"cfd9eb59b2718450cc192edc6cdce66c\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1623988800/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1623988800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3996e4aa23d5d8635cb0b1efb9b00bbf\";a:10:{s:4:\"hash\";s:32:\"3996e4aa23d5d8635cb0b1efb9b00bbf\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1624075200/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1624075200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"503611af44e2a1114a11de00a2a4d5c8\";a:10:{s:4:\"hash\";s:32:\"503611af44e2a1114a11de00a2a4d5c8\";s:3:\"url\";s:149:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1625112000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:95:\"/events/action~agenda/page_offset~1/time_limit~1625112000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"98ccea60434e68e2d0cf0b98da647554\";a:10:{s:4:\"hash\";s:32:\"98ccea60434e68e2d0cf0b98da647554\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1625112000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:92:\"/events/action~agenda/page_offset~1/time_limit~1625112000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"00be0ec19bf83a39e17324b10ff68964\";a:10:{s:4:\"hash\";s:32:\"00be0ec19bf83a39e17324b10ff68964\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1626494400/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1626494400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"21253f2df694a09f7dc5bb8f7f355b69\";a:10:{s:4:\"hash\";s:32:\"21253f2df694a09f7dc5bb8f7f355b69\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1626753600/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1626753600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3207f5dca5c705c331613e1dae151322\";a:10:{s:4:\"hash\";s:32:\"3207f5dca5c705c331613e1dae151322\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1627358400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:92:\"/events/action~agenda/page_offset~1/time_limit~1627358400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5d20198d606c40e144155955b043a29b\";a:10:{s:4:\"hash\";s:32:\"5d20198d606c40e144155955b043a29b\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1627358400/cat_ids~88/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1627358400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d715f2653e80e3aeba4e87fac6846299\";a:10:{s:4:\"hash\";s:32:\"d715f2653e80e3aeba4e87fac6846299\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1637125200/cat_ids~89/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1637125200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5a872957d4b172b0077b9cf81d915fa7\";a:10:{s:4:\"hash\";s:32:\"5a872957d4b172b0077b9cf81d915fa7\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1637298000/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1637298000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d24b91593b03bbd18a0d7b0bdca8fa01\";a:10:{s:4:\"hash\";s:32:\"d24b91593b03bbd18a0d7b0bdca8fa01\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1637384400/cat_ids~89/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1637384400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"589786f942c091b2c9b6103824b57d7c\";a:10:{s:4:\"hash\";s:32:\"589786f942c091b2c9b6103824b57d7c\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1637557200/cat_ids~88/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1637557200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"188b2ae8f0c1ce9e159825c4e12ebaf1\";a:10:{s:4:\"hash\";s:32:\"188b2ae8f0c1ce9e159825c4e12ebaf1\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1637816400/cat_ids~88/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1637816400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"869b566a9581323487a57b823c69b1e6\";a:10:{s:4:\"hash\";s:32:\"869b566a9581323487a57b823c69b1e6\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1637816400/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1637816400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef25891e53a652ae462bc66b97aaf60e\";a:10:{s:4:\"hash\";s:32:\"ef25891e53a652ae462bc66b97aaf60e\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1637989200/cat_ids~89/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~1/time_limit~1637989200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ed6336981570b91f2ce41d2a06fcf0f1\";a:10:{s:4:\"hash\";s:32:\"ed6336981570b91f2ce41d2a06fcf0f1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1637989200/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1637989200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"12056884efbcafc9aa2255af3a004940\";a:10:{s:4:\"hash\";s:32:\"12056884efbcafc9aa2255af3a004940\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~1/time_limit~1638248400/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~1/time_limit~1638248400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"77f51057f8852e4a0ae93fb1f090ddc9\";a:10:{s:4:\"hash\";s:32:\"77f51057f8852e4a0ae93fb1f090ddc9\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~2/time_limit~1612155600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:92:\"/events/action~agenda/page_offset~2/time_limit~1612155600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c838ab1d2eb9b7d9b6cb549cdaedf73d\";a:10:{s:4:\"hash\";s:32:\"c838ab1d2eb9b7d9b6cb549cdaedf73d\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~2/time_limit~1612155600/cat_ids~88/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~2/time_limit~1612155600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f5f0b5d9abc1fe71b223c301a2db03c2\";a:10:{s:4:\"hash\";s:32:\"f5f0b5d9abc1fe71b223c301a2db03c2\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~2/time_limit~1612155600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:92:\"/events/action~agenda/page_offset~2/time_limit~1612155600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"437800488735f30749efc4e0f43e8d08\";a:10:{s:4:\"hash\";s:32:\"437800488735f30749efc4e0f43e8d08\";s:3:\"url\";s:149:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~2/time_limit~1612155600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:95:\"/events/action~agenda/page_offset~2/time_limit~1612155600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cd20bb6a6a19237532eb43a081f95fa9\";a:10:{s:4:\"hash\";s:32:\"cd20bb6a6a19237532eb43a081f95fa9\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~2/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:92:\"/events/action~agenda/page_offset~2/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"066187af147793db2df276330a6f6c8a\";a:10:{s:4:\"hash\";s:32:\"066187af147793db2df276330a6f6c8a\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~2/time_limit~1612155600/cat_ids~89/request_format~json/\";s:4:\"path\";s:89:\"/events/action~agenda/page_offset~2/time_limit~1612155600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"96e164fd8aef835b427e754a7174aa58\";a:10:{s:4:\"hash\";s:32:\"96e164fd8aef835b427e754a7174aa58\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/page_offset~2/time_limit~1612155600/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/page_offset~2/time_limit~1612155600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e7694738599b04e2560e24cf6348212c\";a:10:{s:4:\"hash\";s:32:\"e7694738599b04e2560e24cf6348212c\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1557201600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1557201600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4999061382f7e6db62b626e0af8b2524\";a:10:{s:4:\"hash\";s:32:\"4999061382f7e6db62b626e0af8b2524\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1557201600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1557201600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4b64ba0e54bbc9b5ebb319cf8661d91a\";a:10:{s:4:\"hash\";s:32:\"4b64ba0e54bbc9b5ebb319cf8661d91a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1557201600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1557201600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d2f8879f570cf847184110a715b440ad\";a:10:{s:4:\"hash\";s:32:\"d2f8879f570cf847184110a715b440ad\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1557201600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1557201600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"90a415767a3f9e9fad2ebe496e9bc428\";a:10:{s:4:\"hash\";s:32:\"90a415767a3f9e9fad2ebe496e9bc428\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1558411200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1558411200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6df1863aa67c5d00eafdc0a1df1e1491\";a:10:{s:4:\"hash\";s:32:\"6df1863aa67c5d00eafdc0a1df1e1491\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1558411200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1558411200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"487277c090ea480079d1ceadb9a8f312\";a:10:{s:4:\"hash\";s:32:\"487277c090ea480079d1ceadb9a8f312\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1558411200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1558411200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"76e67070c444b317cc0ed97d86fd7ef2\";a:10:{s:4:\"hash\";s:32:\"76e67070c444b317cc0ed97d86fd7ef2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1558411200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1558411200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d2dc0cbfa11b113ec73e64e2be3a8fc0\";a:10:{s:4:\"hash\";s:32:\"d2dc0cbfa11b113ec73e64e2be3a8fc0\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1558497600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1558497600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fe0c18cd944380acd2fabba5b918bc1b\";a:10:{s:4:\"hash\";s:32:\"fe0c18cd944380acd2fabba5b918bc1b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1558497600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1558497600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9807fc098ab79227338d35a90bf98752\";a:10:{s:4:\"hash\";s:32:\"9807fc098ab79227338d35a90bf98752\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1558497600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1558497600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ca8d0508539d2b841d12ea111d339033\";a:10:{s:4:\"hash\";s:32:\"ca8d0508539d2b841d12ea111d339033\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1558497600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1558497600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a1a1f30d4169342e4f50fc58c89aa708\";a:10:{s:4:\"hash\";s:32:\"a1a1f30d4169342e4f50fc58c89aa708\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1558929600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1558929600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"85169aa1b4b1606f1960ab7ea595dfae\";a:10:{s:4:\"hash\";s:32:\"85169aa1b4b1606f1960ab7ea595dfae\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1558929600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1558929600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ed294a3aa78014933eb87c3084d34cc\";a:10:{s:4:\"hash\";s:32:\"8ed294a3aa78014933eb87c3084d34cc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1558929600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1558929600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"86fe04fff5d9ec92062b231b12ee2f47\";a:10:{s:4:\"hash\";s:32:\"86fe04fff5d9ec92062b231b12ee2f47\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1558929600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1558929600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a93e08d5bf77efa472d3d51d5d4b64bd\";a:10:{s:4:\"hash\";s:32:\"a93e08d5bf77efa472d3d51d5d4b64bd\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1559620800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1559620800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"74de54ed9de2db32acaac235cdc31d7b\";a:10:{s:4:\"hash\";s:32:\"74de54ed9de2db32acaac235cdc31d7b\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1559620800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1559620800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1e6cbb026c90aa5498f7191780246b28\";a:10:{s:4:\"hash\";s:32:\"1e6cbb026c90aa5498f7191780246b28\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1559620800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1559620800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f36ec9fc3faca70705258ccc6a031f6a\";a:10:{s:4:\"hash\";s:32:\"f36ec9fc3faca70705258ccc6a031f6a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1559620800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1559620800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5f82c86b4a8018ea1876fd4de6de51d5\";a:10:{s:4:\"hash\";s:32:\"5f82c86b4a8018ea1876fd4de6de51d5\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1559707200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1559707200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"20ae52743fb292c8ccf1a46a02a8a253\";a:10:{s:4:\"hash\";s:32:\"20ae52743fb292c8ccf1a46a02a8a253\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1559707200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1559707200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"236cd76a916828b2e5a48f92cdfea1d3\";a:10:{s:4:\"hash\";s:32:\"236cd76a916828b2e5a48f92cdfea1d3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1559707200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1559707200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"014e122f8a7796e58f91e9e67a9c6a44\";a:10:{s:4:\"hash\";s:32:\"014e122f8a7796e58f91e9e67a9c6a44\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1559707200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1559707200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"db96ecceb254a99267fdfa96898a1780\";a:10:{s:4:\"hash\";s:32:\"db96ecceb254a99267fdfa96898a1780\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1560052800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1560052800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e0dfca4cca12a53b40b6da4ec17e00d0\";a:10:{s:4:\"hash\";s:32:\"e0dfca4cca12a53b40b6da4ec17e00d0\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1560052800/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/time_limit~1560052800/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f982b371541e2a9ae54efd34c3081253\";a:10:{s:4:\"hash\";s:32:\"f982b371541e2a9ae54efd34c3081253\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1560052800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1560052800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7a84cd3df0ca8dafcd9c7bd95e2afd97\";a:10:{s:4:\"hash\";s:32:\"7a84cd3df0ca8dafcd9c7bd95e2afd97\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1560052800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1560052800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"91374945512068a4f1114628b91f3ed5\";a:10:{s:4:\"hash\";s:32:\"91374945512068a4f1114628b91f3ed5\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1560225600/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/time_limit~1560225600/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"288f836bcacde8f71cbe7b55f0380ac0\";a:10:{s:4:\"hash\";s:32:\"288f836bcacde8f71cbe7b55f0380ac0\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1560225600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1560225600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"748f51a69cc524c65630d1bb3fd5e70a\";a:10:{s:4:\"hash\";s:32:\"748f51a69cc524c65630d1bb3fd5e70a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1560225600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1560225600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2824f615fbab064bd7d1e9f050842b0b\";a:10:{s:4:\"hash\";s:32:\"2824f615fbab064bd7d1e9f050842b0b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1560225600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1560225600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"65a9e7e4a23193a81d12b89eeaa47b4c\";a:10:{s:4:\"hash\";s:32:\"65a9e7e4a23193a81d12b89eeaa47b4c\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1560312000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1560312000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7622fc405dad4d4a182f35ce8716bdcf\";a:10:{s:4:\"hash\";s:32:\"7622fc405dad4d4a182f35ce8716bdcf\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1560312000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1560312000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bfe976a41287ad06c37d59825dcd340d\";a:10:{s:4:\"hash\";s:32:\"bfe976a41287ad06c37d59825dcd340d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1560312000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1560312000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"625250b387074ccb803a5dbe4f99ae47\";a:10:{s:4:\"hash\";s:32:\"625250b387074ccb803a5dbe4f99ae47\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1560312000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1560312000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e7ccbcaae80f600922350a3ddf31ccbd\";a:10:{s:4:\"hash\";s:32:\"e7ccbcaae80f600922350a3ddf31ccbd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1560830400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1560830400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ac564b51e3c4f20c98c105a5e74ecfe6\";a:10:{s:4:\"hash\";s:32:\"ac564b51e3c4f20c98c105a5e74ecfe6\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1560830400/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/time_limit~1560830400/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d503863d2f32072dd044974188622f64\";a:10:{s:4:\"hash\";s:32:\"d503863d2f32072dd044974188622f64\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1560830400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1560830400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c2a17f911c317474cf5fe5ab141a1c9\";a:10:{s:4:\"hash\";s:32:\"3c2a17f911c317474cf5fe5ab141a1c9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1560830400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1560830400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7066614776eecb1704ec3f0d9f1a26db\";a:10:{s:4:\"hash\";s:32:\"7066614776eecb1704ec3f0d9f1a26db\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1561176000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1561176000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a428bf050d875e6896f912d953adc99f\";a:10:{s:4:\"hash\";s:32:\"a428bf050d875e6896f912d953adc99f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1561176000/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1561176000/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c32759b39184102e81ae8d2ba642edd\";a:10:{s:4:\"hash\";s:32:\"2c32759b39184102e81ae8d2ba642edd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1561176000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1561176000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5b5c0651958122fe0586fc7bd62b5aa1\";a:10:{s:4:\"hash\";s:32:\"5b5c0651958122fe0586fc7bd62b5aa1\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1561176000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1561176000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c7b2dd0dffa782ef41361ef4563c168c\";a:10:{s:4:\"hash\";s:32:\"c7b2dd0dffa782ef41361ef4563c168c\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1561953600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1561953600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dc1840a2ede4566b1ab68bad6f411766\";a:10:{s:4:\"hash\";s:32:\"dc1840a2ede4566b1ab68bad6f411766\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1561953600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1561953600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"64c4e2c538bb597ca1dd525d2e83b4cc\";a:10:{s:4:\"hash\";s:32:\"64c4e2c538bb597ca1dd525d2e83b4cc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1561953600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1561953600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7c2b3c897858e70dc76eb5554bebcf90\";a:10:{s:4:\"hash\";s:32:\"7c2b3c897858e70dc76eb5554bebcf90\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1561953600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1561953600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7dad73787007a71416d4355ad7bce7de\";a:10:{s:4:\"hash\";s:32:\"7dad73787007a71416d4355ad7bce7de\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1588737600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1588737600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1e187dc674c833b96bd79aedc8c1292b\";a:10:{s:4:\"hash\";s:32:\"1e187dc674c833b96bd79aedc8c1292b\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1588737600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1588737600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7e877f9300b590123b4d64b6015fca5e\";a:10:{s:4:\"hash\";s:32:\"7e877f9300b590123b4d64b6015fca5e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1588737600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1588737600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a666179af7a8c9ea509bbc69d37da57e\";a:10:{s:4:\"hash\";s:32:\"a666179af7a8c9ea509bbc69d37da57e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1588737600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1588737600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b6ad3d37a8255c7bf585ba96af1e765a\";a:10:{s:4:\"hash\";s:32:\"b6ad3d37a8255c7bf585ba96af1e765a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590379200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1590379200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f548cc4942e30d8b27dda03ef2b2a188\";a:10:{s:4:\"hash\";s:32:\"f548cc4942e30d8b27dda03ef2b2a188\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590379200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1590379200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"072c3ec95d48df5c422740653b02b7ac\";a:10:{s:4:\"hash\";s:32:\"072c3ec95d48df5c422740653b02b7ac\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590379200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1590379200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"76ddf0f1972ae912a09195c5ad8a0d90\";a:10:{s:4:\"hash\";s:32:\"76ddf0f1972ae912a09195c5ad8a0d90\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590379200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1590379200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"875216f11207c19f65105c1fd8ac5e2e\";a:10:{s:4:\"hash\";s:32:\"875216f11207c19f65105c1fd8ac5e2e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590552000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1590552000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e27b719ef7a9db45516a9f5989024e48\";a:10:{s:4:\"hash\";s:32:\"e27b719ef7a9db45516a9f5989024e48\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590552000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1590552000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"93d1314d2394e8978968729feed03c1e\";a:10:{s:4:\"hash\";s:32:\"93d1314d2394e8978968729feed03c1e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590552000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1590552000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b3b4abdd6ae742da6daced4e85e95a34\";a:10:{s:4:\"hash\";s:32:\"b3b4abdd6ae742da6daced4e85e95a34\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590552000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1590552000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6531c8b002110843f5a21882c885f43c\";a:10:{s:4:\"hash\";s:32:\"6531c8b002110843f5a21882c885f43c\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590638400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1590638400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fec9084f2fdc3285ba0fac83784aff00\";a:10:{s:4:\"hash\";s:32:\"fec9084f2fdc3285ba0fac83784aff00\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590638400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1590638400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"25edd046e80b63139ce88dc82a1d01c3\";a:10:{s:4:\"hash\";s:32:\"25edd046e80b63139ce88dc82a1d01c3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590638400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1590638400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cba0a7cb2e4f38a4067dfea538146b88\";a:10:{s:4:\"hash\";s:32:\"cba0a7cb2e4f38a4067dfea538146b88\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590638400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1590638400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ec66cedf44dbf32b596e01d652361f76\";a:10:{s:4:\"hash\";s:32:\"ec66cedf44dbf32b596e01d652361f76\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590984000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1590984000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"40b4216722313dd9b757a8a533b335cd\";a:10:{s:4:\"hash\";s:32:\"40b4216722313dd9b757a8a533b335cd\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590984000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1590984000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0b2515e21c849f166f04b3088b511878\";a:10:{s:4:\"hash\";s:32:\"0b2515e21c849f166f04b3088b511878\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590984000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1590984000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"50db2099bb518df6b61700ccb22b5c5f\";a:10:{s:4:\"hash\";s:32:\"50db2099bb518df6b61700ccb22b5c5f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590984000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1590984000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"267122e33fc861bd1686adee071b94bc\";a:10:{s:4:\"hash\";s:32:\"267122e33fc861bd1686adee071b94bc\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590984000/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1590984000/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7fd8f3956c2682e5e751fb5840d98569\";a:10:{s:4:\"hash\";s:32:\"7fd8f3956c2682e5e751fb5840d98569\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590984000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1590984000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e224a574967a1e7a006c8f28db15e2a2\";a:10:{s:4:\"hash\";s:32:\"e224a574967a1e7a006c8f28db15e2a2\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590984000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1590984000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a5e35cc06a4028b66c4be4fcb829fa03\";a:10:{s:4:\"hash\";s:32:\"a5e35cc06a4028b66c4be4fcb829fa03\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590984000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1590984000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bd68f5fe54632ffa77bc7c28fb0ceff1\";a:10:{s:4:\"hash\";s:32:\"bd68f5fe54632ffa77bc7c28fb0ceff1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590984000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1590984000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3b047d4172fe6b8a6563127b07ef7989\";a:10:{s:4:\"hash\";s:32:\"3b047d4172fe6b8a6563127b07ef7989\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1590984000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1590984000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d397abeb9e394c9c867736a6b1bb8257\";a:10:{s:4:\"hash\";s:32:\"d397abeb9e394c9c867736a6b1bb8257\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1591070400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1591070400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dd7382c53f6e4a497b8a6d18707e7b35\";a:10:{s:4:\"hash\";s:32:\"dd7382c53f6e4a497b8a6d18707e7b35\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1591070400/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/time_limit~1591070400/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0119445320f108d8ddebe4f7c3a8c7ef\";a:10:{s:4:\"hash\";s:32:\"0119445320f108d8ddebe4f7c3a8c7ef\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1591070400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1591070400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ebc5664d7fd5a88a5cc67285c035f42\";a:10:{s:4:\"hash\";s:32:\"8ebc5664d7fd5a88a5cc67285c035f42\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1591070400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1591070400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6094e7c32f1ca5a6d7e877f7e3a67da1\";a:10:{s:4:\"hash\";s:32:\"6094e7c32f1ca5a6d7e877f7e3a67da1\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1591675200/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/time_limit~1591675200/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"986da5baca24e1cc0e3d9d6bf8f6fc7a\";a:10:{s:4:\"hash\";s:32:\"986da5baca24e1cc0e3d9d6bf8f6fc7a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1591675200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1591675200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"058c0b39352776f120a7117b17c6a278\";a:10:{s:4:\"hash\";s:32:\"058c0b39352776f120a7117b17c6a278\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1591675200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1591675200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fa53d39ce441ffcfb723f63c987a14f6\";a:10:{s:4:\"hash\";s:32:\"fa53d39ce441ffcfb723f63c987a14f6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1591675200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1591675200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c05bc61b2420fd60a9f6240ab165a182\";a:10:{s:4:\"hash\";s:32:\"c05bc61b2420fd60a9f6240ab165a182\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1592020800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1592020800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3aac45b686046a65de19d8b55cf430e1\";a:10:{s:4:\"hash\";s:32:\"3aac45b686046a65de19d8b55cf430e1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1592020800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1592020800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c3b3c11583c5615213325b4f31337d2d\";a:10:{s:4:\"hash\";s:32:\"c3b3c11583c5615213325b4f31337d2d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1592020800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1592020800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"df8b7d71f38bc908decb3f003f4886af\";a:10:{s:4:\"hash\";s:32:\"df8b7d71f38bc908decb3f003f4886af\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1592020800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1592020800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"368388bab62e452f1534a0477131a50d\";a:10:{s:4:\"hash\";s:32:\"368388bab62e452f1534a0477131a50d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1592107200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1592107200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"91df23253b389104eba3698087c3aafd\";a:10:{s:4:\"hash\";s:32:\"91df23253b389104eba3698087c3aafd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1592107200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1592107200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1ffa839dfa84dd2452085ce971938885\";a:10:{s:4:\"hash\";s:32:\"1ffa839dfa84dd2452085ce971938885\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1592107200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1592107200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a2d9dbbf8afb76608d563f111c5c398c\";a:10:{s:4:\"hash\";s:32:\"a2d9dbbf8afb76608d563f111c5c398c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1592107200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1592107200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"270a475061103fdbcdd342ca474627c5\";a:10:{s:4:\"hash\";s:32:\"270a475061103fdbcdd342ca474627c5\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1593576000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1593576000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2229ceb8b738251fe7df5865d1f3024d\";a:10:{s:4:\"hash\";s:32:\"2229ceb8b738251fe7df5865d1f3024d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1593576000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1593576000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e177959ebea8ae3fa421eefeefa6b532\";a:10:{s:4:\"hash\";s:32:\"e177959ebea8ae3fa421eefeefa6b532\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1593576000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1593576000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ae5e591dee5f3e89bb7b694166925a96\";a:10:{s:4:\"hash\";s:32:\"ae5e591dee5f3e89bb7b694166925a96\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1593576000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1593576000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e040fd1c2a9402ed712dc231130d64f4\";a:10:{s:4:\"hash\";s:32:\"e040fd1c2a9402ed712dc231130d64f4\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1593662400/cat_ids~87,89,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/time_limit~1593662400/cat_ids~87,89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8bf8e1dc4512c5751f0a01dc3443fe9d\";a:10:{s:4:\"hash\";s:32:\"8bf8e1dc4512c5751f0a01dc3443fe9d\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1593662400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1593662400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4ef6f7ad11aedd7a71114e8a19d14a55\";a:10:{s:4:\"hash\";s:32:\"4ef6f7ad11aedd7a71114e8a19d14a55\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1593662400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1593662400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3b782cf9c47522177f14a7b16a4c008c\";a:10:{s:4:\"hash\";s:32:\"3b782cf9c47522177f14a7b16a4c008c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1593662400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1593662400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"619c33d1bbb907135d576911b33967be\";a:10:{s:4:\"hash\";s:32:\"619c33d1bbb907135d576911b33967be\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1593835200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1593835200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8595c7237e169cfcc052648a051310f1\";a:10:{s:4:\"hash\";s:32:\"8595c7237e169cfcc052648a051310f1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1593835200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1593835200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d87c7320c152256c214bdaf5d5fdffa4\";a:10:{s:4:\"hash\";s:32:\"d87c7320c152256c214bdaf5d5fdffa4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1593835200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1593835200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2b0375de46aef87936cd3ac7a3542b6e\";a:10:{s:4:\"hash\";s:32:\"2b0375de46aef87936cd3ac7a3542b6e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1593835200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1593835200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5667af443f2f1625b68ac5c9ff87dbd7\";a:10:{s:4:\"hash\";s:32:\"5667af443f2f1625b68ac5c9ff87dbd7\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1594612800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1594612800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"885c606e81390c81c7db1a5a81f02ab3\";a:10:{s:4:\"hash\";s:32:\"885c606e81390c81c7db1a5a81f02ab3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1594612800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1594612800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"09514c8054075077ca9314a5d0cd6eed\";a:10:{s:4:\"hash\";s:32:\"09514c8054075077ca9314a5d0cd6eed\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1594612800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1594612800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5f4fceee3bd8c0889153a520e0b8ca77\";a:10:{s:4:\"hash\";s:32:\"5f4fceee3bd8c0889153a520e0b8ca77\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1594612800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1594612800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a1cba918322101413f25654bdc759024\";a:10:{s:4:\"hash\";s:32:\"a1cba918322101413f25654bdc759024\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1594785600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1594785600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1fafcdb74c89b72fcc8a259453fbe91c\";a:10:{s:4:\"hash\";s:32:\"1fafcdb74c89b72fcc8a259453fbe91c\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1594785600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1594785600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e549a0945087b78cac3f3fe9165beb34\";a:10:{s:4:\"hash\";s:32:\"e549a0945087b78cac3f3fe9165beb34\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1594785600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1594785600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"30c017393461c712a6d07e10b5f148f7\";a:10:{s:4:\"hash\";s:32:\"30c017393461c712a6d07e10b5f148f7\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1594785600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1594785600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"061052b4c41d046eb3b1a6a054eccb4d\";a:10:{s:4:\"hash\";s:32:\"061052b4c41d046eb3b1a6a054eccb4d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1594958400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1594958400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"baebd3de1fa6617e440a83a70a8faa5b\";a:10:{s:4:\"hash\";s:32:\"baebd3de1fa6617e440a83a70a8faa5b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1594958400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1594958400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"482e344f1b046ff038680a2e2486a061\";a:10:{s:4:\"hash\";s:32:\"482e344f1b046ff038680a2e2486a061\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1594958400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1594958400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a2af5376dea5d2d9ee6f8016c03d7950\";a:10:{s:4:\"hash\";s:32:\"a2af5376dea5d2d9ee6f8016c03d7950\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1594958400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1594958400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3b57394fea3018f6c63279737633553c\";a:10:{s:4:\"hash\";s:32:\"3b57394fea3018f6c63279737633553c\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1595131200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1595131200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"347c75fd28969bb311ed68c9e26f4b80\";a:10:{s:4:\"hash\";s:32:\"347c75fd28969bb311ed68c9e26f4b80\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1595131200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1595131200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"56b2ba68ad1af7482ecc9d10b6637955\";a:10:{s:4:\"hash\";s:32:\"56b2ba68ad1af7482ecc9d10b6637955\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1595131200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1595131200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4e0c802a50f2bd4fcc2cb77d0fa5b0bc\";a:10:{s:4:\"hash\";s:32:\"4e0c802a50f2bd4fcc2cb77d0fa5b0bc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1595131200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1595131200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"50c1cd2b7861a145228381f7da46f369\";a:10:{s:4:\"hash\";s:32:\"50c1cd2b7861a145228381f7da46f369\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1595908800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1595908800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"35338780508f90835cf8391e54a7d7c7\";a:10:{s:4:\"hash\";s:32:\"35338780508f90835cf8391e54a7d7c7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1595908800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1595908800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fc626f3ee05aac32ec6560951eae5645\";a:10:{s:4:\"hash\";s:32:\"fc626f3ee05aac32ec6560951eae5645\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1595908800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1595908800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e3a3d62afbc7b70723191f3c72957cf5\";a:10:{s:4:\"hash\";s:32:\"e3a3d62afbc7b70723191f3c72957cf5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1595908800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1595908800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aaeee2f75bf8d875f47503cd1ad08832\";a:10:{s:4:\"hash\";s:32:\"aaeee2f75bf8d875f47503cd1ad08832\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1596254400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1596254400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8487b96d66c924b033b6430a15bd63f3\";a:10:{s:4:\"hash\";s:32:\"8487b96d66c924b033b6430a15bd63f3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1596254400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1596254400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1561f90f98ad63613b65ed6a4cd1555a\";a:10:{s:4:\"hash\";s:32:\"1561f90f98ad63613b65ed6a4cd1555a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1596254400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1596254400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"440ffda1fec1ecfd8600fb50bb3983e7\";a:10:{s:4:\"hash\";s:32:\"440ffda1fec1ecfd8600fb50bb3983e7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1596254400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1596254400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e03702961f926e0eb8f68e1c5bac0aa9\";a:10:{s:4:\"hash\";s:32:\"e03702961f926e0eb8f68e1c5bac0aa9\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1596859200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1596859200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0fcb34b1f1b5f6867c01401a922887ac\";a:10:{s:4:\"hash\";s:32:\"0fcb34b1f1b5f6867c01401a922887ac\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1596859200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1596859200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9cd8b7d5abc612b53b89b139a3897813\";a:10:{s:4:\"hash\";s:32:\"9cd8b7d5abc612b53b89b139a3897813\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1596859200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1596859200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c5e36ff4ae009de5d7b9c3bfdb8bc8f9\";a:10:{s:4:\"hash\";s:32:\"c5e36ff4ae009de5d7b9c3bfdb8bc8f9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1596859200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1596859200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ec1dc1e3c06516d945ae5dc1bbdd7c8a\";a:10:{s:4:\"hash\";s:32:\"ec1dc1e3c06516d945ae5dc1bbdd7c8a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1597032000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1597032000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"da4cceb65940753610fe778abfc6db65\";a:10:{s:4:\"hash\";s:32:\"da4cceb65940753610fe778abfc6db65\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1597032000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1597032000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"83b6020f2ff30c49b27af4a434281581\";a:10:{s:4:\"hash\";s:32:\"83b6020f2ff30c49b27af4a434281581\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1597032000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1597032000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6b1d9127f475188cab62a9cab3a10f38\";a:10:{s:4:\"hash\";s:32:\"6b1d9127f475188cab62a9cab3a10f38\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1597032000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1597032000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"152e504adfbffcf9449c719f41e6d1c8\";a:10:{s:4:\"hash\";s:32:\"152e504adfbffcf9449c719f41e6d1c8\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1597377600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1597377600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f0e84f71f3f275bdf6a9010783b10865\";a:10:{s:4:\"hash\";s:32:\"f0e84f71f3f275bdf6a9010783b10865\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1597377600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1597377600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"395ddca98e5467d71b287f23c1639ca7\";a:10:{s:4:\"hash\";s:32:\"395ddca98e5467d71b287f23c1639ca7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1597377600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1597377600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1b1e3271882421cab5d83fe8d46f19b2\";a:10:{s:4:\"hash\";s:32:\"1b1e3271882421cab5d83fe8d46f19b2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1597377600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1597377600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"13825053b7144b29a837b60b5554d8e8\";a:10:{s:4:\"hash\";s:32:\"13825053b7144b29a837b60b5554d8e8\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1604203200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1604203200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2a8f289098c32f473e40d2f4cd59ce03\";a:10:{s:4:\"hash\";s:32:\"2a8f289098c32f473e40d2f4cd59ce03\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1604203200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1604203200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fc69c96fee6cce91123a07248645f7a6\";a:10:{s:4:\"hash\";s:32:\"fc69c96fee6cce91123a07248645f7a6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1604203200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1604203200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"86af7a2b9f5bb3923b9379d207cfb06a\";a:10:{s:4:\"hash\";s:32:\"86af7a2b9f5bb3923b9379d207cfb06a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1604203200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1604203200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f7301614f438c8b12fee7c0ef017c6a\";a:10:{s:4:\"hash\";s:32:\"7f7301614f438c8b12fee7c0ef017c6a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1605070800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1605070800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5019bd2af14278fe043601674558de54\";a:10:{s:4:\"hash\";s:32:\"5019bd2af14278fe043601674558de54\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1605070800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1605070800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"48433dd51ce0057da58ad0df2fda4514\";a:10:{s:4:\"hash\";s:32:\"48433dd51ce0057da58ad0df2fda4514\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1605070800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1605070800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0f8fa3c62b0e24ed432b039c73293125\";a:10:{s:4:\"hash\";s:32:\"0f8fa3c62b0e24ed432b039c73293125\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1605070800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1605070800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"28dd4876fbb2cd0fc24b41f2b512da17\";a:10:{s:4:\"hash\";s:32:\"28dd4876fbb2cd0fc24b41f2b512da17\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1605243600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1605243600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b8731418b266a376febe57693f120bb6\";a:10:{s:4:\"hash\";s:32:\"b8731418b266a376febe57693f120bb6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1605243600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1605243600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"efacfa66b89b69229f9a89cab5d81dc2\";a:10:{s:4:\"hash\";s:32:\"efacfa66b89b69229f9a89cab5d81dc2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1605243600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1605243600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"12a7432aeceed11fb6e8665c999b7cab\";a:10:{s:4:\"hash\";s:32:\"12a7432aeceed11fb6e8665c999b7cab\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1605243600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1605243600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2f912f38c0ab234e6df5e764c6371245\";a:10:{s:4:\"hash\";s:32:\"2f912f38c0ab234e6df5e764c6371245\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1605762000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1605762000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"12199cf084d059202ae73360f1f251a4\";a:10:{s:4:\"hash\";s:32:\"12199cf084d059202ae73360f1f251a4\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1605762000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1605762000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5187748aae6f50f3d727d701c0684dc0\";a:10:{s:4:\"hash\";s:32:\"5187748aae6f50f3d727d701c0684dc0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1605762000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1605762000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3f47ceb57df33d1b0a4efe2fbdb75c22\";a:10:{s:4:\"hash\";s:32:\"3f47ceb57df33d1b0a4efe2fbdb75c22\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1605762000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1605762000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d5387c5706ff6888ddc2be521b8d8571\";a:10:{s:4:\"hash\";s:32:\"d5387c5706ff6888ddc2be521b8d8571\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612069200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1612069200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"df3b0ff099abea7d489d57bd9c6802e1\";a:10:{s:4:\"hash\";s:32:\"df3b0ff099abea7d489d57bd9c6802e1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612069200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1612069200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d847c3cb51dbac5ee2fd0d909b09fb88\";a:10:{s:4:\"hash\";s:32:\"d847c3cb51dbac5ee2fd0d909b09fb88\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612069200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1612069200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"11833ad07490063dcba399973e400a83\";a:10:{s:4:\"hash\";s:32:\"11833ad07490063dcba399973e400a83\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612069200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1612069200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c3abedd9138de0d9ee62a0f0c56d29cb\";a:10:{s:4:\"hash\";s:32:\"c3abedd9138de0d9ee62a0f0c56d29cb\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612155600/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/time_limit~1612155600/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"29a94ccf27335b20fa02fc173613263f\";a:10:{s:4:\"hash\";s:32:\"29a94ccf27335b20fa02fc173613263f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612155600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1612155600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"75d298794910f5531e5fa133877d5753\";a:10:{s:4:\"hash\";s:32:\"75d298794910f5531e5fa133877d5753\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612155600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1612155600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"71736d392c48e8baee613507396e7024\";a:10:{s:4:\"hash\";s:32:\"71736d392c48e8baee613507396e7024\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612155600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1612155600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"13f4ef76b91201ec210d265c94371d5d\";a:10:{s:4:\"hash\";s:32:\"13f4ef76b91201ec210d265c94371d5d\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612155600/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/time_limit~1612155600/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"06e409884838f5eb3fde2d1c02ac02db\";a:10:{s:4:\"hash\";s:32:\"06e409884838f5eb3fde2d1c02ac02db\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612155600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1612155600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"adbc2a43eb4b15d038b5491f1b668d69\";a:10:{s:4:\"hash\";s:32:\"adbc2a43eb4b15d038b5491f1b668d69\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612155600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/time_limit~1612155600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4b8d914cecb3df28b42bf3b23dc1eddd\";a:10:{s:4:\"hash\";s:32:\"4b8d914cecb3df28b42bf3b23dc1eddd\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612155600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1612155600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ed4d63ef49f338d4c78ba44c8a67bd8\";a:10:{s:4:\"hash\";s:32:\"8ed4d63ef49f338d4c78ba44c8a67bd8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612155600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1612155600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b43ae2f410800df6144a70c9c4c27969\";a:10:{s:4:\"hash\";s:32:\"b43ae2f410800df6144a70c9c4c27969\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612155600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/time_limit~1612155600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"759a613744d27cf1096ab5e41fa15f69\";a:10:{s:4:\"hash\";s:32:\"759a613744d27cf1096ab5e41fa15f69\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612155600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1612155600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2d51610e61bcc26a5f6c5f542ad7a332\";a:10:{s:4:\"hash\";s:32:\"2d51610e61bcc26a5f6c5f542ad7a332\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612155600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/time_limit~1612155600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7a9bfd43ed6ecbaaf14fed9b2f917bfd\";a:10:{s:4:\"hash\";s:32:\"7a9bfd43ed6ecbaaf14fed9b2f917bfd\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d2ad185215541c3ffe2206319068e90b\";a:10:{s:4:\"hash\";s:32:\"d2ad185215541c3ffe2206319068e90b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612155600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1612155600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0732e70df480ef6160ec8e34163d42be\";a:10:{s:4:\"hash\";s:32:\"0732e70df480ef6160ec8e34163d42be\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612155600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1612155600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2b1fe25dc7a017ad582a5aa731ed7bd0\";a:10:{s:4:\"hash\";s:32:\"2b1fe25dc7a017ad582a5aa731ed7bd0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612155600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1612155600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2dda7b0c6ce08c3788ab47e3ffefce49\";a:10:{s:4:\"hash\";s:32:\"2dda7b0c6ce08c3788ab47e3ffefce49\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612155600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1612155600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"db5cd13246017875307c1724e1071cef\";a:10:{s:4:\"hash\";s:32:\"db5cd13246017875307c1724e1071cef\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612155600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1612155600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"68a5a384dc4c2ddd8de661cc8b88422f\";a:10:{s:4:\"hash\";s:32:\"68a5a384dc4c2ddd8de661cc8b88422f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612242000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1612242000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"45ae64f8f9a9658347d8c0651f33d12d\";a:10:{s:4:\"hash\";s:32:\"45ae64f8f9a9658347d8c0651f33d12d\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612242000/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/time_limit~1612242000/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"988a770e8c2f0a730409c50918b5de52\";a:10:{s:4:\"hash\";s:32:\"988a770e8c2f0a730409c50918b5de52\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612242000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1612242000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"22c53e29e6afb7294aa157c2403c3140\";a:10:{s:4:\"hash\";s:32:\"22c53e29e6afb7294aa157c2403c3140\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612242000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1612242000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fb3264d0ea2fbe857e18e8b044650e7d\";a:10:{s:4:\"hash\";s:32:\"fb3264d0ea2fbe857e18e8b044650e7d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612760400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1612760400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4ed92f2535415cb9e2544d9208ecbcf3\";a:10:{s:4:\"hash\";s:32:\"4ed92f2535415cb9e2544d9208ecbcf3\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612760400/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/time_limit~1612760400/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"22d8357d2b17952ae220eeca19dc1032\";a:10:{s:4:\"hash\";s:32:\"22d8357d2b17952ae220eeca19dc1032\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612760400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1612760400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"652d9b579ad3a89ac859c03838f6cdd7\";a:10:{s:4:\"hash\";s:32:\"652d9b579ad3a89ac859c03838f6cdd7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612760400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1612760400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f101fde527ea362b6ddc1bfe67907cc7\";a:10:{s:4:\"hash\";s:32:\"f101fde527ea362b6ddc1bfe67907cc7\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612760400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1612760400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9696bac3508d495ff0c5e1ba0da73ee9\";a:10:{s:4:\"hash\";s:32:\"9696bac3508d495ff0c5e1ba0da73ee9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612760400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1612760400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3ec5a3ecb2051fe381f72dc2ea2e3d24\";a:10:{s:4:\"hash\";s:32:\"3ec5a3ecb2051fe381f72dc2ea2e3d24\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612760400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1612760400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"39ca5f6280eea130e660c872ff77f28e\";a:10:{s:4:\"hash\";s:32:\"39ca5f6280eea130e660c872ff77f28e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1612760400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1612760400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"adde837532490394ce393160a8862882\";a:10:{s:4:\"hash\";s:32:\"adde837532490394ce393160a8862882\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1619323200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1619323200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0de230d42344070e755fcb908836e344\";a:10:{s:4:\"hash\";s:32:\"0de230d42344070e755fcb908836e344\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1619323200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1619323200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7fcf69f074aaeee83682cc06b0295c8e\";a:10:{s:4:\"hash\";s:32:\"7fcf69f074aaeee83682cc06b0295c8e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1619323200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1619323200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b66763ac6ce9a38f56770da3882db28e\";a:10:{s:4:\"hash\";s:32:\"b66763ac6ce9a38f56770da3882db28e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1619323200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1619323200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"99ebf82ed98031e15b20d53f798f2eae\";a:10:{s:4:\"hash\";s:32:\"99ebf82ed98031e15b20d53f798f2eae\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1619841600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1619841600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"344a21a6dc838870b1e32d0d1e24545f\";a:10:{s:4:\"hash\";s:32:\"344a21a6dc838870b1e32d0d1e24545f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1619841600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1619841600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"12a1c6c69025628c49f3666e4d88f9a1\";a:10:{s:4:\"hash\";s:32:\"12a1c6c69025628c49f3666e4d88f9a1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1619841600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1619841600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5cd3aafc25cf8c77ef468d070d66fbf3\";a:10:{s:4:\"hash\";s:32:\"5cd3aafc25cf8c77ef468d070d66fbf3\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1619841600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1619841600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"89d7737a93ea99d96f980bdcf9832357\";a:10:{s:4:\"hash\";s:32:\"89d7737a93ea99d96f980bdcf9832357\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1619841600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1619841600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bee474b71dc190da52dd2b8fafeb6bd3\";a:10:{s:4:\"hash\";s:32:\"bee474b71dc190da52dd2b8fafeb6bd3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1619841600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1619841600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b70621f281899ffe9703785fd99649aa\";a:10:{s:4:\"hash\";s:32:\"b70621f281899ffe9703785fd99649aa\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1619841600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1619841600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c55faa0fea61e567db5deba40e29026a\";a:10:{s:4:\"hash\";s:32:\"c55faa0fea61e567db5deba40e29026a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1620532800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1620532800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7d27dfb2da6fa91f0316568233c26398\";a:10:{s:4:\"hash\";s:32:\"7d27dfb2da6fa91f0316568233c26398\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1620532800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1620532800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"160aecd9c61b1352532694865de75c95\";a:10:{s:4:\"hash\";s:32:\"160aecd9c61b1352532694865de75c95\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1620532800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1620532800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"37ddbffd20336edcdfd4a440fa751834\";a:10:{s:4:\"hash\";s:32:\"37ddbffd20336edcdfd4a440fa751834\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1620532800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1620532800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1cd0aba1bc8d3393dd9035234f6a5652\";a:10:{s:4:\"hash\";s:32:\"1cd0aba1bc8d3393dd9035234f6a5652\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1620705600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1620705600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"54b13aba7f88177b3f5722183cf95d4a\";a:10:{s:4:\"hash\";s:32:\"54b13aba7f88177b3f5722183cf95d4a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1620705600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1620705600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9885e8503d234784dc890ec36c869e8a\";a:10:{s:4:\"hash\";s:32:\"9885e8503d234784dc890ec36c869e8a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1620705600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1620705600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d719080002e4ee112f0151ec7a833d3b\";a:10:{s:4:\"hash\";s:32:\"d719080002e4ee112f0151ec7a833d3b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1620705600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1620705600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c23286d952fe9bd457e874ec3af7b1f\";a:10:{s:4:\"hash\";s:32:\"3c23286d952fe9bd457e874ec3af7b1f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1620964800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1620964800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"467e0ec8bf4fd708da7d42dcf597c52b\";a:10:{s:4:\"hash\";s:32:\"467e0ec8bf4fd708da7d42dcf597c52b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1620964800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1620964800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3f079a199d17c05838265f5a1d8f984e\";a:10:{s:4:\"hash\";s:32:\"3f079a199d17c05838265f5a1d8f984e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1620964800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1620964800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a7deeb89518d5d0550291f6585c86ad5\";a:10:{s:4:\"hash\";s:32:\"a7deeb89518d5d0550291f6585c86ad5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1620964800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1620964800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"32cc2a4595e38cda20905a88edda6d53\";a:10:{s:4:\"hash\";s:32:\"32cc2a4595e38cda20905a88edda6d53\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1621051200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1621051200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2b9adf9b0a2e952a05625037eb55bbb6\";a:10:{s:4:\"hash\";s:32:\"2b9adf9b0a2e952a05625037eb55bbb6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1621051200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1621051200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a295a825d9c2dabbbf9adc0b3aa0e081\";a:10:{s:4:\"hash\";s:32:\"a295a825d9c2dabbbf9adc0b3aa0e081\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1621051200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1621051200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f3ca0266fa30b35d4831003e8819b47a\";a:10:{s:4:\"hash\";s:32:\"f3ca0266fa30b35d4831003e8819b47a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1621051200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1621051200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b0f2ec794b05315e6e518d460234e615\";a:10:{s:4:\"hash\";s:32:\"b0f2ec794b05315e6e518d460234e615\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623211200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1623211200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"67ea823cd8267e13e4c19c52b6eb634e\";a:10:{s:4:\"hash\";s:32:\"67ea823cd8267e13e4c19c52b6eb634e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623211200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1623211200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3d753f49d0ada4ed42cf797f336c6268\";a:10:{s:4:\"hash\";s:32:\"3d753f49d0ada4ed42cf797f336c6268\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623211200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1623211200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"51055bdddb364e92e78f636e7bdb5ab6\";a:10:{s:4:\"hash\";s:32:\"51055bdddb364e92e78f636e7bdb5ab6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623211200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1623211200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eefcc3b3a0fee42a0f69cdef8dfdc2e0\";a:10:{s:4:\"hash\";s:32:\"eefcc3b3a0fee42a0f69cdef8dfdc2e0\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623384000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1623384000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"33ca3a9df1696c60841c8a4c03369176\";a:10:{s:4:\"hash\";s:32:\"33ca3a9df1696c60841c8a4c03369176\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623384000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1623384000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4e52918239edc96de27400860d3aa67f\";a:10:{s:4:\"hash\";s:32:\"4e52918239edc96de27400860d3aa67f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623384000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1623384000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0c04a1a43ed331cb0ad4a84e980b9eaf\";a:10:{s:4:\"hash\";s:32:\"0c04a1a43ed331cb0ad4a84e980b9eaf\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623384000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1623384000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"83c34387fcb4cacaae77ec69cf42d72c\";a:10:{s:4:\"hash\";s:32:\"83c34387fcb4cacaae77ec69cf42d72c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623384000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1623384000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"685ebaf5211f9abf41b851ea904e3dc3\";a:10:{s:4:\"hash\";s:32:\"685ebaf5211f9abf41b851ea904e3dc3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623384000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1623384000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cf56db920726270053ccc4accfa455e0\";a:10:{s:4:\"hash\";s:32:\"cf56db920726270053ccc4accfa455e0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623384000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1623384000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b4d618e49e8ed56d308f0b55298f6477\";a:10:{s:4:\"hash\";s:32:\"b4d618e49e8ed56d308f0b55298f6477\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623643200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1623643200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e07eb31fd5a92770c44de3f7df35a6d3\";a:10:{s:4:\"hash\";s:32:\"e07eb31fd5a92770c44de3f7df35a6d3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623643200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1623643200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ce49092947e1d5dc8698a6f039b22524\";a:10:{s:4:\"hash\";s:32:\"ce49092947e1d5dc8698a6f039b22524\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623643200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1623643200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"62283f7058f3b550d075aa6d063a88e6\";a:10:{s:4:\"hash\";s:32:\"62283f7058f3b550d075aa6d063a88e6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623643200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1623643200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0039801d09f2095abfd2729fd32e52be\";a:10:{s:4:\"hash\";s:32:\"0039801d09f2095abfd2729fd32e52be\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623729600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1623729600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"13553374e75f121f3e9229fa44049ee6\";a:10:{s:4:\"hash\";s:32:\"13553374e75f121f3e9229fa44049ee6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623729600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1623729600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"35b7946625915e15f654254e57eda8a9\";a:10:{s:4:\"hash\";s:32:\"35b7946625915e15f654254e57eda8a9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623729600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1623729600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"97d3a1829d8a47a27d3f178ee4cd948c\";a:10:{s:4:\"hash\";s:32:\"97d3a1829d8a47a27d3f178ee4cd948c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623729600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1623729600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"981cc7750385a9d9d90665ad6342f044\";a:10:{s:4:\"hash\";s:32:\"981cc7750385a9d9d90665ad6342f044\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623988800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1623988800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4b598a4844333cf238c1504c29121561\";a:10:{s:4:\"hash\";s:32:\"4b598a4844333cf238c1504c29121561\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623988800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1623988800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"543dab9e84f4d18539504fa22e2f336e\";a:10:{s:4:\"hash\";s:32:\"543dab9e84f4d18539504fa22e2f336e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623988800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1623988800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c6a5cba413d6c77eb8019ac682e6e2c0\";a:10:{s:4:\"hash\";s:32:\"c6a5cba413d6c77eb8019ac682e6e2c0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623988800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1623988800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"53179834347ed87c2e16e7bb162fbf22\";a:10:{s:4:\"hash\";s:32:\"53179834347ed87c2e16e7bb162fbf22\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623988800/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/time_limit~1623988800/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e578be4d702c08b5ec224a793e49edce\";a:10:{s:4:\"hash\";s:32:\"e578be4d702c08b5ec224a793e49edce\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623988800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1623988800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9629b439fd4f45ac38ddab5015255488\";a:10:{s:4:\"hash\";s:32:\"9629b439fd4f45ac38ddab5015255488\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623988800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1623988800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6eda2552bb765b7eb5479d7a29a1db7a\";a:10:{s:4:\"hash\";s:32:\"6eda2552bb765b7eb5479d7a29a1db7a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623988800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1623988800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5747b0ff7a32ab0d13126f6bc5e2d8d1\";a:10:{s:4:\"hash\";s:32:\"5747b0ff7a32ab0d13126f6bc5e2d8d1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623988800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1623988800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3ccfa5c6f979830663f84b0730aa55b3\";a:10:{s:4:\"hash\";s:32:\"3ccfa5c6f979830663f84b0730aa55b3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623988800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1623988800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1d2ea90ba5a2ba7c26ad13db44774947\";a:10:{s:4:\"hash\";s:32:\"1d2ea90ba5a2ba7c26ad13db44774947\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1623988800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1623988800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"58028420c7599e777f1fd5c752a13040\";a:10:{s:4:\"hash\";s:32:\"58028420c7599e777f1fd5c752a13040\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1624075200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1624075200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a10d7407a8cc78415f2085e9a91b0f6a\";a:10:{s:4:\"hash\";s:32:\"a10d7407a8cc78415f2085e9a91b0f6a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1624075200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1624075200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"557025f8d9ccc6dd1f0c59185f9ac6f3\";a:10:{s:4:\"hash\";s:32:\"557025f8d9ccc6dd1f0c59185f9ac6f3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1624075200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1624075200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dfc5acf85504ed80f6ba9a6cb25a8a72\";a:10:{s:4:\"hash\";s:32:\"dfc5acf85504ed80f6ba9a6cb25a8a72\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1624075200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1624075200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2e73ca981ac5637f8ae6164777deca49\";a:10:{s:4:\"hash\";s:32:\"2e73ca981ac5637f8ae6164777deca49\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1625112000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1625112000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6afb15ddaa40c2edd626a8b7d6abfb17\";a:10:{s:4:\"hash\";s:32:\"6afb15ddaa40c2edd626a8b7d6abfb17\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1625112000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1625112000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"99aeee07d85fef8041ec48154b50712e\";a:10:{s:4:\"hash\";s:32:\"99aeee07d85fef8041ec48154b50712e\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1625112000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/time_limit~1625112000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cada608ce6561e4b170717dd5383b0e1\";a:10:{s:4:\"hash\";s:32:\"cada608ce6561e4b170717dd5383b0e1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1625112000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1625112000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aa118608fbd9319c7a859b30d0313f39\";a:10:{s:4:\"hash\";s:32:\"aa118608fbd9319c7a859b30d0313f39\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1625112000/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/time_limit~1625112000/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"53ebf8d7e7a287efe8d5a280e19e76c1\";a:10:{s:4:\"hash\";s:32:\"53ebf8d7e7a287efe8d5a280e19e76c1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1625112000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1625112000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"99b8213db64b539775e41836e6d1ddc2\";a:10:{s:4:\"hash\";s:32:\"99b8213db64b539775e41836e6d1ddc2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1625112000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1625112000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f28d7abf9e8304e7c8b9369e3e97b2c5\";a:10:{s:4:\"hash\";s:32:\"f28d7abf9e8304e7c8b9369e3e97b2c5\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1626494400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1626494400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c792abc4807ea3be34fda0c6d1aa8ba5\";a:10:{s:4:\"hash\";s:32:\"c792abc4807ea3be34fda0c6d1aa8ba5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1626494400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1626494400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c7d1a182fa2969da9df5e08c26346e2\";a:10:{s:4:\"hash\";s:32:\"2c7d1a182fa2969da9df5e08c26346e2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1626494400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1626494400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"13e8c1d2d346ff99e3f34383b94912f2\";a:10:{s:4:\"hash\";s:32:\"13e8c1d2d346ff99e3f34383b94912f2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1626494400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1626494400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d2460b0757d7c4f98be823ff9a271e68\";a:10:{s:4:\"hash\";s:32:\"d2460b0757d7c4f98be823ff9a271e68\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1626753600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1626753600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"99f15a14008c7ddc609cdaf5d6766817\";a:10:{s:4:\"hash\";s:32:\"99f15a14008c7ddc609cdaf5d6766817\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1626753600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1626753600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1d8a216baffd2d7d8e32be4dbfb24f72\";a:10:{s:4:\"hash\";s:32:\"1d8a216baffd2d7d8e32be4dbfb24f72\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1626753600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1626753600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b30a33ca7fe7504ebdbbc08e64b08ed8\";a:10:{s:4:\"hash\";s:32:\"b30a33ca7fe7504ebdbbc08e64b08ed8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1626753600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1626753600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d4f83f8c0a6ef374ba19563f6e85967f\";a:10:{s:4:\"hash\";s:32:\"d4f83f8c0a6ef374ba19563f6e85967f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1627358400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1627358400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c40bd06f77b2f029ead3827e36304d04\";a:10:{s:4:\"hash\";s:32:\"c40bd06f77b2f029ead3827e36304d04\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1627358400/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~agenda/time_limit~1627358400/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9e8cf6baa6ef5bce34ccba5df8a76351\";a:10:{s:4:\"hash\";s:32:\"9e8cf6baa6ef5bce34ccba5df8a76351\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1627358400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1627358400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2bfa1d91bb675a3d3876b8b88d6a967d\";a:10:{s:4:\"hash\";s:32:\"2bfa1d91bb675a3d3876b8b88d6a967d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1627358400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1627358400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"902ebe22fd0c2e0f400b48a9852a13c7\";a:10:{s:4:\"hash\";s:32:\"902ebe22fd0c2e0f400b48a9852a13c7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1627358400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1627358400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b8d5faf294c08f9b0aabb8cbac5e6729\";a:10:{s:4:\"hash\";s:32:\"b8d5faf294c08f9b0aabb8cbac5e6729\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1627358400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1627358400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c17fd4ed972437acf0cef0555fc9d2d7\";a:10:{s:4:\"hash\";s:32:\"c17fd4ed972437acf0cef0555fc9d2d7\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637125200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1637125200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0cd2b2e2656fc82acee45ff0ce647600\";a:10:{s:4:\"hash\";s:32:\"0cd2b2e2656fc82acee45ff0ce647600\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637125200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1637125200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0c2121e27abd52a6627d717bb4275af6\";a:10:{s:4:\"hash\";s:32:\"0c2121e27abd52a6627d717bb4275af6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637125200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1637125200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0ff79e6be1bd780f5baa9678a3177ecb\";a:10:{s:4:\"hash\";s:32:\"0ff79e6be1bd780f5baa9678a3177ecb\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637125200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1637125200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4b4ba10c24a65739d7391ffea79e956e\";a:10:{s:4:\"hash\";s:32:\"4b4ba10c24a65739d7391ffea79e956e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637298000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1637298000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b0df8d652f0eb305dea63391832161e9\";a:10:{s:4:\"hash\";s:32:\"b0df8d652f0eb305dea63391832161e9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637298000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1637298000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d8f2366df45a903e041408cdefa249f6\";a:10:{s:4:\"hash\";s:32:\"d8f2366df45a903e041408cdefa249f6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637298000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1637298000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f3e114f16945801d2a4c25a87c8ac72\";a:10:{s:4:\"hash\";s:32:\"7f3e114f16945801d2a4c25a87c8ac72\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637298000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1637298000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eaab135f1653478b41fdefdd7d25b97b\";a:10:{s:4:\"hash\";s:32:\"eaab135f1653478b41fdefdd7d25b97b\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637384400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1637384400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4a745ec18ac7cb2df9102fde398d9d49\";a:10:{s:4:\"hash\";s:32:\"4a745ec18ac7cb2df9102fde398d9d49\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637384400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1637384400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0151bbaa3c555ac316ae923275e7ee6e\";a:10:{s:4:\"hash\";s:32:\"0151bbaa3c555ac316ae923275e7ee6e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637384400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1637384400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"416099efeae54f1968a4d12b48806d40\";a:10:{s:4:\"hash\";s:32:\"416099efeae54f1968a4d12b48806d40\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637384400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1637384400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"860ae493fcb33b9b80715764658c30a9\";a:10:{s:4:\"hash\";s:32:\"860ae493fcb33b9b80715764658c30a9\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637557200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1637557200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b0b6c959e49c1e20a8ea3abd51595a22\";a:10:{s:4:\"hash\";s:32:\"b0b6c959e49c1e20a8ea3abd51595a22\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637557200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1637557200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"68661062091b796016a5c20b77991a4e\";a:10:{s:4:\"hash\";s:32:\"68661062091b796016a5c20b77991a4e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637557200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1637557200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a00ba6b8f313455a56643108656c3df1\";a:10:{s:4:\"hash\";s:32:\"a00ba6b8f313455a56643108656c3df1\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637557200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1637557200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"87da74e36218980467762f569a238a5d\";a:10:{s:4:\"hash\";s:32:\"87da74e36218980467762f569a238a5d\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637816400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1637816400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"49fbb2cc20ebdfcb352b7b247206eeef\";a:10:{s:4:\"hash\";s:32:\"49fbb2cc20ebdfcb352b7b247206eeef\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637816400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1637816400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cd28fed27ac0613f21b5ecbc2774825a\";a:10:{s:4:\"hash\";s:32:\"cd28fed27ac0613f21b5ecbc2774825a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637816400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1637816400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"04f22c6d61aadd5cf2425a76fbb6bdab\";a:10:{s:4:\"hash\";s:32:\"04f22c6d61aadd5cf2425a76fbb6bdab\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637816400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1637816400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"45450a19c0ccba29710bcd76b6b40d91\";a:10:{s:4:\"hash\";s:32:\"45450a19c0ccba29710bcd76b6b40d91\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637816400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1637816400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5709de2b845ae40800293997e87a5c49\";a:10:{s:4:\"hash\";s:32:\"5709de2b845ae40800293997e87a5c49\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637816400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1637816400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"75f30742971cee63bdc3c3bf384265ba\";a:10:{s:4:\"hash\";s:32:\"75f30742971cee63bdc3c3bf384265ba\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637816400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1637816400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"397a665342e774a103067832fcc800c8\";a:10:{s:4:\"hash\";s:32:\"397a665342e774a103067832fcc800c8\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637989200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1637989200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dbfc003d2242845840d860b848032255\";a:10:{s:4:\"hash\";s:32:\"dbfc003d2242845840d860b848032255\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637989200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~agenda/time_limit~1637989200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"74181012cc515677a0a1ffd4c8159bb0\";a:10:{s:4:\"hash\";s:32:\"74181012cc515677a0a1ffd4c8159bb0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637989200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1637989200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"be477fd362dc892c287487f05f8e9ce4\";a:10:{s:4:\"hash\";s:32:\"be477fd362dc892c287487f05f8e9ce4\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637989200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1637989200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1f0a56d4380a30e182c96d63f2e4dc86\";a:10:{s:4:\"hash\";s:32:\"1f0a56d4380a30e182c96d63f2e4dc86\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637989200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1637989200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"031d0cfd282b7a63e12eb0633aee5743\";a:10:{s:4:\"hash\";s:32:\"031d0cfd282b7a63e12eb0633aee5743\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637989200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1637989200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"67c01114824fb36062edf5a8c3957791\";a:10:{s:4:\"hash\";s:32:\"67c01114824fb36062edf5a8c3957791\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1637989200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1637989200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"22509e3fcb9cf61b1965841010714484\";a:10:{s:4:\"hash\";s:32:\"22509e3fcb9cf61b1965841010714484\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1638248400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~agenda/time_limit~1638248400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"139cda3171471a6019790beb2fba377c\";a:10:{s:4:\"hash\";s:32:\"139cda3171471a6019790beb2fba377c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1638248400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1638248400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"62fd2dcf157f4e92b2614a20df260f8d\";a:10:{s:4:\"hash\";s:32:\"62fd2dcf157f4e92b2614a20df260f8d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1638248400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1638248400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f70345587b95a1cf0609d3c9e86fbf00\";a:10:{s:4:\"hash\";s:32:\"f70345587b95a1cf0609d3c9e86fbf00\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~agenda/time_limit~1638248400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~agenda/time_limit~1638248400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0887fd3a1f600f92eddf6b76bbf5d63b\";a:10:{s:4:\"hash\";s:32:\"0887fd3a1f600f92eddf6b76bbf5d63b\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1493611200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1493611200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8aaa8dc343621a8e0254ba35876b2710\";a:10:{s:4:\"hash\";s:32:\"8aaa8dc343621a8e0254ba35876b2710\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1509508800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1509508800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fab6924a2a7748101904d27a6274eddd\";a:10:{s:4:\"hash\";s:32:\"fab6924a2a7748101904d27a6274eddd\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1522555200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1522555200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"290d3632f5a57f7d1df309df88a4f97c\";a:10:{s:4:\"hash\";s:32:\"290d3632f5a57f7d1df309df88a4f97c\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1525147200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1525147200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e3447b17e590f46247952c04ab7fe913\";a:10:{s:4:\"hash\";s:32:\"e3447b17e590f46247952c04ab7fe913\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1525147200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1525147200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4e8e9e4786450039d7bd70a8d5d3eca1\";a:10:{s:4:\"hash\";s:32:\"4e8e9e4786450039d7bd70a8d5d3eca1\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1525147200/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1525147200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cb5612dd40df356926c1ac44bbb044cf\";a:10:{s:4:\"hash\";s:32:\"cb5612dd40df356926c1ac44bbb044cf\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1525147200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1525147200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b575e25536314ea97ebd3852b1ce4fa7\";a:10:{s:4:\"hash\";s:32:\"b575e25536314ea97ebd3852b1ce4fa7\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1525147200/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1525147200/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"63663836e3bd7cb2ee3f8cf42a92e32a\";a:10:{s:4:\"hash\";s:32:\"63663836e3bd7cb2ee3f8cf42a92e32a\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1525147200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1525147200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6c6c7b99e9567d7506786b85b46fffbe\";a:10:{s:4:\"hash\";s:32:\"6c6c7b99e9567d7506786b85b46fffbe\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1525147200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1525147200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c3bf8d36e4dbb349761e612948446476\";a:10:{s:4:\"hash\";s:32:\"c3bf8d36e4dbb349761e612948446476\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1525147200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1525147200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"61320ae0e2bc4af516afb125de0f9918\";a:10:{s:4:\"hash\";s:32:\"61320ae0e2bc4af516afb125de0f9918\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1525147200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1525147200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"50bc34892399d694661c2bd5b42aa353\";a:10:{s:4:\"hash\";s:32:\"50bc34892399d694661c2bd5b42aa353\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1527825600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1527825600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0eb8d3c8dcc396fb6ad37cda5d37121d\";a:10:{s:4:\"hash\";s:32:\"0eb8d3c8dcc396fb6ad37cda5d37121d\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1527825600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1527825600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ed16569833f9c9900678271dad4e7d9a\";a:10:{s:4:\"hash\";s:32:\"ed16569833f9c9900678271dad4e7d9a\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1527825600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1527825600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b1d4b9e6d5f5052603689dc27b297aed\";a:10:{s:4:\"hash\";s:32:\"b1d4b9e6d5f5052603689dc27b297aed\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1527825600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1527825600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3777185f71cd756d8abdba016d944b0b\";a:10:{s:4:\"hash\";s:32:\"3777185f71cd756d8abdba016d944b0b\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1527825600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1527825600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e1d1eff23df55b43ef2bbf8e4f92681c\";a:10:{s:4:\"hash\";s:32:\"e1d1eff23df55b43ef2bbf8e4f92681c\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1527825600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1527825600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"34d058d68489092315e267884a39f33a\";a:10:{s:4:\"hash\";s:32:\"34d058d68489092315e267884a39f33a\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1527825600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1527825600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"584268b4aadc1ea570c77dbedaee8916\";a:10:{s:4:\"hash\";s:32:\"584268b4aadc1ea570c77dbedaee8916\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1527825600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1527825600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"54eef6b03bf4a11e606ea90b497689ef\";a:10:{s:4:\"hash\";s:32:\"54eef6b03bf4a11e606ea90b497689ef\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1527825600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1527825600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"203a52f41f8bf96e37dc9ecbe079fd8e\";a:10:{s:4:\"hash\";s:32:\"203a52f41f8bf96e37dc9ecbe079fd8e\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1530417600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1530417600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5bfa5ff874e7df1ce3d83a4d4159e73b\";a:10:{s:4:\"hash\";s:32:\"5bfa5ff874e7df1ce3d83a4d4159e73b\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1530417600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1530417600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"06ab76dd57bd2087ccbf184d445ad9cf\";a:10:{s:4:\"hash\";s:32:\"06ab76dd57bd2087ccbf184d445ad9cf\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1530417600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1530417600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4c23f8d8147f32ea312f43156fe1eb30\";a:10:{s:4:\"hash\";s:32:\"4c23f8d8147f32ea312f43156fe1eb30\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1530417600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1530417600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"860452b378a80636b620c013a4778081\";a:10:{s:4:\"hash\";s:32:\"860452b378a80636b620c013a4778081\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1530417600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1530417600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6d66a8fab3c944b080320566ba87d2a0\";a:10:{s:4:\"hash\";s:32:\"6d66a8fab3c944b080320566ba87d2a0\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1530417600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1530417600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3d4727f170c81b2e3527e3636ed842c1\";a:10:{s:4:\"hash\";s:32:\"3d4727f170c81b2e3527e3636ed842c1\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1533096000/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1533096000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"77d430f6a92380a7353defecea2177f6\";a:10:{s:4:\"hash\";s:32:\"77d430f6a92380a7353defecea2177f6\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1533096000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1533096000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1a7046291343704fbb6c666c9ee784e3\";a:10:{s:4:\"hash\";s:32:\"1a7046291343704fbb6c666c9ee784e3\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1533096000/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1533096000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"146bbfbf9e4998c66d9ac27f4b30a59f\";a:10:{s:4:\"hash\";s:32:\"146bbfbf9e4998c66d9ac27f4b30a59f\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1533096000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1533096000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"98296fd4cfe80b3dad37eb07f48324d0\";a:10:{s:4:\"hash\";s:32:\"98296fd4cfe80b3dad37eb07f48324d0\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1538366400/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1538366400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"08c6b6a5c172d5a327a0413ab984b30f\";a:10:{s:4:\"hash\";s:32:\"08c6b6a5c172d5a327a0413ab984b30f\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1541044800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1541044800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"07262f75e3aea5e723fc2e0013c175d2\";a:10:{s:4:\"hash\";s:32:\"07262f75e3aea5e723fc2e0013c175d2\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1541044800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1541044800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d845b5277d6d4b7cc999d28a2c352cd9\";a:10:{s:4:\"hash\";s:32:\"d845b5277d6d4b7cc999d28a2c352cd9\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1541044800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1541044800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e1017a5862a75d95b7625adffba4340d\";a:10:{s:4:\"hash\";s:32:\"e1017a5862a75d95b7625adffba4340d\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1541044800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1541044800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9e19a6cff2f66756fb6c7c751dbaa291\";a:10:{s:4:\"hash\";s:32:\"9e19a6cff2f66756fb6c7c751dbaa291\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1541044800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1541044800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0074b23220e82fede35fe34201a399ac\";a:10:{s:4:\"hash\";s:32:\"0074b23220e82fede35fe34201a399ac\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1543640400/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1543640400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ca9c4184cb4a676306c4fce04c5259d2\";a:10:{s:4:\"hash\";s:32:\"ca9c4184cb4a676306c4fce04c5259d2\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1548997200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1548997200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a8bab51e93d8f287c1fa0ff6922c94b6\";a:10:{s:4:\"hash\";s:32:\"a8bab51e93d8f287c1fa0ff6922c94b6\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1554091200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1554091200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2faadf24a2d3b77dfa11ec9c50081c88\";a:10:{s:4:\"hash\";s:32:\"2faadf24a2d3b77dfa11ec9c50081c88\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1554091200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1554091200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3d6b9e5656dc7899ea347f5730687e83\";a:10:{s:4:\"hash\";s:32:\"3d6b9e5656dc7899ea347f5730687e83\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1554091200/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1554091200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cbec2bcb0674765b0ec761399eb07607\";a:10:{s:4:\"hash\";s:32:\"cbec2bcb0674765b0ec761399eb07607\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1554091200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1554091200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9ac8bf36723bb7b08638c380caf053b2\";a:10:{s:4:\"hash\";s:32:\"9ac8bf36723bb7b08638c380caf053b2\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1554091200/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1554091200/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5af9c50802ba1961404ef23be5b176c6\";a:10:{s:4:\"hash\";s:32:\"5af9c50802ba1961404ef23be5b176c6\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1554091200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1554091200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1e2e07055123d22b005ec90637ee83b8\";a:10:{s:4:\"hash\";s:32:\"1e2e07055123d22b005ec90637ee83b8\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1554091200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1554091200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5d98812dad7e7c99cd554c8084f3e98c\";a:10:{s:4:\"hash\";s:32:\"5d98812dad7e7c99cd554c8084f3e98c\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1554091200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1554091200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"834e209a560da20b71393abaa01ba06b\";a:10:{s:4:\"hash\";s:32:\"834e209a560da20b71393abaa01ba06b\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1554091200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1554091200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"43694c96fad0cffc3fe3ee5684628ce5\";a:10:{s:4:\"hash\";s:32:\"43694c96fad0cffc3fe3ee5684628ce5\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1556683200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1556683200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ac85c0379fa7d712376d389ea0948610\";a:10:{s:4:\"hash\";s:32:\"ac85c0379fa7d712376d389ea0948610\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1556683200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1556683200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9ebf723d349dbe5db17d930bb0a35a7e\";a:10:{s:4:\"hash\";s:32:\"9ebf723d349dbe5db17d930bb0a35a7e\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1556683200/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1556683200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f62e542826531a34b00796a78df0b465\";a:10:{s:4:\"hash\";s:32:\"f62e542826531a34b00796a78df0b465\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1556683200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1556683200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"87b01f7f050aaabc6f5d60081dc083a5\";a:10:{s:4:\"hash\";s:32:\"87b01f7f050aaabc6f5d60081dc083a5\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1556683200/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1556683200/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1d2a8467f71599fc4c45e8f1c4b38eea\";a:10:{s:4:\"hash\";s:32:\"1d2a8467f71599fc4c45e8f1c4b38eea\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1556683200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1556683200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9b42303e7a797fcc713a87c5606e2173\";a:10:{s:4:\"hash\";s:32:\"9b42303e7a797fcc713a87c5606e2173\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1556683200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1556683200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"579b1e529ccbfdf8bf27db50ac299ba8\";a:10:{s:4:\"hash\";s:32:\"579b1e529ccbfdf8bf27db50ac299ba8\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1556683200/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1556683200/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a90ee137eed098518bc1bfc3a0c8ceb\";a:10:{s:4:\"hash\";s:32:\"8a90ee137eed098518bc1bfc3a0c8ceb\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1556683200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1556683200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"491d14eaae733e4e0af30edc118c3e84\";a:10:{s:4:\"hash\";s:32:\"491d14eaae733e4e0af30edc118c3e84\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1556683200/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1556683200/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6d0fea097186a49760faf79884bbfd80\";a:10:{s:4:\"hash\";s:32:\"6d0fea097186a49760faf79884bbfd80\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1556683200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1556683200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5f8fc34b6c12554bc78de94e20ce662d\";a:10:{s:4:\"hash\";s:32:\"5f8fc34b6c12554bc78de94e20ce662d\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1556683200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1556683200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"365e17ca95bf8f6dc790572e040b9cd2\";a:10:{s:4:\"hash\";s:32:\"365e17ca95bf8f6dc790572e040b9cd2\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1556683200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1556683200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e26bee7273e48087639af4c95219679a\";a:10:{s:4:\"hash\";s:32:\"e26bee7273e48087639af4c95219679a\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1557201600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1557201600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2f0f3cb48ae9bf06ac76c89253052785\";a:10:{s:4:\"hash\";s:32:\"2f0f3cb48ae9bf06ac76c89253052785\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1557201600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1557201600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e555092576a07e8e8eb6124ad3184ec0\";a:10:{s:4:\"hash\";s:32:\"e555092576a07e8e8eb6124ad3184ec0\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1557201600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1557201600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"250ab425d05a2ad676139b3405cabe3d\";a:10:{s:4:\"hash\";s:32:\"250ab425d05a2ad676139b3405cabe3d\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1557288000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1557288000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c0bc5c5b89ff2efd66ef1813773e523\";a:10:{s:4:\"hash\";s:32:\"3c0bc5c5b89ff2efd66ef1813773e523\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1557806400/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1557806400/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4c6ae486507675cd0990253131310c05\";a:10:{s:4:\"hash\";s:32:\"4c6ae486507675cd0990253131310c05\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1557806400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1557806400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0cbef828fe4d7e176ad749b4532e2057\";a:10:{s:4:\"hash\";s:32:\"0cbef828fe4d7e176ad749b4532e2057\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1557806400/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1557806400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"869c678fefb6be32bd65ef7c0fe601c4\";a:10:{s:4:\"hash\";s:32:\"869c678fefb6be32bd65ef7c0fe601c4\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1557806400/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1557806400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"114d062f597d2d45f8356c6c30c5566f\";a:10:{s:4:\"hash\";s:32:\"114d062f597d2d45f8356c6c30c5566f\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1557806400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1557806400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"047232a47a12211691ece485d447efdf\";a:10:{s:4:\"hash\";s:32:\"047232a47a12211691ece485d447efdf\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1557806400/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1557806400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7bf27c635d4f6229f9a711f3bb3f272d\";a:10:{s:4:\"hash\";s:32:\"7bf27c635d4f6229f9a711f3bb3f272d\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1557806400/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1557806400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4a7072206e87e069ecc76119d4708508\";a:10:{s:4:\"hash\";s:32:\"4a7072206e87e069ecc76119d4708508\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1557806400/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1557806400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"823183e8de9fb1e09c9fa7f1eb66ffc7\";a:10:{s:4:\"hash\";s:32:\"823183e8de9fb1e09c9fa7f1eb66ffc7\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1557892800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1557892800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"715d337cd56c0517481ebb523fcc81f8\";a:10:{s:4:\"hash\";s:32:\"715d337cd56c0517481ebb523fcc81f8\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558238400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1558238400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cba85028fc32bc80c3a3a7b61f9f5113\";a:10:{s:4:\"hash\";s:32:\"cba85028fc32bc80c3a3a7b61f9f5113\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558324800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1558324800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"40f9db41fee77df25f3f823573231e69\";a:10:{s:4:\"hash\";s:32:\"40f9db41fee77df25f3f823573231e69\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558324800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1558324800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4a6a1ae109848f2ca5f49a537cac2617\";a:10:{s:4:\"hash\";s:32:\"4a6a1ae109848f2ca5f49a537cac2617\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558411200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1558411200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9e02b7753bf2596688036e4922dcdb93\";a:10:{s:4:\"hash\";s:32:\"9e02b7753bf2596688036e4922dcdb93\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558497600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1558497600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f6066a58aeea768f02952e992d8f12c2\";a:10:{s:4:\"hash\";s:32:\"f6066a58aeea768f02952e992d8f12c2\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558497600/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1558497600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"439182e39f625d4a365190173be09a90\";a:10:{s:4:\"hash\";s:32:\"439182e39f625d4a365190173be09a90\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558497600/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1558497600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ce98266c7e1c20e3229fe6a15d0412a\";a:10:{s:4:\"hash\";s:32:\"8ce98266c7e1c20e3229fe6a15d0412a\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558497600/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1558497600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0b5061a3f4861bed5caf3ecdf231154d\";a:10:{s:4:\"hash\";s:32:\"0b5061a3f4861bed5caf3ecdf231154d\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558756800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1558756800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8f56664ec23d0be1cd74acceb9406b73\";a:10:{s:4:\"hash\";s:32:\"8f56664ec23d0be1cd74acceb9406b73\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558756800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1558756800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e39f5a6217dc4982003fb2f85f7cd2fb\";a:10:{s:4:\"hash\";s:32:\"e39f5a6217dc4982003fb2f85f7cd2fb\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558756800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1558756800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f1cba54c0f7a46296c871b3dafacc469\";a:10:{s:4:\"hash\";s:32:\"f1cba54c0f7a46296c871b3dafacc469\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558756800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1558756800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"08fe3527e67586d1b5d4f8380f585f59\";a:10:{s:4:\"hash\";s:32:\"08fe3527e67586d1b5d4f8380f585f59\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558756800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1558756800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a77efa009db32a878f4c5a21438843b3\";a:10:{s:4:\"hash\";s:32:\"a77efa009db32a878f4c5a21438843b3\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558756800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1558756800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2a90f97eee5043c7d780c59bbc6a37e0\";a:10:{s:4:\"hash\";s:32:\"2a90f97eee5043c7d780c59bbc6a37e0\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558756800/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1558756800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5d5833e7bfe201c5ce051f639827812d\";a:10:{s:4:\"hash\";s:32:\"5d5833e7bfe201c5ce051f639827812d\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558756800/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1558756800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2273e7fd3ede101853322c5ea4ceb911\";a:10:{s:4:\"hash\";s:32:\"2273e7fd3ede101853322c5ea4ceb911\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558756800/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1558756800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff85c1e4ff13fa3a3bd97d0aa6b13b4f\";a:10:{s:4:\"hash\";s:32:\"ff85c1e4ff13fa3a3bd97d0aa6b13b4f\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558929600/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1558929600/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"da93ed4c4dafbdf0c17ce2a410d2b32c\";a:10:{s:4:\"hash\";s:32:\"da93ed4c4dafbdf0c17ce2a410d2b32c\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558929600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1558929600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a5b802d7ff347bf3c455df4b736c3c0\";a:10:{s:4:\"hash\";s:32:\"8a5b802d7ff347bf3c455df4b736c3c0\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558929600/cat_ids~87,89,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1558929600/cat_ids~87,89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b071d6a3929be61d7704c4b5b9b8fc36\";a:10:{s:4:\"hash\";s:32:\"b071d6a3929be61d7704c4b5b9b8fc36\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558929600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1558929600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5add8f4cfac894e60c203186f795fbc3\";a:10:{s:4:\"hash\";s:32:\"5add8f4cfac894e60c203186f795fbc3\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558929600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1558929600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"38cb44ae412d4a136404c8b237765034\";a:10:{s:4:\"hash\";s:32:\"38cb44ae412d4a136404c8b237765034\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558929600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1558929600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b39ac5cc72bf283d1080ce97510e5552\";a:10:{s:4:\"hash\";s:32:\"b39ac5cc72bf283d1080ce97510e5552\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558929600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1558929600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3e1de76610c546f0f740bff9162cf9f6\";a:10:{s:4:\"hash\";s:32:\"3e1de76610c546f0f740bff9162cf9f6\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1558929600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1558929600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7cdba30c5c49d5472052e8a5bfb4500e\";a:10:{s:4:\"hash\";s:32:\"7cdba30c5c49d5472052e8a5bfb4500e\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559188800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1559188800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0a6f94760d239645c26bf792f5d653fb\";a:10:{s:4:\"hash\";s:32:\"0a6f94760d239645c26bf792f5d653fb\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559188800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1559188800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5642e4f530322de3cbde42b44088f054\";a:10:{s:4:\"hash\";s:32:\"5642e4f530322de3cbde42b44088f054\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559188800/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1559188800/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a706f099f8b594c1e729170a8c3f7e1e\";a:10:{s:4:\"hash\";s:32:\"a706f099f8b594c1e729170a8c3f7e1e\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559188800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1559188800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3a50795796116716993146d469efa800\";a:10:{s:4:\"hash\";s:32:\"3a50795796116716993146d469efa800\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559188800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1559188800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ddb70b59dbdffcc705fb29eb64b4c959\";a:10:{s:4:\"hash\";s:32:\"ddb70b59dbdffcc705fb29eb64b4c959\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559188800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1559188800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"879647eec7e1c01922bd659ef248eb71\";a:10:{s:4:\"hash\";s:32:\"879647eec7e1c01922bd659ef248eb71\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559275200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1559275200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"01cf330be368c5bd9e0be9761d2e45a2\";a:10:{s:4:\"hash\";s:32:\"01cf330be368c5bd9e0be9761d2e45a2\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559275200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1559275200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"83ffe83758d37f871dc11ab0b9da5513\";a:10:{s:4:\"hash\";s:32:\"83ffe83758d37f871dc11ab0b9da5513\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559275200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1559275200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"08e7cdd9f7a0966ea25b32e6713b9939\";a:10:{s:4:\"hash\";s:32:\"08e7cdd9f7a0966ea25b32e6713b9939\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559275200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1559275200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"39b52e8a1b567f295f4af8f8d1aba18c\";a:10:{s:4:\"hash\";s:32:\"39b52e8a1b567f295f4af8f8d1aba18c\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559361600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1559361600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a8e3053364e05ba65d321530f3354cc1\";a:10:{s:4:\"hash\";s:32:\"a8e3053364e05ba65d321530f3354cc1\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559361600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1559361600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aa8362661134efb7264df4860001c3b7\";a:10:{s:4:\"hash\";s:32:\"aa8362661134efb7264df4860001c3b7\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559361600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1559361600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"347d0f9b74da1c4189a9585565f6a0f3\";a:10:{s:4:\"hash\";s:32:\"347d0f9b74da1c4189a9585565f6a0f3\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559361600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1559361600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b687fc4921a2bb30a79fac490ee013e6\";a:10:{s:4:\"hash\";s:32:\"b687fc4921a2bb30a79fac490ee013e6\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559361600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1559361600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"000acfa2de92b3f036be1e0a639b384a\";a:10:{s:4:\"hash\";s:32:\"000acfa2de92b3f036be1e0a639b384a\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559361600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1559361600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2dae8695335207ac03deb049be9b1736\";a:10:{s:4:\"hash\";s:32:\"2dae8695335207ac03deb049be9b1736\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559361600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1559361600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d173b1e4702ff7424f0bcf5ce2f56720\";a:10:{s:4:\"hash\";s:32:\"d173b1e4702ff7424f0bcf5ce2f56720\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559361600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1559361600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c2018276bc8ac2572ab1f94724e42a6b\";a:10:{s:4:\"hash\";s:32:\"c2018276bc8ac2572ab1f94724e42a6b\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559361600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1559361600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"211080774ba8d96b4482d82e0d8b696f\";a:10:{s:4:\"hash\";s:32:\"211080774ba8d96b4482d82e0d8b696f\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559361600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1559361600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c89b4bea40f7ea8f709f4d6d5405e832\";a:10:{s:4:\"hash\";s:32:\"c89b4bea40f7ea8f709f4d6d5405e832\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559361600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1559361600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"31743f657de710d25361b4066c2749b0\";a:10:{s:4:\"hash\";s:32:\"31743f657de710d25361b4066c2749b0\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559361600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1559361600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"74943f43579d012c501ffec24c3aaf12\";a:10:{s:4:\"hash\";s:32:\"74943f43579d012c501ffec24c3aaf12\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559361600/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1559361600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4fdf824495259ab2f8017514dc6e974b\";a:10:{s:4:\"hash\";s:32:\"4fdf824495259ab2f8017514dc6e974b\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559361600/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1559361600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff321f031f43baf7d194e13c55d05276\";a:10:{s:4:\"hash\";s:32:\"ff321f031f43baf7d194e13c55d05276\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559361600/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1559361600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a81685d9fd64cc434339b3e16084e13a\";a:10:{s:4:\"hash\";s:32:\"a81685d9fd64cc434339b3e16084e13a\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559448000/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1559448000/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"53c6565971a19131acdfe6148a5278f2\";a:10:{s:4:\"hash\";s:32:\"53c6565971a19131acdfe6148a5278f2\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559534400/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1559534400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"70bb326402d37def7ea9a33657aefb72\";a:10:{s:4:\"hash\";s:32:\"70bb326402d37def7ea9a33657aefb72\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559620800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1559620800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"29a7dfea060cc04ea86e95294b349513\";a:10:{s:4:\"hash\";s:32:\"29a7dfea060cc04ea86e95294b349513\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559620800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1559620800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"531e99538c82ea13d25dc61f8b31ddde\";a:10:{s:4:\"hash\";s:32:\"531e99538c82ea13d25dc61f8b31ddde\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559620800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1559620800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f1ea3b8f198d365ac160f8eb1997fcd9\";a:10:{s:4:\"hash\";s:32:\"f1ea3b8f198d365ac160f8eb1997fcd9\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559620800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1559620800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ad64891f3336ac37791a8f2b144efe03\";a:10:{s:4:\"hash\";s:32:\"ad64891f3336ac37791a8f2b144efe03\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559620800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1559620800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bef8fb3c58e0c79d62b56eaae7aa5fa0\";a:10:{s:4:\"hash\";s:32:\"bef8fb3c58e0c79d62b56eaae7aa5fa0\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559620800/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1559620800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"49ff3d55b299c045d573cb0f78584df0\";a:10:{s:4:\"hash\";s:32:\"49ff3d55b299c045d573cb0f78584df0\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559620800/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1559620800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9abf079f3bd37fd912bff7a5f8f623f4\";a:10:{s:4:\"hash\";s:32:\"9abf079f3bd37fd912bff7a5f8f623f4\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559620800/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1559620800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"34ce8dbc64ccd89ca01372d5d3bcc88b\";a:10:{s:4:\"hash\";s:32:\"34ce8dbc64ccd89ca01372d5d3bcc88b\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559707200/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1559707200/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3a4e2c187726d8f84455f30f0ca545bf\";a:10:{s:4:\"hash\";s:32:\"3a4e2c187726d8f84455f30f0ca545bf\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559707200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1559707200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9c2b9a72ddb2b273c84ee3f9849b5ab5\";a:10:{s:4:\"hash\";s:32:\"9c2b9a72ddb2b273c84ee3f9849b5ab5\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559707200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1559707200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a06b2f3cf6c7ba1843ffbe3ec19a69ac\";a:10:{s:4:\"hash\";s:32:\"a06b2f3cf6c7ba1843ffbe3ec19a69ac\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559707200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1559707200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9a4889998b626c983007486fb68f02f7\";a:10:{s:4:\"hash\";s:32:\"9a4889998b626c983007486fb68f02f7\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559793600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1559793600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a2b20118698c3e58029c7b8963cbe2de\";a:10:{s:4:\"hash\";s:32:\"a2b20118698c3e58029c7b8963cbe2de\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559880000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1559880000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"10cc151adf60dde55d6685b70164105c\";a:10:{s:4:\"hash\";s:32:\"10cc151adf60dde55d6685b70164105c\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1559880000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1559880000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7a35be012da7601b712a7841c2285d65\";a:10:{s:4:\"hash\";s:32:\"7a35be012da7601b712a7841c2285d65\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560052800/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1560052800/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dca13c1830d2a00801a75311e6530b2a\";a:10:{s:4:\"hash\";s:32:\"dca13c1830d2a00801a75311e6530b2a\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560052800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1560052800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"86a5be0c3510f37b24ce73d5a3f5b145\";a:10:{s:4:\"hash\";s:32:\"86a5be0c3510f37b24ce73d5a3f5b145\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560139200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1560139200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0715d0f1012b81c2a6d48a7a9f677a22\";a:10:{s:4:\"hash\";s:32:\"0715d0f1012b81c2a6d48a7a9f677a22\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560139200/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1560139200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0908b1159d05af65e102846c9359d92a\";a:10:{s:4:\"hash\";s:32:\"0908b1159d05af65e102846c9359d92a\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560139200/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1560139200/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4843a770e96f780474a1a1dc6b121efc\";a:10:{s:4:\"hash\";s:32:\"4843a770e96f780474a1a1dc6b121efc\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560139200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1560139200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ce2daef6ea19ffb4bbf72b499ba76922\";a:10:{s:4:\"hash\";s:32:\"ce2daef6ea19ffb4bbf72b499ba76922\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560139200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1560139200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"55e10c85384c0ad8ad7ddef1e48a68a7\";a:10:{s:4:\"hash\";s:32:\"55e10c85384c0ad8ad7ddef1e48a68a7\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560139200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1560139200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3ba230a2a47c9e3e58c324aa74afcd0a\";a:10:{s:4:\"hash\";s:32:\"3ba230a2a47c9e3e58c324aa74afcd0a\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560139200/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1560139200/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"52944507538120a47c54c300f40c6889\";a:10:{s:4:\"hash\";s:32:\"52944507538120a47c54c300f40c6889\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560139200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1560139200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b3a8a1858b3540759d5b276d286940d6\";a:10:{s:4:\"hash\";s:32:\"b3a8a1858b3540759d5b276d286940d6\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560139200/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1560139200/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"031349de4a6bc75c4621de6b6a9fa697\";a:10:{s:4:\"hash\";s:32:\"031349de4a6bc75c4621de6b6a9fa697\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560139200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1560139200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e215da787513a70268207cece94a9bf4\";a:10:{s:4:\"hash\";s:32:\"e215da787513a70268207cece94a9bf4\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560139200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1560139200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e3f1fa7512c006224aeb7dc874f31136\";a:10:{s:4:\"hash\";s:32:\"e3f1fa7512c006224aeb7dc874f31136\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560139200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1560139200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f718187612bdc1b5440c09131c1099b3\";a:10:{s:4:\"hash\";s:32:\"f718187612bdc1b5440c09131c1099b3\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560139200/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1560139200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bd9cb13c2b6219e259763f6a25b43b06\";a:10:{s:4:\"hash\";s:32:\"bd9cb13c2b6219e259763f6a25b43b06\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560139200/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1560139200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f9bcd5d7e504fc34648f9a12ac9e818\";a:10:{s:4:\"hash\";s:32:\"7f9bcd5d7e504fc34648f9a12ac9e818\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560139200/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1560139200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6d327de255d667151c1e5d6c069d1433\";a:10:{s:4:\"hash\";s:32:\"6d327de255d667151c1e5d6c069d1433\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560225600/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1560225600/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a6384eb17c8c56bea2bf5102bce63e02\";a:10:{s:4:\"hash\";s:32:\"a6384eb17c8c56bea2bf5102bce63e02\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560225600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1560225600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d51ba7bc8d569730292dd9e04a93f3fd\";a:10:{s:4:\"hash\";s:32:\"d51ba7bc8d569730292dd9e04a93f3fd\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560312000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1560312000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f26218beec10b9f55221c3275df8f378\";a:10:{s:4:\"hash\";s:32:\"f26218beec10b9f55221c3275df8f378\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560312000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1560312000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e5007c11105ca53e43ef1492ebf0af67\";a:10:{s:4:\"hash\";s:32:\"e5007c11105ca53e43ef1492ebf0af67\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560571200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1560571200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"037a1824fc03564512b89e5bb217ae97\";a:10:{s:4:\"hash\";s:32:\"037a1824fc03564512b89e5bb217ae97\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560830400/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1560830400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8e39ed3b6883ea41733711e463b0df85\";a:10:{s:4:\"hash\";s:32:\"8e39ed3b6883ea41733711e463b0df85\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560830400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1560830400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e6dfc3566706663ac2b8c1f7cac5b537\";a:10:{s:4:\"hash\";s:32:\"e6dfc3566706663ac2b8c1f7cac5b537\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560830400/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1560830400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"719c53ddc4aa8799cd99bc8a56b33824\";a:10:{s:4:\"hash\";s:32:\"719c53ddc4aa8799cd99bc8a56b33824\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560916800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1560916800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"93d85b10232f271d7ff001620f7243f6\";a:10:{s:4:\"hash\";s:32:\"93d85b10232f271d7ff001620f7243f6\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1560916800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1560916800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"efe29dea6b43fd5fcf0a35e490dc4987\";a:10:{s:4:\"hash\";s:32:\"efe29dea6b43fd5fcf0a35e490dc4987\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1561176000/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1561176000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ed4417b3d30e76a45f4379d2dbb3ce18\";a:10:{s:4:\"hash\";s:32:\"ed4417b3d30e76a45f4379d2dbb3ce18\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1561262400/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1561262400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"85a16e612a731907bf1f15588fcc0f48\";a:10:{s:4:\"hash\";s:32:\"85a16e612a731907bf1f15588fcc0f48\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1561262400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1561262400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f7d52754807281c1f5965b9602c20ead\";a:10:{s:4:\"hash\";s:32:\"f7d52754807281c1f5965b9602c20ead\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1561608000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1561608000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"74a37207a360d491857771b1947bfe5e\";a:10:{s:4:\"hash\";s:32:\"74a37207a360d491857771b1947bfe5e\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1561694400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1561694400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"682e6d4bfe58fb587e36b6230eaa2676\";a:10:{s:4:\"hash\";s:32:\"682e6d4bfe58fb587e36b6230eaa2676\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1561953600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1561953600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"44fb285f54383c37a90e5ad747c4a151\";a:10:{s:4:\"hash\";s:32:\"44fb285f54383c37a90e5ad747c4a151\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1561953600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1561953600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2e2f43f0d0d3621a74b2795cda3917ee\";a:10:{s:4:\"hash\";s:32:\"2e2f43f0d0d3621a74b2795cda3917ee\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1561953600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1561953600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2cacaa862c825dbc7389e1f46e8b5c4c\";a:10:{s:4:\"hash\";s:32:\"2cacaa862c825dbc7389e1f46e8b5c4c\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1561953600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1561953600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7a32232901fab3beb33f3eddd6c2fc20\";a:10:{s:4:\"hash\";s:32:\"7a32232901fab3beb33f3eddd6c2fc20\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1561953600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1561953600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"20531cf6c0c372faf32ab6d7ce0a5416\";a:10:{s:4:\"hash\";s:32:\"20531cf6c0c372faf32ab6d7ce0a5416\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1561953600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1561953600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9670bcb006539416b7b5e65935237675\";a:10:{s:4:\"hash\";s:32:\"9670bcb006539416b7b5e65935237675\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1561953600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1561953600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a69eddfa622a5feb76b3c27d983d2694\";a:10:{s:4:\"hash\";s:32:\"a69eddfa622a5feb76b3c27d983d2694\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1561953600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1561953600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"66d007a3da77a69ed954a0dee4c4d1cf\";a:10:{s:4:\"hash\";s:32:\"66d007a3da77a69ed954a0dee4c4d1cf\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1561953600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1561953600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a63e739d85742c644c3bb06c5ab5abf3\";a:10:{s:4:\"hash\";s:32:\"a63e739d85742c644c3bb06c5ab5abf3\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1561953600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1561953600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"682bdafe602af9c7dd88f1f8b9f8e871\";a:10:{s:4:\"hash\";s:32:\"682bdafe602af9c7dd88f1f8b9f8e871\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1561953600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1561953600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0cc663dc874d1c50fced9f76b612e6d1\";a:10:{s:4:\"hash\";s:32:\"0cc663dc874d1c50fced9f76b612e6d1\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1561953600/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1561953600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a7c5b296d1ecb4ff3aaad532539bcc78\";a:10:{s:4:\"hash\";s:32:\"a7c5b296d1ecb4ff3aaad532539bcc78\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1561953600/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1561953600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a3fc84ee2df89c8c5afb11be678072d8\";a:10:{s:4:\"hash\";s:32:\"a3fc84ee2df89c8c5afb11be678072d8\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1561953600/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1561953600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"62033d1122706a799c9274bb7a98d7e0\";a:10:{s:4:\"hash\";s:32:\"62033d1122706a799c9274bb7a98d7e0\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1562385600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1562385600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3e80472ccc3a05a8792529d3c1f0c294\";a:10:{s:4:\"hash\";s:32:\"3e80472ccc3a05a8792529d3c1f0c294\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1562904000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1562904000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4dbbcec52918d5d32d2e89d533ece755\";a:10:{s:4:\"hash\";s:32:\"4dbbcec52918d5d32d2e89d533ece755\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1562990400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1562990400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4fc23f79f18be00f4dd34a151bfe591a\";a:10:{s:4:\"hash\";s:32:\"4fc23f79f18be00f4dd34a151bfe591a\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1562990400/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1562990400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7268049c3e9f477aed56d19be368e8a7\";a:10:{s:4:\"hash\";s:32:\"7268049c3e9f477aed56d19be368e8a7\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1562990400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1562990400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"395c6deffd74861553df291b56018260\";a:10:{s:4:\"hash\";s:32:\"395c6deffd74861553df291b56018260\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1563076800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1563076800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c2ad3de76f39bdeeaba70e6694ee5f65\";a:10:{s:4:\"hash\";s:32:\"c2ad3de76f39bdeeaba70e6694ee5f65\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1563076800/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1563076800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"686156349336ef4f99b6fb6f937eff40\";a:10:{s:4:\"hash\";s:32:\"686156349336ef4f99b6fb6f937eff40\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1563076800/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1563076800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3d0812d962aa7be5bdadc925d0a1ef8c\";a:10:{s:4:\"hash\";s:32:\"3d0812d962aa7be5bdadc925d0a1ef8c\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1563076800/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1563076800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c570918886a1110a595803a6b640ebe9\";a:10:{s:4:\"hash\";s:32:\"c570918886a1110a595803a6b640ebe9\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1563163200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1563163200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"74b6323d12a177d73e9b4c031878834e\";a:10:{s:4:\"hash\";s:32:\"74b6323d12a177d73e9b4c031878834e\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1563163200/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1563163200/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5678f5d64be2d49911e9a1c769f7f0b1\";a:10:{s:4:\"hash\";s:32:\"5678f5d64be2d49911e9a1c769f7f0b1\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1563163200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1563163200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c2545b8f5925abd8d679ca02c994b77\";a:10:{s:4:\"hash\";s:32:\"2c2545b8f5925abd8d679ca02c994b77\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1563163200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1563163200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4c22097cc18ded2e33486d6b344afd71\";a:10:{s:4:\"hash\";s:32:\"4c22097cc18ded2e33486d6b344afd71\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1563163200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1563163200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d382403a40a65574923cbd1e0781f060\";a:10:{s:4:\"hash\";s:32:\"d382403a40a65574923cbd1e0781f060\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1563163200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1563163200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b55270ff5e934c49f5f762225379c90b\";a:10:{s:4:\"hash\";s:32:\"b55270ff5e934c49f5f762225379c90b\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1563163200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1563163200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9cb59cd7d8ea69a7f72894e6fc989a32\";a:10:{s:4:\"hash\";s:32:\"9cb59cd7d8ea69a7f72894e6fc989a32\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1563163200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1563163200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c12199239eb0aae215c6fdfdc6327e5c\";a:10:{s:4:\"hash\";s:32:\"c12199239eb0aae215c6fdfdc6327e5c\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1563163200/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1563163200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c2180d4f20810a7eabe3d6eac4f223a8\";a:10:{s:4:\"hash\";s:32:\"c2180d4f20810a7eabe3d6eac4f223a8\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1563163200/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1563163200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"79cd1f6f354f03345c34a935e70ddb69\";a:10:{s:4:\"hash\";s:32:\"79cd1f6f354f03345c34a935e70ddb69\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1563163200/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1563163200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8bbf78d702e29f8d4bc2faf8580d5a06\";a:10:{s:4:\"hash\";s:32:\"8bbf78d702e29f8d4bc2faf8580d5a06\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1563508800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1563508800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"81d9ef7559fed4cce8688500609ef1ad\";a:10:{s:4:\"hash\";s:32:\"81d9ef7559fed4cce8688500609ef1ad\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1564632000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1564632000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"495e6520eae03b3fb394fd16c95c7d32\";a:10:{s:4:\"hash\";s:32:\"495e6520eae03b3fb394fd16c95c7d32\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1564632000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1564632000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1f880866e80f2291b13a5475291c69ed\";a:10:{s:4:\"hash\";s:32:\"1f880866e80f2291b13a5475291c69ed\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1564632000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1564632000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ad228df8116a7be08a7debced0f00cb9\";a:10:{s:4:\"hash\";s:32:\"ad228df8116a7be08a7debced0f00cb9\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1564632000/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1564632000/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"77c4746fbb3881e21b71ee35a614a8fb\";a:10:{s:4:\"hash\";s:32:\"77c4746fbb3881e21b71ee35a614a8fb\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1564632000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1564632000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c2e547ba54f7048842d9f06a671ac53\";a:10:{s:4:\"hash\";s:32:\"2c2e547ba54f7048842d9f06a671ac53\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1564632000/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1564632000/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6c584587c33da4bea66910430e032c9f\";a:10:{s:4:\"hash\";s:32:\"6c584587c33da4bea66910430e032c9f\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1564632000/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1564632000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ee37f2250a73fb80ff79dcde9a3479b9\";a:10:{s:4:\"hash\";s:32:\"ee37f2250a73fb80ff79dcde9a3479b9\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1564632000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1564632000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"01e026e48e6a96c3f5820137eeeda0cc\";a:10:{s:4:\"hash\";s:32:\"01e026e48e6a96c3f5820137eeeda0cc\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1564718400/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1564718400/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e9f73444c2bd2ddd946eeabd7f62a5f0\";a:10:{s:4:\"hash\";s:32:\"e9f73444c2bd2ddd946eeabd7f62a5f0\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1564718400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1564718400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"051b2ec2a630b2e8142d070ff83cd101\";a:10:{s:4:\"hash\";s:32:\"051b2ec2a630b2e8142d070ff83cd101\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1564718400/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1564718400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"282f0dfb62594a2ca966ed10f5b46e3c\";a:10:{s:4:\"hash\";s:32:\"282f0dfb62594a2ca966ed10f5b46e3c\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1564718400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1564718400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a912fb78d3c6b002baa63873cd099ac4\";a:10:{s:4:\"hash\";s:32:\"a912fb78d3c6b002baa63873cd099ac4\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1564718400/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1564718400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0556057d356f094fb6dba69b5465fa78\";a:10:{s:4:\"hash\";s:32:\"0556057d356f094fb6dba69b5465fa78\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1564718400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1564718400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"917589ad4b53a3581ffbf496ce6df497\";a:10:{s:4:\"hash\";s:32:\"917589ad4b53a3581ffbf496ce6df497\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1564804800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1564804800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"32961bc9d1fa172c9e1a863dfbacb196\";a:10:{s:4:\"hash\";s:32:\"32961bc9d1fa172c9e1a863dfbacb196\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1564804800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1564804800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c5494dd55e8424ab4d1b73d3b2aa4ebb\";a:10:{s:4:\"hash\";s:32:\"c5494dd55e8424ab4d1b73d3b2aa4ebb\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1564804800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1564804800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e26df4a777c08917210ecb0eb1edd09c\";a:10:{s:4:\"hash\";s:32:\"e26df4a777c08917210ecb0eb1edd09c\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1567051200/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1567051200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"62442d93a3ff5adbe57a37dd964855c3\";a:10:{s:4:\"hash\";s:32:\"62442d93a3ff5adbe57a37dd964855c3\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1567051200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1567051200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ab8abde3ddcee1db878ca16aecc23b1\";a:10:{s:4:\"hash\";s:32:\"8ab8abde3ddcee1db878ca16aecc23b1\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1567051200/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1567051200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3148ee893975561b88ee51e003d890d3\";a:10:{s:4:\"hash\";s:32:\"3148ee893975561b88ee51e003d890d3\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1567051200/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1567051200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7cb59f9e006f19564c81014aa4bb72c2\";a:10:{s:4:\"hash\";s:32:\"7cb59f9e006f19564c81014aa4bb72c2\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1567051200/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1567051200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c7c1942478f5604575016c109b85a281\";a:10:{s:4:\"hash\";s:32:\"c7c1942478f5604575016c109b85a281\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1567137600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1567137600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c56ed033f525194ecd57d673ba47c167\";a:10:{s:4:\"hash\";s:32:\"c56ed033f525194ecd57d673ba47c167\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1567224000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1567224000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7a3903551007caefaf1618bf5aeab814\";a:10:{s:4:\"hash\";s:32:\"7a3903551007caefaf1618bf5aeab814\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1567310400/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1567310400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b046f3a9558d16fb734d24bff36796cd\";a:10:{s:4:\"hash\";s:32:\"b046f3a9558d16fb734d24bff36796cd\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1567310400/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1567310400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"964ab89d8c1cca7454f8a08ff88992a6\";a:10:{s:4:\"hash\";s:32:\"964ab89d8c1cca7454f8a08ff88992a6\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1567310400/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1567310400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0bbd56572df46c28d1b7a4bb86baf369\";a:10:{s:4:\"hash\";s:32:\"0bbd56572df46c28d1b7a4bb86baf369\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1567310400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1567310400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"30e527c3a34955d0dc293d399442d41d\";a:10:{s:4:\"hash\";s:32:\"30e527c3a34955d0dc293d399442d41d\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1569902400/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1569902400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b5f55c7b69eff0dc52f8b056bcddc748\";a:10:{s:4:\"hash\";s:32:\"b5f55c7b69eff0dc52f8b056bcddc748\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1569902400/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1569902400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d968f19d414afe122a7f100d3d32d69a\";a:10:{s:4:\"hash\";s:32:\"d968f19d414afe122a7f100d3d32d69a\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1572580800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1572580800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"11834322dde5737916b8d2683f6d8474\";a:10:{s:4:\"hash\";s:32:\"11834322dde5737916b8d2683f6d8474\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1572580800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1572580800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"282f29aa6cb5460085147f4d1b127529\";a:10:{s:4:\"hash\";s:32:\"282f29aa6cb5460085147f4d1b127529\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1572580800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1572580800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1b0f7f75db39f139f3e95fe4e9a11ec9\";a:10:{s:4:\"hash\";s:32:\"1b0f7f75db39f139f3e95fe4e9a11ec9\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1572580800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1572580800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dea7d32f379d5b55bcf4e38f11d07a68\";a:10:{s:4:\"hash\";s:32:\"dea7d32f379d5b55bcf4e38f11d07a68\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1572580800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1572580800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"05413ed7705fc3013d128d31321ba454\";a:10:{s:4:\"hash\";s:32:\"05413ed7705fc3013d128d31321ba454\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1572580800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1572580800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d1691cc134b0c48d5efbbc13106a26df\";a:10:{s:4:\"hash\";s:32:\"d1691cc134b0c48d5efbbc13106a26df\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1572580800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1572580800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"21136dfa47add1604d0bea2f812e6c43\";a:10:{s:4:\"hash\";s:32:\"21136dfa47add1604d0bea2f812e6c43\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1572580800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1572580800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c95836a6b6f4dff8cd4dcd85c4dec209\";a:10:{s:4:\"hash\";s:32:\"c95836a6b6f4dff8cd4dcd85c4dec209\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1572667200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1572667200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4607462d6bf7695c320b4c77e6038e73\";a:10:{s:4:\"hash\";s:32:\"4607462d6bf7695c320b4c77e6038e73\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1572753600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1572753600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8463fb56d1d3cbace8ba296d18d52f19\";a:10:{s:4:\"hash\";s:32:\"8463fb56d1d3cbace8ba296d18d52f19\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1573275600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1573275600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"550908b07630c0761989e5b358bac3e7\";a:10:{s:4:\"hash\";s:32:\"550908b07630c0761989e5b358bac3e7\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1573362000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1573362000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e9337c1ca3013e38dd9da74bf3f7ea6d\";a:10:{s:4:\"hash\";s:32:\"e9337c1ca3013e38dd9da74bf3f7ea6d\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1573448400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1573448400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"675db40bb14f369b9a14f1f94e65914e\";a:10:{s:4:\"hash\";s:32:\"675db40bb14f369b9a14f1f94e65914e\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1573707600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1573707600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d3c32cccf39f817818c70a9f37c525ca\";a:10:{s:4:\"hash\";s:32:\"d3c32cccf39f817818c70a9f37c525ca\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1574053200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1574053200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cac86e30c9fc235a12504bc7beed47b7\";a:10:{s:4:\"hash\";s:32:\"cac86e30c9fc235a12504bc7beed47b7\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1574485200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1574485200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d9da3c295ba79bea017c71706fcbe7d3\";a:10:{s:4:\"hash\";s:32:\"d9da3c295ba79bea017c71706fcbe7d3\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1574658000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1574658000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7c308fabb343b850cba281007a1a70e6\";a:10:{s:4:\"hash\";s:32:\"7c308fabb343b850cba281007a1a70e6\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1574830800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1574830800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aa520433f8dab251808cbe33edb4b866\";a:10:{s:4:\"hash\";s:32:\"aa520433f8dab251808cbe33edb4b866\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1574917200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1574917200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"683e283fd500bac3cceb1ed419c15b4a\";a:10:{s:4:\"hash\";s:32:\"683e283fd500bac3cceb1ed419c15b4a\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1575176400/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1575176400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8d5b3c5378e3d3ffe87c405de555fcd4\";a:10:{s:4:\"hash\";s:32:\"8d5b3c5378e3d3ffe87c405de555fcd4\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1575176400/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1575176400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a6aba4242c26acc9b57e00fc1f34f126\";a:10:{s:4:\"hash\";s:32:\"a6aba4242c26acc9b57e00fc1f34f126\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1577854800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1577854800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"47558e4621a8ba68e621044ea739265d\";a:10:{s:4:\"hash\";s:32:\"47558e4621a8ba68e621044ea739265d\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1580533200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1580533200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5acc6e82a414a6323bdcce6d4049eb03\";a:10:{s:4:\"hash\";s:32:\"5acc6e82a414a6323bdcce6d4049eb03\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1580533200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1580533200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"83f36bc6551b428540de65369bef6882\";a:10:{s:4:\"hash\";s:32:\"83f36bc6551b428540de65369bef6882\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1580533200/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1580533200/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0efd2ba08bd46e3c668d6fcaf0057ba4\";a:10:{s:4:\"hash\";s:32:\"0efd2ba08bd46e3c668d6fcaf0057ba4\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1580533200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1580533200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e4d25e9c68f9c4e3e301e9b1742681d4\";a:10:{s:4:\"hash\";s:32:\"e4d25e9c68f9c4e3e301e9b1742681d4\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1580533200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1580533200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8c09b88627a16c5e961a97e9ee50e163\";a:10:{s:4:\"hash\";s:32:\"8c09b88627a16c5e961a97e9ee50e163\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1580533200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1580533200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aa30af72b35bfc3e8b99eea1bd9a89fb\";a:10:{s:4:\"hash\";s:32:\"aa30af72b35bfc3e8b99eea1bd9a89fb\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1580533200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1580533200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"519a64a0d7f2bbc840bc5b1b80735aa5\";a:10:{s:4:\"hash\";s:32:\"519a64a0d7f2bbc840bc5b1b80735aa5\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1583038800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1583038800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b32dcd3e637285fd652879276dc1e913\";a:10:{s:4:\"hash\";s:32:\"b32dcd3e637285fd652879276dc1e913\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1583038800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1583038800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4ee971d9e6b26021630e2df5be0178b9\";a:10:{s:4:\"hash\";s:32:\"4ee971d9e6b26021630e2df5be0178b9\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1583038800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1583038800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"322cf7de6f8ebeeed138b099c1f39c93\";a:10:{s:4:\"hash\";s:32:\"322cf7de6f8ebeeed138b099c1f39c93\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1585713600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1585713600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7a6d1c0d187a8f636d84b0a772e39bc5\";a:10:{s:4:\"hash\";s:32:\"7a6d1c0d187a8f636d84b0a772e39bc5\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1585713600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1585713600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"24e5b192cea323b8c4d66d81135c773d\";a:10:{s:4:\"hash\";s:32:\"24e5b192cea323b8c4d66d81135c773d\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1585713600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1585713600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d8526263f5183b447a5ed30431156a0b\";a:10:{s:4:\"hash\";s:32:\"d8526263f5183b447a5ed30431156a0b\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1585713600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1585713600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"88a7e8520b5a0c51d2f4e67aa76e7cb7\";a:10:{s:4:\"hash\";s:32:\"88a7e8520b5a0c51d2f4e67aa76e7cb7\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1585713600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1585713600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"84ad523e05c7544077087606409eefcc\";a:10:{s:4:\"hash\";s:32:\"84ad523e05c7544077087606409eefcc\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1585713600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1585713600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6c648c4c6eae2ca3601ef4acf1373c6e\";a:10:{s:4:\"hash\";s:32:\"6c648c4c6eae2ca3601ef4acf1373c6e\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1585713600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1585713600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"37f34445f31c4487146a851cc739f905\";a:10:{s:4:\"hash\";s:32:\"37f34445f31c4487146a851cc739f905\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1586318400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1586318400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c4560c10ea4fcfc1a5f865fd477bf153\";a:10:{s:4:\"hash\";s:32:\"c4560c10ea4fcfc1a5f865fd477bf153\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1586577600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1586577600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"77a1eba2c0394d3f8f43274343c8c77d\";a:10:{s:4:\"hash\";s:32:\"77a1eba2c0394d3f8f43274343c8c77d\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1587096000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1587096000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f8cdf0cf6de4f2e6ceb87c4021ceb10d\";a:10:{s:4:\"hash\";s:32:\"f8cdf0cf6de4f2e6ceb87c4021ceb10d\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1587355200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1587355200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bb00749128c2a93e2465e1169c4e9358\";a:10:{s:4:\"hash\";s:32:\"bb00749128c2a93e2465e1169c4e9358\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1587960000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1587960000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5aac99ae3b0515e2700aaf8ba2ed62ad\";a:10:{s:4:\"hash\";s:32:\"5aac99ae3b0515e2700aaf8ba2ed62ad\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588132800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1588132800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"50df03902f1bdab29f554ad49a630735\";a:10:{s:4:\"hash\";s:32:\"50df03902f1bdab29f554ad49a630735\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588305600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1588305600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3375effca8ba7cb46b0fc57f070aefe4\";a:10:{s:4:\"hash\";s:32:\"3375effca8ba7cb46b0fc57f070aefe4\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588305600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1588305600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9bd263b3e124ff44bfe951b65e96bfc6\";a:10:{s:4:\"hash\";s:32:\"9bd263b3e124ff44bfe951b65e96bfc6\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588305600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1588305600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"435bb0bd1c83addeed4050878d5fed15\";a:10:{s:4:\"hash\";s:32:\"435bb0bd1c83addeed4050878d5fed15\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588305600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1588305600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"df37bd8102db60c12d4f01a02ae36d93\";a:10:{s:4:\"hash\";s:32:\"df37bd8102db60c12d4f01a02ae36d93\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588305600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1588305600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b8ba8f3d47084d9f42f6c4f0025f8199\";a:10:{s:4:\"hash\";s:32:\"b8ba8f3d47084d9f42f6c4f0025f8199\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588305600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1588305600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d3811ba5651f8f73cdbf9060b80850d2\";a:10:{s:4:\"hash\";s:32:\"d3811ba5651f8f73cdbf9060b80850d2\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588305600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1588305600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b8c17e33c582e828cdfc4c6b2e50ce8e\";a:10:{s:4:\"hash\";s:32:\"b8c17e33c582e828cdfc4c6b2e50ce8e\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588305600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1588305600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"53a17ea4259cd73b109453bac8951bd6\";a:10:{s:4:\"hash\";s:32:\"53a17ea4259cd73b109453bac8951bd6\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588305600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1588305600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"053a85efa1c9dbf5d0f69014b5021cc4\";a:10:{s:4:\"hash\";s:32:\"053a85efa1c9dbf5d0f69014b5021cc4\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588305600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1588305600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"01b445c4c986a0e251933fe370184755\";a:10:{s:4:\"hash\";s:32:\"01b445c4c986a0e251933fe370184755\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588305600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1588305600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"df9f1074d02f9a685ab02f8e37c95340\";a:10:{s:4:\"hash\";s:32:\"df9f1074d02f9a685ab02f8e37c95340\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588305600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1588305600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6c730dd26a0df5984464f1f8c58a8a9a\";a:10:{s:4:\"hash\";s:32:\"6c730dd26a0df5984464f1f8c58a8a9a\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588305600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1588305600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"32565871618c7d051179203d87c75522\";a:10:{s:4:\"hash\";s:32:\"32565871618c7d051179203d87c75522\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588651200/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1588651200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6786ff771ab6fafc30994f09417e471f\";a:10:{s:4:\"hash\";s:32:\"6786ff771ab6fafc30994f09417e471f\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588651200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1588651200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6da1d651d48ac95b299df82ecb8e7210\";a:10:{s:4:\"hash\";s:32:\"6da1d651d48ac95b299df82ecb8e7210\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588651200/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1588651200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"be0593ddbdda885bac8d9a6c3f16840a\";a:10:{s:4:\"hash\";s:32:\"be0593ddbdda885bac8d9a6c3f16840a\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588651200/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1588651200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4853bb2f2debdf3d7d61540d2d93f85b\";a:10:{s:4:\"hash\";s:32:\"4853bb2f2debdf3d7d61540d2d93f85b\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588651200/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1588651200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4386ff4851ba6e3e273adaa62eb0ebae\";a:10:{s:4:\"hash\";s:32:\"4386ff4851ba6e3e273adaa62eb0ebae\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588737600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1588737600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6f13dc04786995ce4baab729687fd4e5\";a:10:{s:4:\"hash\";s:32:\"6f13dc04786995ce4baab729687fd4e5\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588737600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1588737600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fc425ba3610aae7c2c2d9f6034a72499\";a:10:{s:4:\"hash\";s:32:\"fc425ba3610aae7c2c2d9f6034a72499\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588737600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1588737600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"60efd88871d52f8105dea22545c012b1\";a:10:{s:4:\"hash\";s:32:\"60efd88871d52f8105dea22545c012b1\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588737600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1588737600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6dd1d3e38ee85c188c081dee80786632\";a:10:{s:4:\"hash\";s:32:\"6dd1d3e38ee85c188c081dee80786632\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1588824000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1588824000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0eeffe014e1c11157f3219bfbb4992d2\";a:10:{s:4:\"hash\";s:32:\"0eeffe014e1c11157f3219bfbb4992d2\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589428800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1589428800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4265ccd19edf4145270379afe0f99ac3\";a:10:{s:4:\"hash\";s:32:\"4265ccd19edf4145270379afe0f99ac3\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589601600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1589601600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"09b83ba86347abcd045e99e5a2202f91\";a:10:{s:4:\"hash\";s:32:\"09b83ba86347abcd045e99e5a2202f91\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589601600/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1589601600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3aa0fbc9aba7e64f62e5508ef735c0ea\";a:10:{s:4:\"hash\";s:32:\"3aa0fbc9aba7e64f62e5508ef735c0ea\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589601600/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1589601600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"576c966e97fdbebe27f104a9deea0994\";a:10:{s:4:\"hash\";s:32:\"576c966e97fdbebe27f104a9deea0994\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589601600/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1589601600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"828ef25db2ff9cf1e45cb7524765351e\";a:10:{s:4:\"hash\";s:32:\"828ef25db2ff9cf1e45cb7524765351e\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589688000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1589688000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dedf4312e46de84dadc4dd0a3e4f3059\";a:10:{s:4:\"hash\";s:32:\"dedf4312e46de84dadc4dd0a3e4f3059\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589688000/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1589688000/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b171de23e81c98288075be87f891fcc5\";a:10:{s:4:\"hash\";s:32:\"b171de23e81c98288075be87f891fcc5\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589688000/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1589688000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f41f9b1c0c248a580867b21e62b1e491\";a:10:{s:4:\"hash\";s:32:\"f41f9b1c0c248a580867b21e62b1e491\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589688000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1589688000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a819c7474865e4fed2acb9d5e4fc5826\";a:10:{s:4:\"hash\";s:32:\"a819c7474865e4fed2acb9d5e4fc5826\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589688000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1589688000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"de81d816c7c864c2e297f86ccded7332\";a:10:{s:4:\"hash\";s:32:\"de81d816c7c864c2e297f86ccded7332\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589688000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1589688000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"63c6739a9e219fc9ac6e77501a51dd5c\";a:10:{s:4:\"hash\";s:32:\"63c6739a9e219fc9ac6e77501a51dd5c\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589688000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1589688000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fa043e4f6e9a25008b6f542f9d46b589\";a:10:{s:4:\"hash\";s:32:\"fa043e4f6e9a25008b6f542f9d46b589\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589688000/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1589688000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0a3801e633a5aa7fca34c814bc7d896f\";a:10:{s:4:\"hash\";s:32:\"0a3801e633a5aa7fca34c814bc7d896f\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589688000/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1589688000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"45785f98181a365fda1074843fc5f8f8\";a:10:{s:4:\"hash\";s:32:\"45785f98181a365fda1074843fc5f8f8\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589688000/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1589688000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aafaf029cec71940a4cfd9d21241a329\";a:10:{s:4:\"hash\";s:32:\"aafaf029cec71940a4cfd9d21241a329\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589860800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1589860800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"69d4cbbd252efe31e9f2d6140db0a0bc\";a:10:{s:4:\"hash\";s:32:\"69d4cbbd252efe31e9f2d6140db0a0bc\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589860800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1589860800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c26aefadcef42541ce737d96ccf79852\";a:10:{s:4:\"hash\";s:32:\"c26aefadcef42541ce737d96ccf79852\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589860800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1589860800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6fd4c383e3b50642361af5a648763f38\";a:10:{s:4:\"hash\";s:32:\"6fd4c383e3b50642361af5a648763f38\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589947200/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1589947200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"244850b6957d86e9192c76a50b472532\";a:10:{s:4:\"hash\";s:32:\"244850b6957d86e9192c76a50b472532\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589947200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1589947200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"71e74995b9a64181e3f752d615d3b3ae\";a:10:{s:4:\"hash\";s:32:\"71e74995b9a64181e3f752d615d3b3ae\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589947200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1589947200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6bfaa5f7b203761f81dde4b1eabd934b\";a:10:{s:4:\"hash\";s:32:\"6bfaa5f7b203761f81dde4b1eabd934b\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589947200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1589947200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4ad59ef495bf3c2f76f8455fd8fc97f6\";a:10:{s:4:\"hash\";s:32:\"4ad59ef495bf3c2f76f8455fd8fc97f6\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589947200/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1589947200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5acfbbd21e506275b42e91216b3c5c48\";a:10:{s:4:\"hash\";s:32:\"5acfbbd21e506275b42e91216b3c5c48\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589947200/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1589947200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eab9aebf99e2ba44d936ddcf8b92a676\";a:10:{s:4:\"hash\";s:32:\"eab9aebf99e2ba44d936ddcf8b92a676\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1589947200/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1589947200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d3538248dad47e732da05f58b2ec1573\";a:10:{s:4:\"hash\";s:32:\"d3538248dad47e732da05f58b2ec1573\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590033600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1590033600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f6e754ad6e2b8ade588836a888b01243\";a:10:{s:4:\"hash\";s:32:\"f6e754ad6e2b8ade588836a888b01243\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590033600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1590033600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e04b5d304950b4970b153fdefe81f93a\";a:10:{s:4:\"hash\";s:32:\"e04b5d304950b4970b153fdefe81f93a\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590033600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1590033600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4e69664025464f8c015061a51be234a6\";a:10:{s:4:\"hash\";s:32:\"4e69664025464f8c015061a51be234a6\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590033600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1590033600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"61a694e35c5a9a2713c9534e9a62fbe0\";a:10:{s:4:\"hash\";s:32:\"61a694e35c5a9a2713c9534e9a62fbe0\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590033600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1590033600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fbf77770e931a046f425a6e012033f64\";a:10:{s:4:\"hash\";s:32:\"fbf77770e931a046f425a6e012033f64\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590033600/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1590033600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9b4e804d8c8ca088fe874325a53a1677\";a:10:{s:4:\"hash\";s:32:\"9b4e804d8c8ca088fe874325a53a1677\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590033600/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1590033600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"419aa84c1f199bc5d52ceba972d1516a\";a:10:{s:4:\"hash\";s:32:\"419aa84c1f199bc5d52ceba972d1516a\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590033600/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1590033600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7841997a5900b20c01697b4dcfac021e\";a:10:{s:4:\"hash\";s:32:\"7841997a5900b20c01697b4dcfac021e\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590379200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1590379200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"db7e1537412c2b1a87629036277db067\";a:10:{s:4:\"hash\";s:32:\"db7e1537412c2b1a87629036277db067\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590552000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1590552000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"08b00e6817655a2534252c6697fd9285\";a:10:{s:4:\"hash\";s:32:\"08b00e6817655a2534252c6697fd9285\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590638400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1590638400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b5d8ea5454446b9b2d1cbd84b5ae141a\";a:10:{s:4:\"hash\";s:32:\"b5d8ea5454446b9b2d1cbd84b5ae141a\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590638400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1590638400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"24eac06aded3ae634155ad9ce55c60c3\";a:10:{s:4:\"hash\";s:32:\"24eac06aded3ae634155ad9ce55c60c3\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590638400/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1590638400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"68c9bf37de4abbc3f278a8c3c1622593\";a:10:{s:4:\"hash\";s:32:\"68c9bf37de4abbc3f278a8c3c1622593\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590638400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1590638400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a9d16287097de14e3d2679433fc6958c\";a:10:{s:4:\"hash\";s:32:\"a9d16287097de14e3d2679433fc6958c\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590984000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1590984000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5e1ffb1cdb4184b750cac2f38369e56b\";a:10:{s:4:\"hash\";s:32:\"5e1ffb1cdb4184b750cac2f38369e56b\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590984000/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1590984000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1fa7e9a22d62757c76e259f4cadabc5c\";a:10:{s:4:\"hash\";s:32:\"1fa7e9a22d62757c76e259f4cadabc5c\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590984000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1590984000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c20354441dd38bb52fda54561204f4b3\";a:10:{s:4:\"hash\";s:32:\"c20354441dd38bb52fda54561204f4b3\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590984000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1590984000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fa5364254f1a566ad5f3aa3a687390ea\";a:10:{s:4:\"hash\";s:32:\"fa5364254f1a566ad5f3aa3a687390ea\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590984000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1590984000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4c9e9460729dfba35bd3ad56b3a9cb75\";a:10:{s:4:\"hash\";s:32:\"4c9e9460729dfba35bd3ad56b3a9cb75\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590984000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1590984000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"800983c7d715ac9fe40521fb391cdc88\";a:10:{s:4:\"hash\";s:32:\"800983c7d715ac9fe40521fb391cdc88\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590984000/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1590984000/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ebd5ec076c96e34f65b9fd923e28b37a\";a:10:{s:4:\"hash\";s:32:\"ebd5ec076c96e34f65b9fd923e28b37a\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590984000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1590984000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a170e0f65597cdba0a68e1aa1f7b4513\";a:10:{s:4:\"hash\";s:32:\"a170e0f65597cdba0a68e1aa1f7b4513\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590984000/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1590984000/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8cca1c49dfab258f6291cbb13b8c0fa8\";a:10:{s:4:\"hash\";s:32:\"8cca1c49dfab258f6291cbb13b8c0fa8\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590984000/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1590984000/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dd0cad19f6d27300a4dd362f127db147\";a:10:{s:4:\"hash\";s:32:\"dd0cad19f6d27300a4dd362f127db147\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590984000/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1590984000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"60d3831bd6161c1dfc0c8fc1bfbcdba4\";a:10:{s:4:\"hash\";s:32:\"60d3831bd6161c1dfc0c8fc1bfbcdba4\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590984000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1590984000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"128e7430fa4c99e71666ba0a61a323cc\";a:10:{s:4:\"hash\";s:32:\"128e7430fa4c99e71666ba0a61a323cc\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590984000/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1590984000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6f94251b0d5a912fe5995fa34ee3ff4b\";a:10:{s:4:\"hash\";s:32:\"6f94251b0d5a912fe5995fa34ee3ff4b\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590984000/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1590984000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"56d4962dcbaea6f22356bf13ab70b8f6\";a:10:{s:4:\"hash\";s:32:\"56d4962dcbaea6f22356bf13ab70b8f6\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1590984000/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1590984000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7c5093d177b3db0e293b334ecb6ff981\";a:10:{s:4:\"hash\";s:32:\"7c5093d177b3db0e293b334ecb6ff981\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1591070400/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1591070400/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5dc13154e13b3403373d8ad81506237a\";a:10:{s:4:\"hash\";s:32:\"5dc13154e13b3403373d8ad81506237a\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1591070400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1591070400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1f7ac1f341fe4e2e70b9d698e6d2c2b5\";a:10:{s:4:\"hash\";s:32:\"1f7ac1f341fe4e2e70b9d698e6d2c2b5\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1591070400/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1591070400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"54c65336d35dd68e794a8c9da23c5487\";a:10:{s:4:\"hash\";s:32:\"54c65336d35dd68e794a8c9da23c5487\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1591156800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1591156800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e4098698dcd1261d79f58590fcbf87e5\";a:10:{s:4:\"hash\";s:32:\"e4098698dcd1261d79f58590fcbf87e5\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1591156800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1591156800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"066bfc02ac2ef3bd3bf6ec44446e833b\";a:10:{s:4:\"hash\";s:32:\"066bfc02ac2ef3bd3bf6ec44446e833b\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1591243200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1591243200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"92ebb74de422020c29785e29dea07312\";a:10:{s:4:\"hash\";s:32:\"92ebb74de422020c29785e29dea07312\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1591329600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1591329600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9502ee6d7e0242235377b967c7f2a780\";a:10:{s:4:\"hash\";s:32:\"9502ee6d7e0242235377b967c7f2a780\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1591588800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1591588800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bf587261ce2ebe9584984dace3aaad96\";a:10:{s:4:\"hash\";s:32:\"bf587261ce2ebe9584984dace3aaad96\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1591675200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1591675200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1ea352ad052c52a544eb7fa14f6b261f\";a:10:{s:4:\"hash\";s:32:\"1ea352ad052c52a544eb7fa14f6b261f\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1591675200/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1591675200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"49ba4609d4fc1b3eb50a333918c4877c\";a:10:{s:4:\"hash\";s:32:\"49ba4609d4fc1b3eb50a333918c4877c\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1591675200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1591675200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d858f85c114c41a20cc282c840a41246\";a:10:{s:4:\"hash\";s:32:\"d858f85c114c41a20cc282c840a41246\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1591761600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1591761600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d873c51410e9dba2e4b597d1eb2800ba\";a:10:{s:4:\"hash\";s:32:\"d873c51410e9dba2e4b597d1eb2800ba\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1591761600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1591761600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"197d48f87316b353069dfd2c65802fd1\";a:10:{s:4:\"hash\";s:32:\"197d48f87316b353069dfd2c65802fd1\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1592020800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1592020800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"310b2d0430149606dac411a7bc589e4f\";a:10:{s:4:\"hash\";s:32:\"310b2d0430149606dac411a7bc589e4f\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1592107200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1592107200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"07278c9814217acb016f3fd8c08725d3\";a:10:{s:4:\"hash\";s:32:\"07278c9814217acb016f3fd8c08725d3\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1592107200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1592107200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dbe427f8fbf899f10425f6f34c0a3522\";a:10:{s:4:\"hash\";s:32:\"dbe427f8fbf899f10425f6f34c0a3522\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1592280000/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1592280000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ec9928ac03f369f066a5d51b5a33e116\";a:10:{s:4:\"hash\";s:32:\"ec9928ac03f369f066a5d51b5a33e116\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1592280000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1592280000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7b7acae0a5d90a1b3cde321205dc294e\";a:10:{s:4:\"hash\";s:32:\"7b7acae0a5d90a1b3cde321205dc294e\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1592366400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1592366400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d5d9ef34758287a0fc957f9f5485dfb7\";a:10:{s:4:\"hash\";s:32:\"d5d9ef34758287a0fc957f9f5485dfb7\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593057600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1593057600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9a4c57491906290a95699c970433b621\";a:10:{s:4:\"hash\";s:32:\"9a4c57491906290a95699c970433b621\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593144000/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1593144000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3482f470ff87f31f6898377a6e677a9d\";a:10:{s:4:\"hash\";s:32:\"3482f470ff87f31f6898377a6e677a9d\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593144000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1593144000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e675d89dab8f283a54ccfba1714860e1\";a:10:{s:4:\"hash\";s:32:\"e675d89dab8f283a54ccfba1714860e1\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593576000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1593576000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c344fa777de53551d9f2f04e5a499323\";a:10:{s:4:\"hash\";s:32:\"c344fa777de53551d9f2f04e5a499323\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593576000/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1593576000/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fe5588e745849118e816dc680f0573e9\";a:10:{s:4:\"hash\";s:32:\"fe5588e745849118e816dc680f0573e9\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593576000/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1593576000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"216e696904b72300673b15d9a439454b\";a:10:{s:4:\"hash\";s:32:\"216e696904b72300673b15d9a439454b\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593576000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1593576000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"860997dbc1688290636305c9a19ac626\";a:10:{s:4:\"hash\";s:32:\"860997dbc1688290636305c9a19ac626\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593576000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1593576000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e93f28f22f85e8fd6ee399a231e9bf91\";a:10:{s:4:\"hash\";s:32:\"e93f28f22f85e8fd6ee399a231e9bf91\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593576000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1593576000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"30b2a497c53eaddc6b7b2388ac136ebc\";a:10:{s:4:\"hash\";s:32:\"30b2a497c53eaddc6b7b2388ac136ebc\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593576000/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1593576000/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"515e90497ce9f7a3f4d8e387bd6a18c6\";a:10:{s:4:\"hash\";s:32:\"515e90497ce9f7a3f4d8e387bd6a18c6\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593576000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1593576000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"10139608c09ce044a66d7507de0e4d76\";a:10:{s:4:\"hash\";s:32:\"10139608c09ce044a66d7507de0e4d76\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593576000/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1593576000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b6a220f9033762f57e0eae76819cfa4f\";a:10:{s:4:\"hash\";s:32:\"b6a220f9033762f57e0eae76819cfa4f\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593576000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1593576000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6b03f2341e7974be27381b350509fb4b\";a:10:{s:4:\"hash\";s:32:\"6b03f2341e7974be27381b350509fb4b\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593576000/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1593576000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6d464588319121b80e1ffe0a715426b9\";a:10:{s:4:\"hash\";s:32:\"6d464588319121b80e1ffe0a715426b9\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593576000/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1593576000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5d2163aab16306cfc617ad3b42f91219\";a:10:{s:4:\"hash\";s:32:\"5d2163aab16306cfc617ad3b42f91219\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593576000/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1593576000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"82e9ae0ce47335015f5bbcc1af7f741e\";a:10:{s:4:\"hash\";s:32:\"82e9ae0ce47335015f5bbcc1af7f741e\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593662400/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1593662400/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6866df93e998262fd2ff40dd4a158e3a\";a:10:{s:4:\"hash\";s:32:\"6866df93e998262fd2ff40dd4a158e3a\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593662400/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1593662400/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c300e6603a6e52136bd385b289088fbb\";a:10:{s:4:\"hash\";s:32:\"c300e6603a6e52136bd385b289088fbb\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593662400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1593662400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ae3fe894fc97aca043b4c3505e8a1273\";a:10:{s:4:\"hash\";s:32:\"ae3fe894fc97aca043b4c3505e8a1273\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593662400/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1593662400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c0db1ad1a865a5fb07f131a508585135\";a:10:{s:4:\"hash\";s:32:\"c0db1ad1a865a5fb07f131a508585135\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593662400/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1593662400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1ad3a87698ae0043e67b64394f9cc850\";a:10:{s:4:\"hash\";s:32:\"1ad3a87698ae0043e67b64394f9cc850\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593662400/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1593662400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3a172659dac625a9b164e938b9026e64\";a:10:{s:4:\"hash\";s:32:\"3a172659dac625a9b164e938b9026e64\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593662400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1593662400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cbb220a11580ad1c39f8644c82d386d7\";a:10:{s:4:\"hash\";s:32:\"cbb220a11580ad1c39f8644c82d386d7\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593748800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1593748800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b2c8241ca2ed282af7ecd5801b14fbf5\";a:10:{s:4:\"hash\";s:32:\"b2c8241ca2ed282af7ecd5801b14fbf5\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593748800/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1593748800/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"98459d2d4c5f04ce1c3e7dc5eb162ac4\";a:10:{s:4:\"hash\";s:32:\"98459d2d4c5f04ce1c3e7dc5eb162ac4\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593748800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1593748800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"44fea6fb37c67c018f15f7b2cb1fddf7\";a:10:{s:4:\"hash\";s:32:\"44fea6fb37c67c018f15f7b2cb1fddf7\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593748800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1593748800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3cc38d708b5cd40cc82a27f7f479788e\";a:10:{s:4:\"hash\";s:32:\"3cc38d708b5cd40cc82a27f7f479788e\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593748800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1593748800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cf88e944b5d3f870d07764a9c140c428\";a:10:{s:4:\"hash\";s:32:\"cf88e944b5d3f870d07764a9c140c428\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593748800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1593748800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"44708a5f6b6ae6f88ca7a6019c3247a4\";a:10:{s:4:\"hash\";s:32:\"44708a5f6b6ae6f88ca7a6019c3247a4\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593835200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1593835200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ba090fa77f9685e20eca490c72f05c6e\";a:10:{s:4:\"hash\";s:32:\"ba090fa77f9685e20eca490c72f05c6e\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593835200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1593835200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3e516db53b537d568318164347358740\";a:10:{s:4:\"hash\";s:32:\"3e516db53b537d568318164347358740\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593835200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1593835200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e1236bc32beaa36153d00d93a6fa7057\";a:10:{s:4:\"hash\";s:32:\"e1236bc32beaa36153d00d93a6fa7057\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593921600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1593921600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0ac537738467afb6ae88931aa695ae36\";a:10:{s:4:\"hash\";s:32:\"0ac537738467afb6ae88931aa695ae36\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593921600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1593921600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9ac08587ffeed1d81e6ecf9d075d5cbe\";a:10:{s:4:\"hash\";s:32:\"9ac08587ffeed1d81e6ecf9d075d5cbe\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593921600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1593921600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"35cfd4c53e2ab09b87f99eb4dcbf32b4\";a:10:{s:4:\"hash\";s:32:\"35cfd4c53e2ab09b87f99eb4dcbf32b4\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593921600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1593921600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c58bad4f7d22b6830548dd94e0cae92a\";a:10:{s:4:\"hash\";s:32:\"c58bad4f7d22b6830548dd94e0cae92a\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593921600/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1593921600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"335be242fa79f5d7acef0916b6a281dc\";a:10:{s:4:\"hash\";s:32:\"335be242fa79f5d7acef0916b6a281dc\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593921600/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1593921600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4bf35c65207d3100ce1d182b4e8389f1\";a:10:{s:4:\"hash\";s:32:\"4bf35c65207d3100ce1d182b4e8389f1\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1593921600/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1593921600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dc13c3c8dbc33bc513e28ce5aa1ed54d\";a:10:{s:4:\"hash\";s:32:\"dc13c3c8dbc33bc513e28ce5aa1ed54d\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594353600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1594353600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9d0b5b7ae2504769a21bd8845b214f99\";a:10:{s:4:\"hash\";s:32:\"9d0b5b7ae2504769a21bd8845b214f99\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594353600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1594353600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a1f78d945153c03e8599c40bc911ae96\";a:10:{s:4:\"hash\";s:32:\"a1f78d945153c03e8599c40bc911ae96\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594353600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1594353600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e14f3a5298fac510249835f6f9210fb7\";a:10:{s:4:\"hash\";s:32:\"e14f3a5298fac510249835f6f9210fb7\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594526400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1594526400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a60f481ff51ee544997bb318db9abb1c\";a:10:{s:4:\"hash\";s:32:\"a60f481ff51ee544997bb318db9abb1c\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594612800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1594612800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"99e9f491c9ee5731b892f921a9455749\";a:10:{s:4:\"hash\";s:32:\"99e9f491c9ee5731b892f921a9455749\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594785600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1594785600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dcadba0b780d12db2ff8007bce33ecd7\";a:10:{s:4:\"hash\";s:32:\"dcadba0b780d12db2ff8007bce33ecd7\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594785600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1594785600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e035ed1fd5aa132c7d4c5c6635e11f30\";a:10:{s:4:\"hash\";s:32:\"e035ed1fd5aa132c7d4c5c6635e11f30\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594785600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1594785600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"88fe84ff3126bc58b16737f00cb9087e\";a:10:{s:4:\"hash\";s:32:\"88fe84ff3126bc58b16737f00cb9087e\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594785600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1594785600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e3f90afe3b55eb89c19602651f1d155f\";a:10:{s:4:\"hash\";s:32:\"e3f90afe3b55eb89c19602651f1d155f\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594785600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1594785600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a6634f43247d4c58cd62625b1f9091dc\";a:10:{s:4:\"hash\";s:32:\"a6634f43247d4c58cd62625b1f9091dc\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594785600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1594785600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8c1de2dc5c5150bfe8dc51e5674edaa8\";a:10:{s:4:\"hash\";s:32:\"8c1de2dc5c5150bfe8dc51e5674edaa8\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594785600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1594785600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c268e9231a312af60d9851a906859a40\";a:10:{s:4:\"hash\";s:32:\"c268e9231a312af60d9851a906859a40\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594785600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1594785600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"58e16a21677e1421570f3afa7a5273b0\";a:10:{s:4:\"hash\";s:32:\"58e16a21677e1421570f3afa7a5273b0\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594785600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1594785600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9f89ec1ea1def98e0a715a150090624a\";a:10:{s:4:\"hash\";s:32:\"9f89ec1ea1def98e0a715a150090624a\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594785600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1594785600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8c567756d15a3049743c909c4d288b36\";a:10:{s:4:\"hash\";s:32:\"8c567756d15a3049743c909c4d288b36\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594785600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1594785600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"70350db6123aaadc4146586cb7491a95\";a:10:{s:4:\"hash\";s:32:\"70350db6123aaadc4146586cb7491a95\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594785600/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1594785600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a43258349087a70cfa361ef932a620a1\";a:10:{s:4:\"hash\";s:32:\"a43258349087a70cfa361ef932a620a1\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594785600/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1594785600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c6e7c8a861068e5429f571b0ee1aeba\";a:10:{s:4:\"hash\";s:32:\"3c6e7c8a861068e5429f571b0ee1aeba\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594785600/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1594785600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"218e96e9e06a1c053b62cd3cba8a6453\";a:10:{s:4:\"hash\";s:32:\"218e96e9e06a1c053b62cd3cba8a6453\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594958400/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1594958400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"869b8a6804f15d8c38c965ca388f4a5b\";a:10:{s:4:\"hash\";s:32:\"869b8a6804f15d8c38c965ca388f4a5b\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594958400/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1594958400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"94a3c319e966be979fdd6a5e29a80fd4\";a:10:{s:4:\"hash\";s:32:\"94a3c319e966be979fdd6a5e29a80fd4\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594958400/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1594958400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a1e94b729a58ef85890aaaced63f5b08\";a:10:{s:4:\"hash\";s:32:\"a1e94b729a58ef85890aaaced63f5b08\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594958400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1594958400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4adc8be6193bf1f86da7e609450389e5\";a:10:{s:4:\"hash\";s:32:\"4adc8be6193bf1f86da7e609450389e5\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594958400/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1594958400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"50f7e7b4d3099fd1e98a05cd08ff5787\";a:10:{s:4:\"hash\";s:32:\"50f7e7b4d3099fd1e98a05cd08ff5787\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594958400/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1594958400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"54927e5532077f7ad94ec0b3f59a1e4a\";a:10:{s:4:\"hash\";s:32:\"54927e5532077f7ad94ec0b3f59a1e4a\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1594958400/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1594958400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1bf3cc582ca83d42fdc8e45b3fa2b153\";a:10:{s:4:\"hash\";s:32:\"1bf3cc582ca83d42fdc8e45b3fa2b153\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1595131200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1595131200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8f861ebc54fa7cf422dcc4c9dc7afb6d\";a:10:{s:4:\"hash\";s:32:\"8f861ebc54fa7cf422dcc4c9dc7afb6d\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1595217600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1595217600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dad3e341ce808d0930cb62dda2dd309d\";a:10:{s:4:\"hash\";s:32:\"dad3e341ce808d0930cb62dda2dd309d\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1595390400/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1595390400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ba6202dde8026c9bcfdb3bae21ede2eb\";a:10:{s:4:\"hash\";s:32:\"ba6202dde8026c9bcfdb3bae21ede2eb\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1595736000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1595736000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b93c361dd3c9e29f23246948ed557e5d\";a:10:{s:4:\"hash\";s:32:\"b93c361dd3c9e29f23246948ed557e5d\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1595736000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1595736000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2ed334ba43126a21d1efb4cdeca2a302\";a:10:{s:4:\"hash\";s:32:\"2ed334ba43126a21d1efb4cdeca2a302\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1595822400/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1595822400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fea6a6804dcffe5c8c2aaa76cd4d2149\";a:10:{s:4:\"hash\";s:32:\"fea6a6804dcffe5c8c2aaa76cd4d2149\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1595822400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1595822400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8c0258117c2adb672ff80897e97f7e42\";a:10:{s:4:\"hash\";s:32:\"8c0258117c2adb672ff80897e97f7e42\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1595908800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1595908800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"33473b40069e5a73c481daeba63e8255\";a:10:{s:4:\"hash\";s:32:\"33473b40069e5a73c481daeba63e8255\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1595908800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1595908800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dc06bb8393bfbf1c1c648e7b17197476\";a:10:{s:4:\"hash\";s:32:\"dc06bb8393bfbf1c1c648e7b17197476\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1595908800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1595908800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"62de99b97897d1ce1ef16935ba593106\";a:10:{s:4:\"hash\";s:32:\"62de99b97897d1ce1ef16935ba593106\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1595908800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1595908800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dc24158e772767abb2132bc9c18af74a\";a:10:{s:4:\"hash\";s:32:\"dc24158e772767abb2132bc9c18af74a\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1595908800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1595908800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6cf3576fecaf79d92ecc023a119ee0b8\";a:10:{s:4:\"hash\";s:32:\"6cf3576fecaf79d92ecc023a119ee0b8\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1595995200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1595995200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d7af31f20c9763596d6c4b7d064d4ecd\";a:10:{s:4:\"hash\";s:32:\"d7af31f20c9763596d6c4b7d064d4ecd\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1595995200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1595995200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"029a9a01ff2991d81e04b1a80bccde41\";a:10:{s:4:\"hash\";s:32:\"029a9a01ff2991d81e04b1a80bccde41\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1596254400/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1596254400/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"47586ae41ab859fb934fcb3bb6acfc7b\";a:10:{s:4:\"hash\";s:32:\"47586ae41ab859fb934fcb3bb6acfc7b\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1596254400/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1596254400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9565b47e462888f100263976119d98d1\";a:10:{s:4:\"hash\";s:32:\"9565b47e462888f100263976119d98d1\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1596254400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1596254400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"deae1a5815d070f8bb6a617a117a8ede\";a:10:{s:4:\"hash\";s:32:\"deae1a5815d070f8bb6a617a117a8ede\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1596254400/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1596254400/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bfe7dd368ac839acae8b7d2e10cabb63\";a:10:{s:4:\"hash\";s:32:\"bfe7dd368ac839acae8b7d2e10cabb63\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1596254400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1596254400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"60443083b592eb278ece99d5c5288878\";a:10:{s:4:\"hash\";s:32:\"60443083b592eb278ece99d5c5288878\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1596254400/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1596254400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c02e3547d6aa1078ff9eaf0a07025862\";a:10:{s:4:\"hash\";s:32:\"c02e3547d6aa1078ff9eaf0a07025862\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1596254400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1596254400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"814cb9b9e5c2e29f24751ed9dc8ed859\";a:10:{s:4:\"hash\";s:32:\"814cb9b9e5c2e29f24751ed9dc8ed859\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1596254400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1596254400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c452ae4e6a97a3706efeeca2989f4ce1\";a:10:{s:4:\"hash\";s:32:\"c452ae4e6a97a3706efeeca2989f4ce1\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1596254400/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1596254400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6b76a9faee5e3db410a7c4312bdb492b\";a:10:{s:4:\"hash\";s:32:\"6b76a9faee5e3db410a7c4312bdb492b\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1596254400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1596254400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b48a581a7f6cc1ff28ee2d05cfd3eb2a\";a:10:{s:4:\"hash\";s:32:\"b48a581a7f6cc1ff28ee2d05cfd3eb2a\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1596340800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1596340800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dda969c7b6a90db288a5751eb475811e\";a:10:{s:4:\"hash\";s:32:\"dda969c7b6a90db288a5751eb475811e\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1596600000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1596600000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"817489428beb67adfe6e733f52eed32a\";a:10:{s:4:\"hash\";s:32:\"817489428beb67adfe6e733f52eed32a\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1596686400/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1596686400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"13a79ce241fbd5e343ece711d34baf07\";a:10:{s:4:\"hash\";s:32:\"13a79ce241fbd5e343ece711d34baf07\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1596686400/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1596686400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2621fbc06838c43aa85c1d97f6968b81\";a:10:{s:4:\"hash\";s:32:\"2621fbc06838c43aa85c1d97f6968b81\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1596686400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1596686400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e8f07b6a47ea4830a71fca0ca5b4beb5\";a:10:{s:4:\"hash\";s:32:\"e8f07b6a47ea4830a71fca0ca5b4beb5\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1596859200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1596859200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"47cea39afa767aac1019bc91d76a75d5\";a:10:{s:4:\"hash\";s:32:\"47cea39afa767aac1019bc91d76a75d5\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1596945600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1596945600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"32134e3d87cd0c8e54453de56a49fa60\";a:10:{s:4:\"hash\";s:32:\"32134e3d87cd0c8e54453de56a49fa60\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1597032000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1597032000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6528f92b4ea77e1a751e92e94dcb13f3\";a:10:{s:4:\"hash\";s:32:\"6528f92b4ea77e1a751e92e94dcb13f3\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1597032000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1597032000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6c2659b6f5656792fa5d91c18382d22a\";a:10:{s:4:\"hash\";s:32:\"6c2659b6f5656792fa5d91c18382d22a\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1597032000/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1597032000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e9f96404358797339db5015342ab7ae3\";a:10:{s:4:\"hash\";s:32:\"e9f96404358797339db5015342ab7ae3\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1597032000/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1597032000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1dd385d753540e15740a1aefe4df21f2\";a:10:{s:4:\"hash\";s:32:\"1dd385d753540e15740a1aefe4df21f2\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1597032000/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1597032000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3fc5a0530977f2f7a05f21de348a8e41\";a:10:{s:4:\"hash\";s:32:\"3fc5a0530977f2f7a05f21de348a8e41\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1597377600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1597377600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8c329668bfa9c59405655e328b02c29c\";a:10:{s:4:\"hash\";s:32:\"8c329668bfa9c59405655e328b02c29c\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1597377600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1597377600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ad67aa89bcb619f934bb03da5ddf420\";a:10:{s:4:\"hash\";s:32:\"8ad67aa89bcb619f934bb03da5ddf420\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1597377600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1597377600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1e6ed88029bca3e70f56ffb05c8eb4da\";a:10:{s:4:\"hash\";s:32:\"1e6ed88029bca3e70f56ffb05c8eb4da\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1597550400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1597550400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6826023ad15e411a73cccbe9f06d1be5\";a:10:{s:4:\"hash\";s:32:\"6826023ad15e411a73cccbe9f06d1be5\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1597550400/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1597550400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7c46393d3e802fdeec03a3e48f4af9b3\";a:10:{s:4:\"hash\";s:32:\"7c46393d3e802fdeec03a3e48f4af9b3\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1597550400/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1597550400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"14b478b3922d1e256d50cc00cc49fa60\";a:10:{s:4:\"hash\";s:32:\"14b478b3922d1e256d50cc00cc49fa60\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1597550400/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1597550400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"32c4426be4651f8131f1d844dcab7295\";a:10:{s:4:\"hash\";s:32:\"32c4426be4651f8131f1d844dcab7295\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1597636800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1597636800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2bf9d0269aae6c1ac3a736c5f9c30a14\";a:10:{s:4:\"hash\";s:32:\"2bf9d0269aae6c1ac3a736c5f9c30a14\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1597636800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1597636800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ee41ebcfa365634a5f9ba418baeba692\";a:10:{s:4:\"hash\";s:32:\"ee41ebcfa365634a5f9ba418baeba692\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1598155200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1598155200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4ad862ea750861f8619034eb7ed499f0\";a:10:{s:4:\"hash\";s:32:\"4ad862ea750861f8619034eb7ed499f0\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1598155200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1598155200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e03de0c1b933e0d0b29e14463b00b909\";a:10:{s:4:\"hash\";s:32:\"e03de0c1b933e0d0b29e14463b00b909\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1598155200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1598155200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b99be0a774867116849fc1f3a067803e\";a:10:{s:4:\"hash\";s:32:\"b99be0a774867116849fc1f3a067803e\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1598241600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1598241600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9f13e6efca11229c74a1076a897ce7e7\";a:10:{s:4:\"hash\";s:32:\"9f13e6efca11229c74a1076a897ce7e7\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1598241600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1598241600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"78b095ef809cc20b3b77ba99d6ef6fc7\";a:10:{s:4:\"hash\";s:32:\"78b095ef809cc20b3b77ba99d6ef6fc7\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1598241600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1598241600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"033935b90bf9ca624eabce664155e6c9\";a:10:{s:4:\"hash\";s:32:\"033935b90bf9ca624eabce664155e6c9\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1598414400/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1598414400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8b49888b14b3ff4da21c5f94731e5487\";a:10:{s:4:\"hash\";s:32:\"8b49888b14b3ff4da21c5f94731e5487\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1598414400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1598414400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c9ccd1096b0197d188a944e68351dbef\";a:10:{s:4:\"hash\";s:32:\"c9ccd1096b0197d188a944e68351dbef\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1598414400/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1598414400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2788715a2facf230658cb3fbeedada86\";a:10:{s:4:\"hash\";s:32:\"2788715a2facf230658cb3fbeedada86\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1598414400/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1598414400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0226b5577a21ac8a70f065ac24f63da2\";a:10:{s:4:\"hash\";s:32:\"0226b5577a21ac8a70f065ac24f63da2\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1598414400/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1598414400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4f05c3e963fd8ba092baae18f08244d8\";a:10:{s:4:\"hash\";s:32:\"4f05c3e963fd8ba092baae18f08244d8\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1598500800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1598500800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d1b810f4f29e25af8a01a5f2a6f9a044\";a:10:{s:4:\"hash\";s:32:\"d1b810f4f29e25af8a01a5f2a6f9a044\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1598932800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1598932800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5a1ce9f887fc43f65ee169357c9e462e\";a:10:{s:4:\"hash\";s:32:\"5a1ce9f887fc43f65ee169357c9e462e\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1598932800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1598932800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fdcb2afaee70f4be6bb1071e4e2bf3de\";a:10:{s:4:\"hash\";s:32:\"fdcb2afaee70f4be6bb1071e4e2bf3de\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1598932800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1598932800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"def518b26690f4ed1fa7fa9914847a1e\";a:10:{s:4:\"hash\";s:32:\"def518b26690f4ed1fa7fa9914847a1e\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1601524800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1601524800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c82e8e8541477f0d2043585350a5c0eb\";a:10:{s:4:\"hash\";s:32:\"c82e8e8541477f0d2043585350a5c0eb\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1601524800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1601524800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e93438ce584bb95c90fe020a88d2c178\";a:10:{s:4:\"hash\";s:32:\"e93438ce584bb95c90fe020a88d2c178\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1601524800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1601524800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"56107f6f0fd80e75d49febb8a084a6b3\";a:10:{s:4:\"hash\";s:32:\"56107f6f0fd80e75d49febb8a084a6b3\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1601524800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1601524800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"33958806d0bb598b451b11743abf0014\";a:10:{s:4:\"hash\";s:32:\"33958806d0bb598b451b11743abf0014\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1601524800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1601524800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"60fc8de5afd6435b410a5c2ae91d41e6\";a:10:{s:4:\"hash\";s:32:\"60fc8de5afd6435b410a5c2ae91d41e6\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1601524800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1601524800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5cc68e098b11d4899b3b974136c9d495\";a:10:{s:4:\"hash\";s:32:\"5cc68e098b11d4899b3b974136c9d495\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1604116800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1604116800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e00c50960d69884390ff273555168f24\";a:10:{s:4:\"hash\";s:32:\"e00c50960d69884390ff273555168f24\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1604203200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1604203200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"85a37a7afa32f5648073c4ce2c442d84\";a:10:{s:4:\"hash\";s:32:\"85a37a7afa32f5648073c4ce2c442d84\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1604203200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1604203200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"77b0af355e71deb82309816747955d90\";a:10:{s:4:\"hash\";s:32:\"77b0af355e71deb82309816747955d90\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1604203200/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1604203200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f6f4a1117e02e015fb644bf444c89339\";a:10:{s:4:\"hash\";s:32:\"f6f4a1117e02e015fb644bf444c89339\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1604203200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1604203200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5beba9130c8e00ff09ab170fe07a79e4\";a:10:{s:4:\"hash\";s:32:\"5beba9130c8e00ff09ab170fe07a79e4\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1604203200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1604203200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1431e834a0ca61c7d523be7a8e2429c4\";a:10:{s:4:\"hash\";s:32:\"1431e834a0ca61c7d523be7a8e2429c4\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1604203200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1604203200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ba3b356d554a2bc0482865491b878b66\";a:10:{s:4:\"hash\";s:32:\"ba3b356d554a2bc0482865491b878b66\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1604203200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1604203200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d76ba5e7830d29c333be3cc8c1e6d212\";a:10:{s:4:\"hash\";s:32:\"d76ba5e7830d29c333be3cc8c1e6d212\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1604203200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1604203200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5ae10401cf7923c14c744d37569e7976\";a:10:{s:4:\"hash\";s:32:\"5ae10401cf7923c14c744d37569e7976\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1604293200/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1604293200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f3b8ac9e0c822dce9e47035344febc9c\";a:10:{s:4:\"hash\";s:32:\"f3b8ac9e0c822dce9e47035344febc9c\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1604293200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1604293200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6b8370932403ecb258d22681ad317f32\";a:10:{s:4:\"hash\";s:32:\"6b8370932403ecb258d22681ad317f32\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1604552400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1604552400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"244ff9e9379bc124e5b894d0d3339560\";a:10:{s:4:\"hash\";s:32:\"244ff9e9379bc124e5b894d0d3339560\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1605070800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1605070800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eaabe57ba752f926fbdf4f0a511137e6\";a:10:{s:4:\"hash\";s:32:\"eaabe57ba752f926fbdf4f0a511137e6\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1605070800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1605070800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c98bc22e404602d28c8252775b0955e7\";a:10:{s:4:\"hash\";s:32:\"c98bc22e404602d28c8252775b0955e7\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1605157200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1605157200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7fbd449c3ca48d7f51ad8f7da14feae4\";a:10:{s:4:\"hash\";s:32:\"7fbd449c3ca48d7f51ad8f7da14feae4\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1605157200/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1605157200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bdf9ae776fb38a0773d9927f27e5b02f\";a:10:{s:4:\"hash\";s:32:\"bdf9ae776fb38a0773d9927f27e5b02f\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1605157200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1605157200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ca899a78b22ced031e40bc52432ff73c\";a:10:{s:4:\"hash\";s:32:\"ca899a78b22ced031e40bc52432ff73c\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1605157200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1605157200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"95f2c8ea16771c0044127e3a09372d8d\";a:10:{s:4:\"hash\";s:32:\"95f2c8ea16771c0044127e3a09372d8d\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1605157200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1605157200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3e34e277109c0b4d54627df936d6f7b7\";a:10:{s:4:\"hash\";s:32:\"3e34e277109c0b4d54627df936d6f7b7\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1605157200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1605157200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f32081b40c024f6a18cc5c400e30a85a\";a:10:{s:4:\"hash\";s:32:\"f32081b40c024f6a18cc5c400e30a85a\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1605157200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1605157200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f353f3ca0b1202b80587bca2e1ff89e7\";a:10:{s:4:\"hash\";s:32:\"f353f3ca0b1202b80587bca2e1ff89e7\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1605157200/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1605157200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"372521f5b0a8add14bb70c88c69f55fa\";a:10:{s:4:\"hash\";s:32:\"372521f5b0a8add14bb70c88c69f55fa\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1605157200/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1605157200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e97a8e3924de47b39cf9ffc413859fd5\";a:10:{s:4:\"hash\";s:32:\"e97a8e3924de47b39cf9ffc413859fd5\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1605157200/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1605157200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aa4c935ebae95f5f9274955644b848c4\";a:10:{s:4:\"hash\";s:32:\"aa4c935ebae95f5f9274955644b848c4\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1605243600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1605243600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d99bd5a7299f60159cfe4cf79e08139\";a:10:{s:4:\"hash\";s:32:\"4d99bd5a7299f60159cfe4cf79e08139\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1605243600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1605243600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a49f6a643cf72e77d94d2a9042d5caaf\";a:10:{s:4:\"hash\";s:32:\"a49f6a643cf72e77d94d2a9042d5caaf\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1605762000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1605762000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dde92665a16cb25505edd0b559dd8fa9\";a:10:{s:4:\"hash\";s:32:\"dde92665a16cb25505edd0b559dd8fa9\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1605762000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1605762000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"49a1b415ab1d17f2664199c946d4cada\";a:10:{s:4:\"hash\";s:32:\"49a1b415ab1d17f2664199c946d4cada\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1605934800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1605934800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"02eeb1c437c1a756f9da72feb7ec2f77\";a:10:{s:4:\"hash\";s:32:\"02eeb1c437c1a756f9da72feb7ec2f77\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1605934800/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1605934800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4500647231c2899db032c22e8265b335\";a:10:{s:4:\"hash\";s:32:\"4500647231c2899db032c22e8265b335\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1605934800/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1605934800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"111ad8ab9f3049f4070cd8ba1b4abde4\";a:10:{s:4:\"hash\";s:32:\"111ad8ab9f3049f4070cd8ba1b4abde4\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1605934800/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1605934800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"86ca3a887655357e4322518341520981\";a:10:{s:4:\"hash\";s:32:\"86ca3a887655357e4322518341520981\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1606539600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1606539600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ab5beb2a5456516845cef10aaa1fd8a4\";a:10:{s:4:\"hash\";s:32:\"ab5beb2a5456516845cef10aaa1fd8a4\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1606626000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1606626000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1f2b59f697bddf895f99ace751c5639e\";a:10:{s:4:\"hash\";s:32:\"1f2b59f697bddf895f99ace751c5639e\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1606626000/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1606626000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff8cc7036954015624309ad3b5d75687\";a:10:{s:4:\"hash\";s:32:\"ff8cc7036954015624309ad3b5d75687\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1606626000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1606626000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a214147fd005726f516775cad7242a1c\";a:10:{s:4:\"hash\";s:32:\"a214147fd005726f516775cad7242a1c\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1606712400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1606712400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ad3c90177e5e89cc2a6d967fc996ace4\";a:10:{s:4:\"hash\";s:32:\"ad3c90177e5e89cc2a6d967fc996ace4\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1606798800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1606798800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dbaeefb80beb5ffee906f2384f24f9e9\";a:10:{s:4:\"hash\";s:32:\"dbaeefb80beb5ffee906f2384f24f9e9\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1606798800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1606798800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ddf13305fd99787256a5657e1a7d87cd\";a:10:{s:4:\"hash\";s:32:\"ddf13305fd99787256a5657e1a7d87cd\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1606798800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1606798800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"89d2cc68946df01982e080ab32be1554\";a:10:{s:4:\"hash\";s:32:\"89d2cc68946df01982e080ab32be1554\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1606798800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1606798800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"40ecba6f9b7644a0dba7df67071d8d57\";a:10:{s:4:\"hash\";s:32:\"40ecba6f9b7644a0dba7df67071d8d57\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1609477200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1609477200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ebd65d32bc74eb0e8c90de7eec39821c\";a:10:{s:4:\"hash\";s:32:\"ebd65d32bc74eb0e8c90de7eec39821c\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1609477200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1609477200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"71b91b77c6905bd14818df31688eee5a\";a:10:{s:4:\"hash\";s:32:\"71b91b77c6905bd14818df31688eee5a\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1609477200/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1609477200/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c005c803cea977b5391b973a334b5f19\";a:10:{s:4:\"hash\";s:32:\"c005c803cea977b5391b973a334b5f19\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1609477200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1609477200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d2ca2a4c8f7cf818b2598d748c8aad9d\";a:10:{s:4:\"hash\";s:32:\"d2ca2a4c8f7cf818b2598d748c8aad9d\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1609477200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1609477200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dacc0a68061ecbe9d8885a828208b59e\";a:10:{s:4:\"hash\";s:32:\"dacc0a68061ecbe9d8885a828208b59e\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1609477200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1609477200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3641004e92b607a27a38976e3a6e3606\";a:10:{s:4:\"hash\";s:32:\"3641004e92b607a27a38976e3a6e3606\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1609477200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1609477200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e0cfdde9d6781547c0e76712d123e956\";a:10:{s:4:\"hash\";s:32:\"e0cfdde9d6781547c0e76712d123e956\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1611550800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1611550800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b2035f8ee12fc5e49b54d9e5c3e2117a\";a:10:{s:4:\"hash\";s:32:\"b2035f8ee12fc5e49b54d9e5c3e2117a\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612069200/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1612069200/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cecbbd37239ada392c47017a7c33f12c\";a:10:{s:4:\"hash\";s:32:\"cecbbd37239ada392c47017a7c33f12c\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612069200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1612069200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4f2b522a056b0167e7c971fc598e41d2\";a:10:{s:4:\"hash\";s:32:\"4f2b522a056b0167e7c971fc598e41d2\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612155600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1612155600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9f3ef8e59947973d44193b7472eddc85\";a:10:{s:4:\"hash\";s:32:\"9f3ef8e59947973d44193b7472eddc85\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612155600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1612155600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1e640b976a1df15f42ec1e727e574a33\";a:10:{s:4:\"hash\";s:32:\"1e640b976a1df15f42ec1e727e574a33\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612155600/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1612155600/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"01d29d2405bbc661845f931e1c32ff62\";a:10:{s:4:\"hash\";s:32:\"01d29d2405bbc661845f931e1c32ff62\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612155600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1612155600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"68fa2c02cfef65e173c7439b64cf24d1\";a:10:{s:4:\"hash\";s:32:\"68fa2c02cfef65e173c7439b64cf24d1\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612155600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1612155600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"037f145151675c239d3f7e2d25851c6d\";a:10:{s:4:\"hash\";s:32:\"037f145151675c239d3f7e2d25851c6d\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612155600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1612155600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bba50454627dc17018e8da975069195b\";a:10:{s:4:\"hash\";s:32:\"bba50454627dc17018e8da975069195b\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612155600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1612155600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b814635e469d8794778f7ba216bf5165\";a:10:{s:4:\"hash\";s:32:\"b814635e469d8794778f7ba216bf5165\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612155600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1612155600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d90be7011f466eb0ab9544dc225392c3\";a:10:{s:4:\"hash\";s:32:\"d90be7011f466eb0ab9544dc225392c3\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612155600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1612155600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"878101995948b498970d31367a8d73a8\";a:10:{s:4:\"hash\";s:32:\"878101995948b498970d31367a8d73a8\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612155600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1612155600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"153a417645611d9b46ed237cebeba495\";a:10:{s:4:\"hash\";s:32:\"153a417645611d9b46ed237cebeba495\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612155600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1612155600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"79626bd3862e37098e2fb473f37845d9\";a:10:{s:4:\"hash\";s:32:\"79626bd3862e37098e2fb473f37845d9\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612155600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1612155600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9f8f44abc86b839c8e4d9b11a610efd5\";a:10:{s:4:\"hash\";s:32:\"9f8f44abc86b839c8e4d9b11a610efd5\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612155600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1612155600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5ce1e1bacf6875755fdedf98927a0aab\";a:10:{s:4:\"hash\";s:32:\"5ce1e1bacf6875755fdedf98927a0aab\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612155600/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1612155600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0258788946e04872f812698bd2a9c392\";a:10:{s:4:\"hash\";s:32:\"0258788946e04872f812698bd2a9c392\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612155600/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1612155600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ed829247672f23302bff604854513139\";a:10:{s:4:\"hash\";s:32:\"ed829247672f23302bff604854513139\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612155600/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1612155600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"678ccb48d53c2a5083fa4061676ee5bb\";a:10:{s:4:\"hash\";s:32:\"678ccb48d53c2a5083fa4061676ee5bb\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612242000/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1612242000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"907d8273ef1982b7612d573a26ea9cfb\";a:10:{s:4:\"hash\";s:32:\"907d8273ef1982b7612d573a26ea9cfb\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612242000/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1612242000/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"561cfcf6443e3d13ae713bd907aaa8e3\";a:10:{s:4:\"hash\";s:32:\"561cfcf6443e3d13ae713bd907aaa8e3\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612242000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1612242000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"55b1b380aff6981f6199f5d64f13e923\";a:10:{s:4:\"hash\";s:32:\"55b1b380aff6981f6199f5d64f13e923\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612242000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1612242000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0299f572d549dedd6da421b72b051fe4\";a:10:{s:4:\"hash\";s:32:\"0299f572d549dedd6da421b72b051fe4\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612674000/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1612674000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a836c89c6e933d2f317fea6c5b421d20\";a:10:{s:4:\"hash\";s:32:\"a836c89c6e933d2f317fea6c5b421d20\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612674000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1612674000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff617fcca3a56796bca3e0e81b336496\";a:10:{s:4:\"hash\";s:32:\"ff617fcca3a56796bca3e0e81b336496\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612674000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1612674000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fcb95e09bc1fc0eda3f3c61cf42071fd\";a:10:{s:4:\"hash\";s:32:\"fcb95e09bc1fc0eda3f3c61cf42071fd\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612674000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1612674000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6754cdfa223bcb18623f8a277b456a14\";a:10:{s:4:\"hash\";s:32:\"6754cdfa223bcb18623f8a277b456a14\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612674000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1612674000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9d39354be905f18db5a6805179456f0c\";a:10:{s:4:\"hash\";s:32:\"9d39354be905f18db5a6805179456f0c\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612760400/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1612760400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3ec0f089db75c9c9608b74c5bd781560\";a:10:{s:4:\"hash\";s:32:\"3ec0f089db75c9c9608b74c5bd781560\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612760400/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1612760400/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef1ce09f78ed4594d7c083a895971a9a\";a:10:{s:4:\"hash\";s:32:\"ef1ce09f78ed4594d7c083a895971a9a\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612760400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1612760400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"72b9d2941785fbf4a12c53dadd7eea03\";a:10:{s:4:\"hash\";s:32:\"72b9d2941785fbf4a12c53dadd7eea03\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612760400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1612760400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2b714e157f9aab3ae15d961919cb62a7\";a:10:{s:4:\"hash\";s:32:\"2b714e157f9aab3ae15d961919cb62a7\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612760400/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1612760400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2d0cbc7303b1149106b56c555f2ce432\";a:10:{s:4:\"hash\";s:32:\"2d0cbc7303b1149106b56c555f2ce432\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612760400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1612760400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c7690083aa369d79f6058109806da280\";a:10:{s:4:\"hash\";s:32:\"c7690083aa369d79f6058109806da280\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1612760400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1612760400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9fdc3f0b8b398228c82cebac69fd5a3b\";a:10:{s:4:\"hash\";s:32:\"9fdc3f0b8b398228c82cebac69fd5a3b\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1613278800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1613278800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3ecbaee2caf9176ef0b08d94e8972592\";a:10:{s:4:\"hash\";s:32:\"3ecbaee2caf9176ef0b08d94e8972592\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1613365200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1613365200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"85244b942a2f0f77010deffdc44aff5c\";a:10:{s:4:\"hash\";s:32:\"85244b942a2f0f77010deffdc44aff5c\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1614574800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1614574800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e3b9c09a7367788bb713c86ca8c64e13\";a:10:{s:4:\"hash\";s:32:\"e3b9c09a7367788bb713c86ca8c64e13\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1614574800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1614574800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"426e7eac82e795cee95aec138f87e23f\";a:10:{s:4:\"hash\";s:32:\"426e7eac82e795cee95aec138f87e23f\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1614574800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1614574800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fb35c5d62f042e51e166d9c338cea99c\";a:10:{s:4:\"hash\";s:32:\"fb35c5d62f042e51e166d9c338cea99c\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1614574800/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1614574800/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1d0fc09ba37559142233c9f9bc8a7b38\";a:10:{s:4:\"hash\";s:32:\"1d0fc09ba37559142233c9f9bc8a7b38\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1614574800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1614574800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"97a1e242164b7fea007e77ad3a16e2a0\";a:10:{s:4:\"hash\";s:32:\"97a1e242164b7fea007e77ad3a16e2a0\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1614574800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1614574800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a6ca3646826ca7e95ab7e61eba4b3cf8\";a:10:{s:4:\"hash\";s:32:\"a6ca3646826ca7e95ab7e61eba4b3cf8\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1614574800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1614574800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"85e64a1686e61a5d0a78b2fcc4e11449\";a:10:{s:4:\"hash\";s:32:\"85e64a1686e61a5d0a78b2fcc4e11449\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1617249600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1617249600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fd004caf37b43aafabae2b029caf6429\";a:10:{s:4:\"hash\";s:32:\"fd004caf37b43aafabae2b029caf6429\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1617249600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1617249600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6ebc5b6780fbffea4deb179a3bc0d695\";a:10:{s:4:\"hash\";s:32:\"6ebc5b6780fbffea4deb179a3bc0d695\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1617249600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1617249600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"22b1be8998d4d2399bcaeec7a8b449af\";a:10:{s:4:\"hash\";s:32:\"22b1be8998d4d2399bcaeec7a8b449af\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1617249600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1617249600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"614e71b48cd587397bedb850451d0353\";a:10:{s:4:\"hash\";s:32:\"614e71b48cd587397bedb850451d0353\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1617249600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1617249600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"06df205bbde0a9514c39c870b282efc6\";a:10:{s:4:\"hash\";s:32:\"06df205bbde0a9514c39c870b282efc6\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1617249600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1617249600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"472373349aff4376ff4c5510098adb64\";a:10:{s:4:\"hash\";s:32:\"472373349aff4376ff4c5510098adb64\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619236800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1619236800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c6452b67ea8d078e6bb1d9615960f479\";a:10:{s:4:\"hash\";s:32:\"c6452b67ea8d078e6bb1d9615960f479\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619236800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1619236800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1c14016e2783c0f2b826eb899d290491\";a:10:{s:4:\"hash\";s:32:\"1c14016e2783c0f2b826eb899d290491\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619323200/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1619323200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8f8b3f9abb52e47594174749cf135b81\";a:10:{s:4:\"hash\";s:32:\"8f8b3f9abb52e47594174749cf135b81\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619323200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1619323200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"56841f89a20b4acd53b8fe581ef8c252\";a:10:{s:4:\"hash\";s:32:\"56841f89a20b4acd53b8fe581ef8c252\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619323200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1619323200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e86ec845a095078dd9fccec8300737ab\";a:10:{s:4:\"hash\";s:32:\"e86ec845a095078dd9fccec8300737ab\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619496000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1619496000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"23e5e0851dcb66a53803b791eb4ce393\";a:10:{s:4:\"hash\";s:32:\"23e5e0851dcb66a53803b791eb4ce393\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619668800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1619668800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8dc9f99c5b8674b9e600f5272600af64\";a:10:{s:4:\"hash\";s:32:\"8dc9f99c5b8674b9e600f5272600af64\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619755200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1619755200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"df269758294806cf4ddad04bd2ab914c\";a:10:{s:4:\"hash\";s:32:\"df269758294806cf4ddad04bd2ab914c\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619755200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1619755200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b6073173edd10377d4f31241edc418d3\";a:10:{s:4:\"hash\";s:32:\"b6073173edd10377d4f31241edc418d3\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619755200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1619755200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"069f87920108c6a0c7bbdaabb445bf04\";a:10:{s:4:\"hash\";s:32:\"069f87920108c6a0c7bbdaabb445bf04\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619841600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1619841600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5ca02af6015475a3f958ba769235c4f1\";a:10:{s:4:\"hash\";s:32:\"5ca02af6015475a3f958ba769235c4f1\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619841600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1619841600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a705e1f4151ed093d5df6c2da7abdfaf\";a:10:{s:4:\"hash\";s:32:\"a705e1f4151ed093d5df6c2da7abdfaf\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619841600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1619841600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e23d9f1dc3fcd2e69a06d3ebc27f7d8f\";a:10:{s:4:\"hash\";s:32:\"e23d9f1dc3fcd2e69a06d3ebc27f7d8f\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619841600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1619841600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"56d65e85dcac7ee715247cb3a71ae5d8\";a:10:{s:4:\"hash\";s:32:\"56d65e85dcac7ee715247cb3a71ae5d8\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619841600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1619841600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7de621f46f757778c9bcc17548b0d892\";a:10:{s:4:\"hash\";s:32:\"7de621f46f757778c9bcc17548b0d892\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619841600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1619841600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1395b80b2354238f91b49a2b9fdfcef2\";a:10:{s:4:\"hash\";s:32:\"1395b80b2354238f91b49a2b9fdfcef2\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619841600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1619841600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"88bee13c8edf39eb68d75bcfe7cda047\";a:10:{s:4:\"hash\";s:32:\"88bee13c8edf39eb68d75bcfe7cda047\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619841600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1619841600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"78a1c333d20796d341889d7ecef43914\";a:10:{s:4:\"hash\";s:32:\"78a1c333d20796d341889d7ecef43914\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619841600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1619841600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bf0e70455e450955b94db2fbb352ca88\";a:10:{s:4:\"hash\";s:32:\"bf0e70455e450955b94db2fbb352ca88\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619841600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1619841600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bc090874745ae1cacdbff73f4004689b\";a:10:{s:4:\"hash\";s:32:\"bc090874745ae1cacdbff73f4004689b\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1619841600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1619841600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e9cb80f552e108acf63a945ee8a03a2e\";a:10:{s:4:\"hash\";s:32:\"e9cb80f552e108acf63a945ee8a03a2e\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620100800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1620100800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"71ffd0756cf83280dd319f44ea5d2994\";a:10:{s:4:\"hash\";s:32:\"71ffd0756cf83280dd319f44ea5d2994\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620100800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1620100800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a5922a67ef77961b526e55cdd218fade\";a:10:{s:4:\"hash\";s:32:\"a5922a67ef77961b526e55cdd218fade\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620100800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1620100800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9e0be2aae067df15833168811575f1d6\";a:10:{s:4:\"hash\";s:32:\"9e0be2aae067df15833168811575f1d6\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620100800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1620100800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8aace05a478cefe6d7c57801faa7718f\";a:10:{s:4:\"hash\";s:32:\"8aace05a478cefe6d7c57801faa7718f\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620100800/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1620100800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b24637e879ceac8f378a425fecbb455c\";a:10:{s:4:\"hash\";s:32:\"b24637e879ceac8f378a425fecbb455c\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620100800/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1620100800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"19509a8bcca01c253f4b13645aab4bd0\";a:10:{s:4:\"hash\";s:32:\"19509a8bcca01c253f4b13645aab4bd0\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620100800/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1620100800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"509c39c405323b1466983f7e2f1109cc\";a:10:{s:4:\"hash\";s:32:\"509c39c405323b1466983f7e2f1109cc\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620187200/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1620187200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"04163e76a0799721418fa9f050cd8354\";a:10:{s:4:\"hash\";s:32:\"04163e76a0799721418fa9f050cd8354\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620187200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1620187200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a9104c9d6c96eaa7317eb4897db73fd7\";a:10:{s:4:\"hash\";s:32:\"a9104c9d6c96eaa7317eb4897db73fd7\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620273600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1620273600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ddb39c49c9b3ad725473bf863e87bc16\";a:10:{s:4:\"hash\";s:32:\"ddb39c49c9b3ad725473bf863e87bc16\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620360000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1620360000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bfda61eb7a1ccc469a39e039580a73f6\";a:10:{s:4:\"hash\";s:32:\"bfda61eb7a1ccc469a39e039580a73f6\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620446400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1620446400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"038c170e4f4f37a69ec077afeb64feb9\";a:10:{s:4:\"hash\";s:32:\"038c170e4f4f37a69ec077afeb64feb9\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620532800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1620532800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8b509edbddb40af897018e80ff28bd56\";a:10:{s:4:\"hash\";s:32:\"8b509edbddb40af897018e80ff28bd56\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620532800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1620532800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"221cdf73c5f44af61b69acaf8d9e0554\";a:10:{s:4:\"hash\";s:32:\"221cdf73c5f44af61b69acaf8d9e0554\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620532800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1620532800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f0ddf40ac2e044c85378ffc36083d16e\";a:10:{s:4:\"hash\";s:32:\"f0ddf40ac2e044c85378ffc36083d16e\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620532800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1620532800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"44d025350fb0ce0f25f45a5f8812fc66\";a:10:{s:4:\"hash\";s:32:\"44d025350fb0ce0f25f45a5f8812fc66\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620532800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1620532800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"127ee6dbb9f4eebf971c8b68aba1ec91\";a:10:{s:4:\"hash\";s:32:\"127ee6dbb9f4eebf971c8b68aba1ec91\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620532800/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1620532800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9ad74b2720270781d0c1c4e412a8c0a4\";a:10:{s:4:\"hash\";s:32:\"9ad74b2720270781d0c1c4e412a8c0a4\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620532800/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1620532800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e246325386534cd804037c257d45319f\";a:10:{s:4:\"hash\";s:32:\"e246325386534cd804037c257d45319f\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620532800/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1620532800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ead145036b37d781a5a45858eba88a12\";a:10:{s:4:\"hash\";s:32:\"ead145036b37d781a5a45858eba88a12\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620619200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1620619200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cafe6e793fc2b38d7ef297a77ed0a71b\";a:10:{s:4:\"hash\";s:32:\"cafe6e793fc2b38d7ef297a77ed0a71b\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620619200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1620619200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f2f5345599714a4f68ba637b16bc44e1\";a:10:{s:4:\"hash\";s:32:\"f2f5345599714a4f68ba637b16bc44e1\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620619200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1620619200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"85afdc207f031989a3bb7fd501a6a30d\";a:10:{s:4:\"hash\";s:32:\"85afdc207f031989a3bb7fd501a6a30d\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620705600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1620705600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d15fa96f85a615f3a9163b0bca1bb724\";a:10:{s:4:\"hash\";s:32:\"d15fa96f85a615f3a9163b0bca1bb724\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620705600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1620705600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"98e2a6d28320673345113dd9670ae5dc\";a:10:{s:4:\"hash\";s:32:\"98e2a6d28320673345113dd9670ae5dc\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620705600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1620705600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"68853060789b249dd3d0e916e337e430\";a:10:{s:4:\"hash\";s:32:\"68853060789b249dd3d0e916e337e430\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620792000/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1620792000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ea5b628b8995dd1eee5076f477d82fd9\";a:10:{s:4:\"hash\";s:32:\"ea5b628b8995dd1eee5076f477d82fd9\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620792000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1620792000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"18e61a706030068935f5687a6ec643b4\";a:10:{s:4:\"hash\";s:32:\"18e61a706030068935f5687a6ec643b4\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620792000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1620792000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"353d0243d6f19e40e1e91bb175f952bd\";a:10:{s:4:\"hash\";s:32:\"353d0243d6f19e40e1e91bb175f952bd\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620792000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1620792000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d7755136f17c7b8900bb8a396d82f657\";a:10:{s:4:\"hash\";s:32:\"d7755136f17c7b8900bb8a396d82f657\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620878400/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1620878400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2e965e4b93932fd8d3325ed8249b2b9c\";a:10:{s:4:\"hash\";s:32:\"2e965e4b93932fd8d3325ed8249b2b9c\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620964800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1620964800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7ce8c56336172d5dc7a08ba5a690d5f9\";a:10:{s:4:\"hash\";s:32:\"7ce8c56336172d5dc7a08ba5a690d5f9\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620964800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1620964800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0eb403d217fbff905552fb21e7f7257a\";a:10:{s:4:\"hash\";s:32:\"0eb403d217fbff905552fb21e7f7257a\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1620964800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1620964800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8f85d75bc9fee74df17d9c080877cd7e\";a:10:{s:4:\"hash\";s:32:\"8f85d75bc9fee74df17d9c080877cd7e\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621051200/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1621051200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"efcd97027e513984d702218e75fc170c\";a:10:{s:4:\"hash\";s:32:\"efcd97027e513984d702218e75fc170c\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621051200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1621051200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"55bee1fb1774489abad4173406f77de9\";a:10:{s:4:\"hash\";s:32:\"55bee1fb1774489abad4173406f77de9\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621051200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1621051200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e29da6e0787a3e5e5c7388b69c5d0453\";a:10:{s:4:\"hash\";s:32:\"e29da6e0787a3e5e5c7388b69c5d0453\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621051200/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1621051200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b22690e0bf3dac5f2674174ef84c8974\";a:10:{s:4:\"hash\";s:32:\"b22690e0bf3dac5f2674174ef84c8974\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621051200/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1621051200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2078b4f811b143a276b515258e314230\";a:10:{s:4:\"hash\";s:32:\"2078b4f811b143a276b515258e314230\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621051200/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1621051200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"931b357cf224cf13307f0512ce502903\";a:10:{s:4:\"hash\";s:32:\"931b357cf224cf13307f0512ce502903\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621224000/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1621224000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2faae61e9481bc787ac9281ee5df4534\";a:10:{s:4:\"hash\";s:32:\"2faae61e9481bc787ac9281ee5df4534\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621224000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1621224000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"06d6e5a063e3e54955674db7e084dc5a\";a:10:{s:4:\"hash\";s:32:\"06d6e5a063e3e54955674db7e084dc5a\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621224000/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1621224000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ea40f28ab0e7295ca3e8f5f9ac54d9fb\";a:10:{s:4:\"hash\";s:32:\"ea40f28ab0e7295ca3e8f5f9ac54d9fb\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621224000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1621224000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b8d9c4f5e72c448a0f289ed42446ec21\";a:10:{s:4:\"hash\";s:32:\"b8d9c4f5e72c448a0f289ed42446ec21\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621310400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1621310400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6cfe5e6c9ae69923eb78b4a847918fa8\";a:10:{s:4:\"hash\";s:32:\"6cfe5e6c9ae69923eb78b4a847918fa8\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621396800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1621396800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5c9e8cc46a681a4f0e2f34bed4c4f95d\";a:10:{s:4:\"hash\";s:32:\"5c9e8cc46a681a4f0e2f34bed4c4f95d\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621396800/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1621396800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c78f9e8ccc08a635042ed293faf98ee\";a:10:{s:4:\"hash\";s:32:\"3c78f9e8ccc08a635042ed293faf98ee\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621396800/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1621396800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"254751b180c5f2a39231aced3a303105\";a:10:{s:4:\"hash\";s:32:\"254751b180c5f2a39231aced3a303105\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621396800/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1621396800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d779e406eeb182e0f58a5dd61af10bf\";a:10:{s:4:\"hash\";s:32:\"4d779e406eeb182e0f58a5dd61af10bf\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621828800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1621828800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ed4d5a3d321edba1bb9ddc752b68b8bc\";a:10:{s:4:\"hash\";s:32:\"ed4d5a3d321edba1bb9ddc752b68b8bc\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621915200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1621915200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"24cf3303f22d3ebc98338b38f3bea9e4\";a:10:{s:4:\"hash\";s:32:\"24cf3303f22d3ebc98338b38f3bea9e4\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621915200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1621915200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"086e9b59e619627d525df0f403c94685\";a:10:{s:4:\"hash\";s:32:\"086e9b59e619627d525df0f403c94685\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621915200/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1621915200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"10bd9f5cfdb7ba865cbae77ea7e8aeba\";a:10:{s:4:\"hash\";s:32:\"10bd9f5cfdb7ba865cbae77ea7e8aeba\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621915200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1621915200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3cb02f66d91209b02dd42fc451a31ca7\";a:10:{s:4:\"hash\";s:32:\"3cb02f66d91209b02dd42fc451a31ca7\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621915200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1621915200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1124cf3e954df5ed3d1330a05c232f33\";a:10:{s:4:\"hash\";s:32:\"1124cf3e954df5ed3d1330a05c232f33\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621915200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1621915200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f3e9ffc78c1888bd18f7f6b28eace6f9\";a:10:{s:4:\"hash\";s:32:\"f3e9ffc78c1888bd18f7f6b28eace6f9\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621915200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1621915200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"47bca20f0f859ee78452427c04121b5d\";a:10:{s:4:\"hash\";s:32:\"47bca20f0f859ee78452427c04121b5d\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621915200/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1621915200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b209a63167a8ffa8a8378f992516d617\";a:10:{s:4:\"hash\";s:32:\"b209a63167a8ffa8a8378f992516d617\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621915200/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1621915200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"148bf9f7865b9eae151862db7976f6ca\";a:10:{s:4:\"hash\";s:32:\"148bf9f7865b9eae151862db7976f6ca\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1621915200/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1621915200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"21081a5f1a2e2237da5b517f4343f005\";a:10:{s:4:\"hash\";s:32:\"21081a5f1a2e2237da5b517f4343f005\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622001600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1622001600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ca7ac5cc84dc78395d3a6e8cb96b9a43\";a:10:{s:4:\"hash\";s:32:\"ca7ac5cc84dc78395d3a6e8cb96b9a43\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622001600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1622001600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"372514acca36532ca3332e7f72b605fa\";a:10:{s:4:\"hash\";s:32:\"372514acca36532ca3332e7f72b605fa\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622174400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1622174400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"00841a0dc701aa809bb869984d341f98\";a:10:{s:4:\"hash\";s:32:\"00841a0dc701aa809bb869984d341f98\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622520000/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1622520000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6f1631c5d453b53b82083b7aef7a9bb4\";a:10:{s:4:\"hash\";s:32:\"6f1631c5d453b53b82083b7aef7a9bb4\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622520000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1622520000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7a51cc6302486bf8aad09ac5a188f459\";a:10:{s:4:\"hash\";s:32:\"7a51cc6302486bf8aad09ac5a188f459\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622520000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1622520000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ad5171de7803146105cf3e7e56735efd\";a:10:{s:4:\"hash\";s:32:\"ad5171de7803146105cf3e7e56735efd\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622520000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1622520000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1912e60028db808e742b1243200831a9\";a:10:{s:4:\"hash\";s:32:\"1912e60028db808e742b1243200831a9\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622520000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1622520000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5ef12a08e6b2d6fb75aeb8133f318b93\";a:10:{s:4:\"hash\";s:32:\"5ef12a08e6b2d6fb75aeb8133f318b93\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622520000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1622520000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"307e242e59a6ffbfc3de0da5ab8b97ae\";a:10:{s:4:\"hash\";s:32:\"307e242e59a6ffbfc3de0da5ab8b97ae\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622520000/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1622520000/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f638d650f0b9ddbd0c47577b22076c4f\";a:10:{s:4:\"hash\";s:32:\"f638d650f0b9ddbd0c47577b22076c4f\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622520000/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1622520000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1886eb3497c2fffeba6a921d71fd6b36\";a:10:{s:4:\"hash\";s:32:\"1886eb3497c2fffeba6a921d71fd6b36\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622520000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1622520000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0d6129efe4cdf0b618b0c63e5583dec9\";a:10:{s:4:\"hash\";s:32:\"0d6129efe4cdf0b618b0c63e5583dec9\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622520000/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1622520000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bf1e02936d9bd19b59075ed17cfc5929\";a:10:{s:4:\"hash\";s:32:\"bf1e02936d9bd19b59075ed17cfc5929\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622520000/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1622520000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f148feb44c07806306d0762a6a83ac75\";a:10:{s:4:\"hash\";s:32:\"f148feb44c07806306d0762a6a83ac75\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622520000/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1622520000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"216e153109e2e57288bc62d3bfe952ac\";a:10:{s:4:\"hash\";s:32:\"216e153109e2e57288bc62d3bfe952ac\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622692800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1622692800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0effc6f795aae63b869ee88ca4d9bac8\";a:10:{s:4:\"hash\";s:32:\"0effc6f795aae63b869ee88ca4d9bac8\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622779200/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1622779200/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"229119bc90dc16df1f9dfe7d13bc581a\";a:10:{s:4:\"hash\";s:32:\"229119bc90dc16df1f9dfe7d13bc581a\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622779200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1622779200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"593b986644f86e84843364d5019fdb9c\";a:10:{s:4:\"hash\";s:32:\"593b986644f86e84843364d5019fdb9c\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622779200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1622779200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eafc70a3cbe6746275e6c5e714073c74\";a:10:{s:4:\"hash\";s:32:\"eafc70a3cbe6746275e6c5e714073c74\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622779200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1622779200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9eed15c2306191a61c7a0bd8047d2c16\";a:10:{s:4:\"hash\";s:32:\"9eed15c2306191a61c7a0bd8047d2c16\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622779200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1622779200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d9409061e13369bfaaf3a482ac6e0c41\";a:10:{s:4:\"hash\";s:32:\"d9409061e13369bfaaf3a482ac6e0c41\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1622865600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1622865600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3835f1bb01a343c2d7b88d4b394d3bcc\";a:10:{s:4:\"hash\";s:32:\"3835f1bb01a343c2d7b88d4b394d3bcc\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623038400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1623038400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e24f51e1c7f5575753e50cef7dccfedc\";a:10:{s:4:\"hash\";s:32:\"e24f51e1c7f5575753e50cef7dccfedc\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623124800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623124800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"624a23fa39099ef9d3356e3e77559eb9\";a:10:{s:4:\"hash\";s:32:\"624a23fa39099ef9d3356e3e77559eb9\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623124800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1623124800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a14dce2c9ba66fb166c5d19344929c87\";a:10:{s:4:\"hash\";s:32:\"a14dce2c9ba66fb166c5d19344929c87\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623211200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1623211200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e7802cce4357eec9f9677dbf150e5672\";a:10:{s:4:\"hash\";s:32:\"e7802cce4357eec9f9677dbf150e5672\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623384000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1623384000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dae408056b0489a21d97df4cb49036b5\";a:10:{s:4:\"hash\";s:32:\"dae408056b0489a21d97df4cb49036b5\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623384000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1623384000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1b5b4b9777f3c17ef8178f067d0e9929\";a:10:{s:4:\"hash\";s:32:\"1b5b4b9777f3c17ef8178f067d0e9929\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623384000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1623384000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d4eaa7517c08687caa73c732a32d04b4\";a:10:{s:4:\"hash\";s:32:\"d4eaa7517c08687caa73c732a32d04b4\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623384000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623384000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c6d9da28136cca6a48adbc021dfafd23\";a:10:{s:4:\"hash\";s:32:\"c6d9da28136cca6a48adbc021dfafd23\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623384000/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623384000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"351ba7dbba118c93ffda46dd4fd3f230\";a:10:{s:4:\"hash\";s:32:\"351ba7dbba118c93ffda46dd4fd3f230\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623384000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1623384000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f43d2886949dfc0f6210f53e1cc19322\";a:10:{s:4:\"hash\";s:32:\"f43d2886949dfc0f6210f53e1cc19322\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623384000/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623384000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bd058d6465d08c3474980e138c54cfa4\";a:10:{s:4:\"hash\";s:32:\"bd058d6465d08c3474980e138c54cfa4\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623384000/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623384000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0f32ac0d895ecea20137706798ddd40b\";a:10:{s:4:\"hash\";s:32:\"0f32ac0d895ecea20137706798ddd40b\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623384000/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623384000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b0e86f37a08dc0565561070f86fa8376\";a:10:{s:4:\"hash\";s:32:\"b0e86f37a08dc0565561070f86fa8376\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623470400/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623470400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"560c6e33b944f1f0aaaac1ebc485075b\";a:10:{s:4:\"hash\";s:32:\"560c6e33b944f1f0aaaac1ebc485075b\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623556800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623556800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8cb4af91f077afe74c841f62dad5d0be\";a:10:{s:4:\"hash\";s:32:\"8cb4af91f077afe74c841f62dad5d0be\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623556800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1623556800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c47263751ca8eac9f20ecbbb14f38500\";a:10:{s:4:\"hash\";s:32:\"c47263751ca8eac9f20ecbbb14f38500\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623643200/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623643200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"98e86c5060202c1594e304c6df9239ea\";a:10:{s:4:\"hash\";s:32:\"98e86c5060202c1594e304c6df9239ea\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623643200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1623643200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c4865ca555bcf43d5c9392080a76bbd6\";a:10:{s:4:\"hash\";s:32:\"c4865ca555bcf43d5c9392080a76bbd6\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623643200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1623643200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"40eb1be2bf3a6eb7452cedc6881cf3e3\";a:10:{s:4:\"hash\";s:32:\"40eb1be2bf3a6eb7452cedc6881cf3e3\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623643200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623643200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d3a3ac7fcd7f24c8404716c73c0c7b08\";a:10:{s:4:\"hash\";s:32:\"d3a3ac7fcd7f24c8404716c73c0c7b08\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623643200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1623643200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5ee8f87a710f594a81bc530c3b6b02be\";a:10:{s:4:\"hash\";s:32:\"5ee8f87a710f594a81bc530c3b6b02be\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623643200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623643200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef420b3a9e8510a2b0d488269e8fa6bf\";a:10:{s:4:\"hash\";s:32:\"ef420b3a9e8510a2b0d488269e8fa6bf\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623643200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1623643200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"319971e0d9a8e32c47e35826fe2c7751\";a:10:{s:4:\"hash\";s:32:\"319971e0d9a8e32c47e35826fe2c7751\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623643200/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623643200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"843e59d294ad705634673b1939076286\";a:10:{s:4:\"hash\";s:32:\"843e59d294ad705634673b1939076286\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623643200/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623643200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1831650f7cb4a2be010fcc771486cc23\";a:10:{s:4:\"hash\";s:32:\"1831650f7cb4a2be010fcc771486cc23\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623643200/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623643200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4195a949f615ebb6f80cd9cefd4f6bd7\";a:10:{s:4:\"hash\";s:32:\"4195a949f615ebb6f80cd9cefd4f6bd7\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623729600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623729600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"24d6119bcf0faec74f333ed5892f250a\";a:10:{s:4:\"hash\";s:32:\"24d6119bcf0faec74f333ed5892f250a\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623729600/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1623729600/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2b4f704afcb66af6ea98552eefefe672\";a:10:{s:4:\"hash\";s:32:\"2b4f704afcb66af6ea98552eefefe672\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623729600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1623729600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ac67f2fc229ad52c3d41e80f6aef21b9\";a:10:{s:4:\"hash\";s:32:\"ac67f2fc229ad52c3d41e80f6aef21b9\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623729600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1623729600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e1741897fafcf8fcd360f9e3164bf9c6\";a:10:{s:4:\"hash\";s:32:\"e1741897fafcf8fcd360f9e3164bf9c6\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623729600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1623729600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"30368a74fd10e48a3ef5e080121518b4\";a:10:{s:4:\"hash\";s:32:\"30368a74fd10e48a3ef5e080121518b4\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623729600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623729600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"53c0be254a822c3665e19335c84b17a6\";a:10:{s:4:\"hash\";s:32:\"53c0be254a822c3665e19335c84b17a6\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623729600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1623729600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"058ec9662114eeabb46e82b7faa3c2c7\";a:10:{s:4:\"hash\";s:32:\"058ec9662114eeabb46e82b7faa3c2c7\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623729600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623729600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"362ea11de9cf4e036f23c900f4a0aac3\";a:10:{s:4:\"hash\";s:32:\"362ea11de9cf4e036f23c900f4a0aac3\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623729600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1623729600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ce9cfc2d3717ba22125a60c653bd687b\";a:10:{s:4:\"hash\";s:32:\"ce9cfc2d3717ba22125a60c653bd687b\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623729600/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623729600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"63db45c27c77408619bc66a9975bc2bf\";a:10:{s:4:\"hash\";s:32:\"63db45c27c77408619bc66a9975bc2bf\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623729600/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623729600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c0d20c43df999c748d12b95d647b2717\";a:10:{s:4:\"hash\";s:32:\"c0d20c43df999c748d12b95d647b2717\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623729600/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623729600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"78fb226bb67de6ac3bc396a7cd8b867c\";a:10:{s:4:\"hash\";s:32:\"78fb226bb67de6ac3bc396a7cd8b867c\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623816000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1623816000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"25b4cdebd0904b7bda5cce9c07476437\";a:10:{s:4:\"hash\";s:32:\"25b4cdebd0904b7bda5cce9c07476437\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623816000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623816000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c33455d809b2898ea039c730833f64f\";a:10:{s:4:\"hash\";s:32:\"2c33455d809b2898ea039c730833f64f\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623816000/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1623816000/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e413402369e78a09e12945b355925cde\";a:10:{s:4:\"hash\";s:32:\"e413402369e78a09e12945b355925cde\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623816000/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623816000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"035168ee922614dafa29e11bde09e080\";a:10:{s:4:\"hash\";s:32:\"035168ee922614dafa29e11bde09e080\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623816000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1623816000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"48a5ff214b0a4a47a8c3c8fc78cef132\";a:10:{s:4:\"hash\";s:32:\"48a5ff214b0a4a47a8c3c8fc78cef132\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623816000/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623816000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6a3894847e2ea978d7c15c6585f4d608\";a:10:{s:4:\"hash\";s:32:\"6a3894847e2ea978d7c15c6585f4d608\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623816000/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623816000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aa40d6dd2d7f7233a95bb03323a0d4f6\";a:10:{s:4:\"hash\";s:32:\"aa40d6dd2d7f7233a95bb03323a0d4f6\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623816000/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623816000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"58bb6c5c18f5d688f7027e457d3596ed\";a:10:{s:4:\"hash\";s:32:\"58bb6c5c18f5d688f7027e457d3596ed\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623902400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1623902400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1abbbd2ef3dc1ab646f025993f0f0aaa\";a:10:{s:4:\"hash\";s:32:\"1abbbd2ef3dc1ab646f025993f0f0aaa\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623902400/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623902400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cf1e88cf56571e19eb73278aea53f5db\";a:10:{s:4:\"hash\";s:32:\"cf1e88cf56571e19eb73278aea53f5db\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623902400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1623902400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1dc35918c6f805cbc5222db8412eeb99\";a:10:{s:4:\"hash\";s:32:\"1dc35918c6f805cbc5222db8412eeb99\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623988800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1623988800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a326e055ac7abc1315b2cad98147a046\";a:10:{s:4:\"hash\";s:32:\"a326e055ac7abc1315b2cad98147a046\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623988800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623988800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"31cb9b5bdac9c131c101f608836c4401\";a:10:{s:4:\"hash\";s:32:\"31cb9b5bdac9c131c101f608836c4401\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623988800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1623988800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3a28c02939dba45b7eff6501da0899e2\";a:10:{s:4:\"hash\";s:32:\"3a28c02939dba45b7eff6501da0899e2\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623988800/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1623988800/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"60f24a016cc1fc419bde9fd22a477773\";a:10:{s:4:\"hash\";s:32:\"60f24a016cc1fc419bde9fd22a477773\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623988800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1623988800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"89d42f33f0aae22a9e4907f1839a0078\";a:10:{s:4:\"hash\";s:32:\"89d42f33f0aae22a9e4907f1839a0078\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623988800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623988800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6fe534d0bc15f3c6b335a3ed28ef796d\";a:10:{s:4:\"hash\";s:32:\"6fe534d0bc15f3c6b335a3ed28ef796d\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623988800/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1623988800/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6b653dd6df41319caeca320da9d469ea\";a:10:{s:4:\"hash\";s:32:\"6b653dd6df41319caeca320da9d469ea\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623988800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1623988800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6ee4b98260da7e42373fa9225fc8994e\";a:10:{s:4:\"hash\";s:32:\"6ee4b98260da7e42373fa9225fc8994e\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623988800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1623988800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fc1ad876886fe6708fd7cd83da758ead\";a:10:{s:4:\"hash\";s:32:\"fc1ad876886fe6708fd7cd83da758ead\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623988800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1623988800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9555b15ec5c2ef9c7948417d55b16271\";a:10:{s:4:\"hash\";s:32:\"9555b15ec5c2ef9c7948417d55b16271\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1623988800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1623988800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a09d97ec4876de364d2bb534e0d6ba38\";a:10:{s:4:\"hash\";s:32:\"a09d97ec4876de364d2bb534e0d6ba38\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1624075200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1624075200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"48af6983f087e83c665081dc6da5fdd4\";a:10:{s:4:\"hash\";s:32:\"48af6983f087e83c665081dc6da5fdd4\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1624075200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1624075200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7c1334c900b35eeded8f15b5722a3f16\";a:10:{s:4:\"hash\";s:32:\"7c1334c900b35eeded8f15b5722a3f16\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1624075200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1624075200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3b9b37951206ffff86004154c94bea18\";a:10:{s:4:\"hash\";s:32:\"3b9b37951206ffff86004154c94bea18\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1624334400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1624334400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"74ea694393e06348b4030e8104a1750d\";a:10:{s:4:\"hash\";s:32:\"74ea694393e06348b4030e8104a1750d\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1624507200/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1624507200/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c68aa04a5b78af84172ad618120107b0\";a:10:{s:4:\"hash\";s:32:\"c68aa04a5b78af84172ad618120107b0\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1624507200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1624507200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4accfd1f5c7e8c68935e1aee36aa375c\";a:10:{s:4:\"hash\";s:32:\"4accfd1f5c7e8c68935e1aee36aa375c\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1624939200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1624939200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"97980ae53a0f606370acee798d4b3a42\";a:10:{s:4:\"hash\";s:32:\"97980ae53a0f606370acee798d4b3a42\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1625112000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1625112000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d0892d9e15f311e255dbfeec8d70ee4c\";a:10:{s:4:\"hash\";s:32:\"d0892d9e15f311e255dbfeec8d70ee4c\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1625112000/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1625112000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d54c3e814d32f019e42450f5f195398\";a:10:{s:4:\"hash\";s:32:\"4d54c3e814d32f019e42450f5f195398\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1625112000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1625112000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"77cf17b0042de05acc9a3e1eac8a1866\";a:10:{s:4:\"hash\";s:32:\"77cf17b0042de05acc9a3e1eac8a1866\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1625112000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1625112000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef28d9a802bb6d89d55fc8dfa015602d\";a:10:{s:4:\"hash\";s:32:\"ef28d9a802bb6d89d55fc8dfa015602d\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1625112000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1625112000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2478b286208c5aaf81cde54c1cd57211\";a:10:{s:4:\"hash\";s:32:\"2478b286208c5aaf81cde54c1cd57211\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1625112000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1625112000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9a24a8c46c0d694f9b23bd77be8fd661\";a:10:{s:4:\"hash\";s:32:\"9a24a8c46c0d694f9b23bd77be8fd661\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1625112000/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1625112000/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f501e0d892e1de524e9c283eda9dfe1e\";a:10:{s:4:\"hash\";s:32:\"f501e0d892e1de524e9c283eda9dfe1e\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1625112000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1625112000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d54558c4c0599216ffebbf014f8f293a\";a:10:{s:4:\"hash\";s:32:\"d54558c4c0599216ffebbf014f8f293a\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1625112000/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1625112000/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c4bb5f3957a8d2552ad045290bb3e317\";a:10:{s:4:\"hash\";s:32:\"c4bb5f3957a8d2552ad045290bb3e317\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1625112000/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1625112000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3ea0447c8d44cea8fed48272e179da34\";a:10:{s:4:\"hash\";s:32:\"3ea0447c8d44cea8fed48272e179da34\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1625112000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1625112000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2cc0cf6ad986c69d7e47502a56f3da12\";a:10:{s:4:\"hash\";s:32:\"2cc0cf6ad986c69d7e47502a56f3da12\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626321600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1626321600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7106ec1b78910b61a565450dfec6ce1b\";a:10:{s:4:\"hash\";s:32:\"7106ec1b78910b61a565450dfec6ce1b\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626321600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1626321600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6feb1e3bbf3ed929c73665e5df210dbf\";a:10:{s:4:\"hash\";s:32:\"6feb1e3bbf3ed929c73665e5df210dbf\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626321600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1626321600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9a7d89d0849376ae9ffb40463a3b8be3\";a:10:{s:4:\"hash\";s:32:\"9a7d89d0849376ae9ffb40463a3b8be3\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626321600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1626321600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"62ef2a799bb66aa7fe9efadd847d2daf\";a:10:{s:4:\"hash\";s:32:\"62ef2a799bb66aa7fe9efadd847d2daf\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626408000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1626408000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"394d59f718d9e22da6a3acd2c6ca4ad6\";a:10:{s:4:\"hash\";s:32:\"394d59f718d9e22da6a3acd2c6ca4ad6\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626494400/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1626494400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c6f8b5f9cf34fbedc4357e83d7337893\";a:10:{s:4:\"hash\";s:32:\"c6f8b5f9cf34fbedc4357e83d7337893\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626494400/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1626494400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"541720c2b7682a22caa988e070d301b5\";a:10:{s:4:\"hash\";s:32:\"541720c2b7682a22caa988e070d301b5\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626494400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1626494400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c5226e6021c4f6e76f9b3a309624612e\";a:10:{s:4:\"hash\";s:32:\"c5226e6021c4f6e76f9b3a309624612e\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626580800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1626580800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"141560d55c152f84b947f0908685e8df\";a:10:{s:4:\"hash\";s:32:\"141560d55c152f84b947f0908685e8df\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626580800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1626580800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8b6f2b1974e0c43e45e4ac5d3398dd5d\";a:10:{s:4:\"hash\";s:32:\"8b6f2b1974e0c43e45e4ac5d3398dd5d\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626580800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1626580800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"900722c6f39db0c4b5986e2dc2caf78b\";a:10:{s:4:\"hash\";s:32:\"900722c6f39db0c4b5986e2dc2caf78b\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626580800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1626580800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ee62700820ca8eb10450c2421c584773\";a:10:{s:4:\"hash\";s:32:\"ee62700820ca8eb10450c2421c584773\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626580800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1626580800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"65bc69cecb4631076a82137bed4caf35\";a:10:{s:4:\"hash\";s:32:\"65bc69cecb4631076a82137bed4caf35\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626580800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1626580800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"16a6b8da055793c520f647d36c43f140\";a:10:{s:4:\"hash\";s:32:\"16a6b8da055793c520f647d36c43f140\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626580800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1626580800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fb8b49dbc9cb4ca731779b825aa7a5d7\";a:10:{s:4:\"hash\";s:32:\"fb8b49dbc9cb4ca731779b825aa7a5d7\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626580800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1626580800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7b36c62ea428e88c3803123de3460fe0\";a:10:{s:4:\"hash\";s:32:\"7b36c62ea428e88c3803123de3460fe0\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626667200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1626667200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e5741988a05a44f84988f043c56264ed\";a:10:{s:4:\"hash\";s:32:\"e5741988a05a44f84988f043c56264ed\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626667200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1626667200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f78eaef690b47bfd981cde9c20d479b5\";a:10:{s:4:\"hash\";s:32:\"f78eaef690b47bfd981cde9c20d479b5\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626667200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1626667200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9ca56c5232d5937d72cccc0be045f012\";a:10:{s:4:\"hash\";s:32:\"9ca56c5232d5937d72cccc0be045f012\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626667200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1626667200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e96116a334b49183b30b6df1bb8b6dd5\";a:10:{s:4:\"hash\";s:32:\"e96116a334b49183b30b6df1bb8b6dd5\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1626753600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1626753600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a412489d93826fd86c73275660b3dc73\";a:10:{s:4:\"hash\";s:32:\"a412489d93826fd86c73275660b3dc73\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627099200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1627099200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3b45bc9a933e2c91316c6df9cb422046\";a:10:{s:4:\"hash\";s:32:\"3b45bc9a933e2c91316c6df9cb422046\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627099200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1627099200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5b7ebade3b617a0f4d2a06a0cbdb161a\";a:10:{s:4:\"hash\";s:32:\"5b7ebade3b617a0f4d2a06a0cbdb161a\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627099200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1627099200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a11b93b9dd6ea79978c4e6d5825ca47\";a:10:{s:4:\"hash\";s:32:\"8a11b93b9dd6ea79978c4e6d5825ca47\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627185600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1627185600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fdd15397cd92dbefc2cf582bee259d48\";a:10:{s:4:\"hash\";s:32:\"fdd15397cd92dbefc2cf582bee259d48\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627185600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1627185600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"da238df9df40af8f992e1067ad290c13\";a:10:{s:4:\"hash\";s:32:\"da238df9df40af8f992e1067ad290c13\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627185600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1627185600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"211f547b922fbe3cd5b74155a4b4ce48\";a:10:{s:4:\"hash\";s:32:\"211f547b922fbe3cd5b74155a4b4ce48\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627185600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1627185600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"64df14530929e994a1535046311d7b05\";a:10:{s:4:\"hash\";s:32:\"64df14530929e994a1535046311d7b05\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627185600/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1627185600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2ec545959b23c1edbd3388bb9302cd07\";a:10:{s:4:\"hash\";s:32:\"2ec545959b23c1edbd3388bb9302cd07\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627185600/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1627185600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f5493b9e35e875952ed4169e2ac1008b\";a:10:{s:4:\"hash\";s:32:\"f5493b9e35e875952ed4169e2ac1008b\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627185600/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1627185600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b9abc89075562735117efc0fda0b26e8\";a:10:{s:4:\"hash\";s:32:\"b9abc89075562735117efc0fda0b26e8\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627272000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1627272000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9f56466de173a287b7475cab0be7d642\";a:10:{s:4:\"hash\";s:32:\"9f56466de173a287b7475cab0be7d642\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627272000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1627272000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"401ba2c3f2c856df889a986c05c3c402\";a:10:{s:4:\"hash\";s:32:\"401ba2c3f2c856df889a986c05c3c402\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627358400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1627358400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"818b197443902fdd85ee6e2429998e0b\";a:10:{s:4:\"hash\";s:32:\"818b197443902fdd85ee6e2429998e0b\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627358400/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1627358400/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"43ecfedf499ce4205544b3c5d43ddefc\";a:10:{s:4:\"hash\";s:32:\"43ecfedf499ce4205544b3c5d43ddefc\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627358400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1627358400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6c55c4ab10f7a370e22ec5aa65b47027\";a:10:{s:4:\"hash\";s:32:\"6c55c4ab10f7a370e22ec5aa65b47027\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627358400/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1627358400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"94f6a6782ab3c43b031c2c9648fbe224\";a:10:{s:4:\"hash\";s:32:\"94f6a6782ab3c43b031c2c9648fbe224\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627358400/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1627358400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fca2a4daefcf508b752fe835932e80a6\";a:10:{s:4:\"hash\";s:32:\"fca2a4daefcf508b752fe835932e80a6\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627358400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1627358400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"15277cf38d351200a2d29f29023cbeda\";a:10:{s:4:\"hash\";s:32:\"15277cf38d351200a2d29f29023cbeda\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627358400/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1627358400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"68e0b963c50b8fdc1b21cb3454e23dff\";a:10:{s:4:\"hash\";s:32:\"68e0b963c50b8fdc1b21cb3454e23dff\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627358400/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1627358400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5254ebcd0875fa5a27a83fd246e2d5df\";a:10:{s:4:\"hash\";s:32:\"5254ebcd0875fa5a27a83fd246e2d5df\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627358400/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1627358400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a7257a8fa29e5f06237a953e0a4cd3a5\";a:10:{s:4:\"hash\";s:32:\"a7257a8fa29e5f06237a953e0a4cd3a5\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627704000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1627704000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0c8b5a65abe1e122cf2bcc8fc69c5ddb\";a:10:{s:4:\"hash\";s:32:\"0c8b5a65abe1e122cf2bcc8fc69c5ddb\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627704000/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1627704000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7497d14cb11d6a30108ae8aa6eb85d5d\";a:10:{s:4:\"hash\";s:32:\"7497d14cb11d6a30108ae8aa6eb85d5d\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627704000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1627704000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fa914fe3e3bdd441b76eec611bc55274\";a:10:{s:4:\"hash\";s:32:\"fa914fe3e3bdd441b76eec611bc55274\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627790400/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1627790400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0f5407e11f66510d74ee84b2b02b59ef\";a:10:{s:4:\"hash\";s:32:\"0f5407e11f66510d74ee84b2b02b59ef\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627790400/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1627790400/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"03e56439ed60a78c900dbe0e3976c38d\";a:10:{s:4:\"hash\";s:32:\"03e56439ed60a78c900dbe0e3976c38d\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627790400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1627790400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0338fc97098261e68a5cc4539609e609\";a:10:{s:4:\"hash\";s:32:\"0338fc97098261e68a5cc4539609e609\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627790400/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1627790400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e6a582cfa44a21b1e61623d07db7a8b7\";a:10:{s:4:\"hash\";s:32:\"e6a582cfa44a21b1e61623d07db7a8b7\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627790400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1627790400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5386639ebe7fb13180943f34148f6630\";a:10:{s:4:\"hash\";s:32:\"5386639ebe7fb13180943f34148f6630\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627790400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1627790400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a6e9be4229cf071edb1aeb37e73e4b87\";a:10:{s:4:\"hash\";s:32:\"a6e9be4229cf071edb1aeb37e73e4b87\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627790400/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1627790400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"73ffdd3258718ce4a55fe98d58c78dc0\";a:10:{s:4:\"hash\";s:32:\"73ffdd3258718ce4a55fe98d58c78dc0\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627790400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1627790400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0fab48748edf25a21af109d5e6eb8a8f\";a:10:{s:4:\"hash\";s:32:\"0fab48748edf25a21af109d5e6eb8a8f\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627790400/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1627790400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8b9795cd9ae607bbc0f6c7369fbfbfc9\";a:10:{s:4:\"hash\";s:32:\"8b9795cd9ae607bbc0f6c7369fbfbfc9\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627790400/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1627790400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"406b3dc235dc86182d689fed0e4c163b\";a:10:{s:4:\"hash\";s:32:\"406b3dc235dc86182d689fed0e4c163b\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627790400/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1627790400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a5c34c528c5183c45035ff39b67fbdee\";a:10:{s:4:\"hash\";s:32:\"a5c34c528c5183c45035ff39b67fbdee\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1627876800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1627876800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"94a52d198187dab7e2c66cc5e66b1f57\";a:10:{s:4:\"hash\";s:32:\"94a52d198187dab7e2c66cc5e66b1f57\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1630468800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1630468800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f1309fabacba415937b292747ae011a\";a:10:{s:4:\"hash\";s:32:\"7f1309fabacba415937b292747ae011a\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1630468800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1630468800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a34d8cd8505c8d83ab668483b803c7cf\";a:10:{s:4:\"hash\";s:32:\"a34d8cd8505c8d83ab668483b803c7cf\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1633060800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1633060800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"86970a7ce0728e0e2b29cdfd4221702f\";a:10:{s:4:\"hash\";s:32:\"86970a7ce0728e0e2b29cdfd4221702f\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1633060800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1633060800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7ce7ea35839a4da8e811b1738f9b1f47\";a:10:{s:4:\"hash\";s:32:\"7ce7ea35839a4da8e811b1738f9b1f47\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1633060800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1633060800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6fe60e74353d14b8f59b988a24c321cd\";a:10:{s:4:\"hash\";s:32:\"6fe60e74353d14b8f59b988a24c321cd\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1633060800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1633060800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5a3b4e6303d77e44360d2438fe6570ee\";a:10:{s:4:\"hash\";s:32:\"5a3b4e6303d77e44360d2438fe6570ee\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1633060800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1633060800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c7bf9d310280792fe8ca345ed5ec6e47\";a:10:{s:4:\"hash\";s:32:\"c7bf9d310280792fe8ca345ed5ec6e47\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1635739200/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1635739200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c4dfa4eef99f2550a3d26e842663614c\";a:10:{s:4:\"hash\";s:32:\"c4dfa4eef99f2550a3d26e842663614c\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1635739200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1635739200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dff1db400a526f4209d9b802b019e107\";a:10:{s:4:\"hash\";s:32:\"dff1db400a526f4209d9b802b019e107\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1635739200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1635739200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9abd9102254fca45a30f6a4aa76ae252\";a:10:{s:4:\"hash\";s:32:\"9abd9102254fca45a30f6a4aa76ae252\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1635739200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1635739200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dc1650313e2d56246a1a7a28cc3ae30f\";a:10:{s:4:\"hash\";s:32:\"dc1650313e2d56246a1a7a28cc3ae30f\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1635739200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1635739200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eacfd80ee247105b8b4d1c4d821a268c\";a:10:{s:4:\"hash\";s:32:\"eacfd80ee247105b8b4d1c4d821a268c\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1635739200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1635739200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ae45ea8561d67427a4abcd0dbc86cf34\";a:10:{s:4:\"hash\";s:32:\"ae45ea8561d67427a4abcd0dbc86cf34\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1635912000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1635912000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"52b98d011d26a1feba832dd8d59174d0\";a:10:{s:4:\"hash\";s:32:\"52b98d011d26a1feba832dd8d59174d0\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1635998400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1635998400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0b87bcad24f82110121bfb6705aede3d\";a:10:{s:4:\"hash\";s:32:\"0b87bcad24f82110121bfb6705aede3d\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1636257600/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1636257600/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fc8f568952723546f0e91eca20bd1852\";a:10:{s:4:\"hash\";s:32:\"fc8f568952723546f0e91eca20bd1852\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1636257600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1636257600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8cc204451516bc390992225a6d98084a\";a:10:{s:4:\"hash\";s:32:\"8cc204451516bc390992225a6d98084a\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1636257600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1636257600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dcf0224ae91d56269ca9b5abcd14de23\";a:10:{s:4:\"hash\";s:32:\"dcf0224ae91d56269ca9b5abcd14de23\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1636257600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1636257600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a15a67939d11aaea142bc4e9cbbe3d93\";a:10:{s:4:\"hash\";s:32:\"a15a67939d11aaea142bc4e9cbbe3d93\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1636257600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1636257600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cc8ea901aa2878979fffe1f41e53f538\";a:10:{s:4:\"hash\";s:32:\"cc8ea901aa2878979fffe1f41e53f538\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1636257600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1636257600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"faa65cd63112936d8c939b225243898f\";a:10:{s:4:\"hash\";s:32:\"faa65cd63112936d8c939b225243898f\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1636520400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1636520400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"267028cb51e09d859ee27849cff8319c\";a:10:{s:4:\"hash\";s:32:\"267028cb51e09d859ee27849cff8319c\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1636606800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1636606800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cd7dee22a1eee811727cfc3b8f82fc7a\";a:10:{s:4:\"hash\";s:32:\"cd7dee22a1eee811727cfc3b8f82fc7a\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1636606800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1636606800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"43f9ac1a541d40ae6b76e70af29f1738\";a:10:{s:4:\"hash\";s:32:\"43f9ac1a541d40ae6b76e70af29f1738\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1636606800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1636606800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1ded6cb3123beb37e3cacf705bbf39c5\";a:10:{s:4:\"hash\";s:32:\"1ded6cb3123beb37e3cacf705bbf39c5\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1636606800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1636606800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bbf05c104c40b6b806d994149c291eeb\";a:10:{s:4:\"hash\";s:32:\"bbf05c104c40b6b806d994149c291eeb\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1636693200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1636693200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"db5b999b18f42cdf249c26f7f35a49de\";a:10:{s:4:\"hash\";s:32:\"db5b999b18f42cdf249c26f7f35a49de\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637125200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1637125200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f9c9e6aaa3fd040c266d3673ec25798\";a:10:{s:4:\"hash\";s:32:\"7f9c9e6aaa3fd040c266d3673ec25798\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637125200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1637125200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4abe5be5205231f77b8acd67d3e12c11\";a:10:{s:4:\"hash\";s:32:\"4abe5be5205231f77b8acd67d3e12c11\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637125200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1637125200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a08338cfe136412c6b536865025e9b85\";a:10:{s:4:\"hash\";s:32:\"a08338cfe136412c6b536865025e9b85\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637125200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1637125200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3a29f30276e5fb1a3bc2a577ea71d041\";a:10:{s:4:\"hash\";s:32:\"3a29f30276e5fb1a3bc2a577ea71d041\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637211600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1637211600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8360bc5d03e802a1e05032b4c76327a8\";a:10:{s:4:\"hash\";s:32:\"8360bc5d03e802a1e05032b4c76327a8\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637211600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1637211600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5d35b9f1b0c1ff29e98a20d5a0d7a93f\";a:10:{s:4:\"hash\";s:32:\"5d35b9f1b0c1ff29e98a20d5a0d7a93f\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637211600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1637211600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4a568bda33764fb0cb8cdf9a354997d5\";a:10:{s:4:\"hash\";s:32:\"4a568bda33764fb0cb8cdf9a354997d5\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637211600/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1637211600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b0d1e5a83acd9d50cd51cf1fe10419d9\";a:10:{s:4:\"hash\";s:32:\"b0d1e5a83acd9d50cd51cf1fe10419d9\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637211600/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1637211600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"168e33453bc3cb919078d6de7c004453\";a:10:{s:4:\"hash\";s:32:\"168e33453bc3cb919078d6de7c004453\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637211600/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1637211600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"18021f156f141efceb9fa96e5393dd50\";a:10:{s:4:\"hash\";s:32:\"18021f156f141efceb9fa96e5393dd50\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637298000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1637298000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cc4e15e8b42f937d21f8bff87ab8d3c7\";a:10:{s:4:\"hash\";s:32:\"cc4e15e8b42f937d21f8bff87ab8d3c7\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637298000/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1637298000/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"02e5b0f621c3fea3af69724c8c5f110f\";a:10:{s:4:\"hash\";s:32:\"02e5b0f621c3fea3af69724c8c5f110f\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637298000/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1637298000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d5bf9e0fda3930ad579fe43d71d59053\";a:10:{s:4:\"hash\";s:32:\"d5bf9e0fda3930ad579fe43d71d59053\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637298000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1637298000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6b1252f0fd9aa812aa00c05e20abe18a\";a:10:{s:4:\"hash\";s:32:\"6b1252f0fd9aa812aa00c05e20abe18a\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637298000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1637298000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cd254a0918afa1df33046feec3163936\";a:10:{s:4:\"hash\";s:32:\"cd254a0918afa1df33046feec3163936\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637298000/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1637298000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ed1986e53940ec203d5e13e2fc9520b1\";a:10:{s:4:\"hash\";s:32:\"ed1986e53940ec203d5e13e2fc9520b1\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637298000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1637298000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0c8c8d453040b5ea3eedbe0243a44f1c\";a:10:{s:4:\"hash\";s:32:\"0c8c8d453040b5ea3eedbe0243a44f1c\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637384400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1637384400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5f7fe0e154aa8cb19b17c304aab892d7\";a:10:{s:4:\"hash\";s:32:\"5f7fe0e154aa8cb19b17c304aab892d7\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637384400/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1637384400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"562a09285bb54e519c94c06750d1c30c\";a:10:{s:4:\"hash\";s:32:\"562a09285bb54e519c94c06750d1c30c\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637384400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1637384400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5a6db8886292e454d803384d9279c4ac\";a:10:{s:4:\"hash\";s:32:\"5a6db8886292e454d803384d9279c4ac\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637384400/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1637384400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9c3c3cc7ba465913e8d9e5504a83c931\";a:10:{s:4:\"hash\";s:32:\"9c3c3cc7ba465913e8d9e5504a83c931\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637384400/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1637384400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a7de905e99ed1bea39e0cafb51bdce84\";a:10:{s:4:\"hash\";s:32:\"a7de905e99ed1bea39e0cafb51bdce84\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637384400/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1637384400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1c17eeb2da9f0c5828b9b9f00668aa71\";a:10:{s:4:\"hash\";s:32:\"1c17eeb2da9f0c5828b9b9f00668aa71\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637470800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1637470800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"85a177678a376dd2c0c918c696cd5da7\";a:10:{s:4:\"hash\";s:32:\"85a177678a376dd2c0c918c696cd5da7\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637470800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1637470800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fb862db6e0c2fdb98ef96fcdbd288b9a\";a:10:{s:4:\"hash\";s:32:\"fb862db6e0c2fdb98ef96fcdbd288b9a\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637470800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1637470800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"319a2cfb87ca9ab79bb3446a9993dc8b\";a:10:{s:4:\"hash\";s:32:\"319a2cfb87ca9ab79bb3446a9993dc8b\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637557200/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1637557200/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c5fc79c0161ec548881174e84051c348\";a:10:{s:4:\"hash\";s:32:\"c5fc79c0161ec548881174e84051c348\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637557200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1637557200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a1206edfee610985b6727b53b7a07377\";a:10:{s:4:\"hash\";s:32:\"a1206edfee610985b6727b53b7a07377\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637557200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1637557200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e95d5cae8075f7b64eeaeabd6223d1ca\";a:10:{s:4:\"hash\";s:32:\"e95d5cae8075f7b64eeaeabd6223d1ca\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637557200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1637557200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"507dff71557de4b99ad624b6f8f7830b\";a:10:{s:4:\"hash\";s:32:\"507dff71557de4b99ad624b6f8f7830b\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637557200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1637557200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"17ede38ceeb0aaedb3cb078c7b4beb07\";a:10:{s:4:\"hash\";s:32:\"17ede38ceeb0aaedb3cb078c7b4beb07\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637730000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1637730000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e5bc34d38eea8b3298f91a3a7b6fd276\";a:10:{s:4:\"hash\";s:32:\"e5bc34d38eea8b3298f91a3a7b6fd276\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637816400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1637816400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fc0946f2d643a6e5102c7bf8e69e95d8\";a:10:{s:4:\"hash\";s:32:\"fc0946f2d643a6e5102c7bf8e69e95d8\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637816400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1637816400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6cb8995f2d19daa0adb364b2889eb25a\";a:10:{s:4:\"hash\";s:32:\"6cb8995f2d19daa0adb364b2889eb25a\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637816400/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1637816400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"479b45fcddf920ef464d28f080105062\";a:10:{s:4:\"hash\";s:32:\"479b45fcddf920ef464d28f080105062\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637816400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1637816400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f8dc0d8493d5dc60c05cea29db3fd15d\";a:10:{s:4:\"hash\";s:32:\"f8dc0d8493d5dc60c05cea29db3fd15d\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637902800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1637902800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"376f87a7dc314e771195e612d7000cdb\";a:10:{s:4:\"hash\";s:32:\"376f87a7dc314e771195e612d7000cdb\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637989200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1637989200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5306fd665aea00d32305d425dd41d9c8\";a:10:{s:4:\"hash\";s:32:\"5306fd665aea00d32305d425dd41d9c8\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637989200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1637989200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"19f637242cfefff6d926a4f0ac1dfac5\";a:10:{s:4:\"hash\";s:32:\"19f637242cfefff6d926a4f0ac1dfac5\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637989200/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1637989200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e00092c9698be762f5cb8a53fb3e008d\";a:10:{s:4:\"hash\";s:32:\"e00092c9698be762f5cb8a53fb3e008d\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637989200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1637989200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2afd802d4c4fe1882533142a51c16309\";a:10:{s:4:\"hash\";s:32:\"2afd802d4c4fe1882533142a51c16309\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637989200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1637989200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"24517d25da494b04745ed43402a1a4a5\";a:10:{s:4:\"hash\";s:32:\"24517d25da494b04745ed43402a1a4a5\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1637989200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1637989200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"66480f5ecbb26f013a91a77c68c505cd\";a:10:{s:4:\"hash\";s:32:\"66480f5ecbb26f013a91a77c68c505cd\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1638075600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1638075600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5706ae36678faba4c40ee9b1658bd331\";a:10:{s:4:\"hash\";s:32:\"5706ae36678faba4c40ee9b1658bd331\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1638075600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1638075600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b585487cf825a7930b7c95bab279722d\";a:10:{s:4:\"hash\";s:32:\"b585487cf825a7930b7c95bab279722d\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1638075600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1638075600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4c328914d1521d4b642f8f79e592c0c0\";a:10:{s:4:\"hash\";s:32:\"4c328914d1521d4b642f8f79e592c0c0\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1638162000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1638162000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d120b23dc781299c98eb7d3bbf1de796\";a:10:{s:4:\"hash\";s:32:\"d120b23dc781299c98eb7d3bbf1de796\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1638162000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1638162000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5a433a16a1b60aa65f198422a35170b7\";a:10:{s:4:\"hash\";s:32:\"5a433a16a1b60aa65f198422a35170b7\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1638248400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1638248400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fa76824341283953447009c3d1bd2493\";a:10:{s:4:\"hash\";s:32:\"fa76824341283953447009c3d1bd2493\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1638248400/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1638248400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3fb99272c225af6045cfd45c704201ce\";a:10:{s:4:\"hash\";s:32:\"3fb99272c225af6045cfd45c704201ce\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1638248400/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1638248400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"71c70c332b2ac11f622410bb74ec2514\";a:10:{s:4:\"hash\";s:32:\"71c70c332b2ac11f622410bb74ec2514\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1638248400/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1638248400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"906e5af2964b36051eaac62b6f9dfb7a\";a:10:{s:4:\"hash\";s:32:\"906e5af2964b36051eaac62b6f9dfb7a\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1638334800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1638334800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"147a3387844540ebfcdc5aa7dc6cffc7\";a:10:{s:4:\"hash\";s:32:\"147a3387844540ebfcdc5aa7dc6cffc7\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1638334800/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1638334800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"44b2b9f9bc4af719f498a4e29c9e8568\";a:10:{s:4:\"hash\";s:32:\"44b2b9f9bc4af719f498a4e29c9e8568\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1638334800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1638334800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4fcc63793015063adee18ed331a241ec\";a:10:{s:4:\"hash\";s:32:\"4fcc63793015063adee18ed331a241ec\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1638334800/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1638334800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7bd779da137c5368bf4b8fb40871ba17\";a:10:{s:4:\"hash\";s:32:\"7bd779da137c5368bf4b8fb40871ba17\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1638334800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1638334800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f600bf641573278c07c74c54279bc94a\";a:10:{s:4:\"hash\";s:32:\"f600bf641573278c07c74c54279bc94a\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1638594000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1638594000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0d44635d48faf5f06836f7033b46c342\";a:10:{s:4:\"hash\";s:32:\"0d44635d48faf5f06836f7033b46c342\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1641013200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1641013200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a4b45b39ad03d8a898cb0b5ec40b1ca9\";a:10:{s:4:\"hash\";s:32:\"a4b45b39ad03d8a898cb0b5ec40b1ca9\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1643691600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1643691600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"11a3285ab1eeecb125ff47da5c693bcd\";a:10:{s:4:\"hash\";s:32:\"11a3285ab1eeecb125ff47da5c693bcd\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1643691600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1643691600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c0a2cd414a3d8fc751b688c2d559ff19\";a:10:{s:4:\"hash\";s:32:\"c0a2cd414a3d8fc751b688c2d559ff19\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1643691600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1643691600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e6bfb66035081011b2636770577fc187\";a:10:{s:4:\"hash\";s:32:\"e6bfb66035081011b2636770577fc187\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1643691600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1643691600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3fa8acd71d1a39c7283023c8e424c9cd\";a:10:{s:4:\"hash\";s:32:\"3fa8acd71d1a39c7283023c8e424c9cd\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1643691600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1643691600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"214c6cbd7e4d44d1d8b0e52e88567e9d\";a:10:{s:4:\"hash\";s:32:\"214c6cbd7e4d44d1d8b0e52e88567e9d\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1643691600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1643691600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"306bfaf1619b414b4d9be80e54c6705c\";a:10:{s:4:\"hash\";s:32:\"306bfaf1619b414b4d9be80e54c6705c\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1646110800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1646110800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c4343968b752b1c16911bd3adb065980\";a:10:{s:4:\"hash\";s:32:\"c4343968b752b1c16911bd3adb065980\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1648785600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1648785600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"513d5fe7d5447668e0303d5ad4b5ed6f\";a:10:{s:4:\"hash\";s:32:\"513d5fe7d5447668e0303d5ad4b5ed6f\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1651377600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1651377600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"02a72262c466b0b49873a8beb4ea22ce\";a:10:{s:4:\"hash\";s:32:\"02a72262c466b0b49873a8beb4ea22ce\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1651377600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1651377600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"93a35483369b8801849c8cdef72a9ae0\";a:10:{s:4:\"hash\";s:32:\"93a35483369b8801849c8cdef72a9ae0\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1651377600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1651377600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5008d380352bae6918017f00c4561018\";a:10:{s:4:\"hash\";s:32:\"5008d380352bae6918017f00c4561018\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1651377600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1651377600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ee7314cd760637d0546151f4696ffc70\";a:10:{s:4:\"hash\";s:32:\"ee7314cd760637d0546151f4696ffc70\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1651377600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1651377600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c38db7b3823596bf233796305225c190\";a:10:{s:4:\"hash\";s:32:\"c38db7b3823596bf233796305225c190\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1651377600/request_format~json/cat_ids~87/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1651377600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d1bfb4b1b4964acda1ae3cbae900b604\";a:10:{s:4:\"hash\";s:32:\"d1bfb4b1b4964acda1ae3cbae900b604\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1651377600/request_format~json/cat_ids~88/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1651377600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bad73e61eecd206766f23705efe9dd65\";a:10:{s:4:\"hash\";s:32:\"bad73e61eecd206766f23705efe9dd65\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1651377600/request_format~json/cat_ids~89/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1651377600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ffe813c07bcb937176945accd1499685\";a:10:{s:4:\"hash\";s:32:\"ffe813c07bcb937176945accd1499685\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1654056000/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1654056000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cbe279f64fdf0b0300a3ba803d3d3534\";a:10:{s:4:\"hash\";s:32:\"cbe279f64fdf0b0300a3ba803d3d3534\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1654056000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1654056000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"144f8d8e9c93bf8d69e5b6611abce119\";a:10:{s:4:\"hash\";s:32:\"144f8d8e9c93bf8d69e5b6611abce119\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1654056000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1654056000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b5ad447086f31606cd1d0c1117cd0a85\";a:10:{s:4:\"hash\";s:32:\"b5ad447086f31606cd1d0c1117cd0a85\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1654056000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1654056000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cd31e4d9ed8018f4895dc0ccaee3d12f\";a:10:{s:4:\"hash\";s:32:\"cd31e4d9ed8018f4895dc0ccaee3d12f\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1654056000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1654056000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"51ad91b67e6c7d3f38544474f39c7495\";a:10:{s:4:\"hash\";s:32:\"51ad91b67e6c7d3f38544474f39c7495\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1654056000/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1654056000/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b56c7710197b8e42e4ce555bada688f9\";a:10:{s:4:\"hash\";s:32:\"b56c7710197b8e42e4ce555bada688f9\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1654056000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1654056000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a99b40a32b8efecf74b2d190a2b1e576\";a:10:{s:4:\"hash\";s:32:\"a99b40a32b8efecf74b2d190a2b1e576\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1654056000/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1654056000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3ec0be4f329fad7f685b1cc009601848\";a:10:{s:4:\"hash\";s:32:\"3ec0be4f329fad7f685b1cc009601848\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1654056000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1654056000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7b9680164aaf1f44fc796eca978b399e\";a:10:{s:4:\"hash\";s:32:\"7b9680164aaf1f44fc796eca978b399e\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1656648000/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1656648000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"12eb37dfeb6212e5822da4f1704a7d31\";a:10:{s:4:\"hash\";s:32:\"12eb37dfeb6212e5822da4f1704a7d31\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1656648000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/exact_date~1656648000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d36b7d9ebed34a3346b9bf6dbc41531e\";a:10:{s:4:\"hash\";s:32:\"d36b7d9ebed34a3346b9bf6dbc41531e\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1656648000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1656648000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f4127d0f0f1155f568b2d76240d08940\";a:10:{s:4:\"hash\";s:32:\"f4127d0f0f1155f568b2d76240d08940\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1656648000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1656648000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"996114da990c52f8cbe1b8c207ada3c5\";a:10:{s:4:\"hash\";s:32:\"996114da990c52f8cbe1b8c207ada3c5\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1656648000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1656648000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9847663c6e2e906a280d0b157306dead\";a:10:{s:4:\"hash\";s:32:\"9847663c6e2e906a280d0b157306dead\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1656648000/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1656648000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8b789a07cbf62b976cd80e29f1d9da7e\";a:10:{s:4:\"hash\";s:32:\"8b789a07cbf62b976cd80e29f1d9da7e\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1656648000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1656648000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"943e438580e0024fc637b3436be85999\";a:10:{s:4:\"hash\";s:32:\"943e438580e0024fc637b3436be85999\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1659326400/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1659326400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5ae57da9a35a136266d70139d0e43e18\";a:10:{s:4:\"hash\";s:32:\"5ae57da9a35a136266d70139d0e43e18\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1659326400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1659326400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3e8354b03416a90e0a87bf9dc2be6bd0\";a:10:{s:4:\"hash\";s:32:\"3e8354b03416a90e0a87bf9dc2be6bd0\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1667275200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1667275200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8121ce8643eb25be1775de48a9596e11\";a:10:{s:4:\"hash\";s:32:\"8121ce8643eb25be1775de48a9596e11\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1667275200/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1667275200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"389393907c09c3dc2d84894a98796e5d\";a:10:{s:4:\"hash\";s:32:\"389393907c09c3dc2d84894a98796e5d\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1667275200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1667275200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"419e0853caa6137df87a730e67a12e1d\";a:10:{s:4:\"hash\";s:32:\"419e0853caa6137df87a730e67a12e1d\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1667275200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/exact_date~1667275200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ebd90dcbfc0e0b89ced818a1997f653b\";a:10:{s:4:\"hash\";s:32:\"ebd90dcbfc0e0b89ced818a1997f653b\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1667275200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1667275200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c5d03a942ee6bf5a43e79820b3f68bfe\";a:10:{s:4:\"hash\";s:32:\"c5d03a942ee6bf5a43e79820b3f68bfe\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1682913600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/exact_date~1682913600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6acdd57124a477c6c49781a7f87e643d\";a:10:{s:4:\"hash\";s:32:\"6acdd57124a477c6c49781a7f87e643d\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/exact_date~1685592000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/exact_date~1685592000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3045c7e6ce79d9226bfbb4e4b86b3421\";a:10:{s:4:\"hash\";s:32:\"3045c7e6ce79d9226bfbb4e4b86b3421\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/page_offset~-1/time_limit~1612155600/cat_ids~87/request_format~json/\";s:4:\"path\";s:89:\"/events/action~month/page_offset~-1/time_limit~1612155600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"528f9bbce005206be24a5674b8d472dc\";a:10:{s:4:\"hash\";s:32:\"528f9bbce005206be24a5674b8d472dc\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/page_offset~-1/time_limit~1612155600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:92:\"/events/action~month/page_offset~-1/time_limit~1612155600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f88cb80b1a287e23fb4cd075036c09d5\";a:10:{s:4:\"hash\";s:32:\"f88cb80b1a287e23fb4cd075036c09d5\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/page_offset~-1/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:92:\"/events/action~month/page_offset~-1/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7ae32a2de261f9b907e48cf37ff9b29c\";a:10:{s:4:\"hash\";s:32:\"7ae32a2de261f9b907e48cf37ff9b29c\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/page_offset~-1/time_limit~1612155600/cat_ids~89/request_format~json/\";s:4:\"path\";s:89:\"/events/action~month/page_offset~-1/time_limit~1612155600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"266b09079f2d3b045f13298a164a537d\";a:10:{s:4:\"hash\";s:32:\"266b09079f2d3b045f13298a164a537d\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/page_offset~-1/time_limit~1612155600/request_format~json/\";s:4:\"path\";s:78:\"/events/action~month/page_offset~-1/time_limit~1612155600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"75281f5bda22502c24f099fc0c3f73c2\";a:10:{s:4:\"hash\";s:32:\"75281f5bda22502c24f099fc0c3f73c2\";s:3:\"url\";s:145:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/page_offset~1/time_limit~1612155600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:91:\"/events/action~month/page_offset~1/time_limit~1612155600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bcd971c212933c2729feb9526bca288c\";a:10:{s:4:\"hash\";s:32:\"bcd971c212933c2729feb9526bca288c\";s:3:\"url\";s:142:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/page_offset~1/time_limit~1612155600/cat_ids~88/request_format~json/\";s:4:\"path\";s:88:\"/events/action~month/page_offset~1/time_limit~1612155600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9ea78748da360b966fcb6eedc6220329\";a:10:{s:4:\"hash\";s:32:\"9ea78748da360b966fcb6eedc6220329\";s:3:\"url\";s:145:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/page_offset~1/time_limit~1612155600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:91:\"/events/action~month/page_offset~1/time_limit~1612155600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5e6d46c0d6cdfb6b8e6d246a1cf685c2\";a:10:{s:4:\"hash\";s:32:\"5e6d46c0d6cdfb6b8e6d246a1cf685c2\";s:3:\"url\";s:148:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/page_offset~1/time_limit~1612155600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:94:\"/events/action~month/page_offset~1/time_limit~1612155600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0043e2361e02a3b9e4966fe0c48bc021\";a:10:{s:4:\"hash\";s:32:\"0043e2361e02a3b9e4966fe0c48bc021\";s:3:\"url\";s:145:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/page_offset~1/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:91:\"/events/action~month/page_offset~1/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"41112d9f6ce08f3e49474b092763a818\";a:10:{s:4:\"hash\";s:32:\"41112d9f6ce08f3e49474b092763a818\";s:3:\"url\";s:142:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/page_offset~1/time_limit~1612155600/cat_ids~89/request_format~json/\";s:4:\"path\";s:88:\"/events/action~month/page_offset~1/time_limit~1612155600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"01dc5e3ee8313b23b265048d5f388c43\";a:10:{s:4:\"hash\";s:32:\"01dc5e3ee8313b23b265048d5f388c43\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/page_offset~1/time_limit~1612155600/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/page_offset~1/time_limit~1612155600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c06ff789d2821a46e5b9a2feb5670cd\";a:10:{s:4:\"hash\";s:32:\"2c06ff789d2821a46e5b9a2feb5670cd\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1557201600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1557201600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"854119006671c474345e6679c8967918\";a:10:{s:4:\"hash\";s:32:\"854119006671c474345e6679c8967918\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1558411200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1558411200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d2cb7deae1af5ba9b8346e6212135fc5\";a:10:{s:4:\"hash\";s:32:\"d2cb7deae1af5ba9b8346e6212135fc5\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1558497600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1558497600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7d6e78652383ccb1501bf2ca31b80ba9\";a:10:{s:4:\"hash\";s:32:\"7d6e78652383ccb1501bf2ca31b80ba9\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1558929600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1558929600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a3f587243bdd81bf9354943f475acfe7\";a:10:{s:4:\"hash\";s:32:\"a3f587243bdd81bf9354943f475acfe7\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1559620800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1559620800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"db27302bf13ce29396138dcc977079c3\";a:10:{s:4:\"hash\";s:32:\"db27302bf13ce29396138dcc977079c3\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1559707200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1559707200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"74d5b93e161022d7470e623368b834da\";a:10:{s:4:\"hash\";s:32:\"74d5b93e161022d7470e623368b834da\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1560052800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/time_limit~1560052800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6b5b35d9aceaf7696e4245d0251952f3\";a:10:{s:4:\"hash\";s:32:\"6b5b35d9aceaf7696e4245d0251952f3\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1560225600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/time_limit~1560225600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3722f28a69ecb66ecc8d9f6fc317ae45\";a:10:{s:4:\"hash\";s:32:\"3722f28a69ecb66ecc8d9f6fc317ae45\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1560312000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1560312000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"26201ec74b383a279974862141f1de05\";a:10:{s:4:\"hash\";s:32:\"26201ec74b383a279974862141f1de05\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1560830400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/time_limit~1560830400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ccde03e746ce4065f07290ddb8b81ead\";a:10:{s:4:\"hash\";s:32:\"ccde03e746ce4065f07290ddb8b81ead\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1561176000/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1561176000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5cfefed39e6b04acd040110137e1c5b6\";a:10:{s:4:\"hash\";s:32:\"5cfefed39e6b04acd040110137e1c5b6\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1561953600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1561953600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3ad0a240962f6278a29db3ac9e3492fd\";a:10:{s:4:\"hash\";s:32:\"3ad0a240962f6278a29db3ac9e3492fd\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1588737600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1588737600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7993d76e5e5f44fdcb08a09f3e533337\";a:10:{s:4:\"hash\";s:32:\"7993d76e5e5f44fdcb08a09f3e533337\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1590379200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1590379200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e430d00a26aafff95cbc648a3e93b34e\";a:10:{s:4:\"hash\";s:32:\"e430d00a26aafff95cbc648a3e93b34e\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1590552000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1590552000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e3b402254834940f36832e60dd67a31e\";a:10:{s:4:\"hash\";s:32:\"e3b402254834940f36832e60dd67a31e\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1590638400/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1590638400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0e8114ff0d5412d90866eb3f38a7701c\";a:10:{s:4:\"hash\";s:32:\"0e8114ff0d5412d90866eb3f38a7701c\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1590984000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1590984000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f04d52c9d3eef2f9968a016f4627b970\";a:10:{s:4:\"hash\";s:32:\"f04d52c9d3eef2f9968a016f4627b970\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1590984000/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1590984000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2652d783853c26dc82487710111603fc\";a:10:{s:4:\"hash\";s:32:\"2652d783853c26dc82487710111603fc\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1590984000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1590984000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d0cb82db33e3b92b87627186f7b75b51\";a:10:{s:4:\"hash\";s:32:\"d0cb82db33e3b92b87627186f7b75b51\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1591070400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/time_limit~1591070400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8db9b2982508848b4185f85f8d573ddd\";a:10:{s:4:\"hash\";s:32:\"8db9b2982508848b4185f85f8d573ddd\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1591675200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/time_limit~1591675200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a3dabbd139f83e859f0474d59e43d079\";a:10:{s:4:\"hash\";s:32:\"a3dabbd139f83e859f0474d59e43d079\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1592020800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1592020800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1fa55f06e1e8b67a28bc630473ec8292\";a:10:{s:4:\"hash\";s:32:\"1fa55f06e1e8b67a28bc630473ec8292\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1592107200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1592107200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"05b4df0855b1366480a5d4ad8560fbe7\";a:10:{s:4:\"hash\";s:32:\"05b4df0855b1366480a5d4ad8560fbe7\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1593576000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1593576000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"47b3d83529e6463274ff977ac3ea02de\";a:10:{s:4:\"hash\";s:32:\"47b3d83529e6463274ff977ac3ea02de\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1593662400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/time_limit~1593662400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0874b2e3a0753544cb00d2e1b8c691fc\";a:10:{s:4:\"hash\";s:32:\"0874b2e3a0753544cb00d2e1b8c691fc\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1593835200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1593835200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"390873d81c16489c08568d8ec15a44a6\";a:10:{s:4:\"hash\";s:32:\"390873d81c16489c08568d8ec15a44a6\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1594612800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1594612800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9ccbf7b2a3d4fdcd3e661eb1386460b3\";a:10:{s:4:\"hash\";s:32:\"9ccbf7b2a3d4fdcd3e661eb1386460b3\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1594785600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1594785600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cdc130493e5c9a4a61d10de8843385db\";a:10:{s:4:\"hash\";s:32:\"cdc130493e5c9a4a61d10de8843385db\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1594958400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1594958400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"666b2517682d582ab95436ef29ec9198\";a:10:{s:4:\"hash\";s:32:\"666b2517682d582ab95436ef29ec9198\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1595131200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1595131200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"76a6c2c736577c9cd6733242789e402f\";a:10:{s:4:\"hash\";s:32:\"76a6c2c736577c9cd6733242789e402f\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1595908800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1595908800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"312c8b324f95d6db9eaae9bbcaa2d927\";a:10:{s:4:\"hash\";s:32:\"312c8b324f95d6db9eaae9bbcaa2d927\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1596254400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1596254400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"284ed58f233b5ebf12d6d73d4f42e96c\";a:10:{s:4:\"hash\";s:32:\"284ed58f233b5ebf12d6d73d4f42e96c\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1596859200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1596859200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"43e9c7b62e1340a5675e1a3ea7777f42\";a:10:{s:4:\"hash\";s:32:\"43e9c7b62e1340a5675e1a3ea7777f42\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1597032000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1597032000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"091f4919df73bb7becf5892d2cdd12e4\";a:10:{s:4:\"hash\";s:32:\"091f4919df73bb7becf5892d2cdd12e4\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1597377600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1597377600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8c6bda8406fbb27d013db8e895007944\";a:10:{s:4:\"hash\";s:32:\"8c6bda8406fbb27d013db8e895007944\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1604203200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1604203200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fe761a15cb65def35c87a627dbe6c105\";a:10:{s:4:\"hash\";s:32:\"fe761a15cb65def35c87a627dbe6c105\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1605070800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1605070800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7b83113fc95c485a8e239f92ba7b98f0\";a:10:{s:4:\"hash\";s:32:\"7b83113fc95c485a8e239f92ba7b98f0\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1605243600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1605243600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bfbf4b31abbb64f5c94c9e5c7616ae1b\";a:10:{s:4:\"hash\";s:32:\"bfbf4b31abbb64f5c94c9e5c7616ae1b\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1605762000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1605762000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c3dc8398bbdcca6730963dbd12ecdf3\";a:10:{s:4:\"hash\";s:32:\"3c3dc8398bbdcca6730963dbd12ecdf3\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1612069200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1612069200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c5e54bcf40d9e8f61bb86775d405d9ee\";a:10:{s:4:\"hash\";s:32:\"c5e54bcf40d9e8f61bb86775d405d9ee\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1612155600/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/time_limit~1612155600/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f77531db4dcfbdf950862a8959adeaf\";a:10:{s:4:\"hash\";s:32:\"7f77531db4dcfbdf950862a8959adeaf\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1612155600/cat_ids~87/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1612155600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"94f585ee07b29c942f2d2a1e9c3a7ced\";a:10:{s:4:\"hash\";s:32:\"94f585ee07b29c942f2d2a1e9c3a7ced\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1612155600/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/time_limit~1612155600/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff3c3844358c97a898be739266af27be\";a:10:{s:4:\"hash\";s:32:\"ff3c3844358c97a898be739266af27be\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1612155600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/time_limit~1612155600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c3812a4fdde5d3f460b1793b07027c22\";a:10:{s:4:\"hash\";s:32:\"c3812a4fdde5d3f460b1793b07027c22\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1612155600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/time_limit~1612155600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b5128ff4b2a933a1a95466ee3544b7d1\";a:10:{s:4:\"hash\";s:32:\"b5128ff4b2a933a1a95466ee3544b7d1\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1612155600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/time_limit~1612155600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3079b241bb8f148233fe4a01257c9384\";a:10:{s:4:\"hash\";s:32:\"3079b241bb8f148233fe4a01257c9384\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1612155600/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1612155600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cb21c7b0b352a3c86d18de43569ec872\";a:10:{s:4:\"hash\";s:32:\"cb21c7b0b352a3c86d18de43569ec872\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1612155600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/time_limit~1612155600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1e51863555a5e561f5d72f9a0714c442\";a:10:{s:4:\"hash\";s:32:\"1e51863555a5e561f5d72f9a0714c442\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1612155600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/time_limit~1612155600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"684a00dd70c66a7edcf58357aa0829b7\";a:10:{s:4:\"hash\";s:32:\"684a00dd70c66a7edcf58357aa0829b7\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1612155600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/time_limit~1612155600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d22ef776c88a793214ff277d718561cc\";a:10:{s:4:\"hash\";s:32:\"d22ef776c88a793214ff277d718561cc\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1612155600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1612155600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"50414621395052f1b366ba8f873b8ec4\";a:10:{s:4:\"hash\";s:32:\"50414621395052f1b366ba8f873b8ec4\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1612155600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1612155600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c0d9ba68a269f1337e9621b608f44bcc\";a:10:{s:4:\"hash\";s:32:\"c0d9ba68a269f1337e9621b608f44bcc\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1612242000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/time_limit~1612242000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d6fc52daca98733074a5e735fb2d4a80\";a:10:{s:4:\"hash\";s:32:\"d6fc52daca98733074a5e735fb2d4a80\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1612760400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/time_limit~1612760400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"54aacb55c50d4b90ea2ba4ab69549077\";a:10:{s:4:\"hash\";s:32:\"54aacb55c50d4b90ea2ba4ab69549077\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1612760400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1612760400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ddd5a1ebaa2c0a4afb30ccc21bdfa468\";a:10:{s:4:\"hash\";s:32:\"ddd5a1ebaa2c0a4afb30ccc21bdfa468\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1619323200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1619323200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"23a72dd9345b0138fc145a4e4eace019\";a:10:{s:4:\"hash\";s:32:\"23a72dd9345b0138fc145a4e4eace019\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1619841600/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1619841600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6c8f477fcda4f296602dd5a04571b98c\";a:10:{s:4:\"hash\";s:32:\"6c8f477fcda4f296602dd5a04571b98c\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1619841600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1619841600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e858b4bcd090bb1dc90f5b1d55811829\";a:10:{s:4:\"hash\";s:32:\"e858b4bcd090bb1dc90f5b1d55811829\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1620532800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1620532800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"63a7f6989155eef0947c40d94c4514a0\";a:10:{s:4:\"hash\";s:32:\"63a7f6989155eef0947c40d94c4514a0\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1620705600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1620705600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ab4131de428fc0bb0eeea6ead1efcdc6\";a:10:{s:4:\"hash\";s:32:\"ab4131de428fc0bb0eeea6ead1efcdc6\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1620964800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1620964800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cb07ac8835711c2fbf8e300162df05ef\";a:10:{s:4:\"hash\";s:32:\"cb07ac8835711c2fbf8e300162df05ef\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1621051200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1621051200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cf50fe096b829c2e49c33b72b64c9b1c\";a:10:{s:4:\"hash\";s:32:\"cf50fe096b829c2e49c33b72b64c9b1c\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1623211200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1623211200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7d158b0726fcf11c4a14332f6dc55c6c\";a:10:{s:4:\"hash\";s:32:\"7d158b0726fcf11c4a14332f6dc55c6c\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1623384000/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1623384000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8950c7908b6fc0e86bed646add57e38d\";a:10:{s:4:\"hash\";s:32:\"8950c7908b6fc0e86bed646add57e38d\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1623384000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1623384000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"54181873a52e2023b13f3cda4df38e4d\";a:10:{s:4:\"hash\";s:32:\"54181873a52e2023b13f3cda4df38e4d\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1623643200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1623643200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1aef2504d4225efecb35fa64cdc8a4f2\";a:10:{s:4:\"hash\";s:32:\"1aef2504d4225efecb35fa64cdc8a4f2\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1623729600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1623729600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"240818ee64d8736dc6b46a900c6b33f7\";a:10:{s:4:\"hash\";s:32:\"240818ee64d8736dc6b46a900c6b33f7\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1623988800/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1623988800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"749e123a82bc799aa9e70862b8216d28\";a:10:{s:4:\"hash\";s:32:\"749e123a82bc799aa9e70862b8216d28\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1623988800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/time_limit~1623988800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e53295a9443117a938640ef207ac4242\";a:10:{s:4:\"hash\";s:32:\"e53295a9443117a938640ef207ac4242\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1623988800/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1623988800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"59e5a28e694ca0f3a5772b8e4fc1e02d\";a:10:{s:4:\"hash\";s:32:\"59e5a28e694ca0f3a5772b8e4fc1e02d\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1624075200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1624075200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"55e1a22e0c0eaced02fda0606985a019\";a:10:{s:4:\"hash\";s:32:\"55e1a22e0c0eaced02fda0606985a019\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1625112000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:80:\"/events/action~month/time_limit~1625112000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"02a2bd94d9ad8fecc06ec4847b327fd5\";a:10:{s:4:\"hash\";s:32:\"02a2bd94d9ad8fecc06ec4847b327fd5\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1625112000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/time_limit~1625112000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"34dbfe6dc8e2fca43b2ef3bb6f587988\";a:10:{s:4:\"hash\";s:32:\"34dbfe6dc8e2fca43b2ef3bb6f587988\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1626494400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1626494400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"09b296c533737d6c290412457b7d601f\";a:10:{s:4:\"hash\";s:32:\"09b296c533737d6c290412457b7d601f\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1626753600/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1626753600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f4386fe92d7c7c0a82fe33c7d07dcffb\";a:10:{s:4:\"hash\";s:32:\"f4386fe92d7c7c0a82fe33c7d07dcffb\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1627358400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:77:\"/events/action~month/time_limit~1627358400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4a3eb78eeabbd2be8cfa757b5089ba17\";a:10:{s:4:\"hash\";s:32:\"4a3eb78eeabbd2be8cfa757b5089ba17\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1627358400/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1627358400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e86d277a07ce8e4509d3498be85a226d\";a:10:{s:4:\"hash\";s:32:\"e86d277a07ce8e4509d3498be85a226d\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1637125200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1637125200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8f4800120e3ddc2b85cff45ee8306c28\";a:10:{s:4:\"hash\";s:32:\"8f4800120e3ddc2b85cff45ee8306c28\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1637298000/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1637298000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ae0a618e284b224ca09ebe5b1c841447\";a:10:{s:4:\"hash\";s:32:\"ae0a618e284b224ca09ebe5b1c841447\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1637384400/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1637384400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9b731992b03a8043cd33b6a5fb49ed81\";a:10:{s:4:\"hash\";s:32:\"9b731992b03a8043cd33b6a5fb49ed81\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1637557200/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1637557200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"592e04e496686b6e1bdd261bb06bff6b\";a:10:{s:4:\"hash\";s:32:\"592e04e496686b6e1bdd261bb06bff6b\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1637816400/cat_ids~88/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1637816400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"969001912618a42ee157c6ed14a1bb94\";a:10:{s:4:\"hash\";s:32:\"969001912618a42ee157c6ed14a1bb94\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1637816400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1637816400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"424e7899a2f8c8fb52dd9d0f16fb61f2\";a:10:{s:4:\"hash\";s:32:\"424e7899a2f8c8fb52dd9d0f16fb61f2\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1637989200/cat_ids~89/request_format~json/\";s:4:\"path\";s:74:\"/events/action~month/time_limit~1637989200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ea8547a6d365da6b7f35ec7248eade48\";a:10:{s:4:\"hash\";s:32:\"ea8547a6d365da6b7f35ec7248eade48\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1637989200/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1637989200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c0e1416e62694830d6d973d538e21ba7\";a:10:{s:4:\"hash\";s:32:\"c0e1416e62694830d6d973d538e21ba7\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~month/time_limit~1638248400/request_format~json/\";s:4:\"path\";s:63:\"/events/action~month/time_limit~1638248400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b34b72da26ff807be99b0a98542962e3\";a:10:{s:4:\"hash\";s:32:\"b34b72da26ff807be99b0a98542962e3\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-1-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~1-1-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"930ebdb81dad61ceac486bc5152c7fc4\";a:10:{s:4:\"hash\";s:32:\"930ebdb81dad61ceac486bc5152c7fc4\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-10-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-10-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e2236071dad295e19c0792cdde484e51\";a:10:{s:4:\"hash\";s:32:\"e2236071dad295e19c0792cdde484e51\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-11-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-11-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e7bb7a45f3f7e6cc1b95b61c21fc781c\";a:10:{s:4:\"hash\";s:32:\"e7bb7a45f3f7e6cc1b95b61c21fc781c\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-12-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-12-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f0e716370bdd75e5b559f88bc21f2e2f\";a:10:{s:4:\"hash\";s:32:\"f0e716370bdd75e5b559f88bc21f2e2f\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-13-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-13-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c4f2d2a388f13f733f34837129678342\";a:10:{s:4:\"hash\";s:32:\"c4f2d2a388f13f733f34837129678342\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-14-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-14-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a6a4fee270a935477c28ddbb39f4192a\";a:10:{s:4:\"hash\";s:32:\"a6a4fee270a935477c28ddbb39f4192a\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-15-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-15-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4480ab39225e48ed1dc079e3990c3f6e\";a:10:{s:4:\"hash\";s:32:\"4480ab39225e48ed1dc079e3990c3f6e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-16-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-16-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a6b602a700f3e6f7e14d32fe9a4c6cef\";a:10:{s:4:\"hash\";s:32:\"a6b602a700f3e6f7e14d32fe9a4c6cef\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-17-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-17-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0c4a9ee90af5b57cbd79187d2fa053b4\";a:10:{s:4:\"hash\";s:32:\"0c4a9ee90af5b57cbd79187d2fa053b4\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-18-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-18-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"796b690d9e4f4922ed3d49bec7ba44c9\";a:10:{s:4:\"hash\";s:32:\"796b690d9e4f4922ed3d49bec7ba44c9\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-19-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-19-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"77224adf484d57bf5b7455c522c6f9c3\";a:10:{s:4:\"hash\";s:32:\"77224adf484d57bf5b7455c522c6f9c3\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-2-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~1-2-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b29d9c845d048cfcbe390de9ba896bb2\";a:10:{s:4:\"hash\";s:32:\"b29d9c845d048cfcbe390de9ba896bb2\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-20-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-20-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6eab34958512b731bf4e9e2a1c3e422a\";a:10:{s:4:\"hash\";s:32:\"6eab34958512b731bf4e9e2a1c3e422a\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-21-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-21-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bf1a0b5f225eb369f54d8c5423cb0274\";a:10:{s:4:\"hash\";s:32:\"bf1a0b5f225eb369f54d8c5423cb0274\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-22-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-22-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1248dd0a8db76ee6888c5c82b42ec6d3\";a:10:{s:4:\"hash\";s:32:\"1248dd0a8db76ee6888c5c82b42ec6d3\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-23-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-23-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"31b09a68140e7d8e13060843dea83b42\";a:10:{s:4:\"hash\";s:32:\"31b09a68140e7d8e13060843dea83b42\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-24-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-24-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4ba350098a4a0d4f1508edc7554834dc\";a:10:{s:4:\"hash\";s:32:\"4ba350098a4a0d4f1508edc7554834dc\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-24-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-24-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5170dce9bea8848bd056ade10a0fd3a1\";a:10:{s:4:\"hash\";s:32:\"5170dce9bea8848bd056ade10a0fd3a1\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-25-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-25-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"98aeb7b3769202f1c7dd1e0dcfd67060\";a:10:{s:4:\"hash\";s:32:\"98aeb7b3769202f1c7dd1e0dcfd67060\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-26-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-26-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6532fdfede59384909d04a7a6270244d\";a:10:{s:4:\"hash\";s:32:\"6532fdfede59384909d04a7a6270244d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-27-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-27-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f1a8cc83dc91006011e92a096a98edc\";a:10:{s:4:\"hash\";s:32:\"7f1a8cc83dc91006011e92a096a98edc\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-28-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-28-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5da4a48bc44df95089d588bad7b25313\";a:10:{s:4:\"hash\";s:32:\"5da4a48bc44df95089d588bad7b25313\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-28-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-28-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"51eada9befd2eaed992a8910dcef6372\";a:10:{s:4:\"hash\";s:32:\"51eada9befd2eaed992a8910dcef6372\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-29-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-29-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d401c3c781dafde1704f66f48e3f9d3e\";a:10:{s:4:\"hash\";s:32:\"d401c3c781dafde1704f66f48e3f9d3e\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-3-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~1-3-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9a508b6c3338eb5c9617596b07ac352e\";a:10:{s:4:\"hash\";s:32:\"9a508b6c3338eb5c9617596b07ac352e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-30-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-30-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9a065fd5540ad8134e1980646b4a5ca2\";a:10:{s:4:\"hash\";s:32:\"9a065fd5540ad8134e1980646b4a5ca2\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-31-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~1-31-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7a94e81f26b109cd8b1e790f4d2a8c2f\";a:10:{s:4:\"hash\";s:32:\"7a94e81f26b109cd8b1e790f4d2a8c2f\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-4-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~1-4-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4c28a325a2a491fe42a18011606d656f\";a:10:{s:4:\"hash\";s:32:\"4c28a325a2a491fe42a18011606d656f\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-5-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~1-5-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c2b54a4db3d35a003bf6f52e0ea19237\";a:10:{s:4:\"hash\";s:32:\"c2b54a4db3d35a003bf6f52e0ea19237\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-6-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~1-6-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"959c74a91bbdf495949263b632366fbf\";a:10:{s:4:\"hash\";s:32:\"959c74a91bbdf495949263b632366fbf\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-7-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~1-7-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d09122b484d2db8cf401efb60b217054\";a:10:{s:4:\"hash\";s:32:\"d09122b484d2db8cf401efb60b217054\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-8-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~1-8-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ef92afe7b7f6c97ef4bdb36b84323f1\";a:10:{s:4:\"hash\";s:32:\"8ef92afe7b7f6c97ef4bdb36b84323f1\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1-9-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~1-9-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0ff46cf40ccc838547fd3d2297b8e6e6\";a:10:{s:4:\"hash\";s:32:\"0ff46cf40ccc838547fd3d2297b8e6e6\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-1-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~10-1-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"255fd9e1fced87b7e550c59fae42b3c7\";a:10:{s:4:\"hash\";s:32:\"255fd9e1fced87b7e550c59fae42b3c7\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-10-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-10-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"84bf62b724ca1dc7850bcacbdd9193b9\";a:10:{s:4:\"hash\";s:32:\"84bf62b724ca1dc7850bcacbdd9193b9\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-11-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-11-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"af15c245305bb72770b31a490dba024d\";a:10:{s:4:\"hash\";s:32:\"af15c245305bb72770b31a490dba024d\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-12-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-12-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5cc243f98f2a59b26a3cbbffcaeae848\";a:10:{s:4:\"hash\";s:32:\"5cc243f98f2a59b26a3cbbffcaeae848\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-13-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-13-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2700e8f23c9fa43f9de3d217d41734c3\";a:10:{s:4:\"hash\";s:32:\"2700e8f23c9fa43f9de3d217d41734c3\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-14-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-14-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1558968cea02602623887d4945b2b5dd\";a:10:{s:4:\"hash\";s:32:\"1558968cea02602623887d4945b2b5dd\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-15-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-15-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"baced4ac2bcf31a0b6faa661ef8e4a8b\";a:10:{s:4:\"hash\";s:32:\"baced4ac2bcf31a0b6faa661ef8e4a8b\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-16-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-16-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"41902b732a49814e4c09c225427d8312\";a:10:{s:4:\"hash\";s:32:\"41902b732a49814e4c09c225427d8312\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-17-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-17-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"247eb6e9d8f19d3050ea0537029ddb4a\";a:10:{s:4:\"hash\";s:32:\"247eb6e9d8f19d3050ea0537029ddb4a\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-17-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-17-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7d71eac01a2338f1bc5c20871c5b741a\";a:10:{s:4:\"hash\";s:32:\"7d71eac01a2338f1bc5c20871c5b741a\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-18-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-18-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a3cdf6e87588dc9d09b15fd58b880fce\";a:10:{s:4:\"hash\";s:32:\"a3cdf6e87588dc9d09b15fd58b880fce\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-18-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-18-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f93ad37492b7bd4bb79a328cdf5f9ad3\";a:10:{s:4:\"hash\";s:32:\"f93ad37492b7bd4bb79a328cdf5f9ad3\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-19-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-19-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"63f7e3588e7cd36199951a81c4236893\";a:10:{s:4:\"hash\";s:32:\"63f7e3588e7cd36199951a81c4236893\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-2-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~10-2-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d605f84cb82db525d4928f9854767093\";a:10:{s:4:\"hash\";s:32:\"d605f84cb82db525d4928f9854767093\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-20-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-20-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b032c8e0d1f779e28bbf4aa1cd4b0496\";a:10:{s:4:\"hash\";s:32:\"b032c8e0d1f779e28bbf4aa1cd4b0496\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-21-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-21-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"85aece1f4f52ef281a171eff4c989505\";a:10:{s:4:\"hash\";s:32:\"85aece1f4f52ef281a171eff4c989505\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-22-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-22-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c91a74148967050f643b245e123b5190\";a:10:{s:4:\"hash\";s:32:\"c91a74148967050f643b245e123b5190\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-22-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-22-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"38f4fe096666a3e11f6ed30e9a072570\";a:10:{s:4:\"hash\";s:32:\"38f4fe096666a3e11f6ed30e9a072570\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-23-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-23-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"527d7b7a684714de6b1b617e805d800b\";a:10:{s:4:\"hash\";s:32:\"527d7b7a684714de6b1b617e805d800b\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-24-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-24-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f10321aadbe0a25452a27d21c4d47d13\";a:10:{s:4:\"hash\";s:32:\"f10321aadbe0a25452a27d21c4d47d13\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-25-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-25-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9dcd8a72bcf2a6285a144a6dbfacec6c\";a:10:{s:4:\"hash\";s:32:\"9dcd8a72bcf2a6285a144a6dbfacec6c\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-25-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-25-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"637880a39ddf2522e9a1fbd65eafca87\";a:10:{s:4:\"hash\";s:32:\"637880a39ddf2522e9a1fbd65eafca87\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-26-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-26-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e97af304b00a2e0a0a35557e8a730582\";a:10:{s:4:\"hash\";s:32:\"e97af304b00a2e0a0a35557e8a730582\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-27-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-27-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ac203947667a41ef8e44665fec5a93d\";a:10:{s:4:\"hash\";s:32:\"8ac203947667a41ef8e44665fec5a93d\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-28-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-28-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8557776acfd796a05eed278c794f02f8\";a:10:{s:4:\"hash\";s:32:\"8557776acfd796a05eed278c794f02f8\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-29-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-29-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3d2a51d89427217b9dfd48f9a69e1e93\";a:10:{s:4:\"hash\";s:32:\"3d2a51d89427217b9dfd48f9a69e1e93\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-3-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~10-3-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"66358e147e6de03e0183dbce4585250a\";a:10:{s:4:\"hash\";s:32:\"66358e147e6de03e0183dbce4585250a\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-30-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-30-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"308c349e99b4fe8fa0f5e61684251122\";a:10:{s:4:\"hash\";s:32:\"308c349e99b4fe8fa0f5e61684251122\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-31-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~10-31-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9b56cde6ed8cfea0bf76da86ae9909e0\";a:10:{s:4:\"hash\";s:32:\"9b56cde6ed8cfea0bf76da86ae9909e0\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-4-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~10-4-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bfbbcb64088a1b649481ec82d571fdf3\";a:10:{s:4:\"hash\";s:32:\"bfbbcb64088a1b649481ec82d571fdf3\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-5-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~10-5-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"11f7d347b462a753fed045cb2018e8f2\";a:10:{s:4:\"hash\";s:32:\"11f7d347b462a753fed045cb2018e8f2\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-6-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~10-6-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5379ca2d853da64a398facebbeada78c\";a:10:{s:4:\"hash\";s:32:\"5379ca2d853da64a398facebbeada78c\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-7-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~10-7-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bbe222cfc2c2a34608b50d48786f1574\";a:10:{s:4:\"hash\";s:32:\"bbe222cfc2c2a34608b50d48786f1574\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-8-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~10-8-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"74d7ace95590ebfa92b2134bfd712302\";a:10:{s:4:\"hash\";s:32:\"74d7ace95590ebfa92b2134bfd712302\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~10-9-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~10-9-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8f859905c511c82c1fd4f2ece8e436a2\";a:10:{s:4:\"hash\";s:32:\"8f859905c511c82c1fd4f2ece8e436a2\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-1-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-1-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"36031a8cdafa3a8d413e57f0957f0d7e\";a:10:{s:4:\"hash\";s:32:\"36031a8cdafa3a8d413e57f0957f0d7e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-1-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-1-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f60e1c1cb539a38f130f88468b1ebd6d\";a:10:{s:4:\"hash\";s:32:\"f60e1c1cb539a38f130f88468b1ebd6d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-1-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-1-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7573d492f833f61f02670dd6280e7f1b\";a:10:{s:4:\"hash\";s:32:\"7573d492f833f61f02670dd6280e7f1b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-1-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-1-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3cd5bcb2747c493251a84ed5e7be9bb7\";a:10:{s:4:\"hash\";s:32:\"3cd5bcb2747c493251a84ed5e7be9bb7\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-10-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-10-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c7d1c59085f59bf923fc31658dda5187\";a:10:{s:4:\"hash\";s:32:\"c7d1c59085f59bf923fc31658dda5187\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-10-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-10-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eb601001c825b8d76ac6cefcadc86b1c\";a:10:{s:4:\"hash\";s:32:\"eb601001c825b8d76ac6cefcadc86b1c\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-10-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-10-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ce7add3e546cd0cb1f345ca7c5dd994a\";a:10:{s:4:\"hash\";s:32:\"ce7add3e546cd0cb1f345ca7c5dd994a\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-10-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-10-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4297c697403c8de05c93c64120363227\";a:10:{s:4:\"hash\";s:32:\"4297c697403c8de05c93c64120363227\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-11-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-11-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"31375740a95606b70aa07188bd2cd138\";a:10:{s:4:\"hash\";s:32:\"31375740a95606b70aa07188bd2cd138\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-11-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-11-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff9208952b168fda065d401e8fce24e4\";a:10:{s:4:\"hash\";s:32:\"ff9208952b168fda065d401e8fce24e4\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-11-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-11-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8d4632e6b9b75c23c89cd71084151e1e\";a:10:{s:4:\"hash\";s:32:\"8d4632e6b9b75c23c89cd71084151e1e\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-11-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-11-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"36461a9999e5b9bbde3c1974266d59ad\";a:10:{s:4:\"hash\";s:32:\"36461a9999e5b9bbde3c1974266d59ad\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-12-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-12-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2f6bbb2f53acbea6bd4948bbb44d3787\";a:10:{s:4:\"hash\";s:32:\"2f6bbb2f53acbea6bd4948bbb44d3787\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-12-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-12-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"903f02e662a4a0ec113837f4681f7c34\";a:10:{s:4:\"hash\";s:32:\"903f02e662a4a0ec113837f4681f7c34\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-12-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-12-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cea4206e3158c167b6746f94a99bc22e\";a:10:{s:4:\"hash\";s:32:\"cea4206e3158c167b6746f94a99bc22e\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-12-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-12-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c063a83b64c9adbb221fee3f47283246\";a:10:{s:4:\"hash\";s:32:\"c063a83b64c9adbb221fee3f47283246\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-13-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-13-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d64e2efdf9e0914fbfcc450fb29a5c12\";a:10:{s:4:\"hash\";s:32:\"d64e2efdf9e0914fbfcc450fb29a5c12\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-13-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-13-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"95dee1cdcf55c47a41abbbf9826ea256\";a:10:{s:4:\"hash\";s:32:\"95dee1cdcf55c47a41abbbf9826ea256\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-13-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-13-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f848ff6c0a4b5e8d558ad7b8b96b7f5f\";a:10:{s:4:\"hash\";s:32:\"f848ff6c0a4b5e8d558ad7b8b96b7f5f\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-13-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-13-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"94282f3390dfe4bdfd9f0f742b57f5ff\";a:10:{s:4:\"hash\";s:32:\"94282f3390dfe4bdfd9f0f742b57f5ff\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-14-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-14-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ac4ecba6a30931e172b37312deb9a41d\";a:10:{s:4:\"hash\";s:32:\"ac4ecba6a30931e172b37312deb9a41d\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-14-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-14-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"67ce03e7a44efb56f8a7790462280839\";a:10:{s:4:\"hash\";s:32:\"67ce03e7a44efb56f8a7790462280839\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-14-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-14-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b911bdd86c91c45a127a6d85be86cf7d\";a:10:{s:4:\"hash\";s:32:\"b911bdd86c91c45a127a6d85be86cf7d\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-14-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-14-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"abd6c33963c4d251f8bba4f0544209f3\";a:10:{s:4:\"hash\";s:32:\"abd6c33963c4d251f8bba4f0544209f3\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-15-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-15-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ab4611a19ee95438f4817d5e44af001e\";a:10:{s:4:\"hash\";s:32:\"ab4611a19ee95438f4817d5e44af001e\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-15-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-15-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4c294c4948b006a1bfe53a83e6482c6c\";a:10:{s:4:\"hash\";s:32:\"4c294c4948b006a1bfe53a83e6482c6c\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-15-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-15-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6dfea1f2d0c6f53d2d698b1adfb5446d\";a:10:{s:4:\"hash\";s:32:\"6dfea1f2d0c6f53d2d698b1adfb5446d\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-15-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-15-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"63a27733cb8e45aa62b215a7fab8118b\";a:10:{s:4:\"hash\";s:32:\"63a27733cb8e45aa62b215a7fab8118b\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-16-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-16-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a6e63b994d379e5f4780e09a8ff50041\";a:10:{s:4:\"hash\";s:32:\"a6e63b994d379e5f4780e09a8ff50041\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-16-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-16-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d501d2e7175b24fed22a356e14852e40\";a:10:{s:4:\"hash\";s:32:\"d501d2e7175b24fed22a356e14852e40\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-16-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-16-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5d637564687699f624df492f7a682625\";a:10:{s:4:\"hash\";s:32:\"5d637564687699f624df492f7a682625\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-16-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-16-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a5b34526aaf053f5efd00b4b774461e4\";a:10:{s:4:\"hash\";s:32:\"a5b34526aaf053f5efd00b4b774461e4\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-17-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-17-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"75e7ad9a46cc9b057103ad7dbbfcf030\";a:10:{s:4:\"hash\";s:32:\"75e7ad9a46cc9b057103ad7dbbfcf030\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-17-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-17-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"27a8bfac5fdb4ab19d401c0fee14a0be\";a:10:{s:4:\"hash\";s:32:\"27a8bfac5fdb4ab19d401c0fee14a0be\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-17-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-17-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"324164ad3f1bf02ea2aa02f854451a53\";a:10:{s:4:\"hash\";s:32:\"324164ad3f1bf02ea2aa02f854451a53\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-17-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-17-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c9259cfbe5a29256f02bd483be43d738\";a:10:{s:4:\"hash\";s:32:\"c9259cfbe5a29256f02bd483be43d738\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-18-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-18-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b800652db3cbe36c9180bfc068c7663c\";a:10:{s:4:\"hash\";s:32:\"b800652db3cbe36c9180bfc068c7663c\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-18-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-18-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a8317c1d3196f295913ea21ea65b6c55\";a:10:{s:4:\"hash\";s:32:\"a8317c1d3196f295913ea21ea65b6c55\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-18-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-18-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e15b27509796036ab8dfb44fdf60157d\";a:10:{s:4:\"hash\";s:32:\"e15b27509796036ab8dfb44fdf60157d\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-18-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-18-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8e3822f31911c9121d7c3d2b8dd9b839\";a:10:{s:4:\"hash\";s:32:\"8e3822f31911c9121d7c3d2b8dd9b839\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-19-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-19-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6a28687be347aa7aaf26fcc4b73cc6a2\";a:10:{s:4:\"hash\";s:32:\"6a28687be347aa7aaf26fcc4b73cc6a2\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-19-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-19-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"38d781796a32f117c7767a0e62730cfe\";a:10:{s:4:\"hash\";s:32:\"38d781796a32f117c7767a0e62730cfe\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-19-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-19-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"17be4301398ae5a1ac8b8e86a670d8fb\";a:10:{s:4:\"hash\";s:32:\"17be4301398ae5a1ac8b8e86a670d8fb\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-19-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-19-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a5e120f45f268654d88b25429a8657ed\";a:10:{s:4:\"hash\";s:32:\"a5e120f45f268654d88b25429a8657ed\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-2-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-2-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c588a53261e4d3602a960dde4dd82b8b\";a:10:{s:4:\"hash\";s:32:\"c588a53261e4d3602a960dde4dd82b8b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-2-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-2-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"15ceae583fd2537e33b5610083f4a81e\";a:10:{s:4:\"hash\";s:32:\"15ceae583fd2537e33b5610083f4a81e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-2-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-2-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bc62847dd69c94c59fe0468088b0841d\";a:10:{s:4:\"hash\";s:32:\"bc62847dd69c94c59fe0468088b0841d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-2-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-2-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d6c091980890a049a40861616b255e02\";a:10:{s:4:\"hash\";s:32:\"d6c091980890a049a40861616b255e02\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-20-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-20-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7fa44817de147f18304b2e6b9300ac06\";a:10:{s:4:\"hash\";s:32:\"7fa44817de147f18304b2e6b9300ac06\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-20-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-20-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0c7cdd8b7fd7489c9a181be87c9c97df\";a:10:{s:4:\"hash\";s:32:\"0c7cdd8b7fd7489c9a181be87c9c97df\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-20-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-20-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"53a4cc9e890f3b2e99f63806abbd8e9b\";a:10:{s:4:\"hash\";s:32:\"53a4cc9e890f3b2e99f63806abbd8e9b\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-20-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-20-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dae2e1f63253d47c0db3db05fe0620a3\";a:10:{s:4:\"hash\";s:32:\"dae2e1f63253d47c0db3db05fe0620a3\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-21-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-21-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d35d1ec70683ae190fad3ce32ddc05d3\";a:10:{s:4:\"hash\";s:32:\"d35d1ec70683ae190fad3ce32ddc05d3\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-21-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-21-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9077ac020d1965949d7b841833f07ecf\";a:10:{s:4:\"hash\";s:32:\"9077ac020d1965949d7b841833f07ecf\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-21-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-21-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a710f62e95e539dda1909e9399a09362\";a:10:{s:4:\"hash\";s:32:\"a710f62e95e539dda1909e9399a09362\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-21-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-21-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"40c3deebe6292d2ce9d907412a2bec75\";a:10:{s:4:\"hash\";s:32:\"40c3deebe6292d2ce9d907412a2bec75\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-22-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-22-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a325c76e43fe53fcacbab821079dafdf\";a:10:{s:4:\"hash\";s:32:\"a325c76e43fe53fcacbab821079dafdf\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-22-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-22-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"99e760a71da49bcc32fc9649693a0796\";a:10:{s:4:\"hash\";s:32:\"99e760a71da49bcc32fc9649693a0796\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-22-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-22-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a1cc56932b14dbfa57a6f5f13d291100\";a:10:{s:4:\"hash\";s:32:\"a1cc56932b14dbfa57a6f5f13d291100\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-22-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-22-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"66539e9c90e1002179b8e31a26b8c981\";a:10:{s:4:\"hash\";s:32:\"66539e9c90e1002179b8e31a26b8c981\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-23-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-23-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"386147be5efccc51c974fbea3b1133d3\";a:10:{s:4:\"hash\";s:32:\"386147be5efccc51c974fbea3b1133d3\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-23-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-23-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dfbc1c7f5c3220e9d3c3e47ab0843843\";a:10:{s:4:\"hash\";s:32:\"dfbc1c7f5c3220e9d3c3e47ab0843843\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-23-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-23-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b0b7f7477593f09d27d7e46efc20cdc4\";a:10:{s:4:\"hash\";s:32:\"b0b7f7477593f09d27d7e46efc20cdc4\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-23-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-23-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4627c1ea4e4f8b903d5535de9f786f0c\";a:10:{s:4:\"hash\";s:32:\"4627c1ea4e4f8b903d5535de9f786f0c\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-24-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-24-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"60e131981d3beb2d0f441d821c24ace4\";a:10:{s:4:\"hash\";s:32:\"60e131981d3beb2d0f441d821c24ace4\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-24-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-24-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6a0b4dcc127254a0a278b82ae885dcbf\";a:10:{s:4:\"hash\";s:32:\"6a0b4dcc127254a0a278b82ae885dcbf\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-24-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-24-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"057d93dc1f1467b6ce9b9612686f533e\";a:10:{s:4:\"hash\";s:32:\"057d93dc1f1467b6ce9b9612686f533e\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-24-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-24-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a23db7d8ba18d1095cab4bb931bbd989\";a:10:{s:4:\"hash\";s:32:\"a23db7d8ba18d1095cab4bb931bbd989\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-25-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-25-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"247ef023f00e0f18b88089771db77a38\";a:10:{s:4:\"hash\";s:32:\"247ef023f00e0f18b88089771db77a38\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-25-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-25-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a05910ad23405aa230ebfa7a239e732\";a:10:{s:4:\"hash\";s:32:\"8a05910ad23405aa230ebfa7a239e732\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-25-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-25-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"30f4f1e37587085abbb6654ce46adbc9\";a:10:{s:4:\"hash\";s:32:\"30f4f1e37587085abbb6654ce46adbc9\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-25-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-25-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4f3245d3b0fffa9753999d1ed0b20d4f\";a:10:{s:4:\"hash\";s:32:\"4f3245d3b0fffa9753999d1ed0b20d4f\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-26-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-26-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e19b55289a6ebe617d282155a85aebe4\";a:10:{s:4:\"hash\";s:32:\"e19b55289a6ebe617d282155a85aebe4\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-26-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-26-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"01bdc34dc2af389cabe72197f1595e21\";a:10:{s:4:\"hash\";s:32:\"01bdc34dc2af389cabe72197f1595e21\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-26-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-26-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"faf4d85453a9d4bed84b02afbbd6c16c\";a:10:{s:4:\"hash\";s:32:\"faf4d85453a9d4bed84b02afbbd6c16c\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-26-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-26-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f300f092b4465f3460ac67f2468855ea\";a:10:{s:4:\"hash\";s:32:\"f300f092b4465f3460ac67f2468855ea\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-27-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-27-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a5430080714251b0958aebd2a52a4efa\";a:10:{s:4:\"hash\";s:32:\"a5430080714251b0958aebd2a52a4efa\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-27-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-27-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6dd8545b22bd28b7e4b153350fa93536\";a:10:{s:4:\"hash\";s:32:\"6dd8545b22bd28b7e4b153350fa93536\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-27-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-27-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"197a04fdbd49925f0ed7c8f0ad7490e1\";a:10:{s:4:\"hash\";s:32:\"197a04fdbd49925f0ed7c8f0ad7490e1\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-27-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-27-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3caf6a1f0f220f631767f1254ba3907e\";a:10:{s:4:\"hash\";s:32:\"3caf6a1f0f220f631767f1254ba3907e\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-28-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-28-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ebb09d340cf47071f50435ec8317efec\";a:10:{s:4:\"hash\";s:32:\"ebb09d340cf47071f50435ec8317efec\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-28-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-28-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aaee76bbaee049580a752cd997b9d87b\";a:10:{s:4:\"hash\";s:32:\"aaee76bbaee049580a752cd997b9d87b\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-28-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-28-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9f6c0deac7abef3ce2dd5e02731ffaa2\";a:10:{s:4:\"hash\";s:32:\"9f6c0deac7abef3ce2dd5e02731ffaa2\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-28-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-28-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c993227d012944de14a518e071adc9e1\";a:10:{s:4:\"hash\";s:32:\"c993227d012944de14a518e071adc9e1\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-29-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-29-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b19cd846226feb66106c779c7b0aac2d\";a:10:{s:4:\"hash\";s:32:\"b19cd846226feb66106c779c7b0aac2d\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-29-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-29-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a1d4f78d0dd81e6293096da6225cc4ac\";a:10:{s:4:\"hash\";s:32:\"a1d4f78d0dd81e6293096da6225cc4ac\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-29-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-29-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"65f02bec79f893eb960aaebb6004b2a4\";a:10:{s:4:\"hash\";s:32:\"65f02bec79f893eb960aaebb6004b2a4\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-29-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-29-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"64d5ce851388169556744744bdae04dc\";a:10:{s:4:\"hash\";s:32:\"64d5ce851388169556744744bdae04dc\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-3-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-3-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e1e9459f55291868e2ff3ceff1a9ed0e\";a:10:{s:4:\"hash\";s:32:\"e1e9459f55291868e2ff3ceff1a9ed0e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-3-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-3-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d292b182764fb764cd8ac9bf0d1d294\";a:10:{s:4:\"hash\";s:32:\"4d292b182764fb764cd8ac9bf0d1d294\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-3-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-3-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cfaa0c034a01ae08f7170a18789bb589\";a:10:{s:4:\"hash\";s:32:\"cfaa0c034a01ae08f7170a18789bb589\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-3-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-3-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"25c5d07be85058ae7948187f1d211d44\";a:10:{s:4:\"hash\";s:32:\"25c5d07be85058ae7948187f1d211d44\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-30-2018/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-30-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7fbcb6464f745c26ff60b08478ed98e0\";a:10:{s:4:\"hash\";s:32:\"7fbcb6464f745c26ff60b08478ed98e0\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-30-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-30-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"576616693f9243ade92d7a7adb3a4692\";a:10:{s:4:\"hash\";s:32:\"576616693f9243ade92d7a7adb3a4692\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-30-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-30-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bd090c48e2c4e0d4190b4694cecfb36d\";a:10:{s:4:\"hash\";s:32:\"bd090c48e2c4e0d4190b4694cecfb36d\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-30-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~11-30-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eadbd383cae1287cf10165f7a067e63d\";a:10:{s:4:\"hash\";s:32:\"eadbd383cae1287cf10165f7a067e63d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-4-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-4-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9fcb25e84731aae8b55a8838e1f4336e\";a:10:{s:4:\"hash\";s:32:\"9fcb25e84731aae8b55a8838e1f4336e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-4-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-4-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"11afaec21c18c2043a0828d2db47c0fd\";a:10:{s:4:\"hash\";s:32:\"11afaec21c18c2043a0828d2db47c0fd\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-4-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-4-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d9bf09d37e757abfa785487a50be07b4\";a:10:{s:4:\"hash\";s:32:\"d9bf09d37e757abfa785487a50be07b4\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-4-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-4-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b2bc413e679a3dab15b96fc782d86705\";a:10:{s:4:\"hash\";s:32:\"b2bc413e679a3dab15b96fc782d86705\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-5-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-5-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5055c7b0aefe46fa287bcec508ccef38\";a:10:{s:4:\"hash\";s:32:\"5055c7b0aefe46fa287bcec508ccef38\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-5-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-5-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4cf0c79f5099fa2f735868ca997cf9d6\";a:10:{s:4:\"hash\";s:32:\"4cf0c79f5099fa2f735868ca997cf9d6\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-5-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-5-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"23e09657a351c40e8de2078e3406373c\";a:10:{s:4:\"hash\";s:32:\"23e09657a351c40e8de2078e3406373c\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-5-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-5-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"80305a87c30a363cd5cbc698ba220841\";a:10:{s:4:\"hash\";s:32:\"80305a87c30a363cd5cbc698ba220841\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-6-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-6-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5b3cc662d39df7eb73d6377748a338e2\";a:10:{s:4:\"hash\";s:32:\"5b3cc662d39df7eb73d6377748a338e2\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-6-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-6-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"92369e12bef2398c20e00616b3aff834\";a:10:{s:4:\"hash\";s:32:\"92369e12bef2398c20e00616b3aff834\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-6-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-6-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1a5d7525cb32fc7baaafcec7d24cc0fe\";a:10:{s:4:\"hash\";s:32:\"1a5d7525cb32fc7baaafcec7d24cc0fe\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-6-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-6-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a6426ae9faf7d972189c15b38846e193\";a:10:{s:4:\"hash\";s:32:\"a6426ae9faf7d972189c15b38846e193\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-7-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-7-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c64a64235313c570609a196f405f8ede\";a:10:{s:4:\"hash\";s:32:\"c64a64235313c570609a196f405f8ede\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-7-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-7-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3480b27a3d9200fd5bfb6721bff46a04\";a:10:{s:4:\"hash\";s:32:\"3480b27a3d9200fd5bfb6721bff46a04\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-7-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-7-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c150f235b6fab793cc3934829409a30a\";a:10:{s:4:\"hash\";s:32:\"c150f235b6fab793cc3934829409a30a\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-7-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-7-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"587915d74c664b2f02875aff10ca4120\";a:10:{s:4:\"hash\";s:32:\"587915d74c664b2f02875aff10ca4120\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-8-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-8-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"14a877b208527736f0a53bcc5082abc6\";a:10:{s:4:\"hash\";s:32:\"14a877b208527736f0a53bcc5082abc6\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-8-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-8-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4f94ce33e294de0a45cad4b9b855caad\";a:10:{s:4:\"hash\";s:32:\"4f94ce33e294de0a45cad4b9b855caad\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-8-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-8-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5e2a58cfeabe2c46d6d2e064b3b9fd98\";a:10:{s:4:\"hash\";s:32:\"5e2a58cfeabe2c46d6d2e064b3b9fd98\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-8-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-8-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e49f7ac8e4a6c9eb57eccb69363fcc2d\";a:10:{s:4:\"hash\";s:32:\"e49f7ac8e4a6c9eb57eccb69363fcc2d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-9-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-9-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"012bf7ffbec20049eb4d5b54d6e5b387\";a:10:{s:4:\"hash\";s:32:\"012bf7ffbec20049eb4d5b54d6e5b387\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-9-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-9-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6bc47b0cce093cfa73c7af8f23d23abc\";a:10:{s:4:\"hash\";s:32:\"6bc47b0cce093cfa73c7af8f23d23abc\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-9-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-9-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7673d669e0542dfeb6088406f200f8da\";a:10:{s:4:\"hash\";s:32:\"7673d669e0542dfeb6088406f200f8da\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~11-9-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~11-9-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"79f8a9ee41f4811ed39006e4ed0ee9e5\";a:10:{s:4:\"hash\";s:32:\"79f8a9ee41f4811ed39006e4ed0ee9e5\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~12-1-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~12-1-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c147306aa66954924b4742f15360b161\";a:10:{s:4:\"hash\";s:32:\"c147306aa66954924b4742f15360b161\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~12-17-2021/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~12-17-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1208a114e7ad7b24cf586cca96a7b510\";a:10:{s:4:\"hash\";s:32:\"1208a114e7ad7b24cf586cca96a7b510\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~12-18-2020/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~12-18-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"017c7a544251613de0334f1ae9316a29\";a:10:{s:4:\"hash\";s:32:\"017c7a544251613de0334f1ae9316a29\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~12-2-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~12-2-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c54c52f813d32436ee3d54e60837cde\";a:10:{s:4:\"hash\";s:32:\"3c54c52f813d32436ee3d54e60837cde\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~12-27-2019/\";s:4:\"path\";s:44:\"/events/action~oneday/exact_date~12-27-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a7295371ad988ba00a3339350d3f6391\";a:10:{s:4:\"hash\";s:32:\"a7295371ad988ba00a3339350d3f6391\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~12-3-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~12-3-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"263c28795112c5be3859c645dd553c95\";a:10:{s:4:\"hash\";s:32:\"263c28795112c5be3859c645dd553c95\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~12-4-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~12-4-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c822b177b9f4cdd4264c3e62b9885fc6\";a:10:{s:4:\"hash\";s:32:\"c822b177b9f4cdd4264c3e62b9885fc6\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1525147200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1525147200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7c9c09a8a530ef1bb47b8308d1b3053a\";a:10:{s:4:\"hash\";s:32:\"7c9c09a8a530ef1bb47b8308d1b3053a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1541044800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1541044800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1b3f9b20be1de52cb61e20c6931e56be\";a:10:{s:4:\"hash\";s:32:\"1b3f9b20be1de52cb61e20c6931e56be\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1556683200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1556683200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"98f99389a63a4b7535fb5dd4d51b4b6d\";a:10:{s:4:\"hash\";s:32:\"98f99389a63a4b7535fb5dd4d51b4b6d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1556683200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1556683200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6f15f46c66fd9209ff0bfc45ba37ad26\";a:10:{s:4:\"hash\";s:32:\"6f15f46c66fd9209ff0bfc45ba37ad26\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1556683200/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1556683200/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9f89370bacd92aeaba7396f5b5fcd59e\";a:10:{s:4:\"hash\";s:32:\"9f89370bacd92aeaba7396f5b5fcd59e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1556683200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1556683200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e02e15d672acf9c0542e05a1b6cbac6c\";a:10:{s:4:\"hash\";s:32:\"e02e15d672acf9c0542e05a1b6cbac6c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557115200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1557115200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"43e0f4ed4b68515c8030c2364bcee1eb\";a:10:{s:4:\"hash\";s:32:\"43e0f4ed4b68515c8030c2364bcee1eb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557115200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1557115200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ced94aa9333d7df2f49e797f3ef3d2d0\";a:10:{s:4:\"hash\";s:32:\"ced94aa9333d7df2f49e797f3ef3d2d0\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557115200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1557115200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a1f77b8413db63f3c8ad04f40f436fc5\";a:10:{s:4:\"hash\";s:32:\"a1f77b8413db63f3c8ad04f40f436fc5\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557201600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1557201600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"331073f11f7d00d0437f073ab4173814\";a:10:{s:4:\"hash\";s:32:\"331073f11f7d00d0437f073ab4173814\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557201600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1557201600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dfaafeec5d411972ef530be25874cd74\";a:10:{s:4:\"hash\";s:32:\"dfaafeec5d411972ef530be25874cd74\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557201600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1557201600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e6d64eb6d048329dbb4d144d16f1f6dc\";a:10:{s:4:\"hash\";s:32:\"e6d64eb6d048329dbb4d144d16f1f6dc\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557201600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1557201600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b6a3c03466dd1097c02417b37afbb23e\";a:10:{s:4:\"hash\";s:32:\"b6a3c03466dd1097c02417b37afbb23e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557201600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1557201600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"478ca9248a198dc28f023b308b8f8a4a\";a:10:{s:4:\"hash\";s:32:\"478ca9248a198dc28f023b308b8f8a4a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557201600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1557201600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"97fecd0f6986e33a50295ca45ab684c6\";a:10:{s:4:\"hash\";s:32:\"97fecd0f6986e33a50295ca45ab684c6\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557201600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1557201600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d418f81f2496f62ccc4061388548ca7d\";a:10:{s:4:\"hash\";s:32:\"d418f81f2496f62ccc4061388548ca7d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557201600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1557201600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c2a49e70adfaea688fe0244d6ed5e222\";a:10:{s:4:\"hash\";s:32:\"c2a49e70adfaea688fe0244d6ed5e222\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557201600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1557201600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"75d21996144a495827ee384b1e947b9a\";a:10:{s:4:\"hash\";s:32:\"75d21996144a495827ee384b1e947b9a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557201600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1557201600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c4f35e1a44c12f5cf984b59a31549e88\";a:10:{s:4:\"hash\";s:32:\"c4f35e1a44c12f5cf984b59a31549e88\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557288000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1557288000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aa30221a9d8e862acbabeb0dde20f487\";a:10:{s:4:\"hash\";s:32:\"aa30221a9d8e862acbabeb0dde20f487\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557288000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1557288000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"de429eb61fbe02a14ab97a50e1ae4cba\";a:10:{s:4:\"hash\";s:32:\"de429eb61fbe02a14ab97a50e1ae4cba\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557288000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1557288000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0dd7e88db128e712b33d3db4a1247dde\";a:10:{s:4:\"hash\";s:32:\"0dd7e88db128e712b33d3db4a1247dde\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557288000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1557288000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ab4f00c95f46046908cd625261b0e935\";a:10:{s:4:\"hash\";s:32:\"ab4f00c95f46046908cd625261b0e935\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557288000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1557288000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1dc91098247af037a7e5646479230628\";a:10:{s:4:\"hash\";s:32:\"1dc91098247af037a7e5646479230628\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557288000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1557288000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2b5e5df9540e0b6b0137f34095c92085\";a:10:{s:4:\"hash\";s:32:\"2b5e5df9540e0b6b0137f34095c92085\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557374400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1557374400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dd8460f67ce76bae3051d845cfd191e8\";a:10:{s:4:\"hash\";s:32:\"dd8460f67ce76bae3051d845cfd191e8\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557720000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1557720000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a3279256b00646cbd51b0143fc40065\";a:10:{s:4:\"hash\";s:32:\"8a3279256b00646cbd51b0143fc40065\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557720000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1557720000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"13e6181b55a1e4473a258758b28b9597\";a:10:{s:4:\"hash\";s:32:\"13e6181b55a1e4473a258758b28b9597\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557720000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1557720000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4777c5683e0410c4c674605316bf38c9\";a:10:{s:4:\"hash\";s:32:\"4777c5683e0410c4c674605316bf38c9\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557806400/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1557806400/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ae9d03bce59e2037f3d093ab47378e03\";a:10:{s:4:\"hash\";s:32:\"ae9d03bce59e2037f3d093ab47378e03\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557806400/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1557806400/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4f2d8345f210679e5170fe1ed1df585f\";a:10:{s:4:\"hash\";s:32:\"4f2d8345f210679e5170fe1ed1df585f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557806400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1557806400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e3f53fccfa6b09998fd2c3502d544754\";a:10:{s:4:\"hash\";s:32:\"e3f53fccfa6b09998fd2c3502d544754\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557806400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1557806400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"392ba1940eca81bd74c7fb49d774c4fd\";a:10:{s:4:\"hash\";s:32:\"392ba1940eca81bd74c7fb49d774c4fd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557806400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1557806400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e6f6b4d7a209f9d54ab0af955d103104\";a:10:{s:4:\"hash\";s:32:\"e6f6b4d7a209f9d54ab0af955d103104\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557806400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1557806400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f34c822f63cfe4e5329eda573f90afec\";a:10:{s:4:\"hash\";s:32:\"f34c822f63cfe4e5329eda573f90afec\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557806400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1557806400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b8986ff5443da1cce7aab3c0c5a6798e\";a:10:{s:4:\"hash\";s:32:\"b8986ff5443da1cce7aab3c0c5a6798e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557806400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1557806400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9d24e685e763ec4cc3ae09e7283aca01\";a:10:{s:4:\"hash\";s:32:\"9d24e685e763ec4cc3ae09e7283aca01\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557806400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1557806400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ddc95ad77c735d7df8958504d2cab730\";a:10:{s:4:\"hash\";s:32:\"ddc95ad77c735d7df8958504d2cab730\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557892800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1557892800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d58e967b3191471eeb3b52e75bfadba4\";a:10:{s:4:\"hash\";s:32:\"d58e967b3191471eeb3b52e75bfadba4\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557892800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1557892800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6da803bcbd5ab195fc62fb48e79c94da\";a:10:{s:4:\"hash\";s:32:\"6da803bcbd5ab195fc62fb48e79c94da\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557892800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1557892800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c7a98f64db0896bf95fb1ec894df230e\";a:10:{s:4:\"hash\";s:32:\"c7a98f64db0896bf95fb1ec894df230e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557892800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1557892800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"24b4c03dcdfbd554062eb72d464a03aa\";a:10:{s:4:\"hash\";s:32:\"24b4c03dcdfbd554062eb72d464a03aa\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1557979200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1557979200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"98f12774af1a7568197e7d03b43d8b58\";a:10:{s:4:\"hash\";s:32:\"98f12774af1a7568197e7d03b43d8b58\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558152000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1558152000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3cee5353f946a02d8129d59d3ed5ffb9\";a:10:{s:4:\"hash\";s:32:\"3cee5353f946a02d8129d59d3ed5ffb9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558238400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558238400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6cd739df23b3ef3c5326e1dc5b3daffa\";a:10:{s:4:\"hash\";s:32:\"6cd739df23b3ef3c5326e1dc5b3daffa\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558238400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1558238400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4e6ba4117ae5d22d797544e2fad00302\";a:10:{s:4:\"hash\";s:32:\"4e6ba4117ae5d22d797544e2fad00302\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558238400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558238400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d8a4a439eee8392ff16b8a99e0840387\";a:10:{s:4:\"hash\";s:32:\"d8a4a439eee8392ff16b8a99e0840387\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558238400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558238400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"33672d51f54342fb6fa0eb285c12b64b\";a:10:{s:4:\"hash\";s:32:\"33672d51f54342fb6fa0eb285c12b64b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558238400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558238400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cbd456a2bc45a55f3dd9877a6bb8087c\";a:10:{s:4:\"hash\";s:32:\"cbd456a2bc45a55f3dd9877a6bb8087c\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558324800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1558324800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2447fad0001525bf078969e1078e7cd1\";a:10:{s:4:\"hash\";s:32:\"2447fad0001525bf078969e1078e7cd1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558324800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1558324800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d419020213f77653ef7fff09b1c96b05\";a:10:{s:4:\"hash\";s:32:\"d419020213f77653ef7fff09b1c96b05\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558324800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558324800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"af9c26e42a45c85c27725da7a209e6ee\";a:10:{s:4:\"hash\";s:32:\"af9c26e42a45c85c27725da7a209e6ee\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558324800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1558324800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c68655b55bc8fd084f221adf3cda6d59\";a:10:{s:4:\"hash\";s:32:\"c68655b55bc8fd084f221adf3cda6d59\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558324800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558324800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"98bb805fb6882aab65575eaa56b4b662\";a:10:{s:4:\"hash\";s:32:\"98bb805fb6882aab65575eaa56b4b662\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558324800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558324800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d7ab4f0110a9189cecf727bb12c031ff\";a:10:{s:4:\"hash\";s:32:\"d7ab4f0110a9189cecf727bb12c031ff\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558324800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558324800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5c754c799074e4ae2c970b52b1c8f356\";a:10:{s:4:\"hash\";s:32:\"5c754c799074e4ae2c970b52b1c8f356\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558411200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558411200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1007caefdd87b63fd5efd68b513a2a9e\";a:10:{s:4:\"hash\";s:32:\"1007caefdd87b63fd5efd68b513a2a9e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558411200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1558411200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"870f9e3f74acedeb62a866b197bef223\";a:10:{s:4:\"hash\";s:32:\"870f9e3f74acedeb62a866b197bef223\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558411200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558411200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"56327b0602b9377015f10134e95cf8bc\";a:10:{s:4:\"hash\";s:32:\"56327b0602b9377015f10134e95cf8bc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558411200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558411200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"85db561878a7592bb5e80097123b7ced\";a:10:{s:4:\"hash\";s:32:\"85db561878a7592bb5e80097123b7ced\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558411200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558411200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4b425f9c5f3b99f7fafead6c06f92681\";a:10:{s:4:\"hash\";s:32:\"4b425f9c5f3b99f7fafead6c06f92681\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558497600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1558497600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8c568a3a6a0e983c46952eaf9f0061ae\";a:10:{s:4:\"hash\";s:32:\"8c568a3a6a0e983c46952eaf9f0061ae\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558497600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558497600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1be3fb497c49e86cedacd1da08b1227f\";a:10:{s:4:\"hash\";s:32:\"1be3fb497c49e86cedacd1da08b1227f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558497600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558497600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9e0d875ef9036168769fe23ef12ddff2\";a:10:{s:4:\"hash\";s:32:\"9e0d875ef9036168769fe23ef12ddff2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558497600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558497600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e00494bc9e12401e8a315b7e17545c59\";a:10:{s:4:\"hash\";s:32:\"e00494bc9e12401e8a315b7e17545c59\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558584000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1558584000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d35d0d2ce2487298a0499114e38df0f1\";a:10:{s:4:\"hash\";s:32:\"d35d0d2ce2487298a0499114e38df0f1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558670400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1558670400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"918ea4df635d1aac8a77a5d96b20e62a\";a:10:{s:4:\"hash\";s:32:\"918ea4df635d1aac8a77a5d96b20e62a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558670400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558670400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ab409f1842e34ae3e44faa3d3eb6ae32\";a:10:{s:4:\"hash\";s:32:\"ab409f1842e34ae3e44faa3d3eb6ae32\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558670400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1558670400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e9dd25768ca9f3cd54da991c8389f739\";a:10:{s:4:\"hash\";s:32:\"e9dd25768ca9f3cd54da991c8389f739\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558756800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558756800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a9a01df0551fa2de90f8188d9d04a9b1\";a:10:{s:4:\"hash\";s:32:\"a9a01df0551fa2de90f8188d9d04a9b1\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558756800/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1558756800/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"95a81298d5be778fa41e198f18cc18a9\";a:10:{s:4:\"hash\";s:32:\"95a81298d5be778fa41e198f18cc18a9\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558756800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1558756800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"06629280d64d35f3ef774c80e6d113de\";a:10:{s:4:\"hash\";s:32:\"06629280d64d35f3ef774c80e6d113de\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558756800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1558756800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d2e6735a1eb941814198c65ea3781fad\";a:10:{s:4:\"hash\";s:32:\"d2e6735a1eb941814198c65ea3781fad\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558756800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558756800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a0410432ab15354b2afc70a9b956a5c4\";a:10:{s:4:\"hash\";s:32:\"a0410432ab15354b2afc70a9b956a5c4\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558756800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1558756800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ba9e453f7ddd9698da80804be11eafd1\";a:10:{s:4:\"hash\";s:32:\"ba9e453f7ddd9698da80804be11eafd1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558756800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558756800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a8157abd2d53892db04432d6a856a8c4\";a:10:{s:4:\"hash\";s:32:\"a8157abd2d53892db04432d6a856a8c4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558756800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558756800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1a96fcd5ae5e73b2faad48e0d2fc641a\";a:10:{s:4:\"hash\";s:32:\"1a96fcd5ae5e73b2faad48e0d2fc641a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558756800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558756800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5f61782c992d6b094f3f04500a01f115\";a:10:{s:4:\"hash\";s:32:\"5f61782c992d6b094f3f04500a01f115\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558843200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558843200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7919319fad036cd7a389af3db2ade337\";a:10:{s:4:\"hash\";s:32:\"7919319fad036cd7a389af3db2ade337\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558843200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1558843200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fe500fac5989067afb0e3a92ad5eb197\";a:10:{s:4:\"hash\";s:32:\"fe500fac5989067afb0e3a92ad5eb197\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558843200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558843200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7d618980a323012d3268c8707a23e32b\";a:10:{s:4:\"hash\";s:32:\"7d618980a323012d3268c8707a23e32b\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558843200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1558843200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"585c353b3fb834264dabb86774aedcf0\";a:10:{s:4:\"hash\";s:32:\"585c353b3fb834264dabb86774aedcf0\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558929600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1558929600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f5f604258b09c459267eba915fc5be96\";a:10:{s:4:\"hash\";s:32:\"f5f604258b09c459267eba915fc5be96\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558929600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1558929600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7220feaa2bb501c463d316cb9d668058\";a:10:{s:4:\"hash\";s:32:\"7220feaa2bb501c463d316cb9d668058\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558929600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558929600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"12bb520c4521b19fbeedecf1cd9b4077\";a:10:{s:4:\"hash\";s:32:\"12bb520c4521b19fbeedecf1cd9b4077\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558929600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1558929600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ea53af7baa98d9dbaa07d7244d3ff979\";a:10:{s:4:\"hash\";s:32:\"ea53af7baa98d9dbaa07d7244d3ff979\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558929600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558929600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"edf4d44ceafe71b76253334a49dd2245\";a:10:{s:4:\"hash\";s:32:\"edf4d44ceafe71b76253334a49dd2245\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558929600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558929600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7c3206e1b98861e62f197b4f2853149b\";a:10:{s:4:\"hash\";s:32:\"7c3206e1b98861e62f197b4f2853149b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1558929600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1558929600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7bcbf390069f89889f7913a5a7fd440b\";a:10:{s:4:\"hash\";s:32:\"7bcbf390069f89889f7913a5a7fd440b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559016000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559016000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"97ec20ee08116cb1a298c24c03f49f53\";a:10:{s:4:\"hash\";s:32:\"97ec20ee08116cb1a298c24c03f49f53\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559016000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1559016000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a2b914a2d8666cf889d23579fd36f141\";a:10:{s:4:\"hash\";s:32:\"a2b914a2d8666cf889d23579fd36f141\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559102400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559102400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dba05295794a4df8082a24067b3495e1\";a:10:{s:4:\"hash\";s:32:\"dba05295794a4df8082a24067b3495e1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559102400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559102400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e50d8702ebb2f6772a8daa241f96fe25\";a:10:{s:4:\"hash\";s:32:\"e50d8702ebb2f6772a8daa241f96fe25\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559102400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1559102400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"92b736634d847d987c0ad3e811367682\";a:10:{s:4:\"hash\";s:32:\"92b736634d847d987c0ad3e811367682\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559188800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559188800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5af17698c78196dc6f13c59c71065311\";a:10:{s:4:\"hash\";s:32:\"5af17698c78196dc6f13c59c71065311\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559188800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559188800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ee45a447345b492a49f4fe7fc6e48b0b\";a:10:{s:4:\"hash\";s:32:\"ee45a447345b492a49f4fe7fc6e48b0b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559188800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559188800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"27b7c221505c6395e9e76e9b81a4216f\";a:10:{s:4:\"hash\";s:32:\"27b7c221505c6395e9e76e9b81a4216f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559188800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559188800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dea4031583c8786d202739b8a77a8df6\";a:10:{s:4:\"hash\";s:32:\"dea4031583c8786d202739b8a77a8df6\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559188800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559188800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0143979334d2d73ca7bf17aae55973ff\";a:10:{s:4:\"hash\";s:32:\"0143979334d2d73ca7bf17aae55973ff\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559188800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559188800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2867a5fc533778b1b46f3744629ce5b0\";a:10:{s:4:\"hash\";s:32:\"2867a5fc533778b1b46f3744629ce5b0\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559188800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1559188800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a31d1104d70e0a93be538798e16338fd\";a:10:{s:4:\"hash\";s:32:\"a31d1104d70e0a93be538798e16338fd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559188800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559188800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"23ed5edc10f9e546682a641f0b1208d7\";a:10:{s:4:\"hash\";s:32:\"23ed5edc10f9e546682a641f0b1208d7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559188800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559188800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f5c8e43f11f6c143a75a7a3c8cb76165\";a:10:{s:4:\"hash\";s:32:\"f5c8e43f11f6c143a75a7a3c8cb76165\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559188800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559188800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ae137f8019d30d590a3eb3e5a3e5d37\";a:10:{s:4:\"hash\";s:32:\"8ae137f8019d30d590a3eb3e5a3e5d37\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559275200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559275200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0abe08486d53b69b9ba1d2b1e1b62efa\";a:10:{s:4:\"hash\";s:32:\"0abe08486d53b69b9ba1d2b1e1b62efa\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559275200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559275200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ccb42622c2c9e21ab7508dfb90d99859\";a:10:{s:4:\"hash\";s:32:\"ccb42622c2c9e21ab7508dfb90d99859\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559275200/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1559275200/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c2ce740469906f9d48068d337db65d07\";a:10:{s:4:\"hash\";s:32:\"c2ce740469906f9d48068d337db65d07\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559275200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559275200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1a5ff5a97fa447edc9463bd33e6a9d76\";a:10:{s:4:\"hash\";s:32:\"1a5ff5a97fa447edc9463bd33e6a9d76\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559275200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559275200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3b984af2b30ce000738f014961fd2073\";a:10:{s:4:\"hash\";s:32:\"3b984af2b30ce000738f014961fd2073\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559275200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1559275200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4e90af726ae48a6fa8b17f27bd1acbb5\";a:10:{s:4:\"hash\";s:32:\"4e90af726ae48a6fa8b17f27bd1acbb5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559361600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559361600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eb127ffea7f5c611d0dd442274183cda\";a:10:{s:4:\"hash\";s:32:\"eb127ffea7f5c611d0dd442274183cda\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559361600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1559361600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b374a5c08c78005c130a83a6a8bb6ca1\";a:10:{s:4:\"hash\";s:32:\"b374a5c08c78005c130a83a6a8bb6ca1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559361600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559361600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"44745b00e29855c823257f3298f26b28\";a:10:{s:4:\"hash\";s:32:\"44745b00e29855c823257f3298f26b28\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559361600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1559361600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5668dbee1be927cc3eb958af3dfbd4f7\";a:10:{s:4:\"hash\";s:32:\"5668dbee1be927cc3eb958af3dfbd4f7\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559361600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559361600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"30f1bdc5ed8c6228617025b19ed67e37\";a:10:{s:4:\"hash\";s:32:\"30f1bdc5ed8c6228617025b19ed67e37\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559361600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559361600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"02b352288863ea101a14739f04259596\";a:10:{s:4:\"hash\";s:32:\"02b352288863ea101a14739f04259596\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559361600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1559361600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"565b8ce6b76aa7a5016ab4d1ca98bcc7\";a:10:{s:4:\"hash\";s:32:\"565b8ce6b76aa7a5016ab4d1ca98bcc7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559448000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559448000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e173d097cc32a28451f87920a35d8004\";a:10:{s:4:\"hash\";s:32:\"e173d097cc32a28451f87920a35d8004\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559448000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559448000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d32a31f4cc5d6f92d3397c912937c35e\";a:10:{s:4:\"hash\";s:32:\"d32a31f4cc5d6f92d3397c912937c35e\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559448000/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1559448000/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dae4e8e80f1ac2eb2170089fc94c147e\";a:10:{s:4:\"hash\";s:32:\"dae4e8e80f1ac2eb2170089fc94c147e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559448000/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559448000/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dd91b67dc8c2c62c3e9785e7abd81c08\";a:10:{s:4:\"hash\";s:32:\"dd91b67dc8c2c62c3e9785e7abd81c08\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559448000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559448000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d85c13eb18c4e7a52859aa212b7c3425\";a:10:{s:4:\"hash\";s:32:\"d85c13eb18c4e7a52859aa212b7c3425\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559534400/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559534400/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2032ebec0dc537fd1b34d8759a8c9a36\";a:10:{s:4:\"hash\";s:32:\"2032ebec0dc537fd1b34d8759a8c9a36\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559534400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559534400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"db054397ff63832f1371215ec3639533\";a:10:{s:4:\"hash\";s:32:\"db054397ff63832f1371215ec3639533\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559534400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559534400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9a8ce44ec668859d2533f86adb0b7a4a\";a:10:{s:4:\"hash\";s:32:\"9a8ce44ec668859d2533f86adb0b7a4a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559534400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559534400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d4e1fa8b6f690e116526ab499213210\";a:10:{s:4:\"hash\";s:32:\"4d4e1fa8b6f690e116526ab499213210\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559534400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559534400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f5202cc3702963b36cc5defbc9c01c95\";a:10:{s:4:\"hash\";s:32:\"f5202cc3702963b36cc5defbc9c01c95\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559534400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559534400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9b06cbdb342d6c0d1510712aa3a30294\";a:10:{s:4:\"hash\";s:32:\"9b06cbdb342d6c0d1510712aa3a30294\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559534400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1559534400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f55f3842ec4b048095367560d7bea885\";a:10:{s:4:\"hash\";s:32:\"f55f3842ec4b048095367560d7bea885\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559620800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559620800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ee782607820e0637a6ae20cfc754d68f\";a:10:{s:4:\"hash\";s:32:\"ee782607820e0637a6ae20cfc754d68f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559620800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559620800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bc1b9be53ba6e1d915b5d392a2b660ef\";a:10:{s:4:\"hash\";s:32:\"bc1b9be53ba6e1d915b5d392a2b660ef\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559620800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559620800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6349ef058f72c51a1b60c144cf20d469\";a:10:{s:4:\"hash\";s:32:\"6349ef058f72c51a1b60c144cf20d469\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559620800/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1559620800/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0c0c12752f1aa02668ebf0ac9b7f79f0\";a:10:{s:4:\"hash\";s:32:\"0c0c12752f1aa02668ebf0ac9b7f79f0\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559620800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559620800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bf33c79fb8e27324355e34a9a43e7cc9\";a:10:{s:4:\"hash\";s:32:\"bf33c79fb8e27324355e34a9a43e7cc9\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559620800/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1559620800/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ad5bb5aaf16376d20fc2bd0894d9441a\";a:10:{s:4:\"hash\";s:32:\"ad5bb5aaf16376d20fc2bd0894d9441a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559620800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559620800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8cb5d1580ae89689b917b2b7b547ac6c\";a:10:{s:4:\"hash\";s:32:\"8cb5d1580ae89689b917b2b7b547ac6c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559620800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559620800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9693db59ca99f92656c3134d5551b647\";a:10:{s:4:\"hash\";s:32:\"9693db59ca99f92656c3134d5551b647\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559620800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559620800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"913802ce43509d1acb68615580f20bce\";a:10:{s:4:\"hash\";s:32:\"913802ce43509d1acb68615580f20bce\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559620800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1559620800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"00bdc3ddc74cc2053d15bde7569f0c5f\";a:10:{s:4:\"hash\";s:32:\"00bdc3ddc74cc2053d15bde7569f0c5f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559620800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559620800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bc189c23fdcf5032c9d8baf7ab7b87e4\";a:10:{s:4:\"hash\";s:32:\"bc189c23fdcf5032c9d8baf7ab7b87e4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559620800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559620800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5eb27464972841c26b8698ac5baaf1ee\";a:10:{s:4:\"hash\";s:32:\"5eb27464972841c26b8698ac5baaf1ee\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559620800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559620800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a3e13a3277efdca45f9f27309f2d139f\";a:10:{s:4:\"hash\";s:32:\"a3e13a3277efdca45f9f27309f2d139f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559707200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559707200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b5b99caf1315752ff5b8311633db46f6\";a:10:{s:4:\"hash\";s:32:\"b5b99caf1315752ff5b8311633db46f6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559707200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559707200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4482c176c9085ffef365ebbcf972a005\";a:10:{s:4:\"hash\";s:32:\"4482c176c9085ffef365ebbcf972a005\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559707200/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1559707200/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"902f7f53c8c8913c0acaa756c584e14f\";a:10:{s:4:\"hash\";s:32:\"902f7f53c8c8913c0acaa756c584e14f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559707200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559707200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"97aad1cadda30426d9a269fa2d7a041c\";a:10:{s:4:\"hash\";s:32:\"97aad1cadda30426d9a269fa2d7a041c\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559707200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559707200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d55240f63a74acd8f07d9f292482af8b\";a:10:{s:4:\"hash\";s:32:\"d55240f63a74acd8f07d9f292482af8b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559707200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559707200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8d40c41d4ca587acb873465a6410db5e\";a:10:{s:4:\"hash\";s:32:\"8d40c41d4ca587acb873465a6410db5e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559707200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1559707200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"488960d6ce64a08be35f27678d42211c\";a:10:{s:4:\"hash\";s:32:\"488960d6ce64a08be35f27678d42211c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559707200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559707200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7c138cf4a85e31f0f128ba383f95e6fc\";a:10:{s:4:\"hash\";s:32:\"7c138cf4a85e31f0f128ba383f95e6fc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559707200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559707200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6b8cb8cb37ae4057e8b5a16a50871bb0\";a:10:{s:4:\"hash\";s:32:\"6b8cb8cb37ae4057e8b5a16a50871bb0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559707200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559707200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e9309839782e3d451fd92fb4e3fe2dfe\";a:10:{s:4:\"hash\";s:32:\"e9309839782e3d451fd92fb4e3fe2dfe\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559793600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559793600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5ac327fa2364c60227875cf4a6115540\";a:10:{s:4:\"hash\";s:32:\"5ac327fa2364c60227875cf4a6115540\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559793600/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1559793600/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"216a593659d2f520844a7adf05312006\";a:10:{s:4:\"hash\";s:32:\"216a593659d2f520844a7adf05312006\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559793600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559793600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1b351f0eeebc35981239e11791e5c268\";a:10:{s:4:\"hash\";s:32:\"1b351f0eeebc35981239e11791e5c268\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559793600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559793600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"87bda5e55a41b8ec1c54bdfe5b19a478\";a:10:{s:4:\"hash\";s:32:\"87bda5e55a41b8ec1c54bdfe5b19a478\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559793600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1559793600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"10ddfab59bb5ff247ede42dccec44e69\";a:10:{s:4:\"hash\";s:32:\"10ddfab59bb5ff247ede42dccec44e69\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559880000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559880000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"43785b6865c479c648127a4e6aab5546\";a:10:{s:4:\"hash\";s:32:\"43785b6865c479c648127a4e6aab5546\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559880000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559880000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"277dfca393cc7b5d2b2b04f75c381771\";a:10:{s:4:\"hash\";s:32:\"277dfca393cc7b5d2b2b04f75c381771\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559880000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559880000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"339d945232b6a164f698d6710cab738a\";a:10:{s:4:\"hash\";s:32:\"339d945232b6a164f698d6710cab738a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559880000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1559880000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8170c6a633593972d030d27690a48e59\";a:10:{s:4:\"hash\";s:32:\"8170c6a633593972d030d27690a48e59\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559880000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559880000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eea358d7184e29a19be64bc47a0aafb0\";a:10:{s:4:\"hash\";s:32:\"eea358d7184e29a19be64bc47a0aafb0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559880000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559880000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a3713ae944b2e50e69ac4c81f2070d6f\";a:10:{s:4:\"hash\";s:32:\"a3713ae944b2e50e69ac4c81f2070d6f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559880000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559880000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e9964773617c5c8e1754607ef2e502ac\";a:10:{s:4:\"hash\";s:32:\"e9964773617c5c8e1754607ef2e502ac\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559966400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1559966400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6f644e7197ba33cfcb53800773d3c320\";a:10:{s:4:\"hash\";s:32:\"6f644e7197ba33cfcb53800773d3c320\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559966400/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1559966400/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1a0071771e84a65f5a447e82672ea128\";a:10:{s:4:\"hash\";s:32:\"1a0071771e84a65f5a447e82672ea128\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559966400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1559966400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d346e5744ca3309638753b5b4d9181f3\";a:10:{s:4:\"hash\";s:32:\"d346e5744ca3309638753b5b4d9181f3\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1559966400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1559966400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4effc3d46de36f24a85fe780beeac8af\";a:10:{s:4:\"hash\";s:32:\"4effc3d46de36f24a85fe780beeac8af\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560052800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560052800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bf34d7fe5d00c7dc336a06bd52c3bbc0\";a:10:{s:4:\"hash\";s:32:\"bf34d7fe5d00c7dc336a06bd52c3bbc0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560052800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560052800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef975868f16f95b5f5e2de7a75adc56f\";a:10:{s:4:\"hash\";s:32:\"ef975868f16f95b5f5e2de7a75adc56f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560052800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560052800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8f8ada914158367d93bf68e58a0e8de1\";a:10:{s:4:\"hash\";s:32:\"8f8ada914158367d93bf68e58a0e8de1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560052800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560052800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d066c463ed6c67ed540c83bb1948a1be\";a:10:{s:4:\"hash\";s:32:\"d066c463ed6c67ed540c83bb1948a1be\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560052800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560052800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a89a2b6b4f5173f87067ab004962050a\";a:10:{s:4:\"hash\";s:32:\"a89a2b6b4f5173f87067ab004962050a\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560052800/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1560052800/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d83259ee4d33327340a1485dccb3b409\";a:10:{s:4:\"hash\";s:32:\"d83259ee4d33327340a1485dccb3b409\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560052800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560052800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"620e1d92ce974d898551d3967776ae86\";a:10:{s:4:\"hash\";s:32:\"620e1d92ce974d898551d3967776ae86\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560052800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560052800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bb2a800f2529a5f03a1f7981c233d029\";a:10:{s:4:\"hash\";s:32:\"bb2a800f2529a5f03a1f7981c233d029\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560052800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1560052800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ca0d9ef3367d23700acc6107f3f598d\";a:10:{s:4:\"hash\";s:32:\"8ca0d9ef3367d23700acc6107f3f598d\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560139200/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1560139200/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8d55ff5f6df4dc8704a02d12d6d238fa\";a:10:{s:4:\"hash\";s:32:\"8d55ff5f6df4dc8704a02d12d6d238fa\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560139200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560139200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"172add15fcad5da6e04757aa0d2ea3c4\";a:10:{s:4:\"hash\";s:32:\"172add15fcad5da6e04757aa0d2ea3c4\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560139200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560139200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"85dc50a1a675b1d8fa6071c22c8616af\";a:10:{s:4:\"hash\";s:32:\"85dc50a1a675b1d8fa6071c22c8616af\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560139200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560139200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"62a4c5f8bfc74c32451ff901bd1a31f5\";a:10:{s:4:\"hash\";s:32:\"62a4c5f8bfc74c32451ff901bd1a31f5\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560139200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560139200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"36b3bbea1179d584327d12a1566f645e\";a:10:{s:4:\"hash\";s:32:\"36b3bbea1179d584327d12a1566f645e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560139200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560139200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"29b51b50be5757970d975ec72bef5cc6\";a:10:{s:4:\"hash\";s:32:\"29b51b50be5757970d975ec72bef5cc6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560139200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560139200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f2d664435a58f62e232caabafbc063fe\";a:10:{s:4:\"hash\";s:32:\"f2d664435a58f62e232caabafbc063fe\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560139200/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1560139200/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b773e32e5de45a9f1dd00eac04d426d6\";a:10:{s:4:\"hash\";s:32:\"b773e32e5de45a9f1dd00eac04d426d6\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560139200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560139200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8bb57b6b5a51c72134e05e362629e4f4\";a:10:{s:4:\"hash\";s:32:\"8bb57b6b5a51c72134e05e362629e4f4\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560139200/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1560139200/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fd5e0e998affd9f699c90304aa5b3d3f\";a:10:{s:4:\"hash\";s:32:\"fd5e0e998affd9f699c90304aa5b3d3f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560139200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560139200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1cdf060858ac52e81a800247c21373f7\";a:10:{s:4:\"hash\";s:32:\"1cdf060858ac52e81a800247c21373f7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560139200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560139200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"75670e9aea44f000fc21cbd150ffd232\";a:10:{s:4:\"hash\";s:32:\"75670e9aea44f000fc21cbd150ffd232\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560139200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1560139200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"184969952e4dd8fef3a697fe792f03e1\";a:10:{s:4:\"hash\";s:32:\"184969952e4dd8fef3a697fe792f03e1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560139200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560139200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0ecb80ccb76040f4f8a386ac1eab9d9e\";a:10:{s:4:\"hash\";s:32:\"0ecb80ccb76040f4f8a386ac1eab9d9e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560139200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560139200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6c40d4a7c19a40d1c3ca3ee9fdf8ac18\";a:10:{s:4:\"hash\";s:32:\"6c40d4a7c19a40d1c3ca3ee9fdf8ac18\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560139200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560139200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ed1bdef85df3ef61381ed6581e7cff02\";a:10:{s:4:\"hash\";s:32:\"ed1bdef85df3ef61381ed6581e7cff02\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560225600/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1560225600/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4eed042a1ce06750945f29a94e486293\";a:10:{s:4:\"hash\";s:32:\"4eed042a1ce06750945f29a94e486293\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560225600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560225600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c728e31b6d5e5b7ba32c3a94da72ed5\";a:10:{s:4:\"hash\";s:32:\"3c728e31b6d5e5b7ba32c3a94da72ed5\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560225600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560225600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"026bbe8886c590724e691dda35f0959b\";a:10:{s:4:\"hash\";s:32:\"026bbe8886c590724e691dda35f0959b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560225600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560225600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8c8885049405c4e793d7faa86fcf93a6\";a:10:{s:4:\"hash\";s:32:\"8c8885049405c4e793d7faa86fcf93a6\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560225600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560225600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"adaff7163c71edcf2c8e965b9d53c7eb\";a:10:{s:4:\"hash\";s:32:\"adaff7163c71edcf2c8e965b9d53c7eb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560225600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560225600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"48426d83257622939a7736f5f25b4066\";a:10:{s:4:\"hash\";s:32:\"48426d83257622939a7736f5f25b4066\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560225600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560225600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"19543013082b60b0ba72f9cfa4561ec9\";a:10:{s:4:\"hash\";s:32:\"19543013082b60b0ba72f9cfa4561ec9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560225600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560225600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"60c17edf66f4cb92cecac27c5b1ea602\";a:10:{s:4:\"hash\";s:32:\"60c17edf66f4cb92cecac27c5b1ea602\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560225600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1560225600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0c990805c679692402cf75726efb021a\";a:10:{s:4:\"hash\";s:32:\"0c990805c679692402cf75726efb021a\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560312000/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1560312000/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f6e7bb94d779c69ed95aee47b1ed849e\";a:10:{s:4:\"hash\";s:32:\"f6e7bb94d779c69ed95aee47b1ed849e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560312000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560312000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"06f5d1f4c3d1eb6e91c10ff853b313b9\";a:10:{s:4:\"hash\";s:32:\"06f5d1f4c3d1eb6e91c10ff853b313b9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560312000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560312000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2e602235a2ae5651296d1d84235c6127\";a:10:{s:4:\"hash\";s:32:\"2e602235a2ae5651296d1d84235c6127\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560312000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560312000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"23644e0056bd1798ec2db1f77853b2b3\";a:10:{s:4:\"hash\";s:32:\"23644e0056bd1798ec2db1f77853b2b3\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560312000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1560312000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dbfc317b1c7ad5df62262ec3a5b58115\";a:10:{s:4:\"hash\";s:32:\"dbfc317b1c7ad5df62262ec3a5b58115\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560312000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560312000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9b47179ad67c1ae8cff0795f03ae4424\";a:10:{s:4:\"hash\";s:32:\"9b47179ad67c1ae8cff0795f03ae4424\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560312000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560312000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d23f8ce564a4e893f60acba9b59c640c\";a:10:{s:4:\"hash\";s:32:\"d23f8ce564a4e893f60acba9b59c640c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560312000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560312000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"56b7de15242649faa4df144206f9e4a1\";a:10:{s:4:\"hash\";s:32:\"56b7de15242649faa4df144206f9e4a1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560398400/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560398400/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"466569630324182f928f1cda3fa78070\";a:10:{s:4:\"hash\";s:32:\"466569630324182f928f1cda3fa78070\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560398400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1560398400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"029b79d0132be8fdfa1cd98e25e80208\";a:10:{s:4:\"hash\";s:32:\"029b79d0132be8fdfa1cd98e25e80208\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560484800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1560484800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7ece50b8179a616ae14163325445c51d\";a:10:{s:4:\"hash\";s:32:\"7ece50b8179a616ae14163325445c51d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560571200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1560571200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"51b1b15cce567c5015e57685de40b6d2\";a:10:{s:4:\"hash\";s:32:\"51b1b15cce567c5015e57685de40b6d2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560571200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560571200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"421413a7496df7465a505e7e0868a01b\";a:10:{s:4:\"hash\";s:32:\"421413a7496df7465a505e7e0868a01b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560571200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560571200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cfa4c530419df9c41fbf933a1b98401b\";a:10:{s:4:\"hash\";s:32:\"cfa4c530419df9c41fbf933a1b98401b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560571200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560571200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1e8a8cc33baf9458a962e5b041c29c42\";a:10:{s:4:\"hash\";s:32:\"1e8a8cc33baf9458a962e5b041c29c42\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560657600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1560657600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a6b12c04ea887ecb098adf4b1a892cd9\";a:10:{s:4:\"hash\";s:32:\"a6b12c04ea887ecb098adf4b1a892cd9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560744000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560744000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9ad63622da6bcbad5e10c4434ac6b398\";a:10:{s:4:\"hash\";s:32:\"9ad63622da6bcbad5e10c4434ac6b398\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560744000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560744000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"042bcb586cab67024946a3ed696e53a0\";a:10:{s:4:\"hash\";s:32:\"042bcb586cab67024946a3ed696e53a0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560744000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560744000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e0b18eb11f45af0b80b841f2ce95b254\";a:10:{s:4:\"hash\";s:32:\"e0b18eb11f45af0b80b841f2ce95b254\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560830400/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560830400/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"45746e853ceb26ba628e7af503c07e5c\";a:10:{s:4:\"hash\";s:32:\"45746e853ceb26ba628e7af503c07e5c\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560830400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560830400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dd3dcf38c1d0bbf0eaa93e21a9eff110\";a:10:{s:4:\"hash\";s:32:\"dd3dcf38c1d0bbf0eaa93e21a9eff110\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560830400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560830400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"21cba19d5959ed2ca69029807d101c2a\";a:10:{s:4:\"hash\";s:32:\"21cba19d5959ed2ca69029807d101c2a\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560830400/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1560830400/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fd5fe982ca845575843af616578ea552\";a:10:{s:4:\"hash\";s:32:\"fd5fe982ca845575843af616578ea552\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560830400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560830400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"26e0deab72dbb16b20e7da217d3dc67d\";a:10:{s:4:\"hash\";s:32:\"26e0deab72dbb16b20e7da217d3dc67d\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560830400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560830400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f6145ad359cbd75fba78f34a32cb460f\";a:10:{s:4:\"hash\";s:32:\"f6145ad359cbd75fba78f34a32cb460f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560830400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560830400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e28e9a3b0627d2e3be916d48a581e472\";a:10:{s:4:\"hash\";s:32:\"e28e9a3b0627d2e3be916d48a581e472\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560830400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1560830400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a9e5e6cef2685b417d36b43c9c6c8730\";a:10:{s:4:\"hash\";s:32:\"a9e5e6cef2685b417d36b43c9c6c8730\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560916800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560916800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b1e5cc58e99ad3fe35aa62515197cad8\";a:10:{s:4:\"hash\";s:32:\"b1e5cc58e99ad3fe35aa62515197cad8\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560916800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560916800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"542d5c0ed77f0f135acfde4e5e465891\";a:10:{s:4:\"hash\";s:32:\"542d5c0ed77f0f135acfde4e5e465891\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560916800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1560916800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4bfdfbaefd331bca21ebc802d1fdbca1\";a:10:{s:4:\"hash\";s:32:\"4bfdfbaefd331bca21ebc802d1fdbca1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560916800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560916800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"131812d49ebe698e0faf52a46eab1224\";a:10:{s:4:\"hash\";s:32:\"131812d49ebe698e0faf52a46eab1224\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560916800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1560916800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"be9a320e6f00eab163714772bb1bc844\";a:10:{s:4:\"hash\";s:32:\"be9a320e6f00eab163714772bb1bc844\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560916800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560916800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d2a52c38172040319fb7948141a1202e\";a:10:{s:4:\"hash\";s:32:\"d2a52c38172040319fb7948141a1202e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560916800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560916800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"17942633d5609e9e4630321fe724e513\";a:10:{s:4:\"hash\";s:32:\"17942633d5609e9e4630321fe724e513\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1560916800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1560916800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a9539b73c991e60e61b81d567974dba\";a:10:{s:4:\"hash\";s:32:\"8a9539b73c991e60e61b81d567974dba\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561003200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1561003200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dba4b350d8a546f317adaad76fb430d2\";a:10:{s:4:\"hash\";s:32:\"dba4b350d8a546f317adaad76fb430d2\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561003200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1561003200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ab2afde2e1407060ebcaefdea19d21ef\";a:10:{s:4:\"hash\";s:32:\"ab2afde2e1407060ebcaefdea19d21ef\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561089600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1561089600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ddcbeb5ead85819f3efd4b52fa77cec5\";a:10:{s:4:\"hash\";s:32:\"ddcbeb5ead85819f3efd4b52fa77cec5\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561176000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1561176000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d5a455dbc15825b48fc74b80c9d3ce1c\";a:10:{s:4:\"hash\";s:32:\"d5a455dbc15825b48fc74b80c9d3ce1c\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561176000/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1561176000/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"205d616fb458d8ed0600cde4f8df1fa5\";a:10:{s:4:\"hash\";s:32:\"205d616fb458d8ed0600cde4f8df1fa5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561176000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1561176000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"650b012b687ba453187fa96985798381\";a:10:{s:4:\"hash\";s:32:\"650b012b687ba453187fa96985798381\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561176000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1561176000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e6a04e77b6bd99374c3f9a5885ad74ca\";a:10:{s:4:\"hash\";s:32:\"e6a04e77b6bd99374c3f9a5885ad74ca\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561262400/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1561262400/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7a6b2262a550bf3da272da921584bea8\";a:10:{s:4:\"hash\";s:32:\"7a6b2262a550bf3da272da921584bea8\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561262400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1561262400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"32a45b90b063fd3899c0d4c7144de2dd\";a:10:{s:4:\"hash\";s:32:\"32a45b90b063fd3899c0d4c7144de2dd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561262400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1561262400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a52a2a65019cfe397b00ca5e1fcdfc1a\";a:10:{s:4:\"hash\";s:32:\"a52a2a65019cfe397b00ca5e1fcdfc1a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561262400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1561262400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f70e1b9302e443032235c57cf6235d04\";a:10:{s:4:\"hash\";s:32:\"f70e1b9302e443032235c57cf6235d04\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561262400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1561262400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"69e3797f30d34ccccd94cbcfc579fa55\";a:10:{s:4:\"hash\";s:32:\"69e3797f30d34ccccd94cbcfc579fa55\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561262400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1561262400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6d85e902157008b328c017e773cebcf2\";a:10:{s:4:\"hash\";s:32:\"6d85e902157008b328c017e773cebcf2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561262400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1561262400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"26ee262ea72ad6a13f759628e923757a\";a:10:{s:4:\"hash\";s:32:\"26ee262ea72ad6a13f759628e923757a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561348800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1561348800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"782069ec33d70a46fe593865fe907ff1\";a:10:{s:4:\"hash\";s:32:\"782069ec33d70a46fe593865fe907ff1\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561348800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1561348800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d24d07fc6e13dc4d4943fd28fe3be001\";a:10:{s:4:\"hash\";s:32:\"d24d07fc6e13dc4d4943fd28fe3be001\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561521600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1561521600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b168284dbf72a1ec9e6fff9ec43ecef8\";a:10:{s:4:\"hash\";s:32:\"b168284dbf72a1ec9e6fff9ec43ecef8\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561608000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1561608000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"11d37d68e3eed58d068f14ac2c8e15ac\";a:10:{s:4:\"hash\";s:32:\"11d37d68e3eed58d068f14ac2c8e15ac\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561608000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1561608000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1ec502aa406897562075de254c35b7cb\";a:10:{s:4:\"hash\";s:32:\"1ec502aa406897562075de254c35b7cb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561608000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1561608000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"76f06f5b876f844e528320f67bb5b0b1\";a:10:{s:4:\"hash\";s:32:\"76f06f5b876f844e528320f67bb5b0b1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561608000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1561608000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d162a58766288d23f5ed9b7cbc832e77\";a:10:{s:4:\"hash\";s:32:\"d162a58766288d23f5ed9b7cbc832e77\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561694400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1561694400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dc70ebeb232dc4a60f0e7af8c16640ca\";a:10:{s:4:\"hash\";s:32:\"dc70ebeb232dc4a60f0e7af8c16640ca\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561694400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1561694400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e3a9a2eddcfd13bb5e9057f5f698d623\";a:10:{s:4:\"hash\";s:32:\"e3a9a2eddcfd13bb5e9057f5f698d623\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561694400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1561694400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d7132c294dcbea05618674f3f2789a48\";a:10:{s:4:\"hash\";s:32:\"d7132c294dcbea05618674f3f2789a48\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561694400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1561694400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"32c1df4265eb0c6bf5c4238fb4097406\";a:10:{s:4:\"hash\";s:32:\"32c1df4265eb0c6bf5c4238fb4097406\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561780800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1561780800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dc394f0a94622fb1e7258036006c0f31\";a:10:{s:4:\"hash\";s:32:\"dc394f0a94622fb1e7258036006c0f31\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561953600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1561953600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b061f2355105fe8611d26e9a964c08ad\";a:10:{s:4:\"hash\";s:32:\"b061f2355105fe8611d26e9a964c08ad\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561953600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1561953600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e33a9fd4dab1ed0c7b4c8011b04448cd\";a:10:{s:4:\"hash\";s:32:\"e33a9fd4dab1ed0c7b4c8011b04448cd\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561953600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1561953600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"74a9c64caaed5040bf481e1eebe027dd\";a:10:{s:4:\"hash\";s:32:\"74a9c64caaed5040bf481e1eebe027dd\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1561953600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1561953600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fce359ae7b05ccea0c064c6497b960e7\";a:10:{s:4:\"hash\";s:32:\"fce359ae7b05ccea0c064c6497b960e7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1562385600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1562385600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bb2e4dac605dd10d64ca907408a92206\";a:10:{s:4:\"hash\";s:32:\"bb2e4dac605dd10d64ca907408a92206\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1562817600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1562817600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"745af86b11705683ce44fee1e10a5f23\";a:10:{s:4:\"hash\";s:32:\"745af86b11705683ce44fee1e10a5f23\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1562904000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1562904000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1c497cc36f2b32bd813bca6d47101304\";a:10:{s:4:\"hash\";s:32:\"1c497cc36f2b32bd813bca6d47101304\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1562904000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1562904000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7932a51be17cc025e3b38578444e3b1a\";a:10:{s:4:\"hash\";s:32:\"7932a51be17cc025e3b38578444e3b1a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1562904000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1562904000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"abbe5462edff81c4dea44b88ea38c56b\";a:10:{s:4:\"hash\";s:32:\"abbe5462edff81c4dea44b88ea38c56b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1562904000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1562904000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f26b2e3ecd34336db5d655682306a71e\";a:10:{s:4:\"hash\";s:32:\"f26b2e3ecd34336db5d655682306a71e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1562904000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1562904000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"df65de16214235cca61f811140a074ba\";a:10:{s:4:\"hash\";s:32:\"df65de16214235cca61f811140a074ba\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1562990400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1562990400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d5c56867963edc86a3ceef253244bf5b\";a:10:{s:4:\"hash\";s:32:\"d5c56867963edc86a3ceef253244bf5b\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1562990400/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1562990400/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"334d1f46e099cbee7ab71dcee33cc837\";a:10:{s:4:\"hash\";s:32:\"334d1f46e099cbee7ab71dcee33cc837\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1562990400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1562990400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"558ec37dbecf7433adf89b12f4106d32\";a:10:{s:4:\"hash\";s:32:\"558ec37dbecf7433adf89b12f4106d32\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1562990400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1562990400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"05bcb1cc793e70c2766203a4d10d2ed2\";a:10:{s:4:\"hash\";s:32:\"05bcb1cc793e70c2766203a4d10d2ed2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1562990400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1562990400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"229e4cbf4fe14037d20392bcdc894201\";a:10:{s:4:\"hash\";s:32:\"229e4cbf4fe14037d20392bcdc894201\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1562990400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1562990400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"09c956f9547882b94ad0199cf9904be0\";a:10:{s:4:\"hash\";s:32:\"09c956f9547882b94ad0199cf9904be0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1562990400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1562990400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0ca8b553dd9d0a2145cca60981f875f1\";a:10:{s:4:\"hash\";s:32:\"0ca8b553dd9d0a2145cca60981f875f1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1562990400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1562990400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2b4df0756cb1cb4ba1c36c6b57b794af\";a:10:{s:4:\"hash\";s:32:\"2b4df0756cb1cb4ba1c36c6b57b794af\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1562990400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1562990400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1f919045443e5f528c5444a0f04e4897\";a:10:{s:4:\"hash\";s:32:\"1f919045443e5f528c5444a0f04e4897\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1563076800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1563076800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b1fed1a711dcb633ceed7c5df8cc4c7d\";a:10:{s:4:\"hash\";s:32:\"b1fed1a711dcb633ceed7c5df8cc4c7d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1563076800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1563076800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aacc71d2fd84e46d11d3b4344ab0d404\";a:10:{s:4:\"hash\";s:32:\"aacc71d2fd84e46d11d3b4344ab0d404\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1563076800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1563076800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"22770cc7de072868fad40ac0a804d70e\";a:10:{s:4:\"hash\";s:32:\"22770cc7de072868fad40ac0a804d70e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1563076800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1563076800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3fba554ec6b135226efa283b6be891be\";a:10:{s:4:\"hash\";s:32:\"3fba554ec6b135226efa283b6be891be\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1563076800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1563076800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d4224f95a9e90ce873f7a6c432496e0b\";a:10:{s:4:\"hash\";s:32:\"d4224f95a9e90ce873f7a6c432496e0b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1563076800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1563076800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e1a0eb99971beeeac69804852f8a5b4f\";a:10:{s:4:\"hash\";s:32:\"e1a0eb99971beeeac69804852f8a5b4f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1563163200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1563163200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c9ad4e3d6a512b6df75897ef537a890a\";a:10:{s:4:\"hash\";s:32:\"c9ad4e3d6a512b6df75897ef537a890a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1563163200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1563163200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eef7de1fcf14d9ef6fa49bd353e4ac54\";a:10:{s:4:\"hash\";s:32:\"eef7de1fcf14d9ef6fa49bd353e4ac54\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1563163200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1563163200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2e4e47045425e0102d2848e5ee177d32\";a:10:{s:4:\"hash\";s:32:\"2e4e47045425e0102d2848e5ee177d32\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1563163200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1563163200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fcda5c54a9577fd89003b8705f508174\";a:10:{s:4:\"hash\";s:32:\"fcda5c54a9577fd89003b8705f508174\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1563163200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1563163200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"34d694753fc9201fd6d8c6089693ccd7\";a:10:{s:4:\"hash\";s:32:\"34d694753fc9201fd6d8c6089693ccd7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1563163200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1563163200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6ca05a6696b3773afc9cd61383ab99b3\";a:10:{s:4:\"hash\";s:32:\"6ca05a6696b3773afc9cd61383ab99b3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1563163200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1563163200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"04ee60fc1dac968ccb4234861e5abbaf\";a:10:{s:4:\"hash\";s:32:\"04ee60fc1dac968ccb4234861e5abbaf\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1563249600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1563249600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3dd9db1901eca48c35260792a8a1dbbd\";a:10:{s:4:\"hash\";s:32:\"3dd9db1901eca48c35260792a8a1dbbd\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1563422400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1563422400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d082cae32a9ef988b474713f9cd890f4\";a:10:{s:4:\"hash\";s:32:\"d082cae32a9ef988b474713f9cd890f4\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1563508800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1563508800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3acabc99f5acaeeee9b325aff9921821\";a:10:{s:4:\"hash\";s:32:\"3acabc99f5acaeeee9b325aff9921821\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1563508800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1563508800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d458c01ca9de890b90227679e5dba1b1\";a:10:{s:4:\"hash\";s:32:\"d458c01ca9de890b90227679e5dba1b1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1563508800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1563508800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d1906af81f88c7abe64fae75a68dfaff\";a:10:{s:4:\"hash\";s:32:\"d1906af81f88c7abe64fae75a68dfaff\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1563508800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1563508800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e20767a750d669a88789ce943184c4d3\";a:10:{s:4:\"hash\";s:32:\"e20767a750d669a88789ce943184c4d3\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1563595200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1563595200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2a34d7ad93dce773d235f9c86738c3ee\";a:10:{s:4:\"hash\";s:32:\"2a34d7ad93dce773d235f9c86738c3ee\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564632000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1564632000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0c1ff8a0ba19c4e52328cca9af9f3ae4\";a:10:{s:4:\"hash\";s:32:\"0c1ff8a0ba19c4e52328cca9af9f3ae4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564632000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1564632000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0cbdb7eff5d57ff9c07f20df8c303f68\";a:10:{s:4:\"hash\";s:32:\"0cbdb7eff5d57ff9c07f20df8c303f68\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564632000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1564632000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8e3c5e020ab71297eb28f8e1d938cc4b\";a:10:{s:4:\"hash\";s:32:\"8e3c5e020ab71297eb28f8e1d938cc4b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564632000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1564632000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d1fa01c7d8fdfa086493e9c514435386\";a:10:{s:4:\"hash\";s:32:\"d1fa01c7d8fdfa086493e9c514435386\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564632000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1564632000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"30bb3d242e4c03359f5ca3380bc21286\";a:10:{s:4:\"hash\";s:32:\"30bb3d242e4c03359f5ca3380bc21286\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564718400/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1564718400/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a89e3203f5581ab5b463c9430c854fc5\";a:10:{s:4:\"hash\";s:32:\"a89e3203f5581ab5b463c9430c854fc5\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564718400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1564718400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c17ac190e8e20cbe7116d10837623278\";a:10:{s:4:\"hash\";s:32:\"c17ac190e8e20cbe7116d10837623278\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564718400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1564718400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9c8e10196cc9c57088d061218b7a77e1\";a:10:{s:4:\"hash\";s:32:\"9c8e10196cc9c57088d061218b7a77e1\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564718400/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1564718400/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8d1178041d9af79962324f3be1a6aad4\";a:10:{s:4:\"hash\";s:32:\"8d1178041d9af79962324f3be1a6aad4\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564718400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1564718400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6e19aa8975edce6f133dd4406790db28\";a:10:{s:4:\"hash\";s:32:\"6e19aa8975edce6f133dd4406790db28\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564718400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1564718400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6a75596d146a876cd99414d7ddb8a84a\";a:10:{s:4:\"hash\";s:32:\"6a75596d146a876cd99414d7ddb8a84a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564718400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1564718400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a200d0a49a06d7e8e821dec329899ccb\";a:10:{s:4:\"hash\";s:32:\"a200d0a49a06d7e8e821dec329899ccb\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564718400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1564718400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c39852ca19f77613d92bfd8598f83833\";a:10:{s:4:\"hash\";s:32:\"c39852ca19f77613d92bfd8598f83833\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564718400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1564718400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c2f48e0c9b4faffb160d4ba8a69062c4\";a:10:{s:4:\"hash\";s:32:\"c2f48e0c9b4faffb160d4ba8a69062c4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564718400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1564718400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"103367ac47dc2c26318361e3d2305585\";a:10:{s:4:\"hash\";s:32:\"103367ac47dc2c26318361e3d2305585\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564718400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1564718400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"afd9ab31f0b4d3bdd329639ad7f45ca1\";a:10:{s:4:\"hash\";s:32:\"afd9ab31f0b4d3bdd329639ad7f45ca1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564804800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1564804800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2adb9a456216f4b730db330d933c0d47\";a:10:{s:4:\"hash\";s:32:\"2adb9a456216f4b730db330d933c0d47\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564804800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1564804800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1cf8e2e29748d70ee1d70077efd79877\";a:10:{s:4:\"hash\";s:32:\"1cf8e2e29748d70ee1d70077efd79877\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564804800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1564804800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"75e552eb52b26395032ac46afd5a96dd\";a:10:{s:4:\"hash\";s:32:\"75e552eb52b26395032ac46afd5a96dd\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564804800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1564804800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f30a42594244ae812bd68258dd057ae2\";a:10:{s:4:\"hash\";s:32:\"f30a42594244ae812bd68258dd057ae2\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564804800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1564804800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b8ae95dabca9a6a54e751e45ed4801bd\";a:10:{s:4:\"hash\";s:32:\"b8ae95dabca9a6a54e751e45ed4801bd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564804800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1564804800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5e15de5678474d9a98bf0e08e7fd7408\";a:10:{s:4:\"hash\";s:32:\"5e15de5678474d9a98bf0e08e7fd7408\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564804800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1564804800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e2b72f264dc0dfaeb7a0af796301c2f5\";a:10:{s:4:\"hash\";s:32:\"e2b72f264dc0dfaeb7a0af796301c2f5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564804800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1564804800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e0511cf18d544c30ad1b23eb835e87fc\";a:10:{s:4:\"hash\";s:32:\"e0511cf18d544c30ad1b23eb835e87fc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564804800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1564804800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5fc8fb2700d84ce684a6d9d223507ee9\";a:10:{s:4:\"hash\";s:32:\"5fc8fb2700d84ce684a6d9d223507ee9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564804800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1564804800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4bcd700ba53c5fd67bd3e33f0d6567e6\";a:10:{s:4:\"hash\";s:32:\"4bcd700ba53c5fd67bd3e33f0d6567e6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564891200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1564891200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6f2582ff51bb1345af226e89f1478cf4\";a:10:{s:4:\"hash\";s:32:\"6f2582ff51bb1345af226e89f1478cf4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564891200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1564891200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"161755dc056b7d0d97f882324c57c594\";a:10:{s:4:\"hash\";s:32:\"161755dc056b7d0d97f882324c57c594\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1564891200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1564891200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"93c8121ff317c01110e3cb6827295926\";a:10:{s:4:\"hash\";s:32:\"93c8121ff317c01110e3cb6827295926\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1566964800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1566964800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4daf14152a5c832eb401d63b3fa4d135\";a:10:{s:4:\"hash\";s:32:\"4daf14152a5c832eb401d63b3fa4d135\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1566964800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1566964800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"37f818c7f59c812fdf77fb38cac9d058\";a:10:{s:4:\"hash\";s:32:\"37f818c7f59c812fdf77fb38cac9d058\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1567051200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1567051200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a8593d18447af20acbaa6abda7299919\";a:10:{s:4:\"hash\";s:32:\"a8593d18447af20acbaa6abda7299919\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1567051200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1567051200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"03800fdc28c76cd7294c69a7f84f0ae3\";a:10:{s:4:\"hash\";s:32:\"03800fdc28c76cd7294c69a7f84f0ae3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1567051200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1567051200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bb263f8a168c3fc227cd77682e3bbeb1\";a:10:{s:4:\"hash\";s:32:\"bb263f8a168c3fc227cd77682e3bbeb1\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1567051200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1567051200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"62cb083a1dac8c1eb34d503e38fb632c\";a:10:{s:4:\"hash\";s:32:\"62cb083a1dac8c1eb34d503e38fb632c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1567051200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1567051200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ae8a51e51d6dc9ea42b5c1cbbd441e47\";a:10:{s:4:\"hash\";s:32:\"ae8a51e51d6dc9ea42b5c1cbbd441e47\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1567051200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1567051200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"99a5674220e1c860f2a946a26e5bb424\";a:10:{s:4:\"hash\";s:32:\"99a5674220e1c860f2a946a26e5bb424\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1567051200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1567051200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2aca5fbd2c2a9e3eae73c96ae21ed5e8\";a:10:{s:4:\"hash\";s:32:\"2aca5fbd2c2a9e3eae73c96ae21ed5e8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1567137600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1567137600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f18a844a74b4483b3c24dacb4cb15183\";a:10:{s:4:\"hash\";s:32:\"f18a844a74b4483b3c24dacb4cb15183\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1567137600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1567137600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c84c02030b1752ce20dd10159023eefc\";a:10:{s:4:\"hash\";s:32:\"c84c02030b1752ce20dd10159023eefc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1567137600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1567137600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4dd0c3dad1ef19b58db64c93ec8d4696\";a:10:{s:4:\"hash\";s:32:\"4dd0c3dad1ef19b58db64c93ec8d4696\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1567137600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1567137600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e1f4d4df4d80732f4ab2b7343eedef45\";a:10:{s:4:\"hash\";s:32:\"e1f4d4df4d80732f4ab2b7343eedef45\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1567137600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1567137600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d32f83347be077f508181441426788a\";a:10:{s:4:\"hash\";s:32:\"4d32f83347be077f508181441426788a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1567224000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1567224000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d1e3d507d47d08777338f3fa23e4969c\";a:10:{s:4:\"hash\";s:32:\"d1e3d507d47d08777338f3fa23e4969c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1567224000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1567224000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"84e77fe4df9ef50bec8ee5382aeba789\";a:10:{s:4:\"hash\";s:32:\"84e77fe4df9ef50bec8ee5382aeba789\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1567224000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1567224000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"59d5bd73f682baadfbc50591fbcc2e38\";a:10:{s:4:\"hash\";s:32:\"59d5bd73f682baadfbc50591fbcc2e38\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1567224000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1567224000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"34408d23412ae5f20400e2cd6d7f0713\";a:10:{s:4:\"hash\";s:32:\"34408d23412ae5f20400e2cd6d7f0713\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1567310400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1567310400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f94b9bced71753693dd765b28ebfd37d\";a:10:{s:4:\"hash\";s:32:\"f94b9bced71753693dd765b28ebfd37d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1572580800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1572580800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d80c42d4a056b4c6ac432f3a402a86f3\";a:10:{s:4:\"hash\";s:32:\"d80c42d4a056b4c6ac432f3a402a86f3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1572580800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1572580800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4ea3dfaca7ed1633ae390766e01b3daa\";a:10:{s:4:\"hash\";s:32:\"4ea3dfaca7ed1633ae390766e01b3daa\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1572580800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1572580800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"af00dc309c3dd1fdbea8c8ce3bc5f3d9\";a:10:{s:4:\"hash\";s:32:\"af00dc309c3dd1fdbea8c8ce3bc5f3d9\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1572667200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1572667200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"612f5f6f8e7a81e38b60324aec999c30\";a:10:{s:4:\"hash\";s:32:\"612f5f6f8e7a81e38b60324aec999c30\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1572667200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1572667200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"092bc6bdc4080d931311fdc3459b8f3a\";a:10:{s:4:\"hash\";s:32:\"092bc6bdc4080d931311fdc3459b8f3a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1572667200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1572667200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"267cce4c079312bd013910b16e55ea19\";a:10:{s:4:\"hash\";s:32:\"267cce4c079312bd013910b16e55ea19\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1572667200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1572667200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"65ae48e1ff86c5e96f2b3e52275c11f0\";a:10:{s:4:\"hash\";s:32:\"65ae48e1ff86c5e96f2b3e52275c11f0\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1572753600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1572753600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2342d49a7decc73fbea549a77e9f2911\";a:10:{s:4:\"hash\";s:32:\"2342d49a7decc73fbea549a77e9f2911\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1572753600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1572753600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7e92e9a872776c6161a4ba052a9ac3e8\";a:10:{s:4:\"hash\";s:32:\"7e92e9a872776c6161a4ba052a9ac3e8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1572753600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1572753600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7d255fded3d583fa31137e46efac396c\";a:10:{s:4:\"hash\";s:32:\"7d255fded3d583fa31137e46efac396c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1572753600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1572753600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f64dd72650585515114ecafd8505c2fa\";a:10:{s:4:\"hash\";s:32:\"f64dd72650585515114ecafd8505c2fa\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1572843600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1572843600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fde9a728400a75644657628edd3b2499\";a:10:{s:4:\"hash\";s:32:\"fde9a728400a75644657628edd3b2499\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573189200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1573189200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d32f9f1a07f4dd90d44adc01fb247990\";a:10:{s:4:\"hash\";s:32:\"d32f9f1a07f4dd90d44adc01fb247990\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573275600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1573275600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5097f5e7382e5873338fde99fef20836\";a:10:{s:4:\"hash\";s:32:\"5097f5e7382e5873338fde99fef20836\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573275600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1573275600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"023c7f9fa2bd811b5ed2ee754d059c67\";a:10:{s:4:\"hash\";s:32:\"023c7f9fa2bd811b5ed2ee754d059c67\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573275600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1573275600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ebf587824f444aaa951c33a98e18379\";a:10:{s:4:\"hash\";s:32:\"8ebf587824f444aaa951c33a98e18379\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573275600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1573275600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e148d6be6e6b9339e370665dff4c23ba\";a:10:{s:4:\"hash\";s:32:\"e148d6be6e6b9339e370665dff4c23ba\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573362000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1573362000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fd2ea09f263cabefe2a89245fe1e5dd3\";a:10:{s:4:\"hash\";s:32:\"fd2ea09f263cabefe2a89245fe1e5dd3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573362000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1573362000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7dd90fcf22d4e56756a08b11ade187ae\";a:10:{s:4:\"hash\";s:32:\"7dd90fcf22d4e56756a08b11ade187ae\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573362000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1573362000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3bbe18f0f9e491442e8a0490fe6245d9\";a:10:{s:4:\"hash\";s:32:\"3bbe18f0f9e491442e8a0490fe6245d9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573362000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1573362000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6ef4ba24f48ffa727d82df723b9d2455\";a:10:{s:4:\"hash\";s:32:\"6ef4ba24f48ffa727d82df723b9d2455\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573448400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1573448400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1950021d28a10e23c62fc81eb6ca058c\";a:10:{s:4:\"hash\";s:32:\"1950021d28a10e23c62fc81eb6ca058c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573448400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1573448400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff6703eaf7579c4b41fd899f3f0c621a\";a:10:{s:4:\"hash\";s:32:\"ff6703eaf7579c4b41fd899f3f0c621a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573448400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1573448400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"928b4f7d008860b1851821971bae904c\";a:10:{s:4:\"hash\";s:32:\"928b4f7d008860b1851821971bae904c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573448400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1573448400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a90da619156fd4cbb8c8f506522da341\";a:10:{s:4:\"hash\";s:32:\"a90da619156fd4cbb8c8f506522da341\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573534800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1573534800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1e7699cb9def082d6d823535969a83df\";a:10:{s:4:\"hash\";s:32:\"1e7699cb9def082d6d823535969a83df\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573621200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1573621200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"86a49029f460caca8728b51363a320a6\";a:10:{s:4:\"hash\";s:32:\"86a49029f460caca8728b51363a320a6\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573707600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1573707600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2ff64e8829d912e144769ef1d49d1d85\";a:10:{s:4:\"hash\";s:32:\"2ff64e8829d912e144769ef1d49d1d85\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573707600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1573707600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d9a84eda1afeaedd41306176df059cae\";a:10:{s:4:\"hash\";s:32:\"d9a84eda1afeaedd41306176df059cae\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573707600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1573707600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d1189151b885520e9d381a67696e0d87\";a:10:{s:4:\"hash\";s:32:\"d1189151b885520e9d381a67696e0d87\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573707600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1573707600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b9aba96a8eef4bcbce8d99509eb8ed37\";a:10:{s:4:\"hash\";s:32:\"b9aba96a8eef4bcbce8d99509eb8ed37\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573794000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1573794000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0aad5828cfb8cd3161137b4b31b0ade9\";a:10:{s:4:\"hash\";s:32:\"0aad5828cfb8cd3161137b4b31b0ade9\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1573966800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1573966800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"79e3f94cd3a81d31bd53dcd6e1094d33\";a:10:{s:4:\"hash\";s:32:\"79e3f94cd3a81d31bd53dcd6e1094d33\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574053200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1574053200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b6d06489f7aaf3499753935f78d3c530\";a:10:{s:4:\"hash\";s:32:\"b6d06489f7aaf3499753935f78d3c530\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574053200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1574053200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"88c147a4b375e5bc701e9d34c57ac575\";a:10:{s:4:\"hash\";s:32:\"88c147a4b375e5bc701e9d34c57ac575\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574053200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1574053200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0866945dd8eda7a57b2549868afd207f\";a:10:{s:4:\"hash\";s:32:\"0866945dd8eda7a57b2549868afd207f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574053200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1574053200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b49b622fa8db9268ae5c8c3c071b9c59\";a:10:{s:4:\"hash\";s:32:\"b49b622fa8db9268ae5c8c3c071b9c59\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574139600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1574139600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"13be1eabea75afa58575eb065d2b9fa8\";a:10:{s:4:\"hash\";s:32:\"13be1eabea75afa58575eb065d2b9fa8\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574398800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1574398800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b6c6b07e4d42b88ed9fce583f1636807\";a:10:{s:4:\"hash\";s:32:\"b6c6b07e4d42b88ed9fce583f1636807\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574485200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1574485200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"43c46e8a792a52d762928afd568adf85\";a:10:{s:4:\"hash\";s:32:\"43c46e8a792a52d762928afd568adf85\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574485200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1574485200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"717b1b8929e7c7baded043c0bbcb6504\";a:10:{s:4:\"hash\";s:32:\"717b1b8929e7c7baded043c0bbcb6504\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574485200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1574485200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bc5d0887fe53ca3590a434cd2d0eac4c\";a:10:{s:4:\"hash\";s:32:\"bc5d0887fe53ca3590a434cd2d0eac4c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574485200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1574485200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b9963b6c4f0e842168b5925c058918b4\";a:10:{s:4:\"hash\";s:32:\"b9963b6c4f0e842168b5925c058918b4\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574571600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1574571600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"59ed37e76dbea863a78f1d1d2319c8fb\";a:10:{s:4:\"hash\";s:32:\"59ed37e76dbea863a78f1d1d2319c8fb\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574658000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1574658000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3a3e631874b9a1f5c5c7287d7afca7c2\";a:10:{s:4:\"hash\";s:32:\"3a3e631874b9a1f5c5c7287d7afca7c2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574658000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1574658000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"012b8e752f91981c984d57b13a6e786f\";a:10:{s:4:\"hash\";s:32:\"012b8e752f91981c984d57b13a6e786f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574658000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1574658000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4bf884ef864e7e99b787fd606a33bc7f\";a:10:{s:4:\"hash\";s:32:\"4bf884ef864e7e99b787fd606a33bc7f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574658000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1574658000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e45ee8fb6f57acbf697084f5763d4d2b\";a:10:{s:4:\"hash\";s:32:\"e45ee8fb6f57acbf697084f5763d4d2b\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574744400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1574744400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fa03ef75bafd69f7bb4b16f08b62b337\";a:10:{s:4:\"hash\";s:32:\"fa03ef75bafd69f7bb4b16f08b62b337\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574830800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1574830800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"299dbe57a1fe4485afb3742012e44fd9\";a:10:{s:4:\"hash\";s:32:\"299dbe57a1fe4485afb3742012e44fd9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574830800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1574830800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ec6c159e0f35a9f0b08c8c4a1975b7ba\";a:10:{s:4:\"hash\";s:32:\"ec6c159e0f35a9f0b08c8c4a1975b7ba\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574830800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1574830800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5eaffe3912fe52c76ff974a7654d832b\";a:10:{s:4:\"hash\";s:32:\"5eaffe3912fe52c76ff974a7654d832b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574830800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1574830800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dadde571007dc30f0b67d1103af36b51\";a:10:{s:4:\"hash\";s:32:\"dadde571007dc30f0b67d1103af36b51\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574917200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1574917200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"84eec36f5f9916fb1c0e0b2ee08b6ad3\";a:10:{s:4:\"hash\";s:32:\"84eec36f5f9916fb1c0e0b2ee08b6ad3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574917200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1574917200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"875e8502b435d166c68cc92ddcc046a3\";a:10:{s:4:\"hash\";s:32:\"875e8502b435d166c68cc92ddcc046a3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574917200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1574917200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eafaf1473ed3e1e0bfe9f4fa9dc41b9a\";a:10:{s:4:\"hash\";s:32:\"eafaf1473ed3e1e0bfe9f4fa9dc41b9a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1574917200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1574917200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"79f4ba91d4866f7ffef201c8308c7ef8\";a:10:{s:4:\"hash\";s:32:\"79f4ba91d4866f7ffef201c8308c7ef8\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1575003600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1575003600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4a6733a5b28a2668b96b4dff2b2e06c6\";a:10:{s:4:\"hash\";s:32:\"4a6733a5b28a2668b96b4dff2b2e06c6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1580533200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1580533200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c373207e87e75b3a10bfd27573f3d9fe\";a:10:{s:4:\"hash\";s:32:\"c373207e87e75b3a10bfd27573f3d9fe\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1585627200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1585627200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cef629d9eca15ef8af6f19a5d82f96dc\";a:10:{s:4:\"hash\";s:32:\"cef629d9eca15ef8af6f19a5d82f96dc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1585713600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1585713600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"95229662df41faba5521d3f0389eeaea\";a:10:{s:4:\"hash\";s:32:\"95229662df41faba5521d3f0389eeaea\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1585713600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1585713600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c63d65a797753e14e670f485c307bdc0\";a:10:{s:4:\"hash\";s:32:\"c63d65a797753e14e670f485c307bdc0\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1585713600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1585713600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0ded4f9c4dd5413284dee4de0f48d6a2\";a:10:{s:4:\"hash\";s:32:\"0ded4f9c4dd5413284dee4de0f48d6a2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1585713600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1585713600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8cfd26da8d8db075d171f0e790b6aadc\";a:10:{s:4:\"hash\";s:32:\"8cfd26da8d8db075d171f0e790b6aadc\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1585800000/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1585800000/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"95c53a128eafecd4e6812006e7582ac1\";a:10:{s:4:\"hash\";s:32:\"95c53a128eafecd4e6812006e7582ac1\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1586232000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1586232000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a50d6d8046b4a6e8be93fb6b70ca793f\";a:10:{s:4:\"hash\";s:32:\"a50d6d8046b4a6e8be93fb6b70ca793f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1586318400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1586318400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"41633e97b390ad5bfddd4be05c883302\";a:10:{s:4:\"hash\";s:32:\"41633e97b390ad5bfddd4be05c883302\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1586318400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1586318400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2e729ccab5aee8f2ca2d244b71fe9d6c\";a:10:{s:4:\"hash\";s:32:\"2e729ccab5aee8f2ca2d244b71fe9d6c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1586318400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1586318400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"025b38a528415a7511d62106c5648654\";a:10:{s:4:\"hash\";s:32:\"025b38a528415a7511d62106c5648654\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1586318400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1586318400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bdeb2d8d7fb7180b744d1c74d4b395f4\";a:10:{s:4:\"hash\";s:32:\"bdeb2d8d7fb7180b744d1c74d4b395f4\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1586404800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1586404800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0fd8de8eb1e05c8d765d4238eb8ed228\";a:10:{s:4:\"hash\";s:32:\"0fd8de8eb1e05c8d765d4238eb8ed228\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1586491200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1586491200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ded47b0bff8325a8ada84d807c2dd667\";a:10:{s:4:\"hash\";s:32:\"ded47b0bff8325a8ada84d807c2dd667\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1586577600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1586577600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6f7b8a80d15a34862ea5ce88072e29eb\";a:10:{s:4:\"hash\";s:32:\"6f7b8a80d15a34862ea5ce88072e29eb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1586577600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1586577600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef6c571cfdc3bb35b6e5abc1a38e3773\";a:10:{s:4:\"hash\";s:32:\"ef6c571cfdc3bb35b6e5abc1a38e3773\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1586577600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1586577600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"59c21340ffc631412d2cbaae9ed6a849\";a:10:{s:4:\"hash\";s:32:\"59c21340ffc631412d2cbaae9ed6a849\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1586577600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1586577600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"693ee879f645065bf9d7b32b20bc105b\";a:10:{s:4:\"hash\";s:32:\"693ee879f645065bf9d7b32b20bc105b\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1586664000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1586664000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"70aec152f991d79cf76677e466e61ccb\";a:10:{s:4:\"hash\";s:32:\"70aec152f991d79cf76677e466e61ccb\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1587009600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1587009600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"398fa80cd27420a3c9d3378f1b5da797\";a:10:{s:4:\"hash\";s:32:\"398fa80cd27420a3c9d3378f1b5da797\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1587096000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1587096000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"af294b35fdc9508e9e68665182f4587f\";a:10:{s:4:\"hash\";s:32:\"af294b35fdc9508e9e68665182f4587f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1587096000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1587096000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bb08e73963c6763c14f1edfa6c1464df\";a:10:{s:4:\"hash\";s:32:\"bb08e73963c6763c14f1edfa6c1464df\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1587096000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1587096000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7be41295d1f37dc5f64c3763eff4acdb\";a:10:{s:4:\"hash\";s:32:\"7be41295d1f37dc5f64c3763eff4acdb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1587096000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1587096000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"879bebfb88e8b5817bd86d7d245d98a8\";a:10:{s:4:\"hash\";s:32:\"879bebfb88e8b5817bd86d7d245d98a8\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1587182400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1587182400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"82df4a8e7e2bedce29c3b4644ac1195e\";a:10:{s:4:\"hash\";s:32:\"82df4a8e7e2bedce29c3b4644ac1195e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1587268800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1587268800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"afb35334ae1ab329eb068edc8e8f5f10\";a:10:{s:4:\"hash\";s:32:\"afb35334ae1ab329eb068edc8e8f5f10\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1587355200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1587355200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"225c4e8651a45d12b887cf785eee5748\";a:10:{s:4:\"hash\";s:32:\"225c4e8651a45d12b887cf785eee5748\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1587355200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1587355200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c45948ebcd34290b1d9f1b64e2b5591a\";a:10:{s:4:\"hash\";s:32:\"c45948ebcd34290b1d9f1b64e2b5591a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1587355200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1587355200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4a991a08214e90498cc17f807aa036d3\";a:10:{s:4:\"hash\";s:32:\"4a991a08214e90498cc17f807aa036d3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1587355200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1587355200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0fab945767bb701d8622465c407ab9d3\";a:10:{s:4:\"hash\";s:32:\"0fab945767bb701d8622465c407ab9d3\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1587441600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1587441600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a0ace98774f89ab428739c81a32f2f54\";a:10:{s:4:\"hash\";s:32:\"a0ace98774f89ab428739c81a32f2f54\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1587873600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1587873600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ed65b4ffeba717b9e72a5cc3d2ba2107\";a:10:{s:4:\"hash\";s:32:\"ed65b4ffeba717b9e72a5cc3d2ba2107\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1587960000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1587960000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"889650a3e6b5ce16bc07525479ded70e\";a:10:{s:4:\"hash\";s:32:\"889650a3e6b5ce16bc07525479ded70e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1587960000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1587960000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fa841feff3cff13160a9dac8325df495\";a:10:{s:4:\"hash\";s:32:\"fa841feff3cff13160a9dac8325df495\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1587960000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1587960000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cad1a9e81c898d4e234c49ccab9753ff\";a:10:{s:4:\"hash\";s:32:\"cad1a9e81c898d4e234c49ccab9753ff\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1587960000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1587960000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6c3bb575feaa2fbfc3e832ea749100ba\";a:10:{s:4:\"hash\";s:32:\"6c3bb575feaa2fbfc3e832ea749100ba\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588046400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1588046400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f665cf8d4df3087d70b4d41b10124f1\";a:10:{s:4:\"hash\";s:32:\"7f665cf8d4df3087d70b4d41b10124f1\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588132800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1588132800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"19073ecbff77a28255209dc66dad843a\";a:10:{s:4:\"hash\";s:32:\"19073ecbff77a28255209dc66dad843a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588132800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1588132800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b8fba2e5a6d1e391c3218b86cc1b85e1\";a:10:{s:4:\"hash\";s:32:\"b8fba2e5a6d1e391c3218b86cc1b85e1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588132800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1588132800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8973102d14e40916dd21aa634e1892ab\";a:10:{s:4:\"hash\";s:32:\"8973102d14e40916dd21aa634e1892ab\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588132800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1588132800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ab1cf182a4e933bdb98368e38fd21baa\";a:10:{s:4:\"hash\";s:32:\"ab1cf182a4e933bdb98368e38fd21baa\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588219200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1588219200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bc35093775b367aeebb815f95bbb61c6\";a:10:{s:4:\"hash\";s:32:\"bc35093775b367aeebb815f95bbb61c6\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588305600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1588305600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9d97d8b365ee6bdc178145164154da4d\";a:10:{s:4:\"hash\";s:32:\"9d97d8b365ee6bdc178145164154da4d\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588305600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1588305600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"25dc2c5afe0b66c50ad59ee9424c0d6a\";a:10:{s:4:\"hash\";s:32:\"25dc2c5afe0b66c50ad59ee9424c0d6a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588305600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1588305600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f78e5a9b8ca91679a88690cc926c04d9\";a:10:{s:4:\"hash\";s:32:\"f78e5a9b8ca91679a88690cc926c04d9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588305600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1588305600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ad0ea13fc3fa2f57d9a04e6149ec5a1c\";a:10:{s:4:\"hash\";s:32:\"ad0ea13fc3fa2f57d9a04e6149ec5a1c\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588305600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1588305600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"119dd1804dc0e3129d263e558357ea96\";a:10:{s:4:\"hash\";s:32:\"119dd1804dc0e3129d263e558357ea96\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588305600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1588305600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2e6affbad9a6f68f4f670231cdb6ddbb\";a:10:{s:4:\"hash\";s:32:\"2e6affbad9a6f68f4f670231cdb6ddbb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588305600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1588305600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d4f704d996bd4e3b98dae7c3719c2ad7\";a:10:{s:4:\"hash\";s:32:\"d4f704d996bd4e3b98dae7c3719c2ad7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588305600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1588305600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4b2faaf72e95854fc544f8f2c71df1f7\";a:10:{s:4:\"hash\";s:32:\"4b2faaf72e95854fc544f8f2c71df1f7\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588392000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1588392000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c237425df96bde3c175e3e0395d78d83\";a:10:{s:4:\"hash\";s:32:\"c237425df96bde3c175e3e0395d78d83\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588564800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1588564800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"69f7968b3fb1c148fed720a176700ccf\";a:10:{s:4:\"hash\";s:32:\"69f7968b3fb1c148fed720a176700ccf\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588564800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1588564800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"75230c960239752f1c813ba5f9b8d242\";a:10:{s:4:\"hash\";s:32:\"75230c960239752f1c813ba5f9b8d242\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588651200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1588651200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"31bd25c7bd80a6b42c5036859576d52a\";a:10:{s:4:\"hash\";s:32:\"31bd25c7bd80a6b42c5036859576d52a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588651200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1588651200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"528427ccfaa6e53cdd4be2c571b44d09\";a:10:{s:4:\"hash\";s:32:\"528427ccfaa6e53cdd4be2c571b44d09\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588651200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1588651200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"094ceb480b9bbae11891147b4af49aed\";a:10:{s:4:\"hash\";s:32:\"094ceb480b9bbae11891147b4af49aed\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588651200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1588651200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"906d7ac3a417eb8cd18b6ec4f8c3e40d\";a:10:{s:4:\"hash\";s:32:\"906d7ac3a417eb8cd18b6ec4f8c3e40d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588651200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1588651200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0db48f0ea7cf92d4a0693c581f03bcaf\";a:10:{s:4:\"hash\";s:32:\"0db48f0ea7cf92d4a0693c581f03bcaf\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588651200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1588651200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a5beee40a06184e474fd8eb4770724a3\";a:10:{s:4:\"hash\";s:32:\"a5beee40a06184e474fd8eb4770724a3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588651200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1588651200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5fef958d134f1c48236a96b27cc136f5\";a:10:{s:4:\"hash\";s:32:\"5fef958d134f1c48236a96b27cc136f5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588651200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1588651200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"771e6c053f6efc638f8aeafb1e5838bb\";a:10:{s:4:\"hash\";s:32:\"771e6c053f6efc638f8aeafb1e5838bb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588737600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1588737600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2f9f2ee2bb2d216d701e7d09814df51e\";a:10:{s:4:\"hash\";s:32:\"2f9f2ee2bb2d216d701e7d09814df51e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588737600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1588737600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a6b682339b14677730df1a8cb724cf4b\";a:10:{s:4:\"hash\";s:32:\"a6b682339b14677730df1a8cb724cf4b\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588737600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1588737600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"582cdfe473ce903c0da82524cc038ee7\";a:10:{s:4:\"hash\";s:32:\"582cdfe473ce903c0da82524cc038ee7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588737600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1588737600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e42b222e15655d9f181e18e26ea7d95d\";a:10:{s:4:\"hash\";s:32:\"e42b222e15655d9f181e18e26ea7d95d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588737600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1588737600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d8b2025039a05eea66b6b057639effd5\";a:10:{s:4:\"hash\";s:32:\"d8b2025039a05eea66b6b057639effd5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588737600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1588737600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"18f7f064614b811894de2c141693a6f6\";a:10:{s:4:\"hash\";s:32:\"18f7f064614b811894de2c141693a6f6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588737600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1588737600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"189e203d1d55f1047f10f3e5a27e641f\";a:10:{s:4:\"hash\";s:32:\"189e203d1d55f1047f10f3e5a27e641f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588737600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1588737600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"880e0ac4e9cf08ce2a6ffe9275f68de0\";a:10:{s:4:\"hash\";s:32:\"880e0ac4e9cf08ce2a6ffe9275f68de0\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588824000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1588824000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ceee193cada6f3b39727c04c2961516d\";a:10:{s:4:\"hash\";s:32:\"ceee193cada6f3b39727c04c2961516d\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588824000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1588824000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8d02163799f9adf908e30f8e4a8aedf9\";a:10:{s:4:\"hash\";s:32:\"8d02163799f9adf908e30f8e4a8aedf9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588824000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1588824000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f90dcc558cd586e5151c692ae2e0473a\";a:10:{s:4:\"hash\";s:32:\"f90dcc558cd586e5151c692ae2e0473a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588824000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1588824000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1466a63123e8d308b1a3f661c7d87850\";a:10:{s:4:\"hash\";s:32:\"1466a63123e8d308b1a3f661c7d87850\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1588910400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1588910400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3b966081f0fa8d3e3718a538c3c3c958\";a:10:{s:4:\"hash\";s:32:\"3b966081f0fa8d3e3718a538c3c3c958\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589342400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1589342400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a0019fda9e7aee2177194224c94b7932\";a:10:{s:4:\"hash\";s:32:\"a0019fda9e7aee2177194224c94b7932\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589428800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1589428800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"44bb112b06cfad361349773a150e99af\";a:10:{s:4:\"hash\";s:32:\"44bb112b06cfad361349773a150e99af\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589428800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589428800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a9f9ab8070e58b55925b00cb0c6539f2\";a:10:{s:4:\"hash\";s:32:\"a9f9ab8070e58b55925b00cb0c6539f2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589428800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589428800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fcbcb5cd779eda87a44ac7fc1022d9ab\";a:10:{s:4:\"hash\";s:32:\"fcbcb5cd779eda87a44ac7fc1022d9ab\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589428800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589428800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5dca3caf3afdcc82a56ac14d4eafaf95\";a:10:{s:4:\"hash\";s:32:\"5dca3caf3afdcc82a56ac14d4eafaf95\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589515200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1589515200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fe75f0b733ce5593b11f056120b0002d\";a:10:{s:4:\"hash\";s:32:\"fe75f0b733ce5593b11f056120b0002d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589601600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1589601600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"872ab5d3f03e999be6d4a49ab31710f9\";a:10:{s:4:\"hash\";s:32:\"872ab5d3f03e999be6d4a49ab31710f9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589601600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589601600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b609ee313bb4586d4e1cd4854aa5d4d1\";a:10:{s:4:\"hash\";s:32:\"b609ee313bb4586d4e1cd4854aa5d4d1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589601600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589601600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f2eb4621f7d5a2e6244f858d6fc451f5\";a:10:{s:4:\"hash\";s:32:\"f2eb4621f7d5a2e6244f858d6fc451f5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589601600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589601600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2d3a203f9dd421c50d3e569cb62112db\";a:10:{s:4:\"hash\";s:32:\"2d3a203f9dd421c50d3e569cb62112db\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589688000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589688000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9c5e113b58db6931c643f772dd9090a3\";a:10:{s:4:\"hash\";s:32:\"9c5e113b58db6931c643f772dd9090a3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589688000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589688000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ae9ca5effa013f90649f426ea8aa29ae\";a:10:{s:4:\"hash\";s:32:\"ae9ca5effa013f90649f426ea8aa29ae\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589688000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1589688000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b87b2cc81c053cf2578fdd62ce03926c\";a:10:{s:4:\"hash\";s:32:\"b87b2cc81c053cf2578fdd62ce03926c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589688000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589688000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dfe04d4ac41446e5093abe75e1ba6162\";a:10:{s:4:\"hash\";s:32:\"dfe04d4ac41446e5093abe75e1ba6162\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589688000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589688000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8109e3ee826f9b001a0c19c535f3e7eb\";a:10:{s:4:\"hash\";s:32:\"8109e3ee826f9b001a0c19c535f3e7eb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589688000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589688000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6eba96f272f8289576556fa3d1671ae0\";a:10:{s:4:\"hash\";s:32:\"6eba96f272f8289576556fa3d1671ae0\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589774400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1589774400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8903aba54190aca594cfc95635fee603\";a:10:{s:4:\"hash\";s:32:\"8903aba54190aca594cfc95635fee603\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589774400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589774400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"177c7bfb63e6e87e4ae5b160ff41b818\";a:10:{s:4:\"hash\";s:32:\"177c7bfb63e6e87e4ae5b160ff41b818\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589774400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589774400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"28ae385418ea052c6f57737fe3c862a5\";a:10:{s:4:\"hash\";s:32:\"28ae385418ea052c6f57737fe3c862a5\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589774400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1589774400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"10b66113eb2288adda0bc5ed5c7894f6\";a:10:{s:4:\"hash\";s:32:\"10b66113eb2288adda0bc5ed5c7894f6\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589860800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1589860800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f7ac0c8d6ac064cd631220e6d1ffa4da\";a:10:{s:4:\"hash\";s:32:\"f7ac0c8d6ac064cd631220e6d1ffa4da\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589860800/cat_ids~87,89,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1589860800/cat_ids~87,89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cb6418c547b3e4db6ee603f2668109dc\";a:10:{s:4:\"hash\";s:32:\"cb6418c547b3e4db6ee603f2668109dc\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589860800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1589860800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f3d765ff3fe7d1378009c4e7f736f284\";a:10:{s:4:\"hash\";s:32:\"f3d765ff3fe7d1378009c4e7f736f284\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589860800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589860800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d4b8e0556f4297e8bbf67aa7a7f03369\";a:10:{s:4:\"hash\";s:32:\"d4b8e0556f4297e8bbf67aa7a7f03369\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589860800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1589860800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9df403ba3ee24e719b5d203bd5566799\";a:10:{s:4:\"hash\";s:32:\"9df403ba3ee24e719b5d203bd5566799\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589860800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1589860800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0cfa9678a232660c1575cea1ee27cdfe\";a:10:{s:4:\"hash\";s:32:\"0cfa9678a232660c1575cea1ee27cdfe\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589860800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589860800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"31777dc3b4ebab481e5f0cf9b7b3b193\";a:10:{s:4:\"hash\";s:32:\"31777dc3b4ebab481e5f0cf9b7b3b193\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589860800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589860800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"263608e4415153a746820b73a2fc1d9a\";a:10:{s:4:\"hash\";s:32:\"263608e4415153a746820b73a2fc1d9a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589860800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1589860800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9dba52adfc420a5bd092fb4706e4332f\";a:10:{s:4:\"hash\";s:32:\"9dba52adfc420a5bd092fb4706e4332f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589947200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1589947200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"df308b0d19cadbc36918103420eef0e3\";a:10:{s:4:\"hash\";s:32:\"df308b0d19cadbc36918103420eef0e3\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589947200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1589947200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"94af448c54f97a2ac9e8cefd731bc6ba\";a:10:{s:4:\"hash\";s:32:\"94af448c54f97a2ac9e8cefd731bc6ba\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589947200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589947200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5eb7ed0dfafc6101c1a4d32c501f191f\";a:10:{s:4:\"hash\";s:32:\"5eb7ed0dfafc6101c1a4d32c501f191f\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589947200/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1589947200/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"47bd64db4ad0074daf731ba624c13af1\";a:10:{s:4:\"hash\";s:32:\"47bd64db4ad0074daf731ba624c13af1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589947200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1589947200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"487f9fbf2ab67b850ae538618e7c31bd\";a:10:{s:4:\"hash\";s:32:\"487f9fbf2ab67b850ae538618e7c31bd\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589947200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1589947200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6fe89e9ea0937826d9200890d1c5ef81\";a:10:{s:4:\"hash\";s:32:\"6fe89e9ea0937826d9200890d1c5ef81\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589947200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589947200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f69e6eaaf029403bd830fdbea3277d63\";a:10:{s:4:\"hash\";s:32:\"f69e6eaaf029403bd830fdbea3277d63\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589947200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1589947200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c344a246b0023fa37bdf1288aac0c610\";a:10:{s:4:\"hash\";s:32:\"c344a246b0023fa37bdf1288aac0c610\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589947200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589947200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1c1d39775eef9b49e4ccb12d9359b528\";a:10:{s:4:\"hash\";s:32:\"1c1d39775eef9b49e4ccb12d9359b528\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589947200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589947200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d056540bc57d20aad0dfcfd40196dabc\";a:10:{s:4:\"hash\";s:32:\"d056540bc57d20aad0dfcfd40196dabc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1589947200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1589947200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9cd09d7bdc759092c8d39c538e8d75f3\";a:10:{s:4:\"hash\";s:32:\"9cd09d7bdc759092c8d39c538e8d75f3\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590033600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1590033600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e6f1f78a70a9d62d4e2a9833b9aef8eb\";a:10:{s:4:\"hash\";s:32:\"e6f1f78a70a9d62d4e2a9833b9aef8eb\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590033600/cat_ids~87,89,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1590033600/cat_ids~87,89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"42ac8225d72ae3ba476421ce8bebae9f\";a:10:{s:4:\"hash\";s:32:\"42ac8225d72ae3ba476421ce8bebae9f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590033600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1590033600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2bca612756e14d61a32c9c4d4586f581\";a:10:{s:4:\"hash\";s:32:\"2bca612756e14d61a32c9c4d4586f581\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590033600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590033600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"880c881e0371355f56e161f561115798\";a:10:{s:4:\"hash\";s:32:\"880c881e0371355f56e161f561115798\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590033600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1590033600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"19cca1e46334520d14355acb81983554\";a:10:{s:4:\"hash\";s:32:\"19cca1e46334520d14355acb81983554\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590033600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1590033600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e1b1cd4a790156850e3bb0f4cd69a5f7\";a:10:{s:4:\"hash\";s:32:\"e1b1cd4a790156850e3bb0f4cd69a5f7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590033600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590033600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a55bb516c1cdf5106092eae4cdcd82c4\";a:10:{s:4:\"hash\";s:32:\"a55bb516c1cdf5106092eae4cdcd82c4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590033600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590033600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3417518a9cdf02b3932e32c34ff3d5d5\";a:10:{s:4:\"hash\";s:32:\"3417518a9cdf02b3932e32c34ff3d5d5\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590033600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1590033600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1f65aa5498a25801d5234e3c539ca444\";a:10:{s:4:\"hash\";s:32:\"1f65aa5498a25801d5234e3c539ca444\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590033600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590033600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fa152ebdd68155b4f6327d97c3f5bb3a\";a:10:{s:4:\"hash\";s:32:\"fa152ebdd68155b4f6327d97c3f5bb3a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590033600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590033600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cfbe88b35046900768c2df87a4a74870\";a:10:{s:4:\"hash\";s:32:\"cfbe88b35046900768c2df87a4a74870\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590033600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590033600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"60bc2bcb05f1e85950b076a9ad6e61d5\";a:10:{s:4:\"hash\";s:32:\"60bc2bcb05f1e85950b076a9ad6e61d5\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590120000/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1590120000/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6d56b5c850f1855b16517fa0258c5836\";a:10:{s:4:\"hash\";s:32:\"6d56b5c850f1855b16517fa0258c5836\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590120000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590120000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ee5035fd790d07e4b5638ad4d85ce4ef\";a:10:{s:4:\"hash\";s:32:\"ee5035fd790d07e4b5638ad4d85ce4ef\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590120000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590120000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1f9197e14b9d703c8881774176c6de21\";a:10:{s:4:\"hash\";s:32:\"1f9197e14b9d703c8881774176c6de21\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590120000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1590120000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"50fb959a74ef05176c793109b521cad0\";a:10:{s:4:\"hash\";s:32:\"50fb959a74ef05176c793109b521cad0\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590379200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1590379200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"976992d0ba7bb28fb417f806794f0f03\";a:10:{s:4:\"hash\";s:32:\"976992d0ba7bb28fb417f806794f0f03\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590465600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1590465600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"354036acbde1f49ce26cf5ec3e354713\";a:10:{s:4:\"hash\";s:32:\"354036acbde1f49ce26cf5ec3e354713\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590552000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590552000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3f861ac61928cc87e63854b9e2f2d9b7\";a:10:{s:4:\"hash\";s:32:\"3f861ac61928cc87e63854b9e2f2d9b7\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590552000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1590552000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"674864198a51a6faf27cc8d5015c315e\";a:10:{s:4:\"hash\";s:32:\"674864198a51a6faf27cc8d5015c315e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590552000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590552000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fbdc9ebc4dac97da65d2f21c05ecc655\";a:10:{s:4:\"hash\";s:32:\"fbdc9ebc4dac97da65d2f21c05ecc655\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590552000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590552000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c50cbd61cf385199e5b31ca24f267d71\";a:10:{s:4:\"hash\";s:32:\"c50cbd61cf385199e5b31ca24f267d71\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590552000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590552000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6fbcf10985ec88f2117a43fec7f62a30\";a:10:{s:4:\"hash\";s:32:\"6fbcf10985ec88f2117a43fec7f62a30\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590638400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1590638400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9e2bcbbe979873a87f848911e5990424\";a:10:{s:4:\"hash\";s:32:\"9e2bcbbe979873a87f848911e5990424\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590638400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1590638400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f9f6a9b2561f7de3729e850a4902b845\";a:10:{s:4:\"hash\";s:32:\"f9f6a9b2561f7de3729e850a4902b845\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590638400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590638400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3375ccb8829f121c2f84ae0432002bb3\";a:10:{s:4:\"hash\";s:32:\"3375ccb8829f121c2f84ae0432002bb3\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590638400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1590638400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"95a1c9030650f8b6ef2efacfb7e5d28b\";a:10:{s:4:\"hash\";s:32:\"95a1c9030650f8b6ef2efacfb7e5d28b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590638400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590638400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef5b23343d1b73c681bc0a6a3c946d2f\";a:10:{s:4:\"hash\";s:32:\"ef5b23343d1b73c681bc0a6a3c946d2f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590638400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590638400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cb62688131ae0fab9972a5db693b3c46\";a:10:{s:4:\"hash\";s:32:\"cb62688131ae0fab9972a5db693b3c46\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590638400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590638400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7258bd78db206ef867709fabcb07ebd5\";a:10:{s:4:\"hash\";s:32:\"7258bd78db206ef867709fabcb07ebd5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590724800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590724800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"51986e1106a073d3460087194b36d51b\";a:10:{s:4:\"hash\";s:32:\"51986e1106a073d3460087194b36d51b\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590724800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1590724800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bd36f1a9c755100ac8686554b28b6c08\";a:10:{s:4:\"hash\";s:32:\"bd36f1a9c755100ac8686554b28b6c08\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590897600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590897600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3a02e09f971d68e6840bafc9cbc94b93\";a:10:{s:4:\"hash\";s:32:\"3a02e09f971d68e6840bafc9cbc94b93\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590897600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1590897600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0eb65af6257e9c4dc3ccc92b13d5cefd\";a:10:{s:4:\"hash\";s:32:\"0eb65af6257e9c4dc3ccc92b13d5cefd\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590984000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1590984000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8f31c3ce996850da3175e38f02c6f704\";a:10:{s:4:\"hash\";s:32:\"8f31c3ce996850da3175e38f02c6f704\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590984000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590984000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"904101eaf42481f4fbd3097ed1de366a\";a:10:{s:4:\"hash\";s:32:\"904101eaf42481f4fbd3097ed1de366a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590984000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1590984000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ffb4f37a9351c9ad051799d19f5e7e98\";a:10:{s:4:\"hash\";s:32:\"ffb4f37a9351c9ad051799d19f5e7e98\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590984000/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1590984000/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"378a033cd6a86d0fa11dbb25d7a8a9f6\";a:10:{s:4:\"hash\";s:32:\"378a033cd6a86d0fa11dbb25d7a8a9f6\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590984000/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1590984000/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"31884a8524a4e6c020269b32c01393c0\";a:10:{s:4:\"hash\";s:32:\"31884a8524a4e6c020269b32c01393c0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590984000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590984000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5c320d1706ae6b34f0ee648894d7972e\";a:10:{s:4:\"hash\";s:32:\"5c320d1706ae6b34f0ee648894d7972e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590984000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1590984000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f187bf071f9348c2192a278d5330615e\";a:10:{s:4:\"hash\";s:32:\"f187bf071f9348c2192a278d5330615e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590984000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590984000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"de5951d06809383347fc6cfa1a2c1a8b\";a:10:{s:4:\"hash\";s:32:\"de5951d06809383347fc6cfa1a2c1a8b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590984000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590984000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4180728035ae67bd2bcedc793db54d35\";a:10:{s:4:\"hash\";s:32:\"4180728035ae67bd2bcedc793db54d35\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1590984000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1590984000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0be4ba465d2731e5a6de5bb4417d6755\";a:10:{s:4:\"hash\";s:32:\"0be4ba465d2731e5a6de5bb4417d6755\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591070400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1591070400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1699d4337569dfff515044fd9130f797\";a:10:{s:4:\"hash\";s:32:\"1699d4337569dfff515044fd9130f797\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591070400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591070400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"feb3442eda3ba5ca60bedad397ee9653\";a:10:{s:4:\"hash\";s:32:\"feb3442eda3ba5ca60bedad397ee9653\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591070400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1591070400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a64b772715d261218801c68551623bb5\";a:10:{s:4:\"hash\";s:32:\"a64b772715d261218801c68551623bb5\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591070400/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1591070400/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f941aabf910fe21817965f0e64a457ac\";a:10:{s:4:\"hash\";s:32:\"f941aabf910fe21817965f0e64a457ac\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591070400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1591070400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1bf370258bcc49533a151fa9462541fa\";a:10:{s:4:\"hash\";s:32:\"1bf370258bcc49533a151fa9462541fa\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591070400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591070400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b2323dbe041cb29bc6e9e8190285b833\";a:10:{s:4:\"hash\";s:32:\"b2323dbe041cb29bc6e9e8190285b833\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591070400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1591070400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3d82e27bdf8e235e273ac121eb0cfa9e\";a:10:{s:4:\"hash\";s:32:\"3d82e27bdf8e235e273ac121eb0cfa9e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591156800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1591156800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef066d7f5060d1360e3066cbeae79611\";a:10:{s:4:\"hash\";s:32:\"ef066d7f5060d1360e3066cbeae79611\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591156800/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1591156800/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e25d7c03f8be5ae302ffd89961d81db5\";a:10:{s:4:\"hash\";s:32:\"e25d7c03f8be5ae302ffd89961d81db5\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591156800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1591156800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"60a5909cfda56ddb7bda7f12aef31927\";a:10:{s:4:\"hash\";s:32:\"60a5909cfda56ddb7bda7f12aef31927\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591156800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591156800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"afd7ee6d1ad291a84a8bc041ba7811fc\";a:10:{s:4:\"hash\";s:32:\"afd7ee6d1ad291a84a8bc041ba7811fc\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591156800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1591156800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2bd82c13ca319cf575c632e5ad2a8d9d\";a:10:{s:4:\"hash\";s:32:\"2bd82c13ca319cf575c632e5ad2a8d9d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591156800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591156800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9e092855f0088c09caf3ab0c5db37cfc\";a:10:{s:4:\"hash\";s:32:\"9e092855f0088c09caf3ab0c5db37cfc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591156800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591156800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e5b74d043750e7d2288df7d2b1132123\";a:10:{s:4:\"hash\";s:32:\"e5b74d043750e7d2288df7d2b1132123\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591156800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591156800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"80999d64898e9828350f77220ea6e18b\";a:10:{s:4:\"hash\";s:32:\"80999d64898e9828350f77220ea6e18b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591243200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591243200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7fbc3bdec9abe64dda2804e2c176bbc3\";a:10:{s:4:\"hash\";s:32:\"7fbc3bdec9abe64dda2804e2c176bbc3\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591243200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1591243200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6f7000f21dd62bbbe98ca33528a8dedc\";a:10:{s:4:\"hash\";s:32:\"6f7000f21dd62bbbe98ca33528a8dedc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591243200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591243200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5b9f68be6387ee273f634e8cdbddf965\";a:10:{s:4:\"hash\";s:32:\"5b9f68be6387ee273f634e8cdbddf965\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591243200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591243200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fd4ce31fdad4c7104e11d4bc41436de3\";a:10:{s:4:\"hash\";s:32:\"fd4ce31fdad4c7104e11d4bc41436de3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591243200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591243200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5ecc5a78dc7b2fdeba68e7e85100c2c8\";a:10:{s:4:\"hash\";s:32:\"5ecc5a78dc7b2fdeba68e7e85100c2c8\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591329600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1591329600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"07da06d24d0b34d02384792743c96583\";a:10:{s:4:\"hash\";s:32:\"07da06d24d0b34d02384792743c96583\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591329600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591329600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a71037c1bd01d2b2098a93a452603af7\";a:10:{s:4:\"hash\";s:32:\"a71037c1bd01d2b2098a93a452603af7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591329600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591329600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3a2d540148e51afd32a375b5ccd67526\";a:10:{s:4:\"hash\";s:32:\"3a2d540148e51afd32a375b5ccd67526\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591329600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591329600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4993ca836cae268272a8b81ac144133a\";a:10:{s:4:\"hash\";s:32:\"4993ca836cae268272a8b81ac144133a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591416000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1591416000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dc2c53aabb3c06ba5d53e18006bd21b5\";a:10:{s:4:\"hash\";s:32:\"dc2c53aabb3c06ba5d53e18006bd21b5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591502400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591502400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5ef21399b1b00afac66183697f516127\";a:10:{s:4:\"hash\";s:32:\"5ef21399b1b00afac66183697f516127\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591588800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1591588800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"01cb3ce48aad54c6d972cab449df5536\";a:10:{s:4:\"hash\";s:32:\"01cb3ce48aad54c6d972cab449df5536\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591588800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1591588800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"be89414084545aecceaa01131695d4c5\";a:10:{s:4:\"hash\";s:32:\"be89414084545aecceaa01131695d4c5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591588800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591588800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e99596f4f7b77ea6286f27d1e480b07d\";a:10:{s:4:\"hash\";s:32:\"e99596f4f7b77ea6286f27d1e480b07d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591588800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1591588800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"88331c0033de3b2a331c15705258a056\";a:10:{s:4:\"hash\";s:32:\"88331c0033de3b2a331c15705258a056\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591675200/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1591675200/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"222d9177b3ea9aef9612d6bd133a3adb\";a:10:{s:4:\"hash\";s:32:\"222d9177b3ea9aef9612d6bd133a3adb\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591675200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1591675200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a00f60ea5c54bdb2b7a200e25e223010\";a:10:{s:4:\"hash\";s:32:\"a00f60ea5c54bdb2b7a200e25e223010\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591675200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1591675200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7b5bd0c449a2ae208200cd8a060cb7f8\";a:10:{s:4:\"hash\";s:32:\"7b5bd0c449a2ae208200cd8a060cb7f8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591675200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591675200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3243aa70692cf94e9924b4b3da0993f4\";a:10:{s:4:\"hash\";s:32:\"3243aa70692cf94e9924b4b3da0993f4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591675200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591675200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"21b89ac33939286e159886d43ff408e0\";a:10:{s:4:\"hash\";s:32:\"21b89ac33939286e159886d43ff408e0\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591675200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1591675200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"99c1bf9008114e072598573e70cf9741\";a:10:{s:4:\"hash\";s:32:\"99c1bf9008114e072598573e70cf9741\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591675200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591675200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f7f2522d512544b77090dc2def2504fb\";a:10:{s:4:\"hash\";s:32:\"f7f2522d512544b77090dc2def2504fb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591675200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591675200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4062d0f526d63c41d695d4be2ed63070\";a:10:{s:4:\"hash\";s:32:\"4062d0f526d63c41d695d4be2ed63070\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591675200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591675200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c2c20390b50b34d2b247205e9c28e1d\";a:10:{s:4:\"hash\";s:32:\"3c2c20390b50b34d2b247205e9c28e1d\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591761600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1591761600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1a579dd40acc4e27f6124302dbf32983\";a:10:{s:4:\"hash\";s:32:\"1a579dd40acc4e27f6124302dbf32983\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591761600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591761600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e6c1eafb1a5a6f7a22ae8098242efc58\";a:10:{s:4:\"hash\";s:32:\"e6c1eafb1a5a6f7a22ae8098242efc58\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591761600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1591761600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aa513ecef343b440cfa9ee265f13e145\";a:10:{s:4:\"hash\";s:32:\"aa513ecef343b440cfa9ee265f13e145\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591761600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591761600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7b2bc05151526ee0ff7c62db83d4c742\";a:10:{s:4:\"hash\";s:32:\"7b2bc05151526ee0ff7c62db83d4c742\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591761600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591761600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"398341959c4042f1c166bdcf98136dba\";a:10:{s:4:\"hash\";s:32:\"398341959c4042f1c166bdcf98136dba\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591761600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1591761600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1fafd984f1480dde65c0fea6507ea6d5\";a:10:{s:4:\"hash\";s:32:\"1fafd984f1480dde65c0fea6507ea6d5\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591848000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1591848000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8b6ad63c61507ffbac8d6a8ecb062129\";a:10:{s:4:\"hash\";s:32:\"8b6ad63c61507ffbac8d6a8ecb062129\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1591934400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1591934400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c6a819e0c3f92b72f49e7abfa9f510ab\";a:10:{s:4:\"hash\";s:32:\"c6a819e0c3f92b72f49e7abfa9f510ab\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592020800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1592020800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e6453ffc5c1928d091a6f979aef2912d\";a:10:{s:4:\"hash\";s:32:\"e6453ffc5c1928d091a6f979aef2912d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592020800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1592020800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8de1958c2666d2eb2db8bdf0475b02e9\";a:10:{s:4:\"hash\";s:32:\"8de1958c2666d2eb2db8bdf0475b02e9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592020800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1592020800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6c25a97825b725c73348b0e53829a1fa\";a:10:{s:4:\"hash\";s:32:\"6c25a97825b725c73348b0e53829a1fa\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592020800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1592020800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f95f31608f5c8938efbee018a3b0944a\";a:10:{s:4:\"hash\";s:32:\"f95f31608f5c8938efbee018a3b0944a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592020800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1592020800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9f3cb06069ad217ce8c21183270bf347\";a:10:{s:4:\"hash\";s:32:\"9f3cb06069ad217ce8c21183270bf347\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592107200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1592107200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"55c6f3f0d9b1165f2061031c3f9a368c\";a:10:{s:4:\"hash\";s:32:\"55c6f3f0d9b1165f2061031c3f9a368c\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592107200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1592107200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b1dada4bb05e874f7f0aa9576f865cec\";a:10:{s:4:\"hash\";s:32:\"b1dada4bb05e874f7f0aa9576f865cec\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592107200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1592107200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d7ade9ed1869a605ca4c36155a1ebf13\";a:10:{s:4:\"hash\";s:32:\"d7ade9ed1869a605ca4c36155a1ebf13\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592107200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1592107200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"06feb83f3f9d2876bb3ba73b8390e600\";a:10:{s:4:\"hash\";s:32:\"06feb83f3f9d2876bb3ba73b8390e600\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592107200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1592107200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef029a510fdb9cf969e7b9bf8d0aec3f\";a:10:{s:4:\"hash\";s:32:\"ef029a510fdb9cf969e7b9bf8d0aec3f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592107200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1592107200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1bd0dce9ad6fd699f5491b310c206675\";a:10:{s:4:\"hash\";s:32:\"1bd0dce9ad6fd699f5491b310c206675\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592107200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1592107200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"11813cbdc4e139642e62a25f25530ba1\";a:10:{s:4:\"hash\";s:32:\"11813cbdc4e139642e62a25f25530ba1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592193600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1592193600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f794c1431ed2b909d41269e30fcadffe\";a:10:{s:4:\"hash\";s:32:\"f794c1431ed2b909d41269e30fcadffe\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592193600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1592193600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"77cb3e495f2734ea1ee94ae689169aca\";a:10:{s:4:\"hash\";s:32:\"77cb3e495f2734ea1ee94ae689169aca\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592193600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1592193600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6c3415511ff3031e349d53deed8705ce\";a:10:{s:4:\"hash\";s:32:\"6c3415511ff3031e349d53deed8705ce\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592280000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1592280000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0406c222df3cfa4359177046a9d9aa4a\";a:10:{s:4:\"hash\";s:32:\"0406c222df3cfa4359177046a9d9aa4a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592280000/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1592280000/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2959b1e5cf8a6f2e34d0d676b3e0616b\";a:10:{s:4:\"hash\";s:32:\"2959b1e5cf8a6f2e34d0d676b3e0616b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592280000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1592280000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1f5fe7fc2cc58638f3f7a3b2d4ec2ba9\";a:10:{s:4:\"hash\";s:32:\"1f5fe7fc2cc58638f3f7a3b2d4ec2ba9\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592280000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1592280000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d2e43f99a960c9cc8ddf5a21743ae6b\";a:10:{s:4:\"hash\";s:32:\"4d2e43f99a960c9cc8ddf5a21743ae6b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592280000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1592280000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"671b4bc4813b4cd7396553bd7d4d2943\";a:10:{s:4:\"hash\";s:32:\"671b4bc4813b4cd7396553bd7d4d2943\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592280000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1592280000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"813b0b6ac443f65c1cebffcaa160d6e3\";a:10:{s:4:\"hash\";s:32:\"813b0b6ac443f65c1cebffcaa160d6e3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592280000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1592280000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"857f5bc379a07583f98140c742b4c73e\";a:10:{s:4:\"hash\";s:32:\"857f5bc379a07583f98140c742b4c73e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592366400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1592366400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"975da6255dde695b372d29952f2cc33d\";a:10:{s:4:\"hash\";s:32:\"975da6255dde695b372d29952f2cc33d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592366400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1592366400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6aabcfabbde2d0b5270393a3057d8931\";a:10:{s:4:\"hash\";s:32:\"6aabcfabbde2d0b5270393a3057d8931\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592366400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1592366400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"21586acc9c3079e8fdd59039d21167cf\";a:10:{s:4:\"hash\";s:32:\"21586acc9c3079e8fdd59039d21167cf\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592366400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1592366400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"587c74cf76a576a829739d5e9e0288c6\";a:10:{s:4:\"hash\";s:32:\"587c74cf76a576a829739d5e9e0288c6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592366400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1592366400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0d76d2ff7cdfca8d146c279299a47770\";a:10:{s:4:\"hash\";s:32:\"0d76d2ff7cdfca8d146c279299a47770\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592452800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1592452800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"196199c89e6ad81f0643c7778b02997a\";a:10:{s:4:\"hash\";s:32:\"196199c89e6ad81f0643c7778b02997a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1592971200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1592971200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d9147c75e8c3003e378c7879ca1e334d\";a:10:{s:4:\"hash\";s:32:\"d9147c75e8c3003e378c7879ca1e334d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593057600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593057600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ae25e29d5ccad28a9058ef726569010b\";a:10:{s:4:\"hash\";s:32:\"ae25e29d5ccad28a9058ef726569010b\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593057600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1593057600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ab1367f4aaca2762af2fced321061f31\";a:10:{s:4:\"hash\";s:32:\"ab1367f4aaca2762af2fced321061f31\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593057600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593057600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8e97fec70b4ba7e036f9f7f5b3d0e306\";a:10:{s:4:\"hash\";s:32:\"8e97fec70b4ba7e036f9f7f5b3d0e306\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593057600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593057600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff8d3286fff1b5d4850bb4c8cdc65ab3\";a:10:{s:4:\"hash\";s:32:\"ff8d3286fff1b5d4850bb4c8cdc65ab3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593057600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593057600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"763b8bbe24b2a088f31c214640a63338\";a:10:{s:4:\"hash\";s:32:\"763b8bbe24b2a088f31c214640a63338\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593144000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593144000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eb1478cadffac7e842551e02e39993be\";a:10:{s:4:\"hash\";s:32:\"eb1478cadffac7e842551e02e39993be\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593144000/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593144000/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"03ea471273a5a066d6f65d827426b49c\";a:10:{s:4:\"hash\";s:32:\"03ea471273a5a066d6f65d827426b49c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593144000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593144000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eccc9e04411c8f2d2c10b9b09c0fb0bd\";a:10:{s:4:\"hash\";s:32:\"eccc9e04411c8f2d2c10b9b09c0fb0bd\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593144000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1593144000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6a93543c7b84f3e0b663641f678783ba\";a:10:{s:4:\"hash\";s:32:\"6a93543c7b84f3e0b663641f678783ba\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593144000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593144000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fad4d9d25d47642a59e665a11faadd40\";a:10:{s:4:\"hash\";s:32:\"fad4d9d25d47642a59e665a11faadd40\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593144000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593144000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d0de7a5b8500d9fc18ff4dff1129a198\";a:10:{s:4:\"hash\";s:32:\"d0de7a5b8500d9fc18ff4dff1129a198\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593144000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593144000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4618e595b9caa9bb5c3e98592806a2f2\";a:10:{s:4:\"hash\";s:32:\"4618e595b9caa9bb5c3e98592806a2f2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593230400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593230400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8694e3f6b75b3376a12c6546983ac009\";a:10:{s:4:\"hash\";s:32:\"8694e3f6b75b3376a12c6546983ac009\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593230400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1593230400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"911e4e8728e8fb1aa1050f8fdbda27c2\";a:10:{s:4:\"hash\";s:32:\"911e4e8728e8fb1aa1050f8fdbda27c2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593489600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593489600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"99bf3d1dc696178440d5a8ad479fdecb\";a:10:{s:4:\"hash\";s:32:\"99bf3d1dc696178440d5a8ad479fdecb\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593489600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1593489600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bea980bd158563f0b1fc8fa2f0e5d3b0\";a:10:{s:4:\"hash\";s:32:\"bea980bd158563f0b1fc8fa2f0e5d3b0\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593576000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593576000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"be336b2da2c84d9b04fe611cf9c6c248\";a:10:{s:4:\"hash\";s:32:\"be336b2da2c84d9b04fe611cf9c6c248\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593576000/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593576000/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"61fda41d6c6a689c31f71f8f7eb4dc79\";a:10:{s:4:\"hash\";s:32:\"61fda41d6c6a689c31f71f8f7eb4dc79\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593576000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593576000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"184b0da963c5953b3b3866095d3bb539\";a:10:{s:4:\"hash\";s:32:\"184b0da963c5953b3b3866095d3bb539\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593576000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593576000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2ffae2ad97542fc9d57573b1c9b46934\";a:10:{s:4:\"hash\";s:32:\"2ffae2ad97542fc9d57573b1c9b46934\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593576000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593576000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ed5797a74e90bc6a748b40a90d23a73\";a:10:{s:4:\"hash\";s:32:\"8ed5797a74e90bc6a748b40a90d23a73\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593576000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593576000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6509d55de3d910c43a0db5928c4be3e4\";a:10:{s:4:\"hash\";s:32:\"6509d55de3d910c43a0db5928c4be3e4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593576000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593576000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cd2aa8f32bd87851caaa1832303626b5\";a:10:{s:4:\"hash\";s:32:\"cd2aa8f32bd87851caaa1832303626b5\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593576000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1593576000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"29abfa3e87b52bf4ea0d6ac600b90ba4\";a:10:{s:4:\"hash\";s:32:\"29abfa3e87b52bf4ea0d6ac600b90ba4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593576000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593576000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b596ef1729912d2f084c891adc95c19f\";a:10:{s:4:\"hash\";s:32:\"b596ef1729912d2f084c891adc95c19f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593576000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593576000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"50804788a22a7a49dc29aa124e2a281e\";a:10:{s:4:\"hash\";s:32:\"50804788a22a7a49dc29aa124e2a281e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593576000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593576000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3e1a6097c7c9a0d1a6d1602e8fa93605\";a:10:{s:4:\"hash\";s:32:\"3e1a6097c7c9a0d1a6d1602e8fa93605\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593662400/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593662400/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4bbace55e620a0398da3bb9c895710fe\";a:10:{s:4:\"hash\";s:32:\"4bbace55e620a0398da3bb9c895710fe\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593662400/cat_ids~87,89,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1593662400/cat_ids~87,89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"be89bff926bf76b1abff0d7dceb442c7\";a:10:{s:4:\"hash\";s:32:\"be89bff926bf76b1abff0d7dceb442c7\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593662400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593662400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b8ae5c89e55b0d98577834acdb80dca2\";a:10:{s:4:\"hash\";s:32:\"b8ae5c89e55b0d98577834acdb80dca2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593662400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593662400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cf03e4c62202b3e5f3e3724634b20992\";a:10:{s:4:\"hash\";s:32:\"cf03e4c62202b3e5f3e3724634b20992\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593662400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593662400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3fc7654b43f4126e7534805799ec2c29\";a:10:{s:4:\"hash\";s:32:\"3fc7654b43f4126e7534805799ec2c29\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593662400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593662400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5c593a1a8f58a8f86565e1f83aeffd6f\";a:10:{s:4:\"hash\";s:32:\"5c593a1a8f58a8f86565e1f83aeffd6f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593662400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593662400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a8c67c73b8cd75b0648e51d6da7e095c\";a:10:{s:4:\"hash\";s:32:\"a8c67c73b8cd75b0648e51d6da7e095c\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593662400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593662400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7c730e7d7074efb26fcb9d0312004814\";a:10:{s:4:\"hash\";s:32:\"7c730e7d7074efb26fcb9d0312004814\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593662400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593662400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eed43bb6e0abcf1100a51dea68239c90\";a:10:{s:4:\"hash\";s:32:\"eed43bb6e0abcf1100a51dea68239c90\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593662400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593662400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0ec681ecee4ccbe1758076085f437200\";a:10:{s:4:\"hash\";s:32:\"0ec681ecee4ccbe1758076085f437200\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593662400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1593662400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"77b48323ff4258cd8392389664476bb2\";a:10:{s:4:\"hash\";s:32:\"77b48323ff4258cd8392389664476bb2\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593748800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593748800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a3afbb63bc7786ead4b9f476caab83a7\";a:10:{s:4:\"hash\";s:32:\"a3afbb63bc7786ead4b9f476caab83a7\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593748800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593748800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4c57acc7088aa64c5b5ba98dffd39ff6\";a:10:{s:4:\"hash\";s:32:\"4c57acc7088aa64c5b5ba98dffd39ff6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593748800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593748800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cfab68354d13df2bd5a7e91d877ec3be\";a:10:{s:4:\"hash\";s:32:\"cfab68354d13df2bd5a7e91d877ec3be\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593748800/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1593748800/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"25fe90cf1a5a344173e8e78af0f03759\";a:10:{s:4:\"hash\";s:32:\"25fe90cf1a5a344173e8e78af0f03759\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593748800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593748800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"40a567c36f43a4d39e709d4c0bfc0fed\";a:10:{s:4:\"hash\";s:32:\"40a567c36f43a4d39e709d4c0bfc0fed\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593748800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593748800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6999babdef6bf1dd657aebb5a13ef2a0\";a:10:{s:4:\"hash\";s:32:\"6999babdef6bf1dd657aebb5a13ef2a0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593748800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593748800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"76d53401f7ece30389ae8342961e8400\";a:10:{s:4:\"hash\";s:32:\"76d53401f7ece30389ae8342961e8400\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593748800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593748800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"73d0a5cf7e09989208ff0a4b85fa2a5c\";a:10:{s:4:\"hash\";s:32:\"73d0a5cf7e09989208ff0a4b85fa2a5c\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593748800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1593748800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"33e4fa88c0cd244f5c01a3a542350ceb\";a:10:{s:4:\"hash\";s:32:\"33e4fa88c0cd244f5c01a3a542350ceb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593748800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593748800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ba3ec69318eb8c528af5721b22e4c188\";a:10:{s:4:\"hash\";s:32:\"ba3ec69318eb8c528af5721b22e4c188\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593748800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593748800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0cb4964c821fb8cc54a97493f3e895fd\";a:10:{s:4:\"hash\";s:32:\"0cb4964c821fb8cc54a97493f3e895fd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593748800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593748800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d0b9a7ed30acd097ac573c731d6923c6\";a:10:{s:4:\"hash\";s:32:\"d0b9a7ed30acd097ac573c731d6923c6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593835200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593835200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7e9c4cd61e9cb75474b21fab485b0e1b\";a:10:{s:4:\"hash\";s:32:\"7e9c4cd61e9cb75474b21fab485b0e1b\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593835200/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1593835200/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fc181ff3b5217d8104e933c842d12a43\";a:10:{s:4:\"hash\";s:32:\"fc181ff3b5217d8104e933c842d12a43\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593835200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593835200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d242e4eaebd99983fd68ec858547599d\";a:10:{s:4:\"hash\";s:32:\"d242e4eaebd99983fd68ec858547599d\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593835200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593835200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f58ad3d0a84ab18df214f0e17bc5cad8\";a:10:{s:4:\"hash\";s:32:\"f58ad3d0a84ab18df214f0e17bc5cad8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593835200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593835200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6cac4df6e57fdca1cc375fafc3da8961\";a:10:{s:4:\"hash\";s:32:\"6cac4df6e57fdca1cc375fafc3da8961\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593835200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1593835200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bde96b6fdabbc76d9e7fc55dbdf2e35e\";a:10:{s:4:\"hash\";s:32:\"bde96b6fdabbc76d9e7fc55dbdf2e35e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593835200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593835200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e18ec979179655c82d59384078cc9254\";a:10:{s:4:\"hash\";s:32:\"e18ec979179655c82d59384078cc9254\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593835200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593835200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8473d4142d909b50db90433cf3154ccd\";a:10:{s:4:\"hash\";s:32:\"8473d4142d909b50db90433cf3154ccd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593835200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593835200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"50d00074828a74e80aed6d0aedbde597\";a:10:{s:4:\"hash\";s:32:\"50d00074828a74e80aed6d0aedbde597\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593921600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593921600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1e5dc32ba3d701e410780034c07e4264\";a:10:{s:4:\"hash\";s:32:\"1e5dc32ba3d701e410780034c07e4264\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593921600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593921600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1265ebd96d749c64b531493473872059\";a:10:{s:4:\"hash\";s:32:\"1265ebd96d749c64b531493473872059\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593921600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593921600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"10b50096ca801efaebc36b2f8e6bb27e\";a:10:{s:4:\"hash\";s:32:\"10b50096ca801efaebc36b2f8e6bb27e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593921600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1593921600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d32380a0db2923ec5431ead03ffd189\";a:10:{s:4:\"hash\";s:32:\"4d32380a0db2923ec5431ead03ffd189\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593921600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593921600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9d1122cc5a65be86195710e864af8e24\";a:10:{s:4:\"hash\";s:32:\"9d1122cc5a65be86195710e864af8e24\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593921600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1593921600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bc14c2b694b6fac2d8d124817f635c56\";a:10:{s:4:\"hash\";s:32:\"bc14c2b694b6fac2d8d124817f635c56\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593921600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593921600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2a08f39595efd218be23d399c3d85239\";a:10:{s:4:\"hash\";s:32:\"2a08f39595efd218be23d399c3d85239\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593921600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593921600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a177aa0f68a36e32b2231d285dbe9861\";a:10:{s:4:\"hash\";s:32:\"a177aa0f68a36e32b2231d285dbe9861\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1593921600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1593921600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5878c744327f650d510d1a8c8f5c86de\";a:10:{s:4:\"hash\";s:32:\"5878c744327f650d510d1a8c8f5c86de\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594008000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1594008000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"19fc9a1451dcf4c02375519fa4a93ede\";a:10:{s:4:\"hash\";s:32:\"19fc9a1451dcf4c02375519fa4a93ede\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594008000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1594008000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b4416d464a03d70cec4718f58c42ecbc\";a:10:{s:4:\"hash\";s:32:\"b4416d464a03d70cec4718f58c42ecbc\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594353600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1594353600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7abfd12eddcb7d29b9a27bf3857adf3b\";a:10:{s:4:\"hash\";s:32:\"7abfd12eddcb7d29b9a27bf3857adf3b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594353600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1594353600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e331a1b92b11ebc067884bb37e77b63e\";a:10:{s:4:\"hash\";s:32:\"e331a1b92b11ebc067884bb37e77b63e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594353600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1594353600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"61db32f051bdcc480ceb370580322d40\";a:10:{s:4:\"hash\";s:32:\"61db32f051bdcc480ceb370580322d40\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594440000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1594440000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e86f4c6d6148e623acf55ce2eec9cbd2\";a:10:{s:4:\"hash\";s:32:\"e86f4c6d6148e623acf55ce2eec9cbd2\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594526400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1594526400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"43ca92f40de398fd3d1cd98e6c84fc7a\";a:10:{s:4:\"hash\";s:32:\"43ca92f40de398fd3d1cd98e6c84fc7a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594526400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1594526400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b4b0249deb3b9cf333711a84dee7aee3\";a:10:{s:4:\"hash\";s:32:\"b4b0249deb3b9cf333711a84dee7aee3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594526400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1594526400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c6ee7e7306c7983856651ecea45a83ed\";a:10:{s:4:\"hash\";s:32:\"c6ee7e7306c7983856651ecea45a83ed\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594526400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1594526400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"85d7134193ceb375dccc2d0bd83447a5\";a:10:{s:4:\"hash\";s:32:\"85d7134193ceb375dccc2d0bd83447a5\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594612800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1594612800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fd5ffb629855d038d2a822a968f85f8c\";a:10:{s:4:\"hash\";s:32:\"fd5ffb629855d038d2a822a968f85f8c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594612800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1594612800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff7aaccf9fa2cda1e641e8a8d0affe2c\";a:10:{s:4:\"hash\";s:32:\"ff7aaccf9fa2cda1e641e8a8d0affe2c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594612800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1594612800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7d07a8cc133c1e032ddb0e73db3007bc\";a:10:{s:4:\"hash\";s:32:\"7d07a8cc133c1e032ddb0e73db3007bc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594612800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1594612800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0c756ea77a46e584bc9e7cd10f98a704\";a:10:{s:4:\"hash\";s:32:\"0c756ea77a46e584bc9e7cd10f98a704\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594699200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1594699200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"427aaba8277b5c21294269aa791da4b5\";a:10:{s:4:\"hash\";s:32:\"427aaba8277b5c21294269aa791da4b5\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594785600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1594785600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2dbfdd5677c93f2878865a04b01de4e9\";a:10:{s:4:\"hash\";s:32:\"2dbfdd5677c93f2878865a04b01de4e9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594785600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1594785600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6fd3ff45053252ec73ba3507f9fe4e75\";a:10:{s:4:\"hash\";s:32:\"6fd3ff45053252ec73ba3507f9fe4e75\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594785600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1594785600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f48345d9c0810b97506f23a1132b522f\";a:10:{s:4:\"hash\";s:32:\"f48345d9c0810b97506f23a1132b522f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594785600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1594785600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"92841b45bdcac2ddfcce48127b3b86c6\";a:10:{s:4:\"hash\";s:32:\"92841b45bdcac2ddfcce48127b3b86c6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594785600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1594785600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b3d12d726478faf5a77bb54e22b0425c\";a:10:{s:4:\"hash\";s:32:\"b3d12d726478faf5a77bb54e22b0425c\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594785600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1594785600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b855b04c6f770f31c653328b09812f1d\";a:10:{s:4:\"hash\";s:32:\"b855b04c6f770f31c653328b09812f1d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594785600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1594785600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"803d26caf19966103f464afa77c2a87c\";a:10:{s:4:\"hash\";s:32:\"803d26caf19966103f464afa77c2a87c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594785600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1594785600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4f652ba047b1212cd1406929c0e767a7\";a:10:{s:4:\"hash\";s:32:\"4f652ba047b1212cd1406929c0e767a7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594785600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1594785600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"81b34e0a367b1fc12f7327dc37a20e0a\";a:10:{s:4:\"hash\";s:32:\"81b34e0a367b1fc12f7327dc37a20e0a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594872000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1594872000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a715631ab16325f1142a2956e6a5c09f\";a:10:{s:4:\"hash\";s:32:\"a715631ab16325f1142a2956e6a5c09f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594958400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1594958400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4a405db00120f4a85383e4fa3c3513cc\";a:10:{s:4:\"hash\";s:32:\"4a405db00120f4a85383e4fa3c3513cc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594958400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1594958400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5d33c2d5ddf1b9fd491b8944ce14ba16\";a:10:{s:4:\"hash\";s:32:\"5d33c2d5ddf1b9fd491b8944ce14ba16\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594958400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1594958400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7095b242d37e3ef3625310c0eb144de8\";a:10:{s:4:\"hash\";s:32:\"7095b242d37e3ef3625310c0eb144de8\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1594958400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1594958400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a699ede63a5b24798f6502b034de3165\";a:10:{s:4:\"hash\";s:32:\"a699ede63a5b24798f6502b034de3165\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595044800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1595044800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d7dd2ab2526ef986f68bad2665fa0aa2\";a:10:{s:4:\"hash\";s:32:\"d7dd2ab2526ef986f68bad2665fa0aa2\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595131200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1595131200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ee0a72c23e6d02b3d0c9a51c1b288aff\";a:10:{s:4:\"hash\";s:32:\"ee0a72c23e6d02b3d0c9a51c1b288aff\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595131200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595131200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"81b22934fd0f314d990cd72f19443fd8\";a:10:{s:4:\"hash\";s:32:\"81b22934fd0f314d990cd72f19443fd8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595131200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595131200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4c94b63bdc7e42e3368e04ab9c77f41d\";a:10:{s:4:\"hash\";s:32:\"4c94b63bdc7e42e3368e04ab9c77f41d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595131200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595131200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f5a026c6a2d2a7277071abed1fcb44d9\";a:10:{s:4:\"hash\";s:32:\"f5a026c6a2d2a7277071abed1fcb44d9\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595217600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1595217600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"09fcd580934868fc795d6428cda5af52\";a:10:{s:4:\"hash\";s:32:\"09fcd580934868fc795d6428cda5af52\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595217600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595217600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"68808c92a62a016be731e9b6185350ac\";a:10:{s:4:\"hash\";s:32:\"68808c92a62a016be731e9b6185350ac\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595217600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595217600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3dede0266a50197a6e0b5e9751ff36ce\";a:10:{s:4:\"hash\";s:32:\"3dede0266a50197a6e0b5e9751ff36ce\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595217600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595217600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e777414c73ccf4066063f44602e092ee\";a:10:{s:4:\"hash\";s:32:\"e777414c73ccf4066063f44602e092ee\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595304000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1595304000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3bca8ac2be5bf43fb6f2c2621b5b43dc\";a:10:{s:4:\"hash\";s:32:\"3bca8ac2be5bf43fb6f2c2621b5b43dc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595390400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595390400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f7156ed5d5b2df2aff7093465d3b933f\";a:10:{s:4:\"hash\";s:32:\"f7156ed5d5b2df2aff7093465d3b933f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595649600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1595649600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a2c8594ecb91462b8f2ccb114f1ae267\";a:10:{s:4:\"hash\";s:32:\"a2c8594ecb91462b8f2ccb114f1ae267\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595736000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595736000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b24d877403c2c52530c11ee8a2cb7534\";a:10:{s:4:\"hash\";s:32:\"b24d877403c2c52530c11ee8a2cb7534\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595736000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1595736000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6325455b32ed96d4ab3e4c351aaf4645\";a:10:{s:4:\"hash\";s:32:\"6325455b32ed96d4ab3e4c351aaf4645\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595736000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595736000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8c3ada987d71cf89c242ec3752590329\";a:10:{s:4:\"hash\";s:32:\"8c3ada987d71cf89c242ec3752590329\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595736000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595736000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"23139c8cb2977b4e2af9f59e54febd6c\";a:10:{s:4:\"hash\";s:32:\"23139c8cb2977b4e2af9f59e54febd6c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595736000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595736000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a870b54eda5119d35e443f065e215241\";a:10:{s:4:\"hash\";s:32:\"a870b54eda5119d35e443f065e215241\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595822400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1595822400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3d031116ed0dcda981607df4158bcbb9\";a:10:{s:4:\"hash\";s:32:\"3d031116ed0dcda981607df4158bcbb9\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595822400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1595822400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d34d1aedc00ce6364c59c1ef8df067ae\";a:10:{s:4:\"hash\";s:32:\"d34d1aedc00ce6364c59c1ef8df067ae\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595822400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595822400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c2edaf24ec31c2719ae66d6a35d4419\";a:10:{s:4:\"hash\";s:32:\"2c2edaf24ec31c2719ae66d6a35d4419\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595822400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1595822400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"afc439f5a44fc5a21c2dd02b791e1310\";a:10:{s:4:\"hash\";s:32:\"afc439f5a44fc5a21c2dd02b791e1310\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595822400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595822400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e4711a78f6b60a1358103173f038a500\";a:10:{s:4:\"hash\";s:32:\"e4711a78f6b60a1358103173f038a500\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595822400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1595822400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e3384630c740633d369aa873b31e3fe8\";a:10:{s:4:\"hash\";s:32:\"e3384630c740633d369aa873b31e3fe8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595822400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595822400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"35ed3976e881be6c4cc14b74b63364ea\";a:10:{s:4:\"hash\";s:32:\"35ed3976e881be6c4cc14b74b63364ea\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595822400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595822400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"711cf9f233c068a20846a757f592c87d\";a:10:{s:4:\"hash\";s:32:\"711cf9f233c068a20846a757f592c87d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595822400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595822400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e04b22ed1c6a19a10057e5e3b1e0fa37\";a:10:{s:4:\"hash\";s:32:\"e04b22ed1c6a19a10057e5e3b1e0fa37\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595908800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595908800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a9631cf444fbfecbd75cb3fdac271903\";a:10:{s:4:\"hash\";s:32:\"a9631cf444fbfecbd75cb3fdac271903\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595908800/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1595908800/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"579bffa7328501ad68c564eace4e56e7\";a:10:{s:4:\"hash\";s:32:\"579bffa7328501ad68c564eace4e56e7\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595908800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1595908800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"64876d2d168fda3cfc9392e0735b37b9\";a:10:{s:4:\"hash\";s:32:\"64876d2d168fda3cfc9392e0735b37b9\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595908800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1595908800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c5aa9771506d58f7ebfe739b93b31e00\";a:10:{s:4:\"hash\";s:32:\"c5aa9771506d58f7ebfe739b93b31e00\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595908800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595908800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5446c9f0c1d45cacdb1c388c38903f7e\";a:10:{s:4:\"hash\";s:32:\"5446c9f0c1d45cacdb1c388c38903f7e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595908800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1595908800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"df74064327b64a7cba623cb3d8ff4cf0\";a:10:{s:4:\"hash\";s:32:\"df74064327b64a7cba623cb3d8ff4cf0\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595908800/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1595908800/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"04630e3aaf657b43818e0209d84b049f\";a:10:{s:4:\"hash\";s:32:\"04630e3aaf657b43818e0209d84b049f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595908800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1595908800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5ab33a2a0daea52fc14ed20448cd9061\";a:10:{s:4:\"hash\";s:32:\"5ab33a2a0daea52fc14ed20448cd9061\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595908800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595908800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b2f3e3c3a597a89e3ddce59591b952b6\";a:10:{s:4:\"hash\";s:32:\"b2f3e3c3a597a89e3ddce59591b952b6\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595908800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1595908800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fa921beb43764f0322e043e0d740db30\";a:10:{s:4:\"hash\";s:32:\"fa921beb43764f0322e043e0d740db30\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595908800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595908800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"78616e39a1448ad704a284b41c7a7aeb\";a:10:{s:4:\"hash\";s:32:\"78616e39a1448ad704a284b41c7a7aeb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595908800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595908800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"783103874b1d17ff8f21beb04e16613e\";a:10:{s:4:\"hash\";s:32:\"783103874b1d17ff8f21beb04e16613e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595908800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595908800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a9df1003a09e241b7769bf0041b5488d\";a:10:{s:4:\"hash\";s:32:\"a9df1003a09e241b7769bf0041b5488d\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595995200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1595995200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"effe748c7cd4e123fe5b6b8ce382312c\";a:10:{s:4:\"hash\";s:32:\"effe748c7cd4e123fe5b6b8ce382312c\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595995200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1595995200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9ea840cbab54036b74f24e772d666dd0\";a:10:{s:4:\"hash\";s:32:\"9ea840cbab54036b74f24e772d666dd0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595995200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595995200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b8d3707411ca5f020954a5c52f72ca47\";a:10:{s:4:\"hash\";s:32:\"b8d3707411ca5f020954a5c52f72ca47\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595995200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1595995200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f737ae2f494b45e795b26a10ccd3f094\";a:10:{s:4:\"hash\";s:32:\"f737ae2f494b45e795b26a10ccd3f094\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595995200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1595995200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bf18ac59906717dfcfeb65d4f48a24bd\";a:10:{s:4:\"hash\";s:32:\"bf18ac59906717dfcfeb65d4f48a24bd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595995200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1595995200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4b6994f504661abd00d50ad84f41116a\";a:10:{s:4:\"hash\";s:32:\"4b6994f504661abd00d50ad84f41116a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1595995200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1595995200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cdcbc20a91f5a22eeb442b194755e2bf\";a:10:{s:4:\"hash\";s:32:\"cdcbc20a91f5a22eeb442b194755e2bf\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596081600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596081600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"92dad6cf2daca81d0b6025ac9464f29e\";a:10:{s:4:\"hash\";s:32:\"92dad6cf2daca81d0b6025ac9464f29e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596081600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596081600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4e84ffbb1585380f242a6795b464ce94\";a:10:{s:4:\"hash\";s:32:\"4e84ffbb1585380f242a6795b464ce94\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596168000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1596168000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"90efb8f98faae25e9942d4fe116cec64\";a:10:{s:4:\"hash\";s:32:\"90efb8f98faae25e9942d4fe116cec64\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596168000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596168000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0ea4f9d828dae7fd36b6732e5040c8ba\";a:10:{s:4:\"hash\";s:32:\"0ea4f9d828dae7fd36b6732e5040c8ba\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596168000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596168000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"baf43887b8f2f44b82f774be5715ecba\";a:10:{s:4:\"hash\";s:32:\"baf43887b8f2f44b82f774be5715ecba\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596168000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1596168000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c9d237a9d223d30bcd29210fc386a124\";a:10:{s:4:\"hash\";s:32:\"c9d237a9d223d30bcd29210fc386a124\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596254400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1596254400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"82730383a97db942266b22559bbad130\";a:10:{s:4:\"hash\";s:32:\"82730383a97db942266b22559bbad130\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596254400/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1596254400/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"069c5136e17f97f816216222fd40c8ee\";a:10:{s:4:\"hash\";s:32:\"069c5136e17f97f816216222fd40c8ee\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596254400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1596254400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ee1d018a608d7b51462c650ab2f45885\";a:10:{s:4:\"hash\";s:32:\"ee1d018a608d7b51462c650ab2f45885\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596254400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596254400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8db62576af9cfc78c0cdee43d69c8f57\";a:10:{s:4:\"hash\";s:32:\"8db62576af9cfc78c0cdee43d69c8f57\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596254400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1596254400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"69958081eaa44ffadf083fafb4934f52\";a:10:{s:4:\"hash\";s:32:\"69958081eaa44ffadf083fafb4934f52\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596254400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1596254400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2d5fd0409353ab2b53b1241bf96fb2f5\";a:10:{s:4:\"hash\";s:32:\"2d5fd0409353ab2b53b1241bf96fb2f5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596254400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596254400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"53f7f8754e1d8b9a92648fa87257b3b3\";a:10:{s:4:\"hash\";s:32:\"53f7f8754e1d8b9a92648fa87257b3b3\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596254400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1596254400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"98b7bb33d9ae6efc9c06bda809f237fb\";a:10:{s:4:\"hash\";s:32:\"98b7bb33d9ae6efc9c06bda809f237fb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596254400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596254400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4ee16567f3d1a74359ad4b1a6492be87\";a:10:{s:4:\"hash\";s:32:\"4ee16567f3d1a74359ad4b1a6492be87\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596254400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596254400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fed1ea5c375bb64bb61b8834384be46e\";a:10:{s:4:\"hash\";s:32:\"fed1ea5c375bb64bb61b8834384be46e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596254400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596254400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"472928df60c0d73f594ebd1fbff5266d\";a:10:{s:4:\"hash\";s:32:\"472928df60c0d73f594ebd1fbff5266d\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596340800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1596340800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2ad3282ae6cd3879a057805922b22032\";a:10:{s:4:\"hash\";s:32:\"2ad3282ae6cd3879a057805922b22032\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596340800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596340800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7545e28b33ce81688405c504445a8c0c\";a:10:{s:4:\"hash\";s:32:\"7545e28b33ce81688405c504445a8c0c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596340800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596340800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0696c85f8ddac05a038356c61f5feaa2\";a:10:{s:4:\"hash\";s:32:\"0696c85f8ddac05a038356c61f5feaa2\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596340800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1596340800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"df85c6db73d17e0e3d97c48fececdc8b\";a:10:{s:4:\"hash\";s:32:\"df85c6db73d17e0e3d97c48fececdc8b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596340800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596340800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f5ff318c206e4101336afc7040b90278\";a:10:{s:4:\"hash\";s:32:\"f5ff318c206e4101336afc7040b90278\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596340800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596340800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a61a02dd869b96db89b3fe4e31dfae5\";a:10:{s:4:\"hash\";s:32:\"8a61a02dd869b96db89b3fe4e31dfae5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596340800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596340800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"896ded209ba90ac79259708617ed1b71\";a:10:{s:4:\"hash\";s:32:\"896ded209ba90ac79259708617ed1b71\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596427200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1596427200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ccaadb320e644d33c370c48e0be11623\";a:10:{s:4:\"hash\";s:32:\"ccaadb320e644d33c370c48e0be11623\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596513600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1596513600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f7be99ffdc8c1cd01273fc34722cb97a\";a:10:{s:4:\"hash\";s:32:\"f7be99ffdc8c1cd01273fc34722cb97a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596600000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596600000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e244d4e0b38d78437f9369a1eda3bfb7\";a:10:{s:4:\"hash\";s:32:\"e244d4e0b38d78437f9369a1eda3bfb7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596600000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596600000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dce8922312a973caa7f3bf27a584825c\";a:10:{s:4:\"hash\";s:32:\"dce8922312a973caa7f3bf27a584825c\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596600000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1596600000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"de4f02735755cdfea90a8dd054477279\";a:10:{s:4:\"hash\";s:32:\"de4f02735755cdfea90a8dd054477279\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596600000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596600000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a9c087c3b00e48fad084d5fd0ce3d49b\";a:10:{s:4:\"hash\";s:32:\"a9c087c3b00e48fad084d5fd0ce3d49b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596600000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596600000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8b1469434743d26472e5c15af54db1c6\";a:10:{s:4:\"hash\";s:32:\"8b1469434743d26472e5c15af54db1c6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596600000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596600000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"05eada7dfd9310d8e478fe5bf59ad194\";a:10:{s:4:\"hash\";s:32:\"05eada7dfd9310d8e478fe5bf59ad194\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596686400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1596686400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4a488ead9e381422f2562ae829081fde\";a:10:{s:4:\"hash\";s:32:\"4a488ead9e381422f2562ae829081fde\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596686400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1596686400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"554ef4a41f58ff3a2bc071326df6e762\";a:10:{s:4:\"hash\";s:32:\"554ef4a41f58ff3a2bc071326df6e762\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596686400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596686400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dd790d1ff5fb74b580d718edb088663b\";a:10:{s:4:\"hash\";s:32:\"dd790d1ff5fb74b580d718edb088663b\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596686400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1596686400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"07f1be65a093192e117408a5112b7f75\";a:10:{s:4:\"hash\";s:32:\"07f1be65a093192e117408a5112b7f75\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596686400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1596686400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7db0904538c4e11c1e07abff9cf89132\";a:10:{s:4:\"hash\";s:32:\"7db0904538c4e11c1e07abff9cf89132\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596686400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596686400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e846a6c8d31dfb0224766f72a19f7e5f\";a:10:{s:4:\"hash\";s:32:\"e846a6c8d31dfb0224766f72a19f7e5f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596686400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1596686400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2f09b10edfdfd056d5b5f1239433e8cd\";a:10:{s:4:\"hash\";s:32:\"2f09b10edfdfd056d5b5f1239433e8cd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596686400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596686400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ad728c64b92d8ff1e51a2a1e4164cdd9\";a:10:{s:4:\"hash\";s:32:\"ad728c64b92d8ff1e51a2a1e4164cdd9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596686400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596686400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f15f463271aac9c6c85ea51a4e0aea06\";a:10:{s:4:\"hash\";s:32:\"f15f463271aac9c6c85ea51a4e0aea06\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596686400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596686400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"249085c838ef1f4ec1cf74551774311e\";a:10:{s:4:\"hash\";s:32:\"249085c838ef1f4ec1cf74551774311e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596772800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596772800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0e5814e01d6d2af5499056e68574ea0e\";a:10:{s:4:\"hash\";s:32:\"0e5814e01d6d2af5499056e68574ea0e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596772800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596772800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"efa15439e45090682947b8b0a60b74dc\";a:10:{s:4:\"hash\";s:32:\"efa15439e45090682947b8b0a60b74dc\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596772800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1596772800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"282ce62e3765f91da23c6912e1cd457d\";a:10:{s:4:\"hash\";s:32:\"282ce62e3765f91da23c6912e1cd457d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596859200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1596859200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d1066f2f0633c6a8113606d9ed695288\";a:10:{s:4:\"hash\";s:32:\"d1066f2f0633c6a8113606d9ed695288\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596859200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596859200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7427944a5e05b67de8824219c6e6db0b\";a:10:{s:4:\"hash\";s:32:\"7427944a5e05b67de8824219c6e6db0b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596859200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596859200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"391084f4b2ca05b7bd9e59bd74633862\";a:10:{s:4:\"hash\";s:32:\"391084f4b2ca05b7bd9e59bd74633862\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596859200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596859200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b6dd592b34a7ca6c88ef869f69fb7249\";a:10:{s:4:\"hash\";s:32:\"b6dd592b34a7ca6c88ef869f69fb7249\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596945600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596945600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"46e3a859a8175d78ae606c3147651a9f\";a:10:{s:4:\"hash\";s:32:\"46e3a859a8175d78ae606c3147651a9f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596945600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1596945600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ece8a38c51291327f94e17f14c7fed1b\";a:10:{s:4:\"hash\";s:32:\"ece8a38c51291327f94e17f14c7fed1b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596945600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596945600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6b97be44d14376a7f01af0272271e73f\";a:10:{s:4:\"hash\";s:32:\"6b97be44d14376a7f01af0272271e73f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596945600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596945600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4487324bd7fbf240867c16a21ea71e06\";a:10:{s:4:\"hash\";s:32:\"4487324bd7fbf240867c16a21ea71e06\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1596945600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1596945600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4aeec202c2af0315a9ea481553918d97\";a:10:{s:4:\"hash\";s:32:\"4aeec202c2af0315a9ea481553918d97\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597032000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1597032000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7b4bbcaf027f9d76e7c3bcfbcffcee3a\";a:10:{s:4:\"hash\";s:32:\"7b4bbcaf027f9d76e7c3bcfbcffcee3a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597032000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1597032000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6fc48f49b8292abbb6d25765bd2a66b4\";a:10:{s:4:\"hash\";s:32:\"6fc48f49b8292abbb6d25765bd2a66b4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597032000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597032000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2d149b86ec79437db458a9ac14d9b9da\";a:10:{s:4:\"hash\";s:32:\"2d149b86ec79437db458a9ac14d9b9da\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597032000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1597032000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"154e09111daf3122111db387b2e33da6\";a:10:{s:4:\"hash\";s:32:\"154e09111daf3122111db387b2e33da6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597032000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597032000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dc966efa2697c979443f477e1ceb2e26\";a:10:{s:4:\"hash\";s:32:\"dc966efa2697c979443f477e1ceb2e26\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597032000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597032000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e218852b5e47e76a0751536e1287cae2\";a:10:{s:4:\"hash\";s:32:\"e218852b5e47e76a0751536e1287cae2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597032000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597032000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1818ac4567ce548f524461220a3bce27\";a:10:{s:4:\"hash\";s:32:\"1818ac4567ce548f524461220a3bce27\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597118400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597118400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a2bcf9a3bc1f45f4ddf294e0ca0059e\";a:10:{s:4:\"hash\";s:32:\"8a2bcf9a3bc1f45f4ddf294e0ca0059e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597118400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1597118400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9dc3215ebf3eae503b1bc02ab1c0e373\";a:10:{s:4:\"hash\";s:32:\"9dc3215ebf3eae503b1bc02ab1c0e373\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597291200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597291200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"77d36755f379b9f9515f350fb52acd74\";a:10:{s:4:\"hash\";s:32:\"77d36755f379b9f9515f350fb52acd74\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597291200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597291200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4f0a101ab41f34d6905336569482413e\";a:10:{s:4:\"hash\";s:32:\"4f0a101ab41f34d6905336569482413e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597291200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1597291200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"94e33e79f5cee5ae9e13a46b396e31e8\";a:10:{s:4:\"hash\";s:32:\"94e33e79f5cee5ae9e13a46b396e31e8\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597377600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1597377600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"13e742121f7269e6e4f0aa0140b3d5ba\";a:10:{s:4:\"hash\";s:32:\"13e742121f7269e6e4f0aa0140b3d5ba\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597377600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1597377600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"759b1cd3343dde5edd33ebb63b3b067f\";a:10:{s:4:\"hash\";s:32:\"759b1cd3343dde5edd33ebb63b3b067f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597377600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597377600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"33a36c531722bd782fa92317e274662a\";a:10:{s:4:\"hash\";s:32:\"33a36c531722bd782fa92317e274662a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597377600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1597377600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7c91966f5299bf65bc5b49cc11b49b93\";a:10:{s:4:\"hash\";s:32:\"7c91966f5299bf65bc5b49cc11b49b93\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597377600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1597377600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d667ba8fb0c1dd8d80b33ede92e14e96\";a:10:{s:4:\"hash\";s:32:\"d667ba8fb0c1dd8d80b33ede92e14e96\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597377600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597377600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b2106d3bd915a7e63979e744d5011c95\";a:10:{s:4:\"hash\";s:32:\"b2106d3bd915a7e63979e744d5011c95\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597377600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1597377600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a657164de3353099c3d7b79a9bd1f579\";a:10:{s:4:\"hash\";s:32:\"a657164de3353099c3d7b79a9bd1f579\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597377600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597377600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"136a6ecd9a7cded747a83cd341a05f45\";a:10:{s:4:\"hash\";s:32:\"136a6ecd9a7cded747a83cd341a05f45\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597377600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597377600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5adba673f84ea8546daa589179d930a2\";a:10:{s:4:\"hash\";s:32:\"5adba673f84ea8546daa589179d930a2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597377600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597377600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f1915e66cb4aadfdeaba7c983d0b68c7\";a:10:{s:4:\"hash\";s:32:\"f1915e66cb4aadfdeaba7c983d0b68c7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597464000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597464000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"68bbc9e6a000d14141e56f5eb64e44dd\";a:10:{s:4:\"hash\";s:32:\"68bbc9e6a000d14141e56f5eb64e44dd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597464000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597464000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c0447f731a9aaed9e5dfd61cb4bd1830\";a:10:{s:4:\"hash\";s:32:\"c0447f731a9aaed9e5dfd61cb4bd1830\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597464000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1597464000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1dea1435fb5834099da3dd9f6f57879e\";a:10:{s:4:\"hash\";s:32:\"1dea1435fb5834099da3dd9f6f57879e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597550400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597550400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c830489d1de6fdee3a3df24535095dd7\";a:10:{s:4:\"hash\";s:32:\"c830489d1de6fdee3a3df24535095dd7\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597550400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1597550400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"73b5a3de1290fc74ab4b7bd79ef72152\";a:10:{s:4:\"hash\";s:32:\"73b5a3de1290fc74ab4b7bd79ef72152\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597550400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597550400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"094adfe111118835c2397535f16c8678\";a:10:{s:4:\"hash\";s:32:\"094adfe111118835c2397535f16c8678\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597550400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597550400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ed13da367ee39892932d4d48d223b8ab\";a:10:{s:4:\"hash\";s:32:\"ed13da367ee39892932d4d48d223b8ab\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597550400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597550400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a73dbd2791e4a39938c2ae4ddcaacce1\";a:10:{s:4:\"hash\";s:32:\"a73dbd2791e4a39938c2ae4ddcaacce1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597636800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1597636800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bf771cdc359dcf4a390aaac9767f842d\";a:10:{s:4:\"hash\";s:32:\"bf771cdc359dcf4a390aaac9767f842d\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597636800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1597636800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8d04c8e51586b35711e25d8b7006cca1\";a:10:{s:4:\"hash\";s:32:\"8d04c8e51586b35711e25d8b7006cca1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597636800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597636800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c0bd165e7cb3152ea2e0263fef127fef\";a:10:{s:4:\"hash\";s:32:\"c0bd165e7cb3152ea2e0263fef127fef\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597636800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1597636800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b69bd76ffd56b056bd8543df012a4d33\";a:10:{s:4:\"hash\";s:32:\"b69bd76ffd56b056bd8543df012a4d33\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597636800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597636800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f8f361bd5b751d4d05e437eddde7e84a\";a:10:{s:4:\"hash\";s:32:\"f8f361bd5b751d4d05e437eddde7e84a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597636800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597636800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fb7bdb8b001e15d28e52d1b15a808f68\";a:10:{s:4:\"hash\";s:32:\"fb7bdb8b001e15d28e52d1b15a808f68\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597636800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597636800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6ac3c4c4d88d426253341b304c43667e\";a:10:{s:4:\"hash\";s:32:\"6ac3c4c4d88d426253341b304c43667e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597723200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1597723200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"83f769777787a51a0ae0b60c0621a08d\";a:10:{s:4:\"hash\";s:32:\"83f769777787a51a0ae0b60c0621a08d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1597723200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1597723200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6ade14090b5260cdbf7f60682e8b22d3\";a:10:{s:4:\"hash\";s:32:\"6ade14090b5260cdbf7f60682e8b22d3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598068800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598068800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1fda6f4c77a7c8e05417bf5dd1beb5e3\";a:10:{s:4:\"hash\";s:32:\"1fda6f4c77a7c8e05417bf5dd1beb5e3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598068800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598068800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"db0ab212738545b816684b216db5d4d2\";a:10:{s:4:\"hash\";s:32:\"db0ab212738545b816684b216db5d4d2\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598068800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1598068800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"efbf82f1c476e86cc7e979317bc08e4f\";a:10:{s:4:\"hash\";s:32:\"efbf82f1c476e86cc7e979317bc08e4f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598155200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598155200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e4fa7da52390cc89a5aa8a9045cf5434\";a:10:{s:4:\"hash\";s:32:\"e4fa7da52390cc89a5aa8a9045cf5434\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598155200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1598155200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ab075dc43a1971538612f348ded6c4ad\";a:10:{s:4:\"hash\";s:32:\"ab075dc43a1971538612f348ded6c4ad\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598155200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1598155200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9ca30855b583be03f42e53b131f449e9\";a:10:{s:4:\"hash\";s:32:\"9ca30855b583be03f42e53b131f449e9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598155200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598155200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7fbe1bee0ffdad10c3dfce5cbc8c28de\";a:10:{s:4:\"hash\";s:32:\"7fbe1bee0ffdad10c3dfce5cbc8c28de\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598155200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1598155200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b92633bcd2f15d77edf6486b699a227e\";a:10:{s:4:\"hash\";s:32:\"b92633bcd2f15d77edf6486b699a227e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598155200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1598155200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"74cdcf94569c22e39fd3772d4e4eeca6\";a:10:{s:4:\"hash\";s:32:\"74cdcf94569c22e39fd3772d4e4eeca6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598155200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598155200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1c5b392323c881e3e6c08c441b82f893\";a:10:{s:4:\"hash\";s:32:\"1c5b392323c881e3e6c08c441b82f893\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598155200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1598155200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"62879d212e5cac32df456d7c29f7c44d\";a:10:{s:4:\"hash\";s:32:\"62879d212e5cac32df456d7c29f7c44d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598155200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598155200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3239774c1effd401032565ac30e99e97\";a:10:{s:4:\"hash\";s:32:\"3239774c1effd401032565ac30e99e97\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598155200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598155200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2cd6f099443faae0540854d0cd95925c\";a:10:{s:4:\"hash\";s:32:\"2cd6f099443faae0540854d0cd95925c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598155200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598155200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"03119c172ee867481f7f24c53230e500\";a:10:{s:4:\"hash\";s:32:\"03119c172ee867481f7f24c53230e500\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598241600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1598241600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5f653ed88ef73291355079bdd91a9724\";a:10:{s:4:\"hash\";s:32:\"5f653ed88ef73291355079bdd91a9724\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598241600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1598241600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"238da6db52f4a4f7c1f6d8604aeead30\";a:10:{s:4:\"hash\";s:32:\"238da6db52f4a4f7c1f6d8604aeead30\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598241600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598241600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"17c38046bebcbf696d2158e2950a3e45\";a:10:{s:4:\"hash\";s:32:\"17c38046bebcbf696d2158e2950a3e45\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598241600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598241600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"17c2185758e62f2744d89fc188efbdae\";a:10:{s:4:\"hash\";s:32:\"17c2185758e62f2744d89fc188efbdae\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598241600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1598241600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8b15e7f2eb56f759b888d7437ee76089\";a:10:{s:4:\"hash\";s:32:\"8b15e7f2eb56f759b888d7437ee76089\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598241600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1598241600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7aea0ed7c54ec6da21b60bdd2fa3b70c\";a:10:{s:4:\"hash\";s:32:\"7aea0ed7c54ec6da21b60bdd2fa3b70c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598241600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598241600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9976cd6d4bfbff573439b51249740136\";a:10:{s:4:\"hash\";s:32:\"9976cd6d4bfbff573439b51249740136\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598241600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1598241600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4e26c6c6c41a657ba68ed1ccebce5334\";a:10:{s:4:\"hash\";s:32:\"4e26c6c6c41a657ba68ed1ccebce5334\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598241600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598241600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5307cf6a7a5f3d4d6b33d5c13d142d98\";a:10:{s:4:\"hash\";s:32:\"5307cf6a7a5f3d4d6b33d5c13d142d98\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598241600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598241600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d5bf38e5d69e2871ecd7b27efa14db02\";a:10:{s:4:\"hash\";s:32:\"d5bf38e5d69e2871ecd7b27efa14db02\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598241600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598241600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"55f0ccf9aab741a9fd384b0e5076dee4\";a:10:{s:4:\"hash\";s:32:\"55f0ccf9aab741a9fd384b0e5076dee4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598328000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598328000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"881886d813afdcfb060d90f0f3d286f5\";a:10:{s:4:\"hash\";s:32:\"881886d813afdcfb060d90f0f3d286f5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598328000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598328000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"558a3de2694eb69908db6c843f1d182c\";a:10:{s:4:\"hash\";s:32:\"558a3de2694eb69908db6c843f1d182c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598328000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598328000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0a09af80eb3f0df12ed5f03e4d8e66ff\";a:10:{s:4:\"hash\";s:32:\"0a09af80eb3f0df12ed5f03e4d8e66ff\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598328000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1598328000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"721394a12d4bf94819e373a79cb18717\";a:10:{s:4:\"hash\";s:32:\"721394a12d4bf94819e373a79cb18717\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598414400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1598414400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eb3910646c766cf8d8baf4931f72d150\";a:10:{s:4:\"hash\";s:32:\"eb3910646c766cf8d8baf4931f72d150\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598414400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1598414400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5cc496b585555cbff30bab20b5d893f1\";a:10:{s:4:\"hash\";s:32:\"5cc496b585555cbff30bab20b5d893f1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598414400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598414400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b8f7a34e3802f8e4e6e38b8b48ef3d75\";a:10:{s:4:\"hash\";s:32:\"b8f7a34e3802f8e4e6e38b8b48ef3d75\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598414400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1598414400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"43e43598265152599b0e8cf36c30bcaa\";a:10:{s:4:\"hash\";s:32:\"43e43598265152599b0e8cf36c30bcaa\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598414400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598414400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"11c3e7dbb66a31f63c016daa84a1bebd\";a:10:{s:4:\"hash\";s:32:\"11c3e7dbb66a31f63c016daa84a1bebd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598414400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598414400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a687bb45a59d387c72eab2ec5b9288ca\";a:10:{s:4:\"hash\";s:32:\"a687bb45a59d387c72eab2ec5b9288ca\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598414400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598414400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"04f6df7d74f28bcb3817178b5d673397\";a:10:{s:4:\"hash\";s:32:\"04f6df7d74f28bcb3817178b5d673397\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598500800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598500800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4db0b6e838c95671f878cb8ff52cebc2\";a:10:{s:4:\"hash\";s:32:\"4db0b6e838c95671f878cb8ff52cebc2\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598500800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1598500800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9c30575ab78edfc4f0341fb9e931a4b6\";a:10:{s:4:\"hash\";s:32:\"9c30575ab78edfc4f0341fb9e931a4b6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598500800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598500800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a76f0a9a94138fce1e30fc5a79187f1f\";a:10:{s:4:\"hash\";s:32:\"a76f0a9a94138fce1e30fc5a79187f1f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598500800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598500800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e1033ee47ae715a23ff2d1d564c8fccb\";a:10:{s:4:\"hash\";s:32:\"e1033ee47ae715a23ff2d1d564c8fccb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598500800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1598500800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"620da053b711bf76140679e06f832cf4\";a:10:{s:4:\"hash\";s:32:\"620da053b711bf76140679e06f832cf4\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1598587200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1598587200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9168be9f1f83fb53f5950c6804fc5020\";a:10:{s:4:\"hash\";s:32:\"9168be9f1f83fb53f5950c6804fc5020\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1601524800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1601524800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef2257f5fce797592157cdc73f2c7881\";a:10:{s:4:\"hash\";s:32:\"ef2257f5fce797592157cdc73f2c7881\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604030400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1604030400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b0cf9b00e79d1ce575223fec79b3be7b\";a:10:{s:4:\"hash\";s:32:\"b0cf9b00e79d1ce575223fec79b3be7b\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604116800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1604116800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"28d088a7677e351a5cd074b036761ca1\";a:10:{s:4:\"hash\";s:32:\"28d088a7677e351a5cd074b036761ca1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604116800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1604116800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"21583a5c32ba2a17f194af72f284dfdb\";a:10:{s:4:\"hash\";s:32:\"21583a5c32ba2a17f194af72f284dfdb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604116800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1604116800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cd3530f28733cde131fe3e964a529b92\";a:10:{s:4:\"hash\";s:32:\"cd3530f28733cde131fe3e964a529b92\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604116800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1604116800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6d07991d62b0d3f6425913b9899a3900\";a:10:{s:4:\"hash\";s:32:\"6d07991d62b0d3f6425913b9899a3900\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604203200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1604203200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1628daf9574c43535c535c1b2e763e80\";a:10:{s:4:\"hash\";s:32:\"1628daf9574c43535c535c1b2e763e80\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604203200/cat_ids~87,89,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1604203200/cat_ids~87,89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0d03d515bc7bd5e53f19ac91ca972fdd\";a:10:{s:4:\"hash\";s:32:\"0d03d515bc7bd5e53f19ac91ca972fdd\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604203200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1604203200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6d52c558b1d42e710f7b0f83a6225f10\";a:10:{s:4:\"hash\";s:32:\"6d52c558b1d42e710f7b0f83a6225f10\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604203200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1604203200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"718996949616e43b9ff585ed14330db8\";a:10:{s:4:\"hash\";s:32:\"718996949616e43b9ff585ed14330db8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604203200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1604203200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e108165517e8deba85acde38b1872c5b\";a:10:{s:4:\"hash\";s:32:\"e108165517e8deba85acde38b1872c5b\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604203200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1604203200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c7b5cc2aad61a8a18ea408708e15408f\";a:10:{s:4:\"hash\";s:32:\"c7b5cc2aad61a8a18ea408708e15408f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604203200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1604203200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"98811d4a342cbbe93e7915b45ac9bcb1\";a:10:{s:4:\"hash\";s:32:\"98811d4a342cbbe93e7915b45ac9bcb1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604203200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1604203200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7fb450e94b569772bc89e4c003e406bf\";a:10:{s:4:\"hash\";s:32:\"7fb450e94b569772bc89e4c003e406bf\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604203200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1604203200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"700e79dcf1bcd0fa25024bfe290384c0\";a:10:{s:4:\"hash\";s:32:\"700e79dcf1bcd0fa25024bfe290384c0\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604293200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1604293200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f4cfb13be4fd661eb05d12f09353f6a0\";a:10:{s:4:\"hash\";s:32:\"f4cfb13be4fd661eb05d12f09353f6a0\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604293200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1604293200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"37bfa8bdd6cb65265f283b0aeaf322a5\";a:10:{s:4:\"hash\";s:32:\"37bfa8bdd6cb65265f283b0aeaf322a5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604293200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1604293200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"63d53ca6c956f734206bf7d7e95bcbdf\";a:10:{s:4:\"hash\";s:32:\"63d53ca6c956f734206bf7d7e95bcbdf\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604293200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1604293200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"99d7acd757ebfe7e4a7923928d7e868b\";a:10:{s:4:\"hash\";s:32:\"99d7acd757ebfe7e4a7923928d7e868b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604293200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1604293200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6b2401a5472c9eda9c79f0708ef400d0\";a:10:{s:4:\"hash\";s:32:\"6b2401a5472c9eda9c79f0708ef400d0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604293200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1604293200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c74b7e2b6692496bdf3435d512e10665\";a:10:{s:4:\"hash\";s:32:\"c74b7e2b6692496bdf3435d512e10665\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604293200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1604293200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"06d550aaf4a1cce15027ef694fab20e3\";a:10:{s:4:\"hash\";s:32:\"06d550aaf4a1cce15027ef694fab20e3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604379600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1604379600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c87895f62dc06c6c4a75018807be1aa8\";a:10:{s:4:\"hash\";s:32:\"c87895f62dc06c6c4a75018807be1aa8\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604379600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1604379600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dec7405076d8930fa64d6c28cc23bbf5\";a:10:{s:4:\"hash\";s:32:\"dec7405076d8930fa64d6c28cc23bbf5\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604466000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1604466000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"216c1d3ae32c9801da245fc376461b84\";a:10:{s:4:\"hash\";s:32:\"216c1d3ae32c9801da245fc376461b84\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604552400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1604552400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f0dd20101cfcffe6e91a8a72ff71da90\";a:10:{s:4:\"hash\";s:32:\"f0dd20101cfcffe6e91a8a72ff71da90\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604552400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1604552400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dc1e248842257d04ca85e230a5541c7b\";a:10:{s:4:\"hash\";s:32:\"dc1e248842257d04ca85e230a5541c7b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604552400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1604552400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"410299e87285fef77d3fb898f3644977\";a:10:{s:4:\"hash\";s:32:\"410299e87285fef77d3fb898f3644977\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604552400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1604552400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"26b2d75becc405540287fd12db063255\";a:10:{s:4:\"hash\";s:32:\"26b2d75becc405540287fd12db063255\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604638800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1604638800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"158a96ba2587244787c30df67845cccf\";a:10:{s:4:\"hash\";s:32:\"158a96ba2587244787c30df67845cccf\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604984400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1604984400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f8ab356fdaedf0d8969d85ffd390c1cb\";a:10:{s:4:\"hash\";s:32:\"f8ab356fdaedf0d8969d85ffd390c1cb\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1604984400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1604984400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b582767334e1e283ff3ffc282c67d6d3\";a:10:{s:4:\"hash\";s:32:\"b582767334e1e283ff3ffc282c67d6d3\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605070800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1605070800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3a8f9bccd3dd5bb6a38b3151aaccf3a0\";a:10:{s:4:\"hash\";s:32:\"3a8f9bccd3dd5bb6a38b3151aaccf3a0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605070800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605070800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"95d0e295741f3b70368f92c012647532\";a:10:{s:4:\"hash\";s:32:\"95d0e295741f3b70368f92c012647532\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605070800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1605070800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b2de5c3a8b6ccaf11c4453c67249bbc1\";a:10:{s:4:\"hash\";s:32:\"b2de5c3a8b6ccaf11c4453c67249bbc1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605070800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1605070800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"378f7e15df11dd2ea8ad06c13dcc7f65\";a:10:{s:4:\"hash\";s:32:\"378f7e15df11dd2ea8ad06c13dcc7f65\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605070800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605070800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c875b674a4e96e4662e5ac666e3d910\";a:10:{s:4:\"hash\";s:32:\"2c875b674a4e96e4662e5ac666e3d910\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605070800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1605070800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"33290e72185c78560d67408c3be1c0d4\";a:10:{s:4:\"hash\";s:32:\"33290e72185c78560d67408c3be1c0d4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605070800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605070800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0f3a8addda1607ed8e42d70067efd3be\";a:10:{s:4:\"hash\";s:32:\"0f3a8addda1607ed8e42d70067efd3be\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605070800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605070800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2e1f5d04a55c8922fd0d0130966a54d7\";a:10:{s:4:\"hash\";s:32:\"2e1f5d04a55c8922fd0d0130966a54d7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605070800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605070800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"950eb08717510d39ea12f9e4e89d290f\";a:10:{s:4:\"hash\";s:32:\"950eb08717510d39ea12f9e4e89d290f\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605157200/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1605157200/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7a133d46f65db43aabe62ddeedfb16fd\";a:10:{s:4:\"hash\";s:32:\"7a133d46f65db43aabe62ddeedfb16fd\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605157200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1605157200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9146a4bfe7296028079779301ea54823\";a:10:{s:4:\"hash\";s:32:\"9146a4bfe7296028079779301ea54823\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605157200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1605157200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"42c77a65baee33c70721c1d4942534ea\";a:10:{s:4:\"hash\";s:32:\"42c77a65baee33c70721c1d4942534ea\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605157200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605157200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a058ea46da1721c44e179703d617eb4\";a:10:{s:4:\"hash\";s:32:\"8a058ea46da1721c44e179703d617eb4\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605157200/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1605157200/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d03e35d220f103446e75c281b7507542\";a:10:{s:4:\"hash\";s:32:\"d03e35d220f103446e75c281b7507542\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605157200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1605157200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ed2b541e0971166e91c66e0d5a4f447a\";a:10:{s:4:\"hash\";s:32:\"ed2b541e0971166e91c66e0d5a4f447a\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605157200/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1605157200/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8d147969bce210fc32bc177e9122bca1\";a:10:{s:4:\"hash\";s:32:\"8d147969bce210fc32bc177e9122bca1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605157200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1605157200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"708d7bcb0376ea5afe1333a1269ecdcd\";a:10:{s:4:\"hash\";s:32:\"708d7bcb0376ea5afe1333a1269ecdcd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605157200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605157200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"095ae8de097f364004612d3a541e5936\";a:10:{s:4:\"hash\";s:32:\"095ae8de097f364004612d3a541e5936\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605157200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605157200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"24768b1680dc517d1ef16fe5d0444ffb\";a:10:{s:4:\"hash\";s:32:\"24768b1680dc517d1ef16fe5d0444ffb\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605157200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1605157200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"59f80e49cea1e49d4d17ec63b02ca09c\";a:10:{s:4:\"hash\";s:32:\"59f80e49cea1e49d4d17ec63b02ca09c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605157200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605157200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bb28c4aec9d2ae09e11207a6cb90176f\";a:10:{s:4:\"hash\";s:32:\"bb28c4aec9d2ae09e11207a6cb90176f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605157200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605157200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8d19affa4ebae331a00b028609ba8cef\";a:10:{s:4:\"hash\";s:32:\"8d19affa4ebae331a00b028609ba8cef\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605157200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605157200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c96ab381782beb3b64b5c9fb9ea115da\";a:10:{s:4:\"hash\";s:32:\"c96ab381782beb3b64b5c9fb9ea115da\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605243600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1605243600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"932c66c08bfdb570b73b5c4da4c8330f\";a:10:{s:4:\"hash\";s:32:\"932c66c08bfdb570b73b5c4da4c8330f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605243600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605243600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9b5e8791d9194ad7425570058787274b\";a:10:{s:4:\"hash\";s:32:\"9b5e8791d9194ad7425570058787274b\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605243600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1605243600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d9ba974e8beebf62831c6070fefe8d9\";a:10:{s:4:\"hash\";s:32:\"4d9ba974e8beebf62831c6070fefe8d9\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605243600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1605243600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"47a627cef75d915f97db977395e7c395\";a:10:{s:4:\"hash\";s:32:\"47a627cef75d915f97db977395e7c395\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605243600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605243600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"83bf90d6b8db6787dae8c3fd9ed746de\";a:10:{s:4:\"hash\";s:32:\"83bf90d6b8db6787dae8c3fd9ed746de\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605243600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1605243600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d69b94bf1af21269b332b5b0f4d168b0\";a:10:{s:4:\"hash\";s:32:\"d69b94bf1af21269b332b5b0f4d168b0\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605243600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1605243600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"631aaba4e2c3f5532962cf448f816a7a\";a:10:{s:4:\"hash\";s:32:\"631aaba4e2c3f5532962cf448f816a7a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605243600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605243600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2694efc051f23fa11cf7aaccf2f9c50c\";a:10:{s:4:\"hash\";s:32:\"2694efc051f23fa11cf7aaccf2f9c50c\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605243600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1605243600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e4cd8c24fc9a34f46d21bbfb51cf422a\";a:10:{s:4:\"hash\";s:32:\"e4cd8c24fc9a34f46d21bbfb51cf422a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605243600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605243600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ad4cbe6fc789a273b958d0da5cbd575f\";a:10:{s:4:\"hash\";s:32:\"ad4cbe6fc789a273b958d0da5cbd575f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605243600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605243600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3a4e06d96b51c16021deb9096559f0e4\";a:10:{s:4:\"hash\";s:32:\"3a4e06d96b51c16021deb9096559f0e4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605243600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605243600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f94081e843a918ad7bc097aa0c6f7ca6\";a:10:{s:4:\"hash\";s:32:\"f94081e843a918ad7bc097aa0c6f7ca6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605330000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605330000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"00f1a8ee6a052b8986e0c652df18cd3a\";a:10:{s:4:\"hash\";s:32:\"00f1a8ee6a052b8986e0c652df18cd3a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605330000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1605330000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b1bb6b3eb5ababa8c3e494e43bde623f\";a:10:{s:4:\"hash\";s:32:\"b1bb6b3eb5ababa8c3e494e43bde623f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605675600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605675600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f20fa37aae11247e96265c86d689a64\";a:10:{s:4:\"hash\";s:32:\"7f20fa37aae11247e96265c86d689a64\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605675600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1605675600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9ac9158702364e4c321d713fc7000235\";a:10:{s:4:\"hash\";s:32:\"9ac9158702364e4c321d713fc7000235\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605762000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1605762000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8567a454280a3f4424233a033336577e\";a:10:{s:4:\"hash\";s:32:\"8567a454280a3f4424233a033336577e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605762000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1605762000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9c96b9e57029fe5a6525ece867e2fd96\";a:10:{s:4:\"hash\";s:32:\"9c96b9e57029fe5a6525ece867e2fd96\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605762000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605762000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f2e8b295f3de9bad208ffae1b6bd1c18\";a:10:{s:4:\"hash\";s:32:\"f2e8b295f3de9bad208ffae1b6bd1c18\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605762000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1605762000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f64c7338b7e99ba45ec20287286f5d7b\";a:10:{s:4:\"hash\";s:32:\"f64c7338b7e99ba45ec20287286f5d7b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605762000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605762000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f3945bd8c8d052b4ce4ad281077fade8\";a:10:{s:4:\"hash\";s:32:\"f3945bd8c8d052b4ce4ad281077fade8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605762000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605762000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dac6a586262f9fbe70baeacdbaaf03a7\";a:10:{s:4:\"hash\";s:32:\"dac6a586262f9fbe70baeacdbaaf03a7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605762000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605762000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f7053f59c8fd5aee85544042c32f7498\";a:10:{s:4:\"hash\";s:32:\"f7053f59c8fd5aee85544042c32f7498\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605848400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605848400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8436d401ef5c7a1f17343b13a1590894\";a:10:{s:4:\"hash\";s:32:\"8436d401ef5c7a1f17343b13a1590894\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605848400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1605848400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6c7283cfdc9ac238ed830748b2298304\";a:10:{s:4:\"hash\";s:32:\"6c7283cfdc9ac238ed830748b2298304\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605934800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1605934800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3fce44fb4f09bb2705c747d66d9fa2a4\";a:10:{s:4:\"hash\";s:32:\"3fce44fb4f09bb2705c747d66d9fa2a4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605934800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605934800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0e7031d035d216cb1c8a085c5df5990e\";a:10:{s:4:\"hash\";s:32:\"0e7031d035d216cb1c8a085c5df5990e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605934800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605934800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7ce2b471f94b9cfb48477f66495cafa7\";a:10:{s:4:\"hash\";s:32:\"7ce2b471f94b9cfb48477f66495cafa7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1605934800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1605934800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b097c435bfd4a27587f53b0cadf34967\";a:10:{s:4:\"hash\";s:32:\"b097c435bfd4a27587f53b0cadf34967\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606021200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1606021200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eaa16f99b8b2d7bf2b718c840e943284\";a:10:{s:4:\"hash\";s:32:\"eaa16f99b8b2d7bf2b718c840e943284\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606453200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1606453200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff805971ae06ae653fc2402f811539b1\";a:10:{s:4:\"hash\";s:32:\"ff805971ae06ae653fc2402f811539b1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606539600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1606539600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"96b1cbc4fea0c549d23b23d2efd0b44e\";a:10:{s:4:\"hash\";s:32:\"96b1cbc4fea0c549d23b23d2efd0b44e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606539600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1606539600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"605bd76739d98a95f9e05138d0426984\";a:10:{s:4:\"hash\";s:32:\"605bd76739d98a95f9e05138d0426984\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606539600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1606539600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fa1160c8f235baa518fd518c4651230f\";a:10:{s:4:\"hash\";s:32:\"fa1160c8f235baa518fd518c4651230f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606539600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1606539600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9a32f355b468a3d383fabdc61f5ee7c4\";a:10:{s:4:\"hash\";s:32:\"9a32f355b468a3d383fabdc61f5ee7c4\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606539600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1606539600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"265d6a6de50275005c7aa55ba65b8595\";a:10:{s:4:\"hash\";s:32:\"265d6a6de50275005c7aa55ba65b8595\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606626000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1606626000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d0a0889ffce12d3719529bfa175b8a88\";a:10:{s:4:\"hash\";s:32:\"d0a0889ffce12d3719529bfa175b8a88\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606626000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1606626000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d3fc057de779fd5ceea0bc6edd20086c\";a:10:{s:4:\"hash\";s:32:\"d3fc057de779fd5ceea0bc6edd20086c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606626000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1606626000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"865d2138acac613027ed88264e28815a\";a:10:{s:4:\"hash\";s:32:\"865d2138acac613027ed88264e28815a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606626000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1606626000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f7c21bb1f103f5291af3674c3eef0398\";a:10:{s:4:\"hash\";s:32:\"f7c21bb1f103f5291af3674c3eef0398\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606626000/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1606626000/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"447ff3481905a300002127c69909ae68\";a:10:{s:4:\"hash\";s:32:\"447ff3481905a300002127c69909ae68\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606626000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1606626000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"90ff9848bb5dd49faad27415e33ef05e\";a:10:{s:4:\"hash\";s:32:\"90ff9848bb5dd49faad27415e33ef05e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606626000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1606626000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7755007cfecec78c9d9934f33225a33e\";a:10:{s:4:\"hash\";s:32:\"7755007cfecec78c9d9934f33225a33e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606626000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1606626000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"005de2c696f4b74922151e3d5f7a59bb\";a:10:{s:4:\"hash\";s:32:\"005de2c696f4b74922151e3d5f7a59bb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606626000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1606626000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"87ead8317bf6bc2634e8b76b53baa7bc\";a:10:{s:4:\"hash\";s:32:\"87ead8317bf6bc2634e8b76b53baa7bc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606626000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1606626000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f30192c7810de141dd15566afdc069fd\";a:10:{s:4:\"hash\";s:32:\"f30192c7810de141dd15566afdc069fd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606712400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1606712400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6109a386322139ae05c8cdc5efd484e9\";a:10:{s:4:\"hash\";s:32:\"6109a386322139ae05c8cdc5efd484e9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606712400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1606712400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c9e7e52df72892906f6eae5a159c8c0d\";a:10:{s:4:\"hash\";s:32:\"c9e7e52df72892906f6eae5a159c8c0d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606712400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1606712400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"94bed9a2c2d0af98ef448e007768a844\";a:10:{s:4:\"hash\";s:32:\"94bed9a2c2d0af98ef448e007768a844\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606712400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1606712400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b5723d32e6d434ad8bf58ba8684cfe61\";a:10:{s:4:\"hash\";s:32:\"b5723d32e6d434ad8bf58ba8684cfe61\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606712400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1606712400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b98039d68d8faf488034fd673249d2a0\";a:10:{s:4:\"hash\";s:32:\"b98039d68d8faf488034fd673249d2a0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606712400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1606712400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"509d554d32a77e4becea82721ade5918\";a:10:{s:4:\"hash\";s:32:\"509d554d32a77e4becea82721ade5918\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1606798800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1606798800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e86068c6a3dc6e13ec10aa17db20a8f7\";a:10:{s:4:\"hash\";s:32:\"e86068c6a3dc6e13ec10aa17db20a8f7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1609477200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1609477200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c4ac51b4f1475c4ff4398b9e5d5eb939\";a:10:{s:4:\"hash\";s:32:\"c4ac51b4f1475c4ff4398b9e5d5eb939\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1611550800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1611550800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2b6684510a2a449ecb8847ce02527a84\";a:10:{s:4:\"hash\";s:32:\"2b6684510a2a449ecb8847ce02527a84\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1611982800/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1611982800/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"87fbf443a849af834eae38e6f2ab61ed\";a:10:{s:4:\"hash\";s:32:\"87fbf443a849af834eae38e6f2ab61ed\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612069200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612069200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"81414c6232999201ed360094f2b6f50f\";a:10:{s:4:\"hash\";s:32:\"81414c6232999201ed360094f2b6f50f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612069200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612069200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"db68c2d5fcc5d46da3e2d87e977982f1\";a:10:{s:4:\"hash\";s:32:\"db68c2d5fcc5d46da3e2d87e977982f1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612069200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612069200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a6117ced5ae0baa598acd5f198f9df9\";a:10:{s:4:\"hash\";s:32:\"8a6117ced5ae0baa598acd5f198f9df9\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612069200/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1612069200/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9c8465d8254b45bc4574d2943f739cc1\";a:10:{s:4:\"hash\";s:32:\"9c8465d8254b45bc4574d2943f739cc1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612069200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612069200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9954eed2c80b77963f73949dec7199bd\";a:10:{s:4:\"hash\";s:32:\"9954eed2c80b77963f73949dec7199bd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612069200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612069200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7997c26fb070ea2a1e0e9bb5c738ca1e\";a:10:{s:4:\"hash\";s:32:\"7997c26fb070ea2a1e0e9bb5c738ca1e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612069200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612069200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8253d824e0fb0e90d2b3cae0984a8993\";a:10:{s:4:\"hash\";s:32:\"8253d824e0fb0e90d2b3cae0984a8993\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612069200/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1612069200/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1fd53a3b54dfe53c01315fa7fe9d9a8e\";a:10:{s:4:\"hash\";s:32:\"1fd53a3b54dfe53c01315fa7fe9d9a8e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612069200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612069200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"92588d9963d3d1880df167c7f8ca3ae2\";a:10:{s:4:\"hash\";s:32:\"92588d9963d3d1880df167c7f8ca3ae2\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612069200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1612069200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5f4e65507841a4d2b45b1af249f8ce71\";a:10:{s:4:\"hash\";s:32:\"5f4e65507841a4d2b45b1af249f8ce71\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612155600/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1612155600/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d545ee6efc3442c77fb9cf7a305c2e30\";a:10:{s:4:\"hash\";s:32:\"d545ee6efc3442c77fb9cf7a305c2e30\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612155600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612155600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7b8de387adfa8b939917c2f9c238da7f\";a:10:{s:4:\"hash\";s:32:\"7b8de387adfa8b939917c2f9c238da7f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612155600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612155600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1fae684dd14f1f4a7cd4a4d7309001e6\";a:10:{s:4:\"hash\";s:32:\"1fae684dd14f1f4a7cd4a4d7309001e6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612155600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612155600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a3080da584858d710e84639dfdb26352\";a:10:{s:4:\"hash\";s:32:\"a3080da584858d710e84639dfdb26352\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612155600/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1612155600/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f7f9c50aeb87542404972fc33328d5a8\";a:10:{s:4:\"hash\";s:32:\"f7f9c50aeb87542404972fc33328d5a8\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612155600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612155600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d795207c1ded75c0db70f294309c673\";a:10:{s:4:\"hash\";s:32:\"4d795207c1ded75c0db70f294309c673\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612155600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1612155600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7d5d82efe72d81925e41620b3938a0f6\";a:10:{s:4:\"hash\";s:32:\"7d5d82efe72d81925e41620b3938a0f6\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612155600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612155600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9d74c92627234e9db6404f461a862b98\";a:10:{s:4:\"hash\";s:32:\"9d74c92627234e9db6404f461a862b98\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612155600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612155600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8e0f164784a8ba7a45ea1f8e79aa194d\";a:10:{s:4:\"hash\";s:32:\"8e0f164784a8ba7a45ea1f8e79aa194d\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612155600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1612155600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3d948a76360058ede5d39c9889783098\";a:10:{s:4:\"hash\";s:32:\"3d948a76360058ede5d39c9889783098\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612155600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612155600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e21f736fb0b11d2e117d4fc4a8433da1\";a:10:{s:4:\"hash\";s:32:\"e21f736fb0b11d2e117d4fc4a8433da1\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612155600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1612155600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cbe535bb049a9a34a172c7a48428cb27\";a:10:{s:4:\"hash\";s:32:\"cbe535bb049a9a34a172c7a48428cb27\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612155600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612155600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"99c2aa8e7bbbc81fcc834fc2df260a18\";a:10:{s:4:\"hash\";s:32:\"99c2aa8e7bbbc81fcc834fc2df260a18\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612155600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612155600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4932e575a9fa5f8ea70dbf71bf846c7c\";a:10:{s:4:\"hash\";s:32:\"4932e575a9fa5f8ea70dbf71bf846c7c\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612155600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1612155600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8f6b91136436a569e476a34186bac68b\";a:10:{s:4:\"hash\";s:32:\"8f6b91136436a569e476a34186bac68b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612155600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612155600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f253c35fcb50cc73b03db3b0341e2300\";a:10:{s:4:\"hash\";s:32:\"f253c35fcb50cc73b03db3b0341e2300\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612155600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612155600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cc55b2f68bbfc0671277b653787afb62\";a:10:{s:4:\"hash\";s:32:\"cc55b2f68bbfc0671277b653787afb62\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612155600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612155600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f840b3ace19e881fe5010f6fd3b42153\";a:10:{s:4:\"hash\";s:32:\"f840b3ace19e881fe5010f6fd3b42153\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612242000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612242000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"051625e20290e9e8d8c4011142928467\";a:10:{s:4:\"hash\";s:32:\"051625e20290e9e8d8c4011142928467\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612242000/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612242000/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f02aae4839afba7d1332b716c3672bb\";a:10:{s:4:\"hash\";s:32:\"7f02aae4839afba7d1332b716c3672bb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612242000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612242000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"650620c8a42051325b0b6f812d360e11\";a:10:{s:4:\"hash\";s:32:\"650620c8a42051325b0b6f812d360e11\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612242000/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1612242000/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"71b5b4da6e8101764740fcdb99753c3e\";a:10:{s:4:\"hash\";s:32:\"71b5b4da6e8101764740fcdb99753c3e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612242000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612242000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"75e000c07b4bf86a23269ab53a6c7b57\";a:10:{s:4:\"hash\";s:32:\"75e000c07b4bf86a23269ab53a6c7b57\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612242000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1612242000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cce5de8ed2c1ffb0cd0ef8d5effb7566\";a:10:{s:4:\"hash\";s:32:\"cce5de8ed2c1ffb0cd0ef8d5effb7566\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612242000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612242000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1733e56ff8bc8e870e08a1a057435e1d\";a:10:{s:4:\"hash\";s:32:\"1733e56ff8bc8e870e08a1a057435e1d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612242000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612242000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"31bdf88a1aa229993de31be49d5512a8\";a:10:{s:4:\"hash\";s:32:\"31bdf88a1aa229993de31be49d5512a8\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612242000/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1612242000/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e492bb42cf2704794562659a477057c5\";a:10:{s:4:\"hash\";s:32:\"e492bb42cf2704794562659a477057c5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612242000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612242000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c13e97d00e38e6e0b97a9982a230ad2\";a:10:{s:4:\"hash\";s:32:\"2c13e97d00e38e6e0b97a9982a230ad2\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612242000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1612242000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7746e6dbe35256130fac0f542f514f9b\";a:10:{s:4:\"hash\";s:32:\"7746e6dbe35256130fac0f542f514f9b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612328400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612328400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b1d9e9b3f3a88e1dedddeb9632617ea4\";a:10:{s:4:\"hash\";s:32:\"b1d9e9b3f3a88e1dedddeb9632617ea4\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612328400/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1612328400/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5d41ddb8d8d0ff30827d9db9ed593403\";a:10:{s:4:\"hash\";s:32:\"5d41ddb8d8d0ff30827d9db9ed593403\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612328400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612328400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"29bfb9d605ae362bfa049576f00ce479\";a:10:{s:4:\"hash\";s:32:\"29bfb9d605ae362bfa049576f00ce479\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612587600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612587600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"06bec03c4810482a368cc6f1a12c640b\";a:10:{s:4:\"hash\";s:32:\"06bec03c4810482a368cc6f1a12c640b\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612587600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1612587600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"51b5543df57f43678684cf250522bc77\";a:10:{s:4:\"hash\";s:32:\"51b5543df57f43678684cf250522bc77\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612674000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612674000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0f0a4ec826a5053affc952f8ee5ddabb\";a:10:{s:4:\"hash\";s:32:\"0f0a4ec826a5053affc952f8ee5ddabb\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612674000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612674000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fe3fed80c378aee5d7f2948df28f680d\";a:10:{s:4:\"hash\";s:32:\"fe3fed80c378aee5d7f2948df28f680d\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612674000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612674000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8cf14d25f1a0f7fac0835f684af9795c\";a:10:{s:4:\"hash\";s:32:\"8cf14d25f1a0f7fac0835f684af9795c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612674000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612674000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"def38ee569fdf8d3785fc16e88df35b8\";a:10:{s:4:\"hash\";s:32:\"def38ee569fdf8d3785fc16e88df35b8\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612674000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1612674000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"349010e720487c6d8f940fe3a61b1939\";a:10:{s:4:\"hash\";s:32:\"349010e720487c6d8f940fe3a61b1939\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612674000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612674000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"02d61ada1073a6396f8944d43b8924ec\";a:10:{s:4:\"hash\";s:32:\"02d61ada1073a6396f8944d43b8924ec\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612674000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612674000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f8388f8cebe434c01756f62e19db6a9b\";a:10:{s:4:\"hash\";s:32:\"f8388f8cebe434c01756f62e19db6a9b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612674000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612674000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9124aba37e1be3ad49c44bf73f4c9a7c\";a:10:{s:4:\"hash\";s:32:\"9124aba37e1be3ad49c44bf73f4c9a7c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612760400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612760400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2fc954128bc6fef57bf63fe0a8025107\";a:10:{s:4:\"hash\";s:32:\"2fc954128bc6fef57bf63fe0a8025107\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612760400/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1612760400/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1af15403e6e6431cd6bf1cf756c98c52\";a:10:{s:4:\"hash\";s:32:\"1af15403e6e6431cd6bf1cf756c98c52\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612760400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612760400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"de6e0c595ed797e222a2902c0d199b74\";a:10:{s:4:\"hash\";s:32:\"de6e0c595ed797e222a2902c0d199b74\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612760400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612760400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1c86364527edf7e0110b69ea512c3058\";a:10:{s:4:\"hash\";s:32:\"1c86364527edf7e0110b69ea512c3058\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612760400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612760400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1ceef3f760e0b148f5223aaa655c27a3\";a:10:{s:4:\"hash\";s:32:\"1ceef3f760e0b148f5223aaa655c27a3\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612760400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612760400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"96c63865fb75194c499d69609322a321\";a:10:{s:4:\"hash\";s:32:\"96c63865fb75194c499d69609322a321\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612760400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1612760400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"410bcf4abd7134cbd19782a669d0af33\";a:10:{s:4:\"hash\";s:32:\"410bcf4abd7134cbd19782a669d0af33\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612760400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612760400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"19d3c528f79bc48046b50faa4c6b665f\";a:10:{s:4:\"hash\";s:32:\"19d3c528f79bc48046b50faa4c6b665f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612760400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612760400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b64bd3e137aa2c028c932344c6b5bb44\";a:10:{s:4:\"hash\";s:32:\"b64bd3e137aa2c028c932344c6b5bb44\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612760400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1612760400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a6c69a389805f84fee913480bd745d08\";a:10:{s:4:\"hash\";s:32:\"a6c69a389805f84fee913480bd745d08\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612846800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1612846800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"400ea1851abcc6d971e8b08d3ac98f0a\";a:10:{s:4:\"hash\";s:32:\"400ea1851abcc6d971e8b08d3ac98f0a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1612846800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1612846800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4269e772d953e5fe9d5b74b6737726e6\";a:10:{s:4:\"hash\";s:32:\"4269e772d953e5fe9d5b74b6737726e6\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1613278800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1613278800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3f8199d7a2843a66c67e0765f4926c9e\";a:10:{s:4:\"hash\";s:32:\"3f8199d7a2843a66c67e0765f4926c9e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1613365200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1613365200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"72d8fd190e1c9be1298b23433fcd9080\";a:10:{s:4:\"hash\";s:32:\"72d8fd190e1c9be1298b23433fcd9080\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1614574800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1614574800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7634f5cda36d916502fb5bfb88cc1336\";a:10:{s:4:\"hash\";s:32:\"7634f5cda36d916502fb5bfb88cc1336\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619236800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619236800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e509071096b6281bed74416832b95d9d\";a:10:{s:4:\"hash\";s:32:\"e509071096b6281bed74416832b95d9d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619236800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619236800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"df8e3c9065899ffd49267e337a71b3c4\";a:10:{s:4:\"hash\";s:32:\"df8e3c9065899ffd49267e337a71b3c4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619236800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619236800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1890f1c87842442ac86ed90803710f5b\";a:10:{s:4:\"hash\";s:32:\"1890f1c87842442ac86ed90803710f5b\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619236800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1619236800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"12bc15907088d2ab8473f30f9615fa19\";a:10:{s:4:\"hash\";s:32:\"12bc15907088d2ab8473f30f9615fa19\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619323200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1619323200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e79074d464d21cc38f6e073fb07134f9\";a:10:{s:4:\"hash\";s:32:\"e79074d464d21cc38f6e073fb07134f9\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619323200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1619323200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bd4268e42beba3b7fec4521947192273\";a:10:{s:4:\"hash\";s:32:\"bd4268e42beba3b7fec4521947192273\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619323200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619323200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cd2e6ef07db6e08140f42c36429fcb9a\";a:10:{s:4:\"hash\";s:32:\"cd2e6ef07db6e08140f42c36429fcb9a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619323200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1619323200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"09acc517f0d84f5547baaf9049089579\";a:10:{s:4:\"hash\";s:32:\"09acc517f0d84f5547baaf9049089579\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619323200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1619323200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0903c01a7b1092d81ef6e05f1d7950e5\";a:10:{s:4:\"hash\";s:32:\"0903c01a7b1092d81ef6e05f1d7950e5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619323200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619323200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"698e152d8a42fb85786bcd6e62669b41\";a:10:{s:4:\"hash\";s:32:\"698e152d8a42fb85786bcd6e62669b41\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619323200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1619323200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"942afd66847358daf43ed7c911fd5465\";a:10:{s:4:\"hash\";s:32:\"942afd66847358daf43ed7c911fd5465\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619323200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619323200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a6b9ff2334bf6118a3521e9600aac388\";a:10:{s:4:\"hash\";s:32:\"a6b9ff2334bf6118a3521e9600aac388\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619323200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619323200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d3d567671ff87c5202a6db5552402a96\";a:10:{s:4:\"hash\";s:32:\"d3d567671ff87c5202a6db5552402a96\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619323200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619323200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"83b11075c2afb0abcb5bc938af2c2ef8\";a:10:{s:4:\"hash\";s:32:\"83b11075c2afb0abcb5bc938af2c2ef8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619409600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619409600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"366785c29b488801a3bd8fa4f7d29cde\";a:10:{s:4:\"hash\";s:32:\"366785c29b488801a3bd8fa4f7d29cde\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619409600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619409600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"806435c6cdce6c2ebae4fb4f20bdb720\";a:10:{s:4:\"hash\";s:32:\"806435c6cdce6c2ebae4fb4f20bdb720\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619409600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1619409600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cf73f4db90414ff9db12ad15fd3be0b0\";a:10:{s:4:\"hash\";s:32:\"cf73f4db90414ff9db12ad15fd3be0b0\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619496000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1619496000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d82d8623323c4d809842da8e5cb33d65\";a:10:{s:4:\"hash\";s:32:\"d82d8623323c4d809842da8e5cb33d65\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619496000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619496000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e14f7cec74740de9586348a359aa7815\";a:10:{s:4:\"hash\";s:32:\"e14f7cec74740de9586348a359aa7815\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619496000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619496000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"945cc029d10435a6e6f917710dc9bfe2\";a:10:{s:4:\"hash\";s:32:\"945cc029d10435a6e6f917710dc9bfe2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619496000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619496000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d980c8fc899e5673c78cdec581f8983f\";a:10:{s:4:\"hash\";s:32:\"d980c8fc899e5673c78cdec581f8983f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619582400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1619582400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8e3c0020f1e80eb436e97dddaae86793\";a:10:{s:4:\"hash\";s:32:\"8e3c0020f1e80eb436e97dddaae86793\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619668800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1619668800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"49ffce396098073e4afb8a36d4386b6d\";a:10:{s:4:\"hash\";s:32:\"49ffce396098073e4afb8a36d4386b6d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619668800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619668800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"416819ce19a3fdf74cb7d623095aa8fd\";a:10:{s:4:\"hash\";s:32:\"416819ce19a3fdf74cb7d623095aa8fd\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619668800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1619668800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"135361fe446ffc959ff7001e47a0c39d\";a:10:{s:4:\"hash\";s:32:\"135361fe446ffc959ff7001e47a0c39d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619755200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619755200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"42305b9ce0bd1b9c2b1b34582643d941\";a:10:{s:4:\"hash\";s:32:\"42305b9ce0bd1b9c2b1b34582643d941\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619755200/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1619755200/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b082e71aaac61db55b02663cfbd549e7\";a:10:{s:4:\"hash\";s:32:\"b082e71aaac61db55b02663cfbd549e7\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619755200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1619755200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5ee37228bd324bbe1487d3a5903c3f1f\";a:10:{s:4:\"hash\";s:32:\"5ee37228bd324bbe1487d3a5903c3f1f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619755200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1619755200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6db7949eed0c4846d6ee6e8e4f6045fe\";a:10:{s:4:\"hash\";s:32:\"6db7949eed0c4846d6ee6e8e4f6045fe\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619755200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619755200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b20c7722ec1cba229b82ee95c31f253a\";a:10:{s:4:\"hash\";s:32:\"b20c7722ec1cba229b82ee95c31f253a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619755200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1619755200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"474a279f8301a8009ed196ffa0a7aa67\";a:10:{s:4:\"hash\";s:32:\"474a279f8301a8009ed196ffa0a7aa67\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619755200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619755200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"88aeb47b5d61cb64d9427a6409ef8ce3\";a:10:{s:4:\"hash\";s:32:\"88aeb47b5d61cb64d9427a6409ef8ce3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619755200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619755200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c270f9611a641a8fae90807d4d773d1e\";a:10:{s:4:\"hash\";s:32:\"c270f9611a641a8fae90807d4d773d1e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619755200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619755200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3f9ae4e67f374cf0e841ea6853bc5788\";a:10:{s:4:\"hash\";s:32:\"3f9ae4e67f374cf0e841ea6853bc5788\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619841600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619841600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"725784c64624aad68bc947f7f1198bfa\";a:10:{s:4:\"hash\";s:32:\"725784c64624aad68bc947f7f1198bfa\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619841600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1619841600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a2c865006456acd5a1a588e8c6ff3611\";a:10:{s:4:\"hash\";s:32:\"a2c865006456acd5a1a588e8c6ff3611\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619841600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1619841600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d7fcc9d772d0294e38ae0355668c981a\";a:10:{s:4:\"hash\";s:32:\"d7fcc9d772d0294e38ae0355668c981a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619841600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1619841600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b130ae889eb8e1cbcf2340e72f758e56\";a:10:{s:4:\"hash\";s:32:\"b130ae889eb8e1cbcf2340e72f758e56\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619841600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619841600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"284920d9a115adb04fbe39fa00cf77b5\";a:10:{s:4:\"hash\";s:32:\"284920d9a115adb04fbe39fa00cf77b5\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619841600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1619841600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7dbf0879082951aa7bcdf3db27bf38d9\";a:10:{s:4:\"hash\";s:32:\"7dbf0879082951aa7bcdf3db27bf38d9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1619928000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1619928000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"96b040d5165fb9772c7f3adeccd2526b\";a:10:{s:4:\"hash\";s:32:\"96b040d5165fb9772c7f3adeccd2526b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620014400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620014400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"04e1f63a4ceefe284f48582c4e2307f6\";a:10:{s:4:\"hash\";s:32:\"04e1f63a4ceefe284f48582c4e2307f6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620014400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620014400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"89b919436f560a83eb5e9b7e91bc2ff6\";a:10:{s:4:\"hash\";s:32:\"89b919436f560a83eb5e9b7e91bc2ff6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620014400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620014400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"34429569c88b66cb4001ff958f77d549\";a:10:{s:4:\"hash\";s:32:\"34429569c88b66cb4001ff958f77d549\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620014400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1620014400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3e28b34c9d3645c16b3dd8720e16ebc6\";a:10:{s:4:\"hash\";s:32:\"3e28b34c9d3645c16b3dd8720e16ebc6\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620100800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620100800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"507aa0651dc842134cd6c86c4d570b38\";a:10:{s:4:\"hash\";s:32:\"507aa0651dc842134cd6c86c4d570b38\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620100800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620100800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a12bf3dbbba3de1ea1e1a46b03e0cd64\";a:10:{s:4:\"hash\";s:32:\"a12bf3dbbba3de1ea1e1a46b03e0cd64\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620100800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620100800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0a56e79fa820bac0b818d6b3356a8bc7\";a:10:{s:4:\"hash\";s:32:\"0a56e79fa820bac0b818d6b3356a8bc7\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620100800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620100800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"359931255fae09f3670c0fcc83b7cc75\";a:10:{s:4:\"hash\";s:32:\"359931255fae09f3670c0fcc83b7cc75\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620100800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620100800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d39eb3e8cd980984907e9efd79ce504\";a:10:{s:4:\"hash\";s:32:\"4d39eb3e8cd980984907e9efd79ce504\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620100800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620100800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cafd7ff92a2cf12f8364ef2425d0e7db\";a:10:{s:4:\"hash\";s:32:\"cafd7ff92a2cf12f8364ef2425d0e7db\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620100800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620100800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"66226d0de652a8baffaa3f47b2c55d62\";a:10:{s:4:\"hash\";s:32:\"66226d0de652a8baffaa3f47b2c55d62\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620100800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620100800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3ceccfc362f55abe073bd61323f54e63\";a:10:{s:4:\"hash\";s:32:\"3ceccfc362f55abe073bd61323f54e63\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620100800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620100800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8d9539458790ddeaadb92eade80f2359\";a:10:{s:4:\"hash\";s:32:\"8d9539458790ddeaadb92eade80f2359\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620100800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1620100800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"60e827e9d494e2a4f6589ffa2ffb7084\";a:10:{s:4:\"hash\";s:32:\"60e827e9d494e2a4f6589ffa2ffb7084\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620100800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620100800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"14bfa7c6802da815402bba787ebe31e1\";a:10:{s:4:\"hash\";s:32:\"14bfa7c6802da815402bba787ebe31e1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620100800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620100800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7d38d88e26e02d157af297369749a665\";a:10:{s:4:\"hash\";s:32:\"7d38d88e26e02d157af297369749a665\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620100800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620100800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"83822ea90c4b45fd72470e8a867da03f\";a:10:{s:4:\"hash\";s:32:\"83822ea90c4b45fd72470e8a867da03f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620187200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620187200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1493b38d4fd7d94dcf491daaf2205a6b\";a:10:{s:4:\"hash\";s:32:\"1493b38d4fd7d94dcf491daaf2205a6b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620187200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620187200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"80460d69178a55d58b9a974afa59724c\";a:10:{s:4:\"hash\";s:32:\"80460d69178a55d58b9a974afa59724c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620187200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620187200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fdc163cdca4969fd55b4d60df319a094\";a:10:{s:4:\"hash\";s:32:\"fdc163cdca4969fd55b4d60df319a094\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620187200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1620187200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"23aba89bf567fda1ebf40566e41cda6b\";a:10:{s:4:\"hash\";s:32:\"23aba89bf567fda1ebf40566e41cda6b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620187200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620187200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"54a810f90bfacb278b4e3bd70f60ead1\";a:10:{s:4:\"hash\";s:32:\"54a810f90bfacb278b4e3bd70f60ead1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620187200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620187200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b329d525e5273a1429abed26ab0019b3\";a:10:{s:4:\"hash\";s:32:\"b329d525e5273a1429abed26ab0019b3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620187200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620187200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"06272a0ea54a86504edf528eb8c2bd9b\";a:10:{s:4:\"hash\";s:32:\"06272a0ea54a86504edf528eb8c2bd9b\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620273600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1620273600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"11d0a795f86d0f403cbb1cc6c9f7c624\";a:10:{s:4:\"hash\";s:32:\"11d0a795f86d0f403cbb1cc6c9f7c624\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620273600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620273600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dd4ae47486447c39286e0902ad8a11ad\";a:10:{s:4:\"hash\";s:32:\"dd4ae47486447c39286e0902ad8a11ad\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620273600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620273600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7e8f65787d8f8cefb67f871009cb418f\";a:10:{s:4:\"hash\";s:32:\"7e8f65787d8f8cefb67f871009cb418f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620273600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620273600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"854f08bd86b423a87a2ac33b5970f539\";a:10:{s:4:\"hash\";s:32:\"854f08bd86b423a87a2ac33b5970f539\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620360000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1620360000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b1cc12160a78d72afedf5b3e61ca0e94\";a:10:{s:4:\"hash\";s:32:\"b1cc12160a78d72afedf5b3e61ca0e94\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620360000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620360000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8b7995578592d4f23766b3cbc3bd6e9e\";a:10:{s:4:\"hash\";s:32:\"8b7995578592d4f23766b3cbc3bd6e9e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620360000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620360000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"18e8a9b0afed0de96e2bbfe009e75815\";a:10:{s:4:\"hash\";s:32:\"18e8a9b0afed0de96e2bbfe009e75815\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620360000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620360000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a7b0d9298fca60e25f2797b3c7d07c7\";a:10:{s:4:\"hash\";s:32:\"8a7b0d9298fca60e25f2797b3c7d07c7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620446400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620446400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b0c363a68571006c0483cba9ad397fed\";a:10:{s:4:\"hash\";s:32:\"b0c363a68571006c0483cba9ad397fed\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620446400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1620446400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"91412eafee32daaf94e37e6eae820b88\";a:10:{s:4:\"hash\";s:32:\"91412eafee32daaf94e37e6eae820b88\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620532800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620532800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d616b9f3a541af77f0d2036eeb61944\";a:10:{s:4:\"hash\";s:32:\"4d616b9f3a541af77f0d2036eeb61944\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620532800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620532800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d344c092baadf1226f874c1af6f8544a\";a:10:{s:4:\"hash\";s:32:\"d344c092baadf1226f874c1af6f8544a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620532800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620532800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bd9833cc1941da34c54c84b4ef4f11af\";a:10:{s:4:\"hash\";s:32:\"bd9833cc1941da34c54c84b4ef4f11af\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620532800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620532800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f20dd6c2825fbf344cbc3b7dc386c21c\";a:10:{s:4:\"hash\";s:32:\"f20dd6c2825fbf344cbc3b7dc386c21c\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620532800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1620532800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1dd7a62ae5357292c2e1b4ae9f0244c0\";a:10:{s:4:\"hash\";s:32:\"1dd7a62ae5357292c2e1b4ae9f0244c0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620532800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620532800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"80ef621bbe571fd327c118423bff3d04\";a:10:{s:4:\"hash\";s:32:\"80ef621bbe571fd327c118423bff3d04\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620532800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620532800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"00ec57cfe93ea4995bd2f39f237b01f0\";a:10:{s:4:\"hash\";s:32:\"00ec57cfe93ea4995bd2f39f237b01f0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620532800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620532800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dd524170b97c9cdf1f9d484652fa093b\";a:10:{s:4:\"hash\";s:32:\"dd524170b97c9cdf1f9d484652fa093b\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620619200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620619200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c3274b20966745d1c989114740bc16b\";a:10:{s:4:\"hash\";s:32:\"3c3274b20966745d1c989114740bc16b\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620619200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620619200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"588bb386d088137b011287a2cff5d23b\";a:10:{s:4:\"hash\";s:32:\"588bb386d088137b011287a2cff5d23b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620619200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620619200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"970570f0b3db6be00c45716ebcf8a0a8\";a:10:{s:4:\"hash\";s:32:\"970570f0b3db6be00c45716ebcf8a0a8\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620619200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620619200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5b92110c7815c6f0e431ee82aea20ed0\";a:10:{s:4:\"hash\";s:32:\"5b92110c7815c6f0e431ee82aea20ed0\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620619200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620619200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2adb84929b49a834b1f7074ce65a47fa\";a:10:{s:4:\"hash\";s:32:\"2adb84929b49a834b1f7074ce65a47fa\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620619200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620619200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7980f4e4f8f0368736e866d838386537\";a:10:{s:4:\"hash\";s:32:\"7980f4e4f8f0368736e866d838386537\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620619200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1620619200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e02a21cce8f9a138d97b3b3f90944977\";a:10:{s:4:\"hash\";s:32:\"e02a21cce8f9a138d97b3b3f90944977\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620619200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620619200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0454d24b15123b1ba752d5e3d0f7c3d4\";a:10:{s:4:\"hash\";s:32:\"0454d24b15123b1ba752d5e3d0f7c3d4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620619200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620619200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9af5d44b6bb41b9ad569ca7f4d3e8bc8\";a:10:{s:4:\"hash\";s:32:\"9af5d44b6bb41b9ad569ca7f4d3e8bc8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620619200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620619200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1f294e73546d21c4ed680bb5089ca00e\";a:10:{s:4:\"hash\";s:32:\"1f294e73546d21c4ed680bb5089ca00e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620705600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620705600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"df2cf5772b95f4527e896c8e823187ca\";a:10:{s:4:\"hash\";s:32:\"df2cf5772b95f4527e896c8e823187ca\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620705600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620705600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"367bd0f7e58c1cee1d1db10f51d44005\";a:10:{s:4:\"hash\";s:32:\"367bd0f7e58c1cee1d1db10f51d44005\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620705600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620705600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b7fcbd20331b3be293792a2915baeac7\";a:10:{s:4:\"hash\";s:32:\"b7fcbd20331b3be293792a2915baeac7\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620705600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620705600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5b957c30a04d6cdfaaca36e09e9f7f3b\";a:10:{s:4:\"hash\";s:32:\"5b957c30a04d6cdfaaca36e09e9f7f3b\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620705600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620705600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8fd8f4cfbcda53bfc54be0d56b8782e3\";a:10:{s:4:\"hash\";s:32:\"8fd8f4cfbcda53bfc54be0d56b8782e3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620705600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620705600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ac44bc989577bf9ba5d0453befcc34c0\";a:10:{s:4:\"hash\";s:32:\"ac44bc989577bf9ba5d0453befcc34c0\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620705600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1620705600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f775c0e6c7bea96876577fa18dd1d2c6\";a:10:{s:4:\"hash\";s:32:\"f775c0e6c7bea96876577fa18dd1d2c6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620705600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620705600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9ceab6849c1143c00895bd1e354c6ff1\";a:10:{s:4:\"hash\";s:32:\"9ceab6849c1143c00895bd1e354c6ff1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620705600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620705600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"26baf7ab634acd7cf1d6d77afcd03417\";a:10:{s:4:\"hash\";s:32:\"26baf7ab634acd7cf1d6d77afcd03417\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620705600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620705600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2b67601a0f52f71590df6c411eeac6d4\";a:10:{s:4:\"hash\";s:32:\"2b67601a0f52f71590df6c411eeac6d4\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620792000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620792000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9466730db57cdfab3491ff4f55238116\";a:10:{s:4:\"hash\";s:32:\"9466730db57cdfab3491ff4f55238116\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620792000/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620792000/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3e8dd78a936064081f830b89468125c6\";a:10:{s:4:\"hash\";s:32:\"3e8dd78a936064081f830b89468125c6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620792000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620792000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c069b224e810de2c9a6f80ae0bf4f6b3\";a:10:{s:4:\"hash\";s:32:\"c069b224e810de2c9a6f80ae0bf4f6b3\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620792000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620792000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"af2eff0de8b8cdbf03d4f50502e61a88\";a:10:{s:4:\"hash\";s:32:\"af2eff0de8b8cdbf03d4f50502e61a88\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620792000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1620792000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ded58aeee9cac74e5183075e1335fa2f\";a:10:{s:4:\"hash\";s:32:\"ded58aeee9cac74e5183075e1335fa2f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620792000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620792000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3b91a0c083e0f8c93113d102096fed86\";a:10:{s:4:\"hash\";s:32:\"3b91a0c083e0f8c93113d102096fed86\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620792000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620792000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ed468ccf61f34ea32a6cad1c81f923a3\";a:10:{s:4:\"hash\";s:32:\"ed468ccf61f34ea32a6cad1c81f923a3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620792000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620792000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f5f52b2a689829a5ccc10dfdb85cd74d\";a:10:{s:4:\"hash\";s:32:\"f5f52b2a689829a5ccc10dfdb85cd74d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620792000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1620792000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0563e72c1652f9d0811068d60414c083\";a:10:{s:4:\"hash\";s:32:\"0563e72c1652f9d0811068d60414c083\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620792000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620792000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c76f4ba711de16ac48ab554ca3189822\";a:10:{s:4:\"hash\";s:32:\"c76f4ba711de16ac48ab554ca3189822\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620792000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620792000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"09ae3716e2d0f0731023892563dfdda9\";a:10:{s:4:\"hash\";s:32:\"09ae3716e2d0f0731023892563dfdda9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620792000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620792000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c6b3c9956133974c0a316eb73d9f3e8c\";a:10:{s:4:\"hash\";s:32:\"c6b3c9956133974c0a316eb73d9f3e8c\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620878400/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620878400/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"48b9e8d05b8387acb626474e313ba40e\";a:10:{s:4:\"hash\";s:32:\"48b9e8d05b8387acb626474e313ba40e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620878400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620878400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"89e50e2b7f5b7ad6f9efbfcef916f1ed\";a:10:{s:4:\"hash\";s:32:\"89e50e2b7f5b7ad6f9efbfcef916f1ed\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620878400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620878400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"304bb8a48a7d8d8dfeede8e91b655b65\";a:10:{s:4:\"hash\";s:32:\"304bb8a48a7d8d8dfeede8e91b655b65\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620878400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620878400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"05efe7ea5503c8ca1c592bf4881968fc\";a:10:{s:4:\"hash\";s:32:\"05efe7ea5503c8ca1c592bf4881968fc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620878400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620878400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f1c0327393ed38f74463926c5c5b462e\";a:10:{s:4:\"hash\";s:32:\"f1c0327393ed38f74463926c5c5b462e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620878400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1620878400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"24881a1672d05aa77ecf63ed563c000d\";a:10:{s:4:\"hash\";s:32:\"24881a1672d05aa77ecf63ed563c000d\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620964800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620964800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ab7e93bca48313e335b7d970a4582a3f\";a:10:{s:4:\"hash\";s:32:\"ab7e93bca48313e335b7d970a4582a3f\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620964800/cat_ids~87,89,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1620964800/cat_ids~87,89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d3a40455ab55833a1f1569abfb82e7a\";a:10:{s:4:\"hash\";s:32:\"4d3a40455ab55833a1f1569abfb82e7a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620964800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1620964800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"afdbf4e6cedda6b4105f4df4d1ae7b7e\";a:10:{s:4:\"hash\";s:32:\"afdbf4e6cedda6b4105f4df4d1ae7b7e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620964800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620964800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"85776fef4e939f7a5f03f0e3da1441b0\";a:10:{s:4:\"hash\";s:32:\"85776fef4e939f7a5f03f0e3da1441b0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620964800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620964800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"92928e88bce1a01fa9c514277efb7314\";a:10:{s:4:\"hash\";s:32:\"92928e88bce1a01fa9c514277efb7314\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620964800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1620964800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d3e201d01d8c889ea381560f650b566f\";a:10:{s:4:\"hash\";s:32:\"d3e201d01d8c889ea381560f650b566f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620964800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620964800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b1b4176a35002ac7c789b38d0eddeff0\";a:10:{s:4:\"hash\";s:32:\"b1b4176a35002ac7c789b38d0eddeff0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620964800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620964800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c0d77f481a3e759054d9bba053305aa8\";a:10:{s:4:\"hash\";s:32:\"c0d77f481a3e759054d9bba053305aa8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1620964800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1620964800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6924d29991eeaff2530b8c6c1c6cc652\";a:10:{s:4:\"hash\";s:32:\"6924d29991eeaff2530b8c6c1c6cc652\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621051200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1621051200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"18a0bbe6325cd991e89730a7f2d2f7a4\";a:10:{s:4:\"hash\";s:32:\"18a0bbe6325cd991e89730a7f2d2f7a4\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621051200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1621051200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0672667fbd486664df8bb367ffee9c65\";a:10:{s:4:\"hash\";s:32:\"0672667fbd486664df8bb367ffee9c65\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621051200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621051200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"19a2689ce21be94560fca530bfa64ac6\";a:10:{s:4:\"hash\";s:32:\"19a2689ce21be94560fca530bfa64ac6\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621051200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1621051200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a889c024eea21e64308a3e12e6c455b7\";a:10:{s:4:\"hash\";s:32:\"a889c024eea21e64308a3e12e6c455b7\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621051200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1621051200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"20503feaf1f5d3a8d2fe91d090b3edfa\";a:10:{s:4:\"hash\";s:32:\"20503feaf1f5d3a8d2fe91d090b3edfa\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621051200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621051200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"616993b0ba0f356a7a1e333981dad9ff\";a:10:{s:4:\"hash\";s:32:\"616993b0ba0f356a7a1e333981dad9ff\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621051200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1621051200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ead7447e4eceb0af9e971b7c8af7eb6c\";a:10:{s:4:\"hash\";s:32:\"ead7447e4eceb0af9e971b7c8af7eb6c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621051200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621051200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0391db42bd4837fd5ff08af77261b926\";a:10:{s:4:\"hash\";s:32:\"0391db42bd4837fd5ff08af77261b926\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621051200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621051200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"177f5aeb355a81cc418fced6c87daf6b\";a:10:{s:4:\"hash\";s:32:\"177f5aeb355a81cc418fced6c87daf6b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621051200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621051200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"97204ce842c000dd0f64c16fcd4fc1b9\";a:10:{s:4:\"hash\";s:32:\"97204ce842c000dd0f64c16fcd4fc1b9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621137600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621137600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"15c03a37bcbc76f58f4614b713c2bf54\";a:10:{s:4:\"hash\";s:32:\"15c03a37bcbc76f58f4614b713c2bf54\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621137600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621137600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"64e194f30e25e68d91f785473e4c4075\";a:10:{s:4:\"hash\";s:32:\"64e194f30e25e68d91f785473e4c4075\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621137600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1621137600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"247532fcf3560b211e71fe0ed2b0c95a\";a:10:{s:4:\"hash\";s:32:\"247532fcf3560b211e71fe0ed2b0c95a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621224000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621224000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e2f3863689155198e40e1ab38bf8a1ba\";a:10:{s:4:\"hash\";s:32:\"e2f3863689155198e40e1ab38bf8a1ba\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621224000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621224000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c05d9123ce645866662cb5561e580942\";a:10:{s:4:\"hash\";s:32:\"c05d9123ce645866662cb5561e580942\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621224000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1621224000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"68673386dd584a46dfa341ad6aab4bcc\";a:10:{s:4:\"hash\";s:32:\"68673386dd584a46dfa341ad6aab4bcc\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621224000/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1621224000/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"daf3efb09bef7ef21ac283c73a37df2f\";a:10:{s:4:\"hash\";s:32:\"daf3efb09bef7ef21ac283c73a37df2f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621224000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621224000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f295e6a194cbe02cf63f16957065cd12\";a:10:{s:4:\"hash\";s:32:\"f295e6a194cbe02cf63f16957065cd12\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621224000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1621224000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e37a71bd4aff32964d3dc4cc69538821\";a:10:{s:4:\"hash\";s:32:\"e37a71bd4aff32964d3dc4cc69538821\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621224000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621224000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff9c3dc37af430db8c4d359a6bcb3de8\";a:10:{s:4:\"hash\";s:32:\"ff9c3dc37af430db8c4d359a6bcb3de8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621224000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621224000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1e0f9c3cc72577e3ea8e790844b0b9e0\";a:10:{s:4:\"hash\";s:32:\"1e0f9c3cc72577e3ea8e790844b0b9e0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621224000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621224000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b102f06c093a79a8a4d645fd6cb915fd\";a:10:{s:4:\"hash\";s:32:\"b102f06c093a79a8a4d645fd6cb915fd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621310400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621310400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"708bcbbadd6e3ed4fafcbc29554b3ad3\";a:10:{s:4:\"hash\";s:32:\"708bcbbadd6e3ed4fafcbc29554b3ad3\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621310400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1621310400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d8e89b3b4f377ee7e093f7485e8d0095\";a:10:{s:4:\"hash\";s:32:\"d8e89b3b4f377ee7e093f7485e8d0095\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621396800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1621396800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"33f62328d2f7c0f3ed68ed64a65de19f\";a:10:{s:4:\"hash\";s:32:\"33f62328d2f7c0f3ed68ed64a65de19f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621396800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621396800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"03747ba6b1510c9e444953800333078f\";a:10:{s:4:\"hash\";s:32:\"03747ba6b1510c9e444953800333078f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621396800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621396800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0b68928cc33fd426ce84953927554ba4\";a:10:{s:4:\"hash\";s:32:\"0b68928cc33fd426ce84953927554ba4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621396800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621396800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"91802d98240971e3f47fca95e759f14a\";a:10:{s:4:\"hash\";s:32:\"91802d98240971e3f47fca95e759f14a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621483200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1621483200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dfc27255b7ef9f17ff881e82ddefda32\";a:10:{s:4:\"hash\";s:32:\"dfc27255b7ef9f17ff881e82ddefda32\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621828800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1621828800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c293b79faaa981e382c2452d5cb8ae97\";a:10:{s:4:\"hash\";s:32:\"c293b79faaa981e382c2452d5cb8ae97\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621915200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621915200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1524a7ed109933e042e05068572ecfb3\";a:10:{s:4:\"hash\";s:32:\"1524a7ed109933e042e05068572ecfb3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621915200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621915200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1056568be59dd118e5caff45aeed20ea\";a:10:{s:4:\"hash\";s:32:\"1056568be59dd118e5caff45aeed20ea\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621915200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621915200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"34f86ea9a762665c6dc42c73162d5093\";a:10:{s:4:\"hash\";s:32:\"34f86ea9a762665c6dc42c73162d5093\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621915200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1621915200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2bc326b2c3727e4c0144558793a81620\";a:10:{s:4:\"hash\";s:32:\"2bc326b2c3727e4c0144558793a81620\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621915200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621915200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"330f01dd3c32a96aec295244b0f7ff54\";a:10:{s:4:\"hash\";s:32:\"330f01dd3c32a96aec295244b0f7ff54\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621915200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621915200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cdeab485f8304ceb11513209d4a32386\";a:10:{s:4:\"hash\";s:32:\"cdeab485f8304ceb11513209d4a32386\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1621915200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1621915200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4dc596ae9b86f9c6d5d77d7acac8ad26\";a:10:{s:4:\"hash\";s:32:\"4dc596ae9b86f9c6d5d77d7acac8ad26\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622001600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1622001600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e25c10c74b3cf17f06458fe5fc7fcef2\";a:10:{s:4:\"hash\";s:32:\"e25c10c74b3cf17f06458fe5fc7fcef2\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622001600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1622001600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9a5a495b832202908944b9972bb07267\";a:10:{s:4:\"hash\";s:32:\"9a5a495b832202908944b9972bb07267\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622001600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1622001600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"85dffc14d811c860200a70d2faa17a14\";a:10:{s:4:\"hash\";s:32:\"85dffc14d811c860200a70d2faa17a14\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622001600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1622001600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"19b8435a3c7a1684f01fe1fce8f8b9c4\";a:10:{s:4:\"hash\";s:32:\"19b8435a3c7a1684f01fe1fce8f8b9c4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622001600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1622001600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9912e0993b416b0ca5f62b0897cb6f28\";a:10:{s:4:\"hash\";s:32:\"9912e0993b416b0ca5f62b0897cb6f28\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622001600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1622001600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"910509b3a41f763a4bc0b6a22a13d4fc\";a:10:{s:4:\"hash\";s:32:\"910509b3a41f763a4bc0b6a22a13d4fc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622001600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1622001600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"31b273776083c6772eca6eb755cb18bd\";a:10:{s:4:\"hash\";s:32:\"31b273776083c6772eca6eb755cb18bd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622088000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1622088000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"197cb4a3162147894d26cde4f37137f1\";a:10:{s:4:\"hash\";s:32:\"197cb4a3162147894d26cde4f37137f1\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622088000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1622088000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4659c0d96f3531e39ea1938c2cf1547c\";a:10:{s:4:\"hash\";s:32:\"4659c0d96f3531e39ea1938c2cf1547c\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622174400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1622174400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"426a3ec09ed18bc1d926d927b2508150\";a:10:{s:4:\"hash\";s:32:\"426a3ec09ed18bc1d926d927b2508150\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622520000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1622520000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"02283d8fbbec7c14058cd38be9370bc9\";a:10:{s:4:\"hash\";s:32:\"02283d8fbbec7c14058cd38be9370bc9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622520000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1622520000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3181ecc639936dd33f2b1bb24acf9eb3\";a:10:{s:4:\"hash\";s:32:\"3181ecc639936dd33f2b1bb24acf9eb3\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622520000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1622520000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"29401404a052de9c547822c8503098f5\";a:10:{s:4:\"hash\";s:32:\"29401404a052de9c547822c8503098f5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622606400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1622606400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"50267205440e6a5bbd228a25828bd90a\";a:10:{s:4:\"hash\";s:32:\"50267205440e6a5bbd228a25828bd90a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622692800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1622692800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ea758aa1562fd387718a49659a431253\";a:10:{s:4:\"hash\";s:32:\"ea758aa1562fd387718a49659a431253\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622692800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1622692800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b6cd7dbcbec4419f4f0a8f9cbcedc694\";a:10:{s:4:\"hash\";s:32:\"b6cd7dbcbec4419f4f0a8f9cbcedc694\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622692800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1622692800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fb90ba10bcea48328cf0defe307b6caa\";a:10:{s:4:\"hash\";s:32:\"fb90ba10bcea48328cf0defe307b6caa\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622692800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1622692800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"795f95b41cc7090e769aeef74e497117\";a:10:{s:4:\"hash\";s:32:\"795f95b41cc7090e769aeef74e497117\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622779200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1622779200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d9c24a8704dd0f0654a87616338d55b\";a:10:{s:4:\"hash\";s:32:\"4d9c24a8704dd0f0654a87616338d55b\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622779200/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1622779200/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"55098ca9acd6c58533af0c58bcb23c17\";a:10:{s:4:\"hash\";s:32:\"55098ca9acd6c58533af0c58bcb23c17\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622779200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1622779200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3ccf9962f28683f8cd987b5161c7dc6a\";a:10:{s:4:\"hash\";s:32:\"3ccf9962f28683f8cd987b5161c7dc6a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622779200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1622779200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"269d89c2521657bced34cb6f7a61bf7a\";a:10:{s:4:\"hash\";s:32:\"269d89c2521657bced34cb6f7a61bf7a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622779200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1622779200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c57b29180c57fd8b2664d757f72b7002\";a:10:{s:4:\"hash\";s:32:\"c57b29180c57fd8b2664d757f72b7002\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622779200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1622779200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e8f45073c2f47cc0df26fa4e2d769bf5\";a:10:{s:4:\"hash\";s:32:\"e8f45073c2f47cc0df26fa4e2d769bf5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622779200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1622779200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6cce3818ceda1d3e16e481d02997204c\";a:10:{s:4:\"hash\";s:32:\"6cce3818ceda1d3e16e481d02997204c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622779200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1622779200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0a441e4f11907e4b0be9cc2a23fcce76\";a:10:{s:4:\"hash\";s:32:\"0a441e4f11907e4b0be9cc2a23fcce76\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622779200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1622779200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2594584cc6e84f96fe10966f7d940b75\";a:10:{s:4:\"hash\";s:32:\"2594584cc6e84f96fe10966f7d940b75\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622865600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1622865600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"35ccf673ca1caba6f67f23f88f230abb\";a:10:{s:4:\"hash\";s:32:\"35ccf673ca1caba6f67f23f88f230abb\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622865600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1622865600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a32631f3c04dcb6f27019b16aafafd52\";a:10:{s:4:\"hash\";s:32:\"a32631f3c04dcb6f27019b16aafafd52\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622865600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1622865600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a574544af66a23e8e2d406d521c0005d\";a:10:{s:4:\"hash\";s:32:\"a574544af66a23e8e2d406d521c0005d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622865600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1622865600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"09c4a5dad4cda63cca029441182b1497\";a:10:{s:4:\"hash\";s:32:\"09c4a5dad4cda63cca029441182b1497\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622952000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1622952000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6dfc20d5ba5cb529240166acc3b5fc9d\";a:10:{s:4:\"hash\";s:32:\"6dfc20d5ba5cb529240166acc3b5fc9d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1622952000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1622952000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"411df56cdfe1078a7aba44a38411a059\";a:10:{s:4:\"hash\";s:32:\"411df56cdfe1078a7aba44a38411a059\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623038400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1623038400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4dc7e74e57b291656d8ec2d9b7023357\";a:10:{s:4:\"hash\";s:32:\"4dc7e74e57b291656d8ec2d9b7023357\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623038400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623038400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"820c97c145f3cfcff1f976fe8fcf51d8\";a:10:{s:4:\"hash\";s:32:\"820c97c145f3cfcff1f976fe8fcf51d8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623038400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623038400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"82c23a41872bcecf1bc559d78acf5d30\";a:10:{s:4:\"hash\";s:32:\"82c23a41872bcecf1bc559d78acf5d30\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623038400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623038400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0b0c677c81a82172e3eca5b5276e52fa\";a:10:{s:4:\"hash\";s:32:\"0b0c677c81a82172e3eca5b5276e52fa\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623124800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623124800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9763941056220e9d057890aca9f9fe0d\";a:10:{s:4:\"hash\";s:32:\"9763941056220e9d057890aca9f9fe0d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623124800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1623124800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"49ff2683e4105141fb42bc7e3cae1136\";a:10:{s:4:\"hash\";s:32:\"49ff2683e4105141fb42bc7e3cae1136\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623211200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1623211200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c9ca49de765a2076b8963a0a4368009e\";a:10:{s:4:\"hash\";s:32:\"c9ca49de765a2076b8963a0a4368009e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623297600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1623297600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3f551406b171e4283857b9b452ab5685\";a:10:{s:4:\"hash\";s:32:\"3f551406b171e4283857b9b452ab5685\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623384000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623384000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"343b93c0544335a1bb0b8552f6d3d4e9\";a:10:{s:4:\"hash\";s:32:\"343b93c0544335a1bb0b8552f6d3d4e9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623384000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623384000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9d121b04b95e416e5f922b97424721fd\";a:10:{s:4:\"hash\";s:32:\"9d121b04b95e416e5f922b97424721fd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623384000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623384000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"93d1fc2c2603b53ce29fc1fbc0df8c2f\";a:10:{s:4:\"hash\";s:32:\"93d1fc2c2603b53ce29fc1fbc0df8c2f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623384000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1623384000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f19682b5f2be1b908a1c79a58b904acb\";a:10:{s:4:\"hash\";s:32:\"f19682b5f2be1b908a1c79a58b904acb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623384000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623384000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d365d6a32a35f28fce920c5ebb1858e7\";a:10:{s:4:\"hash\";s:32:\"d365d6a32a35f28fce920c5ebb1858e7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623384000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623384000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4fd4e3fd8d297b2fe8fa899d37106c41\";a:10:{s:4:\"hash\";s:32:\"4fd4e3fd8d297b2fe8fa899d37106c41\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623384000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623384000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"83e74ad3a28e7d8b79b720da0a1b219f\";a:10:{s:4:\"hash\";s:32:\"83e74ad3a28e7d8b79b720da0a1b219f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623470400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623470400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5fdd5bbff0a0177f96c2d26bc887b821\";a:10:{s:4:\"hash\";s:32:\"5fdd5bbff0a0177f96c2d26bc887b821\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623470400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623470400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1b7b69a0ad18e54e6b264b3a82222186\";a:10:{s:4:\"hash\";s:32:\"1b7b69a0ad18e54e6b264b3a82222186\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623470400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623470400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1c25302432e3f23910b0c48f751869cd\";a:10:{s:4:\"hash\";s:32:\"1c25302432e3f23910b0c48f751869cd\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623470400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1623470400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"388613bc8aade076fb4e2529e5a9464b\";a:10:{s:4:\"hash\";s:32:\"388613bc8aade076fb4e2529e5a9464b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623556800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623556800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e90b6aea6325fd073949e4b51d0df0cb\";a:10:{s:4:\"hash\";s:32:\"e90b6aea6325fd073949e4b51d0df0cb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623556800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623556800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"52dd25be9da2a383e98a2842fe4fc1b3\";a:10:{s:4:\"hash\";s:32:\"52dd25be9da2a383e98a2842fe4fc1b3\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623556800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623556800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"046527db51fbab6045d167b37c536270\";a:10:{s:4:\"hash\";s:32:\"046527db51fbab6045d167b37c536270\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623556800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623556800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ee9ce7a13e6c10c69c651ec12eb4911e\";a:10:{s:4:\"hash\";s:32:\"ee9ce7a13e6c10c69c651ec12eb4911e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623556800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623556800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d9fa94dcd5d3d9b70a10a0dbfab6217e\";a:10:{s:4:\"hash\";s:32:\"d9fa94dcd5d3d9b70a10a0dbfab6217e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623556800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1623556800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d416b251dfadb2835868f7ff5158dce3\";a:10:{s:4:\"hash\";s:32:\"d416b251dfadb2835868f7ff5158dce3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623556800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623556800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"71e01201f0ab3807445d0089cc234072\";a:10:{s:4:\"hash\";s:32:\"71e01201f0ab3807445d0089cc234072\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623556800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623556800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a2f6f729c2885b36c68e595608c2f5fd\";a:10:{s:4:\"hash\";s:32:\"a2f6f729c2885b36c68e595608c2f5fd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623556800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623556800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7ec23dfdfc04690ed82e1bd1ffebb7dd\";a:10:{s:4:\"hash\";s:32:\"7ec23dfdfc04690ed82e1bd1ffebb7dd\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623643200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623643200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dd24b0d876425474e751d143e1d8a6b9\";a:10:{s:4:\"hash\";s:32:\"dd24b0d876425474e751d143e1d8a6b9\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623643200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623643200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"87142f3ff88501f4773eec7da2cab5e2\";a:10:{s:4:\"hash\";s:32:\"87142f3ff88501f4773eec7da2cab5e2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623643200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623643200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2839302866414c3f5f4b254a1631bd41\";a:10:{s:4:\"hash\";s:32:\"2839302866414c3f5f4b254a1631bd41\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623643200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623643200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d50acc0030c0c941d1cfa1f7d77dd7da\";a:10:{s:4:\"hash\";s:32:\"d50acc0030c0c941d1cfa1f7d77dd7da\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623643200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623643200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b0d35b4d1440616d5230dbf8f48cb1df\";a:10:{s:4:\"hash\";s:32:\"b0d35b4d1440616d5230dbf8f48cb1df\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623643200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623643200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a15a74456997db780f4024ae982f7e59\";a:10:{s:4:\"hash\";s:32:\"a15a74456997db780f4024ae982f7e59\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623643200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623643200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6c32fc0c42d10f33940c7fa5e7cabd31\";a:10:{s:4:\"hash\";s:32:\"6c32fc0c42d10f33940c7fa5e7cabd31\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623643200/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1623643200/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"02895a75c35ac64f974dcb081e2b9843\";a:10:{s:4:\"hash\";s:32:\"02895a75c35ac64f974dcb081e2b9843\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623643200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623643200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c442dd58429c06cca3cb6e3fbe9cef54\";a:10:{s:4:\"hash\";s:32:\"c442dd58429c06cca3cb6e3fbe9cef54\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623643200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623643200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"705ed8533481758a7cd6e7799f4b2115\";a:10:{s:4:\"hash\";s:32:\"705ed8533481758a7cd6e7799f4b2115\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623643200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1623643200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3912864b56155346ad61a8a943436208\";a:10:{s:4:\"hash\";s:32:\"3912864b56155346ad61a8a943436208\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623643200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623643200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d24c53c8cae04896d4f6dc28380174a7\";a:10:{s:4:\"hash\";s:32:\"d24c53c8cae04896d4f6dc28380174a7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623643200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623643200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2fd00524e46b219e55fc18d83f79d0b1\";a:10:{s:4:\"hash\";s:32:\"2fd00524e46b219e55fc18d83f79d0b1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623643200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623643200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"08f2c3e59cb81d9c846f398c8e9f564c\";a:10:{s:4:\"hash\";s:32:\"08f2c3e59cb81d9c846f398c8e9f564c\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623729600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623729600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a032d5367552ad286fa43e9b6ae10a31\";a:10:{s:4:\"hash\";s:32:\"a032d5367552ad286fa43e9b6ae10a31\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623729600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623729600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"52cabcb43a5ef2c4c68ec57cd2ee4f35\";a:10:{s:4:\"hash\";s:32:\"52cabcb43a5ef2c4c68ec57cd2ee4f35\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623729600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623729600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"455fd4ea4b4740b409cf51af0baff5bf\";a:10:{s:4:\"hash\";s:32:\"455fd4ea4b4740b409cf51af0baff5bf\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623729600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623729600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"41a757aede84805659a8ffa279e782a1\";a:10:{s:4:\"hash\";s:32:\"41a757aede84805659a8ffa279e782a1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623729600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623729600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"883707b54e31802c3154c6a5b5df775f\";a:10:{s:4:\"hash\";s:32:\"883707b54e31802c3154c6a5b5df775f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623729600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623729600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"19a90c9dcc5764904c85f7b7d98dbe70\";a:10:{s:4:\"hash\";s:32:\"19a90c9dcc5764904c85f7b7d98dbe70\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623729600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623729600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e8a97bdc8fe61e8174034de42054f753\";a:10:{s:4:\"hash\";s:32:\"e8a97bdc8fe61e8174034de42054f753\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623729600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1623729600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a933e4b42079142b62dac074dd464166\";a:10:{s:4:\"hash\";s:32:\"a933e4b42079142b62dac074dd464166\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623729600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623729600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"387a90458fb6285b99ccd85596ea0e90\";a:10:{s:4:\"hash\";s:32:\"387a90458fb6285b99ccd85596ea0e90\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623729600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623729600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"57561ebbc96096216ba5a344f84131c0\";a:10:{s:4:\"hash\";s:32:\"57561ebbc96096216ba5a344f84131c0\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623729600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1623729600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2d53e590aa7d0d3569285655aec65d83\";a:10:{s:4:\"hash\";s:32:\"2d53e590aa7d0d3569285655aec65d83\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623729600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623729600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1b553e8b6935c1167708ad7ade96dbe7\";a:10:{s:4:\"hash\";s:32:\"1b553e8b6935c1167708ad7ade96dbe7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623729600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623729600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"89bb8078af3814b1d9cbe2508ab05c9a\";a:10:{s:4:\"hash\";s:32:\"89bb8078af3814b1d9cbe2508ab05c9a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623729600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623729600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e0f984463cbc1857d6f2fcc9f468ea47\";a:10:{s:4:\"hash\";s:32:\"e0f984463cbc1857d6f2fcc9f468ea47\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623816000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623816000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"341f0bd7bd0814b209a77b4dec0b937e\";a:10:{s:4:\"hash\";s:32:\"341f0bd7bd0814b209a77b4dec0b937e\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623816000/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1623816000/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"12b189fc31eeef7a55de1b689376f271\";a:10:{s:4:\"hash\";s:32:\"12b189fc31eeef7a55de1b689376f271\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623816000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623816000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a77706f26e2672639732fa89d8804c0d\";a:10:{s:4:\"hash\";s:32:\"a77706f26e2672639732fa89d8804c0d\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623816000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623816000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b5362e1eda7f54f39a71c093b75058f3\";a:10:{s:4:\"hash\";s:32:\"b5362e1eda7f54f39a71c093b75058f3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623816000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623816000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9d937e8c03f796d2be1336a27c3a9829\";a:10:{s:4:\"hash\";s:32:\"9d937e8c03f796d2be1336a27c3a9829\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623816000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623816000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aa52b5b1bf4ca6d967737a7d5c753538\";a:10:{s:4:\"hash\";s:32:\"aa52b5b1bf4ca6d967737a7d5c753538\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623816000/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1623816000/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d8023b5d2534d023a9602a961431fe92\";a:10:{s:4:\"hash\";s:32:\"d8023b5d2534d023a9602a961431fe92\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623816000/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623816000/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b246802fa9ee515aeb283e253a2bafe4\";a:10:{s:4:\"hash\";s:32:\"b246802fa9ee515aeb283e253a2bafe4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623816000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623816000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"983eda6171774af1e934b99ea9b4a78e\";a:10:{s:4:\"hash\";s:32:\"983eda6171774af1e934b99ea9b4a78e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623816000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1623816000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1dd2b1e972d33ceddf932ac727d28c70\";a:10:{s:4:\"hash\";s:32:\"1dd2b1e972d33ceddf932ac727d28c70\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623816000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623816000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"07fb739a066549165437f074ceabca7a\";a:10:{s:4:\"hash\";s:32:\"07fb739a066549165437f074ceabca7a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623816000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623816000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ec082c47f6b3cde7b467319b9efe059d\";a:10:{s:4:\"hash\";s:32:\"ec082c47f6b3cde7b467319b9efe059d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623816000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623816000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"89fbec9019f54c48ea5dab6e170b39b9\";a:10:{s:4:\"hash\";s:32:\"89fbec9019f54c48ea5dab6e170b39b9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623902400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623902400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5695dde12c7ee94a165c98ad40bf62eb\";a:10:{s:4:\"hash\";s:32:\"5695dde12c7ee94a165c98ad40bf62eb\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623902400/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1623902400/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"908241d9e6a4a551259be197fc51708d\";a:10:{s:4:\"hash\";s:32:\"908241d9e6a4a551259be197fc51708d\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623902400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623902400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f907e33e67461852889423a2c76dd206\";a:10:{s:4:\"hash\";s:32:\"f907e33e67461852889423a2c76dd206\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623902400/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1623902400/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"27a849e2a6b7177f8179bae2ac9aed0b\";a:10:{s:4:\"hash\";s:32:\"27a849e2a6b7177f8179bae2ac9aed0b\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623902400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623902400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a732d0b80eb28356c4746f9c94fa1de8\";a:10:{s:4:\"hash\";s:32:\"a732d0b80eb28356c4746f9c94fa1de8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623902400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623902400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0ca301b61951b7eb7576c9fa36cfa1e1\";a:10:{s:4:\"hash\";s:32:\"0ca301b61951b7eb7576c9fa36cfa1e1\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623902400/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1623902400/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c982b2be0ec2895612f552dd83c0acc3\";a:10:{s:4:\"hash\";s:32:\"c982b2be0ec2895612f552dd83c0acc3\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623902400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623902400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6c9f643bac4747b4c0d7be89c61aec8e\";a:10:{s:4:\"hash\";s:32:\"6c9f643bac4747b4c0d7be89c61aec8e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623902400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623902400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0f589d34d0fcd7da7a65126308def66f\";a:10:{s:4:\"hash\";s:32:\"0f589d34d0fcd7da7a65126308def66f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623902400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1623902400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"20e5aa1ca71c8ca187748207d778488a\";a:10:{s:4:\"hash\";s:32:\"20e5aa1ca71c8ca187748207d778488a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623988800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623988800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5892386bbaf5578fb88c49010b6eb011\";a:10:{s:4:\"hash\";s:32:\"5892386bbaf5578fb88c49010b6eb011\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623988800/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1623988800/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5a4611dda0906395852f0fbaf60f440a\";a:10:{s:4:\"hash\";s:32:\"5a4611dda0906395852f0fbaf60f440a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623988800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623988800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"17d3ce0c1ff00f2b60baeb64b8a0a4fa\";a:10:{s:4:\"hash\";s:32:\"17d3ce0c1ff00f2b60baeb64b8a0a4fa\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623988800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623988800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"93ac10e30ca52fee10b8fafcd4ef71fb\";a:10:{s:4:\"hash\";s:32:\"93ac10e30ca52fee10b8fafcd4ef71fb\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623988800/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1623988800/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0752f149d123be27c1a48d129fcd2060\";a:10:{s:4:\"hash\";s:32:\"0752f149d123be27c1a48d129fcd2060\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623988800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623988800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4260681898f414d65b8a0f91df128229\";a:10:{s:4:\"hash\";s:32:\"4260681898f414d65b8a0f91df128229\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623988800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1623988800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ce2d1595d193e9831c45bde33fe5324d\";a:10:{s:4:\"hash\";s:32:\"ce2d1595d193e9831c45bde33fe5324d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623988800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623988800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f5c3d4ce05a33545f3f9c3ea97ed824c\";a:10:{s:4:\"hash\";s:32:\"f5c3d4ce05a33545f3f9c3ea97ed824c\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623988800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1623988800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"00311efcb274063dbd733bd87b2f8184\";a:10:{s:4:\"hash\";s:32:\"00311efcb274063dbd733bd87b2f8184\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623988800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623988800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a9e25920bd093cda20f46c163e6361cc\";a:10:{s:4:\"hash\";s:32:\"a9e25920bd093cda20f46c163e6361cc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623988800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623988800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5f042acba2c143a26f1226b69e475eb0\";a:10:{s:4:\"hash\";s:32:\"5f042acba2c143a26f1226b69e475eb0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1623988800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1623988800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"df2bc7c0bbbd5aff43dd1c8f0446d506\";a:10:{s:4:\"hash\";s:32:\"df2bc7c0bbbd5aff43dd1c8f0446d506\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624075200/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1624075200/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"45c004bc55c1719464543a69f59569f0\";a:10:{s:4:\"hash\";s:32:\"45c004bc55c1719464543a69f59569f0\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624075200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1624075200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b88b6a72f3dcbdbc3ce3a609818e3379\";a:10:{s:4:\"hash\";s:32:\"b88b6a72f3dcbdbc3ce3a609818e3379\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624075200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1624075200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"729761eef6463c5a5e009cdd923b44ee\";a:10:{s:4:\"hash\";s:32:\"729761eef6463c5a5e009cdd923b44ee\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624075200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1624075200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"14c96d5375f2e26cc3d1a1d492a36197\";a:10:{s:4:\"hash\";s:32:\"14c96d5375f2e26cc3d1a1d492a36197\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624075200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1624075200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9c867a6b56a85cd5d6f4102d73d2b117\";a:10:{s:4:\"hash\";s:32:\"9c867a6b56a85cd5d6f4102d73d2b117\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624075200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1624075200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"14a9ee6d2bb0830c6ed516ae52862d19\";a:10:{s:4:\"hash\";s:32:\"14a9ee6d2bb0830c6ed516ae52862d19\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624075200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1624075200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5af05e414b9887733c62982ac6cea8d7\";a:10:{s:4:\"hash\";s:32:\"5af05e414b9887733c62982ac6cea8d7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624075200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1624075200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5a88e853a1a28941c85d6de4cb06e651\";a:10:{s:4:\"hash\";s:32:\"5a88e853a1a28941c85d6de4cb06e651\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624075200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1624075200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c7fef0623214439c5e28937a12da5423\";a:10:{s:4:\"hash\";s:32:\"c7fef0623214439c5e28937a12da5423\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624075200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1624075200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2f99d0111e7f7912daf62f519c85ae5f\";a:10:{s:4:\"hash\";s:32:\"2f99d0111e7f7912daf62f519c85ae5f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624161600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1624161600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a0ea9fdfdb492a9b871e69d7a57be4f2\";a:10:{s:4:\"hash\";s:32:\"a0ea9fdfdb492a9b871e69d7a57be4f2\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624161600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1624161600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b707334d2a4ae753bb6f3be8be9750e9\";a:10:{s:4:\"hash\";s:32:\"b707334d2a4ae753bb6f3be8be9750e9\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624161600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1624161600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"356aa55bba82197dfec3d07efa01af52\";a:10:{s:4:\"hash\";s:32:\"356aa55bba82197dfec3d07efa01af52\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624334400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1624334400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e901b3070933bfd6aa4f89187cb13d3d\";a:10:{s:4:\"hash\";s:32:\"e901b3070933bfd6aa4f89187cb13d3d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624420800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1624420800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cdbc502395703aa67e0e413b2f358a0c\";a:10:{s:4:\"hash\";s:32:\"cdbc502395703aa67e0e413b2f358a0c\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624507200/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1624507200/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d257bd5f44086bb70ccc762090edfdc2\";a:10:{s:4:\"hash\";s:32:\"d257bd5f44086bb70ccc762090edfdc2\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624507200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1624507200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cd5d99eff3bcdb39a7e59da21e8ac53b\";a:10:{s:4:\"hash\";s:32:\"cd5d99eff3bcdb39a7e59da21e8ac53b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624507200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1624507200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"95da20bf00260bc78bfe2eeb3e0dcdbe\";a:10:{s:4:\"hash\";s:32:\"95da20bf00260bc78bfe2eeb3e0dcdbe\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624507200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1624507200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c84c4235d2b976baf19276dec9126f1c\";a:10:{s:4:\"hash\";s:32:\"c84c4235d2b976baf19276dec9126f1c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624507200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1624507200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0ccf791473f0817ef16a0193c6b19a5f\";a:10:{s:4:\"hash\";s:32:\"0ccf791473f0817ef16a0193c6b19a5f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624593600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1624593600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1ecfef58347421b8ec1ad4e9f2326bc5\";a:10:{s:4:\"hash\";s:32:\"1ecfef58347421b8ec1ad4e9f2326bc5\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1624939200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1624939200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"99ba9e865ac4df9353b9ffd31ea547f4\";a:10:{s:4:\"hash\";s:32:\"99ba9e865ac4df9353b9ffd31ea547f4\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1625112000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1625112000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f0e0768eb302f4172be32a12c06da7d7\";a:10:{s:4:\"hash\";s:32:\"f0e0768eb302f4172be32a12c06da7d7\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1625112000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1625112000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2da86cb82a5188b6c55cd52d854e76bb\";a:10:{s:4:\"hash\";s:32:\"2da86cb82a5188b6c55cd52d854e76bb\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1625112000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1625112000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b802467a49704f67b7bbb577c0ee4acc\";a:10:{s:4:\"hash\";s:32:\"b802467a49704f67b7bbb577c0ee4acc\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626235200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626235200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2f24de056ce58710f2b44d70edfa9d53\";a:10:{s:4:\"hash\";s:32:\"2f24de056ce58710f2b44d70edfa9d53\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626235200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626235200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7d46a9fa98430a4d0015e58d7edc6174\";a:10:{s:4:\"hash\";s:32:\"7d46a9fa98430a4d0015e58d7edc6174\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626235200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626235200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1665883039a57d85f04d57eaa76d4982\";a:10:{s:4:\"hash\";s:32:\"1665883039a57d85f04d57eaa76d4982\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626235200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1626235200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f134d964f677f41f62c4958f5452ac9d\";a:10:{s:4:\"hash\";s:32:\"f134d964f677f41f62c4958f5452ac9d\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626321600/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1626321600/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"32e4c9743fe4614554ff461a35e8d396\";a:10:{s:4:\"hash\";s:32:\"32e4c9743fe4614554ff461a35e8d396\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626321600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626321600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e059a72ae83e0430a39c7d76e60f8d17\";a:10:{s:4:\"hash\";s:32:\"e059a72ae83e0430a39c7d76e60f8d17\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626321600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626321600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"38a9f3a926afde9158a043d2abbae72b\";a:10:{s:4:\"hash\";s:32:\"38a9f3a926afde9158a043d2abbae72b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626321600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626321600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cf48b4009765e62ea21a4546c27298e3\";a:10:{s:4:\"hash\";s:32:\"cf48b4009765e62ea21a4546c27298e3\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626321600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626321600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6da0688e4f95e8d4169c2cf22d8fad54\";a:10:{s:4:\"hash\";s:32:\"6da0688e4f95e8d4169c2cf22d8fad54\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626321600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626321600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"369072b2779c99a3f2939712d2b33e65\";a:10:{s:4:\"hash\";s:32:\"369072b2779c99a3f2939712d2b33e65\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626321600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626321600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0396c64e1987b7da34ff01a2da24dd8f\";a:10:{s:4:\"hash\";s:32:\"0396c64e1987b7da34ff01a2da24dd8f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626321600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1626321600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5de24d76f24efa00bb1d6ee9edd573ff\";a:10:{s:4:\"hash\";s:32:\"5de24d76f24efa00bb1d6ee9edd573ff\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626321600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626321600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4e12218fd5e066beb2f8ae13a4ce3b3e\";a:10:{s:4:\"hash\";s:32:\"4e12218fd5e066beb2f8ae13a4ce3b3e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626321600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626321600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1764fd046c0a066f58ef5186c3564498\";a:10:{s:4:\"hash\";s:32:\"1764fd046c0a066f58ef5186c3564498\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626321600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626321600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fcede760611495e0ccc4259e42ef8005\";a:10:{s:4:\"hash\";s:32:\"fcede760611495e0ccc4259e42ef8005\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626408000/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1626408000/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ee25041dab54e867e3b8e44f7fc2c984\";a:10:{s:4:\"hash\";s:32:\"ee25041dab54e867e3b8e44f7fc2c984\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626408000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626408000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1b8fdabfd1d4f2b9aacbf9cfd002f503\";a:10:{s:4:\"hash\";s:32:\"1b8fdabfd1d4f2b9aacbf9cfd002f503\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626408000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626408000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3748865c97400f96fb7490bc65023b1e\";a:10:{s:4:\"hash\";s:32:\"3748865c97400f96fb7490bc65023b1e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626408000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626408000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b937044256ee92c6deb65a91c2c58a03\";a:10:{s:4:\"hash\";s:32:\"b937044256ee92c6deb65a91c2c58a03\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626408000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626408000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"237f7e639157d1974f74dc4779597ad4\";a:10:{s:4:\"hash\";s:32:\"237f7e639157d1974f74dc4779597ad4\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626408000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1626408000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9304c30a8bb74fed61dac40e1a6e7e25\";a:10:{s:4:\"hash\";s:32:\"9304c30a8bb74fed61dac40e1a6e7e25\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626494400/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626494400/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4e02e9f0ac80616be3bd68bb0c4e8c04\";a:10:{s:4:\"hash\";s:32:\"4e02e9f0ac80616be3bd68bb0c4e8c04\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626494400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626494400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"96a4b71c5ec6faab595e53355b79211b\";a:10:{s:4:\"hash\";s:32:\"96a4b71c5ec6faab595e53355b79211b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626494400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626494400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b8c730faf9775fec5848b92fd6631e02\";a:10:{s:4:\"hash\";s:32:\"b8c730faf9775fec5848b92fd6631e02\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626494400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626494400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7dd23ea99908849405658a5f37dc74d3\";a:10:{s:4:\"hash\";s:32:\"7dd23ea99908849405658a5f37dc74d3\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626494400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626494400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f516da18ae25914472da1f5c400601b6\";a:10:{s:4:\"hash\";s:32:\"f516da18ae25914472da1f5c400601b6\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626494400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626494400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1f20b5d5d35379069848d115d33d332f\";a:10:{s:4:\"hash\";s:32:\"1f20b5d5d35379069848d115d33d332f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626494400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626494400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f642263e2a268b8618145cb807d06559\";a:10:{s:4:\"hash\";s:32:\"f642263e2a268b8618145cb807d06559\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626494400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1626494400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dd29c01457c6c7dc000ad5c3377b6ed1\";a:10:{s:4:\"hash\";s:32:\"dd29c01457c6c7dc000ad5c3377b6ed1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626494400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626494400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ffeaa20196eedf96221de384b3545229\";a:10:{s:4:\"hash\";s:32:\"ffeaa20196eedf96221de384b3545229\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626494400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626494400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b8b42f767a777c24b1969ed419d03000\";a:10:{s:4:\"hash\";s:32:\"b8b42f767a777c24b1969ed419d03000\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626494400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626494400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aea849c6832f2d03bb7ee4f3f7f2c657\";a:10:{s:4:\"hash\";s:32:\"aea849c6832f2d03bb7ee4f3f7f2c657\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626580800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626580800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9d1f081c5a7196d80bbc3ef2c7dbee78\";a:10:{s:4:\"hash\";s:32:\"9d1f081c5a7196d80bbc3ef2c7dbee78\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626580800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626580800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f50993bd43924e5f008fd3becb917519\";a:10:{s:4:\"hash\";s:32:\"f50993bd43924e5f008fd3becb917519\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626580800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626580800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d670aa318e2a8e93ccd58b407c73c7f5\";a:10:{s:4:\"hash\";s:32:\"d670aa318e2a8e93ccd58b407c73c7f5\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626580800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626580800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f8e1ae547eea0b0b2d0efb74ac0dd306\";a:10:{s:4:\"hash\";s:32:\"f8e1ae547eea0b0b2d0efb74ac0dd306\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626580800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626580800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1f4f4c87f4fc213454835dc1387f6df8\";a:10:{s:4:\"hash\";s:32:\"1f4f4c87f4fc213454835dc1387f6df8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626580800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626580800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"603d32694f03bdd089b80aac52fd8792\";a:10:{s:4:\"hash\";s:32:\"603d32694f03bdd089b80aac52fd8792\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626580800/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1626580800/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fe69fc5bd3ec71c046a30a1db861f705\";a:10:{s:4:\"hash\";s:32:\"fe69fc5bd3ec71c046a30a1db861f705\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626580800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626580800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f2e10a15ac1ba5f21b4fc252300695e5\";a:10:{s:4:\"hash\";s:32:\"f2e10a15ac1ba5f21b4fc252300695e5\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626580800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626580800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0ce81b22d76a884c59b565f2bb40dacd\";a:10:{s:4:\"hash\";s:32:\"0ce81b22d76a884c59b565f2bb40dacd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626580800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626580800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"725f72ec93ca65b0b25d701b6235a9aa\";a:10:{s:4:\"hash\";s:32:\"725f72ec93ca65b0b25d701b6235a9aa\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626580800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1626580800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2b3ca23cebf992e3f235198d531c8316\";a:10:{s:4:\"hash\";s:32:\"2b3ca23cebf992e3f235198d531c8316\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626580800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626580800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"00b60669b6f3c01903ab28db6a4f9101\";a:10:{s:4:\"hash\";s:32:\"00b60669b6f3c01903ab28db6a4f9101\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626580800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626580800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cf76d8981a317298a49cc6d9d0a1f604\";a:10:{s:4:\"hash\";s:32:\"cf76d8981a317298a49cc6d9d0a1f604\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626580800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626580800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aab46fb3f431480c7db0a9bb71fb51e5\";a:10:{s:4:\"hash\";s:32:\"aab46fb3f431480c7db0a9bb71fb51e5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626667200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626667200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"117f5a26d19d6d708eb750b6eea32829\";a:10:{s:4:\"hash\";s:32:\"117f5a26d19d6d708eb750b6eea32829\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626667200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626667200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fc2561b3f7d31689db6bf3838f78848b\";a:10:{s:4:\"hash\";s:32:\"fc2561b3f7d31689db6bf3838f78848b\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626667200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626667200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ac549179cb18d2d5e01ce59b0054f418\";a:10:{s:4:\"hash\";s:32:\"ac549179cb18d2d5e01ce59b0054f418\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626667200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626667200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"82db1d5ec3c5a208cdfbacc1054a1798\";a:10:{s:4:\"hash\";s:32:\"82db1d5ec3c5a208cdfbacc1054a1798\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626667200/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1626667200/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b55ab208140638bc37063333d7238043\";a:10:{s:4:\"hash\";s:32:\"b55ab208140638bc37063333d7238043\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626667200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626667200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"38e63dde8ecc48b82f1f580d7168926a\";a:10:{s:4:\"hash\";s:32:\"38e63dde8ecc48b82f1f580d7168926a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626667200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626667200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c9bceceda37ca36e90d15fcd10281c6f\";a:10:{s:4:\"hash\";s:32:\"c9bceceda37ca36e90d15fcd10281c6f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626667200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626667200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6668a870337207ea7516d9c2c255dd08\";a:10:{s:4:\"hash\";s:32:\"6668a870337207ea7516d9c2c255dd08\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626667200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1626667200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"67d45e009d8ccac2e7a9a82e3ba75b8b\";a:10:{s:4:\"hash\";s:32:\"67d45e009d8ccac2e7a9a82e3ba75b8b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626667200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626667200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3f223763e0fe85072b70024f25452b30\";a:10:{s:4:\"hash\";s:32:\"3f223763e0fe85072b70024f25452b30\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626667200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626667200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"94db41f60e0ca29e30979227354e823c\";a:10:{s:4:\"hash\";s:32:\"94db41f60e0ca29e30979227354e823c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626667200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626667200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"46b3e457dbb4a8a1d629496b353735d7\";a:10:{s:4:\"hash\";s:32:\"46b3e457dbb4a8a1d629496b353735d7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626753600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626753600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cdff903d6d26eb52a4ec9fb2b88dde60\";a:10:{s:4:\"hash\";s:32:\"cdff903d6d26eb52a4ec9fb2b88dde60\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626753600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1626753600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"69f0a2c63bb64013c01e8368a01c9fee\";a:10:{s:4:\"hash\";s:32:\"69f0a2c63bb64013c01e8368a01c9fee\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626753600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626753600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c25dcd4d8124d85d8e973c3c9bf60426\";a:10:{s:4:\"hash\";s:32:\"c25dcd4d8124d85d8e973c3c9bf60426\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626753600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1626753600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"492d373e3856089e99ebf3977416549b\";a:10:{s:4:\"hash\";s:32:\"492d373e3856089e99ebf3977416549b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626753600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626753600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"192ccd5b438870dabbec4ab60be1da16\";a:10:{s:4:\"hash\";s:32:\"192ccd5b438870dabbec4ab60be1da16\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626753600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626753600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"22bae3712453ae04bdc744f1c5b22195\";a:10:{s:4:\"hash\";s:32:\"22bae3712453ae04bdc744f1c5b22195\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626753600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1626753600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"933df7d89824ae664cdf75b6a6a48475\";a:10:{s:4:\"hash\";s:32:\"933df7d89824ae664cdf75b6a6a48475\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1626840000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1626840000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"482c47bc705284acad47241dcd9fe674\";a:10:{s:4:\"hash\";s:32:\"482c47bc705284acad47241dcd9fe674\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627012800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627012800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f81a4343b50cba4e471e07026200fe29\";a:10:{s:4:\"hash\";s:32:\"f81a4343b50cba4e471e07026200fe29\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627012800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627012800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ca5223ec20003a7285426154f1d1afed\";a:10:{s:4:\"hash\";s:32:\"ca5223ec20003a7285426154f1d1afed\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627012800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1627012800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"79ca0405cc8e2ee64532767e8c0454b8\";a:10:{s:4:\"hash\";s:32:\"79ca0405cc8e2ee64532767e8c0454b8\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627099200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1627099200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a40b6e4c4ae98307e767378c63af015c\";a:10:{s:4:\"hash\";s:32:\"a40b6e4c4ae98307e767378c63af015c\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627099200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1627099200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"25c3ff3de2a53767283b608a057f0e63\";a:10:{s:4:\"hash\";s:32:\"25c3ff3de2a53767283b608a057f0e63\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627099200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627099200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"afd060a03bfe1350b7be4ccf338f0106\";a:10:{s:4:\"hash\";s:32:\"afd060a03bfe1350b7be4ccf338f0106\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627099200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1627099200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"76acbb6c0c3ab80dad04cfb9987487ee\";a:10:{s:4:\"hash\";s:32:\"76acbb6c0c3ab80dad04cfb9987487ee\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627099200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1627099200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6cb98ffb04912b97bd70999802cc0617\";a:10:{s:4:\"hash\";s:32:\"6cb98ffb04912b97bd70999802cc0617\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627099200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627099200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8f628402df22a33a91a5b135b172ed10\";a:10:{s:4:\"hash\";s:32:\"8f628402df22a33a91a5b135b172ed10\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627099200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1627099200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a179543b6780dd77a435b09c58d4a015\";a:10:{s:4:\"hash\";s:32:\"a179543b6780dd77a435b09c58d4a015\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627099200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627099200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"18c4de312ec4346795ec9f6e020ea86c\";a:10:{s:4:\"hash\";s:32:\"18c4de312ec4346795ec9f6e020ea86c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627099200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627099200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e9d3cc6f9948ef85feef19910017cc0f\";a:10:{s:4:\"hash\";s:32:\"e9d3cc6f9948ef85feef19910017cc0f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627099200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627099200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6f7b8609e38ce4f6e189875b34aa0475\";a:10:{s:4:\"hash\";s:32:\"6f7b8609e38ce4f6e189875b34aa0475\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627185600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627185600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"633c3174a961070ca547e076284de348\";a:10:{s:4:\"hash\";s:32:\"633c3174a961070ca547e076284de348\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627185600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627185600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c48b7d047d51aa908a44ddfec8b10291\";a:10:{s:4:\"hash\";s:32:\"c48b7d047d51aa908a44ddfec8b10291\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627185600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1627185600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"93596f7c7902a2928e4af97b0f62ec82\";a:10:{s:4:\"hash\";s:32:\"93596f7c7902a2928e4af97b0f62ec82\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627185600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627185600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"de0dd47e46782c5bb7a27916058a2787\";a:10:{s:4:\"hash\";s:32:\"de0dd47e46782c5bb7a27916058a2787\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627185600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627185600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2d5cb725582418965177df4b8f75dfab\";a:10:{s:4:\"hash\";s:32:\"2d5cb725582418965177df4b8f75dfab\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627185600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627185600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fd3ff5358e21934278fd0d2db9bbb44d\";a:10:{s:4:\"hash\";s:32:\"fd3ff5358e21934278fd0d2db9bbb44d\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627272000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1627272000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"43694158ff571c0fa894b6d827a54e9a\";a:10:{s:4:\"hash\";s:32:\"43694158ff571c0fa894b6d827a54e9a\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627272000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1627272000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"44ccd6e5c6a8ca3da944a200cf839cdd\";a:10:{s:4:\"hash\";s:32:\"44ccd6e5c6a8ca3da944a200cf839cdd\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627272000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1627272000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"63e384cf965acbf8bbd8be1c09ac635f\";a:10:{s:4:\"hash\";s:32:\"63e384cf965acbf8bbd8be1c09ac635f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627272000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627272000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"598ea11531a6a1497057fe821b995969\";a:10:{s:4:\"hash\";s:32:\"598ea11531a6a1497057fe821b995969\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627272000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627272000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"22d84ece73b8c92c9eee6f6688f4d57e\";a:10:{s:4:\"hash\";s:32:\"22d84ece73b8c92c9eee6f6688f4d57e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627272000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1627272000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"15e012dd8f8f5be800eec400aba8e7bf\";a:10:{s:4:\"hash\";s:32:\"15e012dd8f8f5be800eec400aba8e7bf\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627272000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627272000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2493dfa66f0157091fdb4dbeaaf6bfa9\";a:10:{s:4:\"hash\";s:32:\"2493dfa66f0157091fdb4dbeaaf6bfa9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627272000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627272000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"23bd8d89501e6922b2d3066fd4fc3012\";a:10:{s:4:\"hash\";s:32:\"23bd8d89501e6922b2d3066fd4fc3012\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627272000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627272000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"007a2e6ee9f410ccee46f9118ac51363\";a:10:{s:4:\"hash\";s:32:\"007a2e6ee9f410ccee46f9118ac51363\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627358400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627358400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff94828d2f7142b0aa9e956e8226c86d\";a:10:{s:4:\"hash\";s:32:\"ff94828d2f7142b0aa9e956e8226c86d\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627358400/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1627358400/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"17648c7af460dbf8e6a74793817d91d0\";a:10:{s:4:\"hash\";s:32:\"17648c7af460dbf8e6a74793817d91d0\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627358400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1627358400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"66efd387c0d8522acd77f7c9e0832260\";a:10:{s:4:\"hash\";s:32:\"66efd387c0d8522acd77f7c9e0832260\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627358400/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1627358400/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8f3cea28a8f0c66026ed8abd5daeef77\";a:10:{s:4:\"hash\";s:32:\"8f3cea28a8f0c66026ed8abd5daeef77\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627358400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1627358400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0951d1b2b5c7ba784110987c0b156992\";a:10:{s:4:\"hash\";s:32:\"0951d1b2b5c7ba784110987c0b156992\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627358400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627358400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f640af458f21e2296f99a67226a5f9b3\";a:10:{s:4:\"hash\";s:32:\"f640af458f21e2296f99a67226a5f9b3\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627358400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1627358400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c607047bc08073a2206f7892f74cda3c\";a:10:{s:4:\"hash\";s:32:\"c607047bc08073a2206f7892f74cda3c\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627358400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1627358400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"17282899b7b1f2e24ea5c2c004765909\";a:10:{s:4:\"hash\";s:32:\"17282899b7b1f2e24ea5c2c004765909\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627358400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627358400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e1dc3e2ddc9dcbce11d708503643b49f\";a:10:{s:4:\"hash\";s:32:\"e1dc3e2ddc9dcbce11d708503643b49f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627358400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1627358400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"421e5731c46b5e5c90ff71b41d8fb167\";a:10:{s:4:\"hash\";s:32:\"421e5731c46b5e5c90ff71b41d8fb167\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627358400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627358400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b3a218d9d28e3d413bbef6ad9cda4315\";a:10:{s:4:\"hash\";s:32:\"b3a218d9d28e3d413bbef6ad9cda4315\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627358400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627358400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"583b07d58da49ac7f2d86089e229d679\";a:10:{s:4:\"hash\";s:32:\"583b07d58da49ac7f2d86089e229d679\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627358400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627358400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f813764a0b587f159d6420dcdf101b3b\";a:10:{s:4:\"hash\";s:32:\"f813764a0b587f159d6420dcdf101b3b\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627444800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1627444800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eefeacd513dae7c9e50a664690b3700c\";a:10:{s:4:\"hash\";s:32:\"eefeacd513dae7c9e50a664690b3700c\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627444800/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1627444800/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0b83e2e23aa2e061de0cc7363dfcd8d9\";a:10:{s:4:\"hash\";s:32:\"0b83e2e23aa2e061de0cc7363dfcd8d9\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627444800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1627444800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4a8c5057c71d82bcd6fa3d0e02e1843e\";a:10:{s:4:\"hash\";s:32:\"4a8c5057c71d82bcd6fa3d0e02e1843e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627444800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627444800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"97647dea6d24cd2840a44f4d9d6af5ed\";a:10:{s:4:\"hash\";s:32:\"97647dea6d24cd2840a44f4d9d6af5ed\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627444800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627444800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c4ea7698ce79b6701b5b506d0d1712aa\";a:10:{s:4:\"hash\";s:32:\"c4ea7698ce79b6701b5b506d0d1712aa\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627444800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1627444800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"87a73011218f6bb14b4bc601a2a51add\";a:10:{s:4:\"hash\";s:32:\"87a73011218f6bb14b4bc601a2a51add\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627617600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1627617600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9999ade8a09520ff8cd9794725fcbb8c\";a:10:{s:4:\"hash\";s:32:\"9999ade8a09520ff8cd9794725fcbb8c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627617600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627617600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d4319098d83cf6576fa4efc1ecf749a4\";a:10:{s:4:\"hash\";s:32:\"d4319098d83cf6576fa4efc1ecf749a4\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627617600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1627617600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5a06a537c9a0740c29a1567ce3267b87\";a:10:{s:4:\"hash\";s:32:\"5a06a537c9a0740c29a1567ce3267b87\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627704000/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1627704000/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e57249e9865aef44e2a38f3b1e20a732\";a:10:{s:4:\"hash\";s:32:\"e57249e9865aef44e2a38f3b1e20a732\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627704000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1627704000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f6ee476db554da3badfe8ce9730e8ac3\";a:10:{s:4:\"hash\";s:32:\"f6ee476db554da3badfe8ce9730e8ac3\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627704000/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1627704000/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5f7e60e590c75fba99152fe688ff4263\";a:10:{s:4:\"hash\";s:32:\"5f7e60e590c75fba99152fe688ff4263\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627704000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627704000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5c067a02ede60d748a95ea32efc870ab\";a:10:{s:4:\"hash\";s:32:\"5c067a02ede60d748a95ea32efc870ab\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627704000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627704000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6d0df724a8f951ea04e4c903df334070\";a:10:{s:4:\"hash\";s:32:\"6d0df724a8f951ea04e4c903df334070\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627704000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1627704000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e27cb2b3aef721f1a1243abaed9786e1\";a:10:{s:4:\"hash\";s:32:\"e27cb2b3aef721f1a1243abaed9786e1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627704000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627704000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b2dc6c668a2e707eb3cac3a1cb28ab6c\";a:10:{s:4:\"hash\";s:32:\"b2dc6c668a2e707eb3cac3a1cb28ab6c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627704000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627704000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2a4e20e3cc747d8a1c67c9170e0b5d24\";a:10:{s:4:\"hash\";s:32:\"2a4e20e3cc747d8a1c67c9170e0b5d24\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627704000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627704000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"587116d8c99f8243eff5f107d5a39d17\";a:10:{s:4:\"hash\";s:32:\"587116d8c99f8243eff5f107d5a39d17\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627790400/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1627790400/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a6139a98ae9d3d2bad7a45c37387a33\";a:10:{s:4:\"hash\";s:32:\"8a6139a98ae9d3d2bad7a45c37387a33\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627790400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1627790400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7a0b9323d81e8ca5ea6f628bb617857e\";a:10:{s:4:\"hash\";s:32:\"7a0b9323d81e8ca5ea6f628bb617857e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627790400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627790400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"074273a6e6bdbc29e8e0c55ba280830c\";a:10:{s:4:\"hash\";s:32:\"074273a6e6bdbc29e8e0c55ba280830c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627790400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627790400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e73374209aed33f3c22243f98ec68ff6\";a:10:{s:4:\"hash\";s:32:\"e73374209aed33f3c22243f98ec68ff6\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627790400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1627790400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e68cee7923a6ff42556c5635ae3051cc\";a:10:{s:4:\"hash\";s:32:\"e68cee7923a6ff42556c5635ae3051cc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627790400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627790400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"288543d64aada8c3e36d1402dea66108\";a:10:{s:4:\"hash\";s:32:\"288543d64aada8c3e36d1402dea66108\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627790400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627790400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c937ac3d971e3369f4dd6ed507de443f\";a:10:{s:4:\"hash\";s:32:\"c937ac3d971e3369f4dd6ed507de443f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627790400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627790400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5b23ec674aa2ebc54784bd61fdce3035\";a:10:{s:4:\"hash\";s:32:\"5b23ec674aa2ebc54784bd61fdce3035\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627876800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627876800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a3efeb475513422031e018d033e32cdb\";a:10:{s:4:\"hash\";s:32:\"a3efeb475513422031e018d033e32cdb\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627876800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1627876800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef78f7459ab905d61b8ffbc01bb873ae\";a:10:{s:4:\"hash\";s:32:\"ef78f7459ab905d61b8ffbc01bb873ae\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627876800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627876800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6e4aa10067eac0791a062a759790ef70\";a:10:{s:4:\"hash\";s:32:\"6e4aa10067eac0791a062a759790ef70\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627876800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627876800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8c25b8af2acdd5d4f0b068826125521d\";a:10:{s:4:\"hash\";s:32:\"8c25b8af2acdd5d4f0b068826125521d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627876800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1627876800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2b976a4be3db4981c260246f45ab62d0\";a:10:{s:4:\"hash\";s:32:\"2b976a4be3db4981c260246f45ab62d0\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1627963200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1627963200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f6ec6e87e7e1fdf9ad1e366a24ff472\";a:10:{s:4:\"hash\";s:32:\"7f6ec6e87e7e1fdf9ad1e366a24ff472\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1635739200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1635739200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2d839d148494605916753197ed14b1f4\";a:10:{s:4:\"hash\";s:32:\"2d839d148494605916753197ed14b1f4\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1635825600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1635825600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4dfb26a50ed4fe114ff980b9bf4f02da\";a:10:{s:4:\"hash\";s:32:\"4dfb26a50ed4fe114ff980b9bf4f02da\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1635912000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1635912000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e6405db296f738cd9667a60b1b7d94c5\";a:10:{s:4:\"hash\";s:32:\"e6405db296f738cd9667a60b1b7d94c5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1635912000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1635912000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2dcc6a7f33686033577a2949c4e4a762\";a:10:{s:4:\"hash\";s:32:\"2dcc6a7f33686033577a2949c4e4a762\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1635912000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1635912000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"53bd7236e21450c6ea3492ba44918f55\";a:10:{s:4:\"hash\";s:32:\"53bd7236e21450c6ea3492ba44918f55\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1635912000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1635912000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a8cfae2d6ba28a1d6e4dae82e4658a07\";a:10:{s:4:\"hash\";s:32:\"a8cfae2d6ba28a1d6e4dae82e4658a07\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1635998400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1635998400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4bab5b4510ef7868d867d43a8188f2ab\";a:10:{s:4:\"hash\";s:32:\"4bab5b4510ef7868d867d43a8188f2ab\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1635998400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1635998400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b333d41963bbcfc3a92ccee27ec3a2d7\";a:10:{s:4:\"hash\";s:32:\"b333d41963bbcfc3a92ccee27ec3a2d7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1635998400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1635998400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"523797465b55b8247b98d2f7719b792e\";a:10:{s:4:\"hash\";s:32:\"523797465b55b8247b98d2f7719b792e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1635998400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1635998400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"989aecd072be7afcfd8cd337c394e404\";a:10:{s:4:\"hash\";s:32:\"989aecd072be7afcfd8cd337c394e404\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636084800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1636084800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fc1060a8af7f1dd9f5cdeaa781d72f47\";a:10:{s:4:\"hash\";s:32:\"fc1060a8af7f1dd9f5cdeaa781d72f47\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636171200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636171200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5b2724d939e2e50a14cfd5d3f8956014\";a:10:{s:4:\"hash\";s:32:\"5b2724d939e2e50a14cfd5d3f8956014\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636171200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1636171200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b94e4157902ff501fb555c7ef4d877ae\";a:10:{s:4:\"hash\";s:32:\"b94e4157902ff501fb555c7ef4d877ae\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636257600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1636257600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fa6a435018b13085434156cad966e396\";a:10:{s:4:\"hash\";s:32:\"fa6a435018b13085434156cad966e396\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636257600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1636257600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0e0e9fff96c494f8d9f54dd53a0cdb2c\";a:10:{s:4:\"hash\";s:32:\"0e0e9fff96c494f8d9f54dd53a0cdb2c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636257600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636257600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1d3dc06605e356c0011fb7f95d8aa9f0\";a:10:{s:4:\"hash\";s:32:\"1d3dc06605e356c0011fb7f95d8aa9f0\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636257600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1636257600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"908e7c1663caa5d4556d260338a43082\";a:10:{s:4:\"hash\";s:32:\"908e7c1663caa5d4556d260338a43082\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636257600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636257600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8032fb95cdf9615cc9432a85c514ba12\";a:10:{s:4:\"hash\";s:32:\"8032fb95cdf9615cc9432a85c514ba12\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636257600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636257600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1593e8c9bbf85205f25a44f54f3deb65\";a:10:{s:4:\"hash\";s:32:\"1593e8c9bbf85205f25a44f54f3deb65\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636257600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636257600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef1fea7d852e514460176bb720c53537\";a:10:{s:4:\"hash\";s:32:\"ef1fea7d852e514460176bb720c53537\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636347600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636347600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"942c903b4d4c9015de79c214308983c6\";a:10:{s:4:\"hash\";s:32:\"942c903b4d4c9015de79c214308983c6\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636347600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1636347600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"18b850bc19ec083d43ad6251bd313ca4\";a:10:{s:4:\"hash\";s:32:\"18b850bc19ec083d43ad6251bd313ca4\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636434000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1636434000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"18d985dc21e64da502aa42d29346485f\";a:10:{s:4:\"hash\";s:32:\"18d985dc21e64da502aa42d29346485f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636520400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636520400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d5a99ce630f9ca3656f6678f29b2b73c\";a:10:{s:4:\"hash\";s:32:\"d5a99ce630f9ca3656f6678f29b2b73c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636520400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636520400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"de1e58e4d609742dcbaf9ade2ddbc9c3\";a:10:{s:4:\"hash\";s:32:\"de1e58e4d609742dcbaf9ade2ddbc9c3\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636520400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1636520400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"67ac6809c5890c8d0e5017e56f653ccb\";a:10:{s:4:\"hash\";s:32:\"67ac6809c5890c8d0e5017e56f653ccb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636520400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636520400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c457ca0d2d5a3cfd9112057ecf0ffeb5\";a:10:{s:4:\"hash\";s:32:\"c457ca0d2d5a3cfd9112057ecf0ffeb5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636520400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636520400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0580727d35d436bca8f4930e85b3d283\";a:10:{s:4:\"hash\";s:32:\"0580727d35d436bca8f4930e85b3d283\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636520400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636520400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c1ef17c432fb700508927cebe9279845\";a:10:{s:4:\"hash\";s:32:\"c1ef17c432fb700508927cebe9279845\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636606800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1636606800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0e5f146f26255f62d98f79b033214103\";a:10:{s:4:\"hash\";s:32:\"0e5f146f26255f62d98f79b033214103\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636606800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1636606800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4063fc5450d0be48c5fea14d028b891c\";a:10:{s:4:\"hash\";s:32:\"4063fc5450d0be48c5fea14d028b891c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636606800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636606800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ed5c37cbe5cbfd2ab144d060de4c6ff0\";a:10:{s:4:\"hash\";s:32:\"ed5c37cbe5cbfd2ab144d060de4c6ff0\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636606800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1636606800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"214437e64b9bda6b6f837b7935201f78\";a:10:{s:4:\"hash\";s:32:\"214437e64b9bda6b6f837b7935201f78\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636606800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1636606800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"96bee9c359356759f999e2702c3f0de8\";a:10:{s:4:\"hash\";s:32:\"96bee9c359356759f999e2702c3f0de8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636606800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636606800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e76c3e3952bd81b41374c851d0e02a53\";a:10:{s:4:\"hash\";s:32:\"e76c3e3952bd81b41374c851d0e02a53\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636606800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1636606800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1d1dacea27c87fc136761247f6770fb9\";a:10:{s:4:\"hash\";s:32:\"1d1dacea27c87fc136761247f6770fb9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636606800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636606800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0f43cfb448f6aef349545c9dd3f2f01e\";a:10:{s:4:\"hash\";s:32:\"0f43cfb448f6aef349545c9dd3f2f01e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636606800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636606800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"19ea9a61d4aaefccfbc1f4f821e94222\";a:10:{s:4:\"hash\";s:32:\"19ea9a61d4aaefccfbc1f4f821e94222\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636606800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636606800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"62d27ec0f5ab1009adde4664e77b4490\";a:10:{s:4:\"hash\";s:32:\"62d27ec0f5ab1009adde4664e77b4490\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636693200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636693200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5f95abff85cec71b3de6a9b596ed42ed\";a:10:{s:4:\"hash\";s:32:\"5f95abff85cec71b3de6a9b596ed42ed\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636693200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636693200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6536e76cd1f8853b5efd92900a070982\";a:10:{s:4:\"hash\";s:32:\"6536e76cd1f8853b5efd92900a070982\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636693200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1636693200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3cdc0e3abcafa5b2e6dd745facf444f1\";a:10:{s:4:\"hash\";s:32:\"3cdc0e3abcafa5b2e6dd745facf444f1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636693200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636693200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d1c6e426c5d2ac1e0335ab932ff7c55a\";a:10:{s:4:\"hash\";s:32:\"d1c6e426c5d2ac1e0335ab932ff7c55a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636693200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636693200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4921c76f0811ef476a24e7f2b6894c78\";a:10:{s:4:\"hash\";s:32:\"4921c76f0811ef476a24e7f2b6894c78\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636693200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1636693200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"18d974abe3ac870bfb2b2ebadb8f3221\";a:10:{s:4:\"hash\";s:32:\"18d974abe3ac870bfb2b2ebadb8f3221\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1636779600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1636779600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2ed68f81b1a344621f8dae2ef90d82e6\";a:10:{s:4:\"hash\";s:32:\"2ed68f81b1a344621f8dae2ef90d82e6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637038800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637038800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7d7dd674482414366658879556611d6a\";a:10:{s:4:\"hash\";s:32:\"7d7dd674482414366658879556611d6a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637125200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637125200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c917135e55751e87bcef124dc4bcbf0b\";a:10:{s:4:\"hash\";s:32:\"c917135e55751e87bcef124dc4bcbf0b\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637125200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637125200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3ec7646b0137d7eaf0bf77948ffa426e\";a:10:{s:4:\"hash\";s:32:\"3ec7646b0137d7eaf0bf77948ffa426e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637125200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637125200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cac213e38fd131dfa52d3f7f9dc55e8d\";a:10:{s:4:\"hash\";s:32:\"cac213e38fd131dfa52d3f7f9dc55e8d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637125200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1637125200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ceb9a02fc186bdaf4e3010b75b68483\";a:10:{s:4:\"hash\";s:32:\"8ceb9a02fc186bdaf4e3010b75b68483\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637211600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637211600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1208b4270a781b4b001ef01f7e3c8280\";a:10:{s:4:\"hash\";s:32:\"1208b4270a781b4b001ef01f7e3c8280\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637211600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637211600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5f327d0194fc96b27cc2078521a93dee\";a:10:{s:4:\"hash\";s:32:\"5f327d0194fc96b27cc2078521a93dee\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637211600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637211600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7665325341f720e003f08258ccf721f1\";a:10:{s:4:\"hash\";s:32:\"7665325341f720e003f08258ccf721f1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637211600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637211600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"049a7d107c1c1a623d226ef79476240a\";a:10:{s:4:\"hash\";s:32:\"049a7d107c1c1a623d226ef79476240a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637211600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637211600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a9dfcc4ec5a49d11d8af023182e37af8\";a:10:{s:4:\"hash\";s:32:\"a9dfcc4ec5a49d11d8af023182e37af8\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637211600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1637211600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"be862748f5ec4a6a1aeca56050624973\";a:10:{s:4:\"hash\";s:32:\"be862748f5ec4a6a1aeca56050624973\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637211600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637211600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"208d4601525695d3a1589348752631cb\";a:10:{s:4:\"hash\";s:32:\"208d4601525695d3a1589348752631cb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637211600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637211600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"984eee9bf2b64b23b94c3c55b46ae099\";a:10:{s:4:\"hash\";s:32:\"984eee9bf2b64b23b94c3c55b46ae099\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637211600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637211600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bee573b6c876fccaab73cec9ac995ca1\";a:10:{s:4:\"hash\";s:32:\"bee573b6c876fccaab73cec9ac995ca1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637298000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637298000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ece91c39365061168ee80a4dc4bcfddd\";a:10:{s:4:\"hash\";s:32:\"ece91c39365061168ee80a4dc4bcfddd\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637298000/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637298000/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2954f67264ff997978a915c82ed1a71d\";a:10:{s:4:\"hash\";s:32:\"2954f67264ff997978a915c82ed1a71d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637298000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637298000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6dc95b93bb299e3803a53c1a3b328792\";a:10:{s:4:\"hash\";s:32:\"6dc95b93bb299e3803a53c1a3b328792\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637298000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637298000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"68658889ba603c36e54a4cfa124abf8e\";a:10:{s:4:\"hash\";s:32:\"68658889ba603c36e54a4cfa124abf8e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637298000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637298000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2d7d704340f804e6638d8613ac1252df\";a:10:{s:4:\"hash\";s:32:\"2d7d704340f804e6638d8613ac1252df\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637298000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637298000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8f8267b4bcece1f5ceefd2b1a5ec49c6\";a:10:{s:4:\"hash\";s:32:\"8f8267b4bcece1f5ceefd2b1a5ec49c6\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637298000/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1637298000/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f471bc64f06ccf863b250cca07514d18\";a:10:{s:4:\"hash\";s:32:\"f471bc64f06ccf863b250cca07514d18\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637298000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637298000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c639e9a14a06decf2f2114b2e2faf3e0\";a:10:{s:4:\"hash\";s:32:\"c639e9a14a06decf2f2114b2e2faf3e0\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637298000/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637298000/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6e3d7ffa7a5e0e9957b04043ed219c01\";a:10:{s:4:\"hash\";s:32:\"6e3d7ffa7a5e0e9957b04043ed219c01\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637298000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637298000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"92c82ea26e92ea0563d269540c12b2c2\";a:10:{s:4:\"hash\";s:32:\"92c82ea26e92ea0563d269540c12b2c2\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637298000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1637298000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ab9aade565176a3ef897063e1071795\";a:10:{s:4:\"hash\";s:32:\"8ab9aade565176a3ef897063e1071795\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637298000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637298000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"48901354be90919fd37423ba1c1d96d5\";a:10:{s:4:\"hash\";s:32:\"48901354be90919fd37423ba1c1d96d5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637298000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637298000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5e3d6a73b377e47d862ded15ff227a27\";a:10:{s:4:\"hash\";s:32:\"5e3d6a73b377e47d862ded15ff227a27\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637298000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637298000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"04f41b668657ccc12a369c0d0fd74ed1\";a:10:{s:4:\"hash\";s:32:\"04f41b668657ccc12a369c0d0fd74ed1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637384400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637384400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5ea637c71fbeb857ba40ac8ec77cfeb0\";a:10:{s:4:\"hash\";s:32:\"5ea637c71fbeb857ba40ac8ec77cfeb0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637384400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637384400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a4ce0fddf2af7ade9900710c476bceb8\";a:10:{s:4:\"hash\";s:32:\"a4ce0fddf2af7ade9900710c476bceb8\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637384400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637384400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aaf8c30555429065ef4b9980bd3ad430\";a:10:{s:4:\"hash\";s:32:\"aaf8c30555429065ef4b9980bd3ad430\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637384400/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1637384400/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"af662ed92eede464e13f53f8b8511d5a\";a:10:{s:4:\"hash\";s:32:\"af662ed92eede464e13f53f8b8511d5a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637384400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637384400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"089623f65f04f7979f097d85f17086fb\";a:10:{s:4:\"hash\";s:32:\"089623f65f04f7979f097d85f17086fb\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637384400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637384400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"58fd8d57117b5888d280523145ccf1ca\";a:10:{s:4:\"hash\";s:32:\"58fd8d57117b5888d280523145ccf1ca\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637384400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1637384400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"34ddac3835eb2afa08c8c7907c990ecd\";a:10:{s:4:\"hash\";s:32:\"34ddac3835eb2afa08c8c7907c990ecd\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637384400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637384400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0b4e002f2c4f4ccb280e17c481eb049f\";a:10:{s:4:\"hash\";s:32:\"0b4e002f2c4f4ccb280e17c481eb049f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637384400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637384400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b471f6f02983cda4d6b6560294ef1d4a\";a:10:{s:4:\"hash\";s:32:\"b471f6f02983cda4d6b6560294ef1d4a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637384400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637384400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d65fb8c1a3ca1fbb5e329e4b4f6547bf\";a:10:{s:4:\"hash\";s:32:\"d65fb8c1a3ca1fbb5e329e4b4f6547bf\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637470800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637470800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"10d222e0d164c2787cff94ffab5f4b50\";a:10:{s:4:\"hash\";s:32:\"10d222e0d164c2787cff94ffab5f4b50\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637470800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637470800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ab4a90ec048b606a63c77d50bc86c46f\";a:10:{s:4:\"hash\";s:32:\"ab4a90ec048b606a63c77d50bc86c46f\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637470800/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1637470800/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9080643fd1aadaf36174fb3d1cfff490\";a:10:{s:4:\"hash\";s:32:\"9080643fd1aadaf36174fb3d1cfff490\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637470800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637470800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3ccff36163d581f741776ce060adbf54\";a:10:{s:4:\"hash\";s:32:\"3ccff36163d581f741776ce060adbf54\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637470800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637470800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d93b52787953b86ba0899883205100db\";a:10:{s:4:\"hash\";s:32:\"d93b52787953b86ba0899883205100db\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637470800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1637470800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ccf992363b4e0263cb332c3f9e0b2d8\";a:10:{s:4:\"hash\";s:32:\"8ccf992363b4e0263cb332c3f9e0b2d8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637470800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637470800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"307fdaf614f14e969a185681f598a5f4\";a:10:{s:4:\"hash\";s:32:\"307fdaf614f14e969a185681f598a5f4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637470800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637470800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8525c8ec2e91c6f8e314cda1733ee45f\";a:10:{s:4:\"hash\";s:32:\"8525c8ec2e91c6f8e314cda1733ee45f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637470800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637470800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1b30fd23193383591c2bb810811384e1\";a:10:{s:4:\"hash\";s:32:\"1b30fd23193383591c2bb810811384e1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637557200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637557200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9692c7dc43e8de14b0f921b8c8ea303b\";a:10:{s:4:\"hash\";s:32:\"9692c7dc43e8de14b0f921b8c8ea303b\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637557200/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1637557200/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2011f04b66cc1a3e940449c1bb93b4df\";a:10:{s:4:\"hash\";s:32:\"2011f04b66cc1a3e940449c1bb93b4df\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637557200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637557200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8b28455bdb972df268dfdff87e822d97\";a:10:{s:4:\"hash\";s:32:\"8b28455bdb972df268dfdff87e822d97\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637557200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637557200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef5ae644e8e56eb066f17a6f4de61343\";a:10:{s:4:\"hash\";s:32:\"ef5ae644e8e56eb066f17a6f4de61343\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637557200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637557200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dc0fb6b6d676739c9cb425f86b911fdd\";a:10:{s:4:\"hash\";s:32:\"dc0fb6b6d676739c9cb425f86b911fdd\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637557200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637557200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7563b8be1bd4a769b4af0555cc41e026\";a:10:{s:4:\"hash\";s:32:\"7563b8be1bd4a769b4af0555cc41e026\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637557200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637557200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c3b702ed17d8a3adec3423cf5398e2a6\";a:10:{s:4:\"hash\";s:32:\"c3b702ed17d8a3adec3423cf5398e2a6\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637557200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1637557200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6daded1f2fafa7b768142ecd1f85598c\";a:10:{s:4:\"hash\";s:32:\"6daded1f2fafa7b768142ecd1f85598c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637557200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637557200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d42b79cd5be2901fe080a4aeca15121e\";a:10:{s:4:\"hash\";s:32:\"d42b79cd5be2901fe080a4aeca15121e\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637557200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637557200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a3c414b077e943c23b79e3c600d76bd7\";a:10:{s:4:\"hash\";s:32:\"a3c414b077e943c23b79e3c600d76bd7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637557200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637557200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2d614fd5d8fa91d3708a557b6a321e2f\";a:10:{s:4:\"hash\";s:32:\"2d614fd5d8fa91d3708a557b6a321e2f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637643600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637643600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"faf9587aeb633e30c5ceeb0ea993ec54\";a:10:{s:4:\"hash\";s:32:\"faf9587aeb633e30c5ceeb0ea993ec54\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637643600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637643600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5893c3ae34b295a908f5f91ea4c140fd\";a:10:{s:4:\"hash\";s:32:\"5893c3ae34b295a908f5f91ea4c140fd\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637643600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1637643600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b9cf0226fa07328e6c6c79fd18f9bea2\";a:10:{s:4:\"hash\";s:32:\"b9cf0226fa07328e6c6c79fd18f9bea2\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637730000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637730000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"99ca85653864e681d57f367f72c737a9\";a:10:{s:4:\"hash\";s:32:\"99ca85653864e681d57f367f72c737a9\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637730000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637730000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9facf3a542f7cd31898ed48d476a80c3\";a:10:{s:4:\"hash\";s:32:\"9facf3a542f7cd31898ed48d476a80c3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637730000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637730000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"078fb0edc4fbcc257f8e17b0de27c5e1\";a:10:{s:4:\"hash\";s:32:\"078fb0edc4fbcc257f8e17b0de27c5e1\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637730000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1637730000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0b1751e30f9b3c06fc4d897df504d5fa\";a:10:{s:4:\"hash\";s:32:\"0b1751e30f9b3c06fc4d897df504d5fa\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637816400/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637816400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"39fc14871d2e8bdb8ce62d7d230a3186\";a:10:{s:4:\"hash\";s:32:\"39fc14871d2e8bdb8ce62d7d230a3186\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637816400/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1637816400/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"359c10ec5a8e415c934aebc8e79b0224\";a:10:{s:4:\"hash\";s:32:\"359c10ec5a8e415c934aebc8e79b0224\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637816400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637816400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b10b3b46c0fe78b69b17e109a88c57d6\";a:10:{s:4:\"hash\";s:32:\"b10b3b46c0fe78b69b17e109a88c57d6\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637816400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637816400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9a751c0908b95fcabbf3791bed7735f1\";a:10:{s:4:\"hash\";s:32:\"9a751c0908b95fcabbf3791bed7735f1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637816400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637816400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6084f581fe5a46baf7aea0349afa91e4\";a:10:{s:4:\"hash\";s:32:\"6084f581fe5a46baf7aea0349afa91e4\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637816400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1637816400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5e872e734c75be41f69ed950984ae1f8\";a:10:{s:4:\"hash\";s:32:\"5e872e734c75be41f69ed950984ae1f8\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637816400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637816400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1f682a6bc1640f2ab8bb03b744bab1e7\";a:10:{s:4:\"hash\";s:32:\"1f682a6bc1640f2ab8bb03b744bab1e7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637816400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637816400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8396bff1fa59a96ca671a9b9de2dab1c\";a:10:{s:4:\"hash\";s:32:\"8396bff1fa59a96ca671a9b9de2dab1c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637816400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637816400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bc4e291dc0e43a6acab65cde794dc4a5\";a:10:{s:4:\"hash\";s:32:\"bc4e291dc0e43a6acab65cde794dc4a5\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637902800/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637902800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"70e4f375531f9462887775322535af11\";a:10:{s:4:\"hash\";s:32:\"70e4f375531f9462887775322535af11\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637902800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637902800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7ded2b622b243c824ef7324cfae3cbf6\";a:10:{s:4:\"hash\";s:32:\"7ded2b622b243c824ef7324cfae3cbf6\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637902800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637902800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"72bdb88e5f08de17038c73081e725a4e\";a:10:{s:4:\"hash\";s:32:\"72bdb88e5f08de17038c73081e725a4e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637902800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637902800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"502cf8edc8c4ae3022fc736067fb8a22\";a:10:{s:4:\"hash\";s:32:\"502cf8edc8c4ae3022fc736067fb8a22\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637902800/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637902800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e3f892c2a5ca902644f6b7a22ec71ee8\";a:10:{s:4:\"hash\";s:32:\"e3f892c2a5ca902644f6b7a22ec71ee8\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637902800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1637902800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"59597ecfbe9b081acf62260289ed7972\";a:10:{s:4:\"hash\";s:32:\"59597ecfbe9b081acf62260289ed7972\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637902800/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637902800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3576e186e104944a412178b41ba2053a\";a:10:{s:4:\"hash\";s:32:\"3576e186e104944a412178b41ba2053a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637902800/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637902800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"db8d635c51f32679b4226488ba42d2a3\";a:10:{s:4:\"hash\";s:32:\"db8d635c51f32679b4226488ba42d2a3\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637902800/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637902800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e897682491ee0bc7e9372851e5c9087f\";a:10:{s:4:\"hash\";s:32:\"e897682491ee0bc7e9372851e5c9087f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637989200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637989200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"52e4c03f30cf2d3136b546dfb6c252cc\";a:10:{s:4:\"hash\";s:32:\"52e4c03f30cf2d3136b546dfb6c252cc\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637989200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637989200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fd8448f38d53352c3fe35df6cbd34d5c\";a:10:{s:4:\"hash\";s:32:\"fd8448f38d53352c3fe35df6cbd34d5c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637989200/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637989200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cfb0d5425950ca6aeece91205e131cab\";a:10:{s:4:\"hash\";s:32:\"cfb0d5425950ca6aeece91205e131cab\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637989200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637989200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b2b6f7c8e1ce5ad35fd3e2b6ed669a53\";a:10:{s:4:\"hash\";s:32:\"b2b6f7c8e1ce5ad35fd3e2b6ed669a53\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637989200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637989200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a57d5df3f74309cde2a3ed13f6987225\";a:10:{s:4:\"hash\";s:32:\"a57d5df3f74309cde2a3ed13f6987225\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637989200/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/exact_date~1637989200/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eff05c057adda0834f526454b1b34a01\";a:10:{s:4:\"hash\";s:32:\"eff05c057adda0834f526454b1b34a01\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637989200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1637989200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5c3120213476aafa6c359092c773227f\";a:10:{s:4:\"hash\";s:32:\"5c3120213476aafa6c359092c773227f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637989200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637989200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"701ca0a8f7fc486efc9cae80d7bc57be\";a:10:{s:4:\"hash\";s:32:\"701ca0a8f7fc486efc9cae80d7bc57be\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637989200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1637989200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"053300d2c6614f8fbe3bd95e0bd5f7ee\";a:10:{s:4:\"hash\";s:32:\"053300d2c6614f8fbe3bd95e0bd5f7ee\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637989200/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637989200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"064e4775b6771e7977d574de2863a4f4\";a:10:{s:4:\"hash\";s:32:\"064e4775b6771e7977d574de2863a4f4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637989200/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637989200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"594a99755a35e0882f8bb020d2bc8611\";a:10:{s:4:\"hash\";s:32:\"594a99755a35e0882f8bb020d2bc8611\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1637989200/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1637989200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"14f875722a15b8e4ce626c9ff790f41f\";a:10:{s:4:\"hash\";s:32:\"14f875722a15b8e4ce626c9ff790f41f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638075600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1638075600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"96280aea87b887e3e004982a5b85093f\";a:10:{s:4:\"hash\";s:32:\"96280aea87b887e3e004982a5b85093f\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638075600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1638075600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cf5d6614bab80f331f20590687c58fdc\";a:10:{s:4:\"hash\";s:32:\"cf5d6614bab80f331f20590687c58fdc\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638075600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1638075600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4a0b0d035705317e07f950ad3e811731\";a:10:{s:4:\"hash\";s:32:\"4a0b0d035705317e07f950ad3e811731\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638075600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1638075600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a0497da039ff4bede3e93fd6e6fcc1dc\";a:10:{s:4:\"hash\";s:32:\"a0497da039ff4bede3e93fd6e6fcc1dc\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638075600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1638075600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e64b1559c22e9473ec7089756e356d92\";a:10:{s:4:\"hash\";s:32:\"e64b1559c22e9473ec7089756e356d92\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638075600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1638075600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c5eec51e8647915c2aea794950f42532\";a:10:{s:4:\"hash\";s:32:\"c5eec51e8647915c2aea794950f42532\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638075600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1638075600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"82ce61a1e7945f56eb2a571fb9474829\";a:10:{s:4:\"hash\";s:32:\"82ce61a1e7945f56eb2a571fb9474829\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638075600/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1638075600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9549c711d5fca49665d3f062c4d9145d\";a:10:{s:4:\"hash\";s:32:\"9549c711d5fca49665d3f062c4d9145d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638075600/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1638075600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7e88d32885ba200831e4c5c6b8506f84\";a:10:{s:4:\"hash\";s:32:\"7e88d32885ba200831e4c5c6b8506f84\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638075600/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1638075600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4ce437a8e0db5dd172a6481018128d76\";a:10:{s:4:\"hash\";s:32:\"4ce437a8e0db5dd172a6481018128d76\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638162000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1638162000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"afa03c76686d08f96556fd948069dbc1\";a:10:{s:4:\"hash\";s:32:\"afa03c76686d08f96556fd948069dbc1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638162000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1638162000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"27628e1177d5811fa96313316a8b72d0\";a:10:{s:4:\"hash\";s:32:\"27628e1177d5811fa96313316a8b72d0\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638162000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1638162000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"65101046682d68c3de05af68c274335b\";a:10:{s:4:\"hash\";s:32:\"65101046682d68c3de05af68c274335b\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638162000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1638162000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e8ec9c6c8ac23c7966e41edf1a54c8a4\";a:10:{s:4:\"hash\";s:32:\"e8ec9c6c8ac23c7966e41edf1a54c8a4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638162000/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1638162000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"95888e5222b4a477d6b721c48446ca17\";a:10:{s:4:\"hash\";s:32:\"95888e5222b4a477d6b721c48446ca17\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638162000/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1638162000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7aa197ab3db09dd0f92fdaf706998f34\";a:10:{s:4:\"hash\";s:32:\"7aa197ab3db09dd0f92fdaf706998f34\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638162000/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1638162000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fb73f0df7c739dcc7d766c702371efa4\";a:10:{s:4:\"hash\";s:32:\"fb73f0df7c739dcc7d766c702371efa4\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638248400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1638248400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"603a78f205d85958cbea2e85f5a42a7c\";a:10:{s:4:\"hash\";s:32:\"603a78f205d85958cbea2e85f5a42a7c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638248400/request_format~json/cat_ids~87/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1638248400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2ac01a6c84dee53153b708da69316441\";a:10:{s:4:\"hash\";s:32:\"2ac01a6c84dee53153b708da69316441\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638248400/request_format~json/cat_ids~88/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1638248400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2ae17753b25e770b6b4ca56415cbd677\";a:10:{s:4:\"hash\";s:32:\"2ae17753b25e770b6b4ca56415cbd677\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638248400/request_format~json/cat_ids~89/\";s:4:\"path\";s:75:\"/events/action~oneday/exact_date~1638248400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"76af22e90980d173e91fec0f547de750\";a:10:{s:4:\"hash\";s:32:\"76af22e90980d173e91fec0f547de750\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638334800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1638334800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dbe176d14c70d48b769f24944a240ece\";a:10:{s:4:\"hash\";s:32:\"dbe176d14c70d48b769f24944a240ece\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1638594000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1638594000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"af932de5369e71b4f70cd79ff2a7abde\";a:10:{s:4:\"hash\";s:32:\"af932de5369e71b4f70cd79ff2a7abde\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1651377600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/exact_date~1651377600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"08e0454cc557dc42cb88763fa4433bf1\";a:10:{s:4:\"hash\";s:32:\"08e0454cc557dc42cb88763fa4433bf1\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~1654056000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/exact_date~1654056000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff1cf630c85670b241b7f883afbe9096\";a:10:{s:4:\"hash\";s:32:\"ff1cf630c85670b241b7f883afbe9096\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-1-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~2-1-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dfbff7c08cb481849812a3ee07be8da3\";a:10:{s:4:\"hash\";s:32:\"dfbff7c08cb481849812a3ee07be8da3\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-1-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~2-1-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"91d25cb812d6d73dae0796be06b174f5\";a:10:{s:4:\"hash\";s:32:\"91d25cb812d6d73dae0796be06b174f5\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-10-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-10-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6b6b672c84d064a72dc9212d9b4a5334\";a:10:{s:4:\"hash\";s:32:\"6b6b672c84d064a72dc9212d9b4a5334\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-10-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-10-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c9baf010d329a44e794b1d3369cd47ec\";a:10:{s:4:\"hash\";s:32:\"c9baf010d329a44e794b1d3369cd47ec\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-11-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-11-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0022efa6df4383cea514f0260be9525a\";a:10:{s:4:\"hash\";s:32:\"0022efa6df4383cea514f0260be9525a\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-11-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-11-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7ff1183ca8e875f214f5b1b77574c6e9\";a:10:{s:4:\"hash\";s:32:\"7ff1183ca8e875f214f5b1b77574c6e9\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-12-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-12-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8137e70085be99fa5fd8a612e1bdf47d\";a:10:{s:4:\"hash\";s:32:\"8137e70085be99fa5fd8a612e1bdf47d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-12-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-12-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f3b45848f9bc2745c08368b95ec6fd1\";a:10:{s:4:\"hash\";s:32:\"7f3b45848f9bc2745c08368b95ec6fd1\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-13-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-13-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e351a42b3b363de23a0b188006d8aa35\";a:10:{s:4:\"hash\";s:32:\"e351a42b3b363de23a0b188006d8aa35\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-13-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-13-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4f8e688cdd45a8d37a84732b60a70529\";a:10:{s:4:\"hash\";s:32:\"4f8e688cdd45a8d37a84732b60a70529\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-14-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-14-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef4308cfd035d21d0b427ef0a166074e\";a:10:{s:4:\"hash\";s:32:\"ef4308cfd035d21d0b427ef0a166074e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-14-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-14-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b17a6ab6d2fbf0abe01d9859cca9a71f\";a:10:{s:4:\"hash\";s:32:\"b17a6ab6d2fbf0abe01d9859cca9a71f\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-15-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-15-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"94ab2726f6253107d14cb3cb28dd4323\";a:10:{s:4:\"hash\";s:32:\"94ab2726f6253107d14cb3cb28dd4323\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-15-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-15-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"10773c62e99a20593ee33139d54b8f9e\";a:10:{s:4:\"hash\";s:32:\"10773c62e99a20593ee33139d54b8f9e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-16-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-16-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b2921209dcd9565367706d443d282195\";a:10:{s:4:\"hash\";s:32:\"b2921209dcd9565367706d443d282195\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-16-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-16-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f5ac870441fb391dfa8cbd6fb962fe09\";a:10:{s:4:\"hash\";s:32:\"f5ac870441fb391dfa8cbd6fb962fe09\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-17-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-17-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c47be4c1cde5ee6acdd31d760ff3489\";a:10:{s:4:\"hash\";s:32:\"3c47be4c1cde5ee6acdd31d760ff3489\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-17-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-17-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1e8f488163e69dc62fafc68d485aecc5\";a:10:{s:4:\"hash\";s:32:\"1e8f488163e69dc62fafc68d485aecc5\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-18-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-18-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e4b427b8a34b88ee5394f0501a78911f\";a:10:{s:4:\"hash\";s:32:\"e4b427b8a34b88ee5394f0501a78911f\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-18-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-18-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"51e38b609d9cac8a70c22576c2d82178\";a:10:{s:4:\"hash\";s:32:\"51e38b609d9cac8a70c22576c2d82178\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-19-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-19-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e838223cd5e2726ef1b519ebbb69e593\";a:10:{s:4:\"hash\";s:32:\"e838223cd5e2726ef1b519ebbb69e593\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-19-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-19-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f0567299df25b5a4cb46457809680733\";a:10:{s:4:\"hash\";s:32:\"f0567299df25b5a4cb46457809680733\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-2-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~2-2-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"abd9d557afee7c04d7ca7bef668a0a69\";a:10:{s:4:\"hash\";s:32:\"abd9d557afee7c04d7ca7bef668a0a69\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-2-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~2-2-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"24ddaa1f3d86ad56f7db0736e5de4231\";a:10:{s:4:\"hash\";s:32:\"24ddaa1f3d86ad56f7db0736e5de4231\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-20-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-20-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bf7134dfe11146ac427857d8caec0ed2\";a:10:{s:4:\"hash\";s:32:\"bf7134dfe11146ac427857d8caec0ed2\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-20-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-20-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"efa8a5dd48a280579467d41a9f16b90a\";a:10:{s:4:\"hash\";s:32:\"efa8a5dd48a280579467d41a9f16b90a\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-21-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-21-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bce1a34dcf0ccc7426d0eaa508f33748\";a:10:{s:4:\"hash\";s:32:\"bce1a34dcf0ccc7426d0eaa508f33748\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-21-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-21-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"08396f1a524ed181ecb8ea4559eaa4c6\";a:10:{s:4:\"hash\";s:32:\"08396f1a524ed181ecb8ea4559eaa4c6\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-22-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-22-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1030d7618b908eda74fd652cc9c6ab97\";a:10:{s:4:\"hash\";s:32:\"1030d7618b908eda74fd652cc9c6ab97\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-22-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-22-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"79374d5e3a4213aa6428a6a514a5ee71\";a:10:{s:4:\"hash\";s:32:\"79374d5e3a4213aa6428a6a514a5ee71\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-23-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-23-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"392db8c86032c0560479079ca850b0b1\";a:10:{s:4:\"hash\";s:32:\"392db8c86032c0560479079ca850b0b1\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-23-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-23-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1026a03138fdecc6ec47d727b0eb0120\";a:10:{s:4:\"hash\";s:32:\"1026a03138fdecc6ec47d727b0eb0120\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-24-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-24-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"69d5f778fc73974c5947760280c1ba8f\";a:10:{s:4:\"hash\";s:32:\"69d5f778fc73974c5947760280c1ba8f\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-24-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-24-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2e45088d77cb4fc14eb810a398c3220b\";a:10:{s:4:\"hash\";s:32:\"2e45088d77cb4fc14eb810a398c3220b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-25-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-25-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eb577e33ed4054abf731e5984615f134\";a:10:{s:4:\"hash\";s:32:\"eb577e33ed4054abf731e5984615f134\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-25-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-25-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d3cf84ba8d07af8abd40d3481af8b2af\";a:10:{s:4:\"hash\";s:32:\"d3cf84ba8d07af8abd40d3481af8b2af\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-25-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-25-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"db0d97885ebc91e111cef6127fef364e\";a:10:{s:4:\"hash\";s:32:\"db0d97885ebc91e111cef6127fef364e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-26-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-26-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"64212dfe658ce2b6181248150c16a041\";a:10:{s:4:\"hash\";s:32:\"64212dfe658ce2b6181248150c16a041\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-26-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-26-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"784b835f63b096867df06c642e948b85\";a:10:{s:4:\"hash\";s:32:\"784b835f63b096867df06c642e948b85\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-27-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-27-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9a8e5a61f39ff291aec25588ee7e0558\";a:10:{s:4:\"hash\";s:32:\"9a8e5a61f39ff291aec25588ee7e0558\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-27-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-27-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"132e54edd402377689fd0a784158dac0\";a:10:{s:4:\"hash\";s:32:\"132e54edd402377689fd0a784158dac0\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-28-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-28-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4bd1737beaab5eb24234cf5bd0d29b5a\";a:10:{s:4:\"hash\";s:32:\"4bd1737beaab5eb24234cf5bd0d29b5a\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-28-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-28-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f94b04625ae3cc403cee41c1726c3792\";a:10:{s:4:\"hash\";s:32:\"f94b04625ae3cc403cee41c1726c3792\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-29-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~2-29-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1fe54b5675896bf47f4cd6f329a50be8\";a:10:{s:4:\"hash\";s:32:\"1fe54b5675896bf47f4cd6f329a50be8\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-3-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~2-3-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b564bb7b54706d95b48591d0f9385923\";a:10:{s:4:\"hash\";s:32:\"b564bb7b54706d95b48591d0f9385923\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-3-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~2-3-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8c8c7e6eefb9216692897ba02787dd11\";a:10:{s:4:\"hash\";s:32:\"8c8c7e6eefb9216692897ba02787dd11\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-4-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~2-4-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"457c58665f5883dee8bddd70feec0034\";a:10:{s:4:\"hash\";s:32:\"457c58665f5883dee8bddd70feec0034\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-4-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~2-4-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fbcee7583d9f5c80d9c4b23a06be539b\";a:10:{s:4:\"hash\";s:32:\"fbcee7583d9f5c80d9c4b23a06be539b\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-5-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~2-5-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e6392b1138ec8f6eb603eb0ecf8561b8\";a:10:{s:4:\"hash\";s:32:\"e6392b1138ec8f6eb603eb0ecf8561b8\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-5-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~2-5-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"639403d4921e1d5d268bd754c9edf0b8\";a:10:{s:4:\"hash\";s:32:\"639403d4921e1d5d268bd754c9edf0b8\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-6-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~2-6-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b280b554c3d0be23b972ed8905bae236\";a:10:{s:4:\"hash\";s:32:\"b280b554c3d0be23b972ed8905bae236\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-6-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~2-6-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a7437326a48c44be65d86aac940683ae\";a:10:{s:4:\"hash\";s:32:\"a7437326a48c44be65d86aac940683ae\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-7-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~2-7-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"19d81b818978c7c14630e2cc95a62f3d\";a:10:{s:4:\"hash\";s:32:\"19d81b818978c7c14630e2cc95a62f3d\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-7-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~2-7-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1b9f97672fffb290cc5edbd3c1e9f4af\";a:10:{s:4:\"hash\";s:32:\"1b9f97672fffb290cc5edbd3c1e9f4af\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-8-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~2-8-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1d682cbf0b9d725ea336179b92544d6d\";a:10:{s:4:\"hash\";s:32:\"1d682cbf0b9d725ea336179b92544d6d\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-8-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~2-8-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a3658d647c761b57e34ec55555f021cb\";a:10:{s:4:\"hash\";s:32:\"a3658d647c761b57e34ec55555f021cb\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-9-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~2-9-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a623b5b00f415f859ac0bb7cf6c61a30\";a:10:{s:4:\"hash\";s:32:\"a623b5b00f415f859ac0bb7cf6c61a30\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~2-9-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~2-9-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"11a17e2dcd29571a157af5164b7ad793\";a:10:{s:4:\"hash\";s:32:\"11a17e2dcd29571a157af5164b7ad793\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-1-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~3-1-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e2234818d5868a8c2a889577157ef7a9\";a:10:{s:4:\"hash\";s:32:\"e2234818d5868a8c2a889577157ef7a9\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-10-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-10-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"53e2c17603a722e68245d86083b93f9f\";a:10:{s:4:\"hash\";s:32:\"53e2c17603a722e68245d86083b93f9f\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-11-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-11-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9d302e98df8113d3e3508104330e81b1\";a:10:{s:4:\"hash\";s:32:\"9d302e98df8113d3e3508104330e81b1\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-12-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-12-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dd791adfc82c3d47f7379bbb5f308dce\";a:10:{s:4:\"hash\";s:32:\"dd791adfc82c3d47f7379bbb5f308dce\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-13-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-13-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a70512a061260aa137af67e683223e8b\";a:10:{s:4:\"hash\";s:32:\"a70512a061260aa137af67e683223e8b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-14-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-14-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9d16192e38acc88bc2a1375f883b11f9\";a:10:{s:4:\"hash\";s:32:\"9d16192e38acc88bc2a1375f883b11f9\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-15-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-15-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"21eb4961089e740b97dbc896eeb07003\";a:10:{s:4:\"hash\";s:32:\"21eb4961089e740b97dbc896eeb07003\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-16-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-16-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4e24730d939eeca842bbf6c6f1695f7f\";a:10:{s:4:\"hash\";s:32:\"4e24730d939eeca842bbf6c6f1695f7f\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-17-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-17-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"326e4288289627c88064a99840ea8b89\";a:10:{s:4:\"hash\";s:32:\"326e4288289627c88064a99840ea8b89\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-18-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-18-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0b3755f4be7b9bba09f94559c83d6881\";a:10:{s:4:\"hash\";s:32:\"0b3755f4be7b9bba09f94559c83d6881\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-19-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-19-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7e0f84d75e9af36f504c51402b9cd9d9\";a:10:{s:4:\"hash\";s:32:\"7e0f84d75e9af36f504c51402b9cd9d9\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-2-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~3-2-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"262b9a3a4f9270ba3d1378727d377596\";a:10:{s:4:\"hash\";s:32:\"262b9a3a4f9270ba3d1378727d377596\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-20-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-20-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a4535276f36dd2876a5af6093f22879d\";a:10:{s:4:\"hash\";s:32:\"a4535276f36dd2876a5af6093f22879d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-21-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-21-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4603c0b42bcaaeab1e4ceb6a3f8525c4\";a:10:{s:4:\"hash\";s:32:\"4603c0b42bcaaeab1e4ceb6a3f8525c4\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-22-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-22-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8fe70d34e09c6e853d413b51ba707ae8\";a:10:{s:4:\"hash\";s:32:\"8fe70d34e09c6e853d413b51ba707ae8\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-23-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-23-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b91809d859cbbb810726bb9926d8869b\";a:10:{s:4:\"hash\";s:32:\"b91809d859cbbb810726bb9926d8869b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-24-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-24-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d74cda3ba81c8c73bd7bbe996b6efc0d\";a:10:{s:4:\"hash\";s:32:\"d74cda3ba81c8c73bd7bbe996b6efc0d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-25-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-25-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f60b3d1407074710bace416e03f0b92e\";a:10:{s:4:\"hash\";s:32:\"f60b3d1407074710bace416e03f0b92e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-25-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-25-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bc066f34f37efc9765ad7caafdac2d83\";a:10:{s:4:\"hash\";s:32:\"bc066f34f37efc9765ad7caafdac2d83\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-26-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-26-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2a1232f51441b46bd4c8f54939d1ee8d\";a:10:{s:4:\"hash\";s:32:\"2a1232f51441b46bd4c8f54939d1ee8d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-27-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-27-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c69868073ff82a1f672131ad7963dfd1\";a:10:{s:4:\"hash\";s:32:\"c69868073ff82a1f672131ad7963dfd1\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-28-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-28-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"67e650fdf9c1b87c4e4dfa3cc00680e0\";a:10:{s:4:\"hash\";s:32:\"67e650fdf9c1b87c4e4dfa3cc00680e0\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-29-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-29-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"012fb9c17b48508e9e0bedd54838e442\";a:10:{s:4:\"hash\";s:32:\"012fb9c17b48508e9e0bedd54838e442\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-3-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~3-3-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b893139c03767ce9fe5696546f36f6e5\";a:10:{s:4:\"hash\";s:32:\"b893139c03767ce9fe5696546f36f6e5\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-30-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-30-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e9c0d1af2acf1cdb7d59532eb3a686f1\";a:10:{s:4:\"hash\";s:32:\"e9c0d1af2acf1cdb7d59532eb3a686f1\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-31-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~3-31-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d651876eff9b3d6aefeb824abbb5b7bb\";a:10:{s:4:\"hash\";s:32:\"d651876eff9b3d6aefeb824abbb5b7bb\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-4-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~3-4-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6ebff43ff5ea695369ac3a22f3bc4476\";a:10:{s:4:\"hash\";s:32:\"6ebff43ff5ea695369ac3a22f3bc4476\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-5-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~3-5-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"95ee0b6426aab3e59d230a35f8c46f00\";a:10:{s:4:\"hash\";s:32:\"95ee0b6426aab3e59d230a35f8c46f00\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-6-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~3-6-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"db39d859c9beeebfcfd7d3c348639a10\";a:10:{s:4:\"hash\";s:32:\"db39d859c9beeebfcfd7d3c348639a10\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-7-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~3-7-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1a2535165b9fc1f7ca7d052e05d7e1f4\";a:10:{s:4:\"hash\";s:32:\"1a2535165b9fc1f7ca7d052e05d7e1f4\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-8-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~3-8-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e007803ddbed93c012aae39564f1f089\";a:10:{s:4:\"hash\";s:32:\"e007803ddbed93c012aae39564f1f089\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~3-9-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~3-9-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"69e8d5f358741bb1621be5e433b585ff\";a:10:{s:4:\"hash\";s:32:\"69e8d5f358741bb1621be5e433b585ff\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-1-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~4-1-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d99c443a74859e3cfa7070d0d5187458\";a:10:{s:4:\"hash\";s:32:\"d99c443a74859e3cfa7070d0d5187458\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-10-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-10-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d42e9aa6359f8c19e3e3df0ee616607\";a:10:{s:4:\"hash\";s:32:\"4d42e9aa6359f8c19e3e3df0ee616607\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-11-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-11-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d920ccfc5323cc3e9083467046ff4d24\";a:10:{s:4:\"hash\";s:32:\"d920ccfc5323cc3e9083467046ff4d24\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-12-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-12-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d16ce0b38048ac329ecd8b21163af9cf\";a:10:{s:4:\"hash\";s:32:\"d16ce0b38048ac329ecd8b21163af9cf\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-13-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-13-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"076bdc355f176088f8a6d70bbf793efd\";a:10:{s:4:\"hash\";s:32:\"076bdc355f176088f8a6d70bbf793efd\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-14-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-14-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c5736ad768d97aefaef75273249f0edd\";a:10:{s:4:\"hash\";s:32:\"c5736ad768d97aefaef75273249f0edd\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-15-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-15-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"89083a9c5cd795ac7549a9bbc1acd67a\";a:10:{s:4:\"hash\";s:32:\"89083a9c5cd795ac7549a9bbc1acd67a\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-16-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-16-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1dedcc66d0812e098d9d1dae2a745d50\";a:10:{s:4:\"hash\";s:32:\"1dedcc66d0812e098d9d1dae2a745d50\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-17-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-17-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a3cdf1c493af537cd668f869eec25c0\";a:10:{s:4:\"hash\";s:32:\"8a3cdf1c493af537cd668f869eec25c0\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-18-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-18-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c6e23ab86e795c64d5c6b3f1ba3309a2\";a:10:{s:4:\"hash\";s:32:\"c6e23ab86e795c64d5c6b3f1ba3309a2\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-18-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-18-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"31ce46653f77e7aee814dc776859850b\";a:10:{s:4:\"hash\";s:32:\"31ce46653f77e7aee814dc776859850b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-19-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-19-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"afc8c7580f53b0168e05890bbf68817a\";a:10:{s:4:\"hash\";s:32:\"afc8c7580f53b0168e05890bbf68817a\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-19-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-19-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bdafa576f0d3a70e86bbc9c653b6ea7f\";a:10:{s:4:\"hash\";s:32:\"bdafa576f0d3a70e86bbc9c653b6ea7f\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-2-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~4-2-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"876ba49b1f360d2676a2e0b7d976ce6d\";a:10:{s:4:\"hash\";s:32:\"876ba49b1f360d2676a2e0b7d976ce6d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-20-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-20-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c4b74bce827c68d1f0aea85045f60ee8\";a:10:{s:4:\"hash\";s:32:\"c4b74bce827c68d1f0aea85045f60ee8\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-20-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-20-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5682839477393c51e625e6a4dc15ce3b\";a:10:{s:4:\"hash\";s:32:\"5682839477393c51e625e6a4dc15ce3b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-21-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-21-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1c1505579c9c6f248132ed63f1ea6561\";a:10:{s:4:\"hash\";s:32:\"1c1505579c9c6f248132ed63f1ea6561\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-21-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-21-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"33ffe935250e04d7c5df7c29b2364753\";a:10:{s:4:\"hash\";s:32:\"33ffe935250e04d7c5df7c29b2364753\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-22-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-22-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fa747a764435806bef76f997726a82d5\";a:10:{s:4:\"hash\";s:32:\"fa747a764435806bef76f997726a82d5\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-22-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-22-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f8087d6d5d592cb1b761560e1c8323c9\";a:10:{s:4:\"hash\";s:32:\"f8087d6d5d592cb1b761560e1c8323c9\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-23-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-23-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"21336358065f9f3a0bea0b2ffed6ae7e\";a:10:{s:4:\"hash\";s:32:\"21336358065f9f3a0bea0b2ffed6ae7e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-23-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-23-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b92843bdc3c585abe2652104e69257ba\";a:10:{s:4:\"hash\";s:32:\"b92843bdc3c585abe2652104e69257ba\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-24-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-24-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eef9e856489bcabe0c338344c5968c8e\";a:10:{s:4:\"hash\";s:32:\"eef9e856489bcabe0c338344c5968c8e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-24-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-24-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5588adb2f4beaa92f436834dddc4d197\";a:10:{s:4:\"hash\";s:32:\"5588adb2f4beaa92f436834dddc4d197\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-25-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-25-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e1dfa948ad72783e0b620b65e90fed66\";a:10:{s:4:\"hash\";s:32:\"e1dfa948ad72783e0b620b65e90fed66\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-25-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-25-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4dc74eba818feab39037471635033bf2\";a:10:{s:4:\"hash\";s:32:\"4dc74eba818feab39037471635033bf2\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-26-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-26-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"247da17cee636f90c2d4622cb6808836\";a:10:{s:4:\"hash\";s:32:\"247da17cee636f90c2d4622cb6808836\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-26-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-26-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7199ba07ce257ff115fcd131754bdece\";a:10:{s:4:\"hash\";s:32:\"7199ba07ce257ff115fcd131754bdece\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-27-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-27-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"93b86533b07e78d42b154b0f99aade58\";a:10:{s:4:\"hash\";s:32:\"93b86533b07e78d42b154b0f99aade58\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-27-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-27-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"394081d0ff126f1361f63a0a9a4b9851\";a:10:{s:4:\"hash\";s:32:\"394081d0ff126f1361f63a0a9a4b9851\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-28-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-28-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"37d5a824dbba9dbba12019dcbf33849c\";a:10:{s:4:\"hash\";s:32:\"37d5a824dbba9dbba12019dcbf33849c\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-28-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-28-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"52cd609aee274915da37b5f3774ed875\";a:10:{s:4:\"hash\";s:32:\"52cd609aee274915da37b5f3774ed875\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-29-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-29-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"09168ec40b8e01fe27f352c2d9547e20\";a:10:{s:4:\"hash\";s:32:\"09168ec40b8e01fe27f352c2d9547e20\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-29-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-29-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e0f4703169851a440c365d5ecba28bd5\";a:10:{s:4:\"hash\";s:32:\"e0f4703169851a440c365d5ecba28bd5\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-3-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~4-3-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"52708f3fd1ae86db4a5b09595a207c22\";a:10:{s:4:\"hash\";s:32:\"52708f3fd1ae86db4a5b09595a207c22\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-30-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-30-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dc3db575c2127548f0a8a18d529f2cef\";a:10:{s:4:\"hash\";s:32:\"dc3db575c2127548f0a8a18d529f2cef\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-30-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~4-30-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"af9132db674dc079b78a4c10282b00a8\";a:10:{s:4:\"hash\";s:32:\"af9132db674dc079b78a4c10282b00a8\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-4-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~4-4-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a5b50c6b2371d72d19649194e1fac712\";a:10:{s:4:\"hash\";s:32:\"a5b50c6b2371d72d19649194e1fac712\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-5-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~4-5-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eac48f730e7a0847bd3d8b82aa4d20d7\";a:10:{s:4:\"hash\";s:32:\"eac48f730e7a0847bd3d8b82aa4d20d7\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-6-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~4-6-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8c3618fb547858ee7fdcec8e9d2411d6\";a:10:{s:4:\"hash\";s:32:\"8c3618fb547858ee7fdcec8e9d2411d6\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-7-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~4-7-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"990803aff94b7b123c15baa68a3a2364\";a:10:{s:4:\"hash\";s:32:\"990803aff94b7b123c15baa68a3a2364\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-8-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~4-8-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"192e701806fdf771d39d0917d81ffe01\";a:10:{s:4:\"hash\";s:32:\"192e701806fdf771d39d0917d81ffe01\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~4-9-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~4-9-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0e4326117ced67e1702fad977655ce3f\";a:10:{s:4:\"hash\";s:32:\"0e4326117ced67e1702fad977655ce3f\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-1-2018/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-1-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0e7aa2e41abae6dde2cd032037bf9eb8\";a:10:{s:4:\"hash\";s:32:\"0e7aa2e41abae6dde2cd032037bf9eb8\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-1-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-1-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1285ee6274d499ab142fb6d42cc87213\";a:10:{s:4:\"hash\";s:32:\"1285ee6274d499ab142fb6d42cc87213\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-1-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-1-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ec607f8cf888735c9877e154796fa456\";a:10:{s:4:\"hash\";s:32:\"ec607f8cf888735c9877e154796fa456\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-1-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-1-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f8786530e9cfbe7fa4f8eb7e51c610b\";a:10:{s:4:\"hash\";s:32:\"7f8786530e9cfbe7fa4f8eb7e51c610b\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-1-2022/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-1-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c45d03fff6e31186d89c6b068612fe9c\";a:10:{s:4:\"hash\";s:32:\"c45d03fff6e31186d89c6b068612fe9c\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-10-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-10-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5a23d053cf2987792ec6d597f4b0ca13\";a:10:{s:4:\"hash\";s:32:\"5a23d053cf2987792ec6d597f4b0ca13\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-10-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-10-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0f451ad030bd9acab10c7414bd397bce\";a:10:{s:4:\"hash\";s:32:\"0f451ad030bd9acab10c7414bd397bce\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-10-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-10-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"182ba2e4d8c7ee785d6f5419b39d7144\";a:10:{s:4:\"hash\";s:32:\"182ba2e4d8c7ee785d6f5419b39d7144\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-10-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-10-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a93a1a866003ebfcd78ea938f8220f47\";a:10:{s:4:\"hash\";s:32:\"a93a1a866003ebfcd78ea938f8220f47\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-10-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-10-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"38987f16b9f7b1e6d7526370120a1e3b\";a:10:{s:4:\"hash\";s:32:\"38987f16b9f7b1e6d7526370120a1e3b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-11-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-11-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c1c8b7fc169749ad5ee6448796f7e6f9\";a:10:{s:4:\"hash\";s:32:\"c1c8b7fc169749ad5ee6448796f7e6f9\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-11-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-11-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e56d76f50235f50d91980569ec692dc9\";a:10:{s:4:\"hash\";s:32:\"e56d76f50235f50d91980569ec692dc9\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-11-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-11-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e42da698bad127e0512726fde25d5073\";a:10:{s:4:\"hash\";s:32:\"e42da698bad127e0512726fde25d5073\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-11-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-11-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"af283c4bc9f14a0adb28c7bbde609612\";a:10:{s:4:\"hash\";s:32:\"af283c4bc9f14a0adb28c7bbde609612\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-11-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-11-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6426b3ec814952485c415b8e0758da94\";a:10:{s:4:\"hash\";s:32:\"6426b3ec814952485c415b8e0758da94\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-12-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-12-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3ce264f5d2b3949735ae66bd1699f33c\";a:10:{s:4:\"hash\";s:32:\"3ce264f5d2b3949735ae66bd1699f33c\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-12-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-12-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"73925fcbb3c9a618a7f565414bc7222b\";a:10:{s:4:\"hash\";s:32:\"73925fcbb3c9a618a7f565414bc7222b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-12-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-12-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5cacdb352990c011ecffbef2891678d3\";a:10:{s:4:\"hash\";s:32:\"5cacdb352990c011ecffbef2891678d3\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-12-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-12-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a916f504835fbbf90f24acec8bbda0f0\";a:10:{s:4:\"hash\";s:32:\"a916f504835fbbf90f24acec8bbda0f0\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-12-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-12-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"557c33ad05fea72debc3b6e757d04d6e\";a:10:{s:4:\"hash\";s:32:\"557c33ad05fea72debc3b6e757d04d6e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-13-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-13-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"350062c2d42644a77d326df7debc58b5\";a:10:{s:4:\"hash\";s:32:\"350062c2d42644a77d326df7debc58b5\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-13-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-13-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bde45aea0e7814533347c8c0dc610d04\";a:10:{s:4:\"hash\";s:32:\"bde45aea0e7814533347c8c0dc610d04\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-13-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-13-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1155d53ff91188dd2e51e8ebdc9274c6\";a:10:{s:4:\"hash\";s:32:\"1155d53ff91188dd2e51e8ebdc9274c6\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-13-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-13-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fd54b674e5ec9b1fbcab9b7d55595764\";a:10:{s:4:\"hash\";s:32:\"fd54b674e5ec9b1fbcab9b7d55595764\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-13-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-13-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f1bed9ac7877a88ecef9ee55f934a37b\";a:10:{s:4:\"hash\";s:32:\"f1bed9ac7877a88ecef9ee55f934a37b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-14-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-14-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c9d548f61190b9ce69aeb0d2e93211d0\";a:10:{s:4:\"hash\";s:32:\"c9d548f61190b9ce69aeb0d2e93211d0\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-14-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-14-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a007db820405daf71409c768ae42548b\";a:10:{s:4:\"hash\";s:32:\"a007db820405daf71409c768ae42548b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-14-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-14-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"87fce63516becc280409bca993308fcc\";a:10:{s:4:\"hash\";s:32:\"87fce63516becc280409bca993308fcc\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-14-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-14-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"74b4aced2d32fffe7c2a0fff83318a3d\";a:10:{s:4:\"hash\";s:32:\"74b4aced2d32fffe7c2a0fff83318a3d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-14-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-14-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4eb60f30f9754e28c2ea50a9ff214be3\";a:10:{s:4:\"hash\";s:32:\"4eb60f30f9754e28c2ea50a9ff214be3\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-15-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-15-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5356156c3f2e012bf43e622d9d73b177\";a:10:{s:4:\"hash\";s:32:\"5356156c3f2e012bf43e622d9d73b177\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-15-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-15-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c7eb819e650c4f8396d3ed1837eeb966\";a:10:{s:4:\"hash\";s:32:\"c7eb819e650c4f8396d3ed1837eeb966\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-15-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-15-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"08d5d8685798f5b9d7fc80da059ce94f\";a:10:{s:4:\"hash\";s:32:\"08d5d8685798f5b9d7fc80da059ce94f\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-15-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-15-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a466263dd10735e9899055d16798a07d\";a:10:{s:4:\"hash\";s:32:\"a466263dd10735e9899055d16798a07d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-15-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-15-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fece597254bf6ea75e27097336a0fecc\";a:10:{s:4:\"hash\";s:32:\"fece597254bf6ea75e27097336a0fecc\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-16-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-16-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2324b9cbfe51bbabf2d69950e09ddaf6\";a:10:{s:4:\"hash\";s:32:\"2324b9cbfe51bbabf2d69950e09ddaf6\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-16-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-16-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"406ac054f72d07f83d89cd9377bb7139\";a:10:{s:4:\"hash\";s:32:\"406ac054f72d07f83d89cd9377bb7139\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-16-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-16-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dff0a90f1337da125575ea4fe63a1b8c\";a:10:{s:4:\"hash\";s:32:\"dff0a90f1337da125575ea4fe63a1b8c\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-16-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-16-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5bfe06bb665431a85829cf326b361118\";a:10:{s:4:\"hash\";s:32:\"5bfe06bb665431a85829cf326b361118\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-16-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-16-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bdf601c2b612311a63bcb735faa7e05d\";a:10:{s:4:\"hash\";s:32:\"bdf601c2b612311a63bcb735faa7e05d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-17-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-17-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e4acee611b76348c0bbc3bb2a47bf7ed\";a:10:{s:4:\"hash\";s:32:\"e4acee611b76348c0bbc3bb2a47bf7ed\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-17-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-17-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"11d3723ace8594d8a9928acd62555f52\";a:10:{s:4:\"hash\";s:32:\"11d3723ace8594d8a9928acd62555f52\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-17-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-17-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"77a566eabd8aaf89ae342949a76fb4e7\";a:10:{s:4:\"hash\";s:32:\"77a566eabd8aaf89ae342949a76fb4e7\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-17-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-17-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e326a2f434e15a49f734824ea4459125\";a:10:{s:4:\"hash\";s:32:\"e326a2f434e15a49f734824ea4459125\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-17-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-17-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bdffb07fa80004371dded151d7e85923\";a:10:{s:4:\"hash\";s:32:\"bdffb07fa80004371dded151d7e85923\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-18-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-18-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e9e53b1905e8187649e95d2fb19060f5\";a:10:{s:4:\"hash\";s:32:\"e9e53b1905e8187649e95d2fb19060f5\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-18-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-18-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e152cee98a6099c16f379637316cd0b2\";a:10:{s:4:\"hash\";s:32:\"e152cee98a6099c16f379637316cd0b2\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-18-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-18-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cbb63dbdd273f502093658d6b0d3b172\";a:10:{s:4:\"hash\";s:32:\"cbb63dbdd273f502093658d6b0d3b172\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-18-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-18-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"db38fd20ea7e2705df12628f1d81d745\";a:10:{s:4:\"hash\";s:32:\"db38fd20ea7e2705df12628f1d81d745\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-18-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-18-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"232f8b23551761f1129ae1fda5298494\";a:10:{s:4:\"hash\";s:32:\"232f8b23551761f1129ae1fda5298494\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-19-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-19-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7724763b82082a5a6f5432a17e603944\";a:10:{s:4:\"hash\";s:32:\"7724763b82082a5a6f5432a17e603944\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-19-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-19-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2e14477fd47f3c128657f94f27cb918e\";a:10:{s:4:\"hash\";s:32:\"2e14477fd47f3c128657f94f27cb918e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-19-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-19-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"690f4cd9b722360ff98600f9b7029dd7\";a:10:{s:4:\"hash\";s:32:\"690f4cd9b722360ff98600f9b7029dd7\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-19-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-19-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a5ef6d3e9f094ffecaf5694d90186396\";a:10:{s:4:\"hash\";s:32:\"a5ef6d3e9f094ffecaf5694d90186396\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-19-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-19-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3537eb3558c539e7ad20e032a35c2971\";a:10:{s:4:\"hash\";s:32:\"3537eb3558c539e7ad20e032a35c2971\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-2-2018/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-2-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4becf32f4035cf8c2eac6fbda57c8b19\";a:10:{s:4:\"hash\";s:32:\"4becf32f4035cf8c2eac6fbda57c8b19\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-2-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-2-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3bc904b30c0a844fd80b28bad2f68980\";a:10:{s:4:\"hash\";s:32:\"3bc904b30c0a844fd80b28bad2f68980\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-2-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-2-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e8f88a42c868802b5e74eb3430ba8dea\";a:10:{s:4:\"hash\";s:32:\"e8f88a42c868802b5e74eb3430ba8dea\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-2-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-2-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b996b3fd8facd26864776887d82f4ff7\";a:10:{s:4:\"hash\";s:32:\"b996b3fd8facd26864776887d82f4ff7\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-2-2022/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-2-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"897608ed60f726857d61b1c2edc08f02\";a:10:{s:4:\"hash\";s:32:\"897608ed60f726857d61b1c2edc08f02\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-20-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-20-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3d5bc59eaf33b84a98a08af27faed908\";a:10:{s:4:\"hash\";s:32:\"3d5bc59eaf33b84a98a08af27faed908\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-20-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-20-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"71b000b516364a0d497b8f81690d7955\";a:10:{s:4:\"hash\";s:32:\"71b000b516364a0d497b8f81690d7955\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-20-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-20-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"207418e2293b628081166e28ecc70464\";a:10:{s:4:\"hash\";s:32:\"207418e2293b628081166e28ecc70464\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-20-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-20-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"91aaad3333bfe9a65ec1904a5f2e65ad\";a:10:{s:4:\"hash\";s:32:\"91aaad3333bfe9a65ec1904a5f2e65ad\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-20-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-20-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7ffab62b6b909cb7322969a52b70eda3\";a:10:{s:4:\"hash\";s:32:\"7ffab62b6b909cb7322969a52b70eda3\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-21-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-21-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8976e66241776f93c8705dd3bed3ec20\";a:10:{s:4:\"hash\";s:32:\"8976e66241776f93c8705dd3bed3ec20\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-21-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-21-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4878e8a628c0fdb9bf562977aeed8742\";a:10:{s:4:\"hash\";s:32:\"4878e8a628c0fdb9bf562977aeed8742\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-21-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-21-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7a5fcab8196cbd6f103e793b45fca715\";a:10:{s:4:\"hash\";s:32:\"7a5fcab8196cbd6f103e793b45fca715\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-21-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-21-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ae2d873f6f3f0f1aa7f8bf5778e4c2a9\";a:10:{s:4:\"hash\";s:32:\"ae2d873f6f3f0f1aa7f8bf5778e4c2a9\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-21-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-21-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3a25e6160d205e8a8d2da9ac6b900d4e\";a:10:{s:4:\"hash\";s:32:\"3a25e6160d205e8a8d2da9ac6b900d4e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-22-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-22-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e42713b643e24a59b296ec6a6c5edd9d\";a:10:{s:4:\"hash\";s:32:\"e42713b643e24a59b296ec6a6c5edd9d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-22-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-22-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cf7877cd4badc8d5153692f40e26070b\";a:10:{s:4:\"hash\";s:32:\"cf7877cd4badc8d5153692f40e26070b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-22-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-22-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"82e4c2e8b514d423129316b911463bce\";a:10:{s:4:\"hash\";s:32:\"82e4c2e8b514d423129316b911463bce\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-22-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-22-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff52878bda713f9225a1b548f93809f8\";a:10:{s:4:\"hash\";s:32:\"ff52878bda713f9225a1b548f93809f8\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-22-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-22-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2570501fcd4002e515790ad251f25cf8\";a:10:{s:4:\"hash\";s:32:\"2570501fcd4002e515790ad251f25cf8\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-23-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-23-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ae84f840e5b85bf267089aec8dc9e2b6\";a:10:{s:4:\"hash\";s:32:\"ae84f840e5b85bf267089aec8dc9e2b6\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-23-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-23-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2d0a30d350d393ac17207c90236bf802\";a:10:{s:4:\"hash\";s:32:\"2d0a30d350d393ac17207c90236bf802\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-23-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-23-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6863059d1503af3708ccae4a74e9b746\";a:10:{s:4:\"hash\";s:32:\"6863059d1503af3708ccae4a74e9b746\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-23-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-23-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b8bf57699824cfbbfe9f96a1c09ff6f1\";a:10:{s:4:\"hash\";s:32:\"b8bf57699824cfbbfe9f96a1c09ff6f1\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-23-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-23-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"704fb9ddd96469277d17c597bfb691b8\";a:10:{s:4:\"hash\";s:32:\"704fb9ddd96469277d17c597bfb691b8\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-24-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-24-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"181803552c7cd95f47af4e2c7ae3df55\";a:10:{s:4:\"hash\";s:32:\"181803552c7cd95f47af4e2c7ae3df55\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-24-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-24-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d4e404c89b3caedfc0e756d662342cd3\";a:10:{s:4:\"hash\";s:32:\"d4e404c89b3caedfc0e756d662342cd3\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-24-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-24-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1aa3ca4b6252547b1844b653489cce89\";a:10:{s:4:\"hash\";s:32:\"1aa3ca4b6252547b1844b653489cce89\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-24-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-24-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"87b904f231b35d99c0cd39516f37e18c\";a:10:{s:4:\"hash\";s:32:\"87b904f231b35d99c0cd39516f37e18c\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-24-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-24-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f35738973014635c3b65d1c05ec3eeca\";a:10:{s:4:\"hash\";s:32:\"f35738973014635c3b65d1c05ec3eeca\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-25-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-25-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c236e2bfcc84cb40fd913015d5fad0e4\";a:10:{s:4:\"hash\";s:32:\"c236e2bfcc84cb40fd913015d5fad0e4\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-25-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-25-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e04828d01b7aede0ff2de683db4b5791\";a:10:{s:4:\"hash\";s:32:\"e04828d01b7aede0ff2de683db4b5791\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-25-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-25-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c9dc17cab1916c8186d3a6ba4b54507\";a:10:{s:4:\"hash\";s:32:\"2c9dc17cab1916c8186d3a6ba4b54507\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-25-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-25-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"52ab34ba5dd6e352048ad12cc6b22fab\";a:10:{s:4:\"hash\";s:32:\"52ab34ba5dd6e352048ad12cc6b22fab\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-25-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-25-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ded03b76b8619a3f27438d0994f7e880\";a:10:{s:4:\"hash\";s:32:\"ded03b76b8619a3f27438d0994f7e880\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-26-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-26-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b6ff38b43bf4f3edf254e4fa0a119256\";a:10:{s:4:\"hash\";s:32:\"b6ff38b43bf4f3edf254e4fa0a119256\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-26-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-26-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c58397af152e6bde70d68a2d89672ee0\";a:10:{s:4:\"hash\";s:32:\"c58397af152e6bde70d68a2d89672ee0\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-26-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-26-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fdf1f1f4368172dd04ea2a7ee1a31579\";a:10:{s:4:\"hash\";s:32:\"fdf1f1f4368172dd04ea2a7ee1a31579\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-26-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-26-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"69c2e3d288d52838138ea2ff5ec49606\";a:10:{s:4:\"hash\";s:32:\"69c2e3d288d52838138ea2ff5ec49606\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-26-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-26-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bcda03e683f7194e133ff66f7c0684fd\";a:10:{s:4:\"hash\";s:32:\"bcda03e683f7194e133ff66f7c0684fd\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-27-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-27-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d31ddb5ce58ac742974ef09f2d88ed0c\";a:10:{s:4:\"hash\";s:32:\"d31ddb5ce58ac742974ef09f2d88ed0c\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-27-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-27-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"23aa83a042bcadb0e4a1688b18892b7c\";a:10:{s:4:\"hash\";s:32:\"23aa83a042bcadb0e4a1688b18892b7c\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-27-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-27-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"115c6505116d778f0f34a98b1a26a0f4\";a:10:{s:4:\"hash\";s:32:\"115c6505116d778f0f34a98b1a26a0f4\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-27-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-27-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ebc19013ca549e896f4ee034fb0677cf\";a:10:{s:4:\"hash\";s:32:\"ebc19013ca549e896f4ee034fb0677cf\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-27-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-27-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dffadfb570eb4a23f6388d9d1f7b7ea6\";a:10:{s:4:\"hash\";s:32:\"dffadfb570eb4a23f6388d9d1f7b7ea6\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-28-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-28-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b5723e428c629b1eda092aac856b86f8\";a:10:{s:4:\"hash\";s:32:\"b5723e428c629b1eda092aac856b86f8\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-28-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-28-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"67902fea9e48096f72e3598649fb868e\";a:10:{s:4:\"hash\";s:32:\"67902fea9e48096f72e3598649fb868e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-28-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-28-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c332aeebab76622fbe049ed8f16b243\";a:10:{s:4:\"hash\";s:32:\"2c332aeebab76622fbe049ed8f16b243\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-28-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-28-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0036360e0469fcfabf616a53aed7ba5a\";a:10:{s:4:\"hash\";s:32:\"0036360e0469fcfabf616a53aed7ba5a\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-28-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-28-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ec75b3ddc16d02cc61781c39ff4b259c\";a:10:{s:4:\"hash\";s:32:\"ec75b3ddc16d02cc61781c39ff4b259c\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-29-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-29-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"77acf5b282443bff362e4a96be33d0d6\";a:10:{s:4:\"hash\";s:32:\"77acf5b282443bff362e4a96be33d0d6\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-29-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-29-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6617ea7244de578d5f500da9a33434ce\";a:10:{s:4:\"hash\";s:32:\"6617ea7244de578d5f500da9a33434ce\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-29-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-29-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"657f91ca90b999e561618bfba484f101\";a:10:{s:4:\"hash\";s:32:\"657f91ca90b999e561618bfba484f101\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-29-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-29-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d46d5bfa87634f0741bbc888e4302295\";a:10:{s:4:\"hash\";s:32:\"d46d5bfa87634f0741bbc888e4302295\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-29-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-29-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3adc7ad5b490128c6c21fc16501975e3\";a:10:{s:4:\"hash\";s:32:\"3adc7ad5b490128c6c21fc16501975e3\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-3-2018/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-3-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e5d8e5ec3e63ec59e14186a135f9ce02\";a:10:{s:4:\"hash\";s:32:\"e5d8e5ec3e63ec59e14186a135f9ce02\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-3-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-3-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dade7e789658ac55146e984ef3aad9ee\";a:10:{s:4:\"hash\";s:32:\"dade7e789658ac55146e984ef3aad9ee\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-3-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-3-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"04dedb2099a9b46ea38535dfe14a17d0\";a:10:{s:4:\"hash\";s:32:\"04dedb2099a9b46ea38535dfe14a17d0\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-3-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-3-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"31e318b8ecedd7a7ecf3827d3dc26bc9\";a:10:{s:4:\"hash\";s:32:\"31e318b8ecedd7a7ecf3827d3dc26bc9\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-3-2022/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-3-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eb1b7b5951fcc565702c043b71f88610\";a:10:{s:4:\"hash\";s:32:\"eb1b7b5951fcc565702c043b71f88610\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-30-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-30-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"08157f66bf3487fc187907ab9be667da\";a:10:{s:4:\"hash\";s:32:\"08157f66bf3487fc187907ab9be667da\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-30-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-30-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"92e89093f0beec1ceb5d7c6908192a79\";a:10:{s:4:\"hash\";s:32:\"92e89093f0beec1ceb5d7c6908192a79\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-30-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-30-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1f546d8184ae5d5774d80ae64b11f60f\";a:10:{s:4:\"hash\";s:32:\"1f546d8184ae5d5774d80ae64b11f60f\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-30-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-30-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c5d62ae2787a945ef2bc180ace0c11c6\";a:10:{s:4:\"hash\";s:32:\"c5d62ae2787a945ef2bc180ace0c11c6\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-30-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-30-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8316a858e68cbdd08bc0648ee77fe27a\";a:10:{s:4:\"hash\";s:32:\"8316a858e68cbdd08bc0648ee77fe27a\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-31-2018/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-31-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4471f54f0735d259b2ec2368096c4325\";a:10:{s:4:\"hash\";s:32:\"4471f54f0735d259b2ec2368096c4325\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-31-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-31-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5ec1826dd39149fadb3d4f1915812be5\";a:10:{s:4:\"hash\";s:32:\"5ec1826dd39149fadb3d4f1915812be5\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-31-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-31-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e3b5de53273ef9c61828d9b8e8c6b753\";a:10:{s:4:\"hash\";s:32:\"e3b5de53273ef9c61828d9b8e8c6b753\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-31-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-31-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"58d8418411bc0dec9895b9d2244ce4f1\";a:10:{s:4:\"hash\";s:32:\"58d8418411bc0dec9895b9d2244ce4f1\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-31-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~5-31-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bbfa5c374a4dad19e801c82ab4c2beef\";a:10:{s:4:\"hash\";s:32:\"bbfa5c374a4dad19e801c82ab4c2beef\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-4-2018/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-4-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"46955420752bddf45c0a99ab5f73428d\";a:10:{s:4:\"hash\";s:32:\"46955420752bddf45c0a99ab5f73428d\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-4-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-4-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"54573cd77934fe34453bd54ef3b23c3a\";a:10:{s:4:\"hash\";s:32:\"54573cd77934fe34453bd54ef3b23c3a\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-4-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-4-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dc716e4019b91e24b4e9c1f566a91c09\";a:10:{s:4:\"hash\";s:32:\"dc716e4019b91e24b4e9c1f566a91c09\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-4-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-4-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3b5deb12f16366bf4b33a7f800e17f61\";a:10:{s:4:\"hash\";s:32:\"3b5deb12f16366bf4b33a7f800e17f61\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-4-2022/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-4-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8632422e7dad034222f9bce4d5cadd33\";a:10:{s:4:\"hash\";s:32:\"8632422e7dad034222f9bce4d5cadd33\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-5-2018/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-5-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"81642753d5953a6a974c6be923b0c128\";a:10:{s:4:\"hash\";s:32:\"81642753d5953a6a974c6be923b0c128\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-5-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-5-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"19644ebdf47c59671921e93e218b2e86\";a:10:{s:4:\"hash\";s:32:\"19644ebdf47c59671921e93e218b2e86\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-5-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-5-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7e233206bac54d58a02eb873ef054654\";a:10:{s:4:\"hash\";s:32:\"7e233206bac54d58a02eb873ef054654\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-5-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-5-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"47300c92f3be0d06dcf4c1178a5ce0bf\";a:10:{s:4:\"hash\";s:32:\"47300c92f3be0d06dcf4c1178a5ce0bf\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-5-2022/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-5-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2b7846557d34a0ad778226085d1fdbb0\";a:10:{s:4:\"hash\";s:32:\"2b7846557d34a0ad778226085d1fdbb0\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-6-2018/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-6-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0cd96cbc462a83532d8411c95d76add7\";a:10:{s:4:\"hash\";s:32:\"0cd96cbc462a83532d8411c95d76add7\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-6-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-6-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cf71737ee8bf9d10a69f1c8f2090b4c7\";a:10:{s:4:\"hash\";s:32:\"cf71737ee8bf9d10a69f1c8f2090b4c7\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-6-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-6-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"18db88908be25c515dd306a2b4e062ab\";a:10:{s:4:\"hash\";s:32:\"18db88908be25c515dd306a2b4e062ab\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-6-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-6-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"25b7058640954bd38a7ff4e6ae19de3c\";a:10:{s:4:\"hash\";s:32:\"25b7058640954bd38a7ff4e6ae19de3c\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-6-2022/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-6-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c40747a1d4c9e8c4a974ccf4f63d487d\";a:10:{s:4:\"hash\";s:32:\"c40747a1d4c9e8c4a974ccf4f63d487d\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-7-2018/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-7-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6709ad0a493c8aadcf9b78210295c8d5\";a:10:{s:4:\"hash\";s:32:\"6709ad0a493c8aadcf9b78210295c8d5\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-7-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-7-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"be16d955ab55cbbc674ab69a23485506\";a:10:{s:4:\"hash\";s:32:\"be16d955ab55cbbc674ab69a23485506\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-7-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-7-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"de94fd1a5d796c8c61638cdb29fd65cf\";a:10:{s:4:\"hash\";s:32:\"de94fd1a5d796c8c61638cdb29fd65cf\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-7-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-7-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a50853cbfa70bfaa51852d5fd91aeaf0\";a:10:{s:4:\"hash\";s:32:\"a50853cbfa70bfaa51852d5fd91aeaf0\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-7-2022/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-7-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f315691ad37c2285be72bd034652cf9e\";a:10:{s:4:\"hash\";s:32:\"f315691ad37c2285be72bd034652cf9e\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-8-2018/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-8-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1a0a374775aab6bbe1ec25d0040bed6d\";a:10:{s:4:\"hash\";s:32:\"1a0a374775aab6bbe1ec25d0040bed6d\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-8-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-8-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"007f245ec213cf87962936ae489277a0\";a:10:{s:4:\"hash\";s:32:\"007f245ec213cf87962936ae489277a0\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-8-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-8-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c8d3a83e3c82cd6411006bc5f9db878d\";a:10:{s:4:\"hash\";s:32:\"c8d3a83e3c82cd6411006bc5f9db878d\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-8-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-8-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"28a93dbd97bd846ee25d3ca18e70c0f3\";a:10:{s:4:\"hash\";s:32:\"28a93dbd97bd846ee25d3ca18e70c0f3\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-8-2022/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-8-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c78f61a16119f58ef0bdc19e0681cd36\";a:10:{s:4:\"hash\";s:32:\"c78f61a16119f58ef0bdc19e0681cd36\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-9-2018/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-9-2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4f8c50b2d596c3a4d88288a0410d55ca\";a:10:{s:4:\"hash\";s:32:\"4f8c50b2d596c3a4d88288a0410d55ca\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-9-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-9-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"04ac9f3769430be86d9a360e81188fba\";a:10:{s:4:\"hash\";s:32:\"04ac9f3769430be86d9a360e81188fba\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-9-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-9-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c26717f7c74a5d99c180762baea60867\";a:10:{s:4:\"hash\";s:32:\"c26717f7c74a5d99c180762baea60867\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-9-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-9-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"76b3486f8b57ad084476e00e9618f670\";a:10:{s:4:\"hash\";s:32:\"76b3486f8b57ad084476e00e9618f670\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~5-9-2022/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~5-9-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0c2b501d0bafb8055e56afe7b2542a36\";a:10:{s:4:\"hash\";s:32:\"0c2b501d0bafb8055e56afe7b2542a36\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-1-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-1-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0335d093f27f9281b69ecb2fbfa44bed\";a:10:{s:4:\"hash\";s:32:\"0335d093f27f9281b69ecb2fbfa44bed\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-1-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-1-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2052121ce90c3b0fa5ed7edda4615dc2\";a:10:{s:4:\"hash\";s:32:\"2052121ce90c3b0fa5ed7edda4615dc2\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-1-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-1-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5dae21bdf618bc7f30ce1cc246500253\";a:10:{s:4:\"hash\";s:32:\"5dae21bdf618bc7f30ce1cc246500253\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-1-2022/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-1-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f0a897d01c459d6ae93ff2d4a0584e05\";a:10:{s:4:\"hash\";s:32:\"f0a897d01c459d6ae93ff2d4a0584e05\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-10-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-10-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cab2cbc43ef70a86977d747765523514\";a:10:{s:4:\"hash\";s:32:\"cab2cbc43ef70a86977d747765523514\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-10-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-10-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"597fda0c1afc8c494c7a13f30d065fed\";a:10:{s:4:\"hash\";s:32:\"597fda0c1afc8c494c7a13f30d065fed\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-10-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-10-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d5aa3151b46a66aae5195f62c411a7ac\";a:10:{s:4:\"hash\";s:32:\"d5aa3151b46a66aae5195f62c411a7ac\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-10-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-10-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"226300c2c1d264bcf49e3c73553d41e9\";a:10:{s:4:\"hash\";s:32:\"226300c2c1d264bcf49e3c73553d41e9\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-11-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-11-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"924e83efb21a640e815b697aab711e63\";a:10:{s:4:\"hash\";s:32:\"924e83efb21a640e815b697aab711e63\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-11-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-11-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"743e5475371e7738ef95bfbea08f97fe\";a:10:{s:4:\"hash\";s:32:\"743e5475371e7738ef95bfbea08f97fe\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-11-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-11-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f30c02d89a9623d1499f8b44e2892e62\";a:10:{s:4:\"hash\";s:32:\"f30c02d89a9623d1499f8b44e2892e62\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-11-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-11-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"141d6dd3d80bc87884d2de41e5d049a8\";a:10:{s:4:\"hash\";s:32:\"141d6dd3d80bc87884d2de41e5d049a8\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-12-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-12-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b183eabecc8c6fbbff5e178ede0eb272\";a:10:{s:4:\"hash\";s:32:\"b183eabecc8c6fbbff5e178ede0eb272\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-12-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-12-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a82c5e0a6263f28196082db151c4b01e\";a:10:{s:4:\"hash\";s:32:\"a82c5e0a6263f28196082db151c4b01e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-12-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-12-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"55b81052ac48ed824902d0ba8faab6c7\";a:10:{s:4:\"hash\";s:32:\"55b81052ac48ed824902d0ba8faab6c7\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-12-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-12-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"36407820225b4c5d55fc1c69d6a0243a\";a:10:{s:4:\"hash\";s:32:\"36407820225b4c5d55fc1c69d6a0243a\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-13-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-13-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"44db3f9426520f907e5ca46fa3eebcb0\";a:10:{s:4:\"hash\";s:32:\"44db3f9426520f907e5ca46fa3eebcb0\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-13-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-13-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e434386415456830eef4db60a85a5efe\";a:10:{s:4:\"hash\";s:32:\"e434386415456830eef4db60a85a5efe\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-13-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-13-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bd0ab3d4b5a95932d546dbe738d421fb\";a:10:{s:4:\"hash\";s:32:\"bd0ab3d4b5a95932d546dbe738d421fb\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-13-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-13-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"11439dad1f71a7517f59c861af71a20f\";a:10:{s:4:\"hash\";s:32:\"11439dad1f71a7517f59c861af71a20f\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-14-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-14-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a32d73cfc9b5541ab94e2ef652df50c5\";a:10:{s:4:\"hash\";s:32:\"a32d73cfc9b5541ab94e2ef652df50c5\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-14-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-14-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f39c095ae45931d7ab3e08b0d0908444\";a:10:{s:4:\"hash\";s:32:\"f39c095ae45931d7ab3e08b0d0908444\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-14-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-14-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6396d05f572a36932acb222ac44ad1b6\";a:10:{s:4:\"hash\";s:32:\"6396d05f572a36932acb222ac44ad1b6\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-14-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-14-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"80f4c8f4657b962f66589cbd4567b2c3\";a:10:{s:4:\"hash\";s:32:\"80f4c8f4657b962f66589cbd4567b2c3\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-15-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-15-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8d9868c5c7946dbc4b8132a56d7819dd\";a:10:{s:4:\"hash\";s:32:\"8d9868c5c7946dbc4b8132a56d7819dd\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-15-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-15-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1a01a08e878383868cd1b74a6d8ad14b\";a:10:{s:4:\"hash\";s:32:\"1a01a08e878383868cd1b74a6d8ad14b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-15-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-15-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5e6c9ad060fc2a957c466e2bac8ea65f\";a:10:{s:4:\"hash\";s:32:\"5e6c9ad060fc2a957c466e2bac8ea65f\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-15-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-15-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"822e304fcb351f8103cd991f061d8281\";a:10:{s:4:\"hash\";s:32:\"822e304fcb351f8103cd991f061d8281\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-16-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-16-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"46aaf77f18b2801eef020e075663450c\";a:10:{s:4:\"hash\";s:32:\"46aaf77f18b2801eef020e075663450c\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-16-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-16-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1c1ba04646dd78e12e9af98086461288\";a:10:{s:4:\"hash\";s:32:\"1c1ba04646dd78e12e9af98086461288\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-16-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-16-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"66aaa046b50c507607bb6d909bc24aa3\";a:10:{s:4:\"hash\";s:32:\"66aaa046b50c507607bb6d909bc24aa3\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-16-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-16-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b602f10c48b77e804bb1a6a775696a54\";a:10:{s:4:\"hash\";s:32:\"b602f10c48b77e804bb1a6a775696a54\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-17-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-17-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c3818be8450448c2fe626bfcbff9c3d0\";a:10:{s:4:\"hash\";s:32:\"c3818be8450448c2fe626bfcbff9c3d0\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-17-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-17-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e476b9b1fec97bfa62a2223f5af50617\";a:10:{s:4:\"hash\";s:32:\"e476b9b1fec97bfa62a2223f5af50617\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-17-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-17-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e911fec52016210c36555f5b59ed9f5b\";a:10:{s:4:\"hash\";s:32:\"e911fec52016210c36555f5b59ed9f5b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-17-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-17-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d3efa9539609c3909ff758d9bd72f422\";a:10:{s:4:\"hash\";s:32:\"d3efa9539609c3909ff758d9bd72f422\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-18-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-18-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c6ac7e2d027bec5810bff6e4ff90c0b6\";a:10:{s:4:\"hash\";s:32:\"c6ac7e2d027bec5810bff6e4ff90c0b6\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-18-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-18-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"90d07b7d2de9fd8614f1585cece34c00\";a:10:{s:4:\"hash\";s:32:\"90d07b7d2de9fd8614f1585cece34c00\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-18-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-18-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d002e1bbd1c0b9a4528b823007a85578\";a:10:{s:4:\"hash\";s:32:\"d002e1bbd1c0b9a4528b823007a85578\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-18-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-18-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"818c79848d88ce39b3d0b84d41b7bf20\";a:10:{s:4:\"hash\";s:32:\"818c79848d88ce39b3d0b84d41b7bf20\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-19-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-19-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c593a22cd0ac922498220513a77e6db6\";a:10:{s:4:\"hash\";s:32:\"c593a22cd0ac922498220513a77e6db6\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-19-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-19-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"658debe4d64336bc6d7e62ee00772b97\";a:10:{s:4:\"hash\";s:32:\"658debe4d64336bc6d7e62ee00772b97\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-19-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-19-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6f4f57743bffbb8eeaf97c8f0bd9e803\";a:10:{s:4:\"hash\";s:32:\"6f4f57743bffbb8eeaf97c8f0bd9e803\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-19-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-19-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4be217c7818373b6e279992acb0e6d2e\";a:10:{s:4:\"hash\";s:32:\"4be217c7818373b6e279992acb0e6d2e\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-2-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-2-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"48b391d2941791f0f012b50c41664f5c\";a:10:{s:4:\"hash\";s:32:\"48b391d2941791f0f012b50c41664f5c\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-2-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-2-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"10373751dbf66db07e02f03c3578c535\";a:10:{s:4:\"hash\";s:32:\"10373751dbf66db07e02f03c3578c535\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-2-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-2-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"45e8de1bd1dc44b5ccacf64d15da1110\";a:10:{s:4:\"hash\";s:32:\"45e8de1bd1dc44b5ccacf64d15da1110\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-2-2022/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-2-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e62c7d2a0e766c77eef244f1d8e1addd\";a:10:{s:4:\"hash\";s:32:\"e62c7d2a0e766c77eef244f1d8e1addd\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-20-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-20-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"23616fca83e8783b3097608610aa8288\";a:10:{s:4:\"hash\";s:32:\"23616fca83e8783b3097608610aa8288\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-20-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-20-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"25533beb91a853271cd2b7575998ac2c\";a:10:{s:4:\"hash\";s:32:\"25533beb91a853271cd2b7575998ac2c\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-20-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-20-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"96799940be9d7346958c4d831774d260\";a:10:{s:4:\"hash\";s:32:\"96799940be9d7346958c4d831774d260\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-20-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-20-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c42b361345f9fdd0509689b267c9b304\";a:10:{s:4:\"hash\";s:32:\"c42b361345f9fdd0509689b267c9b304\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-21-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-21-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d193a549e882ffc705fd511f4cd216fb\";a:10:{s:4:\"hash\";s:32:\"d193a549e882ffc705fd511f4cd216fb\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-21-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-21-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"db91ed45207d8e412fe5f660005f5cc1\";a:10:{s:4:\"hash\";s:32:\"db91ed45207d8e412fe5f660005f5cc1\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-21-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-21-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2a3959370a582f8dbc524018499992bc\";a:10:{s:4:\"hash\";s:32:\"2a3959370a582f8dbc524018499992bc\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-21-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-21-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7ca1155afe53e5e29f4a4fc70fb8824d\";a:10:{s:4:\"hash\";s:32:\"7ca1155afe53e5e29f4a4fc70fb8824d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-22-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-22-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ec832c7c8547947c724aee58a999bd87\";a:10:{s:4:\"hash\";s:32:\"ec832c7c8547947c724aee58a999bd87\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-22-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-22-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cf20b465749331ee91baaf3bdc8223db\";a:10:{s:4:\"hash\";s:32:\"cf20b465749331ee91baaf3bdc8223db\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-22-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-22-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4b0c289cb7b5cf9abbf334c9fc32ce61\";a:10:{s:4:\"hash\";s:32:\"4b0c289cb7b5cf9abbf334c9fc32ce61\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-22-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-22-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1220c78f6f32f28c0ec86589bcb4a886\";a:10:{s:4:\"hash\";s:32:\"1220c78f6f32f28c0ec86589bcb4a886\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-23-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-23-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a966ff39aae7e1abf2686046ac807356\";a:10:{s:4:\"hash\";s:32:\"a966ff39aae7e1abf2686046ac807356\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-23-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-23-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"094692b216dcc65d42bc1eae06fc4db8\";a:10:{s:4:\"hash\";s:32:\"094692b216dcc65d42bc1eae06fc4db8\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-23-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-23-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d5694aad054b5cc85d5e08aa6734c7d6\";a:10:{s:4:\"hash\";s:32:\"d5694aad054b5cc85d5e08aa6734c7d6\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-23-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-23-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"50224fef243a0e264030ae6141338b9d\";a:10:{s:4:\"hash\";s:32:\"50224fef243a0e264030ae6141338b9d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-24-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-24-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c952fb5c16f5e0091db7ccf1f5cf05d5\";a:10:{s:4:\"hash\";s:32:\"c952fb5c16f5e0091db7ccf1f5cf05d5\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-24-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-24-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dd907af2b02754f599d5b857d0e14f4b\";a:10:{s:4:\"hash\";s:32:\"dd907af2b02754f599d5b857d0e14f4b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-24-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-24-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5b030b49364aeac8a4bc507fc151cbe7\";a:10:{s:4:\"hash\";s:32:\"5b030b49364aeac8a4bc507fc151cbe7\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-24-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-24-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"886dc00a914c34aa0409c868914e0ad1\";a:10:{s:4:\"hash\";s:32:\"886dc00a914c34aa0409c868914e0ad1\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-25-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-25-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f4fb5b412bd135e6d5a0aa6942736c4f\";a:10:{s:4:\"hash\";s:32:\"f4fb5b412bd135e6d5a0aa6942736c4f\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-25-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-25-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3020b8bc018b32f3be2700cb58ec8b9c\";a:10:{s:4:\"hash\";s:32:\"3020b8bc018b32f3be2700cb58ec8b9c\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-25-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-25-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0aea94fe773015c8015ef7c51663c5a1\";a:10:{s:4:\"hash\";s:32:\"0aea94fe773015c8015ef7c51663c5a1\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-25-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-25-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c71272f2312d45ca8aac07d8bf5a90de\";a:10:{s:4:\"hash\";s:32:\"c71272f2312d45ca8aac07d8bf5a90de\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-26-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-26-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e91b2d0b2e7c7cbc9158e0c297d85b48\";a:10:{s:4:\"hash\";s:32:\"e91b2d0b2e7c7cbc9158e0c297d85b48\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-26-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-26-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3eeafd8ed5876b5df7121c8b2ac2497b\";a:10:{s:4:\"hash\";s:32:\"3eeafd8ed5876b5df7121c8b2ac2497b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-26-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-26-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a9546e184d89f60b175fdf2c9b4ab698\";a:10:{s:4:\"hash\";s:32:\"a9546e184d89f60b175fdf2c9b4ab698\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-26-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-26-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8afe052020fa79f9c6f8ef79db150f5c\";a:10:{s:4:\"hash\";s:32:\"8afe052020fa79f9c6f8ef79db150f5c\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-27-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-27-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9996387d3192754d0cdc06881fa9c7a1\";a:10:{s:4:\"hash\";s:32:\"9996387d3192754d0cdc06881fa9c7a1\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-27-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-27-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8fe154741992095ceab92c231aae2eff\";a:10:{s:4:\"hash\";s:32:\"8fe154741992095ceab92c231aae2eff\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-27-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-27-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"11222cae3a1cc4d9d7e8ffd5bc0e1209\";a:10:{s:4:\"hash\";s:32:\"11222cae3a1cc4d9d7e8ffd5bc0e1209\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-27-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-27-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0ed7e5bc3b76f65fb31f600b655d086d\";a:10:{s:4:\"hash\";s:32:\"0ed7e5bc3b76f65fb31f600b655d086d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-28-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-28-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"186eb2054e2f6e1f8476ff93fe1fa7a7\";a:10:{s:4:\"hash\";s:32:\"186eb2054e2f6e1f8476ff93fe1fa7a7\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-28-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-28-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e54df82d6190f3cf6c99fe339e3419d1\";a:10:{s:4:\"hash\";s:32:\"e54df82d6190f3cf6c99fe339e3419d1\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-28-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-28-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"62fefb7de52ba29333d616ae41b42675\";a:10:{s:4:\"hash\";s:32:\"62fefb7de52ba29333d616ae41b42675\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-28-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-28-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5aca16a1bcb5208902801c5f598d0927\";a:10:{s:4:\"hash\";s:32:\"5aca16a1bcb5208902801c5f598d0927\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-29-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-29-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bb4bb514f691734b73ad22229d62dba7\";a:10:{s:4:\"hash\";s:32:\"bb4bb514f691734b73ad22229d62dba7\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-29-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-29-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"59ab61481747cd5251900c535d9bde9d\";a:10:{s:4:\"hash\";s:32:\"59ab61481747cd5251900c535d9bde9d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-29-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-29-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"078e0d680e867d111c90ccab5f803ccc\";a:10:{s:4:\"hash\";s:32:\"078e0d680e867d111c90ccab5f803ccc\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-29-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-29-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8c0b3b1f1d5b6ef8b3647949d01b3d09\";a:10:{s:4:\"hash\";s:32:\"8c0b3b1f1d5b6ef8b3647949d01b3d09\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-3-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-3-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"882106f99f602988a2007e02a0638b1b\";a:10:{s:4:\"hash\";s:32:\"882106f99f602988a2007e02a0638b1b\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-3-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-3-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"425e9ad87ed756b0c9f899861641b98d\";a:10:{s:4:\"hash\";s:32:\"425e9ad87ed756b0c9f899861641b98d\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-3-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-3-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ba799a093f4390d35ddb605753b611b4\";a:10:{s:4:\"hash\";s:32:\"ba799a093f4390d35ddb605753b611b4\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-3-2022/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-3-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f968a1da038536b654817cc4f62ce75d\";a:10:{s:4:\"hash\";s:32:\"f968a1da038536b654817cc4f62ce75d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-30-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-30-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"59291104ee5c0251b0e674ca7628a954\";a:10:{s:4:\"hash\";s:32:\"59291104ee5c0251b0e674ca7628a954\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-30-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-30-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2463caf3aa914013f54350f873ccf67e\";a:10:{s:4:\"hash\";s:32:\"2463caf3aa914013f54350f873ccf67e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-30-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-30-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0069ec3b3007a79c81884a7ebfcd5741\";a:10:{s:4:\"hash\";s:32:\"0069ec3b3007a79c81884a7ebfcd5741\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-30-2022/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~6-30-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"426ea86b93ad6466ab8094120971fbb1\";a:10:{s:4:\"hash\";s:32:\"426ea86b93ad6466ab8094120971fbb1\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-4-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-4-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e39315f81132b40f5688cafe8d81cd59\";a:10:{s:4:\"hash\";s:32:\"e39315f81132b40f5688cafe8d81cd59\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-4-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-4-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1e3a2ce0fd7a39f2877e8c8ffcba090c\";a:10:{s:4:\"hash\";s:32:\"1e3a2ce0fd7a39f2877e8c8ffcba090c\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-4-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-4-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2fb9b1137d33de1d4ffb094b6ca8f5c9\";a:10:{s:4:\"hash\";s:32:\"2fb9b1137d33de1d4ffb094b6ca8f5c9\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-4-2022/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-4-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"337e2cd15cbb35580c4c4cc45b186550\";a:10:{s:4:\"hash\";s:32:\"337e2cd15cbb35580c4c4cc45b186550\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-5-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-5-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1a3f35e0245a234ca438a47dfedf2c09\";a:10:{s:4:\"hash\";s:32:\"1a3f35e0245a234ca438a47dfedf2c09\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-5-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-5-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a5cc884baffc2d85912b7d43ee69f125\";a:10:{s:4:\"hash\";s:32:\"a5cc884baffc2d85912b7d43ee69f125\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-5-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-5-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"043dc6a5597b8f225baea877baea4673\";a:10:{s:4:\"hash\";s:32:\"043dc6a5597b8f225baea877baea4673\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-5-2022/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-5-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a882dda86ce2ef5a78866a3f66dcea2f\";a:10:{s:4:\"hash\";s:32:\"a882dda86ce2ef5a78866a3f66dcea2f\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-6-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-6-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"390b9aa96fc917951cd0de8ed1f24d42\";a:10:{s:4:\"hash\";s:32:\"390b9aa96fc917951cd0de8ed1f24d42\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-6-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-6-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fe3d6e2b29d3540a662ec912c4697da3\";a:10:{s:4:\"hash\";s:32:\"fe3d6e2b29d3540a662ec912c4697da3\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-6-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-6-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"69a6c65c0af261125c156370d49f42d1\";a:10:{s:4:\"hash\";s:32:\"69a6c65c0af261125c156370d49f42d1\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-6-2022/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-6-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6c9bfe4d1616aa9794e0cd9e8cf3436d\";a:10:{s:4:\"hash\";s:32:\"6c9bfe4d1616aa9794e0cd9e8cf3436d\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-7-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-7-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"140f6e0b4be30b64795e51328cf6731f\";a:10:{s:4:\"hash\";s:32:\"140f6e0b4be30b64795e51328cf6731f\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-7-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-7-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fee80bbee2eae25e41c80300b42dea20\";a:10:{s:4:\"hash\";s:32:\"fee80bbee2eae25e41c80300b42dea20\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-7-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-7-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1120b0e32d38e8d0518b0548cbec22e5\";a:10:{s:4:\"hash\";s:32:\"1120b0e32d38e8d0518b0548cbec22e5\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-7-2022/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-7-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cdffa550d9e54aa694a7e1d03f7bf369\";a:10:{s:4:\"hash\";s:32:\"cdffa550d9e54aa694a7e1d03f7bf369\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-8-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-8-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a584f0efeb2c6b386f343ca7c14f5838\";a:10:{s:4:\"hash\";s:32:\"a584f0efeb2c6b386f343ca7c14f5838\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-8-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-8-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fc98b0360abdcbc4300aadfd313eb021\";a:10:{s:4:\"hash\";s:32:\"fc98b0360abdcbc4300aadfd313eb021\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-8-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-8-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e90d2c0e956d0286d03ef66a2f2fb560\";a:10:{s:4:\"hash\";s:32:\"e90d2c0e956d0286d03ef66a2f2fb560\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-8-2022/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-8-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d2262b5aeb745b9fb9404649222d0bca\";a:10:{s:4:\"hash\";s:32:\"d2262b5aeb745b9fb9404649222d0bca\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-9-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-9-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"22917ba7a56c8acd603c9ce94c639821\";a:10:{s:4:\"hash\";s:32:\"22917ba7a56c8acd603c9ce94c639821\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-9-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-9-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"db0b1b3ec4470577ed950f13af4c5bac\";a:10:{s:4:\"hash\";s:32:\"db0b1b3ec4470577ed950f13af4c5bac\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-9-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-9-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f4d88249bcfa0ec7abed311e160317aa\";a:10:{s:4:\"hash\";s:32:\"f4d88249bcfa0ec7abed311e160317aa\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~6-9-2022/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~6-9-2022/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d8e93393de6a8c3fc8fc65f847f95166\";a:10:{s:4:\"hash\";s:32:\"d8e93393de6a8c3fc8fc65f847f95166\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-1-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-1-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1240db0561aeebd814e0292ea5b28fab\";a:10:{s:4:\"hash\";s:32:\"1240db0561aeebd814e0292ea5b28fab\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-1-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-1-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"620761a49a4528a944ca3a53fcd9b62c\";a:10:{s:4:\"hash\";s:32:\"620761a49a4528a944ca3a53fcd9b62c\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-1-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-1-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"836598d12b40242cdfb8d40a02373add\";a:10:{s:4:\"hash\";s:32:\"836598d12b40242cdfb8d40a02373add\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-10-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-10-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"795617175b86b2c408881561515bb8e8\";a:10:{s:4:\"hash\";s:32:\"795617175b86b2c408881561515bb8e8\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-10-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-10-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7fea8b560347c8737a11c8a423eed825\";a:10:{s:4:\"hash\";s:32:\"7fea8b560347c8737a11c8a423eed825\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-10-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-10-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"78fd8a427560e277dc875c8777f33f21\";a:10:{s:4:\"hash\";s:32:\"78fd8a427560e277dc875c8777f33f21\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-11-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-11-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6aa2d5224187e2d8da2ea92cb77ccea5\";a:10:{s:4:\"hash\";s:32:\"6aa2d5224187e2d8da2ea92cb77ccea5\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-11-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-11-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"21d2de923b179dc0083bca4d2036e98d\";a:10:{s:4:\"hash\";s:32:\"21d2de923b179dc0083bca4d2036e98d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-11-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-11-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d0be2766a74b979a163a0c4a43a1303a\";a:10:{s:4:\"hash\";s:32:\"d0be2766a74b979a163a0c4a43a1303a\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-12-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-12-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6451aa794096e65641301b9630edce34\";a:10:{s:4:\"hash\";s:32:\"6451aa794096e65641301b9630edce34\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-12-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-12-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3bbed9bf119655952daa55c14b9dbb67\";a:10:{s:4:\"hash\";s:32:\"3bbed9bf119655952daa55c14b9dbb67\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-12-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-12-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b54d9d1068c0a8d0c222ac46942b0a2e\";a:10:{s:4:\"hash\";s:32:\"b54d9d1068c0a8d0c222ac46942b0a2e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-13-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-13-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2cb79b491ece535bde5a0269ba5fd6d8\";a:10:{s:4:\"hash\";s:32:\"2cb79b491ece535bde5a0269ba5fd6d8\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-13-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-13-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"881a98a75238df250fe11707a5715441\";a:10:{s:4:\"hash\";s:32:\"881a98a75238df250fe11707a5715441\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-13-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-13-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1a056549215bd7c72e61bfb3eabbaf40\";a:10:{s:4:\"hash\";s:32:\"1a056549215bd7c72e61bfb3eabbaf40\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-14-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-14-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"265371a646271f28bb84ce316489d0ab\";a:10:{s:4:\"hash\";s:32:\"265371a646271f28bb84ce316489d0ab\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-14-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-14-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"14832b3a5b7dc376a28ac5ff6d72232f\";a:10:{s:4:\"hash\";s:32:\"14832b3a5b7dc376a28ac5ff6d72232f\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-14-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-14-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1debbc993170d1ea1e776706573eaa90\";a:10:{s:4:\"hash\";s:32:\"1debbc993170d1ea1e776706573eaa90\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-15-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-15-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cb71ea1088f459e80ccc7447267a1ddb\";a:10:{s:4:\"hash\";s:32:\"cb71ea1088f459e80ccc7447267a1ddb\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-15-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-15-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7cab00e0fd2e1f2b97012fb2567c4630\";a:10:{s:4:\"hash\";s:32:\"7cab00e0fd2e1f2b97012fb2567c4630\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-15-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-15-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7dbe1a7475cb108f017f46af8a854ab3\";a:10:{s:4:\"hash\";s:32:\"7dbe1a7475cb108f017f46af8a854ab3\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-16-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-16-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a218e1fcead6456ed8f2a9a4a0cf1843\";a:10:{s:4:\"hash\";s:32:\"a218e1fcead6456ed8f2a9a4a0cf1843\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-16-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-16-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e1330801cd7d4aa5c994c6dbb540a52a\";a:10:{s:4:\"hash\";s:32:\"e1330801cd7d4aa5c994c6dbb540a52a\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-16-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-16-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7a8ff965e60f0efba0a5a4e156e458b5\";a:10:{s:4:\"hash\";s:32:\"7a8ff965e60f0efba0a5a4e156e458b5\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-17-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-17-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"133b245509107321d03ce65a934e1e2e\";a:10:{s:4:\"hash\";s:32:\"133b245509107321d03ce65a934e1e2e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-17-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-17-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff12b74df116ccfbd8f7bf6350e79e6d\";a:10:{s:4:\"hash\";s:32:\"ff12b74df116ccfbd8f7bf6350e79e6d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-17-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-17-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ecf0b4661ad9522d587d0e6e947121da\";a:10:{s:4:\"hash\";s:32:\"ecf0b4661ad9522d587d0e6e947121da\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-18-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-18-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c232bafeced81f5e8af0884104940b0e\";a:10:{s:4:\"hash\";s:32:\"c232bafeced81f5e8af0884104940b0e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-18-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-18-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"53db5b9a7c7d98810489b3221739f544\";a:10:{s:4:\"hash\";s:32:\"53db5b9a7c7d98810489b3221739f544\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-18-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-18-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0b8d0f6908488d4406e71f89fc5058a6\";a:10:{s:4:\"hash\";s:32:\"0b8d0f6908488d4406e71f89fc5058a6\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-19-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-19-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"35060dfbaedb7f709588c6c4596f2508\";a:10:{s:4:\"hash\";s:32:\"35060dfbaedb7f709588c6c4596f2508\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-19-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-19-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d4c9867054925a2cb21f68e1924e7733\";a:10:{s:4:\"hash\";s:32:\"d4c9867054925a2cb21f68e1924e7733\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-19-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-19-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"563dbc10ceeaf16597407aac20aeb2e7\";a:10:{s:4:\"hash\";s:32:\"563dbc10ceeaf16597407aac20aeb2e7\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-2-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-2-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"73683990dc72faf05289fa89c4bae376\";a:10:{s:4:\"hash\";s:32:\"73683990dc72faf05289fa89c4bae376\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-2-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-2-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a5caca43253e0aadbf1d4b7f6a8f9d50\";a:10:{s:4:\"hash\";s:32:\"a5caca43253e0aadbf1d4b7f6a8f9d50\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-2-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-2-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7aa17e68854a04f5feb113de33e474c1\";a:10:{s:4:\"hash\";s:32:\"7aa17e68854a04f5feb113de33e474c1\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-20-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-20-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8f6a4eb6b52e93a0ad2ffe4c4a522e06\";a:10:{s:4:\"hash\";s:32:\"8f6a4eb6b52e93a0ad2ffe4c4a522e06\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-20-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-20-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"18bdce9c6fe1338ac33fcd125e6b3754\";a:10:{s:4:\"hash\";s:32:\"18bdce9c6fe1338ac33fcd125e6b3754\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-20-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-20-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a8e69ab9bce842295143319db43735f1\";a:10:{s:4:\"hash\";s:32:\"a8e69ab9bce842295143319db43735f1\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-21-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-21-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"677b69d582632830125adc5f0828d375\";a:10:{s:4:\"hash\";s:32:\"677b69d582632830125adc5f0828d375\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-21-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-21-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ecdb6fba81a97af0c796d45ad2a4615\";a:10:{s:4:\"hash\";s:32:\"8ecdb6fba81a97af0c796d45ad2a4615\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-21-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-21-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"12b78b33709bd1c6d50b42855a8fb773\";a:10:{s:4:\"hash\";s:32:\"12b78b33709bd1c6d50b42855a8fb773\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-22-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-22-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ec3a47025ea1e9130dbb004ded0e0d15\";a:10:{s:4:\"hash\";s:32:\"ec3a47025ea1e9130dbb004ded0e0d15\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-22-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-22-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"43d50c8df9d79c80440b48d1f93f3c1c\";a:10:{s:4:\"hash\";s:32:\"43d50c8df9d79c80440b48d1f93f3c1c\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-22-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-22-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"19cd6a982291bac54f162a7cb2d2cc13\";a:10:{s:4:\"hash\";s:32:\"19cd6a982291bac54f162a7cb2d2cc13\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-23-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-23-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"84fa0dae0112d8887faa52a8d848c42f\";a:10:{s:4:\"hash\";s:32:\"84fa0dae0112d8887faa52a8d848c42f\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-23-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-23-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c000b9000c4726a5213e1314d06f6d8\";a:10:{s:4:\"hash\";s:32:\"2c000b9000c4726a5213e1314d06f6d8\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-23-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-23-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"269f0df88ab9ee4dbbb454ed33283307\";a:10:{s:4:\"hash\";s:32:\"269f0df88ab9ee4dbbb454ed33283307\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-24-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-24-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"194d16a084b4a5bff580f21d45b69d82\";a:10:{s:4:\"hash\";s:32:\"194d16a084b4a5bff580f21d45b69d82\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-24-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-24-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b0ed66bb83f2bb4a52ad3b87e6b2faaa\";a:10:{s:4:\"hash\";s:32:\"b0ed66bb83f2bb4a52ad3b87e6b2faaa\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-24-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-24-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"036ae711bcf225c44c7b7ead88446770\";a:10:{s:4:\"hash\";s:32:\"036ae711bcf225c44c7b7ead88446770\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-25-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-25-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cf14db6e7470b6d1751d654f7d8f5791\";a:10:{s:4:\"hash\";s:32:\"cf14db6e7470b6d1751d654f7d8f5791\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-25-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-25-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9be801a634b442ea0ac277bea82904c7\";a:10:{s:4:\"hash\";s:32:\"9be801a634b442ea0ac277bea82904c7\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-25-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-25-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5030848b270919eaac0e2a734c703178\";a:10:{s:4:\"hash\";s:32:\"5030848b270919eaac0e2a734c703178\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-26-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-26-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e655ad3fd7aeb29489d7b846f6e92f07\";a:10:{s:4:\"hash\";s:32:\"e655ad3fd7aeb29489d7b846f6e92f07\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-26-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-26-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b41f3a01f504c26e09e7edebe787103b\";a:10:{s:4:\"hash\";s:32:\"b41f3a01f504c26e09e7edebe787103b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-26-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-26-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"140a44650c1b450371e1d3b888e81031\";a:10:{s:4:\"hash\";s:32:\"140a44650c1b450371e1d3b888e81031\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-27-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-27-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"73d0fe8242f30d85cbbd589f38d37567\";a:10:{s:4:\"hash\";s:32:\"73d0fe8242f30d85cbbd589f38d37567\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-27-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-27-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e306c9b3bad838aa732ae3b4a6356314\";a:10:{s:4:\"hash\";s:32:\"e306c9b3bad838aa732ae3b4a6356314\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-27-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-27-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bad96a7970a191e8d79ac1ff28faa7f0\";a:10:{s:4:\"hash\";s:32:\"bad96a7970a191e8d79ac1ff28faa7f0\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-28-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-28-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c12210b52bfe87c59e5c1e11c3375553\";a:10:{s:4:\"hash\";s:32:\"c12210b52bfe87c59e5c1e11c3375553\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-28-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-28-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a53c64604b99fa7946c050d2840bc9d4\";a:10:{s:4:\"hash\";s:32:\"a53c64604b99fa7946c050d2840bc9d4\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-28-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-28-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d1fb65cd7734c87c2831ee98926d1bc3\";a:10:{s:4:\"hash\";s:32:\"d1fb65cd7734c87c2831ee98926d1bc3\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-29-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-29-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"26b179bfbe1bf497c1c207dda786cb7d\";a:10:{s:4:\"hash\";s:32:\"26b179bfbe1bf497c1c207dda786cb7d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-29-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-29-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"94439a40ece34bec341076245ba10062\";a:10:{s:4:\"hash\";s:32:\"94439a40ece34bec341076245ba10062\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-29-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-29-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9d79f67379d959894f82fb17604fede1\";a:10:{s:4:\"hash\";s:32:\"9d79f67379d959894f82fb17604fede1\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-3-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-3-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cfa4ce55cbbcd02fb7885dfa6667fe71\";a:10:{s:4:\"hash\";s:32:\"cfa4ce55cbbcd02fb7885dfa6667fe71\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-3-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-3-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"03a8b01170fd452484cf8c5a92810cf4\";a:10:{s:4:\"hash\";s:32:\"03a8b01170fd452484cf8c5a92810cf4\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-3-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-3-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"45d1723a754c581ce4697e2e5846b088\";a:10:{s:4:\"hash\";s:32:\"45d1723a754c581ce4697e2e5846b088\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-30-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-30-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"603691dda38e3a242a60e8eb051b3566\";a:10:{s:4:\"hash\";s:32:\"603691dda38e3a242a60e8eb051b3566\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-30-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-30-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e95895da4f6593dc4f7a3207ceaa1d7d\";a:10:{s:4:\"hash\";s:32:\"e95895da4f6593dc4f7a3207ceaa1d7d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-30-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-30-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"181592a2ebf014f340cc825547dc7da9\";a:10:{s:4:\"hash\";s:32:\"181592a2ebf014f340cc825547dc7da9\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-31-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-31-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3ecae956f45c256ddfc2540e45f75126\";a:10:{s:4:\"hash\";s:32:\"3ecae956f45c256ddfc2540e45f75126\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-31-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-31-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0a48008e429573b6e931fb83d22a69ec\";a:10:{s:4:\"hash\";s:32:\"0a48008e429573b6e931fb83d22a69ec\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-31-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~7-31-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aeeb9d9c295278b0a07d65c2eab4fd8a\";a:10:{s:4:\"hash\";s:32:\"aeeb9d9c295278b0a07d65c2eab4fd8a\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-4-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-4-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"927f09f815e8190c3cbea677a1eca3d6\";a:10:{s:4:\"hash\";s:32:\"927f09f815e8190c3cbea677a1eca3d6\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-4-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-4-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f04a37748239fb3dd940720774d4b86c\";a:10:{s:4:\"hash\";s:32:\"f04a37748239fb3dd940720774d4b86c\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-4-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-4-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"404a022b953daa52027d9adc356c7c52\";a:10:{s:4:\"hash\";s:32:\"404a022b953daa52027d9adc356c7c52\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-5-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-5-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5ad0aef71ca2d3310b5721ace3508ecd\";a:10:{s:4:\"hash\";s:32:\"5ad0aef71ca2d3310b5721ace3508ecd\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-5-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-5-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0fa6ee96a6d126d7d112a66d04737aa8\";a:10:{s:4:\"hash\";s:32:\"0fa6ee96a6d126d7d112a66d04737aa8\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-5-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-5-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"278ad2524b62769d3eed1fa8a75df7c3\";a:10:{s:4:\"hash\";s:32:\"278ad2524b62769d3eed1fa8a75df7c3\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-6-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-6-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ea4eb5396146470192e18ecb4d3f234c\";a:10:{s:4:\"hash\";s:32:\"ea4eb5396146470192e18ecb4d3f234c\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-6-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-6-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b2cdef82e9c431f96f0bf461c7799663\";a:10:{s:4:\"hash\";s:32:\"b2cdef82e9c431f96f0bf461c7799663\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-6-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-6-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4495744808f10f72858b42f80a6c728f\";a:10:{s:4:\"hash\";s:32:\"4495744808f10f72858b42f80a6c728f\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-7-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-7-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"25326386bb5095f8358d59a435a91b52\";a:10:{s:4:\"hash\";s:32:\"25326386bb5095f8358d59a435a91b52\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-7-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-7-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dd3dfd649984dd4a4b23e42bc7844032\";a:10:{s:4:\"hash\";s:32:\"dd3dfd649984dd4a4b23e42bc7844032\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-7-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-7-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7ef81eda21051e238b7223501f76bdda\";a:10:{s:4:\"hash\";s:32:\"7ef81eda21051e238b7223501f76bdda\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-8-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-8-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4f05413621d3c10d2264bb63d02e45d2\";a:10:{s:4:\"hash\";s:32:\"4f05413621d3c10d2264bb63d02e45d2\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-8-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-8-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b5a4e1d56a4722ee992e0721df3d6855\";a:10:{s:4:\"hash\";s:32:\"b5a4e1d56a4722ee992e0721df3d6855\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-8-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-8-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4e5f4ab2ba52883aed89e215f4662bbb\";a:10:{s:4:\"hash\";s:32:\"4e5f4ab2ba52883aed89e215f4662bbb\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-9-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-9-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7cffb956580fdddd573dc2d2c9e6e812\";a:10:{s:4:\"hash\";s:32:\"7cffb956580fdddd573dc2d2c9e6e812\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-9-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-9-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"709ade22221d4bd4febc9b11e8e56f85\";a:10:{s:4:\"hash\";s:32:\"709ade22221d4bd4febc9b11e8e56f85\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~7-9-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~7-9-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"89be909e4738470979a0d03ab7fa8da6\";a:10:{s:4:\"hash\";s:32:\"89be909e4738470979a0d03ab7fa8da6\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-1-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-1-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"144257e5928e4f4e3355175ac7090428\";a:10:{s:4:\"hash\";s:32:\"144257e5928e4f4e3355175ac7090428\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-1-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-1-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a559896fa14b7a5817dbdebfabfd4102\";a:10:{s:4:\"hash\";s:32:\"a559896fa14b7a5817dbdebfabfd4102\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-1-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-1-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6fab3872c8e8f9ea6446060d0943f0fa\";a:10:{s:4:\"hash\";s:32:\"6fab3872c8e8f9ea6446060d0943f0fa\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-10-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-10-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"485e12b12f6410db58a0539fe8580bbe\";a:10:{s:4:\"hash\";s:32:\"485e12b12f6410db58a0539fe8580bbe\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-10-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-10-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ad31fb60d101a8ad8559cff579af5b4f\";a:10:{s:4:\"hash\";s:32:\"ad31fb60d101a8ad8559cff579af5b4f\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-10-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-10-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0e6772c5c6ad7c162470d7096a1e8dfc\";a:10:{s:4:\"hash\";s:32:\"0e6772c5c6ad7c162470d7096a1e8dfc\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-11-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-11-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"237eae476ca14f17a502ca4e09656a1d\";a:10:{s:4:\"hash\";s:32:\"237eae476ca14f17a502ca4e09656a1d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-11-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-11-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"924889a690f9dc64442c67bf8a598447\";a:10:{s:4:\"hash\";s:32:\"924889a690f9dc64442c67bf8a598447\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-11-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-11-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6bbdccc511e1133f4c79c37ab9353e5f\";a:10:{s:4:\"hash\";s:32:\"6bbdccc511e1133f4c79c37ab9353e5f\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-12-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-12-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6ca58564ac15b582031809d9921be2a9\";a:10:{s:4:\"hash\";s:32:\"6ca58564ac15b582031809d9921be2a9\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-12-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-12-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d7397d00b193fca2ad5f39c550787442\";a:10:{s:4:\"hash\";s:32:\"d7397d00b193fca2ad5f39c550787442\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-12-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-12-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"74ff1bf748322b30aaeac9d24859bc52\";a:10:{s:4:\"hash\";s:32:\"74ff1bf748322b30aaeac9d24859bc52\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-13-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-13-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aea60db42aef54145149517cd5e68de0\";a:10:{s:4:\"hash\";s:32:\"aea60db42aef54145149517cd5e68de0\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-13-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-13-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"864c692ea4a79733a6ca063e4f3cebfc\";a:10:{s:4:\"hash\";s:32:\"864c692ea4a79733a6ca063e4f3cebfc\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-13-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-13-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aec206e46e36b0c8cfb561db4e521cfb\";a:10:{s:4:\"hash\";s:32:\"aec206e46e36b0c8cfb561db4e521cfb\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-14-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-14-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ebaf2dfb7876793c26e1d9890b7e9d48\";a:10:{s:4:\"hash\";s:32:\"ebaf2dfb7876793c26e1d9890b7e9d48\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-14-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-14-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6fbc94d212b80d73a5864f8876786d2b\";a:10:{s:4:\"hash\";s:32:\"6fbc94d212b80d73a5864f8876786d2b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-14-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-14-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2770e23b2a809923e56b95f18ad9a1fa\";a:10:{s:4:\"hash\";s:32:\"2770e23b2a809923e56b95f18ad9a1fa\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-15-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-15-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b477942c923bc70a8c60e44d6d0a31e4\";a:10:{s:4:\"hash\";s:32:\"b477942c923bc70a8c60e44d6d0a31e4\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-15-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-15-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0bfad32b526ab345629238f2fd1a5297\";a:10:{s:4:\"hash\";s:32:\"0bfad32b526ab345629238f2fd1a5297\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-15-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-15-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cd281a65e72ac48c347eaf34daea21c0\";a:10:{s:4:\"hash\";s:32:\"cd281a65e72ac48c347eaf34daea21c0\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-16-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-16-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"29d1a356d09f48a0bcfcc51865af7584\";a:10:{s:4:\"hash\";s:32:\"29d1a356d09f48a0bcfcc51865af7584\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-16-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-16-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"28fd3fb3f2f15221d2db7bb209ddee5c\";a:10:{s:4:\"hash\";s:32:\"28fd3fb3f2f15221d2db7bb209ddee5c\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-16-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-16-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a5d1c818b4f38dac69573d3c9aa5a183\";a:10:{s:4:\"hash\";s:32:\"a5d1c818b4f38dac69573d3c9aa5a183\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-17-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-17-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f37c81938aae730923fd29f52dfd6d75\";a:10:{s:4:\"hash\";s:32:\"f37c81938aae730923fd29f52dfd6d75\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-17-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-17-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ec58dbad6e07becc56a33b6892d27da7\";a:10:{s:4:\"hash\";s:32:\"ec58dbad6e07becc56a33b6892d27da7\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-17-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-17-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f9c943e98418017e51b149916cc1842e\";a:10:{s:4:\"hash\";s:32:\"f9c943e98418017e51b149916cc1842e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-18-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-18-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"534984a62fecf258211c0710a4efd8d7\";a:10:{s:4:\"hash\";s:32:\"534984a62fecf258211c0710a4efd8d7\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-18-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-18-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b4ba6ccdede36c5e3292f2fb5e161aa6\";a:10:{s:4:\"hash\";s:32:\"b4ba6ccdede36c5e3292f2fb5e161aa6\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-18-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-18-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"19c1d025b6b6af6f9a92c0f0ca347240\";a:10:{s:4:\"hash\";s:32:\"19c1d025b6b6af6f9a92c0f0ca347240\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-19-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-19-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"30f7ce49b8a0149829b56f550485f649\";a:10:{s:4:\"hash\";s:32:\"30f7ce49b8a0149829b56f550485f649\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-19-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-19-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e4afe5c62bd90527141a2be55a7f1c07\";a:10:{s:4:\"hash\";s:32:\"e4afe5c62bd90527141a2be55a7f1c07\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-19-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-19-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ed36f3d39069444ec1eb35ffe79e9e2e\";a:10:{s:4:\"hash\";s:32:\"ed36f3d39069444ec1eb35ffe79e9e2e\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-2-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-2-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"910c9cf9b3cb120753ef9f27abc1b030\";a:10:{s:4:\"hash\";s:32:\"910c9cf9b3cb120753ef9f27abc1b030\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-2-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-2-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7231cdde587230b4c2bea96caca06ac7\";a:10:{s:4:\"hash\";s:32:\"7231cdde587230b4c2bea96caca06ac7\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-2-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-2-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"09e4a7dd0b861363ac6a2e636bbfb0df\";a:10:{s:4:\"hash\";s:32:\"09e4a7dd0b861363ac6a2e636bbfb0df\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-20-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-20-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a0bc339b9e61b1fa7cdc518f08dc73b5\";a:10:{s:4:\"hash\";s:32:\"a0bc339b9e61b1fa7cdc518f08dc73b5\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-20-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-20-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f2b6400f897c74b6892bf58b0b36743d\";a:10:{s:4:\"hash\";s:32:\"f2b6400f897c74b6892bf58b0b36743d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-20-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-20-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7a196bc5efa77f4d240b35b6e2b20dfd\";a:10:{s:4:\"hash\";s:32:\"7a196bc5efa77f4d240b35b6e2b20dfd\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-21-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-21-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7b4a39bf7bdbc7f0c533864b72a6682d\";a:10:{s:4:\"hash\";s:32:\"7b4a39bf7bdbc7f0c533864b72a6682d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-21-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-21-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4cf8a8928ae19bcf36c52a1a1daede02\";a:10:{s:4:\"hash\";s:32:\"4cf8a8928ae19bcf36c52a1a1daede02\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-21-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-21-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a15d0739478709ff4f34d2911a833a98\";a:10:{s:4:\"hash\";s:32:\"a15d0739478709ff4f34d2911a833a98\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-22-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-22-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c330a5f68f3c02b0fd9cc95e54bc2da0\";a:10:{s:4:\"hash\";s:32:\"c330a5f68f3c02b0fd9cc95e54bc2da0\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-22-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-22-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e18e2fd2483f6d21291b29e6a6cc623f\";a:10:{s:4:\"hash\";s:32:\"e18e2fd2483f6d21291b29e6a6cc623f\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-22-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-22-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"85a7e0440e6be5fcced84abe9d7293a2\";a:10:{s:4:\"hash\";s:32:\"85a7e0440e6be5fcced84abe9d7293a2\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-23-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-23-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a9f643baccf2e3bc17a86ff11f3a24c7\";a:10:{s:4:\"hash\";s:32:\"a9f643baccf2e3bc17a86ff11f3a24c7\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-23-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-23-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"01914dd2fbdfad554d73d183ab62ea93\";a:10:{s:4:\"hash\";s:32:\"01914dd2fbdfad554d73d183ab62ea93\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-23-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-23-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0b04fa5bf104d194a926f686fa058019\";a:10:{s:4:\"hash\";s:32:\"0b04fa5bf104d194a926f686fa058019\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-24-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-24-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"393c329be09b5e95321f86adb827dcf3\";a:10:{s:4:\"hash\";s:32:\"393c329be09b5e95321f86adb827dcf3\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-24-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-24-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b5011e9560799c042bbc329fb5b9cb09\";a:10:{s:4:\"hash\";s:32:\"b5011e9560799c042bbc329fb5b9cb09\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-24-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-24-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ccafc66a9213691c1c44b089af0b778f\";a:10:{s:4:\"hash\";s:32:\"ccafc66a9213691c1c44b089af0b778f\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-25-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-25-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f252f40bea0514c0885123b5245a55e2\";a:10:{s:4:\"hash\";s:32:\"f252f40bea0514c0885123b5245a55e2\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-25-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-25-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7c34b673331ef13b36974d7ac411688d\";a:10:{s:4:\"hash\";s:32:\"7c34b673331ef13b36974d7ac411688d\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-25-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-25-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"45fcb304d410eb93d6dc6615f3d24de3\";a:10:{s:4:\"hash\";s:32:\"45fcb304d410eb93d6dc6615f3d24de3\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-26-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-26-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0f85c5d6dfe97345d440d35d0f82a1eb\";a:10:{s:4:\"hash\";s:32:\"0f85c5d6dfe97345d440d35d0f82a1eb\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-26-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-26-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"30a033937cefd779bf5b9d37ff9fbee1\";a:10:{s:4:\"hash\";s:32:\"30a033937cefd779bf5b9d37ff9fbee1\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-26-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-26-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c6b5b058217670a9d457e9c681cd1e2b\";a:10:{s:4:\"hash\";s:32:\"c6b5b058217670a9d457e9c681cd1e2b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-27-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-27-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dff1cd6a56b1dddf84397a8070594f4a\";a:10:{s:4:\"hash\";s:32:\"dff1cd6a56b1dddf84397a8070594f4a\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-27-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-27-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e2f363859576ac87352f44b815f2b653\";a:10:{s:4:\"hash\";s:32:\"e2f363859576ac87352f44b815f2b653\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-27-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-27-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f73fc8e0701d60e9f82cd6d34b20ebe4\";a:10:{s:4:\"hash\";s:32:\"f73fc8e0701d60e9f82cd6d34b20ebe4\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-28-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-28-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"378680de182968610315c761a03a0d6a\";a:10:{s:4:\"hash\";s:32:\"378680de182968610315c761a03a0d6a\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-28-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-28-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"507be018d7ddcdbbe8b6f834fd1ebdbb\";a:10:{s:4:\"hash\";s:32:\"507be018d7ddcdbbe8b6f834fd1ebdbb\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-28-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-28-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4f04b4d67eb3e0220a33816bc6f36036\";a:10:{s:4:\"hash\";s:32:\"4f04b4d67eb3e0220a33816bc6f36036\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-29-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-29-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4a572998727a2f5bab0d27272394a3f2\";a:10:{s:4:\"hash\";s:32:\"4a572998727a2f5bab0d27272394a3f2\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-29-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-29-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a6ae402ef214b82c7c7b3109e63ab05b\";a:10:{s:4:\"hash\";s:32:\"a6ae402ef214b82c7c7b3109e63ab05b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-29-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-29-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fc0e4932fe701ee21525a582081cf293\";a:10:{s:4:\"hash\";s:32:\"fc0e4932fe701ee21525a582081cf293\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-3-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-3-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f1b27504419e7fd9a00271f9349cff7f\";a:10:{s:4:\"hash\";s:32:\"f1b27504419e7fd9a00271f9349cff7f\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-3-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-3-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"36411bcc0526504e663700c23c0332e5\";a:10:{s:4:\"hash\";s:32:\"36411bcc0526504e663700c23c0332e5\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-3-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-3-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7e39317e4a0b160953a0cfda999dcf70\";a:10:{s:4:\"hash\";s:32:\"7e39317e4a0b160953a0cfda999dcf70\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-30-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-30-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"240b1fe42116a55e5e6dc4a4a57d80c9\";a:10:{s:4:\"hash\";s:32:\"240b1fe42116a55e5e6dc4a4a57d80c9\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-30-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-30-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eeb930200e6a268707f1f5c208bc6aaf\";a:10:{s:4:\"hash\";s:32:\"eeb930200e6a268707f1f5c208bc6aaf\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-30-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-30-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6c5ec33b919d1bd1d63cf9bed6b060ad\";a:10:{s:4:\"hash\";s:32:\"6c5ec33b919d1bd1d63cf9bed6b060ad\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-31-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-31-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"04de6e6f4a6fa2d9f7397b4cf6be808a\";a:10:{s:4:\"hash\";s:32:\"04de6e6f4a6fa2d9f7397b4cf6be808a\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-31-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-31-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"586e94f05f02669bbbedca39617d1d8a\";a:10:{s:4:\"hash\";s:32:\"586e94f05f02669bbbedca39617d1d8a\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-31-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~8-31-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ae86b97865433545e4087fdb13994707\";a:10:{s:4:\"hash\";s:32:\"ae86b97865433545e4087fdb13994707\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-4-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-4-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fec8d66c527e90dc6bc432a580249daa\";a:10:{s:4:\"hash\";s:32:\"fec8d66c527e90dc6bc432a580249daa\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-4-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-4-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b6fdecfa8e4a544b62a22cfa0c441eb8\";a:10:{s:4:\"hash\";s:32:\"b6fdecfa8e4a544b62a22cfa0c441eb8\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-4-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-4-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"46278fc913d266d2a112a8c0ad2ddb46\";a:10:{s:4:\"hash\";s:32:\"46278fc913d266d2a112a8c0ad2ddb46\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-5-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-5-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"48bc609ed1edd4f849b8acbdb67f7d8c\";a:10:{s:4:\"hash\";s:32:\"48bc609ed1edd4f849b8acbdb67f7d8c\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-5-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-5-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ba23071f422bee69cd5672cedcc8dcda\";a:10:{s:4:\"hash\";s:32:\"ba23071f422bee69cd5672cedcc8dcda\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-5-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-5-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"24a06f4c299058bfc82a2afe223a336d\";a:10:{s:4:\"hash\";s:32:\"24a06f4c299058bfc82a2afe223a336d\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-6-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-6-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"78c97ee85e4c4cb31a48b94696f8f206\";a:10:{s:4:\"hash\";s:32:\"78c97ee85e4c4cb31a48b94696f8f206\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-6-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-6-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ba5607f6e4e46f1aaeea2357eb15c5c0\";a:10:{s:4:\"hash\";s:32:\"ba5607f6e4e46f1aaeea2357eb15c5c0\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-6-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-6-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f45030fa6901e9c9e4a999a0ecc5ccd2\";a:10:{s:4:\"hash\";s:32:\"f45030fa6901e9c9e4a999a0ecc5ccd2\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-7-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-7-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"75348340e5f89e73494c510f4a0787dd\";a:10:{s:4:\"hash\";s:32:\"75348340e5f89e73494c510f4a0787dd\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-7-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-7-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7ac679f1ba3528fc4ba760adc4c98039\";a:10:{s:4:\"hash\";s:32:\"7ac679f1ba3528fc4ba760adc4c98039\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-7-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-7-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4e8b537a623bfe141cdea4ebc1ab2b4a\";a:10:{s:4:\"hash\";s:32:\"4e8b537a623bfe141cdea4ebc1ab2b4a\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-8-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-8-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d10759d97d827f2e064019c1f3343707\";a:10:{s:4:\"hash\";s:32:\"d10759d97d827f2e064019c1f3343707\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-8-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-8-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ece56bf6e349c34cc727e37fe70c4c6\";a:10:{s:4:\"hash\";s:32:\"8ece56bf6e349c34cc727e37fe70c4c6\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-8-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-8-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7e982807aa9092ac867969bd5724d796\";a:10:{s:4:\"hash\";s:32:\"7e982807aa9092ac867969bd5724d796\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-9-2019/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-9-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"17cc3046bb144222fe9af1079754b6c1\";a:10:{s:4:\"hash\";s:32:\"17cc3046bb144222fe9af1079754b6c1\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-9-2020/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-9-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"583cadfe716c6b6f2a88714d187a7cb5\";a:10:{s:4:\"hash\";s:32:\"583cadfe716c6b6f2a88714d187a7cb5\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~8-9-2021/\";s:4:\"path\";s:42:\"/events/action~oneday/exact_date~8-9-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"144e423210ecbe74dd3f217d9127214b\";a:10:{s:4:\"hash\";s:32:\"144e423210ecbe74dd3f217d9127214b\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~9-23-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~9-23-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f7ea936b215d50be6ec424b151298705\";a:10:{s:4:\"hash\";s:32:\"f7ea936b215d50be6ec424b151298705\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~9-24-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~9-24-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fde368dce69ea5e10a82926eeba12fbc\";a:10:{s:4:\"hash\";s:32:\"fde368dce69ea5e10a82926eeba12fbc\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~9-24-2021/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~9-24-2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5932a7d13212ac5162487e56829946b9\";a:10:{s:4:\"hash\";s:32:\"5932a7d13212ac5162487e56829946b9\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~9-25-2020/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~9-25-2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bae1c8c6bc6f9aca854a21450a67a7da\";a:10:{s:4:\"hash\";s:32:\"bae1c8c6bc6f9aca854a21450a67a7da\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/exact_date~9-27-2019/\";s:4:\"path\";s:43:\"/events/action~oneday/exact_date~9-27-2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6ef76826839fb5bd4c19a0ceab557c06\";a:10:{s:4:\"hash\";s:32:\"6ef76826839fb5bd4c19a0ceab557c06\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/page_offset~-1/time_limit~1612155600/cat_ids~87/request_format~json/\";s:4:\"path\";s:90:\"/events/action~oneday/page_offset~-1/time_limit~1612155600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1e7debacc8dfdc794cd776d455efee42\";a:10:{s:4:\"hash\";s:32:\"1e7debacc8dfdc794cd776d455efee42\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/page_offset~-1/time_limit~1612155600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:93:\"/events/action~oneday/page_offset~-1/time_limit~1612155600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c5d704a14ca88a4199ade639227111b8\";a:10:{s:4:\"hash\";s:32:\"c5d704a14ca88a4199ade639227111b8\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/page_offset~-1/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:93:\"/events/action~oneday/page_offset~-1/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"781e87c1f2e7b905b25a829050dc4fc8\";a:10:{s:4:\"hash\";s:32:\"781e87c1f2e7b905b25a829050dc4fc8\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/page_offset~-1/time_limit~1612155600/cat_ids~89/request_format~json/\";s:4:\"path\";s:90:\"/events/action~oneday/page_offset~-1/time_limit~1612155600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"57736b1fe437fe6343156d07773edf55\";a:10:{s:4:\"hash\";s:32:\"57736b1fe437fe6343156d07773edf55\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/page_offset~-1/time_limit~1612155600/request_format~json/\";s:4:\"path\";s:79:\"/events/action~oneday/page_offset~-1/time_limit~1612155600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8fded1cc57c02ede6008c0533b336447\";a:10:{s:4:\"hash\";s:32:\"8fded1cc57c02ede6008c0533b336447\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/page_offset~1/time_limit~1612155600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:92:\"/events/action~oneday/page_offset~1/time_limit~1612155600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0f3728e4cd33cb01d1fa67ddeda4c7ce\";a:10:{s:4:\"hash\";s:32:\"0f3728e4cd33cb01d1fa67ddeda4c7ce\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/page_offset~1/time_limit~1612155600/cat_ids~88/request_format~json/\";s:4:\"path\";s:89:\"/events/action~oneday/page_offset~1/time_limit~1612155600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4b559c93d8c74d65679b5cece0f27d0b\";a:10:{s:4:\"hash\";s:32:\"4b559c93d8c74d65679b5cece0f27d0b\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/page_offset~1/time_limit~1612155600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:92:\"/events/action~oneday/page_offset~1/time_limit~1612155600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"838b0d349a48b7cf82dc0841e8095f19\";a:10:{s:4:\"hash\";s:32:\"838b0d349a48b7cf82dc0841e8095f19\";s:3:\"url\";s:149:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/page_offset~1/time_limit~1612155600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:95:\"/events/action~oneday/page_offset~1/time_limit~1612155600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"31d4fb7f48b114b18c5e36699beecd07\";a:10:{s:4:\"hash\";s:32:\"31d4fb7f48b114b18c5e36699beecd07\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/page_offset~1/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:92:\"/events/action~oneday/page_offset~1/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"764ef99e9c617d7b371e634a195d0d8c\";a:10:{s:4:\"hash\";s:32:\"764ef99e9c617d7b371e634a195d0d8c\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/page_offset~1/time_limit~1612155600/cat_ids~89/request_format~json/\";s:4:\"path\";s:89:\"/events/action~oneday/page_offset~1/time_limit~1612155600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"90949523d8352d2674f8541fccfc650d\";a:10:{s:4:\"hash\";s:32:\"90949523d8352d2674f8541fccfc650d\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/page_offset~1/time_limit~1612155600/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/page_offset~1/time_limit~1612155600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"34dfe7e4769f2f3466e2a09c955ee3db\";a:10:{s:4:\"hash\";s:32:\"34dfe7e4769f2f3466e2a09c955ee3db\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1557201600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1557201600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"98b93c650475a3e732fc03a7663f6f3e\";a:10:{s:4:\"hash\";s:32:\"98b93c650475a3e732fc03a7663f6f3e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1558411200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1558411200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"df8d07a21d4441b33235939b701139d8\";a:10:{s:4:\"hash\";s:32:\"df8d07a21d4441b33235939b701139d8\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1558497600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1558497600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b22b3bf20d49f197271863e414597378\";a:10:{s:4:\"hash\";s:32:\"b22b3bf20d49f197271863e414597378\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1558929600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1558929600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1fb5c28d88e06afa4a8f889b6c4b2d1b\";a:10:{s:4:\"hash\";s:32:\"1fb5c28d88e06afa4a8f889b6c4b2d1b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1559620800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1559620800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c3a0493371dfb9d8f12973a2bf8cf406\";a:10:{s:4:\"hash\";s:32:\"c3a0493371dfb9d8f12973a2bf8cf406\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1559707200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1559707200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1bff4ca93cd4eb8df881f95182f4f1bb\";a:10:{s:4:\"hash\";s:32:\"1bff4ca93cd4eb8df881f95182f4f1bb\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1560052800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/time_limit~1560052800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aba478f3e74aedb40adf4a6949e0d814\";a:10:{s:4:\"hash\";s:32:\"aba478f3e74aedb40adf4a6949e0d814\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1560225600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/time_limit~1560225600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6eaf08dd270f66a1bd36e71db4497efe\";a:10:{s:4:\"hash\";s:32:\"6eaf08dd270f66a1bd36e71db4497efe\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1560312000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1560312000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"03003211ff00aa80b6c1f5f5731172dd\";a:10:{s:4:\"hash\";s:32:\"03003211ff00aa80b6c1f5f5731172dd\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1560830400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/time_limit~1560830400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"694839bbf825cc13a2b6c0e0ecefff11\";a:10:{s:4:\"hash\";s:32:\"694839bbf825cc13a2b6c0e0ecefff11\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1561176000/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1561176000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"22fbb4bd0f4fe023c549d83c2d0a489c\";a:10:{s:4:\"hash\";s:32:\"22fbb4bd0f4fe023c549d83c2d0a489c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1561953600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1561953600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9926e9217409cc14988e374049429762\";a:10:{s:4:\"hash\";s:32:\"9926e9217409cc14988e374049429762\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1588737600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1588737600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c0c47ba6e5e0bea83182330003cf13ca\";a:10:{s:4:\"hash\";s:32:\"c0c47ba6e5e0bea83182330003cf13ca\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1590379200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1590379200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4f643e5fa29658ea136d0dbf53c63249\";a:10:{s:4:\"hash\";s:32:\"4f643e5fa29658ea136d0dbf53c63249\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1590552000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1590552000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"738531997c6f48c9fafcc10ae3b2200b\";a:10:{s:4:\"hash\";s:32:\"738531997c6f48c9fafcc10ae3b2200b\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1590638400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1590638400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3d38852f402a0363cb3d9dcebe330cc9\";a:10:{s:4:\"hash\";s:32:\"3d38852f402a0363cb3d9dcebe330cc9\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1590984000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1590984000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"70cca2a0164ded5937197522671a8c3f\";a:10:{s:4:\"hash\";s:32:\"70cca2a0164ded5937197522671a8c3f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1590984000/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1590984000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a38cc127171ca602fb4215af52a1a740\";a:10:{s:4:\"hash\";s:32:\"a38cc127171ca602fb4215af52a1a740\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1590984000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1590984000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8aabcf89c6b8270c2ee30886d319096e\";a:10:{s:4:\"hash\";s:32:\"8aabcf89c6b8270c2ee30886d319096e\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1591070400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/time_limit~1591070400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3eced23c09a9cb15a191aa73c99894e9\";a:10:{s:4:\"hash\";s:32:\"3eced23c09a9cb15a191aa73c99894e9\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1591675200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/time_limit~1591675200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9008a871b22e4a6f0fe33af9eac7e78d\";a:10:{s:4:\"hash\";s:32:\"9008a871b22e4a6f0fe33af9eac7e78d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1592020800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1592020800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"72ef7aa2dc3492f7c7ba739c27f943a0\";a:10:{s:4:\"hash\";s:32:\"72ef7aa2dc3492f7c7ba739c27f943a0\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1592107200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1592107200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d32f75bd250c022643efa15fc2ba8f0d\";a:10:{s:4:\"hash\";s:32:\"d32f75bd250c022643efa15fc2ba8f0d\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1593576000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1593576000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b5d0f6f7634fe7cdb7e4928e10f48561\";a:10:{s:4:\"hash\";s:32:\"b5d0f6f7634fe7cdb7e4928e10f48561\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1593662400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/time_limit~1593662400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"19356dcb4c4a155d15a99a44a2e1c0c1\";a:10:{s:4:\"hash\";s:32:\"19356dcb4c4a155d15a99a44a2e1c0c1\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1593835200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1593835200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a149b5d1b78488559e10c82c83a4a090\";a:10:{s:4:\"hash\";s:32:\"a149b5d1b78488559e10c82c83a4a090\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1594612800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1594612800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4468c4b1b8442a2dd60fc422a58646e4\";a:10:{s:4:\"hash\";s:32:\"4468c4b1b8442a2dd60fc422a58646e4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1594785600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1594785600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fd089022f72bfe839c9d5efe0427c986\";a:10:{s:4:\"hash\";s:32:\"fd089022f72bfe839c9d5efe0427c986\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1594958400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1594958400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9aa50555ce396ab40805e57cd4af77a0\";a:10:{s:4:\"hash\";s:32:\"9aa50555ce396ab40805e57cd4af77a0\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1595131200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1595131200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"010351d97294db50de353c57161150fb\";a:10:{s:4:\"hash\";s:32:\"010351d97294db50de353c57161150fb\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1595908800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1595908800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8444c3d1f542e47ee93666364f793aaa\";a:10:{s:4:\"hash\";s:32:\"8444c3d1f542e47ee93666364f793aaa\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1596254400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1596254400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7b782cc2c236fbf3ebc7cfb5df603daa\";a:10:{s:4:\"hash\";s:32:\"7b782cc2c236fbf3ebc7cfb5df603daa\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1596859200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1596859200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1302594302c0464727315937b47f3788\";a:10:{s:4:\"hash\";s:32:\"1302594302c0464727315937b47f3788\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1597032000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1597032000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9dc336b71245bfd877d481e98c1f8ccb\";a:10:{s:4:\"hash\";s:32:\"9dc336b71245bfd877d481e98c1f8ccb\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1597377600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1597377600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"829c78e63850275db7c6f7aa79594c9d\";a:10:{s:4:\"hash\";s:32:\"829c78e63850275db7c6f7aa79594c9d\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1604203200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1604203200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e5da5d7bc626bd57b37e1f79df02b054\";a:10:{s:4:\"hash\";s:32:\"e5da5d7bc626bd57b37e1f79df02b054\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1605070800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1605070800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"909f6d4f37fb736e46f0b98223313392\";a:10:{s:4:\"hash\";s:32:\"909f6d4f37fb736e46f0b98223313392\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1605243600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1605243600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"41130b1b84614acb73ab125067af10fe\";a:10:{s:4:\"hash\";s:32:\"41130b1b84614acb73ab125067af10fe\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1605762000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1605762000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"29cdf7ae951aaa6c36684831d3f24bc7\";a:10:{s:4:\"hash\";s:32:\"29cdf7ae951aaa6c36684831d3f24bc7\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1612069200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1612069200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d149d82dac9646efe7e7d89c8e24cb47\";a:10:{s:4:\"hash\";s:32:\"d149d82dac9646efe7e7d89c8e24cb47\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1612155600/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/time_limit~1612155600/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"798bea60c038eae89da56184bf47e98c\";a:10:{s:4:\"hash\";s:32:\"798bea60c038eae89da56184bf47e98c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1612155600/cat_ids~87/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1612155600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7a8ebe853e431c5070a43d3d8e2ea424\";a:10:{s:4:\"hash\";s:32:\"7a8ebe853e431c5070a43d3d8e2ea424\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1612155600/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/time_limit~1612155600/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"701b96bf490b4071e2c45fa1176930d7\";a:10:{s:4:\"hash\";s:32:\"701b96bf490b4071e2c45fa1176930d7\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1612155600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/time_limit~1612155600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"45408620ce59b6fe22968ca2808d659e\";a:10:{s:4:\"hash\";s:32:\"45408620ce59b6fe22968ca2808d659e\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1612155600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/time_limit~1612155600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6e1fad03ebf1144a4719566268c43bb2\";a:10:{s:4:\"hash\";s:32:\"6e1fad03ebf1144a4719566268c43bb2\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1612155600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/time_limit~1612155600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bcde90a5fd7ebc256a689a5972af6e5f\";a:10:{s:4:\"hash\";s:32:\"bcde90a5fd7ebc256a689a5972af6e5f\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1612155600/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1612155600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"213d5f867605ea8e74893795fd83d7d1\";a:10:{s:4:\"hash\";s:32:\"213d5f867605ea8e74893795fd83d7d1\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1612155600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/time_limit~1612155600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1cca5f1f21a9b05f91fb9dc6362cd95a\";a:10:{s:4:\"hash\";s:32:\"1cca5f1f21a9b05f91fb9dc6362cd95a\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1612155600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/time_limit~1612155600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"319fd7fdae6e8fc7c66a7d6a7e0a9aff\";a:10:{s:4:\"hash\";s:32:\"319fd7fdae6e8fc7c66a7d6a7e0a9aff\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1612155600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/time_limit~1612155600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fb1756b559d7db5438eac753d1238077\";a:10:{s:4:\"hash\";s:32:\"fb1756b559d7db5438eac753d1238077\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1612155600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1612155600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4b834ba566f6aa3c328408c2fbd84efe\";a:10:{s:4:\"hash\";s:32:\"4b834ba566f6aa3c328408c2fbd84efe\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1612155600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1612155600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c2e046d27ce1f5caf66c65963cd72bd\";a:10:{s:4:\"hash\";s:32:\"2c2e046d27ce1f5caf66c65963cd72bd\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1612242000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/time_limit~1612242000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"80af4970033c58da2fd27f6547ca58e3\";a:10:{s:4:\"hash\";s:32:\"80af4970033c58da2fd27f6547ca58e3\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1612760400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/time_limit~1612760400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"092ebc4d7294710159514100c78645e1\";a:10:{s:4:\"hash\";s:32:\"092ebc4d7294710159514100c78645e1\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1612760400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1612760400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6fb204b88d0d15cb90d89fcecacaa0e3\";a:10:{s:4:\"hash\";s:32:\"6fb204b88d0d15cb90d89fcecacaa0e3\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1619323200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1619323200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"070f317297f07db47f20bc6ee5b0c81c\";a:10:{s:4:\"hash\";s:32:\"070f317297f07db47f20bc6ee5b0c81c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1619841600/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1619841600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e6ffeaa71cacca614d6653302a6c6d21\";a:10:{s:4:\"hash\";s:32:\"e6ffeaa71cacca614d6653302a6c6d21\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1619841600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1619841600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a6215fffd63d68fda5a6f8b41d4406c2\";a:10:{s:4:\"hash\";s:32:\"a6215fffd63d68fda5a6f8b41d4406c2\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1620532800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1620532800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e8b264c7935eac24a9f9d6cf9318feb6\";a:10:{s:4:\"hash\";s:32:\"e8b264c7935eac24a9f9d6cf9318feb6\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1620705600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1620705600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6d9c5dde8f500ce2ac4ff12aabdec287\";a:10:{s:4:\"hash\";s:32:\"6d9c5dde8f500ce2ac4ff12aabdec287\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1620964800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1620964800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7bfeaa478db6cf530cd2b6fd0ef7fca5\";a:10:{s:4:\"hash\";s:32:\"7bfeaa478db6cf530cd2b6fd0ef7fca5\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1621051200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1621051200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4a2c55d27f162b4a944025c1eb20dea3\";a:10:{s:4:\"hash\";s:32:\"4a2c55d27f162b4a944025c1eb20dea3\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1623211200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1623211200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"57882dcd1b7b62fadfac11ebe9c87566\";a:10:{s:4:\"hash\";s:32:\"57882dcd1b7b62fadfac11ebe9c87566\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1623384000/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1623384000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c4ff7e59e3d278b76bf9386638a88bbf\";a:10:{s:4:\"hash\";s:32:\"c4ff7e59e3d278b76bf9386638a88bbf\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1623384000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1623384000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5074015f59b73b0565b26672689a1220\";a:10:{s:4:\"hash\";s:32:\"5074015f59b73b0565b26672689a1220\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1623643200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1623643200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8aeb79e22567f47d5f7261ebc452fda2\";a:10:{s:4:\"hash\";s:32:\"8aeb79e22567f47d5f7261ebc452fda2\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1623729600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1623729600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f0785631d9f16fba451a9a7397f63dcf\";a:10:{s:4:\"hash\";s:32:\"f0785631d9f16fba451a9a7397f63dcf\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1623988800/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1623988800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fdbad96a4c38ec303962a5789f8ecbb7\";a:10:{s:4:\"hash\";s:32:\"fdbad96a4c38ec303962a5789f8ecbb7\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1623988800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/time_limit~1623988800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a1c96090cfef93039e30d6c60cd4a5a4\";a:10:{s:4:\"hash\";s:32:\"a1c96090cfef93039e30d6c60cd4a5a4\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1623988800/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1623988800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b77dc1e8d532328442e9d33d55ae9f61\";a:10:{s:4:\"hash\";s:32:\"b77dc1e8d532328442e9d33d55ae9f61\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1624075200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1624075200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6bc3fdbae67be03e0eaab73f2285c244\";a:10:{s:4:\"hash\";s:32:\"6bc3fdbae67be03e0eaab73f2285c244\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1625112000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:81:\"/events/action~oneday/time_limit~1625112000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3bdb2f8ab300256ce73fadca580aacd3\";a:10:{s:4:\"hash\";s:32:\"3bdb2f8ab300256ce73fadca580aacd3\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1625112000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/time_limit~1625112000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"32727d3bbde97b975103394af027aaad\";a:10:{s:4:\"hash\";s:32:\"32727d3bbde97b975103394af027aaad\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1626494400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1626494400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"12bc4329f791eb5d21fc8379ebd14af9\";a:10:{s:4:\"hash\";s:32:\"12bc4329f791eb5d21fc8379ebd14af9\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1626753600/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1626753600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"422d1d570659ad59e9acf72612e1156d\";a:10:{s:4:\"hash\";s:32:\"422d1d570659ad59e9acf72612e1156d\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1627358400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:78:\"/events/action~oneday/time_limit~1627358400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dbcb046e60db491bc888e064c1be7196\";a:10:{s:4:\"hash\";s:32:\"dbcb046e60db491bc888e064c1be7196\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1627358400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1627358400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cef07ebd1b1dc720687b21de2b071f51\";a:10:{s:4:\"hash\";s:32:\"cef07ebd1b1dc720687b21de2b071f51\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1637125200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1637125200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ae98e15fc77903bbaa635fdb07c8eb1a\";a:10:{s:4:\"hash\";s:32:\"ae98e15fc77903bbaa635fdb07c8eb1a\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1637298000/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1637298000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"794a4eba4a7cc3919d7d48b0d4b4fea4\";a:10:{s:4:\"hash\";s:32:\"794a4eba4a7cc3919d7d48b0d4b4fea4\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1637384400/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1637384400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4adcf184ce86bc6d57f1f031a4aa7262\";a:10:{s:4:\"hash\";s:32:\"4adcf184ce86bc6d57f1f031a4aa7262\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1637557200/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1637557200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"24869080462a5216b3f9afa49e876d1c\";a:10:{s:4:\"hash\";s:32:\"24869080462a5216b3f9afa49e876d1c\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1637816400/cat_ids~88/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1637816400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1c1b5642863fadfdc9f27970f8a31cec\";a:10:{s:4:\"hash\";s:32:\"1c1b5642863fadfdc9f27970f8a31cec\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1637816400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1637816400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cfbd3ec89342cb5e5a4de910d74bec09\";a:10:{s:4:\"hash\";s:32:\"cfbd3ec89342cb5e5a4de910d74bec09\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1637989200/cat_ids~89/request_format~json/\";s:4:\"path\";s:75:\"/events/action~oneday/time_limit~1637989200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"52c56989661f0113c337d89f1f825f9f\";a:10:{s:4:\"hash\";s:32:\"52c56989661f0113c337d89f1f825f9f\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1637989200/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1637989200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4a465c57b4670ca151d4141550298733\";a:10:{s:4:\"hash\";s:32:\"4a465c57b4670ca151d4141550298733\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~oneday/time_limit~1638248400/request_format~json/\";s:4:\"path\";s:64:\"/events/action~oneday/time_limit~1638248400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7106c3de2002b151aaf153b9a14e7e76\";a:10:{s:4:\"hash\";s:32:\"7106c3de2002b151aaf153b9a14e7e76\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1525147200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1525147200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5639cb6a4eaf76520e3036968f68c899\";a:10:{s:4:\"hash\";s:32:\"5639cb6a4eaf76520e3036968f68c899\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1541044800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1541044800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4043dd4a55715a4d97be8a199dc57bd0\";a:10:{s:4:\"hash\";s:32:\"4043dd4a55715a4d97be8a199dc57bd0\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1556683200/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1556683200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d8b256364b62f03d5ee14a911b49384b\";a:10:{s:4:\"hash\";s:32:\"d8b256364b62f03d5ee14a911b49384b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1556683200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1556683200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d51e3e6c4be71a1a270048448f975e8f\";a:10:{s:4:\"hash\";s:32:\"d51e3e6c4be71a1a270048448f975e8f\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1556683200/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1556683200/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b0c672edffebde56ef36e0f608bc7cac\";a:10:{s:4:\"hash\";s:32:\"b0c672edffebde56ef36e0f608bc7cac\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1556683200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1556683200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9fdb0abbb756de1db25a5d8b1af0d72c\";a:10:{s:4:\"hash\";s:32:\"9fdb0abbb756de1db25a5d8b1af0d72c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1557201600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1557201600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c2e54cc30bbb5e72cf127cb9aad1726d\";a:10:{s:4:\"hash\";s:32:\"c2e54cc30bbb5e72cf127cb9aad1726d\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1557201600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1557201600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7ce7fdb883b1d3c97ee3b00a8f956de7\";a:10:{s:4:\"hash\";s:32:\"7ce7fdb883b1d3c97ee3b00a8f956de7\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1557201600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1557201600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"12b31c856da6ccdaaeaa83040f371f30\";a:10:{s:4:\"hash\";s:32:\"12b31c856da6ccdaaeaa83040f371f30\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1557288000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1557288000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0656eac054fb29d4caaaa0704582a73e\";a:10:{s:4:\"hash\";s:32:\"0656eac054fb29d4caaaa0704582a73e\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1557806400/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1557806400/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d184b44a99ae4fd8f76bca9b85d18c74\";a:10:{s:4:\"hash\";s:32:\"d184b44a99ae4fd8f76bca9b85d18c74\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1557806400/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1557806400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"90c2b47daa9be7cf45dbdb41712fec32\";a:10:{s:4:\"hash\";s:32:\"90c2b47daa9be7cf45dbdb41712fec32\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1557806400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1557806400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ad12062ec312cc20f76e1f740a1ffff5\";a:10:{s:4:\"hash\";s:32:\"ad12062ec312cc20f76e1f740a1ffff5\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1557806400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1557806400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0fb17993b8449d934971524b5c4c7f81\";a:10:{s:4:\"hash\";s:32:\"0fb17993b8449d934971524b5c4c7f81\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1557806400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1557806400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6084f31300f2605fd19c9635ccf8f4fa\";a:10:{s:4:\"hash\";s:32:\"6084f31300f2605fd19c9635ccf8f4fa\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1557806400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1557806400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d8331a6c6bda077853da740152f9634d\";a:10:{s:4:\"hash\";s:32:\"d8331a6c6bda077853da740152f9634d\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1557806400/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1557806400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4a84cfcd3eff124294449e2e2680d77d\";a:10:{s:4:\"hash\";s:32:\"4a84cfcd3eff124294449e2e2680d77d\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1557806400/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1557806400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bb499c5d1b5d91df77caa369be1044ae\";a:10:{s:4:\"hash\";s:32:\"bb499c5d1b5d91df77caa369be1044ae\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1557806400/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1557806400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b7931e89f9526347514939886d0506fd\";a:10:{s:4:\"hash\";s:32:\"b7931e89f9526347514939886d0506fd\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1557892800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1557892800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"869d44279666bd29832981ad4f03da72\";a:10:{s:4:\"hash\";s:32:\"869d44279666bd29832981ad4f03da72\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1557892800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1557892800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f0fd26cb617378960e219af51906125c\";a:10:{s:4:\"hash\";s:32:\"f0fd26cb617378960e219af51906125c\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1558238400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1558238400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2ab3e707be3017deed3232131cd6f0a9\";a:10:{s:4:\"hash\";s:32:\"2ab3e707be3017deed3232131cd6f0a9\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1558324800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1558324800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fd6160dd959ede3fedb834abb3300fcb\";a:10:{s:4:\"hash\";s:32:\"fd6160dd959ede3fedb834abb3300fcb\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1558324800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1558324800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0032d24695b8c3ba9783492c919f38fd\";a:10:{s:4:\"hash\";s:32:\"0032d24695b8c3ba9783492c919f38fd\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1558411200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1558411200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ac4080deecb0ec57a140c1c40e945aaa\";a:10:{s:4:\"hash\";s:32:\"ac4080deecb0ec57a140c1c40e945aaa\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1558411200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1558411200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0faf9bbd690a31cc30624393662c4b3a\";a:10:{s:4:\"hash\";s:32:\"0faf9bbd690a31cc30624393662c4b3a\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1558497600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1558497600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2318b7819cddfbd0a6f70a7fbba6ceb1\";a:10:{s:4:\"hash\";s:32:\"2318b7819cddfbd0a6f70a7fbba6ceb1\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1558497600/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1558497600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d776e7178143a0f00faca37e234619f\";a:10:{s:4:\"hash\";s:32:\"4d776e7178143a0f00faca37e234619f\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1558497600/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1558497600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7fdb39c3908403aa2e6b82c534acd317\";a:10:{s:4:\"hash\";s:32:\"7fdb39c3908403aa2e6b82c534acd317\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1558497600/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1558497600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a2a8e93c99d9f8c69ead284881a7d913\";a:10:{s:4:\"hash\";s:32:\"a2a8e93c99d9f8c69ead284881a7d913\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1558756800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1558756800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1bb2c10f994354de91a1100fdcaa3d0f\";a:10:{s:4:\"hash\";s:32:\"1bb2c10f994354de91a1100fdcaa3d0f\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1558756800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1558756800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"320a652f34e17620161aa9a589b6ad9a\";a:10:{s:4:\"hash\";s:32:\"320a652f34e17620161aa9a589b6ad9a\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1558756800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1558756800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7bdb807ddb07161ca6f2796af8c372fd\";a:10:{s:4:\"hash\";s:32:\"7bdb807ddb07161ca6f2796af8c372fd\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1558756800/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1558756800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a0eaf5cbddcac1f98d8505640f66ed5d\";a:10:{s:4:\"hash\";s:32:\"a0eaf5cbddcac1f98d8505640f66ed5d\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1558756800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1558756800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"22339609915d5f37b8610c8e417a6bea\";a:10:{s:4:\"hash\";s:32:\"22339609915d5f37b8610c8e417a6bea\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1558929600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1558929600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c59956ec57488b03bb2413c771f755bc\";a:10:{s:4:\"hash\";s:32:\"c59956ec57488b03bb2413c771f755bc\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1558929600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1558929600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"73f9874452143c81bb6fdf5e79afc6b5\";a:10:{s:4:\"hash\";s:32:\"73f9874452143c81bb6fdf5e79afc6b5\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1558929600/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1558929600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"893bfeb6e32eb7ee3ae9f0903cec3df6\";a:10:{s:4:\"hash\";s:32:\"893bfeb6e32eb7ee3ae9f0903cec3df6\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1558929600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1558929600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8182af403be3a7a01cf3ec5bd4a6fcda\";a:10:{s:4:\"hash\";s:32:\"8182af403be3a7a01cf3ec5bd4a6fcda\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559102400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1559102400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"03e93cc38cc19d696c4a7fb2f78645dc\";a:10:{s:4:\"hash\";s:32:\"03e93cc38cc19d696c4a7fb2f78645dc\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559188800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1559188800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"63f50292bef1ac16015dec50b8017210\";a:10:{s:4:\"hash\";s:32:\"63f50292bef1ac16015dec50b8017210\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559188800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1559188800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9e5e416dad0a22b17f3dc0f75b6fa195\";a:10:{s:4:\"hash\";s:32:\"9e5e416dad0a22b17f3dc0f75b6fa195\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559188800/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1559188800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ebb50a3593dc72b28648d3b31fdf2e92\";a:10:{s:4:\"hash\";s:32:\"ebb50a3593dc72b28648d3b31fdf2e92\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559188800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1559188800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e2360a9256e2cd0b53cb7a826aa845c7\";a:10:{s:4:\"hash\";s:32:\"e2360a9256e2cd0b53cb7a826aa845c7\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559275200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1559275200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"15f5315556bf0c6341ec93b22dab1089\";a:10:{s:4:\"hash\";s:32:\"15f5315556bf0c6341ec93b22dab1089\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559275200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1559275200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ffaab6b62a95aa99aa5feffa243086e1\";a:10:{s:4:\"hash\";s:32:\"ffaab6b62a95aa99aa5feffa243086e1\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559361600/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1559361600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cc1467210297cc2ae324d0a2d523f965\";a:10:{s:4:\"hash\";s:32:\"cc1467210297cc2ae324d0a2d523f965\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559361600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1559361600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0509a699e1898725203e76da56b8a10e\";a:10:{s:4:\"hash\";s:32:\"0509a699e1898725203e76da56b8a10e\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559361600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1559361600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1905e15c5d6b0bc839fe008cc4813496\";a:10:{s:4:\"hash\";s:32:\"1905e15c5d6b0bc839fe008cc4813496\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559361600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1559361600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"072c8948b9c21eddc08d7f8da2c43a62\";a:10:{s:4:\"hash\";s:32:\"072c8948b9c21eddc08d7f8da2c43a62\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559361600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1559361600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"98e549df13aa4f9db3ae04f0e39426c6\";a:10:{s:4:\"hash\";s:32:\"98e549df13aa4f9db3ae04f0e39426c6\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559361600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1559361600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"63cf7ee3665a8a266cef70f790324619\";a:10:{s:4:\"hash\";s:32:\"63cf7ee3665a8a266cef70f790324619\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559361600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1559361600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3f364eac80f862ee88b1ef5d7f7ce49e\";a:10:{s:4:\"hash\";s:32:\"3f364eac80f862ee88b1ef5d7f7ce49e\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559361600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1559361600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3bbf5b0564c7412dd212291e473a4395\";a:10:{s:4:\"hash\";s:32:\"3bbf5b0564c7412dd212291e473a4395\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559361600/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1559361600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2fc24671462819f6757bd5eaf27d191e\";a:10:{s:4:\"hash\";s:32:\"2fc24671462819f6757bd5eaf27d191e\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559361600/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1559361600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"012ef95c3a68fd91f287cd7335b1617f\";a:10:{s:4:\"hash\";s:32:\"012ef95c3a68fd91f287cd7335b1617f\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559361600/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1559361600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"255b840cbb419e60d55b12d875875bab\";a:10:{s:4:\"hash\";s:32:\"255b840cbb419e60d55b12d875875bab\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559448000/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1559448000/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"62f955fb6dbf1f15407277269867b16c\";a:10:{s:4:\"hash\";s:32:\"62f955fb6dbf1f15407277269867b16c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559534400/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1559534400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3ac2276087da813b9626a80d6b9bcdf7\";a:10:{s:4:\"hash\";s:32:\"3ac2276087da813b9626a80d6b9bcdf7\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559534400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1559534400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5bc6edd2649f9dfe4f551dc081a41398\";a:10:{s:4:\"hash\";s:32:\"5bc6edd2649f9dfe4f551dc081a41398\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559620800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1559620800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"02c003ae1f6f8e456ff18c075d903457\";a:10:{s:4:\"hash\";s:32:\"02c003ae1f6f8e456ff18c075d903457\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559620800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1559620800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5bea16418db0db8c0a7a470da246e0f4\";a:10:{s:4:\"hash\";s:32:\"5bea16418db0db8c0a7a470da246e0f4\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559620800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1559620800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"283dc734186b9856389b38c1d32eb545\";a:10:{s:4:\"hash\";s:32:\"283dc734186b9856389b38c1d32eb545\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559620800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1559620800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"91af3e4d5b0f157019915b33d2dc6edb\";a:10:{s:4:\"hash\";s:32:\"91af3e4d5b0f157019915b33d2dc6edb\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559707200/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1559707200/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0ce84c76ef9722b8d54c698d8159ac4f\";a:10:{s:4:\"hash\";s:32:\"0ce84c76ef9722b8d54c698d8159ac4f\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559707200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1559707200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9d2ef90eac688543aee608f6cd1757a8\";a:10:{s:4:\"hash\";s:32:\"9d2ef90eac688543aee608f6cd1757a8\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559707200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1559707200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"63c80d5ae601eb984b32ccd02a558cd8\";a:10:{s:4:\"hash\";s:32:\"63c80d5ae601eb984b32ccd02a558cd8\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559707200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1559707200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7abb76aca96905879f50359999f67682\";a:10:{s:4:\"hash\";s:32:\"7abb76aca96905879f50359999f67682\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559793600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1559793600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3f83a75d5a51254da7f0c1c0d84532a1\";a:10:{s:4:\"hash\";s:32:\"3f83a75d5a51254da7f0c1c0d84532a1\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559880000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1559880000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a221a4440946ca2ce7fce54c6cd1431e\";a:10:{s:4:\"hash\";s:32:\"a221a4440946ca2ce7fce54c6cd1431e\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559880000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1559880000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0aaf0ce00b023c125819a9619df76979\";a:10:{s:4:\"hash\";s:32:\"0aaf0ce00b023c125819a9619df76979\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559966400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1559966400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"342ec02326ad7717f1d09ece6681f433\";a:10:{s:4:\"hash\";s:32:\"342ec02326ad7717f1d09ece6681f433\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559966400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1559966400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d2b5c878c40951c082e4c65a1f1986b3\";a:10:{s:4:\"hash\";s:32:\"d2b5c878c40951c082e4c65a1f1986b3\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1559966400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1559966400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff480b5ae74895de8d52c6e49d8af292\";a:10:{s:4:\"hash\";s:32:\"ff480b5ae74895de8d52c6e49d8af292\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560052800/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1560052800/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fe2241297c7172afa07cca8a454a3ebf\";a:10:{s:4:\"hash\";s:32:\"fe2241297c7172afa07cca8a454a3ebf\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560052800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1560052800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"81178c4268c596c245ae89ce383c1afb\";a:10:{s:4:\"hash\";s:32:\"81178c4268c596c245ae89ce383c1afb\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560139200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1560139200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"be67f4293cc00e595e176c555b8395a6\";a:10:{s:4:\"hash\";s:32:\"be67f4293cc00e595e176c555b8395a6\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560139200/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1560139200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d4e6c010b83abe4f65740ee9458e408e\";a:10:{s:4:\"hash\";s:32:\"d4e6c010b83abe4f65740ee9458e408e\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560139200/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1560139200/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9287c56d44c46002bb3ab5e35db340cb\";a:10:{s:4:\"hash\";s:32:\"9287c56d44c46002bb3ab5e35db340cb\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560139200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1560139200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6d25c04f9a0ede749e0eaf12cfc10fa6\";a:10:{s:4:\"hash\";s:32:\"6d25c04f9a0ede749e0eaf12cfc10fa6\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560139200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1560139200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1da46952f7f7848eb43f6f8e2f4baa88\";a:10:{s:4:\"hash\";s:32:\"1da46952f7f7848eb43f6f8e2f4baa88\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560139200/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1560139200/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fcc23183882a8b681954acdf443c70b0\";a:10:{s:4:\"hash\";s:32:\"fcc23183882a8b681954acdf443c70b0\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560139200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1560139200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"22b58ec115b3eca4084848c7397bee14\";a:10:{s:4:\"hash\";s:32:\"22b58ec115b3eca4084848c7397bee14\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560139200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1560139200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"866bdceba021e5a16c37c8c7dce1f5b7\";a:10:{s:4:\"hash\";s:32:\"866bdceba021e5a16c37c8c7dce1f5b7\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560139200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1560139200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ad36bf004c84f9e471c1e1da2d47e863\";a:10:{s:4:\"hash\";s:32:\"ad36bf004c84f9e471c1e1da2d47e863\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560139200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1560139200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"998cb96ad251454582a07ee52810cc73\";a:10:{s:4:\"hash\";s:32:\"998cb96ad251454582a07ee52810cc73\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560225600/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1560225600/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f1e38f6c7ebe5c8ef988aa20237b2522\";a:10:{s:4:\"hash\";s:32:\"f1e38f6c7ebe5c8ef988aa20237b2522\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560225600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1560225600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1d744677d902137741d9bfa77f5d19fe\";a:10:{s:4:\"hash\";s:32:\"1d744677d902137741d9bfa77f5d19fe\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560312000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1560312000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"088026115b3b156aaa29dca34c0dc806\";a:10:{s:4:\"hash\";s:32:\"088026115b3b156aaa29dca34c0dc806\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560312000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1560312000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e0ddb2382b356c07eeaf451eeb7fb73b\";a:10:{s:4:\"hash\";s:32:\"e0ddb2382b356c07eeaf451eeb7fb73b\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560571200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1560571200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"950310aedd70694b994e85fabc5952ac\";a:10:{s:4:\"hash\";s:32:\"950310aedd70694b994e85fabc5952ac\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560744000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1560744000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"61ea5181b68a6297aeda0de22efdbd2c\";a:10:{s:4:\"hash\";s:32:\"61ea5181b68a6297aeda0de22efdbd2c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560830400/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1560830400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6a13989fc530b8c99071c925425f451c\";a:10:{s:4:\"hash\";s:32:\"6a13989fc530b8c99071c925425f451c\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560830400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1560830400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"daa9a039c36253151898074d11aaa6ac\";a:10:{s:4:\"hash\";s:32:\"daa9a039c36253151898074d11aaa6ac\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560830400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1560830400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"13961bf32613dd2227bafa35e91bd60e\";a:10:{s:4:\"hash\";s:32:\"13961bf32613dd2227bafa35e91bd60e\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560916800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1560916800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a30963dc28a4818fce57bf7bbaced49b\";a:10:{s:4:\"hash\";s:32:\"a30963dc28a4818fce57bf7bbaced49b\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1560916800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1560916800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"52a95a16a45e35c7bfe0e93e65909c1d\";a:10:{s:4:\"hash\";s:32:\"52a95a16a45e35c7bfe0e93e65909c1d\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1561176000/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1561176000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"78d89ccfb8a95d8c46c094f7a890d90d\";a:10:{s:4:\"hash\";s:32:\"78d89ccfb8a95d8c46c094f7a890d90d\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1561262400/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1561262400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"302804ea450627d54ce8d834a456d3b0\";a:10:{s:4:\"hash\";s:32:\"302804ea450627d54ce8d834a456d3b0\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1561262400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1561262400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef30ec3ec68d9bf934b6eca1aeddc7b7\";a:10:{s:4:\"hash\";s:32:\"ef30ec3ec68d9bf934b6eca1aeddc7b7\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1561348800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1561348800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9f62d09ff8585b4c899e2f5327f90c8d\";a:10:{s:4:\"hash\";s:32:\"9f62d09ff8585b4c899e2f5327f90c8d\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1561608000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1561608000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f2c4f01d6bfb57645c9bbc7c3962819\";a:10:{s:4:\"hash\";s:32:\"7f2c4f01d6bfb57645c9bbc7c3962819\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1561694400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1561694400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"504ad7f2e8bef345e6139c404f1910b7\";a:10:{s:4:\"hash\";s:32:\"504ad7f2e8bef345e6139c404f1910b7\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1561780800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1561780800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e94b5df0271313ac3d13b93e88fe1cd3\";a:10:{s:4:\"hash\";s:32:\"e94b5df0271313ac3d13b93e88fe1cd3\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1561953600/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1561953600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b79d3bfd70aea33c99e26c67cf8ecaeb\";a:10:{s:4:\"hash\";s:32:\"b79d3bfd70aea33c99e26c67cf8ecaeb\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1561953600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1561953600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3361ff0b15d55134a53fdc27cd05664f\";a:10:{s:4:\"hash\";s:32:\"3361ff0b15d55134a53fdc27cd05664f\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1561953600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1561953600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"67cecfde5e0ebd81f95b15fe37770fd4\";a:10:{s:4:\"hash\";s:32:\"67cecfde5e0ebd81f95b15fe37770fd4\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1561953600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1561953600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"606d0a62261cf5ef01d32970b7c5cd01\";a:10:{s:4:\"hash\";s:32:\"606d0a62261cf5ef01d32970b7c5cd01\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1561953600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1561953600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"58ad554e490b0b146978a0ab9e82db52\";a:10:{s:4:\"hash\";s:32:\"58ad554e490b0b146978a0ab9e82db52\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1561953600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1561953600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f336b242f88d71668b1000cf1128bb66\";a:10:{s:4:\"hash\";s:32:\"f336b242f88d71668b1000cf1128bb66\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1562385600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1562385600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3d775a2f7cc60e86b0ca39a11cb2130d\";a:10:{s:4:\"hash\";s:32:\"3d775a2f7cc60e86b0ca39a11cb2130d\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1562385600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1562385600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"68a1d4cd6df10908dc48b04c044f59e6\";a:10:{s:4:\"hash\";s:32:\"68a1d4cd6df10908dc48b04c044f59e6\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1562385600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1562385600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"102fe82d116944f30257c594da6a7c56\";a:10:{s:4:\"hash\";s:32:\"102fe82d116944f30257c594da6a7c56\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1562385600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1562385600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"acbcd30b4a9c66ff6263c0d324f7151c\";a:10:{s:4:\"hash\";s:32:\"acbcd30b4a9c66ff6263c0d324f7151c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1562558400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1562558400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d826905a67c164fbd5d4073406747c92\";a:10:{s:4:\"hash\";s:32:\"d826905a67c164fbd5d4073406747c92\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1562558400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1562558400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bdf70394495c3f824b91155b2e13e85b\";a:10:{s:4:\"hash\";s:32:\"bdf70394495c3f824b91155b2e13e85b\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1562904000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1562904000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ea0e5d95d26414dc5cd76e2c7ea5d1a1\";a:10:{s:4:\"hash\";s:32:\"ea0e5d95d26414dc5cd76e2c7ea5d1a1\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1562990400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1562990400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d56ae403269d8888e935358edb56bff2\";a:10:{s:4:\"hash\";s:32:\"d56ae403269d8888e935358edb56bff2\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1562990400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1562990400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c76a7914b513d898aa0ba6c3ab5f1548\";a:10:{s:4:\"hash\";s:32:\"c76a7914b513d898aa0ba6c3ab5f1548\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1562990400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1562990400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fade5a5ee3d4d0cce6b762a2b85e8e92\";a:10:{s:4:\"hash\";s:32:\"fade5a5ee3d4d0cce6b762a2b85e8e92\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1562990400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1562990400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a85a577c3fe07fbeaa0c39fbad313606\";a:10:{s:4:\"hash\";s:32:\"a85a577c3fe07fbeaa0c39fbad313606\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1563076800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1563076800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b1a749d1bb2634dc427c7f0312f7bfaa\";a:10:{s:4:\"hash\";s:32:\"b1a749d1bb2634dc427c7f0312f7bfaa\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1563163200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1563163200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d5628f55315ba888c21bcbe87cc17be2\";a:10:{s:4:\"hash\";s:32:\"d5628f55315ba888c21bcbe87cc17be2\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1563163200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1563163200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"38442ba1299706c50a63a989e5b086da\";a:10:{s:4:\"hash\";s:32:\"38442ba1299706c50a63a989e5b086da\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1563163200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1563163200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"89f710f1db9b71c71062b6b125106560\";a:10:{s:4:\"hash\";s:32:\"89f710f1db9b71c71062b6b125106560\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1563163200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1563163200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a1a8f218355605d96aa5acf1f23c55c2\";a:10:{s:4:\"hash\";s:32:\"a1a8f218355605d96aa5acf1f23c55c2\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1563163200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1563163200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5423929b863b360ad1808ae4b1ee3b2e\";a:10:{s:4:\"hash\";s:32:\"5423929b863b360ad1808ae4b1ee3b2e\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1563508800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1563508800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dc195fc3fd125e0f57d7903599e7d15c\";a:10:{s:4:\"hash\";s:32:\"dc195fc3fd125e0f57d7903599e7d15c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1563595200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1563595200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"048d8665482e2b6e082b410b461ad79f\";a:10:{s:4:\"hash\";s:32:\"048d8665482e2b6e082b410b461ad79f\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1563768000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1563768000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"227e39a87bfef57442fa0f180ed6ce52\";a:10:{s:4:\"hash\";s:32:\"227e39a87bfef57442fa0f180ed6ce52\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1564113600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1564113600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c204111718ebba913606faf404a446b4\";a:10:{s:4:\"hash\";s:32:\"c204111718ebba913606faf404a446b4\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1564632000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1564632000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ffe29acfdd7bd174996f22aaf2aa3924\";a:10:{s:4:\"hash\";s:32:\"ffe29acfdd7bd174996f22aaf2aa3924\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1564632000/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1564632000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0a0bf167a242c7afa3a39cbdfb48ea5d\";a:10:{s:4:\"hash\";s:32:\"0a0bf167a242c7afa3a39cbdfb48ea5d\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1564718400/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1564718400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"39737f0c3203e63a80e6256f4b0eb756\";a:10:{s:4:\"hash\";s:32:\"39737f0c3203e63a80e6256f4b0eb756\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1564718400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1564718400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"99ad861b4e9b90aaa32e9af9a2794479\";a:10:{s:4:\"hash\";s:32:\"99ad861b4e9b90aaa32e9af9a2794479\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1564718400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1564718400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"04fb928636951c90c163de3899e2bffb\";a:10:{s:4:\"hash\";s:32:\"04fb928636951c90c163de3899e2bffb\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1564718400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1564718400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bc65f91f38843f116b7fa1d3c3a02aaf\";a:10:{s:4:\"hash\";s:32:\"bc65f91f38843f116b7fa1d3c3a02aaf\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1564718400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1564718400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6f662d43aaf43ad482c7be345de2d7fe\";a:10:{s:4:\"hash\";s:32:\"6f662d43aaf43ad482c7be345de2d7fe\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1564804800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1564804800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4e10e9b1b75b3fe3b1fe8427c1861eac\";a:10:{s:4:\"hash\";s:32:\"4e10e9b1b75b3fe3b1fe8427c1861eac\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1564804800/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1564804800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1cbf089a88830334068d37614ae4647c\";a:10:{s:4:\"hash\";s:32:\"1cbf089a88830334068d37614ae4647c\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1564804800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1564804800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"78f64f7a8b872595411fd9410e17a6cc\";a:10:{s:4:\"hash\";s:32:\"78f64f7a8b872595411fd9410e17a6cc\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1565323200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1565323200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9747e6b1b1368e4c97761c4a79892ea9\";a:10:{s:4:\"hash\";s:32:\"9747e6b1b1368e4c97761c4a79892ea9\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1566446400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1566446400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ed6b0df7ad3a8a5448a5ac3e311ffff9\";a:10:{s:4:\"hash\";s:32:\"ed6b0df7ad3a8a5448a5ac3e311ffff9\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1567051200/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1567051200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"230506fccec19ed3f094b4098b3fea99\";a:10:{s:4:\"hash\";s:32:\"230506fccec19ed3f094b4098b3fea99\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1567051200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1567051200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"13f7b775ecbd3963f7589bc133b9657c\";a:10:{s:4:\"hash\";s:32:\"13f7b775ecbd3963f7589bc133b9657c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1567051200/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1567051200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef9bc85d55df08eee965025baab114c3\";a:10:{s:4:\"hash\";s:32:\"ef9bc85d55df08eee965025baab114c3\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1567051200/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1567051200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7dc7b8b9f59d1a8964e1ba2011ca349e\";a:10:{s:4:\"hash\";s:32:\"7dc7b8b9f59d1a8964e1ba2011ca349e\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1567051200/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1567051200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c438f4bd03c524e26876a093fddc478d\";a:10:{s:4:\"hash\";s:32:\"c438f4bd03c524e26876a093fddc478d\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1567137600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1567137600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d37eb1a8aa13f77f26d17a09c94fcd9\";a:10:{s:4:\"hash\";s:32:\"4d37eb1a8aa13f77f26d17a09c94fcd9\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1567224000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1567224000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3fb403f19c7d830c78f0a24ab14e867d\";a:10:{s:4:\"hash\";s:32:\"3fb403f19c7d830c78f0a24ab14e867d\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1567656000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1567656000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1919fb83d675d2c5428d4981698fd7d2\";a:10:{s:4:\"hash\";s:32:\"1919fb83d675d2c5428d4981698fd7d2\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1572580800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1572580800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0260393ecd0c342c45332a41b13ae789\";a:10:{s:4:\"hash\";s:32:\"0260393ecd0c342c45332a41b13ae789\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1572580800/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1572580800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e98384650451f8a33dff153ea7114ac6\";a:10:{s:4:\"hash\";s:32:\"e98384650451f8a33dff153ea7114ac6\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1572667200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1572667200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"554f5d0b8562dbdb46bdf57c13fe76ed\";a:10:{s:4:\"hash\";s:32:\"554f5d0b8562dbdb46bdf57c13fe76ed\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1572753600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1572753600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"168b1c51a75d485400d258f38e98bf47\";a:10:{s:4:\"hash\";s:32:\"168b1c51a75d485400d258f38e98bf47\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1573275600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1573275600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"de81ca73744c2be3d1df091b1c8f6b3c\";a:10:{s:4:\"hash\";s:32:\"de81ca73744c2be3d1df091b1c8f6b3c\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1573362000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1573362000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2e7203ded3be3dc99b051d3507f5aff0\";a:10:{s:4:\"hash\";s:32:\"2e7203ded3be3dc99b051d3507f5aff0\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1573448400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1573448400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c96deab52eec999a6dffbb11a6aeaeb9\";a:10:{s:4:\"hash\";s:32:\"c96deab52eec999a6dffbb11a6aeaeb9\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1573707600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1573707600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c1b4cc43c3f9f19a6d17bbab58c9ec39\";a:10:{s:4:\"hash\";s:32:\"c1b4cc43c3f9f19a6d17bbab58c9ec39\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1574053200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1574053200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5891ead0ae6fcd411bbed5f79f8fd6d8\";a:10:{s:4:\"hash\";s:32:\"5891ead0ae6fcd411bbed5f79f8fd6d8\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1574485200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1574485200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"23176ae3f3aca2aec3bc08dc1d02f9fa\";a:10:{s:4:\"hash\";s:32:\"23176ae3f3aca2aec3bc08dc1d02f9fa\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1574658000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1574658000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b75681f04aa70725dcee3ab4b875c7ee\";a:10:{s:4:\"hash\";s:32:\"b75681f04aa70725dcee3ab4b875c7ee\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1574830800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1574830800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6733ce53dcb50aa6517e33afe6128693\";a:10:{s:4:\"hash\";s:32:\"6733ce53dcb50aa6517e33afe6128693\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1574917200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1574917200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c9f970209bd578000c91854280f2fb4\";a:10:{s:4:\"hash\";s:32:\"3c9f970209bd578000c91854280f2fb4\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1580533200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1580533200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"92806942e8af7d067819808c012734ec\";a:10:{s:4:\"hash\";s:32:\"92806942e8af7d067819808c012734ec\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1585713600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1585713600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"46526f8ad17127a73ce3c9a3dc62b02b\";a:10:{s:4:\"hash\";s:32:\"46526f8ad17127a73ce3c9a3dc62b02b\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1586318400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1586318400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff7ef0686dbae7dd47b6f6f08c9b1be6\";a:10:{s:4:\"hash\";s:32:\"ff7ef0686dbae7dd47b6f6f08c9b1be6\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1586577600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1586577600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"345fbd7cb6cdbfc72c7188bca7d7664f\";a:10:{s:4:\"hash\";s:32:\"345fbd7cb6cdbfc72c7188bca7d7664f\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1587096000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1587096000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4cf2de4a2120b351ad5dfc264b2040d2\";a:10:{s:4:\"hash\";s:32:\"4cf2de4a2120b351ad5dfc264b2040d2\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1587355200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1587355200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e78ecfc82cb2d65d4b3f1b60ea1407c0\";a:10:{s:4:\"hash\";s:32:\"e78ecfc82cb2d65d4b3f1b60ea1407c0\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1587700800/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1587700800/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fc5ed25538fc91a012f552e2b1d6f5e0\";a:10:{s:4:\"hash\";s:32:\"fc5ed25538fc91a012f552e2b1d6f5e0\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1587960000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1587960000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"072efb2352e297962c5ba33fe7695cac\";a:10:{s:4:\"hash\";s:32:\"072efb2352e297962c5ba33fe7695cac\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1588132800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1588132800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9a3c502b8e6f131a7ccd8c00428d479b\";a:10:{s:4:\"hash\";s:32:\"9a3c502b8e6f131a7ccd8c00428d479b\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1588132800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1588132800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d59f11d767d378565e40e95d6a07bbb7\";a:10:{s:4:\"hash\";s:32:\"d59f11d767d378565e40e95d6a07bbb7\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1588305600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1588305600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3077c98fcb92bd5384790378db93cf06\";a:10:{s:4:\"hash\";s:32:\"3077c98fcb92bd5384790378db93cf06\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1588305600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1588305600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"73826c1ba27725daf035f6c0108b3a86\";a:10:{s:4:\"hash\";s:32:\"73826c1ba27725daf035f6c0108b3a86\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1588305600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1588305600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bee083e930ff4addd8fb6952788edcad\";a:10:{s:4:\"hash\";s:32:\"bee083e930ff4addd8fb6952788edcad\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1588305600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1588305600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f63b375b2ef5c8f2c61549b39f2ba8f2\";a:10:{s:4:\"hash\";s:32:\"f63b375b2ef5c8f2c61549b39f2ba8f2\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1588305600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1588305600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6df71136dae3f0b995a07ef8c6d7a076\";a:10:{s:4:\"hash\";s:32:\"6df71136dae3f0b995a07ef8c6d7a076\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1588305600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1588305600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"661100777be4a6408abefc7d7439064e\";a:10:{s:4:\"hash\";s:32:\"661100777be4a6408abefc7d7439064e\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1588305600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1588305600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9f63a2f2c0250e2fcae0d45f47c72a2e\";a:10:{s:4:\"hash\";s:32:\"9f63a2f2c0250e2fcae0d45f47c72a2e\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1588651200/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1588651200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aaaeaa54838e0e3fb57fad4ff6bcddb8\";a:10:{s:4:\"hash\";s:32:\"aaaeaa54838e0e3fb57fad4ff6bcddb8\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1588651200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1588651200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3157b83df9e82c92fcacb6918875ca3b\";a:10:{s:4:\"hash\";s:32:\"3157b83df9e82c92fcacb6918875ca3b\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1588737600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1588737600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"075b7709af4747b2a17c22f5fb674054\";a:10:{s:4:\"hash\";s:32:\"075b7709af4747b2a17c22f5fb674054\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1588737600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1588737600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"78bcba7c2212aa2b8407cff53a0c8b55\";a:10:{s:4:\"hash\";s:32:\"78bcba7c2212aa2b8407cff53a0c8b55\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1588737600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1588737600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6bcaf69430c066812c15c1f6ec6e93b2\";a:10:{s:4:\"hash\";s:32:\"6bcaf69430c066812c15c1f6ec6e93b2\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1588737600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1588737600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"74c29806cfba376746a115253835b461\";a:10:{s:4:\"hash\";s:32:\"74c29806cfba376746a115253835b461\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1588824000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1588824000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"01f5459d26492ab2192492ea783ed250\";a:10:{s:4:\"hash\";s:32:\"01f5459d26492ab2192492ea783ed250\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1588910400/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1588910400/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"522347b6bef2d55cc22e897d9c1753e1\";a:10:{s:4:\"hash\";s:32:\"522347b6bef2d55cc22e897d9c1753e1\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1588996800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1588996800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cda5bfed7e9b2760ccedb1864a76cf15\";a:10:{s:4:\"hash\";s:32:\"cda5bfed7e9b2760ccedb1864a76cf15\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589256000/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1589256000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b1664563305e8caa819af3f67081ad71\";a:10:{s:4:\"hash\";s:32:\"b1664563305e8caa819af3f67081ad71\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589256000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1589256000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cf4bbc113abaca459b477479722ede08\";a:10:{s:4:\"hash\";s:32:\"cf4bbc113abaca459b477479722ede08\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589342400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1589342400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"13775cba9224e70374efdba8251551db\";a:10:{s:4:\"hash\";s:32:\"13775cba9224e70374efdba8251551db\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589428800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1589428800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a81a0d06b17440e09aa7cf87822ab2d9\";a:10:{s:4:\"hash\";s:32:\"a81a0d06b17440e09aa7cf87822ab2d9\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589428800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1589428800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b9810b9936f6c67f65053d151d6c3087\";a:10:{s:4:\"hash\";s:32:\"b9810b9936f6c67f65053d151d6c3087\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589601600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1589601600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5bba38730347095a80436141505ac2eb\";a:10:{s:4:\"hash\";s:32:\"5bba38730347095a80436141505ac2eb\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589601600/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1589601600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0b574b6b7530e7d855c539e7c559af68\";a:10:{s:4:\"hash\";s:32:\"0b574b6b7530e7d855c539e7c559af68\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589601600/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1589601600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5533ba13d5f98e9c4639f80dc8583253\";a:10:{s:4:\"hash\";s:32:\"5533ba13d5f98e9c4639f80dc8583253\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589601600/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1589601600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a86e5e749dbd1185eba4fc307b925ff\";a:10:{s:4:\"hash\";s:32:\"8a86e5e749dbd1185eba4fc307b925ff\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589688000/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1589688000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1722330030ad38b4c6e1859f6a537d7f\";a:10:{s:4:\"hash\";s:32:\"1722330030ad38b4c6e1859f6a537d7f\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589688000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1589688000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d77a9f31071352926c56edc20965299f\";a:10:{s:4:\"hash\";s:32:\"d77a9f31071352926c56edc20965299f\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589688000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1589688000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c7141d1e88fdcb38a1c5e7ba3226e505\";a:10:{s:4:\"hash\";s:32:\"c7141d1e88fdcb38a1c5e7ba3226e505\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589774400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1589774400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"198b0d665516a0d49338a2572e43987a\";a:10:{s:4:\"hash\";s:32:\"198b0d665516a0d49338a2572e43987a\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589860800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1589860800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0b9cdd6f27b227770e7185e8a16271b5\";a:10:{s:4:\"hash\";s:32:\"0b9cdd6f27b227770e7185e8a16271b5\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589860800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1589860800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"350e8359fe19c66eb1d15a014c6f1d68\";a:10:{s:4:\"hash\";s:32:\"350e8359fe19c66eb1d15a014c6f1d68\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589860800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1589860800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a9281d32d930031e9f5a7ed9c3f04c8f\";a:10:{s:4:\"hash\";s:32:\"a9281d32d930031e9f5a7ed9c3f04c8f\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589860800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1589860800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"28b126ae7315bc5df2df07500410af90\";a:10:{s:4:\"hash\";s:32:\"28b126ae7315bc5df2df07500410af90\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589860800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1589860800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d0394a43e8e88c188d3b48d6aaf20fbf\";a:10:{s:4:\"hash\";s:32:\"d0394a43e8e88c188d3b48d6aaf20fbf\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589860800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1589860800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0490d1c3eba7737a4c337a3b315cf710\";a:10:{s:4:\"hash\";s:32:\"0490d1c3eba7737a4c337a3b315cf710\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589860800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1589860800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4c5c66de2b45cdf900fb52acd043f70d\";a:10:{s:4:\"hash\";s:32:\"4c5c66de2b45cdf900fb52acd043f70d\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589947200/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1589947200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"222092ec1eebd601a1b9ce8da16e0153\";a:10:{s:4:\"hash\";s:32:\"222092ec1eebd601a1b9ce8da16e0153\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589947200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1589947200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c056c20872c04e14c963988450fbc839\";a:10:{s:4:\"hash\";s:32:\"c056c20872c04e14c963988450fbc839\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589947200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1589947200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8d03613a210e02e143199fe5bf43c3eb\";a:10:{s:4:\"hash\";s:32:\"8d03613a210e02e143199fe5bf43c3eb\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1589947200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1589947200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c7519ce8a1ddefd8e5431846eef2c704\";a:10:{s:4:\"hash\";s:32:\"c7519ce8a1ddefd8e5431846eef2c704\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590033600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1590033600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"536ef5257ec1a157651094e21eb5750d\";a:10:{s:4:\"hash\";s:32:\"536ef5257ec1a157651094e21eb5750d\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590033600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1590033600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"affe5153b5e1ea78bfa440d05a14bf2f\";a:10:{s:4:\"hash\";s:32:\"affe5153b5e1ea78bfa440d05a14bf2f\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590033600/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1590033600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"919e2896c66221857fdd04bbcdc7e503\";a:10:{s:4:\"hash\";s:32:\"919e2896c66221857fdd04bbcdc7e503\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590033600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1590033600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f0b07b933ebeef199c697b71c4c990f6\";a:10:{s:4:\"hash\";s:32:\"f0b07b933ebeef199c697b71c4c990f6\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590033600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1590033600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2211f849ddeb70db3b040b09943ee21b\";a:10:{s:4:\"hash\";s:32:\"2211f849ddeb70db3b040b09943ee21b\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590033600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1590033600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"81ee026fe24e58316682175efcc318bb\";a:10:{s:4:\"hash\";s:32:\"81ee026fe24e58316682175efcc318bb\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590206400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1590206400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"47e50b3bf6f9c302badbc21d1df93183\";a:10:{s:4:\"hash\";s:32:\"47e50b3bf6f9c302badbc21d1df93183\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590379200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1590379200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0e5a71db22cbd4766b5ef9fc8a47849a\";a:10:{s:4:\"hash\";s:32:\"0e5a71db22cbd4766b5ef9fc8a47849a\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590379200/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1590379200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c32f4c134f91990672c4de523beab989\";a:10:{s:4:\"hash\";s:32:\"c32f4c134f91990672c4de523beab989\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590379200/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1590379200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3be17d624a7bc09baca5105c96c1c8ad\";a:10:{s:4:\"hash\";s:32:\"3be17d624a7bc09baca5105c96c1c8ad\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590379200/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1590379200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a066cd28c282a7ac3d83252e3dadc4da\";a:10:{s:4:\"hash\";s:32:\"a066cd28c282a7ac3d83252e3dadc4da\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590465600/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1590465600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"062025ec3bb0081233d505c054167074\";a:10:{s:4:\"hash\";s:32:\"062025ec3bb0081233d505c054167074\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590465600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1590465600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2e313fa333834e8549430d699825198b\";a:10:{s:4:\"hash\";s:32:\"2e313fa333834e8549430d699825198b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590552000/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1590552000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"26cfd01ed311c042dd88e0fe1cc5f538\";a:10:{s:4:\"hash\";s:32:\"26cfd01ed311c042dd88e0fe1cc5f538\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590552000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1590552000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"49b1197607f4a075ee1eab1441b0b3db\";a:10:{s:4:\"hash\";s:32:\"49b1197607f4a075ee1eab1441b0b3db\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590638400/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1590638400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5cce0071226d40eed03ede6ee815ae59\";a:10:{s:4:\"hash\";s:32:\"5cce0071226d40eed03ede6ee815ae59\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590638400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1590638400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fa0affa1ee666884db69ac7a5940824a\";a:10:{s:4:\"hash\";s:32:\"fa0affa1ee666884db69ac7a5940824a\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590638400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1590638400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7c81b8b58ded3bc33d6ba378120e5d57\";a:10:{s:4:\"hash\";s:32:\"7c81b8b58ded3bc33d6ba378120e5d57\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590638400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1590638400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"11c89c584e37f71f07e203545be14c46\";a:10:{s:4:\"hash\";s:32:\"11c89c584e37f71f07e203545be14c46\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590638400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1590638400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9beea7df2a487ad5bcb59ffed14c453f\";a:10:{s:4:\"hash\";s:32:\"9beea7df2a487ad5bcb59ffed14c453f\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590984000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1590984000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ce3a9f17a5284ecf546fd1250e99de92\";a:10:{s:4:\"hash\";s:32:\"ce3a9f17a5284ecf546fd1250e99de92\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590984000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1590984000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c5454c092c63f57d0deab091f1ec6cf\";a:10:{s:4:\"hash\";s:32:\"3c5454c092c63f57d0deab091f1ec6cf\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590984000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1590984000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e59144ba9d6b70f86054bdbdcb433410\";a:10:{s:4:\"hash\";s:32:\"e59144ba9d6b70f86054bdbdcb433410\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590984000/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1590984000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"732347764453c06abb1549562a073eff\";a:10:{s:4:\"hash\";s:32:\"732347764453c06abb1549562a073eff\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590984000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1590984000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d78eafc0cfb5e14b59fd810a2bf38657\";a:10:{s:4:\"hash\";s:32:\"d78eafc0cfb5e14b59fd810a2bf38657\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590984000/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1590984000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"85ffd4563e49e02c76e6f13bd5878ea6\";a:10:{s:4:\"hash\";s:32:\"85ffd4563e49e02c76e6f13bd5878ea6\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590984000/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1590984000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9464533a5f16697a4645e511ddd07985\";a:10:{s:4:\"hash\";s:32:\"9464533a5f16697a4645e511ddd07985\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1590984000/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1590984000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e181479d7c5a931e5874a12e3f91b50a\";a:10:{s:4:\"hash\";s:32:\"e181479d7c5a931e5874a12e3f91b50a\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591070400/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1591070400/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c269c392e208a75d1937f1f5058e2a86\";a:10:{s:4:\"hash\";s:32:\"c269c392e208a75d1937f1f5058e2a86\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591070400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1591070400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dba36cd3aad1fe67352a0d9046ec7ece\";a:10:{s:4:\"hash\";s:32:\"dba36cd3aad1fe67352a0d9046ec7ece\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591070400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1591070400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"94888ab865874fc0ccc92de3324e2752\";a:10:{s:4:\"hash\";s:32:\"94888ab865874fc0ccc92de3324e2752\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591070400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1591070400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5de6c23492bb74faab98088597376fbf\";a:10:{s:4:\"hash\";s:32:\"5de6c23492bb74faab98088597376fbf\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591156800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1591156800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9a457e69a35422b5e7b4c6c59fba64d4\";a:10:{s:4:\"hash\";s:32:\"9a457e69a35422b5e7b4c6c59fba64d4\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591156800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1591156800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"22f98e151760300dd068197a3b49dc3d\";a:10:{s:4:\"hash\";s:32:\"22f98e151760300dd068197a3b49dc3d\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591156800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1591156800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0cdef49ed5cba897abd67dda59b49d07\";a:10:{s:4:\"hash\";s:32:\"0cdef49ed5cba897abd67dda59b49d07\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591156800/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1591156800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"32f175e09b904493c6eba2b4b3a9cbb8\";a:10:{s:4:\"hash\";s:32:\"32f175e09b904493c6eba2b4b3a9cbb8\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591156800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1591156800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6c09f083eed16337d14758c5f1648b47\";a:10:{s:4:\"hash\";s:32:\"6c09f083eed16337d14758c5f1648b47\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591243200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1591243200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d92da1c547cdf23c654c5c9f7d6c92d0\";a:10:{s:4:\"hash\";s:32:\"d92da1c547cdf23c654c5c9f7d6c92d0\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591243200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1591243200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d478673c284eca2ba11fcc79515c1377\";a:10:{s:4:\"hash\";s:32:\"d478673c284eca2ba11fcc79515c1377\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591329600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1591329600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f367a90675d064ba47855682b358c13b\";a:10:{s:4:\"hash\";s:32:\"f367a90675d064ba47855682b358c13b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591588800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1591588800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cd19f5285f607d7af09985879eab5772\";a:10:{s:4:\"hash\";s:32:\"cd19f5285f607d7af09985879eab5772\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591588800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1591588800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b9d15309c5f5a4d804ea4a09de243e5c\";a:10:{s:4:\"hash\";s:32:\"b9d15309c5f5a4d804ea4a09de243e5c\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591675200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1591675200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"afb352ccf185935e5a72911fd6cc7d8a\";a:10:{s:4:\"hash\";s:32:\"afb352ccf185935e5a72911fd6cc7d8a\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591675200/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1591675200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9e93ac1a7c97093c7e3c5e5671dcdb4c\";a:10:{s:4:\"hash\";s:32:\"9e93ac1a7c97093c7e3c5e5671dcdb4c\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591675200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1591675200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e26e83d1d9982fc1f52ab21761b92863\";a:10:{s:4:\"hash\";s:32:\"e26e83d1d9982fc1f52ab21761b92863\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591675200/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1591675200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7d42dbc306869a431bfcde72112952f5\";a:10:{s:4:\"hash\";s:32:\"7d42dbc306869a431bfcde72112952f5\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591675200/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1591675200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f3206268d708c8bc88343fb30747527b\";a:10:{s:4:\"hash\";s:32:\"f3206268d708c8bc88343fb30747527b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591675200/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1591675200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d88f7641aca9af0f3c545fb0ff92a371\";a:10:{s:4:\"hash\";s:32:\"d88f7641aca9af0f3c545fb0ff92a371\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591761600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1591761600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"97ea8b53c072bba51f1aa1a8d745832e\";a:10:{s:4:\"hash\";s:32:\"97ea8b53c072bba51f1aa1a8d745832e\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591761600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1591761600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"70aeaa32f5c74f642cd9083d0cd77f45\";a:10:{s:4:\"hash\";s:32:\"70aeaa32f5c74f642cd9083d0cd77f45\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591761600/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1591761600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d1ef7e87c35f57cf8cada0ac86c9921d\";a:10:{s:4:\"hash\";s:32:\"d1ef7e87c35f57cf8cada0ac86c9921d\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591761600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1591761600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c188811f923cf19b13040c413600168f\";a:10:{s:4:\"hash\";s:32:\"c188811f923cf19b13040c413600168f\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591761600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1591761600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7bbbfb5c5c1e62171d93e401efd11d3e\";a:10:{s:4:\"hash\";s:32:\"7bbbfb5c5c1e62171d93e401efd11d3e\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591761600/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1591761600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cc161afa38c2b467829dc2f9aeb553c0\";a:10:{s:4:\"hash\";s:32:\"cc161afa38c2b467829dc2f9aeb553c0\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591761600/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1591761600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2046e8970feeccbd563a4a134868a6e2\";a:10:{s:4:\"hash\";s:32:\"2046e8970feeccbd563a4a134868a6e2\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1591761600/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1591761600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"19ebc0ed60a278bb9dac54a37bdd6363\";a:10:{s:4:\"hash\";s:32:\"19ebc0ed60a278bb9dac54a37bdd6363\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1592020800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1592020800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"69a7eabc25a20f174cbacc990ea949c0\";a:10:{s:4:\"hash\";s:32:\"69a7eabc25a20f174cbacc990ea949c0\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1592107200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1592107200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"70f1b2d38a9dc03346436e51531856e8\";a:10:{s:4:\"hash\";s:32:\"70f1b2d38a9dc03346436e51531856e8\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1592107200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1592107200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fca7566c2ffd5e6853dd8d3a7b1f3e49\";a:10:{s:4:\"hash\";s:32:\"fca7566c2ffd5e6853dd8d3a7b1f3e49\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1592280000/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1592280000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"18d715522949e92f9b00f4cf114c3818\";a:10:{s:4:\"hash\";s:32:\"18d715522949e92f9b00f4cf114c3818\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1592280000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1592280000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dc9e13bbe8d909afa4124e5966fedd78\";a:10:{s:4:\"hash\";s:32:\"dc9e13bbe8d909afa4124e5966fedd78\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1592280000/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1592280000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e65b8377028fcc88548d5cbc38ed1b0d\";a:10:{s:4:\"hash\";s:32:\"e65b8377028fcc88548d5cbc38ed1b0d\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1592280000/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1592280000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"43a35288805b9fa68c181eeefedacace\";a:10:{s:4:\"hash\";s:32:\"43a35288805b9fa68c181eeefedacace\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1592280000/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1592280000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1640f4b589015d6f3c4dab005d32705f\";a:10:{s:4:\"hash\";s:32:\"1640f4b589015d6f3c4dab005d32705f\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1592366400/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1592366400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"107cf9a8275cabd05c54b4effa41d245\";a:10:{s:4:\"hash\";s:32:\"107cf9a8275cabd05c54b4effa41d245\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1592366400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1592366400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e47dda6e5ca5a4a453c5897204bd644a\";a:10:{s:4:\"hash\";s:32:\"e47dda6e5ca5a4a453c5897204bd644a\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1592539200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1592539200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"98f640424bf9d2363a23358940f45db2\";a:10:{s:4:\"hash\";s:32:\"98f640424bf9d2363a23358940f45db2\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1592884800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1592884800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eeb10bd57af987e8fd8070a9e3f1c9a5\";a:10:{s:4:\"hash\";s:32:\"eeb10bd57af987e8fd8070a9e3f1c9a5\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593057600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1593057600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"34210c5cc567d6f4f799a2a691addb08\";a:10:{s:4:\"hash\";s:32:\"34210c5cc567d6f4f799a2a691addb08\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593144000/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1593144000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d387778f87e9e0b5a864d11aed51fc0e\";a:10:{s:4:\"hash\";s:32:\"d387778f87e9e0b5a864d11aed51fc0e\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593144000/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1593144000/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"38b075c9783c466efe35fe4705508f66\";a:10:{s:4:\"hash\";s:32:\"38b075c9783c466efe35fe4705508f66\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593144000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1593144000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c0309e1ac703f80d26e5d40d669a90de\";a:10:{s:4:\"hash\";s:32:\"c0309e1ac703f80d26e5d40d669a90de\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593144000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1593144000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"101cdbdc0701b659756c9b35ffd963e4\";a:10:{s:4:\"hash\";s:32:\"101cdbdc0701b659756c9b35ffd963e4\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593144000/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1593144000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c8eeeed4ba879167e5504761807f565b\";a:10:{s:4:\"hash\";s:32:\"c8eeeed4ba879167e5504761807f565b\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593144000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1593144000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"84303a0a7c06ab2b69f4c76b7f97333a\";a:10:{s:4:\"hash\";s:32:\"84303a0a7c06ab2b69f4c76b7f97333a\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593144000/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1593144000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ffa503ff3d1322ce1272ef5e80fff8e\";a:10:{s:4:\"hash\";s:32:\"8ffa503ff3d1322ce1272ef5e80fff8e\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593144000/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1593144000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5ebea925a42ead9f1adbdc815110c631\";a:10:{s:4:\"hash\";s:32:\"5ebea925a42ead9f1adbdc815110c631\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593144000/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1593144000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6d90167614bec72e3b9b20c2bc3a455b\";a:10:{s:4:\"hash\";s:32:\"6d90167614bec72e3b9b20c2bc3a455b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593576000/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1593576000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"028f457d722e5f6a3419a65d6540b5a6\";a:10:{s:4:\"hash\";s:32:\"028f457d722e5f6a3419a65d6540b5a6\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593576000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1593576000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"03e1b41d811c797866454daf9f07960f\";a:10:{s:4:\"hash\";s:32:\"03e1b41d811c797866454daf9f07960f\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593576000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1593576000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6465b3d588a3cd479a71776efc3feaf2\";a:10:{s:4:\"hash\";s:32:\"6465b3d588a3cd479a71776efc3feaf2\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593576000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1593576000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2a06a71dac4c625192346863642028cd\";a:10:{s:4:\"hash\";s:32:\"2a06a71dac4c625192346863642028cd\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593662400/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1593662400/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bdbcaaeb92350405c1be1480c935d2d3\";a:10:{s:4:\"hash\";s:32:\"bdbcaaeb92350405c1be1480c935d2d3\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593662400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1593662400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3e642a9e409c12a1864e656d4f285bce\";a:10:{s:4:\"hash\";s:32:\"3e642a9e409c12a1864e656d4f285bce\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593662400/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1593662400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"129461387a11ab59c9ff80e463a31faf\";a:10:{s:4:\"hash\";s:32:\"129461387a11ab59c9ff80e463a31faf\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593662400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1593662400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4dc1415cd6affb807c0ef7ee51be6467\";a:10:{s:4:\"hash\";s:32:\"4dc1415cd6affb807c0ef7ee51be6467\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593662400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1593662400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e58a29f65fd45e7107cceb54c0d94dd8\";a:10:{s:4:\"hash\";s:32:\"e58a29f65fd45e7107cceb54c0d94dd8\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593748800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1593748800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a7ae93a58e704f91185d0454717478c\";a:10:{s:4:\"hash\";s:32:\"8a7ae93a58e704f91185d0454717478c\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593748800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1593748800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"138b4df2f78903ae9c6c6ed94953b393\";a:10:{s:4:\"hash\";s:32:\"138b4df2f78903ae9c6c6ed94953b393\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593748800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1593748800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"59a4926eb96f3e2c1fd9183091f0c890\";a:10:{s:4:\"hash\";s:32:\"59a4926eb96f3e2c1fd9183091f0c890\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593748800/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1593748800/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c130b993ef6593f37fbe4fa76d1d02a1\";a:10:{s:4:\"hash\";s:32:\"c130b993ef6593f37fbe4fa76d1d02a1\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593748800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1593748800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"db7f9cc98311ae21d89b6a9ecff8dd76\";a:10:{s:4:\"hash\";s:32:\"db7f9cc98311ae21d89b6a9ecff8dd76\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593748800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1593748800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"142020c82ada9f500bfd078ebc548bf7\";a:10:{s:4:\"hash\";s:32:\"142020c82ada9f500bfd078ebc548bf7\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593748800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1593748800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cfe5629ab803143135aa7f7ccd7cf551\";a:10:{s:4:\"hash\";s:32:\"cfe5629ab803143135aa7f7ccd7cf551\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593748800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1593748800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e827db9f13b0eee41f79dc3bae63f12c\";a:10:{s:4:\"hash\";s:32:\"e827db9f13b0eee41f79dc3bae63f12c\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593748800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1593748800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8849eee4365cd2a15fdfc956c9c58df0\";a:10:{s:4:\"hash\";s:32:\"8849eee4365cd2a15fdfc956c9c58df0\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593748800/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1593748800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c9dbe091567b743156b9319f383b423\";a:10:{s:4:\"hash\";s:32:\"3c9dbe091567b743156b9319f383b423\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593748800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1593748800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"51f2bb58f71af939cea46e8b6b573d6e\";a:10:{s:4:\"hash\";s:32:\"51f2bb58f71af939cea46e8b6b573d6e\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593748800/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1593748800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b72c35d736b8da91d4642425ac666c83\";a:10:{s:4:\"hash\";s:32:\"b72c35d736b8da91d4642425ac666c83\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593748800/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1593748800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dd3db8b7c62bcbbe76c307720ddcd662\";a:10:{s:4:\"hash\";s:32:\"dd3db8b7c62bcbbe76c307720ddcd662\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593748800/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1593748800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ec695dd4ca1d7b9c13738d2d68e20749\";a:10:{s:4:\"hash\";s:32:\"ec695dd4ca1d7b9c13738d2d68e20749\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593835200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1593835200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"65d829a316903bec74eaeceb40bd0836\";a:10:{s:4:\"hash\";s:32:\"65d829a316903bec74eaeceb40bd0836\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593835200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1593835200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e2e29c1b4db5a0eea666bc73c2eb3703\";a:10:{s:4:\"hash\";s:32:\"e2e29c1b4db5a0eea666bc73c2eb3703\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593835200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1593835200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7b6b2b4076f1d1acf3d0dc72773f32dd\";a:10:{s:4:\"hash\";s:32:\"7b6b2b4076f1d1acf3d0dc72773f32dd\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593921600/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1593921600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2a43f4800133230b7ee44404dedc0e19\";a:10:{s:4:\"hash\";s:32:\"2a43f4800133230b7ee44404dedc0e19\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1593921600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1593921600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eb1732530ce56f2acafb5bda94cb2aef\";a:10:{s:4:\"hash\";s:32:\"eb1732530ce56f2acafb5bda94cb2aef\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594180800/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1594180800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ddabe3976031a32d781e53f0188a4a15\";a:10:{s:4:\"hash\";s:32:\"ddabe3976031a32d781e53f0188a4a15\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594353600/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1594353600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3f6d117f638af4b5046140dd6605bcb9\";a:10:{s:4:\"hash\";s:32:\"3f6d117f638af4b5046140dd6605bcb9\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594353600/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1594353600/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f410e1a2255b20a8d05c35b51a96d60e\";a:10:{s:4:\"hash\";s:32:\"f410e1a2255b20a8d05c35b51a96d60e\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594353600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1594353600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6ad76b38b26dcd13c2039f934d3c0489\";a:10:{s:4:\"hash\";s:32:\"6ad76b38b26dcd13c2039f934d3c0489\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594353600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1594353600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"738431158c89b8e27bdddbb7e0c9e754\";a:10:{s:4:\"hash\";s:32:\"738431158c89b8e27bdddbb7e0c9e754\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594353600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1594353600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0e825d2f4d2794409fc5461fc66a75af\";a:10:{s:4:\"hash\";s:32:\"0e825d2f4d2794409fc5461fc66a75af\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594353600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1594353600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d50a1d7b001e82e9972aa1f438302814\";a:10:{s:4:\"hash\";s:32:\"d50a1d7b001e82e9972aa1f438302814\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594353600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1594353600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4ccb500937dc0760ca6b2012b04ca1ee\";a:10:{s:4:\"hash\";s:32:\"4ccb500937dc0760ca6b2012b04ca1ee\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594353600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1594353600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d68463580a22c517709b5781122d7e55\";a:10:{s:4:\"hash\";s:32:\"d68463580a22c517709b5781122d7e55\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594353600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1594353600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7976bcabf3e9a0d45091aa2f68fd6a4a\";a:10:{s:4:\"hash\";s:32:\"7976bcabf3e9a0d45091aa2f68fd6a4a\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594353600/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1594353600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cc347ee5e327275503ccba446b2302dc\";a:10:{s:4:\"hash\";s:32:\"cc347ee5e327275503ccba446b2302dc\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594353600/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1594353600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7d6e00ab966b8343fe9867e291406d8c\";a:10:{s:4:\"hash\";s:32:\"7d6e00ab966b8343fe9867e291406d8c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594353600/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1594353600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b4888039342c296fb9d3bbb4b2f76292\";a:10:{s:4:\"hash\";s:32:\"b4888039342c296fb9d3bbb4b2f76292\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594526400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1594526400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4ef3471fcc00823c3492eec3e1a4a2b1\";a:10:{s:4:\"hash\";s:32:\"4ef3471fcc00823c3492eec3e1a4a2b1\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594612800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1594612800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"83cfc8c10cd2860dde4b7daae0c7777e\";a:10:{s:4:\"hash\";s:32:\"83cfc8c10cd2860dde4b7daae0c7777e\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594785600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1594785600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4624d11aa7c69840e1a89c350ca6c124\";a:10:{s:4:\"hash\";s:32:\"4624d11aa7c69840e1a89c350ca6c124\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594785600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1594785600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2574853d78d51ea34eee1123d1fd782c\";a:10:{s:4:\"hash\";s:32:\"2574853d78d51ea34eee1123d1fd782c\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594785600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1594785600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"69f29eb7eaeed87cee823f4eb3754fc4\";a:10:{s:4:\"hash\";s:32:\"69f29eb7eaeed87cee823f4eb3754fc4\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594785600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1594785600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4a35ce526c5c53aaa7453e0caeed22c2\";a:10:{s:4:\"hash\";s:32:\"4a35ce526c5c53aaa7453e0caeed22c2\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594785600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1594785600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2574e9821fb4da59f22b3fc35d6296e2\";a:10:{s:4:\"hash\";s:32:\"2574e9821fb4da59f22b3fc35d6296e2\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594785600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1594785600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b3216087307da7ab94742304ad5ac8cf\";a:10:{s:4:\"hash\";s:32:\"b3216087307da7ab94742304ad5ac8cf\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594958400/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1594958400/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"580ee90fde098ae7f8817d7e6c8d1eba\";a:10:{s:4:\"hash\";s:32:\"580ee90fde098ae7f8817d7e6c8d1eba\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594958400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1594958400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dd8da627c6c9893e257a3b36b52d8972\";a:10:{s:4:\"hash\";s:32:\"dd8da627c6c9893e257a3b36b52d8972\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594958400/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1594958400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ac6a7be1f6e1c6eaaa7c2f2cdd23ec27\";a:10:{s:4:\"hash\";s:32:\"ac6a7be1f6e1c6eaaa7c2f2cdd23ec27\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594958400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1594958400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bbbb8af5aeff8dd8516283cb2b4a2622\";a:10:{s:4:\"hash\";s:32:\"bbbb8af5aeff8dd8516283cb2b4a2622\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594958400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1594958400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"534c05750e7620685c2f4802e8a9e9a1\";a:10:{s:4:\"hash\";s:32:\"534c05750e7620685c2f4802e8a9e9a1\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594958400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1594958400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"12f8dac8cf646199892883925f397b20\";a:10:{s:4:\"hash\";s:32:\"12f8dac8cf646199892883925f397b20\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594958400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1594958400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"724cec652e6798593542c63e4c789276\";a:10:{s:4:\"hash\";s:32:\"724cec652e6798593542c63e4c789276\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594958400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1594958400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"da88848cdfd3f6698cf984aa9aed501c\";a:10:{s:4:\"hash\";s:32:\"da88848cdfd3f6698cf984aa9aed501c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594958400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1594958400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b880d9545e35d1d201189b382fa4e907\";a:10:{s:4:\"hash\";s:32:\"b880d9545e35d1d201189b382fa4e907\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594958400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1594958400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5f16ac6e0da2b8af33f1b112871113de\";a:10:{s:4:\"hash\";s:32:\"5f16ac6e0da2b8af33f1b112871113de\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594958400/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1594958400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c8d8c99d80081c41308fc96aa3da92a5\";a:10:{s:4:\"hash\";s:32:\"c8d8c99d80081c41308fc96aa3da92a5\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594958400/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1594958400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c108ad71878e3be41626fbe26c22d306\";a:10:{s:4:\"hash\";s:32:\"c108ad71878e3be41626fbe26c22d306\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1594958400/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1594958400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f8e83c46f47540b1e5879941429611df\";a:10:{s:4:\"hash\";s:32:\"f8e83c46f47540b1e5879941429611df\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595131200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1595131200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0e032f5f827788f0f7c0969075f4cba8\";a:10:{s:4:\"hash\";s:32:\"0e032f5f827788f0f7c0969075f4cba8\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595131200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1595131200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3d948ed2d2e70ab32a423241df6fbd3a\";a:10:{s:4:\"hash\";s:32:\"3d948ed2d2e70ab32a423241df6fbd3a\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595217600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1595217600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bccee102161ba07a25cb60a4b1bd36cc\";a:10:{s:4:\"hash\";s:32:\"bccee102161ba07a25cb60a4b1bd36cc\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595390400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1595390400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2c806c23f25baea2c5fb605eb0818731\";a:10:{s:4:\"hash\";s:32:\"2c806c23f25baea2c5fb605eb0818731\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595390400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1595390400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ac90195040b07b261db5cd644fcbf6c5\";a:10:{s:4:\"hash\";s:32:\"ac90195040b07b261db5cd644fcbf6c5\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595390400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1595390400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"76955f7fa790d0d30aed7c6235c63d19\";a:10:{s:4:\"hash\";s:32:\"76955f7fa790d0d30aed7c6235c63d19\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595390400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1595390400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4358b2410b910df9f8d516e86ae2a37b\";a:10:{s:4:\"hash\";s:32:\"4358b2410b910df9f8d516e86ae2a37b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595563200/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1595563200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"623675d7904c01a63531cdfa13d2406f\";a:10:{s:4:\"hash\";s:32:\"623675d7904c01a63531cdfa13d2406f\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595563200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1595563200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"21cf3209ba5502296d127509c2c6f827\";a:10:{s:4:\"hash\";s:32:\"21cf3209ba5502296d127509c2c6f827\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595563200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1595563200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b11449f3c1fd41da07d0fe3ae836c758\";a:10:{s:4:\"hash\";s:32:\"b11449f3c1fd41da07d0fe3ae836c758\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595563200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1595563200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5ca4dfb7521325135fddaaed72ffa948\";a:10:{s:4:\"hash\";s:32:\"5ca4dfb7521325135fddaaed72ffa948\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595649600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1595649600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6a16563d335239ab77fec8063c52f720\";a:10:{s:4:\"hash\";s:32:\"6a16563d335239ab77fec8063c52f720\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595736000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1595736000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7dcc44556d8878b664e6090d930b0bf7\";a:10:{s:4:\"hash\";s:32:\"7dcc44556d8878b664e6090d930b0bf7\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595736000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1595736000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fe367f15a8c4abd02e156508389491d6\";a:10:{s:4:\"hash\";s:32:\"fe367f15a8c4abd02e156508389491d6\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595736000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1595736000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8bbca0ad19b915cd9f615d02917850f8\";a:10:{s:4:\"hash\";s:32:\"8bbca0ad19b915cd9f615d02917850f8\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595736000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1595736000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d1716d38f23edb60a53389aea6eee52c\";a:10:{s:4:\"hash\";s:32:\"d1716d38f23edb60a53389aea6eee52c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595736000/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1595736000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"70388c0f193177ec2300c2a124e25fb5\";a:10:{s:4:\"hash\";s:32:\"70388c0f193177ec2300c2a124e25fb5\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595736000/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1595736000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"163e7bf7c90393f1fb20590034e6c3e7\";a:10:{s:4:\"hash\";s:32:\"163e7bf7c90393f1fb20590034e6c3e7\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595736000/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1595736000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7c3b8809fcf99f565503d2e3325efc9b\";a:10:{s:4:\"hash\";s:32:\"7c3b8809fcf99f565503d2e3325efc9b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595822400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1595822400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"429a25262da4aecfc0b14e3f4bf51f3e\";a:10:{s:4:\"hash\";s:32:\"429a25262da4aecfc0b14e3f4bf51f3e\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595822400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1595822400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3aa2fd02ee3966c04bc47cac6a9975b7\";a:10:{s:4:\"hash\";s:32:\"3aa2fd02ee3966c04bc47cac6a9975b7\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595908800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1595908800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7957294ff83d4eb17bb45224f9bab3de\";a:10:{s:4:\"hash\";s:32:\"7957294ff83d4eb17bb45224f9bab3de\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595908800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1595908800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"42c5a967dd7a3712da23fa0fb621daf0\";a:10:{s:4:\"hash\";s:32:\"42c5a967dd7a3712da23fa0fb621daf0\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595908800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1595908800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"418abf39bcb15efc4b354052c7f8c62b\";a:10:{s:4:\"hash\";s:32:\"418abf39bcb15efc4b354052c7f8c62b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595908800/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1595908800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a9fc99c21be33c08131d7e96c7934ee2\";a:10:{s:4:\"hash\";s:32:\"a9fc99c21be33c08131d7e96c7934ee2\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595908800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1595908800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5e6c0227dfff99066430b283c4296e5f\";a:10:{s:4:\"hash\";s:32:\"5e6c0227dfff99066430b283c4296e5f\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595995200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1595995200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"98c52fcf03fd86788c14b89862f5f95d\";a:10:{s:4:\"hash\";s:32:\"98c52fcf03fd86788c14b89862f5f95d\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595995200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1595995200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4512a6217369a014dfde405381ea2f43\";a:10:{s:4:\"hash\";s:32:\"4512a6217369a014dfde405381ea2f43\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595995200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1595995200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1344ff3e75ac983fa7b7e01c19df802e\";a:10:{s:4:\"hash\";s:32:\"1344ff3e75ac983fa7b7e01c19df802e\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595995200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1595995200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dbf54b4a4749fcc4ea5d7d50d0b15359\";a:10:{s:4:\"hash\";s:32:\"dbf54b4a4749fcc4ea5d7d50d0b15359\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1595995200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1595995200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"879cd68990d02cfcf8aa11e21f645d42\";a:10:{s:4:\"hash\";s:32:\"879cd68990d02cfcf8aa11e21f645d42\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1596254400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1596254400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b000f2c7df84ba28bddb4ff428891f33\";a:10:{s:4:\"hash\";s:32:\"b000f2c7df84ba28bddb4ff428891f33\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1596254400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1596254400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"33cebbd7e578001de2a0daeaba0cbfbe\";a:10:{s:4:\"hash\";s:32:\"33cebbd7e578001de2a0daeaba0cbfbe\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1596254400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1596254400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e7876c012b339a42ae01e21e36ddb449\";a:10:{s:4:\"hash\";s:32:\"e7876c012b339a42ae01e21e36ddb449\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1596254400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1596254400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f347aec12b846f095b489a058039c7a3\";a:10:{s:4:\"hash\";s:32:\"f347aec12b846f095b489a058039c7a3\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1596254400/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1596254400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1da821d8bc8e4af67b2c6f687f037e20\";a:10:{s:4:\"hash\";s:32:\"1da821d8bc8e4af67b2c6f687f037e20\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1596254400/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1596254400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"004a54cbef43b88246bd693c1ae45789\";a:10:{s:4:\"hash\";s:32:\"004a54cbef43b88246bd693c1ae45789\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1596254400/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1596254400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3e5032e76cabe6f96cf223620b7d2f2d\";a:10:{s:4:\"hash\";s:32:\"3e5032e76cabe6f96cf223620b7d2f2d\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1596340800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1596340800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"50f4634981f5201b86421fb2cc781a27\";a:10:{s:4:\"hash\";s:32:\"50f4634981f5201b86421fb2cc781a27\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1596340800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1596340800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7453e41aefaa26bdb0ffa0034e43b203\";a:10:{s:4:\"hash\";s:32:\"7453e41aefaa26bdb0ffa0034e43b203\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1596600000/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1596600000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"237da9699b95424b6a40ba011facd9e7\";a:10:{s:4:\"hash\";s:32:\"237da9699b95424b6a40ba011facd9e7\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1596600000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1596600000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"554f57d7d8c5ddc877e10c26f51e3180\";a:10:{s:4:\"hash\";s:32:\"554f57d7d8c5ddc877e10c26f51e3180\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1596686400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1596686400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c4484cd3fda4f796cbb256d95228510a\";a:10:{s:4:\"hash\";s:32:\"c4484cd3fda4f796cbb256d95228510a\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1596686400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1596686400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"912aff042ee2097251d2eb979909d84c\";a:10:{s:4:\"hash\";s:32:\"912aff042ee2097251d2eb979909d84c\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1596686400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1596686400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c150d041399e310d661211c1afd85570\";a:10:{s:4:\"hash\";s:32:\"c150d041399e310d661211c1afd85570\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1596859200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1596859200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2f127e3b289ddea2e9a292b5bb3ec4b0\";a:10:{s:4:\"hash\";s:32:\"2f127e3b289ddea2e9a292b5bb3ec4b0\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1596945600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1596945600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a876fd6cde7590e0f1b33312d7b673b2\";a:10:{s:4:\"hash\";s:32:\"a876fd6cde7590e0f1b33312d7b673b2\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1597032000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1597032000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"49594ca8d2939ace6a00684f874b0328\";a:10:{s:4:\"hash\";s:32:\"49594ca8d2939ace6a00684f874b0328\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1597032000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1597032000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0100472c71502633bbaba22737899b29\";a:10:{s:4:\"hash\";s:32:\"0100472c71502633bbaba22737899b29\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1597377600/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1597377600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3ef71bc614b31a5448c5319020e34099\";a:10:{s:4:\"hash\";s:32:\"3ef71bc614b31a5448c5319020e34099\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1597377600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1597377600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fd91cc03cdd14b922a0261cbb6d3eaed\";a:10:{s:4:\"hash\";s:32:\"fd91cc03cdd14b922a0261cbb6d3eaed\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1597377600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1597377600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2dfa96fa6261498d812823af93394a1c\";a:10:{s:4:\"hash\";s:32:\"2dfa96fa6261498d812823af93394a1c\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1597550400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1597550400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e024f56e72ead9bcdf5aa72f713686a1\";a:10:{s:4:\"hash\";s:32:\"e024f56e72ead9bcdf5aa72f713686a1\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1597550400/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1597550400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4da6de775903a00deac34c6ba13ed6f6\";a:10:{s:4:\"hash\";s:32:\"4da6de775903a00deac34c6ba13ed6f6\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1597550400/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1597550400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"775c97f3ea1f4eb246c77bc79b38051b\";a:10:{s:4:\"hash\";s:32:\"775c97f3ea1f4eb246c77bc79b38051b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1597550400/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1597550400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"581b8e9a3bcd7060548fca951fcf9602\";a:10:{s:4:\"hash\";s:32:\"581b8e9a3bcd7060548fca951fcf9602\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1597636800/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1597636800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aaea920dc4883f44a1d44afa32e4b840\";a:10:{s:4:\"hash\";s:32:\"aaea920dc4883f44a1d44afa32e4b840\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1597636800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1597636800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a5afb002ba312278b7153d82387bd7b\";a:10:{s:4:\"hash\";s:32:\"8a5afb002ba312278b7153d82387bd7b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1598155200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1598155200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ed376a1fcaa9890d7aedf141e362bf06\";a:10:{s:4:\"hash\";s:32:\"ed376a1fcaa9890d7aedf141e362bf06\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1598155200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1598155200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"544405b580c8a9b88f517526548b6879\";a:10:{s:4:\"hash\";s:32:\"544405b580c8a9b88f517526548b6879\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1598155200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1598155200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4e22adc8936f752ecd2734c47c4454c7\";a:10:{s:4:\"hash\";s:32:\"4e22adc8936f752ecd2734c47c4454c7\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1598241600/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1598241600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ba465607f1ee69882d5375afd2ef7e00\";a:10:{s:4:\"hash\";s:32:\"ba465607f1ee69882d5375afd2ef7e00\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1598241600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1598241600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ec026049e443acce5c613010b267f48\";a:10:{s:4:\"hash\";s:32:\"8ec026049e443acce5c613010b267f48\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1598241600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1598241600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"db701d822f580b779a3174cac2029345\";a:10:{s:4:\"hash\";s:32:\"db701d822f580b779a3174cac2029345\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1598414400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1598414400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1c8b97ca22413971f0c0df21dfd9ef5a\";a:10:{s:4:\"hash\";s:32:\"1c8b97ca22413971f0c0df21dfd9ef5a\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1598414400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1598414400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bf4ec08efc68376e89b85790733ae947\";a:10:{s:4:\"hash\";s:32:\"bf4ec08efc68376e89b85790733ae947\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1598500800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1598500800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"602cb14eabc9f3a24d1d898945c97e25\";a:10:{s:4:\"hash\";s:32:\"602cb14eabc9f3a24d1d898945c97e25\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1601524800/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1601524800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b2d1b84bd793f1f5e53cd8c73f0eefd2\";a:10:{s:4:\"hash\";s:32:\"b2d1b84bd793f1f5e53cd8c73f0eefd2\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1604116800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1604116800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9090135def911e05dd2d4a6813127cd0\";a:10:{s:4:\"hash\";s:32:\"9090135def911e05dd2d4a6813127cd0\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1604203200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1604203200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4bfd8b82cd5929482f24f423181ed116\";a:10:{s:4:\"hash\";s:32:\"4bfd8b82cd5929482f24f423181ed116\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1604203200/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1604203200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ae4ed27c9e725caf87874c5cf56fc030\";a:10:{s:4:\"hash\";s:32:\"ae4ed27c9e725caf87874c5cf56fc030\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1604203200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1604203200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b12eddc0bf9c520a7026c378737dda46\";a:10:{s:4:\"hash\";s:32:\"b12eddc0bf9c520a7026c378737dda46\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1604203200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1604203200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2fd4c574142faac9ff706909c82524e7\";a:10:{s:4:\"hash\";s:32:\"2fd4c574142faac9ff706909c82524e7\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1604293200/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1604293200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fbd2ecfffc20d9f65e6c4087ac42091b\";a:10:{s:4:\"hash\";s:32:\"fbd2ecfffc20d9f65e6c4087ac42091b\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1604293200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1604293200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4057a2f3c7d539272027df8faa554dd3\";a:10:{s:4:\"hash\";s:32:\"4057a2f3c7d539272027df8faa554dd3\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1604552400/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1604552400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d7c25774a85cd99869b62d85156afe8b\";a:10:{s:4:\"hash\";s:32:\"d7c25774a85cd99869b62d85156afe8b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1604552400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1604552400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0a2a1019002ac8dc55e2609f6d90bd88\";a:10:{s:4:\"hash\";s:32:\"0a2a1019002ac8dc55e2609f6d90bd88\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1604552400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1604552400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cfc4b9926b600c58417f994c5a262094\";a:10:{s:4:\"hash\";s:32:\"cfc4b9926b600c58417f994c5a262094\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1604552400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1604552400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d84a03f5765dc04206a88f9766cb658b\";a:10:{s:4:\"hash\";s:32:\"d84a03f5765dc04206a88f9766cb658b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605070800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1605070800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4146c30c1ef129dd55b9667fd85008d1\";a:10:{s:4:\"hash\";s:32:\"4146c30c1ef129dd55b9667fd85008d1\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605070800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1605070800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e04c52b98b8d1d10eff5d4102db06ee2\";a:10:{s:4:\"hash\";s:32:\"e04c52b98b8d1d10eff5d4102db06ee2\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605157200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1605157200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9abd0730e8d9e58c3ee8aa5721fa9519\";a:10:{s:4:\"hash\";s:32:\"9abd0730e8d9e58c3ee8aa5721fa9519\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605157200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1605157200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ab3f4e943108f9b59f08edb6d7d43576\";a:10:{s:4:\"hash\";s:32:\"ab3f4e943108f9b59f08edb6d7d43576\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605157200/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1605157200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9cce6976540ae3c73fac885fac09ebd3\";a:10:{s:4:\"hash\";s:32:\"9cce6976540ae3c73fac885fac09ebd3\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605157200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1605157200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"54c0df365d3281e6fe028d1322b1db01\";a:10:{s:4:\"hash\";s:32:\"54c0df365d3281e6fe028d1322b1db01\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605157200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1605157200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6e8d176ccfcc4d25e4d28ff431600eb1\";a:10:{s:4:\"hash\";s:32:\"6e8d176ccfcc4d25e4d28ff431600eb1\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605157200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1605157200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"62a14356b83f84c8b103b9b3e4746bb5\";a:10:{s:4:\"hash\";s:32:\"62a14356b83f84c8b103b9b3e4746bb5\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605157200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1605157200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d5f7d777af954e48b7923199398d877b\";a:10:{s:4:\"hash\";s:32:\"d5f7d777af954e48b7923199398d877b\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605157200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1605157200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bcc29ad6f4728f4adb5f672a25f636d6\";a:10:{s:4:\"hash\";s:32:\"bcc29ad6f4728f4adb5f672a25f636d6\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605157200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1605157200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ac66729c909320bc812ceef7f7571aa7\";a:10:{s:4:\"hash\";s:32:\"ac66729c909320bc812ceef7f7571aa7\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605157200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1605157200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"44a8a755205e81a3ec63398f21ea7996\";a:10:{s:4:\"hash\";s:32:\"44a8a755205e81a3ec63398f21ea7996\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605157200/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1605157200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2aaab44a77c58a91d19f0d672c638d83\";a:10:{s:4:\"hash\";s:32:\"2aaab44a77c58a91d19f0d672c638d83\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605157200/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1605157200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"18197722f73b2415dd054cb6f8f56777\";a:10:{s:4:\"hash\";s:32:\"18197722f73b2415dd054cb6f8f56777\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605157200/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1605157200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"54be2257069ea55705d0054d52ead2fe\";a:10:{s:4:\"hash\";s:32:\"54be2257069ea55705d0054d52ead2fe\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605243600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1605243600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c30ab4a03c3235aa3c41147003b6a67c\";a:10:{s:4:\"hash\";s:32:\"c30ab4a03c3235aa3c41147003b6a67c\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605243600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1605243600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"89a6bd5c46a70373b1102a96b2218602\";a:10:{s:4:\"hash\";s:32:\"89a6bd5c46a70373b1102a96b2218602\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605330000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1605330000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a0ff4de5702258e4e146c847d70ebe63\";a:10:{s:4:\"hash\";s:32:\"a0ff4de5702258e4e146c847d70ebe63\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605762000/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1605762000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"91ba1ff41a3c0ff5d7c87b4c2955336e\";a:10:{s:4:\"hash\";s:32:\"91ba1ff41a3c0ff5d7c87b4c2955336e\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605762000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1605762000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"73f47f9d71d33986837529aa08cb3d6a\";a:10:{s:4:\"hash\";s:32:\"73f47f9d71d33986837529aa08cb3d6a\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605762000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1605762000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a41eacf18994752cf0413a36238404b1\";a:10:{s:4:\"hash\";s:32:\"a41eacf18994752cf0413a36238404b1\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605762000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1605762000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6e15aad81baee74ad556a15fc0a27b23\";a:10:{s:4:\"hash\";s:32:\"6e15aad81baee74ad556a15fc0a27b23\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605762000/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1605762000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dba27ff765109df4178196c25ee24665\";a:10:{s:4:\"hash\";s:32:\"dba27ff765109df4178196c25ee24665\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605762000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1605762000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7b0e32b9d8848a614e71b1c09da099bd\";a:10:{s:4:\"hash\";s:32:\"7b0e32b9d8848a614e71b1c09da099bd\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605934800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1605934800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6dc9beb99c59744e5f3dc851a5c740bf\";a:10:{s:4:\"hash\";s:32:\"6dc9beb99c59744e5f3dc851a5c740bf\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605934800/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1605934800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f7dbc6b5a2feda46c4619f98cecd60fa\";a:10:{s:4:\"hash\";s:32:\"f7dbc6b5a2feda46c4619f98cecd60fa\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605934800/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1605934800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"17afea2c3bb15b81c9380ce3017f7cdc\";a:10:{s:4:\"hash\";s:32:\"17afea2c3bb15b81c9380ce3017f7cdc\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1605934800/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1605934800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fe145aa68e70ac0b0dd221a21cd225e3\";a:10:{s:4:\"hash\";s:32:\"fe145aa68e70ac0b0dd221a21cd225e3\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1606366800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1606366800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0dec9756687bcb6309b39f72d399e0f3\";a:10:{s:4:\"hash\";s:32:\"0dec9756687bcb6309b39f72d399e0f3\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1606539600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1606539600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c6c89b0976b0f98f47b9f81567ce9335\";a:10:{s:4:\"hash\";s:32:\"c6c89b0976b0f98f47b9f81567ce9335\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1606539600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1606539600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fda7c855c948ad984aa1eeb9fc1c86e6\";a:10:{s:4:\"hash\";s:32:\"fda7c855c948ad984aa1eeb9fc1c86e6\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1606626000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1606626000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fba4e8d09cb656d299390dfcf9df76de\";a:10:{s:4:\"hash\";s:32:\"fba4e8d09cb656d299390dfcf9df76de\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1606626000/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1606626000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e1bfb1ea25637bfdd33115ab88d6d4b0\";a:10:{s:4:\"hash\";s:32:\"e1bfb1ea25637bfdd33115ab88d6d4b0\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1606626000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1606626000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5cb01b9b604abdb30f56aa377f48cdf3\";a:10:{s:4:\"hash\";s:32:\"5cb01b9b604abdb30f56aa377f48cdf3\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1606712400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1606712400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d8418127be8c5057987581a5e825cafc\";a:10:{s:4:\"hash\";s:32:\"d8418127be8c5057987581a5e825cafc\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1609477200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1609477200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f1e273c9889e7ef309cd0dfe7e1cf020\";a:10:{s:4:\"hash\";s:32:\"f1e273c9889e7ef309cd0dfe7e1cf020\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1610946000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1610946000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b965bbb668590dbb4b15ac24a0b17a32\";a:10:{s:4:\"hash\";s:32:\"b965bbb668590dbb4b15ac24a0b17a32\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1611464400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1611464400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"54c49124aed7c9d0f15d0e91b2a324a1\";a:10:{s:4:\"hash\";s:32:\"54c49124aed7c9d0f15d0e91b2a324a1\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1611550800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1611550800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"946fde759c7ff844e991642915f1f1e4\";a:10:{s:4:\"hash\";s:32:\"946fde759c7ff844e991642915f1f1e4\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1611550800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1611550800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"df7b2fa669c9b53088e30525ae2c3935\";a:10:{s:4:\"hash\";s:32:\"df7b2fa669c9b53088e30525ae2c3935\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1611550800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1611550800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"371fb869593d4437d4ccd44e70dd8220\";a:10:{s:4:\"hash\";s:32:\"371fb869593d4437d4ccd44e70dd8220\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1611550800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1611550800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e9baae1c0c6ba99f98395989031e28a2\";a:10:{s:4:\"hash\";s:32:\"e9baae1c0c6ba99f98395989031e28a2\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1611550800/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1611550800/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"867fcd922415b2fbd57a268ccb3ea0d7\";a:10:{s:4:\"hash\";s:32:\"867fcd922415b2fbd57a268ccb3ea0d7\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1611550800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1611550800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9925ffc6b2f509d0df24dcb0f09f70da\";a:10:{s:4:\"hash\";s:32:\"9925ffc6b2f509d0df24dcb0f09f70da\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1611550800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1611550800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e17af9a9009f4784e96586cd03cc37cc\";a:10:{s:4:\"hash\";s:32:\"e17af9a9009f4784e96586cd03cc37cc\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1611550800/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1611550800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8e253bccb93ec8cf9a7766071e8baae6\";a:10:{s:4:\"hash\";s:32:\"8e253bccb93ec8cf9a7766071e8baae6\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1611550800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1611550800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d568cda2dbac9d39c4a540edd63888ea\";a:10:{s:4:\"hash\";s:32:\"d568cda2dbac9d39c4a540edd63888ea\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1611637200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1611637200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6118e6e83c631d18ff0b40db48b1dfbd\";a:10:{s:4:\"hash\";s:32:\"6118e6e83c631d18ff0b40db48b1dfbd\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612069200/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1612069200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2f6fe234c8d950b4ee3a12883a93d19a\";a:10:{s:4:\"hash\";s:32:\"2f6fe234c8d950b4ee3a12883a93d19a\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612069200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1612069200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e34ef4de61000b412206b26a21fb919e\";a:10:{s:4:\"hash\";s:32:\"e34ef4de61000b412206b26a21fb919e\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612069200/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1612069200/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"833f916d74d4fe72be0c02c352b987ee\";a:10:{s:4:\"hash\";s:32:\"833f916d74d4fe72be0c02c352b987ee\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612069200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1612069200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e3f01b413f18bfc596f74b8a50722322\";a:10:{s:4:\"hash\";s:32:\"e3f01b413f18bfc596f74b8a50722322\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612069200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1612069200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4bad9b32088e7f2df99e3cf410082e40\";a:10:{s:4:\"hash\";s:32:\"4bad9b32088e7f2df99e3cf410082e40\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612069200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1612069200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2fa8e322d2c2edfe16a6d552a987c4c2\";a:10:{s:4:\"hash\";s:32:\"2fa8e322d2c2edfe16a6d552a987c4c2\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612155600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1612155600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3b0d2ad90c8da84a1cf96c2fcc843eec\";a:10:{s:4:\"hash\";s:32:\"3b0d2ad90c8da84a1cf96c2fcc843eec\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612155600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1612155600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c623696440d618787cd85b1e984cd4b\";a:10:{s:4:\"hash\";s:32:\"3c623696440d618787cd85b1e984cd4b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612155600/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1612155600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5fde85e79a09d361f80cd9803bcbc0f0\";a:10:{s:4:\"hash\";s:32:\"5fde85e79a09d361f80cd9803bcbc0f0\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612155600/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1612155600/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b4baef0a59347fdaf3f954541ba32e0d\";a:10:{s:4:\"hash\";s:32:\"b4baef0a59347fdaf3f954541ba32e0d\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612155600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1612155600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"89255d1f1c38e7dc520d132f5f8b947d\";a:10:{s:4:\"hash\";s:32:\"89255d1f1c38e7dc520d132f5f8b947d\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612155600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1612155600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"170be66aa4600f5885dc6245ff2b4f5f\";a:10:{s:4:\"hash\";s:32:\"170be66aa4600f5885dc6245ff2b4f5f\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612155600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1612155600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"93b80ffd1e36100528dac24d56d08598\";a:10:{s:4:\"hash\";s:32:\"93b80ffd1e36100528dac24d56d08598\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612155600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1612155600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7c54bcd5b7753ec0f90d372eacfb2367\";a:10:{s:4:\"hash\";s:32:\"7c54bcd5b7753ec0f90d372eacfb2367\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612155600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1612155600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b6997f763f7f5d9db28a2cc12c8a08f9\";a:10:{s:4:\"hash\";s:32:\"b6997f763f7f5d9db28a2cc12c8a08f9\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612155600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1612155600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5def4b8842ec17010d2a0b397e7097a3\";a:10:{s:4:\"hash\";s:32:\"5def4b8842ec17010d2a0b397e7097a3\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612155600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1612155600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3053b0bc7a1901c5c0b750795311ad67\";a:10:{s:4:\"hash\";s:32:\"3053b0bc7a1901c5c0b750795311ad67\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612155600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1612155600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8c8951d9a466bc766996e5953bf69a90\";a:10:{s:4:\"hash\";s:32:\"8c8951d9a466bc766996e5953bf69a90\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612155600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1612155600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9da367281f6a8e2ce25303ebfa3352af\";a:10:{s:4:\"hash\";s:32:\"9da367281f6a8e2ce25303ebfa3352af\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612155600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1612155600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"91bf6d5c9993262dc3eaac9c144aa927\";a:10:{s:4:\"hash\";s:32:\"91bf6d5c9993262dc3eaac9c144aa927\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612155600/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1612155600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8e6d953bf7dd341a8ec57e8d00a69bcb\";a:10:{s:4:\"hash\";s:32:\"8e6d953bf7dd341a8ec57e8d00a69bcb\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612155600/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1612155600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"92cd8bf5c04e13123852e9c7882596a2\";a:10:{s:4:\"hash\";s:32:\"92cd8bf5c04e13123852e9c7882596a2\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612155600/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1612155600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6bcd9323da55802dc9e7b83074e1ae2b\";a:10:{s:4:\"hash\";s:32:\"6bcd9323da55802dc9e7b83074e1ae2b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612242000/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1612242000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ec815c301cc96317ae8b939424cbaa7b\";a:10:{s:4:\"hash\";s:32:\"ec815c301cc96317ae8b939424cbaa7b\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612242000/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1612242000/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a05ba160aa9ee0b6312011253d320b52\";a:10:{s:4:\"hash\";s:32:\"a05ba160aa9ee0b6312011253d320b52\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612242000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1612242000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"59cfa22f9c6a8c70ca95ac0e49110d90\";a:10:{s:4:\"hash\";s:32:\"59cfa22f9c6a8c70ca95ac0e49110d90\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612242000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1612242000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fc911b933bce94c6fcfe80fa5c564bbb\";a:10:{s:4:\"hash\";s:32:\"fc911b933bce94c6fcfe80fa5c564bbb\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612674000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1612674000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"013dc609b4a86071d3e5bb2765c820a7\";a:10:{s:4:\"hash\";s:32:\"013dc609b4a86071d3e5bb2765c820a7\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612674000/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1612674000/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"06a3b06482efffc099d2b2a4491ac793\";a:10:{s:4:\"hash\";s:32:\"06a3b06482efffc099d2b2a4491ac793\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612674000/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1612674000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"503\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e6d524de659426dd927901750502df88\";a:10:{s:4:\"hash\";s:32:\"e6d524de659426dd927901750502df88\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612674000/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1612674000/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3ba90e9f120a7ffb6348d7ba0c76fabf\";a:10:{s:4:\"hash\";s:32:\"3ba90e9f120a7ffb6348d7ba0c76fabf\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612674000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1612674000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ca311ead22d27c82b1c52991641e583b\";a:10:{s:4:\"hash\";s:32:\"ca311ead22d27c82b1c52991641e583b\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612674000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1612674000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2ab64b52386c87839e3c075c8ea17abc\";a:10:{s:4:\"hash\";s:32:\"2ab64b52386c87839e3c075c8ea17abc\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612674000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1612674000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"662db23d4e7cec317dcf104638d59284\";a:10:{s:4:\"hash\";s:32:\"662db23d4e7cec317dcf104638d59284\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612674000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1612674000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8c4808456752704ca8499705996fdf0a\";a:10:{s:4:\"hash\";s:32:\"8c4808456752704ca8499705996fdf0a\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612674000/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1612674000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c34fc45ff2dd2c2b7a69961b615d987f\";a:10:{s:4:\"hash\";s:32:\"c34fc45ff2dd2c2b7a69961b615d987f\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612674000/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1612674000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c70bfbca36677b2c338eecc13dee61ea\";a:10:{s:4:\"hash\";s:32:\"c70bfbca36677b2c338eecc13dee61ea\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612674000/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1612674000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0b964dc988a2a594a96dae631637160f\";a:10:{s:4:\"hash\";s:32:\"0b964dc988a2a594a96dae631637160f\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612760400/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1612760400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a5f063305dad41bfb39221ef86ffaf84\";a:10:{s:4:\"hash\";s:32:\"a5f063305dad41bfb39221ef86ffaf84\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612760400/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1612760400/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"87f8d960f3365c9964b91cc9f9f1c26e\";a:10:{s:4:\"hash\";s:32:\"87f8d960f3365c9964b91cc9f9f1c26e\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612760400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1612760400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"23bfdaaf13bb38ba0ffde18c5b8beb97\";a:10:{s:4:\"hash\";s:32:\"23bfdaaf13bb38ba0ffde18c5b8beb97\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612760400/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1612760400/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bec6d274957f76d966d5585a49f3b68c\";a:10:{s:4:\"hash\";s:32:\"bec6d274957f76d966d5585a49f3b68c\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612760400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1612760400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"95787396a0f8f205c19bbbc077e1c303\";a:10:{s:4:\"hash\";s:32:\"95787396a0f8f205c19bbbc077e1c303\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612760400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1612760400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3fed5928549740c4bd6fb58fa59759e5\";a:10:{s:4:\"hash\";s:32:\"3fed5928549740c4bd6fb58fa59759e5\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612760400/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1612760400/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ca48e28c431e32eeba852fce4af818a0\";a:10:{s:4:\"hash\";s:32:\"ca48e28c431e32eeba852fce4af818a0\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612760400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1612760400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"110456f139c4b3edc82bd98b32aa946d\";a:10:{s:4:\"hash\";s:32:\"110456f139c4b3edc82bd98b32aa946d\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612760400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1612760400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b7c4611d5391160216e8d3a7f997b6ee\";a:10:{s:4:\"hash\";s:32:\"b7c4611d5391160216e8d3a7f997b6ee\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612760400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1612760400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"59ce2d6f5410b7451a18b45a26952024\";a:10:{s:4:\"hash\";s:32:\"59ce2d6f5410b7451a18b45a26952024\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612760400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1612760400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5871331284693f813884b798dd97ae5f\";a:10:{s:4:\"hash\";s:32:\"5871331284693f813884b798dd97ae5f\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1612846800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1612846800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bca024f5905a2e460ac3b45ac918b9d8\";a:10:{s:4:\"hash\";s:32:\"bca024f5905a2e460ac3b45ac918b9d8\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1613278800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1613278800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"06670d8ac50d560040c5c97c18cadd08\";a:10:{s:4:\"hash\";s:32:\"06670d8ac50d560040c5c97c18cadd08\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1613278800/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1613278800/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6cccaca976dda21d4150cfb8329b03de\";a:10:{s:4:\"hash\";s:32:\"6cccaca976dda21d4150cfb8329b03de\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1613278800/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1613278800/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1576c2a9823461ea638ef36bcd575cc9\";a:10:{s:4:\"hash\";s:32:\"1576c2a9823461ea638ef36bcd575cc9\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1613278800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1613278800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"76ba06df308ec8d810bad2cd4e49e312\";a:10:{s:4:\"hash\";s:32:\"76ba06df308ec8d810bad2cd4e49e312\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1613278800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1613278800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b78429755ac0e2d241da495f19a6a6fa\";a:10:{s:4:\"hash\";s:32:\"b78429755ac0e2d241da495f19a6a6fa\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1613365200/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1613365200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8b9705a46a2b3b8b785d16b2394459d3\";a:10:{s:4:\"hash\";s:32:\"8b9705a46a2b3b8b785d16b2394459d3\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1613365200/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1613365200/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e453d9343e03bcd64f8055c9a5e04175\";a:10:{s:4:\"hash\";s:32:\"e453d9343e03bcd64f8055c9a5e04175\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1613365200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1613365200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"46c6cf9b8822fea6fbd70f77a8ea688c\";a:10:{s:4:\"hash\";s:32:\"46c6cf9b8822fea6fbd70f77a8ea688c\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1613365200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1613365200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"191b457515bd1a184bf802713dfe8849\";a:10:{s:4:\"hash\";s:32:\"191b457515bd1a184bf802713dfe8849\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1613365200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1613365200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6aa1d5ac4c4453af97cb42ed55f30b27\";a:10:{s:4:\"hash\";s:32:\"6aa1d5ac4c4453af97cb42ed55f30b27\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1613365200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1613365200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"89f84a54d48fb4fe1257e83c97f11d04\";a:10:{s:4:\"hash\";s:32:\"89f84a54d48fb4fe1257e83c97f11d04\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1613883600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1613883600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a055e2389e9f7683ba2a0a929fdbdab1\";a:10:{s:4:\"hash\";s:32:\"a055e2389e9f7683ba2a0a929fdbdab1\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1613970000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1613970000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"58341dcb341551f419cd46a36cd9ded2\";a:10:{s:4:\"hash\";s:32:\"58341dcb341551f419cd46a36cd9ded2\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1614574800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1614574800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"899b42219f92890865fa2ea91097510f\";a:10:{s:4:\"hash\";s:32:\"899b42219f92890865fa2ea91097510f\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1618632000/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1618632000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a1e211056990091bd8d52a36f6b006d6\";a:10:{s:4:\"hash\";s:32:\"a1e211056990091bd8d52a36f6b006d6\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1618632000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1618632000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a0121d3c244fad4e7988571b1ad1095f\";a:10:{s:4:\"hash\";s:32:\"a0121d3c244fad4e7988571b1ad1095f\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1618718400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1618718400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d09afe82b796b5b615ddfc47fca071f9\";a:10:{s:4:\"hash\";s:32:\"d09afe82b796b5b615ddfc47fca071f9\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619064000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1619064000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5e9906c39172f3b6fc4cb17ad9589d3d\";a:10:{s:4:\"hash\";s:32:\"5e9906c39172f3b6fc4cb17ad9589d3d\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619150400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619150400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"be4bef539509ab9c3c290761ace4b863\";a:10:{s:4:\"hash\";s:32:\"be4bef539509ab9c3c290761ace4b863\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619236800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619236800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3cffa81cef814f26a826beb6de051dc8\";a:10:{s:4:\"hash\";s:32:\"3cffa81cef814f26a826beb6de051dc8\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619236800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1619236800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"933a41dda4bfd271a478f450a87f9f7d\";a:10:{s:4:\"hash\";s:32:\"933a41dda4bfd271a478f450a87f9f7d\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619236800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1619236800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"52f24b50a6875c6e6dd7e1fff5bbd827\";a:10:{s:4:\"hash\";s:32:\"52f24b50a6875c6e6dd7e1fff5bbd827\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619236800/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619236800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a6ef768bc5be91e61441d3e6db70b58c\";a:10:{s:4:\"hash\";s:32:\"a6ef768bc5be91e61441d3e6db70b58c\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619236800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1619236800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"46b3382a030f82af185ed6d8ad0e879c\";a:10:{s:4:\"hash\";s:32:\"46b3382a030f82af185ed6d8ad0e879c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619236800/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619236800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d722c93c0cd0fbecdd0677d56b3c808\";a:10:{s:4:\"hash\";s:32:\"4d722c93c0cd0fbecdd0677d56b3c808\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619236800/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619236800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2227b652515f4c5fa476159d234906e7\";a:10:{s:4:\"hash\";s:32:\"2227b652515f4c5fa476159d234906e7\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619236800/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619236800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9b9bde3f4ce4818bc5456277e897b49a\";a:10:{s:4:\"hash\";s:32:\"9b9bde3f4ce4818bc5456277e897b49a\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619323200/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619323200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f2754bdd669cd43a8ad56e40809e3a8\";a:10:{s:4:\"hash\";s:32:\"7f2754bdd669cd43a8ad56e40809e3a8\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619323200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619323200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"47ecc3cb734fb78a649e5b98d4146c06\";a:10:{s:4:\"hash\";s:32:\"47ecc3cb734fb78a649e5b98d4146c06\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619323200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1619323200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"417a26be10dceed2045c2f0d6744d0d9\";a:10:{s:4:\"hash\";s:32:\"417a26be10dceed2045c2f0d6744d0d9\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619323200/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619323200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"64391c5b13861a71e2240c28d28d93e8\";a:10:{s:4:\"hash\";s:32:\"64391c5b13861a71e2240c28d28d93e8\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619323200/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619323200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7fd7c4859f58479dc6c246d2ca9ca817\";a:10:{s:4:\"hash\";s:32:\"7fd7c4859f58479dc6c246d2ca9ca817\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619323200/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619323200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c4322bb362a4cf2568f42324bec614be\";a:10:{s:4:\"hash\";s:32:\"c4322bb362a4cf2568f42324bec614be\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619496000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1619496000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"de8c04f78f68de9c59e9ef5be22e7e61\";a:10:{s:4:\"hash\";s:32:\"de8c04f78f68de9c59e9ef5be22e7e61\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619582400/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619582400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"085df148a32667c1c2a57eea60651b0c\";a:10:{s:4:\"hash\";s:32:\"085df148a32667c1c2a57eea60651b0c\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619582400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1619582400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"48f6f3bab974bc4ef41435ac72d2e828\";a:10:{s:4:\"hash\";s:32:\"48f6f3bab974bc4ef41435ac72d2e828\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619668800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1619668800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"096d8ba3e3fda35b7d7027d1fe47e087\";a:10:{s:4:\"hash\";s:32:\"096d8ba3e3fda35b7d7027d1fe47e087\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619668800/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619668800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"55bb66a4f32cdca0edd345e3cfa2d2b1\";a:10:{s:4:\"hash\";s:32:\"55bb66a4f32cdca0edd345e3cfa2d2b1\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619668800/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619668800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8462797565587a8cd9017c9720711e70\";a:10:{s:4:\"hash\";s:32:\"8462797565587a8cd9017c9720711e70\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619668800/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619668800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6299261d24ac0ba5585b87a26fbf1617\";a:10:{s:4:\"hash\";s:32:\"6299261d24ac0ba5585b87a26fbf1617\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619755200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1619755200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"722ddf3431cc126492b4a3d97214a5f5\";a:10:{s:4:\"hash\";s:32:\"722ddf3431cc126492b4a3d97214a5f5\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619755200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1619755200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ca09d9a4adb2ceb718f0387bf3a0fcc1\";a:10:{s:4:\"hash\";s:32:\"ca09d9a4adb2ceb718f0387bf3a0fcc1\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619755200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619755200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"77ee72f905e7c59f1aabc5226a2616ac\";a:10:{s:4:\"hash\";s:32:\"77ee72f905e7c59f1aabc5226a2616ac\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619755200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1619755200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6ed5cb78756fbcd603143b146b1c8f53\";a:10:{s:4:\"hash\";s:32:\"6ed5cb78756fbcd603143b146b1c8f53\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619841600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1619841600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a2035be9d83f85d56cb81a656ab7725f\";a:10:{s:4:\"hash\";s:32:\"a2035be9d83f85d56cb81a656ab7725f\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619841600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1619841600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5f3a178da8473ec8cb7fe74723e13d9c\";a:10:{s:4:\"hash\";s:32:\"5f3a178da8473ec8cb7fe74723e13d9c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619841600/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619841600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3699241e870504c97c6968fa9ecd6b08\";a:10:{s:4:\"hash\";s:32:\"3699241e870504c97c6968fa9ecd6b08\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619841600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1619841600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6f9c50188039d0fe4ca62e5dcb353c92\";a:10:{s:4:\"hash\";s:32:\"6f9c50188039d0fe4ca62e5dcb353c92\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619841600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1619841600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cb8dd25a54118d7ab11273109f7fc13e\";a:10:{s:4:\"hash\";s:32:\"cb8dd25a54118d7ab11273109f7fc13e\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619841600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1619841600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"73481b819dcc9bea156120befdce669b\";a:10:{s:4:\"hash\";s:32:\"73481b819dcc9bea156120befdce669b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619841600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619841600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"798adce91252bee6dd937f9f27c7b000\";a:10:{s:4:\"hash\";s:32:\"798adce91252bee6dd937f9f27c7b000\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619841600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1619841600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0da61a782d78e3895d7262920ef7144f\";a:10:{s:4:\"hash\";s:32:\"0da61a782d78e3895d7262920ef7144f\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619841600/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619841600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fa0aadd43d13fd137aa7f9d29bf9bf43\";a:10:{s:4:\"hash\";s:32:\"fa0aadd43d13fd137aa7f9d29bf9bf43\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619841600/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619841600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f46d12367d52c75e3c369a0f77a9a5fe\";a:10:{s:4:\"hash\";s:32:\"f46d12367d52c75e3c369a0f77a9a5fe\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619841600/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1619841600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d03786c5ab3fc4acb786425070bf2e3a\";a:10:{s:4:\"hash\";s:32:\"d03786c5ab3fc4acb786425070bf2e3a\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1619928000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1619928000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"75c1901be6e7ecf989febc2bec45fdc1\";a:10:{s:4:\"hash\";s:32:\"75c1901be6e7ecf989febc2bec45fdc1\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620014400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620014400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"98d1d1c0e89bb4ec70f8fdab474cd587\";a:10:{s:4:\"hash\";s:32:\"98d1d1c0e89bb4ec70f8fdab474cd587\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620100800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620100800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dfe6e9d329a288051080aa2e5549a6b7\";a:10:{s:4:\"hash\";s:32:\"dfe6e9d329a288051080aa2e5549a6b7\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620100800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620100800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"866b8694b182932553de925338d4f8b5\";a:10:{s:4:\"hash\";s:32:\"866b8694b182932553de925338d4f8b5\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620100800/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620100800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c4e6ef54806c8c679fd4ea0d0f1d9201\";a:10:{s:4:\"hash\";s:32:\"c4e6ef54806c8c679fd4ea0d0f1d9201\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620100800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1620100800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"32afd1a8c22233c1a0bee22996a9c217\";a:10:{s:4:\"hash\";s:32:\"32afd1a8c22233c1a0bee22996a9c217\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620187200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1620187200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"52f936bc18c2dc4f108b9f1fd9e89532\";a:10:{s:4:\"hash\";s:32:\"52f936bc18c2dc4f108b9f1fd9e89532\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620187200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1620187200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8d0955d64f0aee5cabe5073f0832e786\";a:10:{s:4:\"hash\";s:32:\"8d0955d64f0aee5cabe5073f0832e786\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620187200/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620187200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eeb7bda3e268639b55c2cea3194eab71\";a:10:{s:4:\"hash\";s:32:\"eeb7bda3e268639b55c2cea3194eab71\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620187200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1620187200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5919d7ac27983f6ee6186cdd5f47616c\";a:10:{s:4:\"hash\";s:32:\"5919d7ac27983f6ee6186cdd5f47616c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620187200/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620187200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ad1bf03b14c4d8242d6a428ce97d4d4\";a:10:{s:4:\"hash\";s:32:\"8ad1bf03b14c4d8242d6a428ce97d4d4\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620187200/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620187200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bccf88d87cfdddee5bb673dcaa1fa690\";a:10:{s:4:\"hash\";s:32:\"bccf88d87cfdddee5bb673dcaa1fa690\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620187200/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620187200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2affde78d091c06bdb203086d471ef0a\";a:10:{s:4:\"hash\";s:32:\"2affde78d091c06bdb203086d471ef0a\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620273600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1620273600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c42f9adb8083163058afc0163dba415e\";a:10:{s:4:\"hash\";s:32:\"c42f9adb8083163058afc0163dba415e\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620273600/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620273600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d9896ad7731aa8974f7008b337b7696e\";a:10:{s:4:\"hash\";s:32:\"d9896ad7731aa8974f7008b337b7696e\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620273600/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620273600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c0a6791c2b64b63ddf9f3a110f9cbf9a\";a:10:{s:4:\"hash\";s:32:\"c0a6791c2b64b63ddf9f3a110f9cbf9a\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620273600/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620273600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"10cf3011aeb814146d69549530051e41\";a:10:{s:4:\"hash\";s:32:\"10cf3011aeb814146d69549530051e41\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620360000/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620360000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"08834bb775494ef446aea4ab6196457a\";a:10:{s:4:\"hash\";s:32:\"08834bb775494ef446aea4ab6196457a\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620360000/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620360000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"395b5383a37033ae2dfca04c382d98c1\";a:10:{s:4:\"hash\";s:32:\"395b5383a37033ae2dfca04c382d98c1\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620360000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1620360000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"41a065b4af6fc4b9205f677a2d12ec34\";a:10:{s:4:\"hash\";s:32:\"41a065b4af6fc4b9205f677a2d12ec34\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620446400/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620446400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c4c4581f04b7c9245cd9c50b1c64705d\";a:10:{s:4:\"hash\";s:32:\"c4c4581f04b7c9245cd9c50b1c64705d\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620446400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620446400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d13594f98d218e12c57de68973c9aee\";a:10:{s:4:\"hash\";s:32:\"4d13594f98d218e12c57de68973c9aee\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620446400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1620446400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6fd0348905ac230cc48e3c339627470c\";a:10:{s:4:\"hash\";s:32:\"6fd0348905ac230cc48e3c339627470c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620446400/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620446400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dba2b10713369c52d711d18215a72af0\";a:10:{s:4:\"hash\";s:32:\"dba2b10713369c52d711d18215a72af0\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620446400/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620446400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9587f44a937b547d10777b3254049e58\";a:10:{s:4:\"hash\";s:32:\"9587f44a937b547d10777b3254049e58\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620446400/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620446400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"db746b24ed6a2a2bd2bd18957c417337\";a:10:{s:4:\"hash\";s:32:\"db746b24ed6a2a2bd2bd18957c417337\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620532800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620532800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ae3d4dfbea004d5f35f6216a708d459c\";a:10:{s:4:\"hash\";s:32:\"ae3d4dfbea004d5f35f6216a708d459c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620532800/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620532800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"961bfc183306456ac33c70370ee713a1\";a:10:{s:4:\"hash\";s:32:\"961bfc183306456ac33c70370ee713a1\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620532800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1620532800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0c85420a4f9db936b4d6e4cca30304f1\";a:10:{s:4:\"hash\";s:32:\"0c85420a4f9db936b4d6e4cca30304f1\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620619200/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620619200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"531d2164598b168e2eafd5604d10837d\";a:10:{s:4:\"hash\";s:32:\"531d2164598b168e2eafd5604d10837d\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620619200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620619200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"97b1542e26b4d3ed4e8d2a8dab736302\";a:10:{s:4:\"hash\";s:32:\"97b1542e26b4d3ed4e8d2a8dab736302\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620619200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1620619200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"44bb6b2bbf8dca239a5956b4bd39e600\";a:10:{s:4:\"hash\";s:32:\"44bb6b2bbf8dca239a5956b4bd39e600\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620619200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1620619200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9a2bee4617f182bec52a9e50319d85ec\";a:10:{s:4:\"hash\";s:32:\"9a2bee4617f182bec52a9e50319d85ec\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620619200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620619200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"93494be72505a5bbe752f96aa56099f1\";a:10:{s:4:\"hash\";s:32:\"93494be72505a5bbe752f96aa56099f1\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620619200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1620619200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"86ee6aaf7a869f0179aab71aaad4c892\";a:10:{s:4:\"hash\";s:32:\"86ee6aaf7a869f0179aab71aaad4c892\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620705600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1620705600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1842d6a97901b083cc97618c0095cf06\";a:10:{s:4:\"hash\";s:32:\"1842d6a97901b083cc97618c0095cf06\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620705600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1620705600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1eaeeafeb4adc1012b67305913942734\";a:10:{s:4:\"hash\";s:32:\"1eaeeafeb4adc1012b67305913942734\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620705600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620705600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"55177fa8c7085b2f187df6cfbb88faef\";a:10:{s:4:\"hash\";s:32:\"55177fa8c7085b2f187df6cfbb88faef\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620705600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1620705600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f8a055710218547ed8175c2d3ca813f3\";a:10:{s:4:\"hash\";s:32:\"f8a055710218547ed8175c2d3ca813f3\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620705600/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620705600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f52e044d46fcdd5745617b39f9181b47\";a:10:{s:4:\"hash\";s:32:\"f52e044d46fcdd5745617b39f9181b47\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620705600/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620705600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"09994df75dca4897f6a15152083c2cf9\";a:10:{s:4:\"hash\";s:32:\"09994df75dca4897f6a15152083c2cf9\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620705600/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620705600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dd8904469817767d7b09470dc1bdfaa9\";a:10:{s:4:\"hash\";s:32:\"dd8904469817767d7b09470dc1bdfaa9\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620792000/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620792000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0aa300bc5f03bfae3bb5a947c13199d3\";a:10:{s:4:\"hash\";s:32:\"0aa300bc5f03bfae3bb5a947c13199d3\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620792000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1620792000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0dbb90e5819a40aff59dee215432540f\";a:10:{s:4:\"hash\";s:32:\"0dbb90e5819a40aff59dee215432540f\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620792000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620792000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"66f296cfc8965375657fc526c7a57164\";a:10:{s:4:\"hash\";s:32:\"66f296cfc8965375657fc526c7a57164\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620792000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1620792000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e6aa6f59b610ad5ad66b153029927d3c\";a:10:{s:4:\"hash\";s:32:\"e6aa6f59b610ad5ad66b153029927d3c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620792000/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620792000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"12957361b98568afca9002b9573a79d5\";a:10:{s:4:\"hash\";s:32:\"12957361b98568afca9002b9573a79d5\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620792000/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620792000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b91e9b542f04107a8694911b034fd9c2\";a:10:{s:4:\"hash\";s:32:\"b91e9b542f04107a8694911b034fd9c2\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620792000/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620792000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f95bed66972234b04e2a5c5daf832445\";a:10:{s:4:\"hash\";s:32:\"f95bed66972234b04e2a5c5daf832445\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620878400/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620878400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"367a73221f74c3689170e6cf1e164980\";a:10:{s:4:\"hash\";s:32:\"367a73221f74c3689170e6cf1e164980\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620878400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1620878400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"60207128c8ea96b5cec1a6046b88bd06\";a:10:{s:4:\"hash\";s:32:\"60207128c8ea96b5cec1a6046b88bd06\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620964800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1620964800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c8b78fc7a47563a1e231787694c44b7d\";a:10:{s:4:\"hash\";s:32:\"c8b78fc7a47563a1e231787694c44b7d\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620964800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1620964800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8b8e16fda7c7d84e9e1c5f9091bc8634\";a:10:{s:4:\"hash\";s:32:\"8b8e16fda7c7d84e9e1c5f9091bc8634\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620964800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1620964800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1ec673a9fd51ed361214717ad20ed09b\";a:10:{s:4:\"hash\";s:32:\"1ec673a9fd51ed361214717ad20ed09b\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1620964800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1620964800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b4ff8b96c4d4e60bc2241f8d080f31e7\";a:10:{s:4:\"hash\";s:32:\"b4ff8b96c4d4e60bc2241f8d080f31e7\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621051200/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621051200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"90657bf98cce20136c21ee43e0f52103\";a:10:{s:4:\"hash\";s:32:\"90657bf98cce20136c21ee43e0f52103\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621051200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621051200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c02df370f6b4280875c29d099c1a215d\";a:10:{s:4:\"hash\";s:32:\"c02df370f6b4280875c29d099c1a215d\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621051200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1621051200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"83f945935ae25a8b1817c4473133d64f\";a:10:{s:4:\"hash\";s:32:\"83f945935ae25a8b1817c4473133d64f\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621051200/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621051200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"34052f8361535772dd787371fafa9ba5\";a:10:{s:4:\"hash\";s:32:\"34052f8361535772dd787371fafa9ba5\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621051200/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621051200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7b8e700ae61bff4845d4eafe109eaf58\";a:10:{s:4:\"hash\";s:32:\"7b8e700ae61bff4845d4eafe109eaf58\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621051200/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621051200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f0808c2fe2ee300ae25577c82d5d4512\";a:10:{s:4:\"hash\";s:32:\"f0808c2fe2ee300ae25577c82d5d4512\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621224000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1621224000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8013738378e3a468b53ea4143e2c6a1b\";a:10:{s:4:\"hash\";s:32:\"8013738378e3a468b53ea4143e2c6a1b\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621224000/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1621224000/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ae13168ec38bdefb416085226fca7190\";a:10:{s:4:\"hash\";s:32:\"ae13168ec38bdefb416085226fca7190\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621224000/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621224000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"922c298763a3f518446ce4e8297af788\";a:10:{s:4:\"hash\";s:32:\"922c298763a3f518446ce4e8297af788\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621224000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1621224000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7189bd0939a8f3a8e2189b7983f9d9b1\";a:10:{s:4:\"hash\";s:32:\"7189bd0939a8f3a8e2189b7983f9d9b1\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621224000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1621224000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"20f020c1a902d43ee24bc6fe23fd51df\";a:10:{s:4:\"hash\";s:32:\"20f020c1a902d43ee24bc6fe23fd51df\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621224000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621224000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bed6cc73dda9540e2ef2dd9364cd7ad9\";a:10:{s:4:\"hash\";s:32:\"bed6cc73dda9540e2ef2dd9364cd7ad9\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621224000/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621224000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4920c791a2a210cde4d0192c7f758b62\";a:10:{s:4:\"hash\";s:32:\"4920c791a2a210cde4d0192c7f758b62\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621224000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1621224000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1567e0ffbd5a2a1439f5f01e7914f4a8\";a:10:{s:4:\"hash\";s:32:\"1567e0ffbd5a2a1439f5f01e7914f4a8\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621224000/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621224000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ffad6bfeba65992e3ad9a8d6a8567419\";a:10:{s:4:\"hash\";s:32:\"ffad6bfeba65992e3ad9a8d6a8567419\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621224000/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621224000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"530bebe116de2b8ac26b4c051ef61bb1\";a:10:{s:4:\"hash\";s:32:\"530bebe116de2b8ac26b4c051ef61bb1\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621224000/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621224000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"adcae83efbb4c65ac4c78a26c4246cd3\";a:10:{s:4:\"hash\";s:32:\"adcae83efbb4c65ac4c78a26c4246cd3\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621310400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1621310400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e749ab486c1d2191e93c81722126685d\";a:10:{s:4:\"hash\";s:32:\"e749ab486c1d2191e93c81722126685d\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621310400/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621310400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1cdb3fedd764c470ecf7a93079e8c89a\";a:10:{s:4:\"hash\";s:32:\"1cdb3fedd764c470ecf7a93079e8c89a\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621310400/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621310400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"de670b834716e8ecc4213d53a6edd9db\";a:10:{s:4:\"hash\";s:32:\"de670b834716e8ecc4213d53a6edd9db\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621310400/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621310400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dfd208bcf02b03f141f51783858a633d\";a:10:{s:4:\"hash\";s:32:\"dfd208bcf02b03f141f51783858a633d\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621396800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1621396800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e66f106e2eea77547a85fcebf0a30fba\";a:10:{s:4:\"hash\";s:32:\"e66f106e2eea77547a85fcebf0a30fba\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621396800/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621396800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"93e78fb0c8c304e8ae57b6ad082bcd51\";a:10:{s:4:\"hash\";s:32:\"93e78fb0c8c304e8ae57b6ad082bcd51\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621396800/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621396800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9e16c509b646cd102ea6478d3c4decfd\";a:10:{s:4:\"hash\";s:32:\"9e16c509b646cd102ea6478d3c4decfd\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621396800/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621396800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ca660e707edefd7c8441826a0feb711\";a:10:{s:4:\"hash\";s:32:\"8ca660e707edefd7c8441826a0feb711\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621569600/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621569600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6555dd3b3e819b061ef9d66faf943e94\";a:10:{s:4:\"hash\";s:32:\"6555dd3b3e819b061ef9d66faf943e94\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621569600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1621569600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"abfcabb68178d1d43ae82c2ff41af24d\";a:10:{s:4:\"hash\";s:32:\"abfcabb68178d1d43ae82c2ff41af24d\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621656000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1621656000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bab465f926fbe1102bd4759361a6103b\";a:10:{s:4:\"hash\";s:32:\"bab465f926fbe1102bd4759361a6103b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621828800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621828800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f6d445a1cc01c226cec74e66b0773230\";a:10:{s:4:\"hash\";s:32:\"f6d445a1cc01c226cec74e66b0773230\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621828800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621828800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a72189c59e0ebd61832cb09c7a41634\";a:10:{s:4:\"hash\";s:32:\"8a72189c59e0ebd61832cb09c7a41634\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621828800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1621828800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d2a55a92b2309784faab96f75750a631\";a:10:{s:4:\"hash\";s:32:\"d2a55a92b2309784faab96f75750a631\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621828800/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621828800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"52e3d0532b2de264a7466d8ef5a29625\";a:10:{s:4:\"hash\";s:32:\"52e3d0532b2de264a7466d8ef5a29625\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621828800/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621828800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f9c3ed0b3eee5e2db4f53669eeb2d96f\";a:10:{s:4:\"hash\";s:32:\"f9c3ed0b3eee5e2db4f53669eeb2d96f\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621828800/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621828800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"831cf74c9408a2d12b290c7f7026f0f8\";a:10:{s:4:\"hash\";s:32:\"831cf74c9408a2d12b290c7f7026f0f8\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621915200/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621915200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"600623412e77d0a417af4486a625390c\";a:10:{s:4:\"hash\";s:32:\"600623412e77d0a417af4486a625390c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621915200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1621915200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4c9d5598c09236c41ade428e4df57d97\";a:10:{s:4:\"hash\";s:32:\"4c9d5598c09236c41ade428e4df57d97\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1621915200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1621915200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cd032368471f983a5271a17b2131dea6\";a:10:{s:4:\"hash\";s:32:\"cd032368471f983a5271a17b2131dea6\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622001600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1622001600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e3bc146972ecfeefbe24e64179f03905\";a:10:{s:4:\"hash\";s:32:\"e3bc146972ecfeefbe24e64179f03905\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622001600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1622001600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9be5ad80fc062d370eb9baa84d564453\";a:10:{s:4:\"hash\";s:32:\"9be5ad80fc062d370eb9baa84d564453\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622174400/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1622174400/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7906e43cce6bdabf7b09d506396a2f59\";a:10:{s:4:\"hash\";s:32:\"7906e43cce6bdabf7b09d506396a2f59\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622174400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1622174400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"52d4efb0492e07b652204d4cf69566eb\";a:10:{s:4:\"hash\";s:32:\"52d4efb0492e07b652204d4cf69566eb\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622174400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1622174400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"855cd1173f3ce783cba6fcb4acc09be3\";a:10:{s:4:\"hash\";s:32:\"855cd1173f3ce783cba6fcb4acc09be3\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622174400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1622174400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0c4aa17d57ec2520b37c108ecdf9eec9\";a:10:{s:4:\"hash\";s:32:\"0c4aa17d57ec2520b37c108ecdf9eec9\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622433600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1622433600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"78927fbdb6512263ccba2c1ce589d885\";a:10:{s:4:\"hash\";s:32:\"78927fbdb6512263ccba2c1ce589d885\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622520000/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1622520000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f4c23ac3ceeab0fb92c4678f9877c9e0\";a:10:{s:4:\"hash\";s:32:\"f4c23ac3ceeab0fb92c4678f9877c9e0\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622520000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1622520000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7b23381f249580993f34192a0c30dc87\";a:10:{s:4:\"hash\";s:32:\"7b23381f249580993f34192a0c30dc87\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622520000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1622520000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6b5b9277c4da379d9322ac6f93cd5674\";a:10:{s:4:\"hash\";s:32:\"6b5b9277c4da379d9322ac6f93cd5674\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622520000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1622520000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1ddf8ed47028556fd3672775389c46be\";a:10:{s:4:\"hash\";s:32:\"1ddf8ed47028556fd3672775389c46be\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622520000/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1622520000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b4251761d85184cf70baa2e67f98eb67\";a:10:{s:4:\"hash\";s:32:\"b4251761d85184cf70baa2e67f98eb67\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622520000/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1622520000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5c0018815ab21e513ca74f04dd5e52a0\";a:10:{s:4:\"hash\";s:32:\"5c0018815ab21e513ca74f04dd5e52a0\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622520000/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1622520000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bb9caa9d176f871f96ad26af579c3e8c\";a:10:{s:4:\"hash\";s:32:\"bb9caa9d176f871f96ad26af579c3e8c\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622606400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1622606400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"68f246fffe5acb9b67c205cc6bbc64ad\";a:10:{s:4:\"hash\";s:32:\"68f246fffe5acb9b67c205cc6bbc64ad\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622692800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1622692800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"94f8a3c2aab4a67ff57d7e5990d8e097\";a:10:{s:4:\"hash\";s:32:\"94f8a3c2aab4a67ff57d7e5990d8e097\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622779200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1622779200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6fbdb18c946323f962dfd5c042ce7b91\";a:10:{s:4:\"hash\";s:32:\"6fbdb18c946323f962dfd5c042ce7b91\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622779200/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1622779200/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d2edcafa96fe2730e1231ac8f0b2c26b\";a:10:{s:4:\"hash\";s:32:\"d2edcafa96fe2730e1231ac8f0b2c26b\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622779200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1622779200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"42caeba781c0d544d3bb83c5781e72ca\";a:10:{s:4:\"hash\";s:32:\"42caeba781c0d544d3bb83c5781e72ca\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622779200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1622779200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d9fe61857e760210872efd80d88bea10\";a:10:{s:4:\"hash\";s:32:\"d9fe61857e760210872efd80d88bea10\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622779200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1622779200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9857efd1ff99eb77be224245c857b18f\";a:10:{s:4:\"hash\";s:32:\"9857efd1ff99eb77be224245c857b18f\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622779200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1622779200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"76b9d58540ad6ca05b69515049251207\";a:10:{s:4:\"hash\";s:32:\"76b9d58540ad6ca05b69515049251207\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1622865600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1622865600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"97d6896d59f9ea943e6dd67d62802d33\";a:10:{s:4:\"hash\";s:32:\"97d6896d59f9ea943e6dd67d62802d33\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623038400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1623038400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b55844dd2ae8d9d1cf6126244676f703\";a:10:{s:4:\"hash\";s:32:\"b55844dd2ae8d9d1cf6126244676f703\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623124800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1623124800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"518fb73e889cbbe992a738346be71551\";a:10:{s:4:\"hash\";s:32:\"518fb73e889cbbe992a738346be71551\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623124800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1623124800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dc99b852c2a668841c8149cc3efa7b3b\";a:10:{s:4:\"hash\";s:32:\"dc99b852c2a668841c8149cc3efa7b3b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623124800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623124800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2b836c6505c4a07444a05154ee595f8e\";a:10:{s:4:\"hash\";s:32:\"2b836c6505c4a07444a05154ee595f8e\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623124800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1623124800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0abcb01a91a07ac2790dcf2d18a6bb10\";a:10:{s:4:\"hash\";s:32:\"0abcb01a91a07ac2790dcf2d18a6bb10\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623124800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1623124800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"39f9a3e1c74970841a5778e5dd6372ec\";a:10:{s:4:\"hash\";s:32:\"39f9a3e1c74970841a5778e5dd6372ec\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623124800/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623124800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"65708bf35a29783887487d151a4f9777\";a:10:{s:4:\"hash\";s:32:\"65708bf35a29783887487d151a4f9777\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623124800/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623124800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"688858293c3750f6b896cab6ebf6bd1c\";a:10:{s:4:\"hash\";s:32:\"688858293c3750f6b896cab6ebf6bd1c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623124800/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623124800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8dc865d767f66ab86974fa03a91fd24b\";a:10:{s:4:\"hash\";s:32:\"8dc865d767f66ab86974fa03a91fd24b\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623211200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1623211200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"de3a5582554379c92b1e9fea77a2660c\";a:10:{s:4:\"hash\";s:32:\"de3a5582554379c92b1e9fea77a2660c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623211200/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623211200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"51e9084a6ed0635968fdcfe5484db8a5\";a:10:{s:4:\"hash\";s:32:\"51e9084a6ed0635968fdcfe5484db8a5\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623211200/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623211200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2e7c68a8f376b78afb7c2e9bb7e7b7ca\";a:10:{s:4:\"hash\";s:32:\"2e7c68a8f376b78afb7c2e9bb7e7b7ca\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623211200/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623211200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b8462804476eaabf1947b103f10fa688\";a:10:{s:4:\"hash\";s:32:\"b8462804476eaabf1947b103f10fa688\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623384000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1623384000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3cbfaed5c194f5326a683a2742900a2d\";a:10:{s:4:\"hash\";s:32:\"3cbfaed5c194f5326a683a2742900a2d\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623384000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1623384000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0064a5f6cd2d4d117614c817f2c119a7\";a:10:{s:4:\"hash\";s:32:\"0064a5f6cd2d4d117614c817f2c119a7\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623384000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623384000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6b00735fb145ee72a6f5d1bc4f8b6d2d\";a:10:{s:4:\"hash\";s:32:\"6b00735fb145ee72a6f5d1bc4f8b6d2d\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623384000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1623384000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c480fc2faa0b7cbe76b6375f52a04da\";a:10:{s:4:\"hash\";s:32:\"3c480fc2faa0b7cbe76b6375f52a04da\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623470400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623470400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7980eadc60e29c6840b90f1c42984b05\";a:10:{s:4:\"hash\";s:32:\"7980eadc60e29c6840b90f1c42984b05\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623556800/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623556800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"df1bedcd11b77a6e00a2a3d729e4999a\";a:10:{s:4:\"hash\";s:32:\"df1bedcd11b77a6e00a2a3d729e4999a\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623556800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1623556800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f7f3c27bbedd369cee6f33a2a0b6830a\";a:10:{s:4:\"hash\";s:32:\"f7f3c27bbedd369cee6f33a2a0b6830a\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623643200/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623643200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c55b965ae0516598f8c26f3a82d29b1\";a:10:{s:4:\"hash\";s:32:\"3c55b965ae0516598f8c26f3a82d29b1\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623643200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623643200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"78e152eadd63a8679c9a33e3e7fe295d\";a:10:{s:4:\"hash\";s:32:\"78e152eadd63a8679c9a33e3e7fe295d\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623643200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1623643200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7b44a366b4fe0ef080f02a633bfdd004\";a:10:{s:4:\"hash\";s:32:\"7b44a366b4fe0ef080f02a633bfdd004\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623643200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623643200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c5c5dbfbae6a3db961936df629d6e1c0\";a:10:{s:4:\"hash\";s:32:\"c5c5dbfbae6a3db961936df629d6e1c0\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623643200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1623643200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"13c8d3d8b90e8c36333bc326d627ca2e\";a:10:{s:4:\"hash\";s:32:\"13c8d3d8b90e8c36333bc326d627ca2e\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623643200/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623643200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3d4e72a63c46c8e95243e37b29283999\";a:10:{s:4:\"hash\";s:32:\"3d4e72a63c46c8e95243e37b29283999\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623643200/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623643200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6f97eaffc87eda114c84401f8a007eb7\";a:10:{s:4:\"hash\";s:32:\"6f97eaffc87eda114c84401f8a007eb7\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623643200/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623643200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"de4a5decb1331cc2c29ccaec8b3c7f7a\";a:10:{s:4:\"hash\";s:32:\"de4a5decb1331cc2c29ccaec8b3c7f7a\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623729600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1623729600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b81af63a46e23b247992308278283ccd\";a:10:{s:4:\"hash\";s:32:\"b81af63a46e23b247992308278283ccd\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623729600/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1623729600/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"406572845bfd603134764bd7a5a409f4\";a:10:{s:4:\"hash\";s:32:\"406572845bfd603134764bd7a5a409f4\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623729600/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623729600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f6181251193d763dab36ec9369df4f2e\";a:10:{s:4:\"hash\";s:32:\"f6181251193d763dab36ec9369df4f2e\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623729600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1623729600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0945fee7b6585179d8b826bba5306492\";a:10:{s:4:\"hash\";s:32:\"0945fee7b6585179d8b826bba5306492\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623729600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1623729600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"55eec8cd2924a21f659d2129cd3e9629\";a:10:{s:4:\"hash\";s:32:\"55eec8cd2924a21f659d2129cd3e9629\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623729600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1623729600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b613f853465049b65728f9791e08977c\";a:10:{s:4:\"hash\";s:32:\"b613f853465049b65728f9791e08977c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623729600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623729600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1fb0d367a2617711ddec590c4f53f8e2\";a:10:{s:4:\"hash\";s:32:\"1fb0d367a2617711ddec590c4f53f8e2\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623729600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1623729600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0707a370ce2fd262693df43962762a1e\";a:10:{s:4:\"hash\";s:32:\"0707a370ce2fd262693df43962762a1e\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623729600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623729600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9d768d3a73f5c36b01b2a040f35a7323\";a:10:{s:4:\"hash\";s:32:\"9d768d3a73f5c36b01b2a040f35a7323\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623729600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1623729600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7fa0b890aa23d886836dca2e8bcfbc58\";a:10:{s:4:\"hash\";s:32:\"7fa0b890aa23d886836dca2e8bcfbc58\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623729600/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623729600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"85e4a825b77e10dee5adb989905020d8\";a:10:{s:4:\"hash\";s:32:\"85e4a825b77e10dee5adb989905020d8\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623729600/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623729600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9b7e2e798e2d70ddd5d42922f2c9b903\";a:10:{s:4:\"hash\";s:32:\"9b7e2e798e2d70ddd5d42922f2c9b903\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623729600/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623729600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"43f2a0f5f0266701c66e6802ac3a5bb9\";a:10:{s:4:\"hash\";s:32:\"43f2a0f5f0266701c66e6802ac3a5bb9\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623816000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1623816000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8b49710825280a972bec5f981a6cb9ee\";a:10:{s:4:\"hash\";s:32:\"8b49710825280a972bec5f981a6cb9ee\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623816000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623816000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"da58f6072acc372297e073c6b271b978\";a:10:{s:4:\"hash\";s:32:\"da58f6072acc372297e073c6b271b978\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623816000/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1623816000/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c961010784feeac61c419f75b9c8ec21\";a:10:{s:4:\"hash\";s:32:\"c961010784feeac61c419f75b9c8ec21\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623816000/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623816000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"608acfc6ad25c019ebadf94143328075\";a:10:{s:4:\"hash\";s:32:\"608acfc6ad25c019ebadf94143328075\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623816000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1623816000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"057632267c4b760d8c0740e3e6deb4f1\";a:10:{s:4:\"hash\";s:32:\"057632267c4b760d8c0740e3e6deb4f1\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623816000/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623816000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"91fd0d5292d7f978eca02c3d5a48de6b\";a:10:{s:4:\"hash\";s:32:\"91fd0d5292d7f978eca02c3d5a48de6b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623816000/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623816000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"991e01a5099fbbf33b7cf31098dbec2a\";a:10:{s:4:\"hash\";s:32:\"991e01a5099fbbf33b7cf31098dbec2a\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623816000/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623816000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3807d0472615dce689ec59a049751485\";a:10:{s:4:\"hash\";s:32:\"3807d0472615dce689ec59a049751485\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623902400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1623902400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"11371c6f9ae6c4d25a47a0d200ab6e55\";a:10:{s:4:\"hash\";s:32:\"11371c6f9ae6c4d25a47a0d200ab6e55\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623902400/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1623902400/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"04042ac4f42052aeea3321072a3e90db\";a:10:{s:4:\"hash\";s:32:\"04042ac4f42052aeea3321072a3e90db\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623902400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623902400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0a80d3cca82bb70a423f463acac92fb5\";a:10:{s:4:\"hash\";s:32:\"0a80d3cca82bb70a423f463acac92fb5\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623902400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1623902400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8c63d34f9cf8a248f32300ec7e42ac2a\";a:10:{s:4:\"hash\";s:32:\"8c63d34f9cf8a248f32300ec7e42ac2a\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623988800/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1623988800/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"43e95589bf10acc5653c19a1adde0645\";a:10:{s:4:\"hash\";s:32:\"43e95589bf10acc5653c19a1adde0645\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623988800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1623988800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"575cb034eb918567ffa4d50684e01372\";a:10:{s:4:\"hash\";s:32:\"575cb034eb918567ffa4d50684e01372\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623988800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1623988800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8b42f0713f7c01a671a753c38d7f43c0\";a:10:{s:4:\"hash\";s:32:\"8b42f0713f7c01a671a753c38d7f43c0\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623988800/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1623988800/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f6b0e36523f99d17b8d2c29b422adb82\";a:10:{s:4:\"hash\";s:32:\"f6b0e36523f99d17b8d2c29b422adb82\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623988800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1623988800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ccd2b458817ab7e07c87ddc51b076392\";a:10:{s:4:\"hash\";s:32:\"ccd2b458817ab7e07c87ddc51b076392\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1623988800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1623988800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9f6084a39ced8c07bf802929298c7f1a\";a:10:{s:4:\"hash\";s:32:\"9f6084a39ced8c07bf802929298c7f1a\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1624075200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1624075200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e135ef342c07d52966f7692310ef8bd6\";a:10:{s:4:\"hash\";s:32:\"e135ef342c07d52966f7692310ef8bd6\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1624075200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1624075200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bb3455d711556954980ee8014a5854e3\";a:10:{s:4:\"hash\";s:32:\"bb3455d711556954980ee8014a5854e3\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1624075200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1624075200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"dfe525419cc8c27c88d56508c8b389c4\";a:10:{s:4:\"hash\";s:32:\"dfe525419cc8c27c88d56508c8b389c4\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1624248000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1624248000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"efc5dfe2e2addbee7d2f15a5825ac72a\";a:10:{s:4:\"hash\";s:32:\"efc5dfe2e2addbee7d2f15a5825ac72a\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1624334400/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1624334400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0c7987587752c938837c9e731a6d31bf\";a:10:{s:4:\"hash\";s:32:\"0c7987587752c938837c9e731a6d31bf\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1624334400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1624334400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"faa316bb6cc00c2dc5d351df8fc92c93\";a:10:{s:4:\"hash\";s:32:\"faa316bb6cc00c2dc5d351df8fc92c93\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1624334400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1624334400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"caef9ea2c80483f7927ca2b29abc53c9\";a:10:{s:4:\"hash\";s:32:\"caef9ea2c80483f7927ca2b29abc53c9\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1624334400/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1624334400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"20ba942aa77cbd656a32a4c4860de10f\";a:10:{s:4:\"hash\";s:32:\"20ba942aa77cbd656a32a4c4860de10f\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1624334400/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1624334400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"419fdb8caced58918e6e74eb55e118f4\";a:10:{s:4:\"hash\";s:32:\"419fdb8caced58918e6e74eb55e118f4\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1624334400/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1624334400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"abe275dd507d37820ffa917c69781e4e\";a:10:{s:4:\"hash\";s:32:\"abe275dd507d37820ffa917c69781e4e\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1624420800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1624420800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"539bc7d7ddf826020bb64b0973a8d74d\";a:10:{s:4:\"hash\";s:32:\"539bc7d7ddf826020bb64b0973a8d74d\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1624507200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1624507200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"916776e37252ae1d4e04ce12470ad6a2\";a:10:{s:4:\"hash\";s:32:\"916776e37252ae1d4e04ce12470ad6a2\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1624507200/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1624507200/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2ad54f0e14f78a9ce2f5eb19176de67a\";a:10:{s:4:\"hash\";s:32:\"2ad54f0e14f78a9ce2f5eb19176de67a\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1624507200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1624507200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"41cb967889ec42f406f59e0e2adc197d\";a:10:{s:4:\"hash\";s:32:\"41cb967889ec42f406f59e0e2adc197d\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1624507200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1624507200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"af5bc61ae0205a3c7294049b859b3978\";a:10:{s:4:\"hash\";s:32:\"af5bc61ae0205a3c7294049b859b3978\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1624507200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1624507200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"97a7f14175e7c8adde7b63a298b2b11a\";a:10:{s:4:\"hash\";s:32:\"97a7f14175e7c8adde7b63a298b2b11a\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1624939200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1624939200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"986f29aa047da83935fc7a636f3ae11a\";a:10:{s:4:\"hash\";s:32:\"986f29aa047da83935fc7a636f3ae11a\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1624939200/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1624939200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"119440272efe728a20793ac9bb354ec6\";a:10:{s:4:\"hash\";s:32:\"119440272efe728a20793ac9bb354ec6\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1624939200/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1624939200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"306c0667d85b53ebcba221be4a8aff41\";a:10:{s:4:\"hash\";s:32:\"306c0667d85b53ebcba221be4a8aff41\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1624939200/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1624939200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"167e1d558812c992479257d511178d2a\";a:10:{s:4:\"hash\";s:32:\"167e1d558812c992479257d511178d2a\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1625112000/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1625112000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a26c1a4ecd80d98fa7066b53b7b1a2bc\";a:10:{s:4:\"hash\";s:32:\"a26c1a4ecd80d98fa7066b53b7b1a2bc\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1625112000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1625112000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fbc230d2f016cbc70790019fdddcb37d\";a:10:{s:4:\"hash\";s:32:\"fbc230d2f016cbc70790019fdddcb37d\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1625112000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1625112000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b03cce245e7908a92f7a49cb24a28954\";a:10:{s:4:\"hash\";s:32:\"b03cce245e7908a92f7a49cb24a28954\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1625112000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1625112000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"abace941f242103c0edf63779c168de8\";a:10:{s:4:\"hash\";s:32:\"abace941f242103c0edf63779c168de8\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1625112000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1625112000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a7d562268b80264c1690e9ef2348bde2\";a:10:{s:4:\"hash\";s:32:\"a7d562268b80264c1690e9ef2348bde2\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1625112000/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1625112000/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"239643dea51b036c05365d13a2e9fdd3\";a:10:{s:4:\"hash\";s:32:\"239643dea51b036c05365d13a2e9fdd3\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1625112000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1625112000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"12ed0d86ab902e76b068f00d62895212\";a:10:{s:4:\"hash\";s:32:\"12ed0d86ab902e76b068f00d62895212\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1625112000/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1625112000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a29eebe52cb89ddab2eaa11ccce43654\";a:10:{s:4:\"hash\";s:32:\"a29eebe52cb89ddab2eaa11ccce43654\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1625544000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1625544000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5870966038cdb08aafa5e6250d3ee963\";a:10:{s:4:\"hash\";s:32:\"5870966038cdb08aafa5e6250d3ee963\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1625716800/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1625716800/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5798cd8f8033ad31e11cabf6a5f25996\";a:10:{s:4:\"hash\";s:32:\"5798cd8f8033ad31e11cabf6a5f25996\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1625716800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1625716800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bc6536d798e02a564beafd1f8eb7122f\";a:10:{s:4:\"hash\";s:32:\"bc6536d798e02a564beafd1f8eb7122f\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1625716800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1625716800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5fd3ce63bdadc3129c852168d9226520\";a:10:{s:4:\"hash\";s:32:\"5fd3ce63bdadc3129c852168d9226520\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1625976000/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1625976000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e622171c2813b96c92709e82247eedc3\";a:10:{s:4:\"hash\";s:32:\"e622171c2813b96c92709e82247eedc3\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1625976000/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1625976000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9ec90b7ed803743f6f8cac690ba94fb2\";a:10:{s:4:\"hash\";s:32:\"9ec90b7ed803743f6f8cac690ba94fb2\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1625976000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1625976000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"78f468ef21ea78f0c4a1bdc2ee06b9de\";a:10:{s:4:\"hash\";s:32:\"78f468ef21ea78f0c4a1bdc2ee06b9de\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626321600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1626321600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d044b593d95c5f63e3e6208a58b425d2\";a:10:{s:4:\"hash\";s:32:\"d044b593d95c5f63e3e6208a58b425d2\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626321600/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1626321600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1e7e17e14c816ab739e6340a40fafb23\";a:10:{s:4:\"hash\";s:32:\"1e7e17e14c816ab739e6340a40fafb23\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626321600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1626321600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b90e9b3de931b6e90e3b878ba30e2730\";a:10:{s:4:\"hash\";s:32:\"b90e9b3de931b6e90e3b878ba30e2730\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626321600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1626321600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c0cc60a6f4fb85ddf45b0e4ac2f51a21\";a:10:{s:4:\"hash\";s:32:\"c0cc60a6f4fb85ddf45b0e4ac2f51a21\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626408000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1626408000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d415914630b99cf5bc0471cdb01470d8\";a:10:{s:4:\"hash\";s:32:\"d415914630b99cf5bc0471cdb01470d8\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626494400/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1626494400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f9e29dceccba0760a51df1c6f8cdab74\";a:10:{s:4:\"hash\";s:32:\"f9e29dceccba0760a51df1c6f8cdab74\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626494400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1626494400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ed6c2716ef4005790f8185a48865b0ec\";a:10:{s:4:\"hash\";s:32:\"ed6c2716ef4005790f8185a48865b0ec\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626494400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1626494400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2a8f700652ab17d4e31f23d444fcfb3b\";a:10:{s:4:\"hash\";s:32:\"2a8f700652ab17d4e31f23d444fcfb3b\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626494400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1626494400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bdccfc95667756fc5b7de0e736455f68\";a:10:{s:4:\"hash\";s:32:\"bdccfc95667756fc5b7de0e736455f68\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626580800/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1626580800/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"31aa03cce35975bed9d21778f92d047e\";a:10:{s:4:\"hash\";s:32:\"31aa03cce35975bed9d21778f92d047e\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626580800/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1626580800/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0a0051bbd147cb306ebef254a7c190f4\";a:10:{s:4:\"hash\";s:32:\"0a0051bbd147cb306ebef254a7c190f4\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626580800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1626580800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ab0784b2b9e563107cfe9f66df5f213\";a:10:{s:4:\"hash\";s:32:\"8ab0784b2b9e563107cfe9f66df5f213\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626580800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1626580800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6c28f85a0b1fd572fee8dac03d6786ca\";a:10:{s:4:\"hash\";s:32:\"6c28f85a0b1fd572fee8dac03d6786ca\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626580800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1626580800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c170598009ba922ae5b047d11317c0b1\";a:10:{s:4:\"hash\";s:32:\"c170598009ba922ae5b047d11317c0b1\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626580800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1626580800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5853a6909a754ee821ad0e8452d4e211\";a:10:{s:4:\"hash\";s:32:\"5853a6909a754ee821ad0e8452d4e211\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626580800/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1626580800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"deab4e9d9ec7bb6e8e7e2331e5b56844\";a:10:{s:4:\"hash\";s:32:\"deab4e9d9ec7bb6e8e7e2331e5b56844\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626580800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1626580800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3dd53e24a54996b6ad6ce85cd99d6da7\";a:10:{s:4:\"hash\";s:32:\"3dd53e24a54996b6ad6ce85cd99d6da7\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626580800/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1626580800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"75d2f62e70c7dbc4371306e923555605\";a:10:{s:4:\"hash\";s:32:\"75d2f62e70c7dbc4371306e923555605\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626580800/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1626580800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0403e2fe2f6349bbb667feb1a447bea1\";a:10:{s:4:\"hash\";s:32:\"0403e2fe2f6349bbb667feb1a447bea1\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626580800/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1626580800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9c6fdb360ea0aad2e16aa2b8d16bca4c\";a:10:{s:4:\"hash\";s:32:\"9c6fdb360ea0aad2e16aa2b8d16bca4c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626667200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1626667200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d9287631441773305a2c8a549db7f1c1\";a:10:{s:4:\"hash\";s:32:\"d9287631441773305a2c8a549db7f1c1\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626667200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1626667200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7c1775f3b5607f16872849900a105cdc\";a:10:{s:4:\"hash\";s:32:\"7c1775f3b5607f16872849900a105cdc\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626667200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1626667200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b15cfa4971cc19757da64921ea6e8b56\";a:10:{s:4:\"hash\";s:32:\"b15cfa4971cc19757da64921ea6e8b56\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626667200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1626667200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cc66dd03a498afcf5a2ff03ae4f09abf\";a:10:{s:4:\"hash\";s:32:\"cc66dd03a498afcf5a2ff03ae4f09abf\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626753600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1626753600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0141a48547ab3bb9703d4c57588e229d\";a:10:{s:4:\"hash\";s:32:\"0141a48547ab3bb9703d4c57588e229d\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626753600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1626753600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e726614f8742d231385898a409c0b2ec\";a:10:{s:4:\"hash\";s:32:\"e726614f8742d231385898a409c0b2ec\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1626753600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1626753600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f1c947bf2dbfff34cc9c0fe976922d2d\";a:10:{s:4:\"hash\";s:32:\"f1c947bf2dbfff34cc9c0fe976922d2d\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627099200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1627099200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a4df938772298c2912a11ad4e510ed37\";a:10:{s:4:\"hash\";s:32:\"a4df938772298c2912a11ad4e510ed37\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627099200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1627099200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"98c321c6c2c39830a0be8b71179a79d7\";a:10:{s:4:\"hash\";s:32:\"98c321c6c2c39830a0be8b71179a79d7\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627099200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627099200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d4dd4cedeecd75f71e228196b6f20f73\";a:10:{s:4:\"hash\";s:32:\"d4dd4cedeecd75f71e228196b6f20f73\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627099200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627099200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"98d6cf901f9f1b644e8a1649a1e9fd96\";a:10:{s:4:\"hash\";s:32:\"98d6cf901f9f1b644e8a1649a1e9fd96\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627099200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1627099200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"165cd4a700ff8329f6a55cd1dff0f64c\";a:10:{s:4:\"hash\";s:32:\"165cd4a700ff8329f6a55cd1dff0f64c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627099200/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627099200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eeccb9222109b9d3267025fad7c47e3b\";a:10:{s:4:\"hash\";s:32:\"eeccb9222109b9d3267025fad7c47e3b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627099200/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627099200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"754c299d581e7287e7d34bedf99debd7\";a:10:{s:4:\"hash\";s:32:\"754c299d581e7287e7d34bedf99debd7\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627099200/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627099200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8f526f012391d7e4d7a23a3b73d5f3a0\";a:10:{s:4:\"hash\";s:32:\"8f526f012391d7e4d7a23a3b73d5f3a0\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627185600/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627185600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f1cfaf7bdb35b52798f39b9b46d9b0e4\";a:10:{s:4:\"hash\";s:32:\"f1cfaf7bdb35b52798f39b9b46d9b0e4\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627185600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627185600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7c503380bff57982e0283ecf4cd4a764\";a:10:{s:4:\"hash\";s:32:\"7c503380bff57982e0283ecf4cd4a764\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627185600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627185600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"59d929bb4bb78b4cbf4c28bf29b6b58f\";a:10:{s:4:\"hash\";s:32:\"59d929bb4bb78b4cbf4c28bf29b6b58f\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627185600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1627185600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1162eb0228e0356e5d890fa497d266fe\";a:10:{s:4:\"hash\";s:32:\"1162eb0228e0356e5d890fa497d266fe\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627272000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1627272000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bde62fee8e72d3c3168f281170a2ad33\";a:10:{s:4:\"hash\";s:32:\"bde62fee8e72d3c3168f281170a2ad33\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627272000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1627272000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"00d9c6d3dd084c1d6a7588c2ef798e28\";a:10:{s:4:\"hash\";s:32:\"00d9c6d3dd084c1d6a7588c2ef798e28\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627272000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627272000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"019190c05a94dfc5495568315c1d8f19\";a:10:{s:4:\"hash\";s:32:\"019190c05a94dfc5495568315c1d8f19\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627272000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1627272000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8ad06a481ea1d29cfdeafbdeeaca36f3\";a:10:{s:4:\"hash\";s:32:\"8ad06a481ea1d29cfdeafbdeeaca36f3\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627272000/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627272000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d36683a37d0a490ed4d504fb1d8bd92c\";a:10:{s:4:\"hash\";s:32:\"d36683a37d0a490ed4d504fb1d8bd92c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627272000/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627272000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"255172868858fc1aac72102793436093\";a:10:{s:4:\"hash\";s:32:\"255172868858fc1aac72102793436093\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627272000/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627272000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"34d83fd674a9fe4e86b9351a4d368fde\";a:10:{s:4:\"hash\";s:32:\"34d83fd674a9fe4e86b9351a4d368fde\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627358400/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627358400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7ecb51fdd2966f929370c33e543c717a\";a:10:{s:4:\"hash\";s:32:\"7ecb51fdd2966f929370c33e543c717a\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627358400/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1627358400/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d38530ea0989dcf3639f95fd3e322ead\";a:10:{s:4:\"hash\";s:32:\"d38530ea0989dcf3639f95fd3e322ead\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627358400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1627358400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fccbb30a21f80edc358f9a9fc1edee60\";a:10:{s:4:\"hash\";s:32:\"fccbb30a21f80edc358f9a9fc1edee60\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627358400/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1627358400/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d56537c11bf90490d5e6ade7ad834ad\";a:10:{s:4:\"hash\";s:32:\"4d56537c11bf90490d5e6ade7ad834ad\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627358400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1627358400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7174d5985dca8e8fedc06b0985a69896\";a:10:{s:4:\"hash\";s:32:\"7174d5985dca8e8fedc06b0985a69896\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627358400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627358400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d9c618f7abdbd281ee2f293059c42f4f\";a:10:{s:4:\"hash\";s:32:\"d9c618f7abdbd281ee2f293059c42f4f\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627358400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627358400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d6ffec966f6cb77d5d1a3892da0fda39\";a:10:{s:4:\"hash\";s:32:\"d6ffec966f6cb77d5d1a3892da0fda39\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627358400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1627358400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0466ef4068fb455f4e80028b029decc8\";a:10:{s:4:\"hash\";s:32:\"0466ef4068fb455f4e80028b029decc8\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627704000/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1627704000/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"acbe84c3a17866e89eb5c969e9aac901\";a:10:{s:4:\"hash\";s:32:\"acbe84c3a17866e89eb5c969e9aac901\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627704000/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627704000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1329569af04cbd2fc6ea809c55ad9b1e\";a:10:{s:4:\"hash\";s:32:\"1329569af04cbd2fc6ea809c55ad9b1e\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627704000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627704000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"41357acbe2bb1ef19bd4e6be597b0d90\";a:10:{s:4:\"hash\";s:32:\"41357acbe2bb1ef19bd4e6be597b0d90\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627704000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1627704000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"529f0ede3e05ceda121824c0076fcdd5\";a:10:{s:4:\"hash\";s:32:\"529f0ede3e05ceda121824c0076fcdd5\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627790400/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627790400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"27080b596a31896ce8ae36dfb91516b8\";a:10:{s:4:\"hash\";s:32:\"27080b596a31896ce8ae36dfb91516b8\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627790400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627790400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c38977fa60b7b34137ec3a5efbedb141\";a:10:{s:4:\"hash\";s:32:\"c38977fa60b7b34137ec3a5efbedb141\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627790400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1627790400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5dc8ea2309e4c1bda91cce02abb65371\";a:10:{s:4:\"hash\";s:32:\"5dc8ea2309e4c1bda91cce02abb65371\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627790400/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627790400/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3d8851e9465ddc258dc797a4f40f2841\";a:10:{s:4:\"hash\";s:32:\"3d8851e9465ddc258dc797a4f40f2841\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627790400/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627790400/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"115bbd97073b2b1b7ba8591445617305\";a:10:{s:4:\"hash\";s:32:\"115bbd97073b2b1b7ba8591445617305\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627790400/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627790400/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1d9d608bc03c1a0f7337ff54169379c4\";a:10:{s:4:\"hash\";s:32:\"1d9d608bc03c1a0f7337ff54169379c4\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627876800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627876800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c0851ea72a3cc828a0ee2e7330659b2c\";a:10:{s:4:\"hash\";s:32:\"c0851ea72a3cc828a0ee2e7330659b2c\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627876800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1627876800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"20d83039ca955c3678a4c020bdb6fb44\";a:10:{s:4:\"hash\";s:32:\"20d83039ca955c3678a4c020bdb6fb44\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627963200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1627963200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"67d3924362b9a4cc43534b2dfe51ff47\";a:10:{s:4:\"hash\";s:32:\"67d3924362b9a4cc43534b2dfe51ff47\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1627963200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1627963200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ae1772ab88ec975ef390f0c50bf67105\";a:10:{s:4:\"hash\";s:32:\"ae1772ab88ec975ef390f0c50bf67105\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1628395200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1628395200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"01bcbba743b853718ca8de8e95900624\";a:10:{s:4:\"hash\";s:32:\"01bcbba743b853718ca8de8e95900624\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1635739200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1635739200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"26e4cd733f2a497b66419e45e48661ef\";a:10:{s:4:\"hash\";s:32:\"26e4cd733f2a497b66419e45e48661ef\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1635912000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1635912000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ca2418ef9d74852915d3a5cc9e867b46\";a:10:{s:4:\"hash\";s:32:\"ca2418ef9d74852915d3a5cc9e867b46\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1635998400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1635998400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5f538e76fd0cda3d8f9bfa14eb9bfd41\";a:10:{s:4:\"hash\";s:32:\"5f538e76fd0cda3d8f9bfa14eb9bfd41\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1635998400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1635998400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"87d786ceeabe0ae1cd93bb29ffd7b91d\";a:10:{s:4:\"hash\";s:32:\"87d786ceeabe0ae1cd93bb29ffd7b91d\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1635998400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1635998400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c406e2e4fb3265f16737da6ed786daa0\";a:10:{s:4:\"hash\";s:32:\"c406e2e4fb3265f16737da6ed786daa0\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636257600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1636257600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"48d2bb05e4c1d23ea6ccdc0a6d0196c4\";a:10:{s:4:\"hash\";s:32:\"48d2bb05e4c1d23ea6ccdc0a6d0196c4\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636257600/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1636257600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f5866c828be31d7667937cffef791282\";a:10:{s:4:\"hash\";s:32:\"f5866c828be31d7667937cffef791282\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636257600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1636257600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6510b4cad4d0a10116486cb072d0b6f2\";a:10:{s:4:\"hash\";s:32:\"6510b4cad4d0a10116486cb072d0b6f2\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636520400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1636520400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b053a77636623208015d2e295c1e70ea\";a:10:{s:4:\"hash\";s:32:\"b053a77636623208015d2e295c1e70ea\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636606800/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1636606800/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ea7ea2db1e7ed49b8f7e660e387ef250\";a:10:{s:4:\"hash\";s:32:\"ea7ea2db1e7ed49b8f7e660e387ef250\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636606800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1636606800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3cde39929943e634391ff58ce8148fe3\";a:10:{s:4:\"hash\";s:32:\"3cde39929943e634391ff58ce8148fe3\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636606800/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1636606800/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"83bae6232b3fbfffb032dd4c7c649ead\";a:10:{s:4:\"hash\";s:32:\"83bae6232b3fbfffb032dd4c7c649ead\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636606800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1636606800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c5d843ac0fbe5cea3372f230b397288\";a:10:{s:4:\"hash\";s:32:\"3c5d843ac0fbe5cea3372f230b397288\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636606800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1636606800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"54ed695b796c14ab1396e2ab203b9f1a\";a:10:{s:4:\"hash\";s:32:\"54ed695b796c14ab1396e2ab203b9f1a\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636606800/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1636606800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e465316bb1fdc9120bfce0eee27236e1\";a:10:{s:4:\"hash\";s:32:\"e465316bb1fdc9120bfce0eee27236e1\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636606800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1636606800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"844df7d6e0459952371ca35b46d83a09\";a:10:{s:4:\"hash\";s:32:\"844df7d6e0459952371ca35b46d83a09\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636606800/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1636606800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ad38599649365fa2d31ac500cfaf115a\";a:10:{s:4:\"hash\";s:32:\"ad38599649365fa2d31ac500cfaf115a\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636606800/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1636606800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b6657123dac36ae94f4ef7bb02127730\";a:10:{s:4:\"hash\";s:32:\"b6657123dac36ae94f4ef7bb02127730\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636606800/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1636606800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"551eeec8a19a0213c35e1e2368b99e97\";a:10:{s:4:\"hash\";s:32:\"551eeec8a19a0213c35e1e2368b99e97\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636693200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1636693200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3253d7ce888f8132821caa255def8dff\";a:10:{s:4:\"hash\";s:32:\"3253d7ce888f8132821caa255def8dff\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636693200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1636693200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b3e135cc8c677d50f18266a39033073f\";a:10:{s:4:\"hash\";s:32:\"b3e135cc8c677d50f18266a39033073f\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636693200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1636693200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"26d7a7efd0ccb1abc382c89efb6c788b\";a:10:{s:4:\"hash\";s:32:\"26d7a7efd0ccb1abc382c89efb6c788b\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636693200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1636693200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8375cd0e5472f0acea46439d39d5d568\";a:10:{s:4:\"hash\";s:32:\"8375cd0e5472f0acea46439d39d5d568\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636779600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1636779600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2bbad662403fc611e31bb9b859fad27d\";a:10:{s:4:\"hash\";s:32:\"2bbad662403fc611e31bb9b859fad27d\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636866000/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1636866000/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"11a53ffbba3672810acbe1cd9814396c\";a:10:{s:4:\"hash\";s:32:\"11a53ffbba3672810acbe1cd9814396c\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636952400/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1636952400/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"36ce69d920a9c293933c087ce9c1a097\";a:10:{s:4:\"hash\";s:32:\"36ce69d920a9c293933c087ce9c1a097\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636952400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1636952400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"601f30048860871b9501ce2da4bc35f1\";a:10:{s:4:\"hash\";s:32:\"601f30048860871b9501ce2da4bc35f1\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636952400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1636952400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"64f09c4969642e5c531b8c43d3b54138\";a:10:{s:4:\"hash\";s:32:\"64f09c4969642e5c531b8c43d3b54138\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636952400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1636952400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6e1ad2d39235e7cf51611a4f2e547115\";a:10:{s:4:\"hash\";s:32:\"6e1ad2d39235e7cf51611a4f2e547115\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1636952400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1636952400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a6e135ebf6b5682d9d307a1dd29d2d37\";a:10:{s:4:\"hash\";s:32:\"a6e135ebf6b5682d9d307a1dd29d2d37\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637125200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637125200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4a1e5f7e106db1702480dca69b25fae4\";a:10:{s:4:\"hash\";s:32:\"4a1e5f7e106db1702480dca69b25fae4\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637211600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1637211600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2911f26bf8484e0e233f3804c7640c51\";a:10:{s:4:\"hash\";s:32:\"2911f26bf8484e0e233f3804c7640c51\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637211600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1637211600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9affef7b1749dfbd0d3b741b9471207d\";a:10:{s:4:\"hash\";s:32:\"9affef7b1749dfbd0d3b741b9471207d\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637211600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637211600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b6743415b1e5d1777ea1481ee973ae08\";a:10:{s:4:\"hash\";s:32:\"b6743415b1e5d1777ea1481ee973ae08\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637211600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1637211600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f847e4394e3d60b529bedd2ac8087bc6\";a:10:{s:4:\"hash\";s:32:\"f847e4394e3d60b529bedd2ac8087bc6\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637211600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637211600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c5e4b4c0a42ea519b706066d26a56532\";a:10:{s:4:\"hash\";s:32:\"c5e4b4c0a42ea519b706066d26a56532\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637211600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1637211600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a57fecc80f7c090e65174c0d54d631a5\";a:10:{s:4:\"hash\";s:32:\"a57fecc80f7c090e65174c0d54d631a5\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637211600/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637211600/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6612bc42bbca76ab32d371a9734fd538\";a:10:{s:4:\"hash\";s:32:\"6612bc42bbca76ab32d371a9734fd538\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637211600/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637211600/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"634d733974cfaee3115b4b20ab254b08\";a:10:{s:4:\"hash\";s:32:\"634d733974cfaee3115b4b20ab254b08\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637211600/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637211600/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7c2997ef22ab01cc13bb28f2d63ec907\";a:10:{s:4:\"hash\";s:32:\"7c2997ef22ab01cc13bb28f2d63ec907\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637298000/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637298000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c9a6b514ddcd890e77602e80dc187438\";a:10:{s:4:\"hash\";s:32:\"c9a6b514ddcd890e77602e80dc187438\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637298000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1637298000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6ffc6299eb707c57c9d27eb039f0c2f2\";a:10:{s:4:\"hash\";s:32:\"6ffc6299eb707c57c9d27eb039f0c2f2\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637298000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1637298000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f93848fa9701975a8ee6867a4f884084\";a:10:{s:4:\"hash\";s:32:\"f93848fa9701975a8ee6867a4f884084\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637298000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637298000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f862a53214da74cf369111ebdc7a6585\";a:10:{s:4:\"hash\";s:32:\"f862a53214da74cf369111ebdc7a6585\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637298000/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1637298000/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0654ab5d18bcdbe13c8bb962f29d0a29\";a:10:{s:4:\"hash\";s:32:\"0654ab5d18bcdbe13c8bb962f29d0a29\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637298000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1637298000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4bee92e9e842cd85d65027a02410921e\";a:10:{s:4:\"hash\";s:32:\"4bee92e9e842cd85d65027a02410921e\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637298000/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1637298000/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"577d8ac5b9b548b5769649272ffd697a\";a:10:{s:4:\"hash\";s:32:\"577d8ac5b9b548b5769649272ffd697a\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637298000/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637298000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4c7b92c179bea88101df94af7c6585e9\";a:10:{s:4:\"hash\";s:32:\"4c7b92c179bea88101df94af7c6585e9\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637298000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1637298000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"21f1d3d4a7cd4573874b05ef9c03049e\";a:10:{s:4:\"hash\";s:32:\"21f1d3d4a7cd4573874b05ef9c03049e\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637298000/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637298000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9a7d6d768640d5dc807c33db741a21ed\";a:10:{s:4:\"hash\";s:32:\"9a7d6d768640d5dc807c33db741a21ed\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637298000/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637298000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f5d43fd3806cd2e20ebb68abee5546ff\";a:10:{s:4:\"hash\";s:32:\"f5d43fd3806cd2e20ebb68abee5546ff\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637298000/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637298000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"966aff2e1208f0032aa19c95068af22e\";a:10:{s:4:\"hash\";s:32:\"966aff2e1208f0032aa19c95068af22e\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637384400/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637384400/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1247400589f798d8d9c367b353bd026f\";a:10:{s:4:\"hash\";s:32:\"1247400589f798d8d9c367b353bd026f\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637384400/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1637384400/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"42cbb8736de2989e3e781e8f5c64d6c3\";a:10:{s:4:\"hash\";s:32:\"42cbb8736de2989e3e781e8f5c64d6c3\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637384400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1637384400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5a38bca5e3fe9be3b01b450363f775b6\";a:10:{s:4:\"hash\";s:32:\"5a38bca5e3fe9be3b01b450363f775b6\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637384400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637384400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c8c3125831a155eee870afe6f004a37f\";a:10:{s:4:\"hash\";s:32:\"c8c3125831a155eee870afe6f004a37f\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637384400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1637384400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0ef6e2fbcca43403e6a775b27b0b3be3\";a:10:{s:4:\"hash\";s:32:\"0ef6e2fbcca43403e6a775b27b0b3be3\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637470800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637470800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d2ca4d5e54332c481633cb242b62c93a\";a:10:{s:4:\"hash\";s:32:\"d2ca4d5e54332c481633cb242b62c93a\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637470800/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1637470800/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"112e9164f43a8fb6b3bb47cb7ad64e00\";a:10:{s:4:\"hash\";s:32:\"112e9164f43a8fb6b3bb47cb7ad64e00\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637470800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1637470800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3a162e17bb2e69f3606ff6e4d5ddd7cf\";a:10:{s:4:\"hash\";s:32:\"3a162e17bb2e69f3606ff6e4d5ddd7cf\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637470800/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637470800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b545e809a8c78a2cdaaba70d34623723\";a:10:{s:4:\"hash\";s:32:\"b545e809a8c78a2cdaaba70d34623723\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637470800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1637470800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4c29b27ca1c916167977a59f0b794234\";a:10:{s:4:\"hash\";s:32:\"4c29b27ca1c916167977a59f0b794234\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637557200/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1637557200/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"823f97f7e9e01f436c933c28842661d6\";a:10:{s:4:\"hash\";s:32:\"823f97f7e9e01f436c933c28842661d6\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637557200/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1637557200/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a1aee95b31757d68d2df49bb2db6f4e4\";a:10:{s:4:\"hash\";s:32:\"a1aee95b31757d68d2df49bb2db6f4e4\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637557200/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1637557200/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c28af12711320e2174cfd0fba8e1b302\";a:10:{s:4:\"hash\";s:32:\"c28af12711320e2174cfd0fba8e1b302\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637557200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637557200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"45db8e113e246af04d4f2432ae8019db\";a:10:{s:4:\"hash\";s:32:\"45db8e113e246af04d4f2432ae8019db\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637557200/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1637557200/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d0a39fbd9944afbe2efd4513b620f7c2\";a:10:{s:4:\"hash\";s:32:\"d0a39fbd9944afbe2efd4513b620f7c2\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637557200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1637557200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d70a5c346a1df5b2221ae0aaef85329a\";a:10:{s:4:\"hash\";s:32:\"d70a5c346a1df5b2221ae0aaef85329a\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637557200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637557200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"169835093e98b3e88cc718f3dec6818e\";a:10:{s:4:\"hash\";s:32:\"169835093e98b3e88cc718f3dec6818e\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637557200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1637557200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"da13ede8882d13d39ab5fa00e57f2756\";a:10:{s:4:\"hash\";s:32:\"da13ede8882d13d39ab5fa00e57f2756\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637557200/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637557200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"42cbe9e6309c7da4c22955335844b0d5\";a:10:{s:4:\"hash\";s:32:\"42cbe9e6309c7da4c22955335844b0d5\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637557200/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637557200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2d4a9121b72808bae6a2e9cf4b5c5788\";a:10:{s:4:\"hash\";s:32:\"2d4a9121b72808bae6a2e9cf4b5c5788\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637557200/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637557200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5195cc89feba8dc34a669a1120bbaedb\";a:10:{s:4:\"hash\";s:32:\"5195cc89feba8dc34a669a1120bbaedb\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637730000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637730000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2d0bf48a56313b7280a5d5c20c2b2531\";a:10:{s:4:\"hash\";s:32:\"2d0bf48a56313b7280a5d5c20c2b2531\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637816400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1637816400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bf4de0cedd777e6fd2a2afc9211bcb52\";a:10:{s:4:\"hash\";s:32:\"bf4de0cedd777e6fd2a2afc9211bcb52\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637816400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637816400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b91acd0d2c31e5e4fd5f70f6163974b9\";a:10:{s:4:\"hash\";s:32:\"b91acd0d2c31e5e4fd5f70f6163974b9\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637816400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1637816400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fb10c15e13b2f9b8f2e7580967af7156\";a:10:{s:4:\"hash\";s:32:\"fb10c15e13b2f9b8f2e7580967af7156\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637902800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637902800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"336921ce7a39f93c05b3a5dbf4d7a4af\";a:10:{s:4:\"hash\";s:32:\"336921ce7a39f93c05b3a5dbf4d7a4af\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637902800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1637902800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d36d6446ca49ae662e9fdd8d06576a4\";a:10:{s:4:\"hash\";s:32:\"4d36d6446ca49ae662e9fdd8d06576a4\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637902800/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637902800/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c06598a739ea81f3af9491faf3e855d1\";a:10:{s:4:\"hash\";s:32:\"c06598a739ea81f3af9491faf3e855d1\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637902800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1637902800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"408fbe08b899fc7fdf6255d9cea5efb1\";a:10:{s:4:\"hash\";s:32:\"408fbe08b899fc7fdf6255d9cea5efb1\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637902800/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637902800/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"258a2073f2beb00b48580ad8c51c40fb\";a:10:{s:4:\"hash\";s:32:\"258a2073f2beb00b48580ad8c51c40fb\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637902800/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637902800/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5f524acf159f91b031222a835ca786f1\";a:10:{s:4:\"hash\";s:32:\"5f524acf159f91b031222a835ca786f1\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637902800/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637902800/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"93b3f2324143f0f1eacc44ea0f318401\";a:10:{s:4:\"hash\";s:32:\"93b3f2324143f0f1eacc44ea0f318401\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637989200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1637989200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b600d2c2bd08e48166c1e7a47590daa4\";a:10:{s:4:\"hash\";s:32:\"b600d2c2bd08e48166c1e7a47590daa4\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637989200/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1637989200/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6cbe394d24e4706c4dca43debcf02d23\";a:10:{s:4:\"hash\";s:32:\"6cbe394d24e4706c4dca43debcf02d23\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637989200/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637989200/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"75bbc1bbba6f3e610d308acc088af69f\";a:10:{s:4:\"hash\";s:32:\"75bbc1bbba6f3e610d308acc088af69f\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637989200/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1637989200/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6390514a0185d99e15899ff783cc204c\";a:10:{s:4:\"hash\";s:32:\"6390514a0185d99e15899ff783cc204c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637989200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637989200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f1841279183a040f3dde981747221a5\";a:10:{s:4:\"hash\";s:32:\"7f1841279183a040f3dde981747221a5\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637989200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1637989200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ea966657f1d81dbc5bf9ff7bf8a8cbce\";a:10:{s:4:\"hash\";s:32:\"ea966657f1d81dbc5bf9ff7bf8a8cbce\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637989200/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637989200/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"73729171c9102aacae37674aa6e49ece\";a:10:{s:4:\"hash\";s:32:\"73729171c9102aacae37674aa6e49ece\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637989200/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637989200/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f1ea6ec3e38dd9c4430931b68b702ffe\";a:10:{s:4:\"hash\";s:32:\"f1ea6ec3e38dd9c4430931b68b702ffe\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1637989200/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1637989200/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9d6d85864ff0cd3835dad04f0900fc20\";a:10:{s:4:\"hash\";s:32:\"9d6d85864ff0cd3835dad04f0900fc20\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1638075600/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1638075600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"01661fab8454180b5e5205fbdb023c61\";a:10:{s:4:\"hash\";s:32:\"01661fab8454180b5e5205fbdb023c61\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1638075600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1638075600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5b5b208a924ad307ad6fcd4af198fc9e\";a:10:{s:4:\"hash\";s:32:\"5b5b208a924ad307ad6fcd4af198fc9e\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1638075600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1638075600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f6bf48563a6e0d8f4e5542f27bf73720\";a:10:{s:4:\"hash\";s:32:\"f6bf48563a6e0d8f4e5542f27bf73720\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1638075600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1638075600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c93ec110b827fcc59a12cc9541bf50da\";a:10:{s:4:\"hash\";s:32:\"c93ec110b827fcc59a12cc9541bf50da\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1638162000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/exact_date~1638162000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"171ee80847eb95d053bfac6e3aeaf115\";a:10:{s:4:\"hash\";s:32:\"171ee80847eb95d053bfac6e3aeaf115\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1638162000/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1638162000/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"872be9356eea8dbf4029a59d5c671a2e\";a:10:{s:4:\"hash\";s:32:\"872be9356eea8dbf4029a59d5c671a2e\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1638162000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1638162000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f2ab3ee5870ec62024975840951b6868\";a:10:{s:4:\"hash\";s:32:\"f2ab3ee5870ec62024975840951b6868\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1638162000/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1638162000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7f429161740e1bd75dcc9cbfdb0e438d\";a:10:{s:4:\"hash\";s:32:\"7f429161740e1bd75dcc9cbfdb0e438d\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1638162000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1638162000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"125f3d8ed5ffc1ae07736d3c9c3e2d3f\";a:10:{s:4:\"hash\";s:32:\"125f3d8ed5ffc1ae07736d3c9c3e2d3f\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1638248400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1638248400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1b78f2cbe818c6de4c068cd3ec978558\";a:10:{s:4:\"hash\";s:32:\"1b78f2cbe818c6de4c068cd3ec978558\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1638507600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1638507600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1271eb477f89c574572730cacc8d1add\";a:10:{s:4:\"hash\";s:32:\"1271eb477f89c574572730cacc8d1add\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1638594000/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1638594000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"eafa2c7bfd808b6e040a6bc55fb10798\";a:10:{s:4:\"hash\";s:32:\"eafa2c7bfd808b6e040a6bc55fb10798\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1638594000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1638594000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"48d9f2d6586fe3b0d197adf1ea75cb8b\";a:10:{s:4:\"hash\";s:32:\"48d9f2d6586fe3b0d197adf1ea75cb8b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1638594000/request_format~json/cat_ids~87/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1638594000/request_format~json/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9e06e6b9f50b24c8346462e0328ee1b2\";a:10:{s:4:\"hash\";s:32:\"9e06e6b9f50b24c8346462e0328ee1b2\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1638594000/request_format~json/cat_ids~88/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1638594000/request_format~json/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6ce4bee0a6a389029b67f499689a78fa\";a:10:{s:4:\"hash\";s:32:\"6ce4bee0a6a389029b67f499689a78fa\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1638594000/request_format~json/cat_ids~89/\";s:4:\"path\";s:73:\"/events/action~week/exact_date~1638594000/request_format~json/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7a36b9c49bdf78fefacbd6673498a413\";a:10:{s:4:\"hash\";s:32:\"7a36b9c49bdf78fefacbd6673498a413\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1638766800/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1638766800/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"226e23f914231a7981d63fe59e1fe747\";a:10:{s:4:\"hash\";s:32:\"226e23f914231a7981d63fe59e1fe747\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1639198800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1639198800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ea3105d8399bfc41dd08566b59060dc6\";a:10:{s:4:\"hash\";s:32:\"ea3105d8399bfc41dd08566b59060dc6\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1651377600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/exact_date~1651377600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1a462bdde73ad4420920b43a7491e819\";a:10:{s:4:\"hash\";s:32:\"1a462bdde73ad4420920b43a7491e819\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/exact_date~1654056000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/exact_date~1654056000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8a4819ccd233672054b9562e7ebb15c1\";a:10:{s:4:\"hash\";s:32:\"8a4819ccd233672054b9562e7ebb15c1\";s:3:\"url\";s:142:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/page_offset~-1/time_limit~1612155600/cat_ids~87/request_format~json/\";s:4:\"path\";s:88:\"/events/action~week/page_offset~-1/time_limit~1612155600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0523d4f9fa01b2318d398ce3861624ca\";a:10:{s:4:\"hash\";s:32:\"0523d4f9fa01b2318d398ce3861624ca\";s:3:\"url\";s:145:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/page_offset~-1/time_limit~1612155600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:91:\"/events/action~week/page_offset~-1/time_limit~1612155600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"27b8bb6cbeac68441543fd15f20be148\";a:10:{s:4:\"hash\";s:32:\"27b8bb6cbeac68441543fd15f20be148\";s:3:\"url\";s:145:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/page_offset~-1/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:91:\"/events/action~week/page_offset~-1/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b255fddba3fb0160c1b9fdd03c119d18\";a:10:{s:4:\"hash\";s:32:\"b255fddba3fb0160c1b9fdd03c119d18\";s:3:\"url\";s:142:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/page_offset~-1/time_limit~1612155600/cat_ids~89/request_format~json/\";s:4:\"path\";s:88:\"/events/action~week/page_offset~-1/time_limit~1612155600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a120162cd97f430612c6a1505ce7029a\";a:10:{s:4:\"hash\";s:32:\"a120162cd97f430612c6a1505ce7029a\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/page_offset~-1/time_limit~1612155600/request_format~json/\";s:4:\"path\";s:77:\"/events/action~week/page_offset~-1/time_limit~1612155600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c041109cd7ad70f6cfc230a4592792da\";a:10:{s:4:\"hash\";s:32:\"c041109cd7ad70f6cfc230a4592792da\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/page_offset~1/time_limit~1612155600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:90:\"/events/action~week/page_offset~1/time_limit~1612155600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"60b2f157eb7aec726875b4e765876081\";a:10:{s:4:\"hash\";s:32:\"60b2f157eb7aec726875b4e765876081\";s:3:\"url\";s:141:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/page_offset~1/time_limit~1612155600/cat_ids~88/request_format~json/\";s:4:\"path\";s:87:\"/events/action~week/page_offset~1/time_limit~1612155600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8cbc34ad654a899936660fb853189417\";a:10:{s:4:\"hash\";s:32:\"8cbc34ad654a899936660fb853189417\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/page_offset~1/time_limit~1612155600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:90:\"/events/action~week/page_offset~1/time_limit~1612155600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d984560a50a7a210c2add7b2035d624f\";a:10:{s:4:\"hash\";s:32:\"d984560a50a7a210c2add7b2035d624f\";s:3:\"url\";s:147:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/page_offset~1/time_limit~1612155600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:93:\"/events/action~week/page_offset~1/time_limit~1612155600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6b46d06b6e2db0d8594876d390e3998a\";a:10:{s:4:\"hash\";s:32:\"6b46d06b6e2db0d8594876d390e3998a\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/page_offset~1/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:90:\"/events/action~week/page_offset~1/time_limit~1612155600/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"72efb1c0ed5a3fc6e9fc2c43cf30dd85\";a:10:{s:4:\"hash\";s:32:\"72efb1c0ed5a3fc6e9fc2c43cf30dd85\";s:3:\"url\";s:141:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/page_offset~1/time_limit~1612155600/cat_ids~89/request_format~json/\";s:4:\"path\";s:87:\"/events/action~week/page_offset~1/time_limit~1612155600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e5d8e3b2f01fbc5c5c06db0505ee8e6b\";a:10:{s:4:\"hash\";s:32:\"e5d8e3b2f01fbc5c5c06db0505ee8e6b\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/page_offset~1/time_limit~1612155600/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/page_offset~1/time_limit~1612155600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"05a2c0cf9242502979df8e3725cd927d\";a:10:{s:4:\"hash\";s:32:\"05a2c0cf9242502979df8e3725cd927d\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1557201600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1557201600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"181e126ff0e32750c97d88b91ababcd0\";a:10:{s:4:\"hash\";s:32:\"181e126ff0e32750c97d88b91ababcd0\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1558411200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1558411200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"550fb7c8d1b838e477d86756849f71a3\";a:10:{s:4:\"hash\";s:32:\"550fb7c8d1b838e477d86756849f71a3\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1558497600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1558497600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"683a020dbb67117bb1e26cec67cfc2d0\";a:10:{s:4:\"hash\";s:32:\"683a020dbb67117bb1e26cec67cfc2d0\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1558929600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1558929600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"912712aa13daca601fd86f452550caa5\";a:10:{s:4:\"hash\";s:32:\"912712aa13daca601fd86f452550caa5\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1559620800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1559620800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f983ea673525e691111b8b368ba2bf1b\";a:10:{s:4:\"hash\";s:32:\"f983ea673525e691111b8b368ba2bf1b\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1559707200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1559707200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4fc81bb30c59e7cecc4a25de2af79c96\";a:10:{s:4:\"hash\";s:32:\"4fc81bb30c59e7cecc4a25de2af79c96\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1560052800/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/time_limit~1560052800/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"abb1a04156b2ec9b2937ef2a61fb073f\";a:10:{s:4:\"hash\";s:32:\"abb1a04156b2ec9b2937ef2a61fb073f\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1560225600/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/time_limit~1560225600/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"509e8b7630fc49284b5226e71f8f2a91\";a:10:{s:4:\"hash\";s:32:\"509e8b7630fc49284b5226e71f8f2a91\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1560312000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1560312000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3c5924621d3b491bc3c5d13cd4d004d0\";a:10:{s:4:\"hash\";s:32:\"3c5924621d3b491bc3c5d13cd4d004d0\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1560830400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/time_limit~1560830400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ab7e2af14d8b11a56b9868d4f82319a4\";a:10:{s:4:\"hash\";s:32:\"ab7e2af14d8b11a56b9868d4f82319a4\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1561176000/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1561176000/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"416715b4f8091b2382be8d3c943342b6\";a:10:{s:4:\"hash\";s:32:\"416715b4f8091b2382be8d3c943342b6\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1561953600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1561953600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"57e8ea920d68099d7519a24e79c0c705\";a:10:{s:4:\"hash\";s:32:\"57e8ea920d68099d7519a24e79c0c705\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1588737600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1588737600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8f783fe6b55b14617a3a202e4486415a\";a:10:{s:4:\"hash\";s:32:\"8f783fe6b55b14617a3a202e4486415a\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1590379200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1590379200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6df943ffb39b36bbb9d03461ff39a994\";a:10:{s:4:\"hash\";s:32:\"6df943ffb39b36bbb9d03461ff39a994\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1590552000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1590552000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2e639a7eb1c831eff53737bca5933ca6\";a:10:{s:4:\"hash\";s:32:\"2e639a7eb1c831eff53737bca5933ca6\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1590638400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1590638400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1ed598e32b311325780f3d8de9baa612\";a:10:{s:4:\"hash\";s:32:\"1ed598e32b311325780f3d8de9baa612\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1590984000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1590984000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"18e7b813d23a941eda6b173e3d55690c\";a:10:{s:4:\"hash\";s:32:\"18e7b813d23a941eda6b173e3d55690c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1590984000/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1590984000/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"164a99ab090afb3da3b458c8b23f2641\";a:10:{s:4:\"hash\";s:32:\"164a99ab090afb3da3b458c8b23f2641\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1590984000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1590984000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"062f2e89a19a24c8ba6d2f6326a0c388\";a:10:{s:4:\"hash\";s:32:\"062f2e89a19a24c8ba6d2f6326a0c388\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1591070400/cat_ids~89,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/time_limit~1591070400/cat_ids~89,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"26e3157493bc77ddacf452857770572c\";a:10:{s:4:\"hash\";s:32:\"26e3157493bc77ddacf452857770572c\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1591675200/cat_ids~87,88/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/time_limit~1591675200/cat_ids~87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"041f0e44d7b37ab6ddf565f23eb8d337\";a:10:{s:4:\"hash\";s:32:\"041f0e44d7b37ab6ddf565f23eb8d337\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1592020800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1592020800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0b3ab910af977263053e452250837e94\";a:10:{s:4:\"hash\";s:32:\"0b3ab910af977263053e452250837e94\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1592107200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1592107200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef5181cfd50c54d4833fc251ee0d9ac6\";a:10:{s:4:\"hash\";s:32:\"ef5181cfd50c54d4833fc251ee0d9ac6\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1593576000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1593576000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d558e63c2c157814f2b365f2116c8571\";a:10:{s:4:\"hash\";s:32:\"d558e63c2c157814f2b365f2116c8571\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1593662400/cat_ids~87,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/time_limit~1593662400/cat_ids~87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d000c124a09c9824f1effdfa69f0e751\";a:10:{s:4:\"hash\";s:32:\"d000c124a09c9824f1effdfa69f0e751\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1593835200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1593835200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d17ea3baa702c9e82781f9a30cd6abc\";a:10:{s:4:\"hash\";s:32:\"4d17ea3baa702c9e82781f9a30cd6abc\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1594612800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1594612800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"80a39d68904d9e6e60544734b877854c\";a:10:{s:4:\"hash\";s:32:\"80a39d68904d9e6e60544734b877854c\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1594785600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1594785600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"78f5ef810b625dab460bc6946e94b1e4\";a:10:{s:4:\"hash\";s:32:\"78f5ef810b625dab460bc6946e94b1e4\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1594958400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1594958400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fc0cbc8c9c0ba9671362ea1569d4cc22\";a:10:{s:4:\"hash\";s:32:\"fc0cbc8c9c0ba9671362ea1569d4cc22\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1595131200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1595131200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4b06631f28115e542496d91c747d46c6\";a:10:{s:4:\"hash\";s:32:\"4b06631f28115e542496d91c747d46c6\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1595908800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1595908800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5cb3b78297055e68ddc633f4d0104f8b\";a:10:{s:4:\"hash\";s:32:\"5cb3b78297055e68ddc633f4d0104f8b\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1596254400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1596254400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a204d0acbd00d2d53753461880497d4b\";a:10:{s:4:\"hash\";s:32:\"a204d0acbd00d2d53753461880497d4b\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1596859200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1596859200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cb2539cfab1e3afd9a8d2ea50f8fb356\";a:10:{s:4:\"hash\";s:32:\"cb2539cfab1e3afd9a8d2ea50f8fb356\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1597032000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1597032000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d3c84be1ec527926c16fec39ad31a03c\";a:10:{s:4:\"hash\";s:32:\"d3c84be1ec527926c16fec39ad31a03c\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1597377600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1597377600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a7662a10f894ca4cf7f906b80e281c02\";a:10:{s:4:\"hash\";s:32:\"a7662a10f894ca4cf7f906b80e281c02\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1604203200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1604203200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"fdfc6b04877bd29e861486fbe31e14ce\";a:10:{s:4:\"hash\";s:32:\"fdfc6b04877bd29e861486fbe31e14ce\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1605070800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1605070800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"271d6f7ea34d96f867e09a7ad06dae98\";a:10:{s:4:\"hash\";s:32:\"271d6f7ea34d96f867e09a7ad06dae98\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1605243600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1605243600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a28ef76f0d1df0152338ea136ad8d32b\";a:10:{s:4:\"hash\";s:32:\"a28ef76f0d1df0152338ea136ad8d32b\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1605762000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1605762000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c0012498a2cf0a88b14e489c9ad50d57\";a:10:{s:4:\"hash\";s:32:\"c0012498a2cf0a88b14e489c9ad50d57\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1612069200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1612069200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a0c07437f67aeb42074dd148a370f98b\";a:10:{s:4:\"hash\";s:32:\"a0c07437f67aeb42074dd148a370f98b\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1612155600/cat_ids~87,88,89/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/time_limit~1612155600/cat_ids~87,88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bafe7333c7fbadc067826a319c70cd00\";a:10:{s:4:\"hash\";s:32:\"bafe7333c7fbadc067826a319c70cd00\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1612155600/cat_ids~87/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1612155600/cat_ids~87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8332b5b5edb4dd5c77a2610fbbfb320d\";a:10:{s:4:\"hash\";s:32:\"8332b5b5edb4dd5c77a2610fbbfb320d\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1612155600/cat_ids~88,87,89/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/time_limit~1612155600/cat_ids~88,87,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f46c3ba3df578daa162ca9eb0cf3bf4f\";a:10:{s:4:\"hash\";s:32:\"f46c3ba3df578daa162ca9eb0cf3bf4f\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1612155600/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/time_limit~1612155600/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4d35213613946732ae99c2c47424e756\";a:10:{s:4:\"hash\";s:32:\"4d35213613946732ae99c2c47424e756\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1612155600/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/time_limit~1612155600/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"05932b339e007b2ca3625ee6c467e213\";a:10:{s:4:\"hash\";s:32:\"05932b339e007b2ca3625ee6c467e213\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1612155600/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/time_limit~1612155600/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5580503823cb4af3a0eec40488855edf\";a:10:{s:4:\"hash\";s:32:\"5580503823cb4af3a0eec40488855edf\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1612155600/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1612155600/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"45292fd697bf43985946421ccca45fc5\";a:10:{s:4:\"hash\";s:32:\"45292fd697bf43985946421ccca45fc5\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1612155600/cat_ids~89,87,88/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/time_limit~1612155600/cat_ids~89,87,88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ed5ee0bdbb9de1d7196345aad41a8ecc\";a:10:{s:4:\"hash\";s:32:\"ed5ee0bdbb9de1d7196345aad41a8ecc\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1612155600/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/time_limit~1612155600/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e25fa4dc1901cbb5f6a46dbbaeb2aee9\";a:10:{s:4:\"hash\";s:32:\"e25fa4dc1901cbb5f6a46dbbaeb2aee9\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1612155600/cat_ids~89,88,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/time_limit~1612155600/cat_ids~89,88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f3e602f5798c2b8f30ba7cbf9c9f5168\";a:10:{s:4:\"hash\";s:32:\"f3e602f5798c2b8f30ba7cbf9c9f5168\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1612155600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1612155600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a903daf83efc843f00f93b0d5184d408\";a:10:{s:4:\"hash\";s:32:\"a903daf83efc843f00f93b0d5184d408\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1612155600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1612155600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"00f9b231db216acc782ce42321fdc324\";a:10:{s:4:\"hash\";s:32:\"00f9b231db216acc782ce42321fdc324\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1612242000/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/time_limit~1612242000/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3a18880ee437ef44e26025ef2f0e5342\";a:10:{s:4:\"hash\";s:32:\"3a18880ee437ef44e26025ef2f0e5342\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1612760400/cat_ids~88,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/time_limit~1612760400/cat_ids~88,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f8d8eb969a864a2353d14f83400b009a\";a:10:{s:4:\"hash\";s:32:\"f8d8eb969a864a2353d14f83400b009a\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1612760400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1612760400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1635826a9fec60ef165af954e5af6038\";a:10:{s:4:\"hash\";s:32:\"1635826a9fec60ef165af954e5af6038\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1619323200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1619323200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff13dfd446c34f7ebb20a81bad99cb7a\";a:10:{s:4:\"hash\";s:32:\"ff13dfd446c34f7ebb20a81bad99cb7a\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1619841600/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1619841600/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"75f3d5545ceeddfbcf77d403f6859e74\";a:10:{s:4:\"hash\";s:32:\"75f3d5545ceeddfbcf77d403f6859e74\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1619841600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1619841600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d23f9cdc417c01e72b6d65917b5182b1\";a:10:{s:4:\"hash\";s:32:\"d23f9cdc417c01e72b6d65917b5182b1\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1620532800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1620532800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3b952ee6ab15ca64a9388ddfa8dd6f1c\";a:10:{s:4:\"hash\";s:32:\"3b952ee6ab15ca64a9388ddfa8dd6f1c\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1620705600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1620705600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d75c3a6088f07aff3a2ce2dc5d682c11\";a:10:{s:4:\"hash\";s:32:\"d75c3a6088f07aff3a2ce2dc5d682c11\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1620964800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1620964800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3a25413264c0e23e725438737d69fbd5\";a:10:{s:4:\"hash\";s:32:\"3a25413264c0e23e725438737d69fbd5\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1621051200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1621051200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8052ee92875c17944a374728dc85d1d3\";a:10:{s:4:\"hash\";s:32:\"8052ee92875c17944a374728dc85d1d3\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1623211200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1623211200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1820465944083e29c64261f273a57fdc\";a:10:{s:4:\"hash\";s:32:\"1820465944083e29c64261f273a57fdc\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1623384000/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1623384000/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a28215f75bdb5ce08fc8ac66a2b6736d\";a:10:{s:4:\"hash\";s:32:\"a28215f75bdb5ce08fc8ac66a2b6736d\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1623384000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1623384000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a7c7a7c442a5eacc441d613e8dee56d9\";a:10:{s:4:\"hash\";s:32:\"a7c7a7c442a5eacc441d613e8dee56d9\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1623643200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1623643200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a74c69dcf79f580c0950e096e8a89af3\";a:10:{s:4:\"hash\";s:32:\"a74c69dcf79f580c0950e096e8a89af3\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1623729600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1623729600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"458e214e1e45ca5dd4765d3a33234b68\";a:10:{s:4:\"hash\";s:32:\"458e214e1e45ca5dd4765d3a33234b68\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1623988800/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1623988800/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f6e56371034df48fd2741a1a2ddba4c2\";a:10:{s:4:\"hash\";s:32:\"f6e56371034df48fd2741a1a2ddba4c2\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1623988800/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/time_limit~1623988800/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d5ef219fd9a568263fee2c107fdc90f7\";a:10:{s:4:\"hash\";s:32:\"d5ef219fd9a568263fee2c107fdc90f7\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1623988800/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1623988800/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7a812fb5900af0830580cd5db9fa4f62\";a:10:{s:4:\"hash\";s:32:\"7a812fb5900af0830580cd5db9fa4f62\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1624075200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1624075200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e57a91c4db230bb6d54f85452bf20b80\";a:10:{s:4:\"hash\";s:32:\"e57a91c4db230bb6d54f85452bf20b80\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1625112000/cat_ids~88,89,87/request_format~json/\";s:4:\"path\";s:79:\"/events/action~week/time_limit~1625112000/cat_ids~88,89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a368a7cfdb05a5a8045562915115a49d\";a:10:{s:4:\"hash\";s:32:\"a368a7cfdb05a5a8045562915115a49d\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1625112000/cat_ids~89,87/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/time_limit~1625112000/cat_ids~89,87/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e5073e3118b6fb6e33d9475c11be012c\";a:10:{s:4:\"hash\";s:32:\"e5073e3118b6fb6e33d9475c11be012c\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1626494400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1626494400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"350f05fc76af2094bf890d7bc1443240\";a:10:{s:4:\"hash\";s:32:\"350f05fc76af2094bf890d7bc1443240\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1626753600/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1626753600/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4606be195c853898b9cd30bdb6f5fe2f\";a:10:{s:4:\"hash\";s:32:\"4606be195c853898b9cd30bdb6f5fe2f\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1627358400/cat_ids~88,89/request_format~json/\";s:4:\"path\";s:76:\"/events/action~week/time_limit~1627358400/cat_ids~88,89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";i:0;s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b235fed2738b6da0d4cedc13b45add80\";a:10:{s:4:\"hash\";s:32:\"b235fed2738b6da0d4cedc13b45add80\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1627358400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1627358400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7391dc1a3336707e60d00b488a8f1baa\";a:10:{s:4:\"hash\";s:32:\"7391dc1a3336707e60d00b488a8f1baa\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1637125200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1637125200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"76feb35870ace78772a63e9d01a0fefa\";a:10:{s:4:\"hash\";s:32:\"76feb35870ace78772a63e9d01a0fefa\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1637298000/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1637298000/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1199c148e07d4327a5f22a0a0789e353\";a:10:{s:4:\"hash\";s:32:\"1199c148e07d4327a5f22a0a0789e353\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1637384400/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1637384400/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0b0acd176c9a254e29f25d68dcaa899e\";a:10:{s:4:\"hash\";s:32:\"0b0acd176c9a254e29f25d68dcaa899e\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1637557200/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1637557200/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2710bd766edefe789da7c936573f62b3\";a:10:{s:4:\"hash\";s:32:\"2710bd766edefe789da7c936573f62b3\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1637816400/cat_ids~88/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1637816400/cat_ids~88/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f2be2c5bb8d11ab7f88d306392655364\";a:10:{s:4:\"hash\";s:32:\"f2be2c5bb8d11ab7f88d306392655364\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1637816400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1637816400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"026014e3d0a24dd44c538eab2531ecb8\";a:10:{s:4:\"hash\";s:32:\"026014e3d0a24dd44c538eab2531ecb8\";s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1637989200/cat_ids~89/request_format~json/\";s:4:\"path\";s:73:\"/events/action~week/time_limit~1637989200/cat_ids~89/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"News and Events | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"News and Events Interested in our Newsletters? Click here!Want to be a part of our mailing list? Ema\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ff73d6cf21058d1e4b663957d36e10da\";a:10:{s:4:\"hash\";s:32:\"ff73d6cf21058d1e4b663957d36e10da\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1637989200/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1637989200/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"73e2314b96c8f5e82e9a7bb364d2aeff\";a:10:{s:4:\"hash\";s:32:\"73e2314b96c8f5e82e9a7bb364d2aeff\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/action~week/time_limit~1638248400/request_format~json/\";s:4:\"path\";s:62:\"/events/action~week/time_limit~1638248400/request_format~json/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1746728119352a712a1d7dd41c92cf24\";a:10:{s:4:\"hash\";s:32:\"1746728119352a712a1d7dd41c92cf24\";s:3:\"url\";s:73:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/cat_ids~87/\";s:4:\"path\";s:19:\"/events/cat_ids~87/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"73796b35c3f9269b34a2d1d9f22f7f6e\";a:10:{s:4:\"hash\";s:32:\"73796b35c3f9269b34a2d1d9f22f7f6e\";s:3:\"url\";s:73:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/cat_ids~88/\";s:4:\"path\";s:19:\"/events/cat_ids~88/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"219da14a2684b2e0a1cb4e176604691a\";a:10:{s:4:\"hash\";s:32:\"219da14a2684b2e0a1cb4e176604691a\";s:3:\"url\";s:73:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/cat_ids~89/\";s:4:\"path\";s:19:\"/events/cat_ids~89/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f2ddaec7ca4985a87f96e4a847084b68\";a:10:{s:4:\"hash\";s:32:\"f2ddaec7ca4985a87f96e4a847084b68\";s:3:\"url\";s:79:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/events/lomad-newsletter/\";s:4:\"path\";s:25:\"/events/lomad-newsletter/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:58:\"LOMAD Newsletter | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"LOMAD Newsletter Check out the LOMAD Newsletter by clicking on any of the volumes below! Featured Co\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"4c32f4a52b3ef37903686dfd7ecd7a56\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e4aa0fe09fb64bbe137d08eb4dbbdc6c\";a:10:{s:4:\"hash\";s:32:\"e4aa0fe09fb64bbe137d08eb4dbbdc6c\";s:3:\"url\";s:67:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/merchandise/\";s:4:\"path\";s:13:\"/merchandise/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:53:\"Merchandise | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Merchandise Featured Contact Information Recent Blog Posts If you like anything on this page contact\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e2240150d1b4d94ee6b3e3199a0a3f31\";a:10:{s:4:\"hash\";s:32:\"e2240150d1b4d94ee6b3e3199a0a3f31\";s:3:\"url\";s:73:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/news-and-events-2/\";s:4:\"path\";s:19:\"/news-and-events-2/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"64919a9631142339412183c14f7da1ea\";a:10:{s:4:\"hash\";s:32:\"64919a9631142339412183c14f7da1ea\";s:3:\"url\";s:66:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/ny-wc-blog/\";s:4:\"path\";s:12:\"/ny-wc-blog/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:85:\"New York Workers\' Compensation Defense Firm | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"That Prior Loss Wont Just Come Out in the Wash Using the Contralateral Limb as a Baseline for Calcul\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b65af2613bf8ca44846fa3a8136d5a9b\";a:10:{s:4:\"hash\";s:32:\"b65af2613bf8ca44846fa3a8136d5a9b\";s:3:\"url\";s:73:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/ny-wc-blog/page/2/\";s:4:\"path\";s:19:\"/ny-wc-blog/page/2/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:85:\"New York Workers\' Compensation Defense Firm | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Carpal Tunnel and Causal Relation Not Always So Clear-Cut Pain is Not Enough for Prima Facie Medical\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6f9b3d7b7d2f55edd482b7fb876aad76\";a:10:{s:4:\"hash\";s:32:\"6f9b3d7b7d2f55edd482b7fb876aad76\";s:3:\"url\";s:73:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/ny-wc-blog/page/3/\";s:4:\"path\";s:19:\"/ny-wc-blog/page/3/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ef83fed0beccac181b43b4ad861d93b5\";a:10:{s:4:\"hash\";s:32:\"ef83fed0beccac181b43b4ad861d93b5\";s:3:\"url\";s:68:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/attorney/\";s:4:\"path\";s:14:\"/tag/attorney/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"Tag: Attorney | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Tag Archives: Attorney Summer is Almost Over! No widgets! Contact Information Recent Blog Posts Seas\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3a36591bd6a09a7d73f503d4602e6f4f\";a:10:{s:4:\"hash\";s:32:\"3a36591bd6a09a7d73f503d4602e6f4f\";s:3:\"url\";s:79:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/average-weekly-wage/\";s:4:\"path\";s:25:\"/tag/average-weekly-wage/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:66:\"Tag: Average Weekly Wage | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Tag Archives: Average Weekly Wage An Employee Cannot be Summer is Almost Over! Average Wages? No wid\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3e735697a7a1d61beaec6297fcc5ffa1\";a:10:{s:4:\"hash\";s:32:\"3e735697a7a1d61beaec6297fcc5ffa1\";s:3:\"url\";s:67:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/buffalo/\";s:4:\"path\";s:13:\"/tag/buffalo/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:54:\"Tag: Buffalo | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Tag Archives: Buffalo An Employee Cannot be Summer is Almost Over! Average Wages? No widgets! Contac\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c6d36e677c6d8c4a39a267ec5cb7759c\";a:10:{s:4:\"hash\";s:32:\"c6d36e677c6d8c4a39a267ec5cb7759c\";s:3:\"url\";s:67:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/carrier/\";s:4:\"path\";s:13:\"/tag/carrier/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:54:\"Tag: Carrier | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Tag Archives: Carrier Summer is Almost Over! Average Wages? No widgets! Contact Information Recent B\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"261297bb2a532664170fd66c9bec3210\";a:10:{s:4:\"hash\";s:32:\"261297bb2a532664170fd66c9bec3210\";s:3:\"url\";s:71:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/compensable/\";s:4:\"path\";s:17:\"/tag/compensable/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:58:\"Tag: compensable | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Tag Archives: compensable Summer is Almost Over! HOT DOGS OR HAMBURGERS? No widgets! Contact Informa\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a746b9b74bb03d815b6ab03ae9eb14dd\";a:10:{s:4:\"hash\";s:32:\"a746b9b74bb03d815b6ab03ae9eb14dd\";s:3:\"url\";s:76:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/cost-containment/\";s:4:\"path\";s:22:\"/tag/cost-containment/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"257442790f8b8a39d4b2cda0bf843a23\";a:10:{s:4:\"hash\";s:32:\"257442790f8b8a39d4b2cda0bf843a23\";s:3:\"url\";s:72:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/cost-savings/\";s:4:\"path\";s:18:\"/tag/cost-savings/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d99b9fb321d03210d6daeb24926d3a76\";a:10:{s:4:\"hash\";s:32:\"d99b9fb321d03210d6daeb24926d3a76\";s:3:\"url\";s:65:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/costs/\";s:4:\"path\";s:11:\"/tag/costs/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2f83955f9b8b347924027c971d82d3cb\";a:10:{s:4:\"hash\";s:32:\"2f83955f9b8b347924027c971d82d3cb\";s:3:\"url\";s:67:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/counsel/\";s:4:\"path\";s:13:\"/tag/counsel/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:54:\"Tag: Counsel | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Tag Archives: Counsel Summer is Almost Over! No widgets! Contact Information Recent Blog Posts Seaso\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"19b2c93304a3079e707565790a2fd18d\";a:10:{s:4:\"hash\";s:32:\"19b2c93304a3079e707565790a2fd18d\";s:3:\"url\";s:67:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/defense/\";s:4:\"path\";s:13:\"/tag/defense/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:54:\"Tag: Defense | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Tag Archives: Defense An Employee Cannot be Summer is Almost Over! Average Wages? No widgets! Contac\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a5e7b766207d8b699f597c1d94d1bf43\";a:10:{s:4:\"hash\";s:32:\"a5e7b766207d8b699f597c1d94d1bf43\";s:3:\"url\";s:75:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/five-day-worker/\";s:4:\"path\";s:21:\"/tag/five-day-worker/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:62:\"Tag: five day worker | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Tag Archives: five day worker An Employee Cannot be No widgets! Contact Information Recent Blog Post\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"993e76324175c5df4ba3dd38a8d79cf4\";a:10:{s:4:\"hash\";s:32:\"993e76324175c5df4ba3dd38a8d79cf4\";s:3:\"url\";s:76:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/full-board-panel/\";s:4:\"path\";s:22:\"/tag/full-board-panel/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:63:\"Tag: Full Board Panel | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Tag Archives: Full Board Panel An Employee Cannot be No widgets! Contact Information Recent Blog Pos\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2a67cf82cda9d0efc3982315492404bb\";a:10:{s:4:\"hash\";s:32:\"2a67cf82cda9d0efc3982315492404bb\";s:3:\"url\";s:91:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/independent-medical-examination/\";s:4:\"path\";s:37:\"/tag/independent-medical-examination/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:78:\"Tag: Independent Medical Examination | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Tag Archives: Independent Medical Examination Non-Acute Pain Treatment Guidelines IMEs : The Next Su\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"44e20faf07fabbaae241ca56aa2a3358\";a:10:{s:4:\"hash\";s:32:\"44e20faf07fabbaae241ca56aa2a3358\";s:3:\"url\";s:69:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/insurance/\";s:4:\"path\";s:15:\"/tag/insurance/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:56:\"Tag: Insurance | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Tag Archives: Insurance An Employee Cannot be Summer is Almost Over! Average Wages? No widgets! Cont\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"559fcb3b81ae1ff26c99ddc999538b6d\";a:10:{s:4:\"hash\";s:32:\"559fcb3b81ae1ff26c99ddc999538b6d\";s:3:\"url\";s:88:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/medical-treatment-guidelines/\";s:4:\"path\";s:34:\"/tag/medical-treatment-guidelines/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"503\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9394458fdb640aec7dcb09ec38512f23\";a:10:{s:4:\"hash\";s:32:\"9394458fdb640aec7dcb09ec38512f23\";s:3:\"url\";s:70:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/mitigation/\";s:4:\"path\";s:16:\"/tag/mitigation/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4933460025d8bacf398f85f5cf5f5a46\";a:10:{s:4:\"hash\";s:32:\"4933460025d8bacf398f85f5cf5f5a46\";s:3:\"url\";s:69:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/narcotics/\";s:4:\"path\";s:15:\"/tag/narcotics/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:56:\"Tag: narcotics | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Tag Archives: narcotics Non-Acute Pain Treatment Guidelines No widgets! Contact Information Recent B\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"54fda9e90ed786dcc4ed09f9443207bf\";a:10:{s:4:\"hash\";s:32:\"54fda9e90ed786dcc4ed09f9443207bf\";s:3:\"url\";s:95:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/new-york-state-workers-compensation/\";s:4:\"path\";s:41:\"/tag/new-york-state-workers-compensation/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:82:\"Tag: New York State Workers Compensation | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Tag Archives: New York State Workers Compensation Summer is Almost Over! Non-Acute Pain Treatment Gu\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c23842014fc40b47abffc1c61b90c639\";a:10:{s:4:\"hash\";s:32:\"c23842014fc40b47abffc1c61b90c639\";s:3:\"url\";s:89:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/new-york-workers-compensation/\";s:4:\"path\";s:35:\"/tag/new-york-workers-compensation/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:79:\"Tag: New York Workers’ Compensation | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Tag Archives: New York Workers Compensation An Employee Cannot be Summer is Almost Over! No widgets!\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6ed043562ff04935c9155f99810a0e60\";a:10:{s:4:\"hash\";s:32:\"6ed043562ff04935c9155f99810a0e60\";s:3:\"url\";s:68:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/new-york/\";s:4:\"path\";s:14:\"/tag/new-york/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"Tag: new york | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Tag Archives: new york Average Wages? Non-Acute Pain Treatment Guidelines No widgets! Contact Inform\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"da84f408e9269701294ddc31e1a51eea\";a:10:{s:4:\"hash\";s:32:\"da84f408e9269701294ddc31e1a51eea\";s:3:\"url\";s:65:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/nexus/\";s:4:\"path\";s:11:\"/tag/nexus/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:52:\"Tag: nexus | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Tag Archives: nexus HOT DOGS OR HAMBURGERS? No widgets! Contact Information Recent Blog Posts For th\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5d2ec1ba93692bd52e6b46ca577ce3ea\";a:10:{s:4:\"hash\";s:32:\"5d2ec1ba93692bd52e6b46ca577ce3ea\";s:3:\"url\";s:103:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/non-acute-pain-medical-treatment-guidelines/\";s:4:\"path\";s:49:\"/tag/non-acute-pain-medical-treatment-guidelines/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3a2de23b231dab6285f7c5fcc030198e\";a:10:{s:4:\"hash\";s:32:\"3a2de23b231dab6285f7c5fcc030198e\";s:3:\"url\";s:74:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/non-acute-pain/\";s:4:\"path\";s:20:\"/tag/non-acute-pain/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"893138c7e4a1801d010bf630c24da4f2\";a:10:{s:4:\"hash\";s:32:\"893138c7e4a1801d010bf630c24da4f2\";s:3:\"url\";s:67:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/opioids/\";s:4:\"path\";s:13:\"/tag/opioids/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:54:\"Tag: opioids | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Tag Archives: opioids Non-Acute Pain Treatment Guidelines No widgets! Contact Information Recent Blo\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d09e2db7730abdf964c6158c50d68f8e\";a:10:{s:4:\"hash\";s:32:\"d09e2db7730abdf964c6158c50d68f8e\";s:3:\"url\";s:74:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/representation/\";s:4:\"path\";s:20:\"/tag/representation/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"95bec94ada9ff15bf7824ec142316979\";a:10:{s:4:\"hash\";s:32:\"95bec94ada9ff15bf7824ec142316979\";s:3:\"url\";s:72:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/self-insured/\";s:4:\"path\";s:18:\"/tag/self-insured/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3a1155c9d8e61cf655cbd5ffe3c952c9\";a:10:{s:4:\"hash\";s:32:\"3a1155c9d8e61cf655cbd5ffe3c952c9\";s:3:\"url\";s:74:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/six-day-worker/\";s:4:\"path\";s:20:\"/tag/six-day-worker/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"837e2309f8d395a3f714dd48d84512fe\";a:10:{s:4:\"hash\";s:32:\"837e2309f8d395a3f714dd48d84512fe\";s:3:\"url\";s:69:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/testimony/\";s:4:\"path\";s:15:\"/tag/testimony/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"452ec3c83a91577687174cb947c92bed\";a:10:{s:4:\"hash\";s:32:\"452ec3c83a91577687174cb947c92bed\";s:3:\"url\";s:73:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/wcl-%c2%a7-10/\";s:4:\"path\";s:19:\"/tag/wcl-%c2%a7-10/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"680879ef7772f2acd3935de8723e4442\";a:10:{s:4:\"hash\";s:32:\"680879ef7772f2acd3935de8723e4442\";s:3:\"url\";s:74:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/wcl-%c2%a7-211/\";s:4:\"path\";s:20:\"/tag/wcl-%c2%a7-211/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c794d477f1a825e224f5b0869817b335\";a:10:{s:4:\"hash\";s:32:\"c794d477f1a825e224f5b0869817b335\";s:3:\"url\";s:88:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/workers-compensation-defense/\";s:4:\"path\";s:34:\"/tag/workers-compensation-defense/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"84f6171c2d3f48399d2502d3f89042ba\";a:10:{s:4:\"hash\";s:32:\"84f6171c2d3f48399d2502d3f89042ba\";s:3:\"url\";s:80:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/tag/workers-compensation/\";s:4:\"path\";s:26:\"/tag/workers-compensation/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a67813d6eb7eec4113de731551c9f529\";a:10:{s:4:\"hash\";s:32:\"a67813d6eb7eec4113de731551c9f529\";s:3:\"url\";s:83:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/alexis-d-hatten/\";s:4:\"path\";s:29:\"/team_member/alexis-d-hatten/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:58:\"Alexis D. Hatten | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Alexis D. Hatten Featured Contact Information Recent Blog Posts  Alexis is a 2012 graduate of Albany\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"573d97dca1d469f1717e2a81a1c62aff\";a:10:{s:4:\"hash\";s:32:\"573d97dca1d469f1717e2a81a1c62aff\";s:3:\"url\";s:85:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/brendan-t-shannon/\";s:4:\"path\";s:31:\"/team_member/brendan-t-shannon/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ab2dd104a18dc0e3e50fc632732d0ac2\";a:10:{s:4:\"hash\";s:32:\"ab2dd104a18dc0e3e50fc632732d0ac2\";s:3:\"url\";s:82:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/brian-k-prince/\";s:4:\"path\";s:28:\"/team_member/brian-k-prince/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"Brian K. Prince | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Brian K. Prince Featured Contact Information Recent Blog Posts  Brian has spent the majority of his \";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"bd8644d4097ea39ac62c086609ea9c8d\";a:10:{s:4:\"hash\";s:32:\"bd8644d4097ea39ac62c086609ea9c8d\";s:3:\"url\";s:89:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/cassandra-e-christman/\";s:4:\"path\";s:35:\"/team_member/cassandra-e-christman/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:64:\"Cassandra E. Christman | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Cassandra E. Christman Featured Contact Information Recent Blog Posts  Cassandra is an Associate Att\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9f53683771a58a250fd0ac9bc86959f2\";a:10:{s:4:\"hash\";s:32:\"9f53683771a58a250fd0ac9bc86959f2\";s:3:\"url\";s:80:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/daniel-flynn/\";s:4:\"path\";s:26:\"/team_member/daniel-flynn/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:54:\"Daniel Flynn | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Daniel Flynn Featured Contact Information Recent Blog Posts  Daniel is originally from Syracuse, NY \";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"3e8ca69587bf83a1d53b944adea739bf\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"342fd9d93e4902776b1c34107d004062\";a:10:{s:4:\"hash\";s:32:\"342fd9d93e4902776b1c34107d004062\";s:3:\"url\";s:80:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/elena-n-camp/\";s:4:\"path\";s:26:\"/team_member/elena-n-camp/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"Elena N. Camp | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Elena N. Camp Featured Contact Information Recent Blog Posts  Elena is excited to a part of a lively\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"df501cc638d575f60c69619f08033ffe\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"c6c85e88801982204032b4e38bcbbf85\";a:10:{s:4:\"hash\";s:32:\"c6c85e88801982204032b4e38bcbbf85\";s:3:\"url\";s:78:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/hannah-kim/\";s:4:\"path\";s:24:\"/team_member/hannah-kim/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a132f673991ab1dc711df165e484d533\";a:10:{s:4:\"hash\";s:32:\"a132f673991ab1dc711df165e484d533\";s:3:\"url\";s:83:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/james-b-cousins/\";s:4:\"path\";s:29:\"/team_member/james-b-cousins/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:58:\"James B. Cousins | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"James B. Cousins Featured Contact Information Recent Blog Posts  James has dedicated his entire care\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"2103835b445d302be00e77c6d0b90d51\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f83eca2b3aa2bb06200e063f3f11a6e1\";a:10:{s:4:\"hash\";s:32:\"f83eca2b3aa2bb06200e063f3f11a6e1\";s:3:\"url\";s:83:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/jenny-malkowski/\";s:4:\"path\";s:29:\"/team_member/jenny-malkowski/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:57:\"Jenny Malkowski | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Jenny Malkowski Featured Contact Information Recent Blog Posts  Jenny graduated from Erie Community \";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"7441fac48e7e297eb1931f71080ba0f4\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7e270f1698c42fee4169fc10a2e54d43\";a:10:{s:4:\"hash\";s:32:\"7e270f1698c42fee4169fc10a2e54d43\";s:3:\"url\";s:83:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/jillian-chavers/\";s:4:\"path\";s:29:\"/team_member/jillian-chavers/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"Jillian Chavers | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Jillian Chavers Featured Contact Information Recent Blog Posts  Jillian comes to us with extensive e\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"23fca7e9c16114a23f33e10ea3b03b28\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"641103e5a11ea6c46f426954581102a6\";a:10:{s:4:\"hash\";s:32:\"641103e5a11ea6c46f426954581102a6\";s:3:\"url\";s:79:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/jody-guiher/\";s:4:\"path\";s:25:\"/team_member/jody-guiher/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"51cd626474bbbfe502f01fb73eb60798\";a:10:{s:4:\"hash\";s:32:\"51cd626474bbbfe502f01fb73eb60798\";s:3:\"url\";s:86:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/justice-c-williams/\";s:4:\"path\";s:32:\"/team_member/justice-c-williams/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1250fb23d9a75553167b3f0b199f943e\";a:10:{s:4:\"hash\";s:32:\"1250fb23d9a75553167b3f0b199f943e\";s:3:\"url\";s:80:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/katrina-gray/\";s:4:\"path\";s:26:\"/team_member/katrina-gray/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:54:\"Katrina Gray | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Katrina Gray Featured Contact Information Recent Blog Posts  Katrina Gray comes to the Law Offices o\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"3f24440d868c2503f5b443a63accacdc\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"615482e8fa4e8e2987e2295d5c38db6a\";a:10:{s:4:\"hash\";s:32:\"615482e8fa4e8e2987e2295d5c38db6a\";s:3:\"url\";s:86:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/kristin-m-machelor/\";s:4:\"path\";s:32:\"/team_member/kristin-m-machelor/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:61:\"Kristin M. Machelor | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Kristin M. Machelor Featured Contact Information Recent Blog Posts Admitted to Practice&#10;&#10;New\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"b856128d0bb4326599b20b01d0628430\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"79273e04b434de44cd89bf6238f0bf14\";a:10:{s:4:\"hash\";s:32:\"79273e04b434de44cd89bf6238f0bf14\";s:3:\"url\";s:82:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/melanie-a-daly/\";s:4:\"path\";s:28:\"/team_member/melanie-a-daly/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"Melanie A. Daly | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Melanie A. Daly Featured Contact Information Recent Blog Posts  Melanie is an Associate Attorney who\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"9d1bb8658fd0b5221ab14ee048c6c552\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f6a5096b5072d1461968ee5be77cd3b4\";a:10:{s:4:\"hash\";s:32:\"f6a5096b5072d1461968ee5be77cd3b4\";s:3:\"url\";s:81:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/melissa-a-day/\";s:4:\"path\";s:27:\"/team_member/melissa-a-day/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:56:\"Melissa A. Day | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Melissa A. Day Featured Contact Information Recent Blog Posts  Owner and Managing Attorney of The La\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"2ef01596fcde947c1bc69a67529906d5\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0088a9dbd86b4af81d6f6ac7c10f30a9\";a:10:{s:4:\"hash\";s:32:\"0088a9dbd86b4af81d6f6ac7c10f30a9\";s:3:\"url\";s:80:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/najee-walker/\";s:4:\"path\";s:26:\"/team_member/najee-walker/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:54:\"Najee Walker | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Najee Walker Featured Contact Information Recent Blog Posts  Najee Walker comes to us with a strong \";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"970801df24cd5ed5544abfaedcb1bf57\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4274999c116be807d9005396727e17a7\";a:10:{s:4:\"hash\";s:32:\"4274999c116be807d9005396727e17a7\";s:3:\"url\";s:84:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/neil-a-diegelman/\";s:4:\"path\";s:30:\"/team_member/neil-a-diegelman/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:59:\"Neil A. Diegelman | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Neil A. Diegelman Featured Contact Information Recent Blog Posts  Neil began practicing Workers Comp\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"795142b1b0063359b2ebfbc599c73ed0\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"8d2235999ae9c83e86a3bd0199876cf4\";a:10:{s:4:\"hash\";s:32:\"8d2235999ae9c83e86a3bd0199876cf4\";s:3:\"url\";s:83:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/paul-b-kornacki/\";s:4:\"path\";s:29:\"/team_member/paul-b-kornacki/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:58:\"Paul B. Kornacki | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Paul B. Kornacki Featured Contact Information Recent Blog Posts  Paul is an associate attorney pract\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"776400f9695cbdb427c69c5212e8e06a\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3894de40021064e5f9ca4c31e224a542\";a:10:{s:4:\"hash\";s:32:\"3894de40021064e5f9ca4c31e224a542\";s:3:\"url\";s:84:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/rebecca-brashear/\";s:4:\"path\";s:30:\"/team_member/rebecca-brashear/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:58:\"Rebecca Brashear | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Rebecca Brashear Featured Contact Information Recent Blog Posts  Rebecca comes to us with a strong b\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"b16d49bad5497561e605a4a89ccb359c\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"5e85ea4adb3139c7f5361a2e4614f49c\";a:10:{s:4:\"hash\";s:32:\"5e85ea4adb3139c7f5361a2e4614f49c\";s:3:\"url\";s:84:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/shannan-m-mackey/\";s:4:\"path\";s:30:\"/team_member/shannan-m-mackey/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:59:\"Shannan M. Mackey | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Shannan M. Mackey Featured Contact Information Recent Blog Posts  Shannan has exclusively practiced \";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"a5aff10fb008ebd0fe9088c4bc32f093\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f76a6a57a3564a7db97cff759abd40fa\";a:10:{s:4:\"hash\";s:32:\"f76a6a57a3564a7db97cff759abd40fa\";s:3:\"url\";s:78:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/susan-eick/\";s:4:\"path\";s:24:\"/team_member/susan-eick/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4e7f64ae80f2e37339f6591c1ac29e79\";a:10:{s:4:\"hash\";s:32:\"4e7f64ae80f2e37339f6591c1ac29e79\";s:3:\"url\";s:84:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/thomas-dickinson/\";s:4:\"path\";s:30:\"/team_member/thomas-dickinson/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:58:\"Thomas Dickinson | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Thomas Dickinson Featured Contact Information Recent Blog Posts  Prior to joining the Law Offices of\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"b5cb38046bde175e02c1f3f1e69de3d8\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"666a88ff4a791309b67d974f3a25bcfc\";a:10:{s:4:\"hash\";s:32:\"666a88ff4a791309b67d974f3a25bcfc\";s:3:\"url\";s:83:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/vicki-l-buehler/\";s:4:\"path\";s:29:\"/team_member/vicki-l-buehler/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:58:\"Vicki L. Buehler | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Vicki L. Buehler Featured Contact Information Recent Blog Posts  Vicki is an associate attorney who \";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"04f5a48bc973ef5b0e23220c3c8b210d\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"11f9769ee5131e46b230077f90c2b46c\";a:10:{s:4:\"hash\";s:32:\"11f9769ee5131e46b230077f90c2b46c\";s:3:\"url\";s:68:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team/careers/\";s:4:\"path\";s:14:\"/team/careers/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4c1f7ae20a0ba132cb6834827e23d023\";a:10:{s:4:\"hash\";s:32:\"4c1f7ae20a0ba132cb6834827e23d023\";s:3:\"url\";s:76:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team/litigation-team/\";s:4:\"path\";s:22:\"/team/litigation-team/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"37abfaa3ac00334d0e06194889339acf\";a:10:{s:4:\"hash\";s:32:\"37abfaa3ac00334d0e06194889339acf\";s:3:\"url\";s:91:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team/workers-compensation-attorneys/\";s:4:\"path\";s:37:\"/team/workers-compensation-attorneys/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:75:\"Workers’ Compensation Attorneys | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Workers Compensation Attorneys Featured Contact Information Recent Blog Posts  ATTORNEY ADVERTISING \";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"60fce8b4b05b6cfff0a8790a7f0f5b75\";a:10:{s:4:\"hash\";s:32:\"60fce8b4b05b6cfff0a8790a7f0f5b75\";s:3:\"url\";s:64:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/the-team/\";s:4:\"path\";s:10:\"/the-team/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:50:\"The Team | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"The Team Click here to learn more about our Workers Compensation Team! Click here to learn more abou\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"94116f0fe8b836032ed0cbacb8c3de44\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4ef29dc1be7b413d210f83559ded3ef4\";a:10:{s:4:\"hash\";s:32:\"4ef29dc1be7b413d210f83559ded3ef4\";s:3:\"url\";s:72:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/the-team/careers/\";s:4:\"path\";s:18:\"/the-team/careers/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:49:\"Careers | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Careers The Law Offices of Melissa A. Day is looking for new, talented people to join the LOMAD team\";s:3:\"map\";a:3:{s:5:\"title\";s:32:\"9243ee179afd8b8a70a508b04d7fe063\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"b574e11ccbafdaf3fff13f47c3575108\";a:10:{s:4:\"hash\";s:32:\"b574e11ccbafdaf3fff13f47c3575108\";s:3:\"url\";s:80:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/the-team/litigation-team/\";s:4:\"path\";s:26:\"/the-team/litigation-team/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:57:\"Litigation Team | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Litigation Team Featured Contact Information Recent Blog Posts  ATTORNEY ADVERTISING - PRIOR RESULTS\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d3233e58f8d01e7dbc2c250911f1e56d\";a:10:{s:4:\"hash\";s:32:\"d3233e58f8d01e7dbc2c250911f1e56d\";s:3:\"url\";s:72:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/the-team/wc-team/\";s:4:\"path\";s:18:\"/the-team/wc-team/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:70:\"Workers’ Compensation Team | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Workers Compensation Team Attorneys Legal Assistants &amp; Paralegals Contact Information Recent Blo\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aada0ab738e7122cf871668583ce069c\";a:10:{s:4:\"hash\";s:32:\"aada0ab738e7122cf871668583ce069c\";s:3:\"url\";s:64:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/webinars/\";s:4:\"path\";s:10:\"/webinars/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:49:\"LOMADtv | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Webinar Series Check out LOMADtv  click on the picture below to join us live on the 4th Friday of ea\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:32:\"a86f9a18cf995d42d00b5c89d7f9e576\";}s:7:\"indexed\";b:0;}s:32:\"f9b1d823c260dc35f8afb90d04930c0b\";a:10:{s:4:\"hash\";s:32:\"f9b1d823c260dc35f8afb90d04930c0b\";s:3:\"url\";s:75:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-admin/widgets.php\";s:4:\"path\";s:21:\"/wp-admin/widgets.php\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:0;s:4:\"code\";s:3:\"500\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"be32ec94dd6af10cde0f8addbfe2c649\";a:10:{s:4:\"hash\";s:32:\"be32ec94dd6af10cde0f8addbfe2c649\";s:3:\"url\";s:119:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/06/0_0_0_0_177_236_csupload_64428384.jpg\";s:4:\"path\";s:65:\"/wp-content/uploads/2014/06/0_0_0_0_177_236_csupload_64428384.jpg\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0414ad6bcc71289127e02bc9568ceb03\";a:10:{s:4:\"hash\";s:32:\"0414ad6bcc71289127e02bc9568ceb03\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/06/Aeropostale-G041-0425-.pdf\";s:4:\"path\";s:54:\"/wp-content/uploads/2014/06/Aeropostale-G041-0425-.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:54:\"/wp-content/uploads/2014/06/Aeropostale-G041-0425-.pdf\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0ccdafae832cf36f537b86fdbce8f4f1\";a:10:{s:4:\"hash\";s:32:\"0ccdafae832cf36f537b86fdbce8f4f1\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/06/New-York-Hospital-Medical-Center.pdf\";s:4:\"path\";s:64:\"/wp-content/uploads/2014/06/New-York-Hospital-Medical-Center.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:64:\"/wp-content/uploads/2014/06/New-York-Hospital-Medical-Center.pdf\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f222142546e6540cb9602a4cd674b708\";a:10:{s:4:\"hash\";s:32:\"f222142546e6540cb9602a4cd674b708\";s:3:\"url\";s:106:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/06/NYSASIC-Presentation.ppt\";s:4:\"path\";s:52:\"/wp-content/uploads/2014/06/NYSASIC-Presentation.ppt\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"9125b63847c9174918059f1edfeff7f3\";a:10:{s:4:\"hash\";s:32:\"9125b63847c9174918059f1edfeff7f3\";s:3:\"url\";s:103:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/06/Section-32-Values.xls\";s:4:\"path\";s:49:\"/wp-content/uploads/2014/06/Section-32-Values.xls\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"aff2f95fc973da5fd6be940ed0968083\";a:10:{s:4:\"hash\";s:32:\"aff2f95fc973da5fd6be940ed0968083\";s:3:\"url\";s:120:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/06/Sterling-Seminar-1-17-14-Rochester.ppt\";s:4:\"path\";s:66:\"/wp-content/uploads/2014/06/Sterling-Seminar-1-17-14-Rochester.ppt\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"7e0d8648c08149bfc5e5f2d6d405a21f\";a:10:{s:4:\"hash\";s:32:\"7e0d8648c08149bfc5e5f2d6d405a21f\";s:3:\"url\";s:106:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/06/THREE-STEPS-TO-LWEC.docx\";s:4:\"path\";s:52:\"/wp-content/uploads/2014/06/THREE-STEPS-TO-LWEC.docx\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:2:\"PK\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"0cc81248266b16c5f714356adac46440\";a:10:{s:4:\"hash\";s:32:\"0cc81248266b16c5f714356adac46440\";s:3:\"url\";s:107:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/25-a-Unconstitutional.pdf\";s:4:\"path\";s:53:\"/wp-content/uploads/2014/12/25-a-Unconstitutional.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:53:\"/wp-content/uploads/2014/12/25-a-Unconstitutional.pdf\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"d5181c542c0f8a91bdbac23e50eab7bb\";a:10:{s:4:\"hash\";s:32:\"d5181c542c0f8a91bdbac23e50eab7bb\";s:3:\"url\";s:114:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/BCA-SLU-Proposed-Guidelines.pptx\";s:4:\"path\";s:60:\"/wp-content/uploads/2014/12/BCA-SLU-Proposed-Guidelines.pptx\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:2:\"PK\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"01a455547a6f8f935b1acab1e398ddd6\";a:10:{s:4:\"hash\";s:32:\"01a455547a6f8f935b1acab1e398ddd6\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/Corvel-A-Modest-Proposal-Proposed-SLU-Guidelines.pptx\";s:4:\"path\";s:81:\"/wp-content/uploads/2014/12/Corvel-A-Modest-Proposal-Proposed-SLU-Guidelines.pptx\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:2:\"PK\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a0920026553ff4c0775e7c76676dd7b9\";a:10:{s:4:\"hash\";s:32:\"a0920026553ff4c0775e7c76676dd7b9\";s:3:\"url\";s:145:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/NYSASIC-SLU-2017-Reform-Update-and-Proposed-SLU-Guidelines.pptx\";s:4:\"path\";s:91:\"/wp-content/uploads/2014/12/NYSASIC-SLU-2017-Reform-Update-and-Proposed-SLU-Guidelines.pptx\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:2:\"PK\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"f99bacc14d1abd7e106df38c7006ad5c\";a:10:{s:4:\"hash\";s:32:\"f99bacc14d1abd7e106df38c7006ad5c\";s:3:\"url\";s:114:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2015/07/Hot-Dog-Dog-Costume1-300x196.jpg\";s:4:\"path\";s:60:\"/wp-content/uploads/2015/07/Hot-Dog-Dog-Costume1-300x196.jpg\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"a1640c3890b9fb9db868dc986c4688e1\";a:10:{s:4:\"hash\";s:32:\"a1640c3890b9fb9db868dc986c4688e1\";s:3:\"url\";s:130:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2016/12/BASIC-ISSUES-OF-COMPENSABILITY-2017-SCHEDULE.pdf\";s:4:\"path\";s:76:\"/wp-content/uploads/2016/12/BASIC-ISSUES-OF-COMPENSABILITY-2017-SCHEDULE.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:76:\"/wp-content/uploads/2016/12/BASIC-ISSUES-OF-COMPENSABILITY-2017-SCHEDULE.pdf\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"81f7f22fea65b3739973735399c9546a\";a:10:{s:4:\"hash\";s:32:\"81f7f22fea65b3739973735399c9546a\";s:3:\"url\";s:129:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2017/04/ADVANCED-WORKERS-COMPENSATION-2017-SCHEDULE.pdf\";s:4:\"path\";s:75:\"/wp-content/uploads/2017/04/ADVANCED-WORKERS-COMPENSATION-2017-SCHEDULE.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:75:\"/wp-content/uploads/2017/04/ADVANCED-WORKERS-COMPENSATION-2017-SCHEDULE.pdf\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"781dcf7553a3c7a896b78b55289be047\";a:10:{s:4:\"hash\";s:32:\"781dcf7553a3c7a896b78b55289be047\";s:3:\"url\";s:99:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2018/01/2017-WBE-Cert.pdf\";s:4:\"path\";s:45:\"/wp-content/uploads/2018/01/2017-WBE-Cert.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:45:\"/wp-content/uploads/2018/01/2017-WBE-Cert.pdf\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"385767340706cafa291b6f941e024f90\";a:10:{s:4:\"hash\";s:32:\"385767340706cafa291b6f941e024f90\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2018/01/SLU-Guidelines-NYCT-MTA-Corvel.pptx\";s:4:\"path\";s:63:\"/wp-content/uploads/2018/01/SLU-Guidelines-NYCT-MTA-Corvel.pptx\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:2:\"PK\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"da7e1d56741acf3ad6d7f51961e5df45\";a:10:{s:4:\"hash\";s:32:\"da7e1d56741acf3ad6d7f51961e5df45\";s:3:\"url\";s:113:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2018/02/Alliance-2018-presentation.pptx\";s:4:\"path\";s:59:\"/wp-content/uploads/2018/02/Alliance-2018-presentation.pptx\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:2:\"PK\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e183040fff63024ed5dd1552f334b2ec\";a:10:{s:4:\"hash\";s:32:\"e183040fff63024ed5dd1552f334b2ec\";s:3:\"url\";s:123:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2018/02/Everything-Old-is-New-Again-Alliance.pptx\";s:4:\"path\";s:69:\"/wp-content/uploads/2018/02/Everything-Old-is-New-Again-Alliance.pptx\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:2:\"PK\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ca0ae085c7ad3e1f2d0947faabe100f8\";a:10:{s:4:\"hash\";s:32:\"ca0ae085c7ad3e1f2d0947faabe100f8\";s:3:\"url\";s:123:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2021/02/2017-Case-Law-Update-A-Year-In-Review.pdf\";s:4:\"path\";s:69:\"/wp-content/uploads/2021/02/2017-Case-Law-Update-A-Year-In-Review.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:69:\"/wp-content/uploads/2021/02/2017-Case-Law-Update-A-Year-In-Review.pdf\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"2efa26d11e524ea098481d5c83bb97ec\";a:10:{s:4:\"hash\";s:32:\"2efa26d11e524ea098481d5c83bb97ec\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2021/02/2020-Case-Law-Update.asdsecond-edit-with-Cover.pdf\";s:4:\"path\";s:78:\"/wp-content/uploads/2021/02/2020-Case-Law-Update.asdsecond-edit-with-Cover.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:78:\"/wp-content/uploads/2021/02/2020-Case-Law-Update.asdsecond-edit-with-Cover.pdf\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"ea473fcc35a854f26a7ee1b06c688870\";a:10:{s:4:\"hash\";s:32:\"ea473fcc35a854f26a7ee1b06c688870\";s:3:\"url\";s:112:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2021/02/2021-Case-Law-Update-FINAL.pdf\";s:4:\"path\";s:58:\"/wp-content/uploads/2021/02/2021-Case-Law-Update-FINAL.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:58:\"/wp-content/uploads/2021/02/2021-Case-Law-Update-FINAL.pdf\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1e91fc0710e60ff84a1656c4a21111d1\";a:10:{s:4:\"hash\";s:32:\"1e91fc0710e60ff84a1656c4a21111d1\";s:3:\"url\";s:99:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2021/02/Case-Law-2016.pdf\";s:4:\"path\";s:45:\"/wp-content/uploads/2021/02/Case-Law-2016.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:45:\"/wp-content/uploads/2021/02/Case-Law-2016.pdf\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"6bae3257700e42be504096f0815cf823\";a:10:{s:4:\"hash\";s:32:\"6bae3257700e42be504096f0815cf823\";s:3:\"url\";s:113:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2021/02/JBC-2018-Case-Law-Update-V4.pdf\";s:4:\"path\";s:59:\"/wp-content/uploads/2021/02/JBC-2018-Case-Law-Update-V4.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:59:\"/wp-content/uploads/2021/02/JBC-2018-Case-Law-Update-V4.pdf\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"4cb8897eeb416916c722bef7a0303867\";a:10:{s:4:\"hash\";s:32:\"4cb8897eeb416916c722bef7a0303867\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2021/02/JBC-2019-Case-Law-Review-Packet.pdf\";s:4:\"path\";s:63:\"/wp-content/uploads/2021/02/JBC-2019-Case-Law-Review-Packet.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:63:\"/wp-content/uploads/2021/02/JBC-2019-Case-Law-Review-Packet.pdf\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"e2b2042de3fb3bd60c00e85e086a3182\";a:10:{s:4:\"hash\";s:32:\"e2b2042de3fb3bd60c00e85e086a3182\";s:3:\"url\";s:113:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2021/03/LOMAD-Newsletter-March-2021.pdf\";s:4:\"path\";s:59:\"/wp-content/uploads/2021/03/LOMAD-Newsletter-March-2021.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:59:\"/wp-content/uploads/2021/03/LOMAD-Newsletter-March-2021.pdf\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"727795864a4e08e3edd49f437d60f349\";a:10:{s:4:\"hash\";s:32:\"727795864a4e08e3edd49f437d60f349\";s:3:\"url\";s:111:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2021/03/LOMAD-Newsletter-Volume-2.pdf\";s:4:\"path\";s:57:\"/wp-content/uploads/2021/03/LOMAD-Newsletter-Volume-2.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:57:\"/wp-content/uploads/2021/03/LOMAD-Newsletter-Volume-2.pdf\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"3da86ea497b2286d8745fb9ebc2eddae\";a:10:{s:4:\"hash\";s:32:\"3da86ea497b2286d8745fb9ebc2eddae\";s:3:\"url\";s:111:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2021/03/LOMAD-newsletter-Volume-3.pdf\";s:4:\"path\";s:57:\"/wp-content/uploads/2021/03/LOMAD-newsletter-Volume-3.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:57:\"/wp-content/uploads/2021/03/LOMAD-newsletter-Volume-3.pdf\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"cd3f0d3cc48c4723f869256229720efc\";a:10:{s:4:\"hash\";s:32:\"cd3f0d3cc48c4723f869256229720efc\";s:3:\"url\";s:120:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2021/03/LOMAD-newsletter-Volume-4-August-1.pdf\";s:4:\"path\";s:66:\"/wp-content/uploads/2021/03/LOMAD-newsletter-Volume-4-August-1.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:66:\"/wp-content/uploads/2021/03/LOMAD-newsletter-Volume-4-August-1.pdf\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}s:32:\"1e45e4b3a72a35a0a050a813134db1c6\";a:10:{s:4:\"hash\";s:32:\"1e45e4b3a72a35a0a050a813134db1c6\";s:3:\"url\";s:123:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2021/03/LOMAD-newsletter-Volume-5-September-2.pdf\";s:4:\"path\";s:69:\"/wp-content/uploads/2021/03/LOMAD-newsletter-Volume-5-September-2.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:69:\"/wp-content/uploads/2021/03/LOMAD-newsletter-Volume-5-September-2.pdf\";s:4:\"body\";s:0:\"\";s:3:\"map\";a:3:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:4:\"path\";s:0:\"\";}s:7:\"indexed\";b:0;}}','no');
INSERT INTO `cuB_options` VALUES (3610,'flum_locally_5986','a:0:{}','no'),(3611,'flum_destination_5986','a:261:{s:32:\"1899074a58316d8605b24080dd0f26ae\";a:9:{s:4:\"hash\";s:32:\"1899074a58316d8605b24080dd0f26ae\";s:3:\"url\";s:86:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com\";s:4:\"path\";s:1:\"/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:60:\"Amherst Worker\'s Compensation Lawyer | Appeal A Denied Claim\";s:4:\"body\";s:100:\"A Collaborative Approach ToWorkers Compensation Defense The Teams Blog LOMAD-TV Workers Compensation\";s:7:\"indexed\";b:0;}s:32:\"0ba00d9ffcb4f1ed9bfd769593d590a5\";a:9:{s:4:\"hash\";s:32:\"0ba00d9ffcb4f1ed9bfd769593d590a5\";s:3:\"url\";s:102:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46232/\";s:4:\"path\";s:1:\"/\";s:5:\"query\";s:13:\"page_id=46232\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:60:\"Amherst Worker\'s Compensation Lawyer | Appeal A Denied Claim\";s:4:\"body\";s:100:\"A Collaborative Approach ToWorkers Compensation Defense The Teams Blog LOMAD-TV Workers Compensation\";s:7:\"indexed\";b:0;}s:32:\"58a49f0ccdb4273d8a882ba096b4392a\";a:9:{s:4:\"hash\";s:32:\"58a49f0ccdb4273d8a882ba096b4392a\";s:3:\"url\";s:102:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46235/\";s:4:\"path\";s:1:\"/\";s:5:\"query\";s:13:\"page_id=46235\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:60:\"Amherst Worker\'s Compensation Lawyer | Appeal A Denied Claim\";s:4:\"body\";s:100:\"A Collaborative Approach ToWorkers Compensation Defense The Teams Blog LOMAD-TV Workers Compensation\";s:7:\"indexed\";b:0;}s:32:\"91e89aba7f17e67d68c0df54f9936d6b\";a:9:{s:4:\"hash\";s:32:\"91e89aba7f17e67d68c0df54f9936d6b\";s:3:\"url\";s:93:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/\";s:4:\"path\";s:7:\"/about/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:50:\"About Us | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"A Workers Compensation Defense Built On Partnerships And Communication A Winning Formula Built on Ex\";s:7:\"indexed\";b:0;}s:32:\"bf8657663ee51af28c7a854c19beb3ba\";a:9:{s:4:\"hash\";s:32:\"bf8657663ee51af28c7a854c19beb3ba\";s:3:\"url\";s:111:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/brendan-t-shannon/\";s:4:\"path\";s:25:\"/about/brendan-t-shannon/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:60:\"Brendan T. Shannon | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Brendan T. Shannon Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe La\";s:7:\"indexed\";b:0;}s:32:\"b5c2e523ab4cc4cff5d3e7650fb1c979\";a:9:{s:4:\"hash\";s:32:\"b5c2e523ab4cc4cff5d3e7650fb1c979\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/corrine-newman/\";s:4:\"path\";s:22:\"/about/corrine-newman/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:56:\"Corrine Newman | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Corrine Newman Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law Of\";s:7:\"indexed\";b:0;}s:32:\"3e8ca69587bf83a1d53b944adea739bf\";a:9:{s:4:\"hash\";s:32:\"3e8ca69587bf83a1d53b944adea739bf\";s:3:\"url\";s:106:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/daniel-flynn/\";s:4:\"path\";s:20:\"/about/daniel-flynn/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:54:\"Daniel Flynn | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Daniel Flynn Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law Offi\";s:7:\"indexed\";b:0;}s:32:\"7607a37470ff6446df8021ccd32badd7\";a:9:{s:4:\"hash\";s:32:\"7607a37470ff6446df8021ccd32badd7\";s:3:\"url\";s:111:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/danielle-draschan/\";s:4:\"path\";s:25:\"/about/danielle-draschan/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:59:\"Danielle Draschan | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Danielle Draschan Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law\";s:7:\"indexed\";b:0;}s:32:\"df501cc638d575f60c69619f08033ffe\";a:9:{s:4:\"hash\";s:32:\"df501cc638d575f60c69619f08033ffe\";s:3:\"url\";s:106:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/elena-n-camp/\";s:4:\"path\";s:20:\"/about/elena-n-camp/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"Elena N. Camp | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Elena N. Camp Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law Off\";s:7:\"indexed\";b:0;}s:32:\"18ccf0a2beb084ed76a1f4aa6b84f0f3\";a:9:{s:4:\"hash\";s:32:\"18ccf0a2beb084ed76a1f4aa6b84f0f3\";s:3:\"url\";s:112:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/francis-christiano/\";s:4:\"path\";s:26:\"/about/francis-christiano/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:60:\"Francis Christiano | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Francis Christiano Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe La\";s:7:\"indexed\";b:0;}s:32:\"d5dee0e1996a0072b3e8e85168107838\";a:9:{s:4:\"hash\";s:32:\"d5dee0e1996a0072b3e8e85168107838\";s:3:\"url\";s:104:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/hannah-kim/\";s:4:\"path\";s:18:\"/about/hannah-kim/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:52:\"Hannah Kim | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Hannah Kim Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law Office\";s:7:\"indexed\";b:0;}s:32:\"2103835b445d302be00e77c6d0b90d51\";a:9:{s:4:\"hash\";s:32:\"2103835b445d302be00e77c6d0b90d51\";s:3:\"url\";s:109:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/james-b-cousins/\";s:4:\"path\";s:23:\"/about/james-b-cousins/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:58:\"James B. Cousins | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"James B. Cousins Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law \";s:7:\"indexed\";b:0;}s:32:\"7441fac48e7e297eb1931f71080ba0f4\";a:9:{s:4:\"hash\";s:32:\"7441fac48e7e297eb1931f71080ba0f4\";s:3:\"url\";s:109:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/jenny-malkowski/\";s:4:\"path\";s:23:\"/about/jenny-malkowski/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"Jenny Malkowski | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Jenny Malkowski Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law O\";s:7:\"indexed\";b:0;}s:32:\"20127bbbfe76122f1a489a391c7b18a9\";a:9:{s:4:\"hash\";s:32:\"20127bbbfe76122f1a489a391c7b18a9\";s:3:\"url\";s:109:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/jessica-stevens/\";s:4:\"path\";s:23:\"/about/jessica-stevens/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"Jessica Stevens | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Jessica Stevens Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law O\";s:7:\"indexed\";b:0;}s:32:\"23fca7e9c16114a23f33e10ea3b03b28\";a:9:{s:4:\"hash\";s:32:\"23fca7e9c16114a23f33e10ea3b03b28\";s:3:\"url\";s:109:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/jillian-chavers/\";s:4:\"path\";s:23:\"/about/jillian-chavers/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"Jillian Chavers | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Jillian Chavers Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law O\";s:7:\"indexed\";b:0;}s:32:\"2a012e94b334e7c188898347ed019f57\";a:9:{s:4:\"hash\";s:32:\"2a012e94b334e7c188898347ed019f57\";s:3:\"url\";s:105:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/jody-guiher/\";s:4:\"path\";s:19:\"/about/jody-guiher/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:53:\"Jody Guiher | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Jody Guiher Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law Offic\";s:7:\"indexed\";b:0;}s:32:\"34ce2fddd6b164593543ba4ac4b3bd39\";a:9:{s:4:\"hash\";s:32:\"34ce2fddd6b164593543ba4ac4b3bd39\";s:3:\"url\";s:112:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/justice-c-williams/\";s:4:\"path\";s:26:\"/about/justice-c-williams/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:61:\"Justice C. Williams | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Justice C. Williams Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe L\";s:7:\"indexed\";b:0;}s:32:\"3f24440d868c2503f5b443a63accacdc\";a:9:{s:4:\"hash\";s:32:\"3f24440d868c2503f5b443a63accacdc\";s:3:\"url\";s:106:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/katrina-gray/\";s:4:\"path\";s:20:\"/about/katrina-gray/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:54:\"Katrina Gray | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Katrina Gray Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law Offi\";s:7:\"indexed\";b:0;}s:32:\"5112a25f60e979e15240a1c14e93eb98\";a:9:{s:4:\"hash\";s:32:\"5112a25f60e979e15240a1c14e93eb98\";s:3:\"url\";s:110:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/kristen-b-degnan/\";s:4:\"path\";s:24:\"/about/kristen-b-degnan/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:59:\"Kristen B. Degnan | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Kristen B. Degnan Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law\";s:7:\"indexed\";b:0;}s:32:\"b856128d0bb4326599b20b01d0628430\";a:9:{s:4:\"hash\";s:32:\"b856128d0bb4326599b20b01d0628430\";s:3:\"url\";s:112:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/kristin-m-machelor/\";s:4:\"path\";s:26:\"/about/kristin-m-machelor/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:61:\"Kristin M. Machelor | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Kristin M. Machelor Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe L\";s:7:\"indexed\";b:0;}s:32:\"9d1bb8658fd0b5221ab14ee048c6c552\";a:9:{s:4:\"hash\";s:32:\"9d1bb8658fd0b5221ab14ee048c6c552\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/melanie-a-daly/\";s:4:\"path\";s:22:\"/about/melanie-a-daly/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"Melanie A. Daly | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Melanie A. Daly Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law O\";s:7:\"indexed\";b:0;}s:32:\"2ef01596fcde947c1bc69a67529906d5\";a:9:{s:4:\"hash\";s:32:\"2ef01596fcde947c1bc69a67529906d5\";s:3:\"url\";s:107:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/melissa-a-day/\";s:4:\"path\";s:21:\"/about/melissa-a-day/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:56:\"Melissa A. Day | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Melissa A. Day Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law Of\";s:7:\"indexed\";b:0;}s:32:\"970801df24cd5ed5544abfaedcb1bf57\";a:9:{s:4:\"hash\";s:32:\"970801df24cd5ed5544abfaedcb1bf57\";s:3:\"url\";s:106:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/najee-walker/\";s:4:\"path\";s:20:\"/about/najee-walker/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:54:\"Najee Walker | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Najee Walker Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law Offi\";s:7:\"indexed\";b:0;}s:32:\"795142b1b0063359b2ebfbc599c73ed0\";a:9:{s:4:\"hash\";s:32:\"795142b1b0063359b2ebfbc599c73ed0\";s:3:\"url\";s:110:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/neil-a-diegelman/\";s:4:\"path\";s:24:\"/about/neil-a-diegelman/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:59:\"Neil A. Diegelman | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Neil A. Diegelman Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law\";s:7:\"indexed\";b:0;}s:32:\"776400f9695cbdb427c69c5212e8e06a\";a:9:{s:4:\"hash\";s:32:\"776400f9695cbdb427c69c5212e8e06a\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/paul-b-kornack/\";s:4:\"path\";s:22:\"/about/paul-b-kornack/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:58:\"Paul B. Kornacki | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Paul B. Kornacki Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law \";s:7:\"indexed\";b:0;}s:32:\"b16d49bad5497561e605a4a89ccb359c\";a:9:{s:4:\"hash\";s:32:\"b16d49bad5497561e605a4a89ccb359c\";s:3:\"url\";s:110:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/rebecca-brashear/\";s:4:\"path\";s:24:\"/about/rebecca-brashear/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:58:\"Rebecca Brashear | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Rebecca Brashear Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law \";s:7:\"indexed\";b:0;}s:32:\"a5aff10fb008ebd0fe9088c4bc32f093\";a:9:{s:4:\"hash\";s:32:\"a5aff10fb008ebd0fe9088c4bc32f093\";s:3:\"url\";s:110:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/shannan-m-mackey/\";s:4:\"path\";s:24:\"/about/shannan-m-mackey/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:59:\"Shannan M. Mackey | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Shannan M. Mackey Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law\";s:7:\"indexed\";b:0;}s:32:\"92646d28b5ed2b96558ba0b09d3207a3\";a:9:{s:4:\"hash\";s:32:\"92646d28b5ed2b96558ba0b09d3207a3\";s:3:\"url\";s:104:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/susan-eick/\";s:4:\"path\";s:18:\"/about/susan-eick/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:52:\"Susan Eick | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Susan Eick Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law Office\";s:7:\"indexed\";b:0;}s:32:\"fb8ecf90ec9f1130ac2d86da954f7735\";a:9:{s:4:\"hash\";s:32:\"fb8ecf90ec9f1130ac2d86da954f7735\";s:3:\"url\";s:107:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/teresa-cleary/\";s:4:\"path\";s:21:\"/about/teresa-cleary/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"Teresa Cleary | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Teresa Cleary Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law Off\";s:7:\"indexed\";b:0;}s:32:\"b5cb38046bde175e02c1f3f1e69de3d8\";a:9:{s:4:\"hash\";s:32:\"b5cb38046bde175e02c1f3f1e69de3d8\";s:3:\"url\";s:110:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/thomas-dickinson/\";s:4:\"path\";s:24:\"/about/thomas-dickinson/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:58:\"Thomas Dickinson | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Thomas Dickinson Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law \";s:7:\"indexed\";b:0;}s:32:\"04f5a48bc973ef5b0e23220c3c8b210d\";a:9:{s:4:\"hash\";s:32:\"04f5a48bc973ef5b0e23220c3c8b210d\";s:3:\"url\";s:109:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/vicki-l-buehler/\";s:4:\"path\";s:23:\"/about/vicki-l-buehler/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:58:\"Vicki L. Buehler | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Vicki L. Buehler Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law \";s:7:\"indexed\";b:0;}s:32:\"fa9e6c8e10f7c8c6d3b5fbdab1bb7963\";a:9:{s:4:\"hash\";s:32:\"fa9e6c8e10f7c8c6d3b5fbdab1bb7963\";s:3:\"url\";s:137:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/amherst-workers-compensation-defense-law-office-2/\";s:4:\"path\";s:51:\"/amherst-workers-compensation-defense-law-office-2/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:48:\"Amherst Workers\' Compensation Defense Law Office\";s:4:\"body\";s:100:\"Amherst Workers Compensation Defense Law Office Contact/Refer A Claim If You Are Tired Of Being Trea\";s:7:\"indexed\";b:0;}s:32:\"f715e07b14c17424f46a3854f39e5dfb\";a:9:{s:4:\"hash\";s:32:\"f715e07b14c17424f46a3854f39e5dfb\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/amherst-workers-compensation-defense-law-office/\";s:4:\"path\";s:49:\"/amherst-workers-compensation-defense-law-office/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:48:\"Amherst Workers\' Compensation Defense Law Office\";s:4:\"body\";s:100:\"Amherst Workers Compensation Defense Law Office Contact/Refer A Claim If You Are Tired Of Being Trea\";s:7:\"indexed\";b:0;}s:32:\"1be120cbdd911f9c53a50f453ef67f45\";a:9:{s:4:\"hash\";s:32:\"1be120cbdd911f9c53a50f453ef67f45\";s:3:\"url\";s:112:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/buehler-vicki-l/\";s:4:\"path\";s:26:\"/attorney/buehler-vicki-l/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:59:\"Buehler, Vicki L. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Vicki L. Buehler Contact Me: Practice Areas Current Employment Position Bar Admissions Professional \";s:7:\"indexed\";b:0;}s:32:\"992f65e2c5be59b198501770e7b91a28\";a:9:{s:4:\"hash\";s:32:\"992f65e2c5be59b198501770e7b91a28\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/christman-cassandra-e/\";s:4:\"path\";s:32:\"/attorney/christman-cassandra-e/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:65:\"Christman, Cassandra E. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Cassandra E. Christman Contact Me: Practice Areas Current Employment Position Bar Admissions Verdict\";s:7:\"indexed\";b:0;}s:32:\"53b3f34af3d6b0f9882be1556d6b564c\";a:9:{s:4:\"hash\";s:32:\"53b3f34af3d6b0f9882be1556d6b564c\";s:3:\"url\";s:112:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/cousins-james-b/\";s:4:\"path\";s:26:\"/attorney/cousins-james-b/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:59:\"Cousins, James B. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"James B. Cousins Contact Me: Practice Areas Current Employment Position Bar Admissions Professional \";s:7:\"indexed\";b:0;}s:32:\"22538e4ac842e68e524c9f83b10ca706\";a:9:{s:4:\"hash\";s:32:\"22538e4ac842e68e524c9f83b10ca706\";s:3:\"url\";s:111:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/daly-melanie-a/\";s:4:\"path\";s:25:\"/attorney/daly-melanie-a/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:58:\"Daly, Melanie A. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Melanie A. Daly Contact Me: Practice Areas Current Employment Position Bar Admissions Professional A\";s:7:\"indexed\";b:0;}s:32:\"92e31419525fa889365ad8f916e8c4f5\";a:9:{s:4:\"hash\";s:32:\"92e31419525fa889365ad8f916e8c4f5\";s:3:\"url\";s:110:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/day-melissa-a/\";s:4:\"path\";s:24:\"/attorney/day-melissa-a/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"Day, Melissa A. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Melissa A. Day Contact Me: Practice Areas Current Employment Position Bar Admissions Professional As\";s:7:\"indexed\";b:0;}s:32:\"3a04995fe09719c62c009ebd72a523d3\";a:9:{s:4:\"hash\";s:32:\"3a04995fe09719c62c009ebd72a523d3\";s:3:\"url\";s:113:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/degnan-kristen-b/\";s:4:\"path\";s:27:\"/attorney/degnan-kristen-b/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:60:\"Degnan, Kristen B. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Kristen B. Degnan Contact Me: Practice Areas Current Employment Position Bar Admissions Professional\";s:7:\"indexed\";b:0;}s:32:\"dcfd7169f7413a2ae02e9d99bdf2fce8\";a:9:{s:4:\"hash\";s:32:\"dcfd7169f7413a2ae02e9d99bdf2fce8\";s:3:\"url\";s:113:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/diegelman-neil-a/\";s:4:\"path\";s:27:\"/attorney/diegelman-neil-a/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:60:\"Diegelman, Neil A. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Neil A. Diegelman Contact Me: Practice Areas Education Bar Admissions Current Employment Position Ho\";s:7:\"indexed\";b:0;}s:32:\"dd1c422e200b41a8a10de29b43edefb5\";a:9:{s:4:\"hash\";s:32:\"dd1c422e200b41a8a10de29b43edefb5\";s:3:\"url\";s:109:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/frances-mary/\";s:4:\"path\";s:23:\"/attorney/frances-mary/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"Frances, Mary | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Mary Frances Contact Me: Practice Areas Current Employment Position Bar Admissions Education Tenure \";s:7:\"indexed\";b:0;}s:32:\"aac45c19fdea0c2db8ba9f4b223fb2f8\";a:9:{s:4:\"hash\";s:32:\"aac45c19fdea0c2db8ba9f4b223fb2f8\";s:3:\"url\";s:109:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/gould-andrew/\";s:4:\"path\";s:23:\"/attorney/gould-andrew/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"Gould, Andrew | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Andrew Gould Contact Me: Practice Areas Current Employment Position Bar Admissions Professional Asso\";s:7:\"indexed\";b:0;}s:32:\"bc7e4b16f6c7e450b465d4f7f153ec03\";a:9:{s:4:\"hash\";s:32:\"bc7e4b16f6c7e450b465d4f7f153ec03\";s:3:\"url\";s:109:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/gray-katrina/\";s:4:\"path\";s:23:\"/attorney/gray-katrina/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"Gray, Katrina | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Katrina Gray Contact Me: Practice Areas Current Employment Position Bar Admissions Verdicts/Settleme\";s:7:\"indexed\";b:0;}s:32:\"288a514e62bf83f1635e7084bd65d821\";a:9:{s:4:\"hash\";s:32:\"288a514e62bf83f1635e7084bd65d821\";s:3:\"url\";s:112:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/hatten-alexis-d/\";s:4:\"path\";s:26:\"/attorney/hatten-alexis-d/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:59:\"Hatten, Alexis D. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Alexis D. Hatten Contact Me: Practice Areas Current Employment Position Bar Admissions Education Ten\";s:7:\"indexed\";b:0;}s:32:\"00a4839ea91dc539d07dfab77c5aad09\";a:9:{s:4:\"hash\";s:32:\"00a4839ea91dc539d07dfab77c5aad09\";s:3:\"url\";s:113:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/kornacki-paul-b-/\";s:4:\"path\";s:27:\"/attorney/kornacki-paul-b-/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:59:\"Kornacki, Paul B. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Paul B. Kornacki Contact Me: Practice Areas Current Employment Position Bar Admissions Professional \";s:7:\"indexed\";b:0;}s:32:\"d8b168c63e7bed3285877bd461f49cda\";a:9:{s:4:\"hash\";s:32:\"d8b168c63e7bed3285877bd461f49cda\";s:3:\"url\";s:112:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/kornacki-paul-b/\";s:4:\"path\";s:26:\"/attorney/kornacki-paul-b/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:59:\"Kornacki, Paul B. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Paul B. Kornacki Contact Me: Practice Areas Current Employment Position Bar Admissions Professional \";s:7:\"indexed\";b:0;}s:32:\"3f086c519f6c22d3fb409d13132c6af6\";a:9:{s:4:\"hash\";s:32:\"3f086c519f6c22d3fb409d13132c6af6\";s:3:\"url\";s:110:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/kunz-kelsey-x/\";s:4:\"path\";s:24:\"/attorney/kunz-kelsey-x/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"Kunz, Kelsey X. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Kelsey X. Kunz Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law Of\";s:7:\"indexed\";b:0;}s:32:\"984f2546e51d74a2d7eaeaff063632cc\";a:9:{s:4:\"hash\";s:32:\"984f2546e51d74a2d7eaeaff063632cc\";s:3:\"url\";s:115:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/machelor-kristin-m/\";s:4:\"path\";s:29:\"/attorney/machelor-kristin-m/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:62:\"Machelor, Kristin M. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Kristin M. Machelor Contact Me: Practice Areas Current Employment Position Bar Admissions Profession\";s:7:\"indexed\";b:0;}s:32:\"acc608768a8da03931216819649001d9\";a:9:{s:4:\"hash\";s:32:\"acc608768a8da03931216819649001d9\";s:3:\"url\";s:114:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/mackey-shannan-m-/\";s:4:\"path\";s:28:\"/attorney/mackey-shannan-m-/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:60:\"Mackey, Shannan M. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Shannan M. Mackey Contact Me: Practice Areas Current Employment Position Bar Admissions Professional\";s:7:\"indexed\";b:0;}s:32:\"52e87d1ee820a8bf99b6c980c5d1aafb\";a:9:{s:4:\"hash\";s:32:\"52e87d1ee820a8bf99b6c980c5d1aafb\";s:3:\"url\";s:113:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/mackey-shannan-m/\";s:4:\"path\";s:27:\"/attorney/mackey-shannan-m/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:60:\"Mackey, Shannan M. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Shannan M. Mackey Contact Me: Practice Areas Current Employment Position Bar Admissions Professional\";s:7:\"indexed\";b:0;}s:32:\"2fa4b48d7cfae8ba3fc201b3874f0105\";a:9:{s:4:\"hash\";s:32:\"2fa4b48d7cfae8ba3fc201b3874f0105\";s:3:\"url\";s:111:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/prince-brian-k/\";s:4:\"path\";s:25:\"/attorney/prince-brian-k/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:58:\"Prince, Brian K. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Brian K. Prince Contact Me: Practice Areas Current Employment Position Bar Admissions Professional A\";s:7:\"indexed\";b:0;}s:32:\"dc6277790aa369b66b1055c8e7c6e5f5\";a:9:{s:4:\"hash\";s:32:\"dc6277790aa369b66b1055c8e7c6e5f5\";s:3:\"url\";s:114:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/shannon-brendan-t/\";s:4:\"path\";s:28:\"/attorney/shannon-brendan-t/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:61:\"Shannon, Brendan T. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Brendan T. Shannon Contact Me: Practice Areas Current Employment Position Bar Admissions Professiona\";s:7:\"indexed\";b:0;}s:32:\"a07903fea1a3842c6e064f3b1a77166a\";a:9:{s:4:\"hash\";s:32:\"a07903fea1a3842c6e064f3b1a77166a\";s:3:\"url\";s:92:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/\";s:4:\"path\";s:6:\"/blog/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:56:\"Blog | The Law Offices of Melissa A. Day, PLLC | Amherst\";s:4:\"body\";s:100:\"The Law Offices of Melissa A. Day, PLLC Legal Blog Using the Contralateral Limb as a Baseline for Ca\";s:7:\"indexed\";b:0;}s:32:\"cc63bcc5c913a6bfd312ac658b71b0f9\";a:9:{s:4:\"hash\";s:32:\"cc63bcc5c913a6bfd312ac658b71b0f9\";s:3:\"url\";s:102:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/?et_blog=/\";s:4:\"path\";s:6:\"/blog/\";s:5:\"query\";s:8:\"et_blog=\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:56:\"Blog | The Law Offices of Melissa A. Day, PLLC | Amherst\";s:4:\"body\";s:100:\"The Law Offices of Melissa A. Day, PLLC Legal Blog Using the Contralateral Limb as a Baseline for Ca\";s:7:\"indexed\";b:0;}s:32:\"ee0afb0adf5bf8a09600c96531cdb889\";a:9:{s:4:\"hash\";s:32:\"ee0afb0adf5bf8a09600c96531cdb889\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/\";s:4:\"path\";s:11:\"/blog/2013/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:46:\"2013 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Year: 2013 DID YOU KNOW? THE BOARD HAS RETIRED THE CONCEPT OF THE COMPENSABLE RETIREMENT. The Death \";s:7:\"indexed\";b:0;}s:32:\"d660962ea7ecaf6db8d79bf9b13a0c1e\";a:9:{s:4:\"hash\";s:32:\"d660962ea7ecaf6db8d79bf9b13a0c1e\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/01/\";s:4:\"path\";s:14:\"/blog/2013/01/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"January, 2013 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: January 2013 DID YOU KNOW? IMPLEMENTATION OF THE CHANGES TO THE MTG HAS BEEN DELAYED UNTIL MA\";s:7:\"indexed\";b:0;}s:32:\"0a1c7a6661f84ac7eeb71604ff2c68e0\";a:9:{s:4:\"hash\";s:32:\"0a1c7a6661f84ac7eeb71604ff2c68e0\";s:3:\"url\";s:213:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\";s:4:\"path\";s:127:\"/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:158:\"DID YOU KNOW? FACEBOOK PAGES ARE NOT CONSIDERED \"SURVEILLANCE\" THAT HAS TO BE DISCLOSED BEFORE A CLAIMANT TESTIFIES. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"DID YOU KNOW? FACEBOOK PAGES ARE NOT CONSIDERED SURVEILLANCE THAT HAS TO BE DISCLOSED BEFORE A CLAIM\";s:7:\"indexed\";b:0;}s:32:\"67d088aae89f0298b9c3f0432a53f9eb\";a:9:{s:4:\"hash\";s:32:\"67d088aae89f0298b9c3f0432a53f9eb\";s:3:\"url\";s:190:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/01/did-you-know-implementation-of-the-changes-to-the-mtg-has-been-delayed-until-march-1-2013/\";s:4:\"path\";s:104:\"/blog/2013/01/did-you-know-implementation-of-the-changes-to-the-mtg-has-been-delayed-until-march-1-2013/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:134:\"DID YOU KNOW? IMPLEMENTATION OF THE CHANGES TO THE MTG HAS BEEN DELAYED UNTIL MARCH 1, 2013. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"DID YOU KNOW? IMPLEMENTATION OF THE CHANGES TO THE MTG HAS BEEN DELAYED UNTIL MARCH 1, 2013. Recent \";s:7:\"indexed\";b:0;}s:32:\"c2fd1a3a0013ca87d41e40230354508b\";a:9:{s:4:\"hash\";s:32:\"c2fd1a3a0013ca87d41e40230354508b\";s:3:\"url\";s:176:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/01/did-you-know-wcl-%c2%a7153v-benefits-may-now-be-capped-under-wcl-%c2%a7153w/\";s:4:\"path\";s:90:\"/blog/2013/01/did-you-know-wcl-%c2%a7153v-benefits-may-now-be-capped-under-wcl-%c2%a7153w/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:118:\"DID YOU KNOW? WCL §15(3)(v) BENEFITS MAY NOW BE CAPPED UNDER WCL §15(3)(w) | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"DID YOU KNOW? WCL 15(3)(v) BENEFITS MAY NOW BE CAPPED UNDER WCL 15(3)(w) Recent Posts Archives Categ\";s:7:\"indexed\";b:0;}s:32:\"8041cba71a7179d96e17601fd8f6650c\";a:9:{s:4:\"hash\";s:32:\"8041cba71a7179d96e17601fd8f6650c\";s:3:\"url\";s:113:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/01/did-you-know/\";s:4:\"path\";s:27:\"/blog/2013/01/did-you-know/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"DID YOU KNOW? | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"DID YOU KNOW? Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired Of Being Treat\";s:7:\"indexed\";b:0;}s:32:\"0e86cec42b24862ce47aef6a151f67d5\";a:9:{s:4:\"hash\";s:32:\"0e86cec42b24862ce47aef6a151f67d5\";s:3:\"url\";s:176:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/01/why-why-do-judges-even-set-deadlines-for-the-submission-of-memoranda-of-law/\";s:4:\"path\";s:90:\"/blog/2013/01/why-why-do-judges-even-set-deadlines-for-the-submission-of-memoranda-of-law/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:120:\"WHY? Why do judge\'s even set deadlines for the submission of Memoranda of Law? | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"WHY? Why do judges even set deadlines for the submission of Memoranda of Law? Recent Posts Archives \";s:7:\"indexed\";b:0;}s:32:\"452813a9b01fac1bffe2ddd6549494d3\";a:9:{s:4:\"hash\";s:32:\"452813a9b01fac1bffe2ddd6549494d3\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/02/\";s:4:\"path\";s:14:\"/blog/2013/02/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:56:\"February, 2013 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: February 2013 DID YOU KNOW? The Federal Government Is Not Subject to the Jurisdiction of the \";s:7:\"indexed\";b:0;}s:32:\"1310ac90c00574788e480de88e4a2ac0\";a:9:{s:4:\"hash\";s:32:\"1310ac90c00574788e480de88e4a2ac0\";s:3:\"url\";s:228:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/02/did-you-know-governor-cuomos-budget-proposes-to-eliminate-mandatory-deposits-into-the-atf-and-to-close-the-fund-to-new-deposits/\";s:4:\"path\";s:142:\"/blog/2013/02/did-you-know-governor-cuomos-budget-proposes-to-eliminate-mandatory-deposits-into-the-atf-and-to-close-the-fund-to-new-deposits/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:172:\"DID YOU KNOW? GOVERNOR CUOMO\'S BUDGET PROPOSES TO ELIMINATE MANDATORY DEPOSITS INTO THE ATF AND TO CLOSE THE FUND TO NEW DEPOSITS? | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"DID YOU KNOW? GOVERNOR CUOMOS BUDGET PROPOSES TO ELIMINATE MANDATORY DEPOSITS INTO THE ATF AND TO CL\";s:7:\"indexed\";b:0;}s:32:\"f4db72956401025bdaca7f130d3e45c1\";a:9:{s:4:\"hash\";s:32:\"f4db72956401025bdaca7f130d3e45c1\";s:3:\"url\";s:250:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\";s:4:\"path\";s:164:\"/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:194:\"DID YOU KNOW? The Federal Government Is Not Subject to the Jurisdiction of the NY Workers\' Compensation Board on a Theory of General/Special Employment? | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"DID YOU KNOW? The Federal Government Is Not Subject to the Jurisdiction of the NY Workers Compensati\";s:7:\"indexed\";b:0;}s:32:\"817cd9c2ab849f9bf95dfa7c8a792abd\";a:9:{s:4:\"hash\";s:32:\"817cd9c2ab849f9bf95dfa7c8a792abd\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/03/\";s:4:\"path\";s:14:\"/blog/2013/03/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:53:\"March, 2013 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: March 2013 DID YOU KNOW? A chiropractic variance request based on alleged functional improvem\";s:7:\"indexed\";b:0;}s:32:\"71ae24583d00e84d804ac70d47d5cd8e\";a:9:{s:4:\"hash\";s:32:\"71ae24583d00e84d804ac70d47d5cd8e\";s:3:\"url\";s:300:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\";s:4:\"path\";s:214:\"/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:260:\"DID YOU KNOW? A chiropractic variance request based on alleged functional improvements and expected continued improvements may not be granted if the chiropractor continues to find that the claimant is totally disabled. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"DID YOU KNOW? A chiropractic variance request based on alleged functional improvements and expected \";s:7:\"indexed\";b:0;}s:32:\"914887cab91d1572dee5a3cb75920e79\";a:9:{s:4:\"hash\";s:32:\"914887cab91d1572dee5a3cb75920e79\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/\";s:4:\"path\";s:14:\"/blog/2013/04/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:53:\"April, 2013 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: April 2013 DID YOU KNOW? A bill being considered by the NY State Legislature which would crea\";s:7:\"indexed\";b:0;}s:32:\"4bf9f2a4cdfa453e41bac44d81a4dadd\";a:9:{s:4:\"hash\";s:32:\"4bf9f2a4cdfa453e41bac44d81a4dadd\";s:3:\"url\";s:132:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-25-a-is-going-away/\";s:4:\"path\";s:46:\"/blog/2013/04/did-you-know-25-a-is-going-away/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:75:\"DID YOU KNOW? 25-A IS GOING AWAY. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"DID YOU KNOW? 25-A IS GOING AWAY. Recent Posts Archives Categories Contact/Refer A Claim If You Are \";s:7:\"indexed\";b:0;}s:32:\"b961881efe29d6f2b1a00e479ae59c82\";a:9:{s:4:\"hash\";s:32:\"b961881efe29d6f2b1a00e479ae59c82\";s:3:\"url\";s:285:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\";s:4:\"path\";s:199:\"/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:228:\"DID YOU KNOW? A bill being considered by the NY State Legislature which would create a presumption of permanent total disability for claimants who are found eligible for social security? | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"DID YOU KNOW? A bill being considered by the NY State Legislature which would create a presumption o\";s:7:\"indexed\";b:0;}s:32:\"b31fae55f5ac90ea115ccbba2cb37bb0\";a:9:{s:4:\"hash\";s:32:\"b31fae55f5ac90ea115ccbba2cb37bb0\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/07/\";s:4:\"path\";s:14:\"/blog/2013/07/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:52:\"July, 2013 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: July 2013 DID YOU KNOW? THE THIRD DEPARTMENT HOLDS THAT MEDICAL TREATMENT WHICH IS NOT SPECIF\";s:7:\"indexed\";b:0;}s:32:\"52b7635c96129dbc7a1840081788b864\";a:9:{s:4:\"hash\";s:32:\"52b7635c96129dbc7a1840081788b864\";s:3:\"url\";s:210:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\";s:4:\"path\";s:124:\"/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:153:\"DID YOU KNOW? AN EMPLOYER OR CARRIER MAY BE ABLE TO REOPEN A PPD CLAIM ON THE ISSUE OF LABOR MARKET ATTACHMENT. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"DID YOU KNOW? AN EMPLOYER OR CARRIER MAY BE ABLE TO REOPEN A PPD CLAIM ON THE ISSUE OF LABOR MARKET \";s:7:\"indexed\";b:0;}s:32:\"e1724247b704d367dd7cfc27f2987aa9\";a:9:{s:4:\"hash\";s:32:\"e1724247b704d367dd7cfc27f2987aa9\";s:3:\"url\";s:250:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\";s:4:\"path\";s:164:\"/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:193:\"DID YOU KNOW? THE THIRD DEPARTMENT HOLDS THAT MEDICAL TREATMENT WHICH IS NOT SPECIFICALLY INCLUDED IN THE MTG IS PRESUMPTIVELY NOT MEDICALLY NECESSARY. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"DID YOU KNOW? THE THIRD DEPARTMENT HOLDS THAT MEDICAL TREATMENT WHICH IS NOT SPECIFICALLY INCLUDED I\";s:7:\"indexed\";b:0;}s:32:\"e405bfd346b30a75a4f9201f4e8e0836\";a:9:{s:4:\"hash\";s:32:\"e405bfd346b30a75a4f9201f4e8e0836\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/08/\";s:4:\"path\";s:14:\"/blog/2013/08/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:54:\"August, 2013 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: August 2013 DID YOU KNOW? The 2nd Circuit certified a question to the NY Court of Appeals on \";s:7:\"indexed\";b:0;}s:32:\"3e1f873e6332566254df59aecdfa7b81\";a:9:{s:4:\"hash\";s:32:\"3e1f873e6332566254df59aecdfa7b81\";s:3:\"url\";s:217:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/08/did-you-know-the-2nd-circuit-certified-a-question-to-the-ny-court-of-appeals-on-the-exclusivity-provision-of-the-wcl/\";s:4:\"path\";s:131:\"/blog/2013/08/did-you-know-the-2nd-circuit-certified-a-question-to-the-ny-court-of-appeals-on-the-exclusivity-provision-of-the-wcl/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:118:\"DID YOU KNOW? The 2nd Circuit certified a question to the NY Court of Appeals on the exclusivity provision of the WCL?\";s:4:\"body\";s:100:\"DID YOU KNOW? The 2nd Circuit certified a question to the NY Court of Appeals on the exclusivity pro\";s:7:\"indexed\";b:0;}s:32:\"75573e975a19e7012bd1b085f21104ba\";a:9:{s:4:\"hash\";s:32:\"75573e975a19e7012bd1b085f21104ba\";s:3:\"url\";s:264:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\";s:4:\"path\";s:178:\"/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:207:\"DID YOU KNOW? Twenty Insurance Carriers Have Filed an Action Seeking to Obtain a Declaration that the Elimination of The Fund for Reopened Cases Is Unconstitutional. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"DID YOU KNOW? Twenty Insurance Carriers Have Filed an Action Seeking to Obtain a Declaration that th\";s:7:\"indexed\";b:0;}s:32:\"2c97e5dfc1a5a545bc223519445c6860\";a:9:{s:4:\"hash\";s:32:\"2c97e5dfc1a5a545bc223519445c6860\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/09/\";s:4:\"path\";s:14:\"/blog/2013/09/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"September, 2013 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: September 2013 BOARD PROCESS RE-ENGINEERING (BPR)  NY WORKERS COMPENSATION FORUM MEMBERS SHOU\";s:7:\"indexed\";b:0;}s:32:\"d09b3b8e11d3d01823f584cb61af2956\";a:9:{s:4:\"hash\";s:32:\"d09b3b8e11d3d01823f584cb61af2956\";s:3:\"url\";s:206:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\";s:4:\"path\";s:120:\"/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:156:\"BOARD PROCESS RE-ENGINEERING (\"BPR\") – NY WORKERS\' COMPENSATION FORUM MEMBERS SHOULD BE INCLUDED IN THE DIALOGUE | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"BOARD PROCESS RE-ENGINEERING (BPR)  NY WORKERS COMPENSATION FORUM MEMBERS SHOULD BE INCLUDED IN THE \";s:7:\"indexed\";b:0;}s:32:\"b6b76a2b7850e8750c08fd7d0aa3fc89\";a:9:{s:4:\"hash\";s:32:\"b6b76a2b7850e8750c08fd7d0aa3fc89\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/10/\";s:4:\"path\";s:14:\"/blog/2013/10/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"October, 2013 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: October 2013 LESS THAN TWELVE WEEKS REMAINING FOR WCL 25-a! Because Subject # 046-630 Contain\";s:7:\"indexed\";b:0;}s:32:\"3038d01ccef9ae349361a96df440dc69\";a:9:{s:4:\"hash\";s:32:\"3038d01ccef9ae349361a96df440dc69\";s:3:\"url\";s:296:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\";s:4:\"path\";s:210:\"/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:274:\"LESS THAN TWELVE WEEKS REMAINING FOR WCL §25-a! Because Subject # 046-630 Contains Stricter Requirements for Reopening a Claim on the Issue of §25-a, Prudent Carriers and Employers May Want to Refer Applications to Defense Counsel | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"LESS THAN TWELVE WEEKS REMAINING FOR WCL 25-a! Because Subject # 046-630 Contains Stricter Requireme\";s:7:\"indexed\";b:0;}s:32:\"67884c469c65aca3aec52198b6525e65\";a:9:{s:4:\"hash\";s:32:\"67884c469c65aca3aec52198b6525e65\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/11/\";s:4:\"path\";s:14:\"/blog/2013/11/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:56:\"November, 2013 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: November 2013 A Blind Leap across an Inscrutable Chasm  Arbitrary and Capricious Loss of Wage\";s:7:\"indexed\";b:0;}s:32:\"031f029795fe70aa9b038c13abe1b63f\";a:9:{s:4:\"hash\";s:32:\"031f029795fe70aa9b038c13abe1b63f\";s:3:\"url\";s:216:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\";s:4:\"path\";s:130:\"/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:163:\"A Blind Leap across an Inscrutable Chasm – Arbitrary and Capricious Loss of Wage Earning Capacity (LWEC) Determinations | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"A Blind Leap across an Inscrutable Chasm  Arbitrary and Capricious Loss of Wage Earning Capacity (LW\";s:7:\"indexed\";b:0;}s:32:\"d7633add2f0915b2e4d872e235667c19\";a:9:{s:4:\"hash\";s:32:\"d7633add2f0915b2e4d872e235667c19\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/12/\";s:4:\"path\";s:14:\"/blog/2013/12/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:56:\"December, 2013 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: December 2013 DID YOU KNOW? THE BOARD HAS RETIRED THE CONCEPT OF THE COMPENSABLE RETIREMENT. \";s:7:\"indexed\";b:0;}s:32:\"74c9480f7290d8cbc7d6a8f71015315a\";a:9:{s:4:\"hash\";s:32:\"74c9480f7290d8cbc7d6a8f71015315a\";s:3:\"url\";s:257:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/12/did-you-know-the-board-has-retired-the-concept-of-the-compensable-retirement-the-death-knell-of-the-trifecta-zamora-and-the-so-called-compensable-retirement/\";s:4:\"path\";s:171:\"/blog/2013/12/did-you-know-the-board-has-retired-the-concept-of-the-compensable-retirement-the-death-knell-of-the-trifecta-zamora-and-the-so-called-compensable-retirement/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:203:\"DID YOU KNOW? THE BOARD HAS RETIRED THE CONCEPT OF THE COMPENSABLE RETIREMENT. The Death Knell of the Trifecta: Zamora and the so-called \"Compensable Retirement\" | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"DID YOU KNOW? THE BOARD HAS RETIRED THE CONCEPT OF THE COMPENSABLE RETIREMENT. The Death Knell of th\";s:7:\"indexed\";b:0;}s:32:\"e518c26478b1511accf0c3e4efb67750\";a:9:{s:4:\"hash\";s:32:\"e518c26478b1511accf0c3e4efb67750\";s:3:\"url\";s:104:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/page/2/\";s:4:\"path\";s:18:\"/blog/2013/page/2/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"2013 | The Law Offices of Melissa A. Day, PLLC - Part 2\";s:4:\"body\";s:100:\"Year: 2013 DID YOU KNOW? A chiropractic variance request based on alleged functional improvements an\";s:7:\"indexed\";b:0;}s:32:\"b4661160fb1f80a5d1c3ff5aa92c5803\";a:9:{s:4:\"hash\";s:32:\"b4661160fb1f80a5d1c3ff5aa92c5803\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/\";s:4:\"path\";s:11:\"/blog/2014/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:46:\"2014 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Year: 2014 Non Acute Pain Medical Treatment Guidelines Offer a Framework for Controlling Costs Assoc\";s:7:\"indexed\";b:0;}s:32:\"2ea8392efe3c4eea4a25d62fb423a284\";a:9:{s:4:\"hash\";s:32:\"2ea8392efe3c4eea4a25d62fb423a284\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/09/\";s:4:\"path\";s:14:\"/blog/2014/09/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"September, 2014 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: September 2014 Navigating the Low Back Medical Treatment Guidelines for Chiropractic Care Rec\";s:7:\"indexed\";b:0;}s:32:\"8894e051279250ef97dad83e116cbae4\";a:9:{s:4:\"hash\";s:32:\"8894e051279250ef97dad83e116cbae4\";s:3:\"url\";s:175:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\";s:4:\"path\";s:89:\"/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:116:\"Navigating the Low Back Medical Treatment Guidelines for Chiropractic Care | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Navigating the Low Back Medical Treatment Guidelines for Chiropractic Care Recent Posts Archives Cat\";s:7:\"indexed\";b:0;}s:32:\"1e47cd075c3e0ce7be9eb7d4662fc012\";a:9:{s:4:\"hash\";s:32:\"1e47cd075c3e0ce7be9eb7d4662fc012\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/\";s:4:\"path\";s:14:\"/blog/2014/11/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:56:\"November, 2014 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: November 2014 Non Acute Pain Medical Treatment Guidelines Offer a Framework for Controlling C\";s:7:\"indexed\";b:0;}s:32:\"d273f3703b64dbd0eb48d2742a4a4a19\";a:9:{s:4:\"hash\";s:32:\"d273f3703b64dbd0eb48d2742a4a4a19\";s:3:\"url\";s:298:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\";s:4:\"path\";s:212:\"/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:242:\"In Kigin v. WCB, the Court of Appeals upholds the presumption that treatment outside the MTGs is not medically necessary and the attending physician has the burden of proof of the need for a variance. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"In Kigin v. WCB, the Court of Appeals upholds the presumption that treatment outside the MTGs is not\";s:7:\"indexed\";b:0;}s:32:\"1cb6919d9c20ae8988e2a0ed431c4ec0\";a:9:{s:4:\"hash\";s:32:\"1cb6919d9c20ae8988e2a0ed431c4ec0\";s:3:\"url\";s:246:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\";s:4:\"path\";s:160:\"/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:188:\"Non Acute Pain Medical Treatment Guidelines Offer a Framework for Controlling Costs Associated with Chronic Pain Management, Especially Opioid Use | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Non Acute Pain Medical Treatment Guidelines Offer a Framework for Controlling Costs Associated with \";s:7:\"indexed\";b:0;}s:32:\"862777ce1eb6af65c1839ce8884316d3\";a:9:{s:4:\"hash\";s:32:\"862777ce1eb6af65c1839ce8884316d3\";s:3:\"url\";s:189:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\";s:4:\"path\";s:103:\"/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:133:\"The Law Offices of Melissa A. Day, PLLC Won a Finding of a 0% Loss of Wage Earning Capacity | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"The Law Offices of Melissa A. Day, PLLC Won a Finding of a 0% Loss of Wage Earning Capacity Recent P\";s:7:\"indexed\";b:0;}s:32:\"535ed6caa8bcb5ceaff04d62c3a608ce\";a:9:{s:4:\"hash\";s:32:\"535ed6caa8bcb5ceaff04d62c3a608ce\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/\";s:4:\"path\";s:11:\"/blog/2015/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:46:\"2015 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Year: 2015 NY Allows Employer to An Employee Cannot be Vocational and Functional Challenge Yourself \";s:7:\"indexed\";b:0;}s:32:\"285fe9e09f46096e6ef06531f5d2b943\";a:9:{s:4:\"hash\";s:32:\"285fe9e09f46096e6ef06531f5d2b943\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/02/\";s:4:\"path\";s:14:\"/blog/2015/02/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:56:\"February, 2015 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: February 2015 An Underwriting Nightmare Come True Hearing Loss becomes Hearing Win Recent Pos\";s:7:\"indexed\";b:0;}s:32:\"9b5688347f579721f312111e6ca38583\";a:9:{s:4:\"hash\";s:32:\"9b5688347f579721f312111e6ca38583\";s:3:\"url\";s:136:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/02/an-underwriting-nightmare-come-true/\";s:4:\"path\";s:50:\"/blog/2015/02/an-underwriting-nightmare-come-true/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:77:\"An Underwriting Nightmare Come True | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"An Underwriting Nightmare Come True Recent Posts Archives Categories Contact/Refer A Claim If You Ar\";s:7:\"indexed\";b:0;}s:32:\"a7ae8a88d267234dd01e4b872d3aeaef\";a:9:{s:4:\"hash\";s:32:\"a7ae8a88d267234dd01e4b872d3aeaef\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/02/hearing-loss-becomes-hearing-win/\";s:4:\"path\";s:47:\"/blog/2015/02/hearing-loss-becomes-hearing-win/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:74:\"Hearing Loss becomes Hearing Win | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Hearing Loss becomes Hearing Win Recent Posts Archives Categories Contact/Refer A Claim If You Are T\";s:7:\"indexed\";b:0;}s:32:\"760663127be28eb0ba6f86dee87e367b\";a:9:{s:4:\"hash\";s:32:\"760663127be28eb0ba6f86dee87e367b\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/06/\";s:4:\"path\";s:14:\"/blog/2015/06/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:52:\"June, 2015 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: June 2015 IMEs : The Next Summer Movie Blockbuster or Just Another IME Gone Bust? WCBs Regula\";s:7:\"indexed\";b:0;}s:32:\"0739ca4254362dddf6b5e1d641063232\";a:9:{s:4:\"hash\";s:32:\"0739ca4254362dddf6b5e1d641063232\";s:3:\"url\";s:169:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/06/imes-the-next-summer-movie-blockbuster-or-just-another-ime-gone-bust/\";s:4:\"path\";s:83:\"/blog/2015/06/imes-the-next-summer-movie-blockbuster-or-just-another-ime-gone-bust/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:113:\"IMEs : The Next Summer Movie Blockbuster or Just Another IME Gone Bust? | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"IMEs : The Next Summer Movie Blockbuster or Just Another IME Gone Bust? Recent Posts Archives Catego\";s:7:\"indexed\";b:0;}s:32:\"daa2424d391b659563d2ebb0273fca88\";a:9:{s:4:\"hash\";s:32:\"daa2424d391b659563d2ebb0273fca88\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/06/wcbs-regulatory-agenda-may-include/\";s:4:\"path\";s:49:\"/blog/2015/06/wcbs-regulatory-agenda-may-include/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:80:\"WCB\'s Regulatory Agenda May Include… | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"WCBs Regulatory Agenda May Include Recent Posts Archives Categories Contact/Refer A Claim If You Are\";s:7:\"indexed\";b:0;}s:32:\"d65061947c1be4a3f86bb90bba165863\";a:9:{s:4:\"hash\";s:32:\"d65061947c1be4a3f86bb90bba165863\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/07/\";s:4:\"path\";s:14:\"/blog/2015/07/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:52:\"July, 2015 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: July 2015 Liability for Treatment by Social Workers MDs, JDs AND TTDs HOT DOGS OR HAMBURGERS?\";s:7:\"indexed\";b:0;}s:32:\"3cefb1cdf23bd6a8bdf6d6bfcc7b89ee\";a:9:{s:4:\"hash\";s:32:\"3cefb1cdf23bd6a8bdf6d6bfcc7b89ee\";s:3:\"url\";s:123:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/07/hot-dogs-or-hamburgers/\";s:4:\"path\";s:37:\"/blog/2015/07/hot-dogs-or-hamburgers/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:65:\"HOT DOGS OR HAMBURGERS? | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"HOT DOGS OR HAMBURGERS? Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired Of B\";s:7:\"indexed\";b:0;}s:32:\"f73f57f32117418eafc22ebcb594cf4f\";a:9:{s:4:\"hash\";s:32:\"f73f57f32117418eafc22ebcb594cf4f\";s:3:\"url\";s:142:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/07/liability-for-treatment-by-social-workers/\";s:4:\"path\";s:56:\"/blog/2015/07/liability-for-treatment-by-social-workers/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:83:\"Liability for Treatment by Social Workers | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Liability for Treatment by Social Workers Recent Posts Archives Categories Contact/Refer A Claim If \";s:7:\"indexed\";b:0;}s:32:\"b51a633f33c416dd64b7513de1276d4e\";a:9:{s:4:\"hash\";s:32:\"b51a633f33c416dd64b7513de1276d4e\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/07/mds-jds-and-ttds/\";s:4:\"path\";s:31:\"/blog/2015/07/mds-jds-and-ttds/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:59:\"MDs, JDs AND TTDs | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"MDs, JDs AND TTDs Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired Of Being T\";s:7:\"indexed\";b:0;}s:32:\"f1960c3fc9db1ad2a785cd3ba1a40958\";a:9:{s:4:\"hash\";s:32:\"f1960c3fc9db1ad2a785cd3ba1a40958\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/\";s:4:\"path\";s:14:\"/blog/2015/08/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:54:\"August, 2015 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: August 2015 Claims Handling Performance Answers to the Quiz Average Wages? Non-Acute Pain Tre\";s:7:\"indexed\";b:0;}s:32:\"c18ed05974689f595eb68c9159d55c5d\";a:9:{s:4:\"hash\";s:32:\"c18ed05974689f595eb68c9159d55c5d\";s:3:\"url\";s:120:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/answers-to-the-quiz/\";s:4:\"path\";s:34:\"/blog/2015/08/answers-to-the-quiz/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:61:\"Answers to the Quiz | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Answers to the Quiz Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired Of Being\";s:7:\"indexed\";b:0;}s:32:\"99eddd642518dc35b175832c164cd8ff\";a:9:{s:4:\"hash\";s:32:\"99eddd642518dc35b175832c164cd8ff\";s:3:\"url\";s:114:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/average-wages/\";s:4:\"path\";s:28:\"/blog/2015/08/average-wages/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:56:\"Average Wages? | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Average Wages? Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired Of Being Trea\";s:7:\"indexed\";b:0;}s:32:\"5074528fbb0cc47dd02f7e02ba6acd88\";a:9:{s:4:\"hash\";s:32:\"5074528fbb0cc47dd02f7e02ba6acd88\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/claims-handling-performance/\";s:4:\"path\";s:42:\"/blog/2015/08/claims-handling-performance/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:69:\"Claims Handling Performance | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Claims Handling Performance Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired \";s:7:\"indexed\";b:0;}s:32:\"b5408a1110eaf0097a8f07a251ac69e4\";a:9:{s:4:\"hash\";s:32:\"b5408a1110eaf0097a8f07a251ac69e4\";s:3:\"url\";s:136:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/non-acute-pain-treatment-guidelines/\";s:4:\"path\";s:50:\"/blog/2015/08/non-acute-pain-treatment-guidelines/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:77:\"Non-Acute Pain Treatment Guidelines | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Non-Acute Pain Treatment Guidelines Recent Posts Archives Categories Contact/Refer A Claim If You Ar\";s:7:\"indexed\";b:0;}s:32:\"3a2729f86b3a0753ea313e1a9cb4fedd\";a:9:{s:4:\"hash\";s:32:\"3a2729f86b3a0753ea313e1a9cb4fedd\";s:3:\"url\";s:140:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/test-your-ny-workers-compensation-chops/\";s:4:\"path\";s:54:\"/blog/2015/08/test-your-ny-workers-compensation-chops/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:82:\"Test Your NY Workers\' Compensation Chops | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Test Your NY Workers Compensation Chops Recent Posts Archives Categories Contact/Refer A Claim If Yo\";s:7:\"indexed\";b:0;}s:32:\"d28e004ef60799cb8426f3c52e3f88a0\";a:9:{s:4:\"hash\";s:32:\"d28e004ef60799cb8426f3c52e3f88a0\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/09/\";s:4:\"path\";s:14:\"/blog/2015/09/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:57:\"September, 2015 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: September 2015 Challenge Yourself Labor Market Attachment Refresher Summer is Almost Over! Re\";s:7:\"indexed\";b:0;}s:32:\"c5979c175df999e2ac7f7c48884e4638\";a:9:{s:4:\"hash\";s:32:\"c5979c175df999e2ac7f7c48884e4638\";s:3:\"url\";s:119:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/09/challenge-yourself/\";s:4:\"path\";s:33:\"/blog/2015/09/challenge-yourself/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:60:\"Challenge Yourself | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Challenge Yourself Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired Of Being \";s:7:\"indexed\";b:0;}s:32:\"f0fbae4294f52f79eae5c347bb2b2773\";a:9:{s:4:\"hash\";s:32:\"f0fbae4294f52f79eae5c347bb2b2773\";s:3:\"url\";s:134:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/09/labor-market-attachment-refresher/\";s:4:\"path\";s:48:\"/blog/2015/09/labor-market-attachment-refresher/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:75:\"Labor Market Attachment Refresher | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Labor Market Attachment Refresher Recent Posts Archives Categories Contact/Refer A Claim If You Are \";s:7:\"indexed\";b:0;}s:32:\"d1a252349779dc7a0cb77c6439f4805c\";a:9:{s:4:\"hash\";s:32:\"d1a252349779dc7a0cb77c6439f4805c\";s:3:\"url\";s:122:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/09/summer-is-almost-over/\";s:4:\"path\";s:36:\"/blog/2015/09/summer-is-almost-over/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:64:\"Summer is Almost Over! | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Summer is Almost Over! Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired Of Be\";s:7:\"indexed\";b:0;}s:32:\"2f71b84a3a1b39533b2a6ed9e9016236\";a:9:{s:4:\"hash\";s:32:\"2f71b84a3a1b39533b2a6ed9e9016236\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/10/\";s:4:\"path\";s:14:\"/blog/2015/10/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"October, 2015 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: October 2015 Vocational and Functional Recent Posts Archives Categories Contact/Refer A Claim\";s:7:\"indexed\";b:0;}s:32:\"129084c22487b37d6b3239197a2bb43d\";a:9:{s:4:\"hash\";s:32:\"129084c22487b37d6b3239197a2bb43d\";s:3:\"url\";s:126:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/10/vocational-and-functional/\";s:4:\"path\";s:40:\"/blog/2015/10/vocational-and-functional/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:70:\"Vocational and Functional… | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Vocational and Functional Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired Of\";s:7:\"indexed\";b:0;}s:32:\"a4039c945e36cc0ff4960d6b8817984f\";a:9:{s:4:\"hash\";s:32:\"a4039c945e36cc0ff4960d6b8817984f\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/11/\";s:4:\"path\";s:14:\"/blog/2015/11/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:56:\"November, 2015 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: November 2015 NY Allows Employer to An Employee Cannot be Recent Posts Archives Categories Co\";s:7:\"indexed\";b:0;}s:32:\"8e7c6800388e670595db5e4c241bad0f\";a:9:{s:4:\"hash\";s:32:\"8e7c6800388e670595db5e4c241bad0f\";s:3:\"url\";s:122:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/11/an-employee-cannot-be/\";s:4:\"path\";s:36:\"/blog/2015/11/an-employee-cannot-be/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:66:\"An Employee Cannot be… | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"An Employee Cannot be Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired Of Bei\";s:7:\"indexed\";b:0;}s:32:\"6537a379a7976048933b1b9d04ed6005\";a:9:{s:4:\"hash\";s:32:\"6537a379a7976048933b1b9d04ed6005\";s:3:\"url\";s:122:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/11/ny-allows-employer-to/\";s:4:\"path\";s:36:\"/blog/2015/11/ny-allows-employer-to/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:66:\"NY Allows Employer to… | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"NY Allows Employer to Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired Of Bei\";s:7:\"indexed\";b:0;}s:32:\"86cc1126aa4131d67f6bb33a270ddf5b\";a:9:{s:4:\"hash\";s:32:\"86cc1126aa4131d67f6bb33a270ddf5b\";s:3:\"url\";s:104:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/page/2/\";s:4:\"path\";s:18:\"/blog/2015/page/2/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"2015 | The Law Offices of Melissa A. Day, PLLC - Part 2\";s:4:\"body\";s:100:\"Year: 2015 Test Your NY Workers Compensation Chops Liability for Treatment by Social Workers MDs, JD\";s:7:\"indexed\";b:0;}s:32:\"3afccbafedfbb11297a98788fc6a0b4a\";a:9:{s:4:\"hash\";s:32:\"3afccbafedfbb11297a98788fc6a0b4a\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2016/\";s:4:\"path\";s:11:\"/blog/2016/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:46:\"2016 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Year: 2016 Its the Holiday Season! HAPPY HALLO-WEAN TO WEAN, OR NOT TO WEAN, THAT IS THE QUESTION. R\";s:7:\"indexed\";b:0;}s:32:\"e2148ea3eb18104edd51c85d5307990d\";a:9:{s:4:\"hash\";s:32:\"e2148ea3eb18104edd51c85d5307990d\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2016/04/\";s:4:\"path\";s:14:\"/blog/2016/04/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:53:\"April, 2016 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: April 2016 Reopened Cases Recent Posts Archives Categories Contact/Refer A Claim If You Are T\";s:7:\"indexed\";b:0;}s:32:\"e16be94073cbb721989cef3a25cc5695\";a:9:{s:4:\"hash\";s:32:\"e16be94073cbb721989cef3a25cc5695\";s:3:\"url\";s:115:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2016/04/reopened-cases/\";s:4:\"path\";s:29:\"/blog/2016/04/reopened-cases/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:56:\"Reopened Cases | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Reopened Cases Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired Of Being Trea\";s:7:\"indexed\";b:0;}s:32:\"917f8963a18e5750447c88bda7b4b516\";a:9:{s:4:\"hash\";s:32:\"917f8963a18e5750447c88bda7b4b516\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2016/10/\";s:4:\"path\";s:14:\"/blog/2016/10/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"October, 2016 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: October 2016 HAPPY HALLO-WEAN TO WEAN, OR NOT TO WEAN, THAT IS THE QUESTION. Recent Posts Arc\";s:7:\"indexed\";b:0;}s:32:\"5fe39b81f3db42c1c174b3786fc63b73\";a:9:{s:4:\"hash\";s:32:\"5fe39b81f3db42c1c174b3786fc63b73\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2016/10/happy-hallo-wean/\";s:4:\"path\";s:31:\"/blog/2016/10/happy-hallo-wean/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:58:\"HAPPY HALLO-WEAN | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"HAPPY HALLO-WEAN Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired Of Being Tr\";s:7:\"indexed\";b:0;}s:32:\"1524ec1ca53b65ca1e3ede150420bbcb\";a:9:{s:4:\"hash\";s:32:\"1524ec1ca53b65ca1e3ede150420bbcb\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2016/10/to-wean-or-not-to-wean-that-is-the-question/\";s:4:\"path\";s:58:\"/blog/2016/10/to-wean-or-not-to-wean-that-is-the-question/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:88:\"TO WEAN, OR NOT TO WEAN, THAT IS THE QUESTION. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"TO WEAN, OR NOT TO WEAN, THAT IS THE QUESTION. Recent Posts Archives Categories Contact/Refer A Clai\";s:7:\"indexed\";b:0;}s:32:\"8b9bc24cf362f8cd8e4d2528b898a440\";a:9:{s:4:\"hash\";s:32:\"8b9bc24cf362f8cd8e4d2528b898a440\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2016/12/\";s:4:\"path\";s:14:\"/blog/2016/12/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:56:\"December, 2016 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: December 2016 Its the Holiday Season! Recent Posts Archives Categories Contact/Refer A Claim \";s:7:\"indexed\";b:0;}s:32:\"3239ce070a9dc89fa115dd9683bd87de\";a:9:{s:4:\"hash\";s:32:\"3239ce070a9dc89fa115dd9683bd87de\";s:3:\"url\";s:123:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2016/12/its-the-holiday-season/\";s:4:\"path\";s:37:\"/blog/2016/12/its-the-holiday-season/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:66:\"It\'s the Holiday Season! | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Its the Holiday Season! Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired Of B\";s:7:\"indexed\";b:0;}s:32:\"0f7f5d65a4995b546a3785f5d329bf56\";a:9:{s:4:\"hash\";s:32:\"0f7f5d65a4995b546a3785f5d329bf56\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/\";s:4:\"path\";s:11:\"/blog/2017/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:46:\"2017 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Year: 2017 Court of Appeals Upholds 2013 Amendment to Section 25-a  Marking the End for The Fund for\";s:7:\"indexed\";b:0;}s:32:\"5d258b4697e0b97ee2cc1e96d6432260\";a:9:{s:4:\"hash\";s:32:\"5d258b4697e0b97ee2cc1e96d6432260\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/01/\";s:4:\"path\";s:14:\"/blog/2017/01/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"January, 2017 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: January 2017 Back to the Future: The Return of WCL 25(2-b): Fact-Finding without Judges and L\";s:7:\"indexed\";b:0;}s:32:\"1466626cc5e261d50f2fff442bde60c0\";a:9:{s:4:\"hash\";s:32:\"1466626cc5e261d50f2fff442bde60c0\";s:3:\"url\";s:207:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/01/back-to-the-future-the-return-of-wcl-252-b-fact-finding-without-judges-and-legal-reasoning-without-lawyers/\";s:4:\"path\";s:121:\"/blog/2017/01/back-to-the-future-the-return-of-wcl-252-b-fact-finding-without-judges-and-legal-reasoning-without-lawyers/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:153:\"Back to the Future:  The Return of WCL 25(2-b): Fact-Finding without Judges and Legal Reasoning without Lawyers | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Back to the Future: The Return of WCL 25(2-b): Fact-Finding without Judges and Legal Reasoning witho\";s:7:\"indexed\";b:0;}s:32:\"3c0291bcc119e8716692a19dbac94cc2\";a:9:{s:4:\"hash\";s:32:\"3c0291bcc119e8716692a19dbac94cc2\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/02/\";s:4:\"path\";s:14:\"/blog/2017/02/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:56:\"February, 2017 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: February 2017 Permanent Partial Disability Safety NetWhat to Expect from WCL 35 Recent Posts \";s:7:\"indexed\";b:0;}s:32:\"cf3a2fd93e9e932a50a512feec353cff\";a:9:{s:4:\"hash\";s:32:\"cf3a2fd93e9e932a50a512feec353cff\";s:3:\"url\";s:172:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/02/permanent-partial-disability-safety-netwhat-to-expect-from-wcl-%c2%a735/\";s:4:\"path\";s:86:\"/blog/2017/02/permanent-partial-disability-safety-netwhat-to-expect-from-wcl-%c2%a735/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:114:\"Permanent Partial Disability \"Safety Net\"…What to Expect from WCL §35 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Permanent Partial Disability Safety NetWhat to Expect from WCL 35 Recent Posts Archives Categories C\";s:7:\"indexed\";b:0;}s:32:\"654eacb4260d69a4d9c8dfcdcc3deaa6\";a:9:{s:4:\"hash\";s:32:\"654eacb4260d69a4d9c8dfcdcc3deaa6\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/06/\";s:4:\"path\";s:14:\"/blog/2017/06/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:52:\"June, 2017 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: June 2017 Board Finds that Medical Treatment Guidelines Apply to Out of State Claimants Recen\";s:7:\"indexed\";b:0;}s:32:\"aa6e20a455ca1580b915127ae58b630b\";a:9:{s:4:\"hash\";s:32:\"aa6e20a455ca1580b915127ae58b630b\";s:3:\"url\";s:178:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\";s:4:\"path\";s:92:\"/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:119:\"Board Finds that Medical Treatment Guidelines Apply to Out of State Claimants | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Board Finds that Medical Treatment Guidelines Apply to Out of State Claimants Recent Posts Archives \";s:7:\"indexed\";b:0;}s:32:\"b78f75dc8955c04f260451de560d3159\";a:9:{s:4:\"hash\";s:32:\"b78f75dc8955c04f260451de560d3159\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/10/\";s:4:\"path\";s:14:\"/blog/2017/10/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"October, 2017 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: October 2017 Court of Appeals Upholds 2013 Amendment to Section 25-a  Marking the End for The\";s:7:\"indexed\";b:0;}s:32:\"bc00785650921a4c87404c0753d23d90\";a:9:{s:4:\"hash\";s:32:\"bc00785650921a4c87404c0753d23d90\";s:3:\"url\";s:204:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/10/court-of-appeals-upholds-2013-amendment-to-section-25-a-marking-the-end-for-the-fund-for-reopened-cases/\";s:4:\"path\";s:118:\"/blog/2017/10/court-of-appeals-upholds-2013-amendment-to-section-25-a-marking-the-end-for-the-fund-for-reopened-cases/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:149:\"Court of Appeals Upholds 2013 Amendment to Section 25-a – Marking the End for The Fund for Reopened Cases | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Court of Appeals Upholds 2013 Amendment to Section 25-a  Marking the End for The Fund for Reopened C\";s:7:\"indexed\";b:0;}s:32:\"65099dcbf0e268dcf6615058e68b6815\";a:9:{s:4:\"hash\";s:32:\"65099dcbf0e268dcf6615058e68b6815\";s:3:\"url\";s:254:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\";s:4:\"path\";s:168:\"/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:200:\"How to Avoid Bad Luck in Your Comp Claims This Friday the 13th – Some Basic Time Constraints for New York State Workers\' Compensation Claims to Keep in Mind | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"How to Avoid Bad Luck in Your Comp Claims This Friday the 13th  Some Basic Time Constraints for New \";s:7:\"indexed\";b:0;}s:32:\"1bf4876adb9f24be5175e2ca8e36a66c\";a:9:{s:4:\"hash\";s:32:\"1bf4876adb9f24be5175e2ca8e36a66c\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/\";s:4:\"path\";s:11:\"/blog/2018/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:46:\"2018 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Year: 2018 Appeals Inventory and Forms Review of Workers Compensation Board Schedule Loss of Use Fre\";s:7:\"indexed\";b:0;}s:32:\"7cb7f734fc32a454ced5180562e20e06\";a:9:{s:4:\"hash\";s:32:\"7cb7f734fc32a454ced5180562e20e06\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/03/\";s:4:\"path\";s:14:\"/blog/2018/03/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:53:\"March, 2018 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: March 2018 Schedule Loss of Use Awards  Grrrrrrrrr Ricky Costner Jr., 18 Year Old Slain by a \";s:7:\"indexed\";b:0;}s:32:\"b4cb5d8ec1b5bb1fcac6b53c0634feeb\";a:9:{s:4:\"hash\";s:32:\"b4cb5d8ec1b5bb1fcac6b53c0634feeb\";s:3:\"url\";s:189:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/03/ricky-costner-jr-18-year-old-slain-by-a-deranged-co-worker-honored-by-family-and-friends/\";s:4:\"path\";s:103:\"/blog/2018/03/ricky-costner-jr-18-year-old-slain-by-a-deranged-co-worker-honored-by-family-and-friends/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:133:\"Ricky Costner Jr., 18 Year Old Slain by a Deranged Co-Worker, Honored by Family and Friends | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Ricky Costner Jr., 18 Year Old Slain by a Deranged Co-Worker, Honored by Family and Friends Recent P\";s:7:\"indexed\";b:0;}s:32:\"796777eab6ab6d6773cf145664aa9a91\";a:9:{s:4:\"hash\";s:32:\"796777eab6ab6d6773cf145664aa9a91\";s:3:\"url\";s:139:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\";s:4:\"path\";s:53:\"/blog/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:84:\"Schedule Loss of Use Awards – Grrrrrrrrr | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Schedule Loss of Use Awards  Grrrrrrrrr Recent Posts Archives Categories Contact/Refer A Claim If Yo\";s:7:\"indexed\";b:0;}s:32:\"f8cc19241976472332230324f6d02505\";a:9:{s:4:\"hash\";s:32:\"f8cc19241976472332230324f6d02505\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/05/\";s:4:\"path\";s:14:\"/blog/2018/05/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:51:\"May, 2018 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: May 2018 Proposed Changes Submitted Seeking to Expand the Boards Legal Internship Program You\";s:7:\"indexed\";b:0;}s:32:\"f716f98183fe5148323e8e502ff5b7a5\";a:9:{s:4:\"hash\";s:32:\"f716f98183fe5148323e8e502ff5b7a5\";s:3:\"url\";s:145:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/05/new-slu-guidelines-presentation-by-the-board/\";s:4:\"path\";s:59:\"/blog/2018/05/new-slu-guidelines-presentation-by-the-board/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:86:\"New SLU Guidelines Presentation by the Board | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"New SLU Guidelines Presentation by the Board Recent Posts Archives Categories Contact/Refer A Claim \";s:7:\"indexed\";b:0;}s:32:\"4a505fcee302c2eee58ae651e19ea807\";a:9:{s:4:\"hash\";s:32:\"4a505fcee302c2eee58ae651e19ea807\";s:3:\"url\";s:181:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/05/proposed-changes-submitted-seeking-to-expand-the-boards-legal-internship-program/\";s:4:\"path\";s:95:\"/blog/2018/05/proposed-changes-submitted-seeking-to-expand-the-boards-legal-internship-program/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:123:\"Proposed Changes Submitted Seeking to Expand the Board\'s Legal Internship Program | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Proposed Changes Submitted Seeking to Expand the Boards Legal Internship Program Recent Posts Archiv\";s:7:\"indexed\";b:0;}s:32:\"764607d80cf3a410c9346fb402462eac\";a:9:{s:4:\"hash\";s:32:\"764607d80cf3a410c9346fb402462eac\";s:3:\"url\";s:212:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/05/united-states-supreme-court-is-considering-a-petition-for-a-writ-of-certiorari-of-the-american-economy-decision/\";s:4:\"path\";s:126:\"/blog/2018/05/united-states-supreme-court-is-considering-a-petition-for-a-writ-of-certiorari-of-the-american-economy-decision/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:153:\"United States Supreme Court is Considering a Petition for a Writ of Certiorari Of the American Economy Decision | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"United States Supreme Court is Considering a Petition for a Writ of Certiorari Of the American Econo\";s:7:\"indexed\";b:0;}s:32:\"ab7f26de1635e455e470278eb00e07b6\";a:9:{s:4:\"hash\";s:32:\"ab7f26de1635e455e470278eb00e07b6\";s:3:\"url\";s:120:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/05/youre-claiming-what/\";s:4:\"path\";s:34:\"/blog/2018/05/youre-claiming-what/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:65:\"You\'re claiming what?!? | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Youre claiming what?!? Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired Of Be\";s:7:\"indexed\";b:0;}s:32:\"e9835aeda7812e08995b21c35ef1fc4a\";a:9:{s:4:\"hash\";s:32:\"e9835aeda7812e08995b21c35ef1fc4a\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/12/\";s:4:\"path\";s:14:\"/blog/2018/12/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:56:\"December, 2018 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: December 2018 Appeals Inventory and Forms Review of Workers Compensation Board Schedule Loss \";s:7:\"indexed\";b:0;}s:32:\"33f5d199730ed0daa2bd6f7ef88fc0bc\";a:9:{s:4:\"hash\";s:32:\"33f5d199730ed0daa2bd6f7ef88fc0bc\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/12/appeals-inventory-and-forms/\";s:4:\"path\";s:42:\"/blog/2018/12/appeals-inventory-and-forms/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:69:\"Appeals Inventory and Forms | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Appeals Inventory and Forms Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired \";s:7:\"indexed\";b:0;}s:32:\"a32764fb2a9e5048c9fec8939237156f\";a:9:{s:4:\"hash\";s:32:\"a32764fb2a9e5048c9fec8939237156f\";s:3:\"url\";s:210:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\";s:4:\"path\";s:124:\"/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:151:\"Review of Workers Compensation Board Schedule Loss of Use Frequently Asked Questions and New Permanency Forms | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Review of Workers Compensation Board Schedule Loss of Use Frequently Asked Questions and New Permane\";s:7:\"indexed\";b:0;}s:32:\"530f72d4e3d655d2654da73c54b2bf67\";a:9:{s:4:\"hash\";s:32:\"530f72d4e3d655d2654da73c54b2bf67\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2019/\";s:4:\"path\";s:11:\"/blog/2019/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:46:\"2019 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Year: 2019 Melissa A. Day, Esq. invited to join Buffalo Business First Leadership Trust Claimants co\";s:7:\"indexed\";b:0;}s:32:\"38f440ec12a9cd611f3bb53351c3f898\";a:9:{s:4:\"hash\";s:32:\"38f440ec12a9cd611f3bb53351c3f898\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2019/05/\";s:4:\"path\";s:14:\"/blog/2019/05/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:51:\"May, 2019 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: May 2019 Claimants conviction of unlawful manufacture of methamphetamine does not amount to a\";s:7:\"indexed\";b:0;}s:32:\"59aa97f8f75e573c51beca320ad0b815\";a:9:{s:4:\"hash\";s:32:\"59aa97f8f75e573c51beca320ad0b815\";s:3:\"url\";s:119:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2019/05/a-new-quest-begins/\";s:4:\"path\";s:33:\"/blog/2019/05/a-new-quest-begins/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:60:\"A New Quest Begins | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"A New Quest Begins Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired Of Being \";s:7:\"indexed\";b:0;}s:32:\"6f0d2b7f0b0836fb83bc2521a474c3cb\";a:9:{s:4:\"hash\";s:32:\"6f0d2b7f0b0836fb83bc2521a474c3cb\";s:3:\"url\";s:184:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/\";s:4:\"path\";s:98:\"/blog/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:125:\"Amendments to 2017 not retroactive if PPD claimant was not attached to labor market | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Amendments to 2017 not retroactive if PPD claimant was not attached to labor market Recent Posts Arc\";s:7:\"indexed\";b:0;}s:32:\"2a43f185bb1cfecea28a7414b483396e\";a:9:{s:4:\"hash\";s:32:\"2a43f185bb1cfecea28a7414b483396e\";s:3:\"url\";s:211:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2019/05/claimants-conviction-of-unlawful-manufacture-of-methamphetamine-does-not-amount-to-a-violation-under-wcl-114-a/\";s:4:\"path\";s:125:\"/blog/2019/05/claimants-conviction-of-unlawful-manufacture-of-methamphetamine-does-not-amount-to-a-violation-under-wcl-114-a/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:154:\"Claimant\'s conviction of unlawful manufacture of methamphetamine does not amount to a violation under WCL 114-a. | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Claimants conviction of unlawful manufacture of methamphetamine does not amount to a violation under\";s:7:\"indexed\";b:0;}s:32:\"f9633f0fae860a3762e6ccbb34a1a51e\";a:9:{s:4:\"hash\";s:32:\"f9633f0fae860a3762e6ccbb34a1a51e\";s:3:\"url\";s:118:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2019/05/lwec-incontinence/\";s:4:\"path\";s:32:\"/blog/2019/05/lwec-incontinence/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:61:\"LWEC & Incontinence | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"LWEC &amp; Incontinence Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired Of B\";s:7:\"indexed\";b:0;}s:32:\"0c0f531f8e6b9becb352da2c1e945181\";a:9:{s:4:\"hash\";s:32:\"0c0f531f8e6b9becb352da2c1e945181\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2019/07/\";s:4:\"path\";s:14:\"/blog/2019/07/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:52:\"July, 2019 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: July 2019 Melissa A. Day, Esq. invited to join Buffalo Business First Leadership Trust Recent\";s:7:\"indexed\";b:0;}s:32:\"64ca23be1461329ac521ef079b8d2c76\";a:9:{s:4:\"hash\";s:32:\"64ca23be1461329ac521ef079b8d2c76\";s:3:\"url\";s:174:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2019/07/melissa-a-day-esq-invited-to-join-buffalo-business-first-leadership-trust/\";s:4:\"path\";s:88:\"/blog/2019/07/melissa-a-day-esq-invited-to-join-buffalo-business-first-leadership-trust/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:118:\"Melissa A. Day, Esq. invited to join Buffalo Business First Leadership Trust | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Melissa A. Day, Esq. invited to join Buffalo Business First Leadership Trust Recent Posts Archives C\";s:7:\"indexed\";b:0;}s:32:\"dbd3dfd5caee076f8ee9b76fb7e79e44\";a:9:{s:4:\"hash\";s:32:\"dbd3dfd5caee076f8ee9b76fb7e79e44\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2020/\";s:4:\"path\";s:11:\"/blog/2020/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:46:\"2020 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Year: 2020 Successful Disallowance! Another Win for The Law Offices of Melissa A. Day! A Win for The\";s:7:\"indexed\";b:0;}s:32:\"01566ed8cf77ead0624195e93bb07411\";a:9:{s:4:\"hash\";s:32:\"01566ed8cf77ead0624195e93bb07411\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2020/06/\";s:4:\"path\";s:14:\"/blog/2020/06/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:52:\"June, 2020 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: June 2020 Proposed Changes to 300.22 and 300.23  Overpayments Recent Posts Archives Categorie\";s:7:\"indexed\";b:0;}s:32:\"53bf9cc231f1a041ef61c05e4a19c616\";a:9:{s:4:\"hash\";s:32:\"53bf9cc231f1a041ef61c05e4a19c616\";s:3:\"url\";s:163:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2020/06/proposed-changes-to-%c2%a7%c2%a7300-22-and-300-23-overpayments/\";s:4:\"path\";s:77:\"/blog/2020/06/proposed-changes-to-%c2%a7%c2%a7300-22-and-300-23-overpayments/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:100:\"Proposed Changes to §§300.22 and 300.23 – Overpayments | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Proposed Changes to 300.22 and 300.23  Overpayments Recent Posts Archives Categories Contact/Refer A\";s:7:\"indexed\";b:0;}s:32:\"f3ed334d2cefc7cfa4e9838ab17abacf\";a:9:{s:4:\"hash\";s:32:\"f3ed334d2cefc7cfa4e9838ab17abacf\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2020/07/\";s:4:\"path\";s:14:\"/blog/2020/07/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:52:\"July, 2020 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: July 2020 Successful Disallowance! Another Win for The Law Offices of Melissa A. Day! A Win f\";s:7:\"indexed\";b:0;}s:32:\"6b2be5ae250a54ad62ac0871bedc0486\";a:9:{s:4:\"hash\";s:32:\"6b2be5ae250a54ad62ac0871bedc0486\";s:3:\"url\";s:143:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2020/07/a-win-for-the-law-offices-of-melissa-a-day/\";s:4:\"path\";s:57:\"/blog/2020/07/a-win-for-the-law-offices-of-melissa-a-day/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:85:\"A Win for The Law Offices of Melissa A. Day | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"A Win for The Law Offices of Melissa A. Day Recent Posts Archives Categories Contact/Refer A Claim I\";s:7:\"indexed\";b:0;}s:32:\"6324f12ca242f45ea5839912170e1749\";a:9:{s:4:\"hash\";s:32:\"6324f12ca242f45ea5839912170e1749\";s:3:\"url\";s:149:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2020/07/another-win-for-the-law-offices-of-melissa-a-day/\";s:4:\"path\";s:63:\"/blog/2020/07/another-win-for-the-law-offices-of-melissa-a-day/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:92:\"Another Win for The Law Offices of Melissa A. Day! | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Another Win for The Law Offices of Melissa A. Day! Recent Posts Archives Categories Contact/Refer A \";s:7:\"indexed\";b:0;}s:32:\"18f672e85d330b80b275b7dc40d45700\";a:9:{s:4:\"hash\";s:32:\"18f672e85d330b80b275b7dc40d45700\";s:3:\"url\";s:124:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2020/07/successful-disallowance/\";s:4:\"path\";s:38:\"/blog/2020/07/successful-disallowance/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:66:\"Successful Disallowance! | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Successful Disallowance! Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired Of \";s:7:\"indexed\";b:0;}s:32:\"d1d5dbafed2be6cfbd70bd3c277bee5e\";a:9:{s:4:\"hash\";s:32:\"d1d5dbafed2be6cfbd70bd3c277bee5e\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/\";s:4:\"path\";s:11:\"/blog/2021/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:46:\"2021 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Year: 2021 Using the Contralateral Limb as a Baseline for Calculating Schedule Loss of Use Surveilla\";s:7:\"indexed\";b:0;}s:32:\"f09ba048074f2f435c0c4e5de7298581\";a:9:{s:4:\"hash\";s:32:\"f09ba048074f2f435c0c4e5de7298581\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/\";s:4:\"path\";s:14:\"/blog/2021/01/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"January, 2021 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: January 2021 Fraud in the Family  Claimant Doing Other Work while Receiving Comp Benefits How\";s:7:\"indexed\";b:0;}s:32:\"276ab71146c570154ff6c4fabbf51d4d\";a:9:{s:4:\"hash\";s:32:\"276ab71146c570154ff6c4fabbf51d4d\";s:3:\"url\";s:181:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\";s:4:\"path\";s:95:\"/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:126:\"Doubling Down – 2 Hearing Loss Claims for the Same Claimant Denied on the Same Day | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Doubling Down  2 Hearing Loss Claims for the Same Claimant Denied on the Same Day Recent Posts Archi\";s:7:\"indexed\";b:0;}s:32:\"e84bc2290d5553ad7eb8709c034eb816\";a:9:{s:4:\"hash\";s:32:\"e84bc2290d5553ad7eb8709c034eb816\";s:3:\"url\";s:176:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\";s:4:\"path\";s:90:\"/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:121:\"Fraud in the Family – Claimant Doing Other Work while Receiving Comp Benefits | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Fraud in the Family  Claimant Doing Other Work while Receiving Comp Benefits Recent Posts Archives C\";s:7:\"indexed\";b:0;}s:32:\"bf12f9f65ae7ec95c40f6aa54e84049e\";a:9:{s:4:\"hash\";s:32:\"bf12f9f65ae7ec95c40f6aa54e84049e\";s:3:\"url\";s:170:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/how-change-in-conditions-for-classified-claimants-changed-drastically/\";s:4:\"path\";s:84:\"/blog/2021/01/how-change-in-conditions-for-classified-claimants-changed-drastically/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:111:\"How Change in Conditions for Classified Claimants Changed Drastically | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"How Change in Conditions for Classified Claimants Changed Drastically Recent Posts Archives Categori\";s:7:\"indexed\";b:0;}s:32:\"e058238ea8444a1c0eeab27579cd78d2\";a:9:{s:4:\"hash\";s:32:\"e058238ea8444a1c0eeab27579cd78d2\";s:3:\"url\";s:128:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/success-with-wcl-section-18/\";s:4:\"path\";s:42:\"/blog/2021/01/success-with-wcl-section-18/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:69:\"Success with WCL Section 18 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Success with WCL Section 18 Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired \";s:7:\"indexed\";b:0;}s:32:\"a365d4afc71b746384da39ecc2983567\";a:9:{s:4:\"hash\";s:32:\"a365d4afc71b746384da39ecc2983567\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/02/\";s:4:\"path\";s:14:\"/blog/2021/02/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:56:\"February, 2021 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: February 2021 Occupational Disease Claims after Matter of Pinnacle Industries II, LLC (2019 N\";s:7:\"indexed\";b:0;}s:32:\"adc0ad783698e0d533c3adbef0cf655f\";a:9:{s:4:\"hash\";s:32:\"adc0ad783698e0d533c3adbef0cf655f\";s:3:\"url\";s:135:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/02/independent-contractor-or-employee/\";s:4:\"path\";s:49:\"/blog/2021/02/independent-contractor-or-employee/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:76:\"Independent Contractor or Employee | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Independent Contractor or Employee Recent Posts Archives Categories Contact/Refer A Claim If You Are\";s:7:\"indexed\";b:0;}s:32:\"1e35d72c5abeba0ee4894573dd10c51e\";a:9:{s:4:\"hash\";s:32:\"1e35d72c5abeba0ee4894573dd10c51e\";s:3:\"url\";s:164:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/02/no-error-of-law-or-fact-in-an-application-for-full-board-review/\";s:4:\"path\";s:78:\"/blog/2021/02/no-error-of-law-or-fact-in-an-application-for-full-board-review/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:105:\"No Error of Law or Fact In An Application For Full Board Review | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"No Error of Law or Fact In An Application For Full Board Review Recent Posts Archives Categories Con\";s:7:\"indexed\";b:0;}s:32:\"8dcd14184972da5250db9b8b6878215a\";a:9:{s:4:\"hash\";s:32:\"8dcd14184972da5250db9b8b6878215a\";s:3:\"url\";s:177:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/\";s:4:\"path\";s:91:\"/blog/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:118:\"No Further Causally Related Disability Due to Intervening Unrelated Accident | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"No Further Causally Related Disability Due to Intervening Unrelated Accident Recent Posts Archives C\";s:7:\"indexed\";b:0;}s:32:\"556d30924e0521d019530a01b122d638\";a:9:{s:4:\"hash\";s:32:\"556d30924e0521d019530a01b122d638\";s:3:\"url\";s:197:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/02/occupational-disease-claims-after-matter-of-pinnacle-industries-ii-llc-2019-ny-wrk-comp-g2020587/\";s:4:\"path\";s:111:\"/blog/2021/02/occupational-disease-claims-after-matter-of-pinnacle-industries-ii-llc-2019-ny-wrk-comp-g2020587/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:141:\"Occupational Disease Claims after Matter of Pinnacle Industries II, LLC (2019 NY Wrk Comp G2020587) | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Occupational Disease Claims after Matter of Pinnacle Industries II, LLC (2019 NY Wrk Comp G2020587) \";s:7:\"indexed\";b:0;}s:32:\"a00a6bb792e03ca2c2a8820f5c503995\";a:9:{s:4:\"hash\";s:32:\"a00a6bb792e03ca2c2a8820f5c503995\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/03/\";s:4:\"path\";s:14:\"/blog/2021/03/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:53:\"March, 2021 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: March 2021 When Do Work From Home Accidents Occur in the Scope and Course of Employment? Thou\";s:7:\"indexed\";b:0;}s:32:\"db960ac7788d9cbd1b794724e8b271fa\";a:9:{s:4:\"hash\";s:32:\"db960ac7788d9cbd1b794724e8b271fa\";s:3:\"url\";s:146:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/03/genduso-and-total-joint-replacement-schedules/\";s:4:\"path\";s:60:\"/blog/2021/03/genduso-and-total-joint-replacement-schedules/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:87:\"Genduso and Total Joint Replacement Schedules | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Genduso and Total Joint Replacement Schedules Recent Posts Archives Categories Contact/Refer A Claim\";s:7:\"indexed\";b:0;}s:32:\"c3858356cac4cf74681a6b983da37988\";a:9:{s:4:\"hash\";s:32:\"c3858356cac4cf74681a6b983da37988\";s:3:\"url\";s:158:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/03/thoughts-on-thinking-a-strange-title-about-practicing-law/\";s:4:\"path\";s:72:\"/blog/2021/03/thoughts-on-thinking-a-strange-title-about-practicing-law/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:101:\"Thoughts on Thinking:  A Strange Title About Practicing Law | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Thoughts on Thinking: A Strange Title About Practicing Law Recent Posts Archives Categories Contact/\";s:7:\"indexed\";b:0;}s:32:\"f63c54f4046b4793532fa6e11ee3c2fa\";a:9:{s:4:\"hash\";s:32:\"f63c54f4046b4793532fa6e11ee3c2fa\";s:3:\"url\";s:177:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\";s:4:\"path\";s:91:\"/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:119:\"When Do Work From Home Accidents Occur in the Scope and Course of Employment? | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"When Do Work From Home Accidents Occur in the Scope and Course of Employment? Recent Posts Archives \";s:7:\"indexed\";b:0;}s:32:\"86fd9b96f566d7925a4063cacb9b6932\";a:9:{s:4:\"hash\";s:32:\"86fd9b96f566d7925a4063cacb9b6932\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/04/\";s:4:\"path\";s:14:\"/blog/2021/04/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:53:\"April, 2021 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: April 2021 Social Media and Fraud  Youd Be Surprised What People Post! Never Give In! Disallo\";s:7:\"indexed\";b:0;}s:32:\"d0752eb388939813a2c254d955be8c16\";a:9:{s:4:\"hash\";s:32:\"d0752eb388939813a2c254d955be8c16\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/04/an-interesting-ime-development/\";s:4:\"path\";s:45:\"/blog/2021/04/an-interesting-ime-development/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:74:\"An \"Interesting\" IME Development | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"An Interesting IME Development Recent Posts Archives Categories Contact/Refer A Claim If You Are Tir\";s:7:\"indexed\";b:0;}s:32:\"d0b81e4f99d35a55b55c080adec9aebe\";a:9:{s:4:\"hash\";s:32:\"d0b81e4f99d35a55b55c080adec9aebe\";s:3:\"url\";s:131:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/04/never-give-in-disallowance-win/\";s:4:\"path\";s:45:\"/blog/2021/04/never-give-in-disallowance-win/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:74:\"Never Give In! Disallowance Win! | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Never Give In! Disallowance Win! Recent Posts Archives Categories Contact/Refer A Claim If You Are T\";s:7:\"indexed\";b:0;}s:32:\"956fea5ea27234121a95ee3a4127b45e\";a:9:{s:4:\"hash\";s:32:\"956fea5ea27234121a95ee3a4127b45e\";s:3:\"url\";s:172:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/04/section-44-not-even-a-portion-of-liability-for-the-occupational-disease/\";s:4:\"path\";s:86:\"/blog/2021/04/section-44-not-even-a-portion-of-liability-for-the-occupational-disease/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:114:\"Section 44: Not Even a Portion of Liability For The Occupational Disease | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Section 44: Not Even a Portion of Liability For The Occupational Disease Recent Posts Archives Categ\";s:7:\"indexed\";b:0;}s:32:\"c3839ac292554099bbe54f71257c4fb0\";a:9:{s:4:\"hash\";s:32:\"c3839ac292554099bbe54f71257c4fb0\";s:3:\"url\";s:158:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/04/social-media-and-fraud-youd-be-surprised-what-people-post/\";s:4:\"path\";s:72:\"/blog/2021/04/social-media-and-fraud-youd-be-surprised-what-people-post/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:105:\"Social Media and Fraud – You\'d Be Surprised What People Post! | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Social Media and Fraud  Youd Be Surprised What People Post! Recent Posts Archives Categories Contact\";s:7:\"indexed\";b:0;}s:32:\"f89aa744b2d949da9dabe26cdc558560\";a:9:{s:4:\"hash\";s:32:\"f89aa744b2d949da9dabe26cdc558560\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/\";s:4:\"path\";s:14:\"/blog/2021/05/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:51:\"May, 2021 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: May 2021 Labor Market Attachment and Retirement Claim Disallowance With Unanimous Medical Opi\";s:7:\"indexed\";b:0;}s:32:\"a245b6b9c997a2219b96a7fa6abe39a6\";a:9:{s:4:\"hash\";s:32:\"a245b6b9c997a2219b96a7fa6abe39a6\";s:3:\"url\";s:177:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\";s:4:\"path\";s:91:\"/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:118:\"Claim Disallowance With Unanimous Medical Opinion Giving Causal Relationship | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Claim Disallowance With Unanimous Medical Opinion Giving Causal Relationship Recent Posts Archives C\";s:7:\"indexed\";b:0;}s:32:\"822c970b4beb560360f2cfba713d7614\";a:9:{s:4:\"hash\";s:32:\"822c970b4beb560360f2cfba713d7614\";s:3:\"url\";s:194:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/employers-do-not-have-to-prove-prejudice-by-late-notice-but-it-certainly-doesnt-hurt-to-do-so/\";s:4:\"path\";s:108:\"/blog/2021/05/employers-do-not-have-to-prove-prejudice-by-late-notice-but-it-certainly-doesnt-hurt-to-do-so/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:138:\"Employers Do Not Have to Prove Prejudice by Late Notice, but it Certainly Doesn\'t Hurt To Do So! | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Employers Do Not Have to Prove Prejudice by Late Notice, but it Certainly Doesnt Hurt To Do So! Rece\";s:7:\"indexed\";b:0;}s:32:\"3aa943cc4bc91b81b56f2fd521d9d076\";a:9:{s:4:\"hash\";s:32:\"3aa943cc4bc91b81b56f2fd521d9d076\";s:3:\"url\";s:139:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/labor-market-attachment-and-retirement/\";s:4:\"path\";s:53:\"/blog/2021/05/labor-market-attachment-and-retirement/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:80:\"Labor Market Attachment and Retirement | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Labor Market Attachment and Retirement Recent Posts Archives Categories Contact/Refer A Claim If You\";s:7:\"indexed\";b:0;}s:32:\"1b38baa05865a9f57d60f76feed90a32\";a:9:{s:4:\"hash\";s:32:\"1b38baa05865a9f57d60f76feed90a32\";s:3:\"url\";s:166:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\";s:4:\"path\";s:80:\"/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:109:\"The Claimant\'s Burden: Proving the Causal Relationship of an Injury | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"The Claimants Burden: Proving the Causal Relationship of an Injury Recent Posts Archives Categories \";s:7:\"indexed\";b:0;}s:32:\"2bae348b21c9cf6f94c73da6c6ea9221\";a:9:{s:4:\"hash\";s:32:\"2bae348b21c9cf6f94c73da6c6ea9221\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/06/\";s:4:\"path\";s:14:\"/blog/2021/06/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:52:\"June, 2021 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: June 2021 Third Deparment Decision: Disputing Causal Relationship Stipulations, Reimbursement\";s:7:\"indexed\";b:0;}s:32:\"5b288cef2c963aa20d19e2aa50d754c1\";a:9:{s:4:\"hash\";s:32:\"5b288cef2c963aa20d19e2aa50d754c1\";s:3:\"url\";s:148:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/06/stipulations-reimbursements-underpayments-oh-my/\";s:4:\"path\";s:62:\"/blog/2021/06/stipulations-reimbursements-underpayments-oh-my/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:93:\"Stipulations, Reimbursements, Underpayments. Oh My! | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Stipulations, Reimbursements, Underpayments. Oh My! Recent Posts Archives Categories Contact/Refer A\";s:7:\"indexed\";b:0;}s:32:\"e8f7d03d328f4d70fbebe790665a8019\";a:9:{s:4:\"hash\";s:32:\"e8f7d03d328f4d70fbebe790665a8019\";s:3:\"url\";s:155:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/06/third-deparment-decision-disputing-causal-relationship/\";s:4:\"path\";s:69:\"/blog/2021/06/third-deparment-decision-disputing-causal-relationship/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:97:\"Third Deparment Decision: Disputing Causal Relationship | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Third Deparment Decision: Disputing Causal Relationship Recent Posts Archives Categories Contact/Ref\";s:7:\"indexed\";b:0;}s:32:\"c71fdc2d0013aa24ad6368faf304d13b\";a:9:{s:4:\"hash\";s:32:\"c71fdc2d0013aa24ad6368faf304d13b\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/07/\";s:4:\"path\";s:14:\"/blog/2021/07/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:52:\"July, 2021 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: July 2021 An Exploration of Legal Apportionment Carpal Tunnel and Causal Relation Not Always \";s:7:\"indexed\";b:0;}s:32:\"67e0c343334568b1192c867ea679df3b\";a:9:{s:4:\"hash\";s:32:\"67e0c343334568b1192c867ea679df3b\";s:3:\"url\";s:138:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/07/an-exploration-of-legal-apportionment/\";s:4:\"path\";s:52:\"/blog/2021/07/an-exploration-of-legal-apportionment/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:81:\"An Exploration of \"Legal Apportionment\" | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"An Exploration of Legal Apportionment Recent Posts Archives Categories Contact/Refer A Claim If You \";s:7:\"indexed\";b:0;}s:32:\"df1a9925532ba875a7495de4ff003c4c\";a:9:{s:4:\"hash\";s:32:\"df1a9925532ba875a7495de4ff003c4c\";s:3:\"url\";s:158:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/07/carpal-tunnel-and-causal-relation-not-always-so-clear-cut/\";s:4:\"path\";s:72:\"/blog/2021/07/carpal-tunnel-and-causal-relation-not-always-so-clear-cut/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:99:\"Carpal Tunnel and Causal Relation Not Always So Clear-Cut | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Carpal Tunnel and Causal Relation Not Always So Clear-Cut Recent Posts Archives Categories Contact/R\";s:7:\"indexed\";b:0;}s:32:\"08094d1065527b8003f6df79dd706443\";a:9:{s:4:\"hash\";s:32:\"08094d1065527b8003f6df79dd706443\";s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/07/its-no-accident/\";s:4:\"path\";s:30:\"/blog/2021/07/its-no-accident/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:58:\"It\'s No Accident | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Its No Accident Recent Posts Archives Categories Contact/Refer A Claim If You Are Tired Of Being Tre\";s:7:\"indexed\";b:0;}s:32:\"5be51fe3b8e44c8fe1fab06d0b62f4d5\";a:9:{s:4:\"hash\";s:32:\"5be51fe3b8e44c8fe1fab06d0b62f4d5\";s:3:\"url\";s:152:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\";s:4:\"path\";s:66:\"/blog/2021/07/pain-is-not-enough-for-prima-facie-medical-evidence/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:93:\"Pain is Not Enough for Prima Facie Medical Evidence | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Pain is Not Enough for Prima Facie Medical Evidence Recent Posts Archives Categories Contact/Refer A\";s:7:\"indexed\";b:0;}s:32:\"2137f882422a82f9a4e3f376f146fbb6\";a:9:{s:4:\"hash\";s:32:\"2137f882422a82f9a4e3f376f146fbb6\";s:3:\"url\";s:100:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/08/\";s:4:\"path\";s:14:\"/blog/2021/08/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:54:\"August, 2021 | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Month: August 2021 Using the Contralateral Limb as a Baseline for Calculating Schedule Loss of Use S\";s:7:\"indexed\";b:0;}s:32:\"c5e6fade6822445e55f818c37eca7c19\";a:9:{s:4:\"hash\";s:32:\"c5e6fade6822445e55f818c37eca7c19\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/08/disallowance-due-to-intoxication/\";s:4:\"path\";s:47:\"/blog/2021/08/disallowance-due-to-intoxication/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:74:\"Disallowance Due to Intoxication | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Disallowance Due to Intoxication Recent Posts Archives Categories Contact/Refer A Claim If You Are T\";s:7:\"indexed\";b:0;}s:32:\"5cd9d23240f5f9ad3513e73d8f880553\";a:9:{s:4:\"hash\";s:32:\"5cd9d23240f5f9ad3513e73d8f880553\";s:3:\"url\";s:136:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/08/surveillance-social-mediasection-32/\";s:4:\"path\";s:50:\"/blog/2021/08/surveillance-social-mediasection-32/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:82:\"Surveillance, Social Media…Section 32? | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Surveillance, Social MediaSection 32? Recent Posts Archives Categories Contact/Refer A Claim If You \";s:7:\"indexed\";b:0;}s:32:\"6334e0685a66f60a6e9874624825962e\";a:9:{s:4:\"hash\";s:32:\"6334e0685a66f60a6e9874624825962e\";s:3:\"url\";s:180:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/08/using-the-contralateral-limb-as-a-baseline-for-calculating-schedule-loss-of-use/\";s:4:\"path\";s:94:\"/blog/2021/08/using-the-contralateral-limb-as-a-baseline-for-calculating-schedule-loss-of-use/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:121:\"Using the Contralateral Limb as a Baseline for Calculating Schedule Loss of Use | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Using the Contralateral Limb as a Baseline for Calculating Schedule Loss of Use Recent Posts Archive\";s:7:\"indexed\";b:0;}s:32:\"d8e0f9f58ec9255ece3a86b4cb389fff\";a:9:{s:4:\"hash\";s:32:\"d8e0f9f58ec9255ece3a86b4cb389fff\";s:3:\"url\";s:104:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/page/2/\";s:4:\"path\";s:18:\"/blog/2021/page/2/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"2021 | The Law Offices of Melissa A. Day, PLLC - Part 2\";s:4:\"body\";s:100:\"Year: 2021 Claim Disallowance With Unanimous Medical Opinion Giving Causal Relationship Employers Do\";s:7:\"indexed\";b:0;}s:32:\"01e632ea61af8382ca9c939a07fbbc16\";a:9:{s:4:\"hash\";s:32:\"01e632ea61af8382ca9c939a07fbbc16\";s:3:\"url\";s:104:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/page/3/\";s:4:\"path\";s:18:\"/blog/2021/page/3/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:55:\"2021 | The Law Offices of Melissa A. Day, PLLC - Part 3\";s:4:\"body\";s:100:\"Year: 2021 Occupational Disease Claims after Matter of Pinnacle Industries II, LLC (2019 NY Wrk Comp\";s:7:\"indexed\";b:0;}s:32:\"882f944ce26fa5667b878fcca818b6b4\";a:9:{s:4:\"hash\";s:32:\"882f944ce26fa5667b878fcca818b6b4\";s:3:\"url\";s:108:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/category/im-mad/\";s:4:\"path\";s:22:\"/blog/category/im-mad/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:49:\"I\'m MAD | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Im MAD A Win for The Law Offices of Melissa A. Day Proposed Changes to 300.22 and 300.23  Overpaymen\";s:7:\"indexed\";b:0;}s:32:\"3e4c69461ea6d21f2a9eeb3a466e4202\";a:9:{s:4:\"hash\";s:32:\"3e4c69461ea6d21f2a9eeb3a466e4202\";s:3:\"url\";s:110:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/category/mad-news/\";s:4:\"path\";s:24:\"/blog/category/mad-news/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:50:\"MAD News | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"MAD News Using the Contralateral Limb as a Baseline for Calculating Schedule Loss of Use Surveillanc\";s:7:\"indexed\";b:0;}s:32:\"101ea2b5ab08ec60bc70b5046f444357\";a:9:{s:4:\"hash\";s:32:\"101ea2b5ab08ec60bc70b5046f444357\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/category/mad-news/page/2/\";s:4:\"path\";s:31:\"/blog/category/mad-news/page/2/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:59:\"MAD News | The Law Offices of Melissa A. Day, PLLC - Part 2\";s:4:\"body\";s:100:\"MAD News Claim Disallowance With Unanimous Medical Opinion Giving Causal Relationship Employers Do N\";s:7:\"indexed\";b:0;}s:32:\"e6ae13ab4b173905175c60b1fa44e3ab\";a:9:{s:4:\"hash\";s:32:\"e6ae13ab4b173905175c60b1fa44e3ab\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/category/mad-news/page/3/\";s:4:\"path\";s:31:\"/blog/category/mad-news/page/3/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:59:\"MAD News | The Law Offices of Melissa A. Day, PLLC - Part 3\";s:4:\"body\";s:100:\"MAD News Occupational Disease Claims after Matter of Pinnacle Industries II, LLC (2019 NY Wrk Comp G\";s:7:\"indexed\";b:0;}s:32:\"fc8ab43267ed4615cb840137983f7f8a\";a:9:{s:4:\"hash\";s:32:\"fc8ab43267ed4615cb840137983f7f8a\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/category/mad-news/page/4/\";s:4:\"path\";s:31:\"/blog/category/mad-news/page/4/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:59:\"MAD News | The Law Offices of Melissa A. Day, PLLC - Part 4\";s:4:\"body\";s:100:\"MAD News A Win for The Law Offices of Melissa A. Day Proposed Changes to 300.22 and 300.23  Overpaym\";s:7:\"indexed\";b:0;}s:32:\"7d954d0c4562025db281629651dd8f91\";a:9:{s:4:\"hash\";s:32:\"7d954d0c4562025db281629651dd8f91\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/category/mad-news/page/5/\";s:4:\"path\";s:31:\"/blog/category/mad-news/page/5/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:59:\"MAD News | The Law Offices of Melissa A. Day, PLLC - Part 5\";s:4:\"body\";s:100:\"MAD News Youre claiming what?!? New SLU Guidelines Presentation by the Board United States Supreme C\";s:7:\"indexed\";b:0;}s:32:\"4f856a803876e35f80a23ceccd0fd53a\";a:9:{s:4:\"hash\";s:32:\"4f856a803876e35f80a23ceccd0fd53a\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/category/mad-news/page/6/\";s:4:\"path\";s:31:\"/blog/category/mad-news/page/6/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:59:\"MAD News | The Law Offices of Melissa A. Day, PLLC - Part 6\";s:4:\"body\";s:100:\"MAD News TO WEAN, OR NOT TO WEAN, THAT IS THE QUESTION. Reopened Cases NY Allows Employer to An Empl\";s:7:\"indexed\";b:0;}s:32:\"16f881840c0dccf28122486ee1aebd97\";a:9:{s:4:\"hash\";s:32:\"16f881840c0dccf28122486ee1aebd97\";s:3:\"url\";s:117:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/category/mad-news/page/7/\";s:4:\"path\";s:31:\"/blog/category/mad-news/page/7/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:59:\"MAD News | The Law Offices of Melissa A. Day, PLLC - Part 7\";s:4:\"body\";s:100:\"MAD News Non-Acute Pain Treatment Guidelines Test Your NY Workers Compensation Chops Liability for T\";s:7:\"indexed\";b:0;}s:32:\"0d9970a57d14cccc7e0ef4404f971a3e\";a:9:{s:4:\"hash\";s:32:\"0d9970a57d14cccc7e0ef4404f971a3e\";s:3:\"url\";s:126:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/category/nys-workers-compensation/\";s:4:\"path\";s:40:\"/blog/category/nys-workers-compensation/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:66:\"NYS Workers Compensation | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"NYS Workers Compensation Using the Contralateral Limb as a Baseline for Calculating Schedule Loss of\";s:7:\"indexed\";b:0;}s:32:\"bb84396713bd500f9403ca92026aab71\";a:9:{s:4:\"hash\";s:32:\"bb84396713bd500f9403ca92026aab71\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/category/nys-workers-compensation/page/2/\";s:4:\"path\";s:47:\"/blog/category/nys-workers-compensation/page/2/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:75:\"NYS Workers Compensation | The Law Offices of Melissa A. Day, PLLC - Part 2\";s:4:\"body\";s:100:\"NYS Workers Compensation Claim Disallowance With Unanimous Medical Opinion Giving Causal Relationshi\";s:7:\"indexed\";b:0;}s:32:\"431f17c7810bc40019b97e244d8bdc7f\";a:9:{s:4:\"hash\";s:32:\"431f17c7810bc40019b97e244d8bdc7f\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/category/nys-workers-compensation/page/3/\";s:4:\"path\";s:47:\"/blog/category/nys-workers-compensation/page/3/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:75:\"NYS Workers Compensation | The Law Offices of Melissa A. Day, PLLC - Part 3\";s:4:\"body\";s:100:\"NYS Workers Compensation Occupational Disease Claims after Matter of Pinnacle Industries II, LLC (20\";s:7:\"indexed\";b:0;}s:32:\"a5b1965f0a00012ac04dcac82ceb02a3\";a:9:{s:4:\"hash\";s:32:\"a5b1965f0a00012ac04dcac82ceb02a3\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/category/nys-workers-compensation/page/4/\";s:4:\"path\";s:47:\"/blog/category/nys-workers-compensation/page/4/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:75:\"NYS Workers Compensation | The Law Offices of Melissa A. Day, PLLC - Part 4\";s:4:\"body\";s:100:\"NYS Workers Compensation A Win for The Law Offices of Melissa A. Day Proposed Changes to 300.22 and \";s:7:\"indexed\";b:0;}s:32:\"7d6f27825ee96f8bfb4644b0b2314c7b\";a:9:{s:4:\"hash\";s:32:\"7d6f27825ee96f8bfb4644b0b2314c7b\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/category/nys-workers-compensation/page/5/\";s:4:\"path\";s:47:\"/blog/category/nys-workers-compensation/page/5/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:75:\"NYS Workers Compensation | The Law Offices of Melissa A. Day, PLLC - Part 5\";s:4:\"body\";s:100:\"NYS Workers Compensation Youre claiming what?!? New SLU Guidelines Presentation by the Board United \";s:7:\"indexed\";b:0;}s:32:\"141f6ddc36c7cf5261f2e0869bca68ef\";a:9:{s:4:\"hash\";s:32:\"141f6ddc36c7cf5261f2e0869bca68ef\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/category/nys-workers-compensation/page/6/\";s:4:\"path\";s:47:\"/blog/category/nys-workers-compensation/page/6/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:75:\"NYS Workers Compensation | The Law Offices of Melissa A. Day, PLLC - Part 6\";s:4:\"body\";s:100:\"NYS Workers Compensation An Underwriting Nightmare Come True Hearing Loss becomes Hearing Win Non Ac\";s:7:\"indexed\";b:0;}s:32:\"885120e30fd97b848b643bf027cc957d\";a:9:{s:4:\"hash\";s:32:\"885120e30fd97b848b643bf027cc957d\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/category/nys-workers-compensation/page/7/\";s:4:\"path\";s:47:\"/blog/category/nys-workers-compensation/page/7/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:75:\"NYS Workers Compensation | The Law Offices of Melissa A. Day, PLLC - Part 7\";s:4:\"body\";s:100:\"NYS Workers Compensation DID YOU KNOW? The 2nd Circuit certified a question to the NY Court of Appea\";s:7:\"indexed\";b:0;}s:32:\"6651bbe40a388ab4ef558248e4173c63\";a:9:{s:4:\"hash\";s:32:\"6651bbe40a388ab4ef558248e4173c63\";s:3:\"url\";s:133:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/category/nys-workers-compensation/page/8/\";s:4:\"path\";s:47:\"/blog/category/nys-workers-compensation/page/8/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:75:\"NYS Workers Compensation | The Law Offices of Melissa A. Day, PLLC - Part 8\";s:4:\"body\";s:100:\"NYS Workers Compensation DID YOU KNOW? FACEBOOK PAGES ARE NOT CONSIDERED SURVEILLANCE THAT HAS TO BE\";s:7:\"indexed\";b:0;}s:32:\"4c32f4a52b3ef37903686dfd7ecd7a56\";a:9:{s:4:\"hash\";s:32:\"4c32f4a52b3ef37903686dfd7ecd7a56\";s:3:\"url\";s:109:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/lomad-newsletter/\";s:4:\"path\";s:23:\"/blog/lomad-newsletter/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:58:\"LOMAD Newsletter | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"LOMAD Newsletter Check out the LOMAD Newsletter by clicking on any of the volumes below! Contact/Ref\";s:7:\"indexed\";b:0;}s:32:\"1d6c1ac35d810ee786dda96d4a2c6105\";a:9:{s:4:\"hash\";s:32:\"1d6c1ac35d810ee786dda96d4a2c6105\";s:3:\"url\";s:110:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/page/10/?et_blog=/\";s:4:\"path\";s:14:\"/blog/page/10/\";s:5:\"query\";s:8:\"et_blog=\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:66:\"Blog | The Law Offices of Melissa A. Day, PLLC | Amherst - Part 10\";s:4:\"body\";s:100:\"The Law Offices of Melissa A. Day, PLLC Legal Blog DID YOU KNOW? IMPLEMENTATION OF THE CHANGES TO TH\";s:7:\"indexed\";b:0;}s:32:\"769bcd258e7fb81943a5cdbd94b7bb02\";a:9:{s:4:\"hash\";s:32:\"769bcd258e7fb81943a5cdbd94b7bb02\";s:3:\"url\";s:109:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/page/2/?et_blog=/\";s:4:\"path\";s:13:\"/blog/page/2/\";s:5:\"query\";s:8:\"et_blog=\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:65:\"Blog | The Law Offices of Melissa A. Day, PLLC | Amherst - Part 2\";s:4:\"body\";s:100:\"The Law Offices of Melissa A. Day, PLLC Legal Blog Claim Disallowance With Unanimous Medical Opinion\";s:7:\"indexed\";b:0;}s:32:\"513e59915e14f832bf87d5cb9c08e359\";a:9:{s:4:\"hash\";s:32:\"513e59915e14f832bf87d5cb9c08e359\";s:3:\"url\";s:109:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/page/3/?et_blog=/\";s:4:\"path\";s:13:\"/blog/page/3/\";s:5:\"query\";s:8:\"et_blog=\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:65:\"Blog | The Law Offices of Melissa A. Day, PLLC | Amherst - Part 3\";s:4:\"body\";s:100:\"The Law Offices of Melissa A. Day, PLLC Legal Blog Occupational Disease Claims after Matter of Pinna\";s:7:\"indexed\";b:0;}s:32:\"93d8238fb27eb905af8c20e7ff162d46\";a:9:{s:4:\"hash\";s:32:\"93d8238fb27eb905af8c20e7ff162d46\";s:3:\"url\";s:109:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/page/4/?et_blog=/\";s:4:\"path\";s:13:\"/blog/page/4/\";s:5:\"query\";s:8:\"et_blog=\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:65:\"Blog | The Law Offices of Melissa A. Day, PLLC | Amherst - Part 4\";s:4:\"body\";s:100:\"The Law Offices of Melissa A. Day, PLLC Legal Blog A Win for The Law Offices of Melissa A. Day Propo\";s:7:\"indexed\";b:0;}s:32:\"c922e01441c0eb6299e064e59dc5bfd7\";a:9:{s:4:\"hash\";s:32:\"c922e01441c0eb6299e064e59dc5bfd7\";s:3:\"url\";s:109:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/page/5/?et_blog=/\";s:4:\"path\";s:13:\"/blog/page/5/\";s:5:\"query\";s:8:\"et_blog=\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:65:\"Blog | The Law Offices of Melissa A. Day, PLLC | Amherst - Part 5\";s:4:\"body\";s:100:\"The Law Offices of Melissa A. Day, PLLC Legal Blog Youre claiming what?!? United States Supreme Cour\";s:7:\"indexed\";b:0;}s:32:\"d778ee822f4e1ec1076124c34b6a6cb8\";a:9:{s:4:\"hash\";s:32:\"d778ee822f4e1ec1076124c34b6a6cb8\";s:3:\"url\";s:109:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/page/6/?et_blog=/\";s:4:\"path\";s:13:\"/blog/page/6/\";s:5:\"query\";s:8:\"et_blog=\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:65:\"Blog | The Law Offices of Melissa A. Day, PLLC | Amherst - Part 6\";s:4:\"body\";s:100:\"The Law Offices of Melissa A. Day, PLLC Legal Blog Its the Holiday Season! HAPPY HALLO-WEAN TO WEAN,\";s:7:\"indexed\";b:0;}s:32:\"3e451b7af1643b95f9bf0e96b2dde9fa\";a:9:{s:4:\"hash\";s:32:\"3e451b7af1643b95f9bf0e96b2dde9fa\";s:3:\"url\";s:109:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/page/7/?et_blog=/\";s:4:\"path\";s:13:\"/blog/page/7/\";s:5:\"query\";s:8:\"et_blog=\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:65:\"Blog | The Law Offices of Melissa A. Day, PLLC | Amherst - Part 7\";s:4:\"body\";s:100:\"The Law Offices of Melissa A. Day, PLLC Legal Blog Claims Handling Performance Answers to the Quiz A\";s:7:\"indexed\";b:0;}s:32:\"ab6cfbcd5bbc54b31862ca0da80d9c20\";a:9:{s:4:\"hash\";s:32:\"ab6cfbcd5bbc54b31862ca0da80d9c20\";s:3:\"url\";s:109:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/page/8/?et_blog=/\";s:4:\"path\";s:13:\"/blog/page/8/\";s:5:\"query\";s:8:\"et_blog=\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:65:\"Blog | The Law Offices of Melissa A. Day, PLLC | Amherst - Part 8\";s:4:\"body\";s:100:\"The Law Offices of Melissa A. Day, PLLC Legal Blog Hearing Loss becomes Hearing Win An Underwriting \";s:7:\"indexed\";b:0;}s:32:\"d6af9e6e7dcfd67144fc63150285fd62\";a:9:{s:4:\"hash\";s:32:\"d6af9e6e7dcfd67144fc63150285fd62\";s:3:\"url\";s:109:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/blog/page/9/?et_blog=/\";s:4:\"path\";s:13:\"/blog/page/9/\";s:5:\"query\";s:8:\"et_blog=\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:65:\"Blog | The Law Offices of Melissa A. Day, PLLC | Amherst - Part 9\";s:4:\"body\";s:100:\"The Law Offices of Melissa A. Day, PLLC Legal Blog DID YOU KNOW? The 2nd Circuit certified a questio\";s:7:\"indexed\";b:0;}s:32:\"d96dcade7651c38e38a608dddb76acbb\";a:9:{s:4:\"hash\";s:32:\"d96dcade7651c38e38a608dddb76acbb\";s:3:\"url\";s:114:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/cdn-cgi/l/email-protection/\";s:4:\"path\";s:28:\"/cdn-cgi/l/email-protection/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:29:\"Email Protection | Cloudflare\";s:4:\"body\";s:100:\"Email Protection You are unable to access this email address flsitebuilder.com The website from whic\";s:7:\"indexed\";b:0;}s:32:\"0cc3e1c4c92eb996bebe317d66fef85c\";a:9:{s:4:\"hash\";s:32:\"0cc3e1c4c92eb996bebe317d66fef85c\";s:3:\"url\";s:104:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/client-resources/\";s:4:\"path\";s:18:\"/client-resources/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:58:\"Client Resources | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Client Resources Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law \";s:7:\"indexed\";b:0;}s:32:\"d757abef6cdda55afcdb11ddbba0b7ce\";a:9:{s:4:\"hash\";s:32:\"d757abef6cdda55afcdb11ddbba0b7ce\";s:3:\"url\";s:144:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/client-resources/case-law-updates-lomad-case-law-updates/\";s:4:\"path\";s:58:\"/client-resources/case-law-updates-lomad-case-law-updates/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:58:\"Case Law Updates | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Case Law Updates Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law \";s:7:\"indexed\";b:0;}s:32:\"a9f7255f3a2bbda249a611140a9ff68c\";a:9:{s:4:\"hash\";s:32:\"a9f7255f3a2bbda249a611140a9ff68c\";s:3:\"url\";s:114:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/client-resources/max-rates/\";s:4:\"path\";s:28:\"/client-resources/max-rates/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:51:\"Max Rates | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"Max Rates Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law Offices\";s:7:\"indexed\";b:0;}s:32:\"e6f4ec1ed34b8ac51580cae195d5fc5d\";a:9:{s:4:\"hash\";s:32:\"e6f4ec1ed34b8ac51580cae195d5fc5d\";s:3:\"url\";s:113:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/client-resources/ppd-caps/\";s:4:\"path\";s:27:\"/client-resources/ppd-caps/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:50:\"PPD Caps | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"PPD Caps Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law Offices \";s:7:\"indexed\";b:0;}s:32:\"0876e3f5e61525b806ac976249f03276\";a:9:{s:4:\"hash\";s:32:\"0876e3f5e61525b806ac976249f03276\";s:3:\"url\";s:112:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/client-resources/slu-php/\";s:4:\"path\";s:26:\"/client-resources/slu-php/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:49:\"SLU/PHP | The Law Offices of Melissa A. Day, PLLC\";s:4:\"body\";s:100:\"SLU/PHP Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law Offices o\";s:7:\"indexed\";b:0;}s:32:\"f90a52a83084bef69ecf58a120dbe4d8\";a:9:{s:4:\"hash\";s:32:\"f90a52a83084bef69ecf58a120dbe4d8\";s:3:\"url\";s:95:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/contact/\";s:4:\"path\";s:9:\"/contact/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:59:\"Contact | The Law Offices of Melissa A. Day, PLLC | Amherst\";s:4:\"body\";s:100:\"Contact Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law Offices o\";s:7:\"indexed\";b:0;}s:32:\"c46039c24accd2cdba2f3d0ef9c41140\";a:9:{s:4:\"hash\";s:32:\"c46039c24accd2cdba2f3d0ef9c41140\";s:3:\"url\";s:98:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/disclaimer/\";s:4:\"path\";s:12:\"/disclaimer/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:62:\"Disclaimer | The Law Offices of Melissa A. Day, PLLC | Amherst\";s:4:\"body\";s:100:\"Disclaimer Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law Office\";s:7:\"indexed\";b:0;}s:32:\"f412affea8ec9d3c992f2a0bc9c4f4c3\";a:9:{s:4:\"hash\";s:32:\"f412affea8ec9d3c992f2a0bc9c4f4c3\";s:3:\"url\";s:95:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/privacy/\";s:4:\"path\";s:9:\"/privacy/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:66:\"Privacy Policy | The Law Offices of Melissa A. Day, PLLC | Amherst\";s:4:\"body\";s:100:\"Privacy Policy Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe Law Of\";s:7:\"indexed\";b:0;}s:32:\"9012cfc902b8792033a590c40c648f1a\";a:9:{s:4:\"hash\";s:32:\"9012cfc902b8792033a590c40c648f1a\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/site-map/\";s:4:\"path\";s:10:\"/site-map/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:60:\"Site Map | The Law Offices of Melissa A. Day, PLLC | Amherst\";s:4:\"body\";s:100:\"Site Map Pages People Contact/Refer A Claim If You Are Tired Of Being Treated Like A Number, CallThe\";s:7:\"indexed\";b:0;}s:32:\"94116f0fe8b836032ed0cbacb8c3de44\";a:9:{s:4:\"hash\";s:32:\"94116f0fe8b836032ed0cbacb8c3de44\";s:3:\"url\";s:97:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/the-teams/\";s:4:\"path\";s:11:\"/the-teams/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:61:\"The Team  | The Law Offices of Melissa A. Day, PLLC | Amherst\";s:4:\"body\";s:100:\"The Team LOMAD Featured Attorney Contact/Refer A Claim If You Are Tired Of Being Treated Like A Numb\";s:7:\"indexed\";b:0;}s:32:\"9243ee179afd8b8a70a508b04d7fe063\";a:9:{s:4:\"hash\";s:32:\"9243ee179afd8b8a70a508b04d7fe063\";s:3:\"url\";s:105:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/the-teams/careers/\";s:4:\"path\";s:19:\"/the-teams/careers/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:60:\"Careers  | The Law Offices of Melissa A. Day, PLLC | Amherst\";s:4:\"body\";s:100:\"Careers Check Out All Our Benefits Contact/Refer A Claim If You Are Tired Of Being Treated Like A Nu\";s:7:\"indexed\";b:0;}s:32:\"dd7426ada24202f42a0221fd23f83a57\";a:9:{s:4:\"hash\";s:32:\"dd7426ada24202f42a0221fd23f83a57\";s:3:\"url\";s:123:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/the-teams/workers-compensation-team/\";s:4:\"path\";s:37:\"/the-teams/workers-compensation-team/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:78:\"Workers\' Compensation Team | The Law Offices of Melissa A. Day, PLLC | Amherst\";s:4:\"body\";s:100:\"Workers Compensation Team Melissa A. Day Contact/Refer A Claim Managing Attorney James B. Cousins Br\";s:7:\"indexed\";b:0;}s:32:\"a86f9a18cf995d42d00b5c89d7f9e576\";a:9:{s:4:\"hash\";s:32:\"a86f9a18cf995d42d00b5c89d7f9e576\";s:3:\"url\";s:96:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/webinars/\";s:4:\"path\";s:10:\"/webinars/\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:60:\"Webinars | The Law Offices of Melissa A. Day, PLLC | Amherst\";s:4:\"body\";s:100:\"Webinar Series Check out LOMADtv  click on the picture below to join us live on the 4th Friday of ea\";s:7:\"indexed\";b:0;}s:32:\"3d7919ecffb1c4052fcadd6e26286c26\";a:9:{s:4:\"hash\";s:32:\"3d7919ecffb1c4052fcadd6e26286c26\";s:3:\"url\";s:200:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/01/SummaryRegChanges.pdf\";s:4:\"path\";s:114:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/01/SummaryRegChanges.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:114:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/01/SummaryRegChanges.pdf\";s:4:\"body\";s:0:\"\";s:7:\"indexed\";b:0;}s:32:\"e5da2fc94e4ccf6cad6e26e82f7b2d76\";a:9:{s:4:\"hash\";s:32:\"e5da2fc94e4ccf6cad6e26e82f7b2d76\";s:3:\"url\";s:201:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/03/Hudson-Valley-DDSO.pdf\";s:4:\"path\";s:115:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/03/Hudson-Valley-DDSO.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:115:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/03/Hudson-Valley-DDSO.pdf\";s:4:\"body\";s:0:\"\";s:7:\"indexed\";b:0;}s:32:\"357152dcef50feda95dca39bb8f0b9e2\";a:9:{s:4:\"hash\";s:32:\"357152dcef50feda95dca39bb8f0b9e2\";s:3:\"url\";s:198:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/04/Senate-Bill-S76.pdf\";s:4:\"path\";s:112:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/04/Senate-Bill-S76.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:112:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/04/Senate-Bill-S76.pdf\";s:4:\"body\";s:0:\"\";s:7:\"indexed\";b:0;}s:32:\"dc168a86d371d045660f6fcf3643feb8\";a:9:{s:4:\"hash\";s:32:\"dc168a86d371d045660f6fcf3643feb8\";s:3:\"url\";s:249:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/07/Treatment-Outside-MTG-is-Pre-Determined-as-Not-Medically-Necessary.pdf\";s:4:\"path\";s:163:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/07/Treatment-Outside-MTG-is-Pre-Determined-as-Not-Medically-Necessary.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:163:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/07/Treatment-Outside-MTG-is-Pre-Determined-as-Not-Medically-Necessary.pdf\";s:4:\"body\";s:0:\"\";s:7:\"indexed\";b:0;}s:32:\"83a5a1a84b6fa32fd1f40e5348eb399b\";a:9:{s:4:\"hash\";s:32:\"83a5a1a84b6fa32fd1f40e5348eb399b\";s:3:\"url\";s:224:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/08/Challenge-to-the-Closing-of-the-25-a-Fund.pdf\";s:4:\"path\";s:138:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/08/Challenge-to-the-Closing-of-the-25-a-Fund.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:138:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/08/Challenge-to-the-Closing-of-the-25-a-Fund.pdf\";s:4:\"body\";s:0:\"\";s:7:\"indexed\";b:0;}s:32:\"c456a12fe7433c89c436fd6a1c84f37d\";a:9:{s:4:\"hash\";s:32:\"c456a12fe7433c89c436fd6a1c84f37d\";s:3:\"url\";s:210:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2014/11/ZERO-PERCENT-LWEC-Redacted-.pdf\";s:4:\"path\";s:124:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2014/11/ZERO-PERCENT-LWEC-Redacted-.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:124:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2014/11/ZERO-PERCENT-LWEC-Redacted-.pdf\";s:4:\"body\";s:0:\"\";s:7:\"indexed\";b:0;}s:32:\"397fc6bfb3bf5ee508e83051f5189899\";a:9:{s:4:\"hash\";s:32:\"397fc6bfb3bf5ee508e83051f5189899\";s:3:\"url\";s:213:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/07/Hot-Dog-Dog-Costume1-300x196-1.jpg\";s:4:\"path\";s:127:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/07/Hot-Dog-Dog-Costume1-300x196-1.jpg\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:7:\"indexed\";b:0;}s:32:\"4e8bdc53b1939cb13b9cd3fcabbe0c1b\";a:9:{s:4:\"hash\";s:32:\"4e8bdc53b1939cb13b9cd3fcabbe0c1b\";s:3:\"url\";s:188:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/08/pic-1.jpg\";s:4:\"path\";s:102:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/08/pic-1.jpg\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:7:\"indexed\";b:0;}s:32:\"568689e1d8460cedb1fd35e329676c7b\";a:9:{s:4:\"hash\";s:32:\"568689e1d8460cedb1fd35e329676c7b\";s:3:\"url\";s:213:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/09/Crossword-EXF-Puzzle-and-Clues.png\";s:4:\"path\";s:127:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/09/Crossword-EXF-Puzzle-and-Clues.png\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:3:\"PNG\";s:7:\"indexed\";b:0;}s:32:\"5b767ec86950f3f010018de011d70fc1\";a:9:{s:4:\"hash\";s:32:\"5b767ec86950f3f010018de011d70fc1\";s:3:\"url\";s:204:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2016/04/25-a-Unconstitutional.pdf\";s:4:\"path\";s:118:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2016/04/25-a-Unconstitutional.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:118:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2016/04/25-a-Unconstitutional.pdf\";s:4:\"body\";s:0:\"\";s:7:\"indexed\";b:0;}s:32:\"3a8f39cba35eedd4ef5ac30b319a9445\";a:9:{s:4:\"hash\";s:32:\"3a8f39cba35eedd4ef5ac30b319a9445\";s:3:\"url\";s:198:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2016/10/Opioid-Decision.pdf\";s:4:\"path\";s:112:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2016/10/Opioid-Decision.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:112:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2016/10/Opioid-Decision.pdf\";s:4:\"body\";s:0:\"\";s:7:\"indexed\";b:0;}s:32:\"e623fcacb0817b5072f1055ccd4c7555\";a:9:{s:4:\"hash\";s:32:\"e623fcacb0817b5072f1055ccd4c7555\";s:3:\"url\";s:191:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/01/image001.png\";s:4:\"path\";s:105:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/01/image001.png\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:3:\"PNG\";s:7:\"indexed\";b:0;}s:32:\"f688bd7edb172546f901f07787f03d7d\";a:9:{s:4:\"hash\";s:32:\"f688bd7edb172546f901f07787f03d7d\";s:3:\"url\";s:191:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/01/image002.png\";s:4:\"path\";s:105:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/01/image002.png\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:3:\"PNG\";s:7:\"indexed\";b:0;}s:32:\"139e63ce4599679724cb8eaa413a7caa\";a:9:{s:4:\"hash\";s:32:\"139e63ce4599679724cb8eaa413a7caa\";s:3:\"url\";s:191:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/02/image002.jpg\";s:4:\"path\";s:105:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/02/image002.jpg\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";s:3:\"200\";s:5:\"title\";s:0:\"\";s:4:\"body\";s:0:\"\";s:7:\"indexed\";b:0;}s:32:\"d701a1120d40e8e55eda78aa460f1605\";a:9:{s:4:\"hash\";s:32:\"d701a1120d40e8e55eda78aa460f1605\";s:3:\"url\";s:235:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/06/EBRB-1-finding-that-MTGs-apply-out-of-state_Redacted.pdf\";s:4:\"path\";s:149:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/06/EBRB-1-finding-that-MTGs-apply-out-of-state_Redacted.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:149:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/06/EBRB-1-finding-that-MTGs-apply-out-of-state_Redacted.pdf\";s:4:\"body\";s:0:\"\";s:7:\"indexed\";b:0;}s:32:\"fd9f388054090d4144ffe5965eacc90a\";a:9:{s:4:\"hash\";s:32:\"fd9f388054090d4144ffe5965eacc90a\";s:3:\"url\";s:210:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/LOMAD-Newsletter-March-2021.pdf\";s:4:\"path\";s:124:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/LOMAD-Newsletter-March-2021.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:124:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/LOMAD-Newsletter-March-2021.pdf\";s:4:\"body\";s:0:\"\";s:7:\"indexed\";b:0;}s:32:\"59ac421717384ac3f54a113e32743465\";a:9:{s:4:\"hash\";s:32:\"59ac421717384ac3f54a113e32743465\";s:3:\"url\";s:208:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/LOMAD-Newsletter-Volume-2.pdf\";s:4:\"path\";s:122:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/LOMAD-Newsletter-Volume-2.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:122:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/LOMAD-Newsletter-Volume-2.pdf\";s:4:\"body\";s:0:\"\";s:7:\"indexed\";b:0;}s:32:\"c40035b6825938c283cce9012f1ac1a3\";a:9:{s:4:\"hash\";s:32:\"c40035b6825938c283cce9012f1ac1a3\";s:3:\"url\";s:208:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/LOMAD-newsletter-Volume-3.pdf\";s:4:\"path\";s:122:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/LOMAD-newsletter-Volume-3.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:122:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/LOMAD-newsletter-Volume-3.pdf\";s:4:\"body\";s:0:\"\";s:7:\"indexed\";b:0;}s:32:\"0e56da8f143cdf0e44d58b42237cf17d\";a:9:{s:4:\"hash\";s:32:\"0e56da8f143cdf0e44d58b42237cf17d\";s:3:\"url\";s:217:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.comhttps://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/LOMAD-newsletter-Volume-4-August-1.pdf\";s:4:\"path\";s:131:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/LOMAD-newsletter-Volume-4-August-1.pdf\";s:5:\"query\";s:0:\"\";s:6:\"status\";b:1;s:4:\"code\";i:0;s:5:\"title\";s:131:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/LOMAD-newsletter-Volume-4-August-1.pdf\";s:4:\"body\";s:0:\"\";s:7:\"indexed\";b:0;}}','no');
INSERT INTO `cuB_options` VALUES (3612,'flum_map_by_path_5986','a:6013:{s:32:\"6d49096f992e7dfad50ddc340f56eacc\";a:5:{s:6:\"source\";s:32:\"6d49096f992e7dfad50ddc340f56eacc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4c2adfb49fb71c4f05686094cf28377d\";a:5:{s:6:\"source\";s:32:\"4c2adfb49fb71c4f05686094cf28377d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8573f660df81fb780b02a9bb11b6a2e2\";a:5:{s:6:\"source\";s:32:\"8573f660df81fb780b02a9bb11b6a2e2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e2313084b18b6c4fa82822d856526513\";a:5:{s:6:\"source\";s:32:\"e2313084b18b6c4fa82822d856526513\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"86424ba38e769c17bef9bd6f6b8f4b80\";a:5:{s:6:\"source\";s:32:\"86424ba38e769c17bef9bd6f6b8f4b80\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2825bf2a8bb4ce415fe7d24edcfceadd\";a:5:{s:6:\"source\";s:32:\"2825bf2a8bb4ce415fe7d24edcfceadd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"71b1169e896989488ac4592e61fac6d3\";a:5:{s:6:\"source\";s:32:\"71b1169e896989488ac4592e61fac6d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e7f879061712884681aa97756b656f04\";a:5:{s:6:\"source\";s:32:\"e7f879061712884681aa97756b656f04\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3603526acdf69f0cead576916aa177c4\";a:5:{s:6:\"source\";s:32:\"3603526acdf69f0cead576916aa177c4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4aeec4cff730f9f63e02d02b07082fa0\";a:5:{s:6:\"source\";s:32:\"4aeec4cff730f9f63e02d02b07082fa0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b62f25650c1df39bfddeb46372569cac\";a:5:{s:6:\"source\";s:32:\"b62f25650c1df39bfddeb46372569cac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cd6dd76d4ae009e04202648627b8c847\";a:5:{s:6:\"source\";s:32:\"cd6dd76d4ae009e04202648627b8c847\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"82dfb5934e5959cf8437bbf8b9d423eb\";a:5:{s:6:\"source\";s:32:\"82dfb5934e5959cf8437bbf8b9d423eb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"42474a035ae97004ea1ea74060dde35d\";a:5:{s:6:\"source\";s:32:\"42474a035ae97004ea1ea74060dde35d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"66eb37948db92f1152cab3b7105966d4\";a:5:{s:6:\"source\";s:32:\"66eb37948db92f1152cab3b7105966d4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"935109045ebf4be3d017a26e7680e6b9\";a:5:{s:6:\"source\";s:32:\"935109045ebf4be3d017a26e7680e6b9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a0f767aca993902fbdf15106413caa7d\";a:5:{s:6:\"source\";s:32:\"a0f767aca993902fbdf15106413caa7d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"17086b190bef0c730bd64c3afc73d960\";a:5:{s:6:\"source\";s:32:\"17086b190bef0c730bd64c3afc73d960\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e36d7cd8cfa26725261c09952592f0c0\";a:5:{s:6:\"source\";s:32:\"e36d7cd8cfa26725261c09952592f0c0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2cc433e4e88363d7ee8418cf66f5e921\";a:5:{s:6:\"source\";s:32:\"2cc433e4e88363d7ee8418cf66f5e921\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fb9650dd6cd64cc3b70d0e2d789dfe0b\";a:5:{s:6:\"source\";s:32:\"fb9650dd6cd64cc3b70d0e2d789dfe0b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"89bb08ac4258da61fea310f8a7a824c0\";a:5:{s:6:\"source\";s:32:\"89bb08ac4258da61fea310f8a7a824c0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ec1d9390f40edc783a3d0b5c853d8ac1\";a:5:{s:6:\"source\";s:32:\"ec1d9390f40edc783a3d0b5c853d8ac1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a29fee0273565a54315f4c6950f60e01\";a:5:{s:6:\"source\";s:32:\"a29fee0273565a54315f4c6950f60e01\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2e06b0f64ddc32e046f3b6882c02e69e\";a:5:{s:6:\"source\";s:32:\"2e06b0f64ddc32e046f3b6882c02e69e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5a7f6f1b43c2bcce2c62fdd14f1ce9e4\";a:5:{s:6:\"source\";s:32:\"5a7f6f1b43c2bcce2c62fdd14f1ce9e4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0d9d659db7db615d7aeaabd7cb1155a1\";a:5:{s:6:\"source\";s:32:\"0d9d659db7db615d7aeaabd7cb1155a1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2d4597fedd81cbd373c733260d7ba1c9\";a:5:{s:6:\"source\";s:32:\"2d4597fedd81cbd373c733260d7ba1c9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"286e97f2be3c28be192a7502a98f16da\";a:5:{s:6:\"source\";s:32:\"286e97f2be3c28be192a7502a98f16da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1181ea9e938d14dbae001858da43d0ef\";a:5:{s:6:\"source\";s:32:\"1181ea9e938d14dbae001858da43d0ef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"37cf981f13b30525880e258aa33e05c7\";a:5:{s:6:\"source\";s:32:\"37cf981f13b30525880e258aa33e05c7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0b12391de543e2779fccb021984f4eca\";a:5:{s:6:\"source\";s:32:\"0b12391de543e2779fccb021984f4eca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8bd6277be00e526d3061c23985e59ffa\";a:5:{s:6:\"source\";s:32:\"8bd6277be00e526d3061c23985e59ffa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b0f5dbeaaac9974341e6c6fa04b511d6\";a:5:{s:6:\"source\";s:32:\"b0f5dbeaaac9974341e6c6fa04b511d6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ec15f37e85764e6525615f03120f5c50\";a:5:{s:6:\"source\";s:32:\"ec15f37e85764e6525615f03120f5c50\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"23f460d0b580ebe1b966af572319c094\";a:5:{s:6:\"source\";s:32:\"23f460d0b580ebe1b966af572319c094\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c2908122fa3cb71aefaecdd8bfa1e385\";a:5:{s:6:\"source\";s:32:\"c2908122fa3cb71aefaecdd8bfa1e385\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"18538a1781b30a57d72cfad3311cb1dd\";a:5:{s:6:\"source\";s:32:\"18538a1781b30a57d72cfad3311cb1dd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"594f250f3292943c525b5365defc432f\";a:5:{s:6:\"source\";s:32:\"594f250f3292943c525b5365defc432f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9a4f11fe6c425c20dc6165213f6b803e\";a:5:{s:6:\"source\";s:32:\"9a4f11fe6c425c20dc6165213f6b803e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ad1f72ed21c456d2b64d8082fe6dc4d\";a:5:{s:6:\"source\";s:32:\"8ad1f72ed21c456d2b64d8082fe6dc4d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9ba9bf20afca0d9f21144fe16ffc8873\";a:5:{s:6:\"source\";s:32:\"9ba9bf20afca0d9f21144fe16ffc8873\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5d646def6d55fbd696898160eef7eb72\";a:5:{s:6:\"source\";s:32:\"5d646def6d55fbd696898160eef7eb72\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b4eb196bf8825be8d1b00d3835342de9\";a:5:{s:6:\"source\";s:32:\"b4eb196bf8825be8d1b00d3835342de9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c98f257972886fac21b0e0e729f7129\";a:5:{s:6:\"source\";s:32:\"2c98f257972886fac21b0e0e729f7129\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c873cab52a0fdee93f134b8db16cfc5a\";a:5:{s:6:\"source\";s:32:\"c873cab52a0fdee93f134b8db16cfc5a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8f040a73de1792e2d4c9d61cdb3e5d52\";a:5:{s:6:\"source\";s:32:\"8f040a73de1792e2d4c9d61cdb3e5d52\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eb7c8eb9840a662d8187a739e69bb0ff\";a:5:{s:6:\"source\";s:32:\"eb7c8eb9840a662d8187a739e69bb0ff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b3c394d3cd81a75857428c2b8b7ec95a\";a:5:{s:6:\"source\";s:32:\"b3c394d3cd81a75857428c2b8b7ec95a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5045279d86a7ec130fc786a3171ec161\";a:5:{s:6:\"source\";s:32:\"5045279d86a7ec130fc786a3171ec161\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a4b2b0816c143fbc3a5324f050a82809\";a:5:{s:6:\"source\";s:32:\"a4b2b0816c143fbc3a5324f050a82809\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"60ad4c9ddef597be6d764af1fd2c720a\";a:5:{s:6:\"source\";s:32:\"60ad4c9ddef597be6d764af1fd2c720a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d8102e11852b2f1d30a814190503350a\";a:5:{s:6:\"source\";s:32:\"d8102e11852b2f1d30a814190503350a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3500709a03140095c5571fe2edc829c1\";a:5:{s:6:\"source\";s:32:\"3500709a03140095c5571fe2edc829c1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e5662e01cb66aca4050ce0fbde89646d\";a:5:{s:6:\"source\";s:32:\"e5662e01cb66aca4050ce0fbde89646d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e5e90fd7289c498a6a065cb7f075a6f4\";a:5:{s:6:\"source\";s:32:\"e5e90fd7289c498a6a065cb7f075a6f4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f4c9c7969c75a5dc65046de44ca5dce5\";a:5:{s:6:\"source\";s:32:\"f4c9c7969c75a5dc65046de44ca5dce5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6667c17ca648e83adf154ff532eda77e\";a:5:{s:6:\"source\";s:32:\"6667c17ca648e83adf154ff532eda77e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d5b0b2dd3f7579c7571c4d818f9dde99\";a:5:{s:6:\"source\";s:32:\"d5b0b2dd3f7579c7571c4d818f9dde99\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"92d053d924e26cbeedd31486f070acd0\";a:5:{s:6:\"source\";s:32:\"92d053d924e26cbeedd31486f070acd0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"76abced99c115d5d45b2cc763fb4d116\";a:5:{s:6:\"source\";s:32:\"76abced99c115d5d45b2cc763fb4d116\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cdd1f7b29539e465854cd06349f4079c\";a:5:{s:6:\"source\";s:32:\"cdd1f7b29539e465854cd06349f4079c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1ff11f1a8c9cf4cb4942599b94b2c83d\";a:5:{s:6:\"source\";s:32:\"1ff11f1a8c9cf4cb4942599b94b2c83d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c6f33c4c4164c44273c04bcc82d6d00\";a:5:{s:6:\"source\";s:32:\"2c6f33c4c4164c44273c04bcc82d6d00\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"da6114b43ed9183ac92b69ba9b829fb0\";a:5:{s:6:\"source\";s:32:\"da6114b43ed9183ac92b69ba9b829fb0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2e719887d7cbf8159d430402579146ee\";a:5:{s:6:\"source\";s:32:\"2e719887d7cbf8159d430402579146ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6e03071d3ace70b418b6a383f4e7ec33\";a:5:{s:6:\"source\";s:32:\"6e03071d3ace70b418b6a383f4e7ec33\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fe7bae3d5a95192013eceae0f66071b2\";a:5:{s:6:\"source\";s:32:\"fe7bae3d5a95192013eceae0f66071b2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f86ef044b9971d56aacce5ab931fcc1\";a:5:{s:6:\"source\";s:32:\"7f86ef044b9971d56aacce5ab931fcc1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6dc2d88ef3ca16f2486363f8ed593d77\";a:5:{s:6:\"source\";s:32:\"6dc2d88ef3ca16f2486363f8ed593d77\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ca6b43da2fe0b2bb187eb72fb634ae41\";a:5:{s:6:\"source\";s:32:\"ca6b43da2fe0b2bb187eb72fb634ae41\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"02f46747a551872c01bcbeb286fc1d54\";a:5:{s:6:\"source\";s:32:\"02f46747a551872c01bcbeb286fc1d54\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e1697613826f7cdd72f9a3c516be0e09\";a:5:{s:6:\"source\";s:32:\"e1697613826f7cdd72f9a3c516be0e09\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3cf70949bd9b5c1dbf2d7463cddd7c40\";a:5:{s:6:\"source\";s:32:\"3cf70949bd9b5c1dbf2d7463cddd7c40\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"547d71fbbb17ac2b712997892d4e3424\";a:5:{s:6:\"source\";s:32:\"547d71fbbb17ac2b712997892d4e3424\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5bfcd8ca106e14e9eed63a217f15ae9f\";a:5:{s:6:\"source\";s:32:\"5bfcd8ca106e14e9eed63a217f15ae9f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f5c16983d86908e3c15830e44aa0dbe2\";a:5:{s:6:\"source\";s:32:\"f5c16983d86908e3c15830e44aa0dbe2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f15ed9480c14549acabbd947803e2db0\";a:5:{s:6:\"source\";s:32:\"f15ed9480c14549acabbd947803e2db0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"811052bd19afc13ca3f25a895a579e56\";a:5:{s:6:\"source\";s:32:\"811052bd19afc13ca3f25a895a579e56\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0354fdc0f48932051144730d7b31afb3\";a:5:{s:6:\"source\";s:32:\"0354fdc0f48932051144730d7b31afb3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8d6c91e3d868f4df3c9ff5b4f9ba3676\";a:5:{s:6:\"source\";s:32:\"8d6c91e3d868f4df3c9ff5b4f9ba3676\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9ce809f482c6520de1d15b5bb85d1ba7\";a:5:{s:6:\"source\";s:32:\"9ce809f482c6520de1d15b5bb85d1ba7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"307944ce19c701e6222c80de1f7a1382\";a:5:{s:6:\"source\";s:32:\"307944ce19c701e6222c80de1f7a1382\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"69bfa0ab72468ce80062aed859f5502d\";a:5:{s:6:\"source\";s:32:\"69bfa0ab72468ce80062aed859f5502d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef258ed42b575c6ef23536efbf4c75f3\";a:5:{s:6:\"source\";s:32:\"ef258ed42b575c6ef23536efbf4c75f3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ce0c19099cb0a7a49fba60e4f250df87\";a:5:{s:6:\"source\";s:32:\"ce0c19099cb0a7a49fba60e4f250df87\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8061cb4ae0fe45a263489fc7b6ddbcaf\";a:5:{s:6:\"source\";s:32:\"8061cb4ae0fe45a263489fc7b6ddbcaf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"890151e480e5e6bf021a73241dfc8a0f\";a:5:{s:6:\"source\";s:32:\"890151e480e5e6bf021a73241dfc8a0f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b702ef45a9aa20308f11596c12093aef\";a:5:{s:6:\"source\";s:32:\"b702ef45a9aa20308f11596c12093aef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6853e9cc50661e40bb54090967c2f908\";a:5:{s:6:\"source\";s:32:\"6853e9cc50661e40bb54090967c2f908\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"568699e7ce89d1018045de708b4e3285\";a:5:{s:6:\"source\";s:32:\"568699e7ce89d1018045de708b4e3285\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c7bdfb8fe50290ac9b479ffc7b88b54\";a:5:{s:6:\"source\";s:32:\"2c7bdfb8fe50290ac9b479ffc7b88b54\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dea3643829697aaf9b3ea519d0fff88f\";a:5:{s:6:\"source\";s:32:\"dea3643829697aaf9b3ea519d0fff88f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"386f78bd39f491b9dd0d3d581a5700d6\";a:5:{s:6:\"source\";s:32:\"386f78bd39f491b9dd0d3d581a5700d6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"53a980cb4d46898131b17c69e785d4e5\";a:5:{s:6:\"source\";s:32:\"53a980cb4d46898131b17c69e785d4e5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"698bacadc509a003b01d32b0513709bc\";a:5:{s:6:\"source\";s:32:\"698bacadc509a003b01d32b0513709bc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9561dd74b60e707da602b4f81d60ed50\";a:5:{s:6:\"source\";s:32:\"9561dd74b60e707da602b4f81d60ed50\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"686b9985660809b1394b7284b3209110\";a:5:{s:6:\"source\";s:32:\"686b9985660809b1394b7284b3209110\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"777bb6e9169a79430eb9fa3ba155302a\";a:5:{s:6:\"source\";s:32:\"777bb6e9169a79430eb9fa3ba155302a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d15bfc56254269082a64abc3f7be35b\";a:5:{s:6:\"source\";s:32:\"4d15bfc56254269082a64abc3f7be35b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7b857ecd3fc5895777d04d33eb0f8e87\";a:5:{s:6:\"source\";s:32:\"7b857ecd3fc5895777d04d33eb0f8e87\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"014f25759aa4a103b44256701a868340\";a:5:{s:6:\"source\";s:32:\"014f25759aa4a103b44256701a868340\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"307e5edfef48be45085fd096feea1428\";a:5:{s:6:\"source\";s:32:\"307e5edfef48be45085fd096feea1428\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ef8e255e987daf4c7c2888a2d9111e2\";a:5:{s:6:\"source\";s:32:\"8ef8e255e987daf4c7c2888a2d9111e2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"01ec99a42eb3a6b7d495e1af6425af3c\";a:5:{s:6:\"source\";s:32:\"01ec99a42eb3a6b7d495e1af6425af3c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8bb2bc10f08760fbe4daf4cc7728d632\";a:5:{s:6:\"source\";s:32:\"8bb2bc10f08760fbe4daf4cc7728d632\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"35dea5f31368c0e80febe39d76b9b8bb\";a:5:{s:6:\"source\";s:32:\"35dea5f31368c0e80febe39d76b9b8bb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff819dc7a9477be7345b5c2134ec4694\";a:5:{s:6:\"source\";s:32:\"ff819dc7a9477be7345b5c2134ec4694\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a42450acfbf941c85d49fb193e32dc5d\";a:5:{s:6:\"source\";s:32:\"a42450acfbf941c85d49fb193e32dc5d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5ba4210147a36cc5edb9a24947f4b50b\";a:5:{s:6:\"source\";s:32:\"5ba4210147a36cc5edb9a24947f4b50b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d2cbd6fe6bb0296dd5b3901107a3fc5\";a:5:{s:6:\"source\";s:32:\"4d2cbd6fe6bb0296dd5b3901107a3fc5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d0a76bc203713fa9425638df2b296276\";a:5:{s:6:\"source\";s:32:\"d0a76bc203713fa9425638df2b296276\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f6634d5a4623f42cdc2e08e93184af93\";a:5:{s:6:\"source\";s:32:\"f6634d5a4623f42cdc2e08e93184af93\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"209591fa126315937627b46ae94ffb69\";a:5:{s:6:\"source\";s:32:\"209591fa126315937627b46ae94ffb69\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d0b17db2fa671df59d7701cbe337a7c5\";a:5:{s:6:\"source\";s:32:\"d0b17db2fa671df59d7701cbe337a7c5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d473c72237859dbb03d7f2903ba4c3d9\";a:5:{s:6:\"source\";s:32:\"d473c72237859dbb03d7f2903ba4c3d9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8893105b852877c0a31f9c60968c9093\";a:5:{s:6:\"source\";s:32:\"8893105b852877c0a31f9c60968c9093\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5c861ec868bd4f60bb842c005e10b3dc\";a:5:{s:6:\"source\";s:32:\"5c861ec868bd4f60bb842c005e10b3dc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"97892b1d0e1d498ba20e21e7d689f083\";a:5:{s:6:\"source\";s:32:\"97892b1d0e1d498ba20e21e7d689f083\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2edbb200ccfe302d7e43b3d9e2b1cd04\";a:5:{s:6:\"source\";s:32:\"2edbb200ccfe302d7e43b3d9e2b1cd04\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"30d0ca2225103a37b91609d816231161\";a:5:{s:6:\"source\";s:32:\"30d0ca2225103a37b91609d816231161\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"564e900c4932398f2b4aa1af955249ee\";a:5:{s:6:\"source\";s:32:\"564e900c4932398f2b4aa1af955249ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ca8dfe685bae5ece56707dde78cb47ca\";a:5:{s:6:\"source\";s:32:\"ca8dfe685bae5ece56707dde78cb47ca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9d0b9606214fa7fdc9dbd57375968328\";a:5:{s:6:\"source\";s:32:\"9d0b9606214fa7fdc9dbd57375968328\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"875402d93b7ff9fe5548b2967911fb0e\";a:5:{s:6:\"source\";s:32:\"875402d93b7ff9fe5548b2967911fb0e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"98e2dbeccbe7473b55cc743166cae60e\";a:5:{s:6:\"source\";s:32:\"98e2dbeccbe7473b55cc743166cae60e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"508f98eed710a816e12d20959672096a\";a:5:{s:6:\"source\";s:32:\"508f98eed710a816e12d20959672096a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ad423ec936ed2acabab9155866cf2eac\";a:5:{s:6:\"source\";s:32:\"ad423ec936ed2acabab9155866cf2eac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e15e3a9e24a5bfbf26b5a15d6f57b1de\";a:5:{s:6:\"source\";s:32:\"e15e3a9e24a5bfbf26b5a15d6f57b1de\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f6310d3fb0e08fd4f03edb674d41170a\";a:5:{s:6:\"source\";s:32:\"f6310d3fb0e08fd4f03edb674d41170a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1eb7790bedfaf739c0cc63a316fd0345\";a:5:{s:6:\"source\";s:32:\"1eb7790bedfaf739c0cc63a316fd0345\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3592269f5d747af209eb5cfc19549d6f\";a:5:{s:6:\"source\";s:32:\"3592269f5d747af209eb5cfc19549d6f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"06d2a0650e560e82d8150834c202898e\";a:5:{s:6:\"source\";s:32:\"06d2a0650e560e82d8150834c202898e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e222537dd2a66afbbc1638c5927f2036\";a:5:{s:6:\"source\";s:32:\"e222537dd2a66afbbc1638c5927f2036\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f6bda59d9b98c1bffc84e7c8707fdc34\";a:5:{s:6:\"source\";s:32:\"f6bda59d9b98c1bffc84e7c8707fdc34\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"649477869bc59400120549b43969df40\";a:5:{s:6:\"source\";s:32:\"649477869bc59400120549b43969df40\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b133d2ebb63f2d092caed9011a4beb0b\";a:5:{s:6:\"source\";s:32:\"b133d2ebb63f2d092caed9011a4beb0b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b17b69a7254a235132c9050e5fa85dab\";a:5:{s:6:\"source\";s:32:\"b17b69a7254a235132c9050e5fa85dab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b3a67bdf7f3842c54f9a8123b99c8cb0\";a:5:{s:6:\"source\";s:32:\"b3a67bdf7f3842c54f9a8123b99c8cb0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1aaee26d023f78d4c33b96bb29f9ae38\";a:5:{s:6:\"source\";s:32:\"1aaee26d023f78d4c33b96bb29f9ae38\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a6bdc2ff3b083bea01fcbb69892d8e1b\";a:5:{s:6:\"source\";s:32:\"a6bdc2ff3b083bea01fcbb69892d8e1b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a1c552cfc42f54b9cfd765371c808e50\";a:5:{s:6:\"source\";s:32:\"a1c552cfc42f54b9cfd765371c808e50\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cd3dbdffde02ddfc5875495f1d2bcbce\";a:5:{s:6:\"source\";s:32:\"cd3dbdffde02ddfc5875495f1d2bcbce\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"767c9feee4afbe9c5d7737272630c925\";a:5:{s:6:\"source\";s:32:\"767c9feee4afbe9c5d7737272630c925\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"560e76cab2f779c2bfadf3b3bd59288c\";a:5:{s:6:\"source\";s:32:\"560e76cab2f779c2bfadf3b3bd59288c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2a3eeeddb3ce33bd81e0cd786b0bbae7\";a:5:{s:6:\"source\";s:32:\"2a3eeeddb3ce33bd81e0cd786b0bbae7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2f7e111c8e4343f5a878c47844f3970a\";a:5:{s:6:\"source\";s:32:\"2f7e111c8e4343f5a878c47844f3970a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0091e9d58b02d3488b1d973931a5ef00\";a:5:{s:6:\"source\";s:32:\"0091e9d58b02d3488b1d973931a5ef00\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cfde2414aa560bbeaba3a54363dcd162\";a:5:{s:6:\"source\";s:32:\"cfde2414aa560bbeaba3a54363dcd162\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e369b4af454bac2173e6ebfe4fc9ed5c\";a:5:{s:6:\"source\";s:32:\"e369b4af454bac2173e6ebfe4fc9ed5c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"40e2e15c5d4c41c81424b12bba636798\";a:5:{s:6:\"source\";s:32:\"40e2e15c5d4c41c81424b12bba636798\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1f304d85c67edf2bf79f28e249e74ec2\";a:5:{s:6:\"source\";s:32:\"1f304d85c67edf2bf79f28e249e74ec2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8f13e8554d670cc6840847aeff3c5c39\";a:5:{s:6:\"source\";s:32:\"8f13e8554d670cc6840847aeff3c5c39\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1cb5f9cfe4957d1381a549b66e288bda\";a:5:{s:6:\"source\";s:32:\"1cb5f9cfe4957d1381a549b66e288bda\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"08a61ff44080dc37bd58bd8fb486ff5e\";a:5:{s:6:\"source\";s:32:\"08a61ff44080dc37bd58bd8fb486ff5e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0916fb6c4fd38270140be7026d0080cd\";a:5:{s:6:\"source\";s:32:\"0916fb6c4fd38270140be7026d0080cd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b3f86d4e165186e901296b45a109b5f9\";a:5:{s:6:\"source\";s:32:\"b3f86d4e165186e901296b45a109b5f9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c342934e6399408b36015778eeb5a48\";a:5:{s:6:\"source\";s:32:\"3c342934e6399408b36015778eeb5a48\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7554189974e34015f0e6d41bee7e7d09\";a:5:{s:6:\"source\";s:32:\"7554189974e34015f0e6d41bee7e7d09\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d16f4aa86e1803730d2620d8a0587644\";a:5:{s:6:\"source\";s:32:\"d16f4aa86e1803730d2620d8a0587644\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"03c8931f42cd2e0ca67a48b6939e2430\";a:5:{s:6:\"source\";s:32:\"03c8931f42cd2e0ca67a48b6939e2430\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"85b080f756e48972a53acb0ea330f60b\";a:5:{s:6:\"source\";s:32:\"85b080f756e48972a53acb0ea330f60b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2a4bdaecd4e2d0d93beec255ad02df38\";a:5:{s:6:\"source\";s:32:\"2a4bdaecd4e2d0d93beec255ad02df38\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"08375f662075e0fb8451a0db4f415219\";a:5:{s:6:\"source\";s:32:\"08375f662075e0fb8451a0db4f415219\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"803f554a9643d3c3fe8ddf5d51462032\";a:5:{s:6:\"source\";s:32:\"803f554a9643d3c3fe8ddf5d51462032\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"026421d481845f6596126d2cd6fbe0ab\";a:5:{s:6:\"source\";s:32:\"026421d481845f6596126d2cd6fbe0ab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f9e72db3018636324b4a04f1b732519e\";a:5:{s:6:\"source\";s:32:\"f9e72db3018636324b4a04f1b732519e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3713f69ce6b18384ab40dba542291d71\";a:5:{s:6:\"source\";s:32:\"3713f69ce6b18384ab40dba542291d71\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1ab5f3f24702181aab48cf5fa0463483\";a:5:{s:6:\"source\";s:32:\"1ab5f3f24702181aab48cf5fa0463483\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ad0a0c9c6ff7e4dde9caa78beb886aac\";a:5:{s:6:\"source\";s:32:\"ad0a0c9c6ff7e4dde9caa78beb886aac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dd8a331ebaab3356301ab4af8acdc96a\";a:5:{s:6:\"source\";s:32:\"dd8a331ebaab3356301ab4af8acdc96a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5cb3daa93da476864d896171bd35973f\";a:5:{s:6:\"source\";s:32:\"5cb3daa93da476864d896171bd35973f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5ab450a66f5f1d0feb5b1a958c9aeeb5\";a:5:{s:6:\"source\";s:32:\"5ab450a66f5f1d0feb5b1a958c9aeeb5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9247d30c848cee723c2f61fb43e7ca54\";a:5:{s:6:\"source\";s:32:\"9247d30c848cee723c2f61fb43e7ca54\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f2d5819c4e6ac453b1f7a0fb078a158\";a:5:{s:6:\"source\";s:32:\"7f2d5819c4e6ac453b1f7a0fb078a158\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"197fb368aa65de1baeb8b56ba90c8857\";a:5:{s:6:\"source\";s:32:\"197fb368aa65de1baeb8b56ba90c8857\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0550b9b927a2e9fe9f52a02403d1027e\";a:5:{s:6:\"source\";s:32:\"0550b9b927a2e9fe9f52a02403d1027e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5a79412429f28a49bf1965a611c7c893\";a:5:{s:6:\"source\";s:32:\"5a79412429f28a49bf1965a611c7c893\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1d04d19dacf4d5dc7f266b2c03b754e0\";a:5:{s:6:\"source\";s:32:\"1d04d19dacf4d5dc7f266b2c03b754e0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f6991c3d22451897ea7da497c70cde62\";a:5:{s:6:\"source\";s:32:\"f6991c3d22451897ea7da497c70cde62\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"271ef49d84f0d84ece7552330991efa7\";a:5:{s:6:\"source\";s:32:\"271ef49d84f0d84ece7552330991efa7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ea414e62139b05200b8079c53166f778\";a:5:{s:6:\"source\";s:32:\"ea414e62139b05200b8079c53166f778\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ba7ebaa055f1d212961f9cd9407b8840\";a:5:{s:6:\"source\";s:32:\"ba7ebaa055f1d212961f9cd9407b8840\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cbaad2c63fe88d4b980db028f6c03aec\";a:5:{s:6:\"source\";s:32:\"cbaad2c63fe88d4b980db028f6c03aec\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"40cc2f12cf3c5b5453ad69d405db5fcf\";a:5:{s:6:\"source\";s:32:\"40cc2f12cf3c5b5453ad69d405db5fcf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5c41fbd01db9bb34d68bcf3fdbb76494\";a:5:{s:6:\"source\";s:32:\"5c41fbd01db9bb34d68bcf3fdbb76494\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c3dc1ae3a256dd70175ac02318bcc4df\";a:5:{s:6:\"source\";s:32:\"c3dc1ae3a256dd70175ac02318bcc4df\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ee73c84a4d86ff1741352d33df3e951b\";a:5:{s:6:\"source\";s:32:\"ee73c84a4d86ff1741352d33df3e951b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f948b15849e81ce45af29e501d021d1d\";a:5:{s:6:\"source\";s:32:\"f948b15849e81ce45af29e501d021d1d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4112b45b4fb8513aca4801d7f7e5b198\";a:5:{s:6:\"source\";s:32:\"4112b45b4fb8513aca4801d7f7e5b198\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ac7f069d91a80e98d01c303f0a329803\";a:5:{s:6:\"source\";s:32:\"ac7f069d91a80e98d01c303f0a329803\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"efc02a68439a806b8427604444f4f141\";a:5:{s:6:\"source\";s:32:\"efc02a68439a806b8427604444f4f141\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7304cef0017e7ed6e84d661d52aef34f\";a:5:{s:6:\"source\";s:32:\"7304cef0017e7ed6e84d661d52aef34f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d33de35bf2c3e4de821f37399300d3a3\";a:5:{s:6:\"source\";s:32:\"d33de35bf2c3e4de821f37399300d3a3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aad92878d9a5893109605edc8ca0c4aa\";a:5:{s:6:\"source\";s:32:\"aad92878d9a5893109605edc8ca0c4aa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"745c30e12366cfd7e9ecdc5e6acbac7f\";a:5:{s:6:\"source\";s:32:\"745c30e12366cfd7e9ecdc5e6acbac7f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"532597e5a04bfa8972f38975c79c9890\";a:5:{s:6:\"source\";s:32:\"532597e5a04bfa8972f38975c79c9890\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7481fc8014881dcb80f7cb6186b3e6ba\";a:5:{s:6:\"source\";s:32:\"7481fc8014881dcb80f7cb6186b3e6ba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"99a0557ae5adc1eb66290e402923110b\";a:5:{s:6:\"source\";s:32:\"99a0557ae5adc1eb66290e402923110b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5668f6cf4687a21852de0f96f593546c\";a:5:{s:6:\"source\";s:32:\"5668f6cf4687a21852de0f96f593546c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1b9c568a7eaa90d38dac15b9dc7e87b8\";a:5:{s:6:\"source\";s:32:\"1b9c568a7eaa90d38dac15b9dc7e87b8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ee049599f95057ad74bbd8f050667b54\";a:5:{s:6:\"source\";s:32:\"ee049599f95057ad74bbd8f050667b54\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"53e1bf7a85c11a876d419b88d6f7e44e\";a:5:{s:6:\"source\";s:32:\"53e1bf7a85c11a876d419b88d6f7e44e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3e4fd3ef2641e0ea036f1a3fa30914f9\";a:5:{s:6:\"source\";s:32:\"3e4fd3ef2641e0ea036f1a3fa30914f9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0bced5e8c8ee70dd88292387b75a0244\";a:5:{s:6:\"source\";s:32:\"0bced5e8c8ee70dd88292387b75a0244\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"82a4b0e255bd6e896dac1f12ac7f0759\";a:5:{s:6:\"source\";s:32:\"82a4b0e255bd6e896dac1f12ac7f0759\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"24eacebec571118f138eabc3b7725180\";a:5:{s:6:\"source\";s:32:\"24eacebec571118f138eabc3b7725180\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f08e9a81b05a1b1646d1399aafc59724\";a:5:{s:6:\"source\";s:32:\"f08e9a81b05a1b1646d1399aafc59724\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a52154db6b4913ecc63c163d43ea7b4a\";a:5:{s:6:\"source\";s:32:\"a52154db6b4913ecc63c163d43ea7b4a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c66ad8b03c81589743785db003af456\";a:5:{s:6:\"source\";s:32:\"3c66ad8b03c81589743785db003af456\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1c47886fc39fd3827b11e22c82b28cd9\";a:5:{s:6:\"source\";s:32:\"1c47886fc39fd3827b11e22c82b28cd9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3483d6a1f3e7ba1bc664ef65411b0be1\";a:5:{s:6:\"source\";s:32:\"3483d6a1f3e7ba1bc664ef65411b0be1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"feb6de2f03f189966046c1dd64e6e93a\";a:5:{s:6:\"source\";s:32:\"feb6de2f03f189966046c1dd64e6e93a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"168ab516b9d9ca02dc0bfd2d180ec6ba\";a:5:{s:6:\"source\";s:32:\"168ab516b9d9ca02dc0bfd2d180ec6ba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bbf15cc918523f85c2bde4265ed6d1e8\";a:5:{s:6:\"source\";s:32:\"bbf15cc918523f85c2bde4265ed6d1e8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"67bc37155768b5bd2f13b74f89d26642\";a:5:{s:6:\"source\";s:32:\"67bc37155768b5bd2f13b74f89d26642\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"30b913976b48afc4fe9b28d6f5104d8c\";a:5:{s:6:\"source\";s:32:\"30b913976b48afc4fe9b28d6f5104d8c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3f7eb041375d24296e37e9ad284d30ba\";a:5:{s:6:\"source\";s:32:\"3f7eb041375d24296e37e9ad284d30ba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7ab90fa9e805e77cf23736e9258538b9\";a:5:{s:6:\"source\";s:32:\"7ab90fa9e805e77cf23736e9258538b9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f7845d9673150f11c58fc92f3ece7cee\";a:5:{s:6:\"source\";s:32:\"f7845d9673150f11c58fc92f3ece7cee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"15c099069469100f81e72c807811add8\";a:5:{s:6:\"source\";s:32:\"15c099069469100f81e72c807811add8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"42e6584c5bbd74a60468c5601d873058\";a:5:{s:6:\"source\";s:32:\"42e6584c5bbd74a60468c5601d873058\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"be39df71682b0b9c24e7a4166dafef77\";a:5:{s:6:\"source\";s:32:\"be39df71682b0b9c24e7a4166dafef77\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3d69c5e0476ba62b04acdbd54904a477\";a:5:{s:6:\"source\";s:32:\"3d69c5e0476ba62b04acdbd54904a477\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"68024cb0bcf5d1b0b41bffb199da4dec\";a:5:{s:6:\"source\";s:32:\"68024cb0bcf5d1b0b41bffb199da4dec\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f3987da3f09e9e0c6c060156c8bfbb27\";a:5:{s:6:\"source\";s:32:\"f3987da3f09e9e0c6c060156c8bfbb27\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c89697be1a8df1b3075907405b3034d2\";a:5:{s:6:\"source\";s:32:\"c89697be1a8df1b3075907405b3034d2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6ddbe460e3d7e93464bd23d738a3b2ce\";a:5:{s:6:\"source\";s:32:\"6ddbe460e3d7e93464bd23d738a3b2ce\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"86312b7b799e3a86ed2945fb479318a4\";a:5:{s:6:\"source\";s:32:\"86312b7b799e3a86ed2945fb479318a4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"666702951eab03147e7cacd2d33143de\";a:5:{s:6:\"source\";s:32:\"666702951eab03147e7cacd2d33143de\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"05c94b20f2406e4da5330e820dd6be8a\";a:5:{s:6:\"source\";s:32:\"05c94b20f2406e4da5330e820dd6be8a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7b9b16c0f18ce97cb906c6a49db870f9\";a:5:{s:6:\"source\";s:32:\"7b9b16c0f18ce97cb906c6a49db870f9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c469c13c673a1e38f06a4e8a0d0b7b3\";a:5:{s:6:\"source\";s:32:\"2c469c13c673a1e38f06a4e8a0d0b7b3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e7431f0d98e1cbc005b53485b3706cac\";a:5:{s:6:\"source\";s:32:\"e7431f0d98e1cbc005b53485b3706cac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"508dba9a40c8ad8898cb681526623f6a\";a:5:{s:6:\"source\";s:32:\"508dba9a40c8ad8898cb681526623f6a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e536ade53c01686f8efef2ac22c09e5f\";a:5:{s:6:\"source\";s:32:\"e536ade53c01686f8efef2ac22c09e5f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3926ba5b368fad835ecd68b777f779f5\";a:5:{s:6:\"source\";s:32:\"3926ba5b368fad835ecd68b777f779f5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7c2be9558fe19c139341a482d959e590\";a:5:{s:6:\"source\";s:32:\"7c2be9558fe19c139341a482d959e590\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a452604acaeffb99a8d6a20a12333d00\";a:5:{s:6:\"source\";s:32:\"a452604acaeffb99a8d6a20a12333d00\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"feda61b9a00eab9a72e156830834150e\";a:5:{s:6:\"source\";s:32:\"feda61b9a00eab9a72e156830834150e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4790070c566742c23ddb8ef82f827565\";a:5:{s:6:\"source\";s:32:\"4790070c566742c23ddb8ef82f827565\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a877bcb7cadea392a87d19c586eb682c\";a:5:{s:6:\"source\";s:32:\"a877bcb7cadea392a87d19c586eb682c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d36bfdaf4b837e8e956670a496614727\";a:5:{s:6:\"source\";s:32:\"d36bfdaf4b837e8e956670a496614727\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6532ca61574cfd224c97ab23691e965a\";a:5:{s:6:\"source\";s:32:\"6532ca61574cfd224c97ab23691e965a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"730f0376f339341c14a58a00477ec372\";a:5:{s:6:\"source\";s:32:\"730f0376f339341c14a58a00477ec372\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f1fda4af52891db0489d6d2917a98b76\";a:5:{s:6:\"source\";s:32:\"f1fda4af52891db0489d6d2917a98b76\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2d033a8c3a179dc9f2315c3964ce1fd0\";a:5:{s:6:\"source\";s:32:\"2d033a8c3a179dc9f2315c3964ce1fd0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c403277c6819a2a263bdf6264d3366c\";a:5:{s:6:\"source\";s:32:\"3c403277c6819a2a263bdf6264d3366c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d22980d7d798e1d290cf3ec2d6ceedb9\";a:5:{s:6:\"source\";s:32:\"d22980d7d798e1d290cf3ec2d6ceedb9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6532c312badc87f1163b0e2b75ac0659\";a:5:{s:6:\"source\";s:32:\"6532c312badc87f1163b0e2b75ac0659\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8150e689dfbe35829e2393ad6fcafa6d\";a:5:{s:6:\"source\";s:32:\"8150e689dfbe35829e2393ad6fcafa6d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"23b0d7c27e4f22191c55cbd4742bca1c\";a:5:{s:6:\"source\";s:32:\"23b0d7c27e4f22191c55cbd4742bca1c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b96346ad821dba9fa7bf326df216b0d5\";a:5:{s:6:\"source\";s:32:\"b96346ad821dba9fa7bf326df216b0d5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3decbb69c3a25a0de8845b54cb598665\";a:5:{s:6:\"source\";s:32:\"3decbb69c3a25a0de8845b54cb598665\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a455bdc072ef08c7787b1f6711bb51be\";a:5:{s:6:\"source\";s:32:\"a455bdc072ef08c7787b1f6711bb51be\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"99393a6037d0c9be1052077967fc6bb2\";a:5:{s:6:\"source\";s:32:\"99393a6037d0c9be1052077967fc6bb2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2ea2ae0080bf56a28cafac5f933824bd\";a:5:{s:6:\"source\";s:32:\"2ea2ae0080bf56a28cafac5f933824bd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"33a9e5e96bb24ed310f1631a2607ad35\";a:5:{s:6:\"source\";s:32:\"33a9e5e96bb24ed310f1631a2607ad35\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cd07b41276f886cbee94890428e47cb0\";a:5:{s:6:\"source\";s:32:\"cd07b41276f886cbee94890428e47cb0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cdeb067f55cf395911d09b32969ef2ea\";a:5:{s:6:\"source\";s:32:\"cdeb067f55cf395911d09b32969ef2ea\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ea3351ccc9b776fcb23398bdff01e447\";a:5:{s:6:\"source\";s:32:\"ea3351ccc9b776fcb23398bdff01e447\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"63bf82c86f8cec42b929de6fb8d189c9\";a:5:{s:6:\"source\";s:32:\"63bf82c86f8cec42b929de6fb8d189c9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ee9b641086721b4c058b021b1ed274d3\";a:5:{s:6:\"source\";s:32:\"ee9b641086721b4c058b021b1ed274d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6c6cff81bd7bba23dc7acf0001a841ba\";a:5:{s:6:\"source\";s:32:\"6c6cff81bd7bba23dc7acf0001a841ba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"14a01358bd6ec7c8f9d122a1be463d39\";a:5:{s:6:\"source\";s:32:\"14a01358bd6ec7c8f9d122a1be463d39\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2e9358a18572639676b6cb0fccc930ae\";a:5:{s:6:\"source\";s:32:\"2e9358a18572639676b6cb0fccc930ae\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3834961f2da84631233868a90f328bd9\";a:5:{s:6:\"source\";s:32:\"3834961f2da84631233868a90f328bd9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4f50aa73959472e5f0df24cbbe502eba\";a:5:{s:6:\"source\";s:32:\"4f50aa73959472e5f0df24cbbe502eba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b083135b1fef2dbda91d41e9bd3ae377\";a:5:{s:6:\"source\";s:32:\"b083135b1fef2dbda91d41e9bd3ae377\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f916348dcf34d949c1ffb6a70e0369e1\";a:5:{s:6:\"source\";s:32:\"f916348dcf34d949c1ffb6a70e0369e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1326e9fecafbfc7e74fcfb52e50286be\";a:5:{s:6:\"source\";s:32:\"1326e9fecafbfc7e74fcfb52e50286be\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7edfefd8c983a2e9093fedac5de140c0\";a:5:{s:6:\"source\";s:32:\"7edfefd8c983a2e9093fedac5de140c0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"612e1703de4e37aec5f713f6089f418b\";a:5:{s:6:\"source\";s:32:\"612e1703de4e37aec5f713f6089f418b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1ad5c470e8f8d96fccc2c24ab781e483\";a:5:{s:6:\"source\";s:32:\"1ad5c470e8f8d96fccc2c24ab781e483\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9b5e63ab1f15d6dc3ea75150024169d5\";a:5:{s:6:\"source\";s:32:\"9b5e63ab1f15d6dc3ea75150024169d5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"279ad214b947eaf4f74b18ea5878e5be\";a:5:{s:6:\"source\";s:32:\"279ad214b947eaf4f74b18ea5878e5be\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c1a73174c7245fd0e3d8107e9d638c3f\";a:5:{s:6:\"source\";s:32:\"c1a73174c7245fd0e3d8107e9d638c3f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"28ee22444f705327f55bd2614b315a47\";a:5:{s:6:\"source\";s:32:\"28ee22444f705327f55bd2614b315a47\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"68038db4b2fc2112dce2f4bbe9f243e7\";a:5:{s:6:\"source\";s:32:\"68038db4b2fc2112dce2f4bbe9f243e7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9a7cfdeb881e8e61904bb21c02a5fbe2\";a:5:{s:6:\"source\";s:32:\"9a7cfdeb881e8e61904bb21c02a5fbe2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"484dd2daae6799c78bf0941e06910069\";a:5:{s:6:\"source\";s:32:\"484dd2daae6799c78bf0941e06910069\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"80072689fd6ddf0328d29a535d6bb115\";a:5:{s:6:\"source\";s:32:\"80072689fd6ddf0328d29a535d6bb115\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0afd23fd9c52bc418e0ebce589decf51\";a:5:{s:6:\"source\";s:32:\"0afd23fd9c52bc418e0ebce589decf51\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"81f61c720759fe63d888c85fd32d85e2\";a:5:{s:6:\"source\";s:32:\"81f61c720759fe63d888c85fd32d85e2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4c79e7adaae7b121b003807df7badce2\";a:5:{s:6:\"source\";s:32:\"4c79e7adaae7b121b003807df7badce2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c88469a9daaad91729b49cbb5c678221\";a:5:{s:6:\"source\";s:32:\"c88469a9daaad91729b49cbb5c678221\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5bdba15990192a8d21253009a9a12e98\";a:5:{s:6:\"source\";s:32:\"5bdba15990192a8d21253009a9a12e98\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"de657b9abd307e3b49803012e148fc8d\";a:5:{s:6:\"source\";s:32:\"de657b9abd307e3b49803012e148fc8d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0bf517f228071d66295baf607e6aeabb\";a:5:{s:6:\"source\";s:32:\"0bf517f228071d66295baf607e6aeabb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c7a966ba88a3db3d748842b91f05c5f\";a:5:{s:6:\"source\";s:32:\"3c7a966ba88a3db3d748842b91f05c5f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"83ee8409ef3310d6d1d0c4560f886561\";a:5:{s:6:\"source\";s:32:\"83ee8409ef3310d6d1d0c4560f886561\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4eb1a51732e09394b5d345a219056868\";a:5:{s:6:\"source\";s:32:\"4eb1a51732e09394b5d345a219056868\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4318e410bd9f668392b42b572cd99afe\";a:5:{s:6:\"source\";s:32:\"4318e410bd9f668392b42b572cd99afe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ea47229d554fb79f82f151c997e31157\";a:5:{s:6:\"source\";s:32:\"ea47229d554fb79f82f151c997e31157\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7ebffd0beeca73d3edb57cdfe8a74a89\";a:5:{s:6:\"source\";s:32:\"7ebffd0beeca73d3edb57cdfe8a74a89\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f9bea7323652d24107a06f306484f60e\";a:5:{s:6:\"source\";s:32:\"f9bea7323652d24107a06f306484f60e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"74f8e564d803af190b17285dd62e2e00\";a:5:{s:6:\"source\";s:32:\"74f8e564d803af190b17285dd62e2e00\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"10364944a474ebbcca6c1a0a0eec90d8\";a:5:{s:6:\"source\";s:32:\"10364944a474ebbcca6c1a0a0eec90d8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cb039bef3ac29269d35deb415f4e3e40\";a:5:{s:6:\"source\";s:32:\"cb039bef3ac29269d35deb415f4e3e40\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4813fb6a93909185bf4c370edd4d4b23\";a:5:{s:6:\"source\";s:32:\"4813fb6a93909185bf4c370edd4d4b23\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"21abcfe569de3b6839ce9011bfd1b976\";a:5:{s:6:\"source\";s:32:\"21abcfe569de3b6839ce9011bfd1b976\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e59f9947b9eff963083edf64f60bef44\";a:5:{s:6:\"source\";s:32:\"e59f9947b9eff963083edf64f60bef44\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d448567e21168a3dd32757b76faa8e09\";a:5:{s:6:\"source\";s:32:\"d448567e21168a3dd32757b76faa8e09\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dece6c6bd70c15619fab3c19e470d5cf\";a:5:{s:6:\"source\";s:32:\"dece6c6bd70c15619fab3c19e470d5cf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aeee902d1f7aacc37a5e0aa627946bcb\";a:5:{s:6:\"source\";s:32:\"aeee902d1f7aacc37a5e0aa627946bcb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a7d8251fae0c87ed0a4eee398b1a5945\";a:5:{s:6:\"source\";s:32:\"a7d8251fae0c87ed0a4eee398b1a5945\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"510fd8112becc7530a71ba8bdc3d2391\";a:5:{s:6:\"source\";s:32:\"510fd8112becc7530a71ba8bdc3d2391\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"40c3de436225f29949b8f22aad06efc9\";a:5:{s:6:\"source\";s:32:\"40c3de436225f29949b8f22aad06efc9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e5c9743f382e43a3b63547ec274b3337\";a:5:{s:6:\"source\";s:32:\"e5c9743f382e43a3b63547ec274b3337\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fb1b26c07faf7685b0804554fb2dca27\";a:5:{s:6:\"source\";s:32:\"fb1b26c07faf7685b0804554fb2dca27\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0b5eb1a0ab78c4927c04401088d2f80f\";a:5:{s:6:\"source\";s:32:\"0b5eb1a0ab78c4927c04401088d2f80f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5538e56816708b93c96e8a3391ee40bc\";a:5:{s:6:\"source\";s:32:\"5538e56816708b93c96e8a3391ee40bc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"000846d39c80d9aeab4da99215db4a7a\";a:5:{s:6:\"source\";s:32:\"000846d39c80d9aeab4da99215db4a7a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"902dfbcda33c6a5d821a788f4a7bf862\";a:5:{s:6:\"source\";s:32:\"902dfbcda33c6a5d821a788f4a7bf862\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"035171d22eea1c11f74de4e83aa083a3\";a:5:{s:6:\"source\";s:32:\"035171d22eea1c11f74de4e83aa083a3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dc76d4064a34f53affb13ca51bce0a93\";a:5:{s:6:\"source\";s:32:\"dc76d4064a34f53affb13ca51bce0a93\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a9f254e3ce54af88bded73c8208ba00f\";a:5:{s:6:\"source\";s:32:\"a9f254e3ce54af88bded73c8208ba00f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"80bc0b595dfa746711b15fe9f26b7c10\";a:5:{s:6:\"source\";s:32:\"80bc0b595dfa746711b15fe9f26b7c10\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"553f4b8c541c700d7d9b85975ac1e5cf\";a:5:{s:6:\"source\";s:32:\"553f4b8c541c700d7d9b85975ac1e5cf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1233a57fa88c51a5e558c3588d51809e\";a:5:{s:6:\"source\";s:32:\"1233a57fa88c51a5e558c3588d51809e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b78309f86ae084851f84d57ec3e965e8\";a:5:{s:6:\"source\";s:32:\"b78309f86ae084851f84d57ec3e965e8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f7a9cc03fa6b7de943b98ff96e3819e3\";a:5:{s:6:\"source\";s:32:\"f7a9cc03fa6b7de943b98ff96e3819e3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8f0064665ae2d98f62f4c2dafa8d2064\";a:5:{s:6:\"source\";s:32:\"8f0064665ae2d98f62f4c2dafa8d2064\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8044002f0d21460fe99bab1c442afa69\";a:5:{s:6:\"source\";s:32:\"8044002f0d21460fe99bab1c442afa69\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a8f6d12fa89b1359860721d9cdfb376b\";a:5:{s:6:\"source\";s:32:\"a8f6d12fa89b1359860721d9cdfb376b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"673aa35407a6ef703067a0f15b6abb0f\";a:5:{s:6:\"source\";s:32:\"673aa35407a6ef703067a0f15b6abb0f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"770321f1c5f23f8afb949188e16d298a\";a:5:{s:6:\"source\";s:32:\"770321f1c5f23f8afb949188e16d298a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8fd2eed20601c4ff2524efb570458b50\";a:5:{s:6:\"source\";s:32:\"8fd2eed20601c4ff2524efb570458b50\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"36efbbd4f13b00bc38fae60a2e690a49\";a:5:{s:6:\"source\";s:32:\"36efbbd4f13b00bc38fae60a2e690a49\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3608d32c85f71025393801f9ef242f25\";a:5:{s:6:\"source\";s:32:\"3608d32c85f71025393801f9ef242f25\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6d673dec589f0b4d13f462a840da2dfe\";a:5:{s:6:\"source\";s:32:\"6d673dec589f0b4d13f462a840da2dfe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1a21bbbe2ead78c9d2a26755ecbfe82b\";a:5:{s:6:\"source\";s:32:\"1a21bbbe2ead78c9d2a26755ecbfe82b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"902cd87ffe0ce52fca45ca670d288992\";a:5:{s:6:\"source\";s:32:\"902cd87ffe0ce52fca45ca670d288992\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"295f51eeee3f37c6d1dccde6e1c9125e\";a:5:{s:6:\"source\";s:32:\"295f51eeee3f37c6d1dccde6e1c9125e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4675d3cafd15e94ff2ea1db19e9d31cc\";a:5:{s:6:\"source\";s:32:\"4675d3cafd15e94ff2ea1db19e9d31cc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d97d607e8640aec061c01e36c27cec2\";a:5:{s:6:\"source\";s:32:\"4d97d607e8640aec061c01e36c27cec2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fb78bde3f5ba7b140121522f4385b746\";a:5:{s:6:\"source\";s:32:\"fb78bde3f5ba7b140121522f4385b746\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ebf8389ba0eccd2022060f6822723d00\";a:5:{s:6:\"source\";s:32:\"ebf8389ba0eccd2022060f6822723d00\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c06895829021086ee8c4005aa8d549b6\";a:5:{s:6:\"source\";s:32:\"c06895829021086ee8c4005aa8d549b6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"381c14b8e55042d22b403b83e273b48a\";a:5:{s:6:\"source\";s:32:\"381c14b8e55042d22b403b83e273b48a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ecfb61f604a984a3e88379648b7d5a9d\";a:5:{s:6:\"source\";s:32:\"ecfb61f604a984a3e88379648b7d5a9d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0dba8fcc6b53d8ac0a488e4e0940df3f\";a:5:{s:6:\"source\";s:32:\"0dba8fcc6b53d8ac0a488e4e0940df3f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b4d6a763735755cd59b37702853ac0a8\";a:5:{s:6:\"source\";s:32:\"b4d6a763735755cd59b37702853ac0a8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1f5a3e25eaed7f98b8b78b745d878500\";a:5:{s:6:\"source\";s:32:\"1f5a3e25eaed7f98b8b78b745d878500\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"36004ac71091f8afc0cf8837b49f4e77\";a:5:{s:6:\"source\";s:32:\"36004ac71091f8afc0cf8837b49f4e77\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6c87126a00cc5dca3b9c052034cf7c3e\";a:5:{s:6:\"source\";s:32:\"6c87126a00cc5dca3b9c052034cf7c3e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2379e37e9772faf4460be046368e5a12\";a:5:{s:6:\"source\";s:32:\"2379e37e9772faf4460be046368e5a12\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c7aae8ba1e60606509979e5e62d263ef\";a:5:{s:6:\"source\";s:32:\"c7aae8ba1e60606509979e5e62d263ef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5db355941ae2ed2f8a31ab7bbb3bc56e\";a:5:{s:6:\"source\";s:32:\"5db355941ae2ed2f8a31ab7bbb3bc56e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2f503b01170e0c0fe9520810d1f3e497\";a:5:{s:6:\"source\";s:32:\"2f503b01170e0c0fe9520810d1f3e497\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6def8d806ff25dbe55ff6c97304b53aa\";a:5:{s:6:\"source\";s:32:\"6def8d806ff25dbe55ff6c97304b53aa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9deadb4f56db553e80d5cff4fb3239d5\";a:5:{s:6:\"source\";s:32:\"9deadb4f56db553e80d5cff4fb3239d5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eefc8c021d4936c261727c0a2d0b8f79\";a:5:{s:6:\"source\";s:32:\"eefc8c021d4936c261727c0a2d0b8f79\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5fe43046aee1cf7120bffa1d4f66c3e5\";a:5:{s:6:\"source\";s:32:\"5fe43046aee1cf7120bffa1d4f66c3e5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"717cffa92fad783f623e53beea3f8ab8\";a:5:{s:6:\"source\";s:32:\"717cffa92fad783f623e53beea3f8ab8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8c1120f26db8683e9e7bdf7f8d4e21de\";a:5:{s:6:\"source\";s:32:\"8c1120f26db8683e9e7bdf7f8d4e21de\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"96dc04993f96b8d8a4a78ca94823d118\";a:5:{s:6:\"source\";s:32:\"96dc04993f96b8d8a4a78ca94823d118\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"463ff70c30126ac2491376544966f52d\";a:5:{s:6:\"source\";s:32:\"463ff70c30126ac2491376544966f52d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3a284e55b63cb61b0d75ad09ec81f038\";a:5:{s:6:\"source\";s:32:\"3a284e55b63cb61b0d75ad09ec81f038\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a52da680522fa2f296f78b308362952\";a:5:{s:6:\"source\";s:32:\"8a52da680522fa2f296f78b308362952\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"31a0c6a9804e9bae95d6bc088c369b43\";a:5:{s:6:\"source\";s:32:\"31a0c6a9804e9bae95d6bc088c369b43\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"43ee1d051088c4189b3c5192b7f04f85\";a:5:{s:6:\"source\";s:32:\"43ee1d051088c4189b3c5192b7f04f85\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c465aaaf4b4cb3db943efdb126780abd\";a:5:{s:6:\"source\";s:32:\"c465aaaf4b4cb3db943efdb126780abd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ac794dd98534437b8902e696da38c058\";a:5:{s:6:\"source\";s:32:\"ac794dd98534437b8902e696da38c058\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b6951e5ab4a98463255c167f59a9a7b5\";a:5:{s:6:\"source\";s:32:\"b6951e5ab4a98463255c167f59a9a7b5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c4722deca68392e16b11cede97c5248e\";a:5:{s:6:\"source\";s:32:\"c4722deca68392e16b11cede97c5248e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"266239d6420f232ccf8a3a4a60a825be\";a:5:{s:6:\"source\";s:32:\"266239d6420f232ccf8a3a4a60a825be\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e05513e33d1d5d6bd3a3e840315d1f47\";a:5:{s:6:\"source\";s:32:\"e05513e33d1d5d6bd3a3e840315d1f47\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"37dc2ba17a43447f0a15d0ff21708272\";a:5:{s:6:\"source\";s:32:\"37dc2ba17a43447f0a15d0ff21708272\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"801e7720d768074746540e51c1dae84e\";a:5:{s:6:\"source\";s:32:\"801e7720d768074746540e51c1dae84e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d3ea21cbb8604c097c0537eda5bc2f4c\";a:5:{s:6:\"source\";s:32:\"d3ea21cbb8604c097c0537eda5bc2f4c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8f0d5da006760c98173b094f9005b020\";a:5:{s:6:\"source\";s:32:\"8f0d5da006760c98173b094f9005b020\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cb8bee8dec8b886f9e8158b417ee2ae3\";a:5:{s:6:\"source\";s:32:\"cb8bee8dec8b886f9e8158b417ee2ae3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b1f027aa2b8a0fc0396651dffb718d1d\";a:5:{s:6:\"source\";s:32:\"b1f027aa2b8a0fc0396651dffb718d1d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"31fbeec4a41f4cfe466b621bb9605d30\";a:5:{s:6:\"source\";s:32:\"31fbeec4a41f4cfe466b621bb9605d30\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"777e36e584f89339c9539e67ec89d9a7\";a:5:{s:6:\"source\";s:32:\"777e36e584f89339c9539e67ec89d9a7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9e95ee1f28c829d6961985110de4e0b8\";a:5:{s:6:\"source\";s:32:\"9e95ee1f28c829d6961985110de4e0b8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1c0a976686b0e2b6f230df7c25f4714a\";a:5:{s:6:\"source\";s:32:\"1c0a976686b0e2b6f230df7c25f4714a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"809e1ac324b87f31bd6ba2a79a511b75\";a:5:{s:6:\"source\";s:32:\"809e1ac324b87f31bd6ba2a79a511b75\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c428761be1ec4ef1630398a7ab889c75\";a:5:{s:6:\"source\";s:32:\"c428761be1ec4ef1630398a7ab889c75\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bc1d052245dccbf2313f9592b830aa40\";a:5:{s:6:\"source\";s:32:\"bc1d052245dccbf2313f9592b830aa40\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3dc0cd4019eaafda1f17d707919bf6f4\";a:5:{s:6:\"source\";s:32:\"3dc0cd4019eaafda1f17d707919bf6f4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"de20a769afc0d0f4c8f4d6804f1e2c3d\";a:5:{s:6:\"source\";s:32:\"de20a769afc0d0f4c8f4d6804f1e2c3d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"84d47e9c1a522feb61a44a916a9eff89\";a:5:{s:6:\"source\";s:32:\"84d47e9c1a522feb61a44a916a9eff89\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c3e82426c4eddb248ca77dbdd1de8cf3\";a:5:{s:6:\"source\";s:32:\"c3e82426c4eddb248ca77dbdd1de8cf3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d822a1e2856e6380a84e222298fab789\";a:5:{s:6:\"source\";s:32:\"d822a1e2856e6380a84e222298fab789\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6ab35df873e84964d099ef0e050a7623\";a:5:{s:6:\"source\";s:32:\"6ab35df873e84964d099ef0e050a7623\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f360c8746e72a056e7dc1ac622ff7c33\";a:5:{s:6:\"source\";s:32:\"f360c8746e72a056e7dc1ac622ff7c33\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"31a1bffd7dd1987a1dd0e314c0d722f5\";a:5:{s:6:\"source\";s:32:\"31a1bffd7dd1987a1dd0e314c0d722f5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7905a03af5e5f371eefd5f3b9c56f89a\";a:5:{s:6:\"source\";s:32:\"7905a03af5e5f371eefd5f3b9c56f89a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f9f275ce8c1b741d7ee1397e4b554e2c\";a:5:{s:6:\"source\";s:32:\"f9f275ce8c1b741d7ee1397e4b554e2c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ca56298933eb0b12148cffd729d8fd7c\";a:5:{s:6:\"source\";s:32:\"ca56298933eb0b12148cffd729d8fd7c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a0444deeb8610b158596dccf377e4e88\";a:5:{s:6:\"source\";s:32:\"a0444deeb8610b158596dccf377e4e88\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d5294bfcfb962732f95699d42263e0d6\";a:5:{s:6:\"source\";s:32:\"d5294bfcfb962732f95699d42263e0d6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6f5fa6451569e039baa7fd6968ac3f70\";a:5:{s:6:\"source\";s:32:\"6f5fa6451569e039baa7fd6968ac3f70\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9fb9d2a2475578a953632ec9aa7a959c\";a:5:{s:6:\"source\";s:32:\"9fb9d2a2475578a953632ec9aa7a959c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"062531007cb181076a28c8966667e445\";a:5:{s:6:\"source\";s:32:\"062531007cb181076a28c8966667e445\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"897540457d179282be4df7875d50b053\";a:5:{s:6:\"source\";s:32:\"897540457d179282be4df7875d50b053\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f6935a5978be21655c4cb47d3733b901\";a:5:{s:6:\"source\";s:32:\"f6935a5978be21655c4cb47d3733b901\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4eaab7a71313392ec7a101b4451d9b9b\";a:5:{s:6:\"source\";s:32:\"4eaab7a71313392ec7a101b4451d9b9b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8836bcfb691e41b0c1dc3950e4be5484\";a:5:{s:6:\"source\";s:32:\"8836bcfb691e41b0c1dc3950e4be5484\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"74025601ea1e0ea12b93dcdae6b6319a\";a:5:{s:6:\"source\";s:32:\"74025601ea1e0ea12b93dcdae6b6319a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"95f3a31d99b4578212f7539ab28939da\";a:5:{s:6:\"source\";s:32:\"95f3a31d99b4578212f7539ab28939da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2355b8b42f579174ef84efdfda2e438f\";a:5:{s:6:\"source\";s:32:\"2355b8b42f579174ef84efdfda2e438f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e1b07aebfc4cfe3158bcfe5317d433b7\";a:5:{s:6:\"source\";s:32:\"e1b07aebfc4cfe3158bcfe5317d433b7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4809389a39ff8b5ec8bd8b695228a14d\";a:5:{s:6:\"source\";s:32:\"4809389a39ff8b5ec8bd8b695228a14d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c224fffa16f86087d2cb7253c7e01d3\";a:5:{s:6:\"source\";s:32:\"2c224fffa16f86087d2cb7253c7e01d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"33249d12c4f424497bf0cb222c19226f\";a:5:{s:6:\"source\";s:32:\"33249d12c4f424497bf0cb222c19226f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d6ab8f702d1eb10d25849c8afac07db6\";a:5:{s:6:\"source\";s:32:\"d6ab8f702d1eb10d25849c8afac07db6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7581a66467034fcfdab7153bd5fdcb37\";a:5:{s:6:\"source\";s:32:\"7581a66467034fcfdab7153bd5fdcb37\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bb43fa246fc449394b7b33ce9e82cae3\";a:5:{s:6:\"source\";s:32:\"bb43fa246fc449394b7b33ce9e82cae3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aaaeb16462f95d3e7ff128f3cbb39ba9\";a:5:{s:6:\"source\";s:32:\"aaaeb16462f95d3e7ff128f3cbb39ba9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f99523473848ceb9cad878989862c628\";a:5:{s:6:\"source\";s:32:\"f99523473848ceb9cad878989862c628\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff811f63d619ef69e53a687ec4af545a\";a:5:{s:6:\"source\";s:32:\"ff811f63d619ef69e53a687ec4af545a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"73452918e1f3fd5d2e130a22a9ae56e6\";a:5:{s:6:\"source\";s:32:\"73452918e1f3fd5d2e130a22a9ae56e6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"206c8f1acacfb117111d2d607e4c03d2\";a:5:{s:6:\"source\";s:32:\"206c8f1acacfb117111d2d607e4c03d2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"22675aa016118e8cdf036631f8678518\";a:5:{s:6:\"source\";s:32:\"22675aa016118e8cdf036631f8678518\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3245d2bb0337d712b7202dac3cb22c9f\";a:5:{s:6:\"source\";s:32:\"3245d2bb0337d712b7202dac3cb22c9f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cbd6fb269fbe9a2c569b54a500001bfe\";a:5:{s:6:\"source\";s:32:\"cbd6fb269fbe9a2c569b54a500001bfe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dcb6a835a4e7ce51b028e0c247d73c3d\";a:5:{s:6:\"source\";s:32:\"dcb6a835a4e7ce51b028e0c247d73c3d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f469177e115d468725e51179ab7b19c8\";a:5:{s:6:\"source\";s:32:\"f469177e115d468725e51179ab7b19c8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"645b382bc114aeecc207bf6ed3f70997\";a:5:{s:6:\"source\";s:32:\"645b382bc114aeecc207bf6ed3f70997\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"396b2d501f26dc5c0e2f64dc515d4222\";a:5:{s:6:\"source\";s:32:\"396b2d501f26dc5c0e2f64dc515d4222\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"637f331c8d49583a2364502e65044828\";a:5:{s:6:\"source\";s:32:\"637f331c8d49583a2364502e65044828\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eaee67f38e3a274d0722a4ae1ef0869f\";a:5:{s:6:\"source\";s:32:\"eaee67f38e3a274d0722a4ae1ef0869f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"06e825f324438be8def4be350bda8f6c\";a:5:{s:6:\"source\";s:32:\"06e825f324438be8def4be350bda8f6c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b9b1473152df66757f13604439e724aa\";a:5:{s:6:\"source\";s:32:\"b9b1473152df66757f13604439e724aa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"da53c33507a6850d94e40195c379abc7\";a:5:{s:6:\"source\";s:32:\"da53c33507a6850d94e40195c379abc7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"40258bc38e4634434f66b30abd5ef040\";a:5:{s:6:\"source\";s:32:\"40258bc38e4634434f66b30abd5ef040\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b7e1cf0f9f4e9260632c8e1b18691a7c\";a:5:{s:6:\"source\";s:32:\"b7e1cf0f9f4e9260632c8e1b18691a7c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef67bdcfa6912db59ac94b69301e2ec9\";a:5:{s:6:\"source\";s:32:\"ef67bdcfa6912db59ac94b69301e2ec9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d1ab933bbec2a0d8abb64ce12609a664\";a:5:{s:6:\"source\";s:32:\"d1ab933bbec2a0d8abb64ce12609a664\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"adebc1ec0df6f24398dc999b2e8b4577\";a:5:{s:6:\"source\";s:32:\"adebc1ec0df6f24398dc999b2e8b4577\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e8a50ea427e1dd68f4af8a40bc396993\";a:5:{s:6:\"source\";s:32:\"e8a50ea427e1dd68f4af8a40bc396993\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b5a7d17947058e66d1782394576ec972\";a:5:{s:6:\"source\";s:32:\"b5a7d17947058e66d1782394576ec972\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fc8a9f8ec3c0f4dc309b51eb1f910f14\";a:5:{s:6:\"source\";s:32:\"fc8a9f8ec3c0f4dc309b51eb1f910f14\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"21f9887f01c7cb2b517f81b33f871fcc\";a:5:{s:6:\"source\";s:32:\"21f9887f01c7cb2b517f81b33f871fcc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6f29bf75f90b5e6e7d7c7bf5c409c8ab\";a:5:{s:6:\"source\";s:32:\"6f29bf75f90b5e6e7d7c7bf5c409c8ab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8b5a7008765ebbd1314f069d83ed83d6\";a:5:{s:6:\"source\";s:32:\"8b5a7008765ebbd1314f069d83ed83d6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"21819f1896c5a6ae9327707309910436\";a:5:{s:6:\"source\";s:32:\"21819f1896c5a6ae9327707309910436\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"35e469e9162ce0bd44dccb2ead89a8c6\";a:5:{s:6:\"source\";s:32:\"35e469e9162ce0bd44dccb2ead89a8c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e4f3f5b9e92ef8896cf511c3079045fb\";a:5:{s:6:\"source\";s:32:\"e4f3f5b9e92ef8896cf511c3079045fb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e8281546d6400740ec549b136f1f8755\";a:5:{s:6:\"source\";s:32:\"e8281546d6400740ec549b136f1f8755\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"23df6dd77978f5ad55478b90dc0bec01\";a:5:{s:6:\"source\";s:32:\"23df6dd77978f5ad55478b90dc0bec01\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"acc17e3abe34afe461d70e68a78094dc\";a:5:{s:6:\"source\";s:32:\"acc17e3abe34afe461d70e68a78094dc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c02ac95f1251c7aef06242cfdc0581ca\";a:5:{s:6:\"source\";s:32:\"c02ac95f1251c7aef06242cfdc0581ca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cde034afb3f75aef8950b1e06c6c339b\";a:5:{s:6:\"source\";s:32:\"cde034afb3f75aef8950b1e06c6c339b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"21b4acfdbb01c05fa3a6da5a938b2d68\";a:5:{s:6:\"source\";s:32:\"21b4acfdbb01c05fa3a6da5a938b2d68\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e1659cd32a45ddc2f5739be2eef6e609\";a:5:{s:6:\"source\";s:32:\"e1659cd32a45ddc2f5739be2eef6e609\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2811cd252f5a2c56910f9abef6d71909\";a:5:{s:6:\"source\";s:32:\"2811cd252f5a2c56910f9abef6d71909\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2aa9bfc0a7d949eb7842eafb4b13c56f\";a:5:{s:6:\"source\";s:32:\"2aa9bfc0a7d949eb7842eafb4b13c56f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4c0c65ca1aedb09bfb7703bfed9a54af\";a:5:{s:6:\"source\";s:32:\"4c0c65ca1aedb09bfb7703bfed9a54af\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9f85676f593158b4fde00e660558e216\";a:5:{s:6:\"source\";s:32:\"9f85676f593158b4fde00e660558e216\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a5a8c9ba492d7b73ad2989beb683a22f\";a:5:{s:6:\"source\";s:32:\"a5a8c9ba492d7b73ad2989beb683a22f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ba56481531bd096df070cf5c4b41251e\";a:5:{s:6:\"source\";s:32:\"ba56481531bd096df070cf5c4b41251e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5c7197da60ce1866a73ad1434899bd47\";a:5:{s:6:\"source\";s:32:\"5c7197da60ce1866a73ad1434899bd47\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2036571abd10a9aedd2418ce0a9f37a2\";a:5:{s:6:\"source\";s:32:\"2036571abd10a9aedd2418ce0a9f37a2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"21f5068815e401072082616f75bfc253\";a:5:{s:6:\"source\";s:32:\"21f5068815e401072082616f75bfc253\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"45a0e32fafc02d529f71efea6327e469\";a:5:{s:6:\"source\";s:32:\"45a0e32fafc02d529f71efea6327e469\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8fd18ca326813094139e04b152821be6\";a:5:{s:6:\"source\";s:32:\"8fd18ca326813094139e04b152821be6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"37439d12df736923735b914c1c74684c\";a:5:{s:6:\"source\";s:32:\"37439d12df736923735b914c1c74684c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dcc0e0b0d5e8251b63d3e044ca232d9a\";a:5:{s:6:\"source\";s:32:\"dcc0e0b0d5e8251b63d3e044ca232d9a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"885d2557d74ad459714043c3fbcbb2eb\";a:5:{s:6:\"source\";s:32:\"885d2557d74ad459714043c3fbcbb2eb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"14bcff78314256f30dd1de83faeef475\";a:5:{s:6:\"source\";s:32:\"14bcff78314256f30dd1de83faeef475\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"719426698d8fd92038afe3be471f5807\";a:5:{s:6:\"source\";s:32:\"719426698d8fd92038afe3be471f5807\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"75265cc255bf9c913fcf357967ab7b4b\";a:5:{s:6:\"source\";s:32:\"75265cc255bf9c913fcf357967ab7b4b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b39c0f05c881d4177c2151b9473383b7\";a:5:{s:6:\"source\";s:32:\"b39c0f05c881d4177c2151b9473383b7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e5cedb397990810273dbb08c76c2afa1\";a:5:{s:6:\"source\";s:32:\"e5cedb397990810273dbb08c76c2afa1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"360c7bf14727722bb108c58ecd9017f8\";a:5:{s:6:\"source\";s:32:\"360c7bf14727722bb108c58ecd9017f8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"42b012144101d52055dff449dae820fa\";a:5:{s:6:\"source\";s:32:\"42b012144101d52055dff449dae820fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0b306fc6a503a28501aeb59ba8b89268\";a:5:{s:6:\"source\";s:32:\"0b306fc6a503a28501aeb59ba8b89268\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"746449a210ce51120b8d17c9e915c115\";a:5:{s:6:\"source\";s:32:\"746449a210ce51120b8d17c9e915c115\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ba314826d9e689925dab9db14ca18b06\";a:5:{s:6:\"source\";s:32:\"ba314826d9e689925dab9db14ca18b06\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b898afc6e2da3a417a820f52e16b9469\";a:5:{s:6:\"source\";s:32:\"b898afc6e2da3a417a820f52e16b9469\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c9c2ac488b4a41377071777bee07b3ac\";a:5:{s:6:\"source\";s:32:\"c9c2ac488b4a41377071777bee07b3ac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a4f2fd067737e829607f0e7cf0692a85\";a:5:{s:6:\"source\";s:32:\"a4f2fd067737e829607f0e7cf0692a85\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e6aec0b4371bdaa1b1dcdc3bd7aed773\";a:5:{s:6:\"source\";s:32:\"e6aec0b4371bdaa1b1dcdc3bd7aed773\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d5a1bfc089726c50ebea4508f858c8cd\";a:5:{s:6:\"source\";s:32:\"d5a1bfc089726c50ebea4508f858c8cd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6d3d98a45409d39a3e6149dab59c5556\";a:5:{s:6:\"source\";s:32:\"6d3d98a45409d39a3e6149dab59c5556\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fe99429f10557a70d67739b5e45abbf3\";a:5:{s:6:\"source\";s:32:\"fe99429f10557a70d67739b5e45abbf3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"378076901b7f0aa1c362a1277e917fdc\";a:5:{s:6:\"source\";s:32:\"378076901b7f0aa1c362a1277e917fdc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cea82833baa7a295a50bde8bad602cbb\";a:5:{s:6:\"source\";s:32:\"cea82833baa7a295a50bde8bad602cbb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"07853937f5a6e0d0556c46dc297a81e1\";a:5:{s:6:\"source\";s:32:\"07853937f5a6e0d0556c46dc297a81e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f0fe0f8b0af3dafd2508331f6ceced44\";a:5:{s:6:\"source\";s:32:\"f0fe0f8b0af3dafd2508331f6ceced44\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c0dfdd37b8bbe1b2c37ea9e21b2eddca\";a:5:{s:6:\"source\";s:32:\"c0dfdd37b8bbe1b2c37ea9e21b2eddca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"20789cde45ae10b0212767598c7323a7\";a:5:{s:6:\"source\";s:32:\"20789cde45ae10b0212767598c7323a7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bd32156ea1ffd868a99163a59d573c1c\";a:5:{s:6:\"source\";s:32:\"bd32156ea1ffd868a99163a59d573c1c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dfb9b940b40f4766256ab2438ca58394\";a:5:{s:6:\"source\";s:32:\"dfb9b940b40f4766256ab2438ca58394\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ea3e7e0321ad6a300792998c050eb5a7\";a:5:{s:6:\"source\";s:32:\"ea3e7e0321ad6a300792998c050eb5a7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e44fe19f02d93410121b4fae22a8fc4b\";a:5:{s:6:\"source\";s:32:\"e44fe19f02d93410121b4fae22a8fc4b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c801ea2e8c298bf25301a03b0eb7b817\";a:5:{s:6:\"source\";s:32:\"c801ea2e8c298bf25301a03b0eb7b817\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"49a1a765dfe94b87267261c68ada85e1\";a:5:{s:6:\"source\";s:32:\"49a1a765dfe94b87267261c68ada85e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ec68ee2b2786021896bfbee9c5aebc7d\";a:5:{s:6:\"source\";s:32:\"ec68ee2b2786021896bfbee9c5aebc7d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"39626237151ef41513766c1bd0308735\";a:5:{s:6:\"source\";s:32:\"39626237151ef41513766c1bd0308735\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"076f372c8c95e49da6a0035d533607d2\";a:5:{s:6:\"source\";s:32:\"076f372c8c95e49da6a0035d533607d2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e0c873b88b1e548cda574ec50efaebe8\";a:5:{s:6:\"source\";s:32:\"e0c873b88b1e548cda574ec50efaebe8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"96d1242744970e7ff2919efe68ba08fa\";a:5:{s:6:\"source\";s:32:\"96d1242744970e7ff2919efe68ba08fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"00916b1c91c07bd8213a890f69854509\";a:5:{s:6:\"source\";s:32:\"00916b1c91c07bd8213a890f69854509\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c172593c76ece79fc52269ef161cdeae\";a:5:{s:6:\"source\";s:32:\"c172593c76ece79fc52269ef161cdeae\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"72f59b7406c11d1265a9a38d0aa8930d\";a:5:{s:6:\"source\";s:32:\"72f59b7406c11d1265a9a38d0aa8930d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"666208ada9ceb6ad857199726db87b39\";a:5:{s:6:\"source\";s:32:\"666208ada9ceb6ad857199726db87b39\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9b193dda77a304238cbfcb6ece292574\";a:5:{s:6:\"source\";s:32:\"9b193dda77a304238cbfcb6ece292574\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0bb6af79a8151592f39679fbc4865557\";a:5:{s:6:\"source\";s:32:\"0bb6af79a8151592f39679fbc4865557\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9d73c5f4203ca99d84bf9bfd501e8c14\";a:5:{s:6:\"source\";s:32:\"9d73c5f4203ca99d84bf9bfd501e8c14\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b1fb08231a68ae666e5d2d87a87f65ae\";a:5:{s:6:\"source\";s:32:\"b1fb08231a68ae666e5d2d87a87f65ae\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"72d4a64f74e5746ec0b7628de882d532\";a:5:{s:6:\"source\";s:32:\"72d4a64f74e5746ec0b7628de882d532\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2eef35a8385f6f8839c16eeceb5aaa91\";a:5:{s:6:\"source\";s:32:\"2eef35a8385f6f8839c16eeceb5aaa91\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b8dbcf0a6d478d0e7f90593e59d304ca\";a:5:{s:6:\"source\";s:32:\"b8dbcf0a6d478d0e7f90593e59d304ca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f1022bf64c9157cecd944871d865494c\";a:5:{s:6:\"source\";s:32:\"f1022bf64c9157cecd944871d865494c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d5efc1fbd7b3c41d9f11e8e59efc7e7d\";a:5:{s:6:\"source\";s:32:\"d5efc1fbd7b3c41d9f11e8e59efc7e7d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cd12f98ea8a897187e07f465c8da8ca9\";a:5:{s:6:\"source\";s:32:\"cd12f98ea8a897187e07f465c8da8ca9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"37adf5fe2b16ec433c39cba94a5c0ccd\";a:5:{s:6:\"source\";s:32:\"37adf5fe2b16ec433c39cba94a5c0ccd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3d73398c5ff4a65070d6feacad84573f\";a:5:{s:6:\"source\";s:32:\"3d73398c5ff4a65070d6feacad84573f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8825d26519b73e326c66169a2309047c\";a:5:{s:6:\"source\";s:32:\"8825d26519b73e326c66169a2309047c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"04a79b10982e359db62d92cf708846c3\";a:5:{s:6:\"source\";s:32:\"04a79b10982e359db62d92cf708846c3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"71fe8d18c105c9d1d2f66b76596a4875\";a:5:{s:6:\"source\";s:32:\"71fe8d18c105c9d1d2f66b76596a4875\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a5168bd8acd4b2f22ef40ea06560ae39\";a:5:{s:6:\"source\";s:32:\"a5168bd8acd4b2f22ef40ea06560ae39\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7feabc9c21832161916fe947e63f874f\";a:5:{s:6:\"source\";s:32:\"7feabc9c21832161916fe947e63f874f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"862911796659217ed64ba0dbc500897f\";a:5:{s:6:\"source\";s:32:\"862911796659217ed64ba0dbc500897f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"014bb49f2963ba9727abec587c8697e8\";a:5:{s:6:\"source\";s:32:\"014bb49f2963ba9727abec587c8697e8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7cede52b678053c8392970c12b306387\";a:5:{s:6:\"source\";s:32:\"7cede52b678053c8392970c12b306387\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6f262cfb8f6c098f16195d6c61a74d8b\";a:5:{s:6:\"source\";s:32:\"6f262cfb8f6c098f16195d6c61a74d8b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"be672bc0a3b436ef481fb3e82e060a18\";a:5:{s:6:\"source\";s:32:\"be672bc0a3b436ef481fb3e82e060a18\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0db87ed5e15076e9c10c9f1970e15173\";a:5:{s:6:\"source\";s:32:\"0db87ed5e15076e9c10c9f1970e15173\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"627e026083a357fa2579bae71a57b27b\";a:5:{s:6:\"source\";s:32:\"627e026083a357fa2579bae71a57b27b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4fe220ad817b1e35d150a76846c0f210\";a:5:{s:6:\"source\";s:32:\"4fe220ad817b1e35d150a76846c0f210\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ac63971228ba5638eeba2d174032d384\";a:5:{s:6:\"source\";s:32:\"ac63971228ba5638eeba2d174032d384\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6b14d526a1a8b85a6a3ced2178c58506\";a:5:{s:6:\"source\";s:32:\"6b14d526a1a8b85a6a3ced2178c58506\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"31041126664e49082483fe8484d781de\";a:5:{s:6:\"source\";s:32:\"31041126664e49082483fe8484d781de\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3aeb5e5213476987ce5d41f1fd55161a\";a:5:{s:6:\"source\";s:32:\"3aeb5e5213476987ce5d41f1fd55161a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d1f1f38d36211718cd98dbd8e43aa17a\";a:5:{s:6:\"source\";s:32:\"d1f1f38d36211718cd98dbd8e43aa17a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aab19bbb0b18ddc278ba513dde4e207a\";a:5:{s:6:\"source\";s:32:\"aab19bbb0b18ddc278ba513dde4e207a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6ade5113bc99103c9f8fc94b8b899c37\";a:5:{s:6:\"source\";s:32:\"6ade5113bc99103c9f8fc94b8b899c37\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3fa573ca72ddf634a3fa86e57a50c2a7\";a:5:{s:6:\"source\";s:32:\"3fa573ca72ddf634a3fa86e57a50c2a7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"87d42c92c1d4e7119bbe30ed2c0f3a19\";a:5:{s:6:\"source\";s:32:\"87d42c92c1d4e7119bbe30ed2c0f3a19\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"38717b0a3e51af809ee14da9c89e0b3b\";a:5:{s:6:\"source\";s:32:\"38717b0a3e51af809ee14da9c89e0b3b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a2310182d49e5018d29d0af82955d95f\";a:5:{s:6:\"source\";s:32:\"a2310182d49e5018d29d0af82955d95f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a002de7d697f86e91757fbaf987cff0a\";a:5:{s:6:\"source\";s:32:\"a002de7d697f86e91757fbaf987cff0a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5eb432c1ec7230b5085e6960c5c3b681\";a:5:{s:6:\"source\";s:32:\"5eb432c1ec7230b5085e6960c5c3b681\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"432732ea68b10ca23efefd2c614cd2ee\";a:5:{s:6:\"source\";s:32:\"432732ea68b10ca23efefd2c614cd2ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2baf4efa9c7473763e8e486be2a263ff\";a:5:{s:6:\"source\";s:32:\"2baf4efa9c7473763e8e486be2a263ff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f5722fdcbbd3d176392d171700c93d3\";a:5:{s:6:\"source\";s:32:\"7f5722fdcbbd3d176392d171700c93d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1a7cac615033eaf8e4ddbd5642f68822\";a:5:{s:6:\"source\";s:32:\"1a7cac615033eaf8e4ddbd5642f68822\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d44557433b6136abfbaa1001bfb76146\";a:5:{s:6:\"source\";s:32:\"d44557433b6136abfbaa1001bfb76146\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8c4eddb97a40f44c23f3624c08cadaf8\";a:5:{s:6:\"source\";s:32:\"8c4eddb97a40f44c23f3624c08cadaf8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1c6e424e35c61730660db6f3850ec5b7\";a:5:{s:6:\"source\";s:32:\"1c6e424e35c61730660db6f3850ec5b7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aa6285dcc1a1dd88ec66002911e537a6\";a:5:{s:6:\"source\";s:32:\"aa6285dcc1a1dd88ec66002911e537a6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0892f4367b420dbd5a6e58407b33f5f6\";a:5:{s:6:\"source\";s:32:\"0892f4367b420dbd5a6e58407b33f5f6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e89bd363a5d4e6fbb9a24657345f16b7\";a:5:{s:6:\"source\";s:32:\"e89bd363a5d4e6fbb9a24657345f16b7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1e98dfc65383e6edc501a4967967070e\";a:5:{s:6:\"source\";s:32:\"1e98dfc65383e6edc501a4967967070e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ea8efa5cc0cfc8ee8ae663ca19980f5b\";a:5:{s:6:\"source\";s:32:\"ea8efa5cc0cfc8ee8ae663ca19980f5b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5021a52d72feee73e045f45bff8e0735\";a:5:{s:6:\"source\";s:32:\"5021a52d72feee73e045f45bff8e0735\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f406ae971a1e945dc4ebcf414d4db5f8\";a:5:{s:6:\"source\";s:32:\"f406ae971a1e945dc4ebcf414d4db5f8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ceea1668c8e52340fd619d41aa4df93a\";a:5:{s:6:\"source\";s:32:\"ceea1668c8e52340fd619d41aa4df93a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d43321cb9758618e7d9dd0d0468cd183\";a:5:{s:6:\"source\";s:32:\"d43321cb9758618e7d9dd0d0468cd183\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"21a3887c28aa0bdcbacdea5ad2f1222e\";a:5:{s:6:\"source\";s:32:\"21a3887c28aa0bdcbacdea5ad2f1222e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d3ccf88c79ec58bfe4c535efafdea7ca\";a:5:{s:6:\"source\";s:32:\"d3ccf88c79ec58bfe4c535efafdea7ca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d77286e2b52cac0b15f4678a3dfde76d\";a:5:{s:6:\"source\";s:32:\"d77286e2b52cac0b15f4678a3dfde76d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"60ff2415cb42b9296b1862d7b57136e4\";a:5:{s:6:\"source\";s:32:\"60ff2415cb42b9296b1862d7b57136e4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"58defff66c6f0fb12e9ef4a1ca7bb2d9\";a:5:{s:6:\"source\";s:32:\"58defff66c6f0fb12e9ef4a1ca7bb2d9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3353f0fea5db0b77a8741fb8d0b5eb53\";a:5:{s:6:\"source\";s:32:\"3353f0fea5db0b77a8741fb8d0b5eb53\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9c78edd990266a47490d78b0f45ac3b3\";a:5:{s:6:\"source\";s:32:\"9c78edd990266a47490d78b0f45ac3b3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d1484ed9c6d49b05fe8ba29300d14ecd\";a:5:{s:6:\"source\";s:32:\"d1484ed9c6d49b05fe8ba29300d14ecd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b9e5f0617011636a08b300089d79ec5e\";a:5:{s:6:\"source\";s:32:\"b9e5f0617011636a08b300089d79ec5e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"34bcf22c82f5f9a99944e681416e88b0\";a:5:{s:6:\"source\";s:32:\"34bcf22c82f5f9a99944e681416e88b0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"058629b477cf6ec1291af2296a033e20\";a:5:{s:6:\"source\";s:32:\"058629b477cf6ec1291af2296a033e20\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e58a53c4a8649d62e5446e1e64c910e2\";a:5:{s:6:\"source\";s:32:\"e58a53c4a8649d62e5446e1e64c910e2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d3fc17631b389b3798f69b737d0c9af4\";a:5:{s:6:\"source\";s:32:\"d3fc17631b389b3798f69b737d0c9af4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bb5f525aaf3fbf1ff7b69f18a72c9da1\";a:5:{s:6:\"source\";s:32:\"bb5f525aaf3fbf1ff7b69f18a72c9da1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"294933e2311989b8cc17ce24d48304d9\";a:5:{s:6:\"source\";s:32:\"294933e2311989b8cc17ce24d48304d9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef71c5d79723502fce6222d3b9fe8748\";a:5:{s:6:\"source\";s:32:\"ef71c5d79723502fce6222d3b9fe8748\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7932f3a367e37ed80ac818f640c5222f\";a:5:{s:6:\"source\";s:32:\"7932f3a367e37ed80ac818f640c5222f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a3d58366963941e9187e0071bd6ab94\";a:5:{s:6:\"source\";s:32:\"8a3d58366963941e9187e0071bd6ab94\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a0bd4c831c5d87f64eb7264a8bd68abe\";a:5:{s:6:\"source\";s:32:\"a0bd4c831c5d87f64eb7264a8bd68abe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef4d19a8db6d8a0da2ed79a7094db161\";a:5:{s:6:\"source\";s:32:\"ef4d19a8db6d8a0da2ed79a7094db161\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6eaeb2cf38846edc2a7ef7240a8a6200\";a:5:{s:6:\"source\";s:32:\"6eaeb2cf38846edc2a7ef7240a8a6200\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"20075acbbc0b5d5f168efc757096d16a\";a:5:{s:6:\"source\";s:32:\"20075acbbc0b5d5f168efc757096d16a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"874ff0d76ab79011d8a276d7de302c46\";a:5:{s:6:\"source\";s:32:\"874ff0d76ab79011d8a276d7de302c46\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3b8f69c4c601eb9762b04a70cb6c7e25\";a:5:{s:6:\"source\";s:32:\"3b8f69c4c601eb9762b04a70cb6c7e25\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eaec0b51723700a2731b246e73678fdf\";a:5:{s:6:\"source\";s:32:\"eaec0b51723700a2731b246e73678fdf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"066bb67c16ab3074aa395fd8d90bde12\";a:5:{s:6:\"source\";s:32:\"066bb67c16ab3074aa395fd8d90bde12\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"52f88ac79af88b1c6989a1c206a0e1ee\";a:5:{s:6:\"source\";s:32:\"52f88ac79af88b1c6989a1c206a0e1ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8382cf0f7ceaa194d370c113909c5976\";a:5:{s:6:\"source\";s:32:\"8382cf0f7ceaa194d370c113909c5976\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8515b1e8dc66bf0baa95764ad060072f\";a:5:{s:6:\"source\";s:32:\"8515b1e8dc66bf0baa95764ad060072f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"90cda792b5630f28f3ebe49afd724788\";a:5:{s:6:\"source\";s:32:\"90cda792b5630f28f3ebe49afd724788\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b6af4e83e76d58f6645bec1bff646162\";a:5:{s:6:\"source\";s:32:\"b6af4e83e76d58f6645bec1bff646162\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5701917e23f3f45534d6ce56b1346b9f\";a:5:{s:6:\"source\";s:32:\"5701917e23f3f45534d6ce56b1346b9f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a719afb7e6aca9d5c3e5dcbcb2dfb97\";a:5:{s:6:\"source\";s:32:\"8a719afb7e6aca9d5c3e5dcbcb2dfb97\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5a22226be1fa9cacd52bf046ba467786\";a:5:{s:6:\"source\";s:32:\"5a22226be1fa9cacd52bf046ba467786\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"43d4ffe57739e1b95433549aafa10784\";a:5:{s:6:\"source\";s:32:\"43d4ffe57739e1b95433549aafa10784\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"02fa9e4bd03acbcab405ee1a4c2270f9\";a:5:{s:6:\"source\";s:32:\"02fa9e4bd03acbcab405ee1a4c2270f9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0335ff23c41b2f18a40cd8779670c966\";a:5:{s:6:\"source\";s:32:\"0335ff23c41b2f18a40cd8779670c966\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e690febbfc4bce7e1ab6a8fd9009b5e9\";a:5:{s:6:\"source\";s:32:\"e690febbfc4bce7e1ab6a8fd9009b5e9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"58aaac1ef879be80e671bb1424517f67\";a:5:{s:6:\"source\";s:32:\"58aaac1ef879be80e671bb1424517f67\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2d76d335abe63ee06bde83bf54a5b73b\";a:5:{s:6:\"source\";s:32:\"2d76d335abe63ee06bde83bf54a5b73b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a2b9e3e63f696898e5249a48de63bbc\";a:5:{s:6:\"source\";s:32:\"8a2b9e3e63f696898e5249a48de63bbc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"566b6c126520b5cdd1fd612d3c0c0b38\";a:5:{s:6:\"source\";s:32:\"566b6c126520b5cdd1fd612d3c0c0b38\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6736c4d180a84f27ccffc7a7c3693535\";a:5:{s:6:\"source\";s:32:\"6736c4d180a84f27ccffc7a7c3693535\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a7e894924ff3abd3a467cfe910132d46\";a:5:{s:6:\"source\";s:32:\"a7e894924ff3abd3a467cfe910132d46\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"84bc923dbb5f7a2a88187e926a3bf4eb\";a:5:{s:6:\"source\";s:32:\"84bc923dbb5f7a2a88187e926a3bf4eb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"22e37c4cd000f7638371973ce8013bbb\";a:5:{s:6:\"source\";s:32:\"22e37c4cd000f7638371973ce8013bbb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"81f561406cf082feba56e86776775b44\";a:5:{s:6:\"source\";s:32:\"81f561406cf082feba56e86776775b44\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6e0428966b439d9e7ac5945c19525ced\";a:5:{s:6:\"source\";s:32:\"6e0428966b439d9e7ac5945c19525ced\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fd25d33a313a2da2f59eacce91fb2885\";a:5:{s:6:\"source\";s:32:\"fd25d33a313a2da2f59eacce91fb2885\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"907b1864c6794634a9522429f69f415d\";a:5:{s:6:\"source\";s:32:\"907b1864c6794634a9522429f69f415d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a5af14da807dd4353b85f532e38ebe9a\";a:5:{s:6:\"source\";s:32:\"a5af14da807dd4353b85f532e38ebe9a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3ceeaeb79bc2f485b09effd5496123cd\";a:5:{s:6:\"source\";s:32:\"3ceeaeb79bc2f485b09effd5496123cd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d2c9cf513924ad0f7ac51f6b251e6958\";a:5:{s:6:\"source\";s:32:\"d2c9cf513924ad0f7ac51f6b251e6958\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a1b6f116923de09ccb6a30e81555a762\";a:5:{s:6:\"source\";s:32:\"a1b6f116923de09ccb6a30e81555a762\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ab3d6a3d51e90c8a9be8e6623447f335\";a:5:{s:6:\"source\";s:32:\"ab3d6a3d51e90c8a9be8e6623447f335\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2588f30027b903e5ef85bbe9dd0323d7\";a:5:{s:6:\"source\";s:32:\"2588f30027b903e5ef85bbe9dd0323d7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ca89f3d26234a3b4a8c20570d48ae906\";a:5:{s:6:\"source\";s:32:\"ca89f3d26234a3b4a8c20570d48ae906\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d8df55e7bf6a2a93d4d4c60edf184436\";a:5:{s:6:\"source\";s:32:\"d8df55e7bf6a2a93d4d4c60edf184436\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8792630c7433c3944046da9739d96df5\";a:5:{s:6:\"source\";s:32:\"8792630c7433c3944046da9739d96df5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bae1f684d79cc745b5978b6474333fa7\";a:5:{s:6:\"source\";s:32:\"bae1f684d79cc745b5978b6474333fa7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9539c3ebfafa7a114fd98a32ce15bb0b\";a:5:{s:6:\"source\";s:32:\"9539c3ebfafa7a114fd98a32ce15bb0b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"30641de6de1109705bcb178b7e296e6f\";a:5:{s:6:\"source\";s:32:\"30641de6de1109705bcb178b7e296e6f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5e0c442684a526be4eff25e3b32395bc\";a:5:{s:6:\"source\";s:32:\"5e0c442684a526be4eff25e3b32395bc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"737dc8b594bff7664f6fd2f7e554df9f\";a:5:{s:6:\"source\";s:32:\"737dc8b594bff7664f6fd2f7e554df9f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f1bdf0582e62985f53b4d6344cc9a56f\";a:5:{s:6:\"source\";s:32:\"f1bdf0582e62985f53b4d6344cc9a56f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"16b3abdddb32936e03b636b3a312ca63\";a:5:{s:6:\"source\";s:32:\"16b3abdddb32936e03b636b3a312ca63\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0c5b504555746270abaa32ff5df5715a\";a:5:{s:6:\"source\";s:32:\"0c5b504555746270abaa32ff5df5715a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cf93d454f2367dae34fdcf2b4637f0e0\";a:5:{s:6:\"source\";s:32:\"cf93d454f2367dae34fdcf2b4637f0e0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"acca4087cf74768bf7fe3f8fafbeab8f\";a:5:{s:6:\"source\";s:32:\"acca4087cf74768bf7fe3f8fafbeab8f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d7e6937b66f15754463b0f0ebd65895\";a:5:{s:6:\"source\";s:32:\"4d7e6937b66f15754463b0f0ebd65895\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"44e368c2aeaa7c45fc2db8ae8d6eec6f\";a:5:{s:6:\"source\";s:32:\"44e368c2aeaa7c45fc2db8ae8d6eec6f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0add5e8bbc4e99227662a9de2f33b10d\";a:5:{s:6:\"source\";s:32:\"0add5e8bbc4e99227662a9de2f33b10d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c8f666c49faeaf79ef8a678832770214\";a:5:{s:6:\"source\";s:32:\"c8f666c49faeaf79ef8a678832770214\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"653e32fd79fe08975ed618ae43446933\";a:5:{s:6:\"source\";s:32:\"653e32fd79fe08975ed618ae43446933\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2603924879b0e3bc33fe7e95ff3a47f8\";a:5:{s:6:\"source\";s:32:\"2603924879b0e3bc33fe7e95ff3a47f8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5cf712fa2dd4282d0d0b83af7d8de990\";a:5:{s:6:\"source\";s:32:\"5cf712fa2dd4282d0d0b83af7d8de990\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"905d9e07e8581334c05bff08b569f3fb\";a:5:{s:6:\"source\";s:32:\"905d9e07e8581334c05bff08b569f3fb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ac7081a6ffb91aac8b1a00156ab6bfbb\";a:5:{s:6:\"source\";s:32:\"ac7081a6ffb91aac8b1a00156ab6bfbb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"40d3a49d72e6ef065c6f573f2e0cbba8\";a:5:{s:6:\"source\";s:32:\"40d3a49d72e6ef065c6f573f2e0cbba8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"18e3c66b61739023426ff58ae66e7f0f\";a:5:{s:6:\"source\";s:32:\"18e3c66b61739023426ff58ae66e7f0f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6951d319f219ae4a32f69a479811de8b\";a:5:{s:6:\"source\";s:32:\"6951d319f219ae4a32f69a479811de8b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d795a0dc0db5b387354b2e9780184503\";a:5:{s:6:\"source\";s:32:\"d795a0dc0db5b387354b2e9780184503\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6276fb5e2c075343686087d542ce4da2\";a:5:{s:6:\"source\";s:32:\"6276fb5e2c075343686087d542ce4da2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"25664bc70312af0fc8c9602cd1542704\";a:5:{s:6:\"source\";s:32:\"25664bc70312af0fc8c9602cd1542704\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"02eb9b4c7a8530a5d692a82c553d5777\";a:5:{s:6:\"source\";s:32:\"02eb9b4c7a8530a5d692a82c553d5777\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d97b3720b7536e12c9bd79c6572ed359\";a:5:{s:6:\"source\";s:32:\"d97b3720b7536e12c9bd79c6572ed359\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a831daf1f0c87cf3fd6f1e4995996dd2\";a:5:{s:6:\"source\";s:32:\"a831daf1f0c87cf3fd6f1e4995996dd2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5d28982cef0da52f439f621c9e562cff\";a:5:{s:6:\"source\";s:32:\"5d28982cef0da52f439f621c9e562cff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bb70d0f68aeeefe22c5dde86e022593a\";a:5:{s:6:\"source\";s:32:\"bb70d0f68aeeefe22c5dde86e022593a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5807745c5504a19fbc1d86d24aa5c0b1\";a:5:{s:6:\"source\";s:32:\"5807745c5504a19fbc1d86d24aa5c0b1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5c8531cbbc02778a2ee3a40e324983c1\";a:5:{s:6:\"source\";s:32:\"5c8531cbbc02778a2ee3a40e324983c1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3f257e004a0fc1a0559d45668ccdb9da\";a:5:{s:6:\"source\";s:32:\"3f257e004a0fc1a0559d45668ccdb9da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5b564a64b4800e9cbbf0a3668769fcbd\";a:5:{s:6:\"source\";s:32:\"5b564a64b4800e9cbbf0a3668769fcbd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ce3ce1e8f4ac9887793c5d94c3ee8d9d\";a:5:{s:6:\"source\";s:32:\"ce3ce1e8f4ac9887793c5d94c3ee8d9d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d1a2956806b6215969ca6ca7da389091\";a:5:{s:6:\"source\";s:32:\"d1a2956806b6215969ca6ca7da389091\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"13a3733c1237b01448f44350e4cdab18\";a:5:{s:6:\"source\";s:32:\"13a3733c1237b01448f44350e4cdab18\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"419cf7ef25d3f5ed9445a20681a0636f\";a:5:{s:6:\"source\";s:32:\"419cf7ef25d3f5ed9445a20681a0636f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4bbf975954ff7b35c5621bc6d752f07a\";a:5:{s:6:\"source\";s:32:\"4bbf975954ff7b35c5621bc6d752f07a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1f27af5be3db868275ba63be7a80b522\";a:5:{s:6:\"source\";s:32:\"1f27af5be3db868275ba63be7a80b522\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2d630d2044715422f990d3a9739ab066\";a:5:{s:6:\"source\";s:32:\"2d630d2044715422f990d3a9739ab066\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"46e19f5ae3f714f74c4f8217d8250e7e\";a:5:{s:6:\"source\";s:32:\"46e19f5ae3f714f74c4f8217d8250e7e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8c17dfdca28d9f4b8f9fdc3b071ecb57\";a:5:{s:6:\"source\";s:32:\"8c17dfdca28d9f4b8f9fdc3b071ecb57\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3946383536cf7505b86e5fc86f96e51d\";a:5:{s:6:\"source\";s:32:\"3946383536cf7505b86e5fc86f96e51d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6a172380d99f1870a919a1b2ca5e8b04\";a:5:{s:6:\"source\";s:32:\"6a172380d99f1870a919a1b2ca5e8b04\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e6180c529423d8e98cd9f43cddbefd09\";a:5:{s:6:\"source\";s:32:\"e6180c529423d8e98cd9f43cddbefd09\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7b36cdfcb0a5a2733bd6409b8c4949ac\";a:5:{s:6:\"source\";s:32:\"7b36cdfcb0a5a2733bd6409b8c4949ac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ac79898c5c4425c333d0991e32c6cda0\";a:5:{s:6:\"source\";s:32:\"ac79898c5c4425c333d0991e32c6cda0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"69409233381762a422e65af9862e6cd5\";a:5:{s:6:\"source\";s:32:\"69409233381762a422e65af9862e6cd5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c045283d978d44ef445eead13e5780f\";a:5:{s:6:\"source\";s:32:\"2c045283d978d44ef445eead13e5780f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5891320fb37154a1755b3da6060a8ed3\";a:5:{s:6:\"source\";s:32:\"5891320fb37154a1755b3da6060a8ed3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fbe0bfd197cd34c3b78d1584dc203e64\";a:5:{s:6:\"source\";s:32:\"fbe0bfd197cd34c3b78d1584dc203e64\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"02902951954f7d553997a1538c568b59\";a:5:{s:6:\"source\";s:32:\"02902951954f7d553997a1538c568b59\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5b99d4560f93d891ca68f40487ce679d\";a:5:{s:6:\"source\";s:32:\"5b99d4560f93d891ca68f40487ce679d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"67d79cdfa28bf9b5f52b8d50a2f6add1\";a:5:{s:6:\"source\";s:32:\"67d79cdfa28bf9b5f52b8d50a2f6add1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7a9401dc9db27e8c1d768af11d11fd57\";a:5:{s:6:\"source\";s:32:\"7a9401dc9db27e8c1d768af11d11fd57\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"81e2c9aaf1aeba5aa6f6c27ce595dfad\";a:5:{s:6:\"source\";s:32:\"81e2c9aaf1aeba5aa6f6c27ce595dfad\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c79871f703cd6e98f1a9125abcf6907d\";a:5:{s:6:\"source\";s:32:\"c79871f703cd6e98f1a9125abcf6907d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"30906d98667def8ea2585fc2e27a8689\";a:5:{s:6:\"source\";s:32:\"30906d98667def8ea2585fc2e27a8689\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ada3d70d8b70f554197d5720844aee4b\";a:5:{s:6:\"source\";s:32:\"ada3d70d8b70f554197d5720844aee4b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f87d8acea4fa48ea991022b34cf2509\";a:5:{s:6:\"source\";s:32:\"7f87d8acea4fa48ea991022b34cf2509\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2cee11303e25ccdd350e61de9ea95a04\";a:5:{s:6:\"source\";s:32:\"2cee11303e25ccdd350e61de9ea95a04\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"85b0b88bf267c6d02f32347289b46522\";a:5:{s:6:\"source\";s:32:\"85b0b88bf267c6d02f32347289b46522\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ad6dc5e91387805b0455f61c50b75449\";a:5:{s:6:\"source\";s:32:\"ad6dc5e91387805b0455f61c50b75449\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"96030f84a9db03b448018b2efcabe573\";a:5:{s:6:\"source\";s:32:\"96030f84a9db03b448018b2efcabe573\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e5b1a4e152a989e88716e88d993f5077\";a:5:{s:6:\"source\";s:32:\"e5b1a4e152a989e88716e88d993f5077\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7bd7702ee2ef7875c55c0f411a3b9660\";a:5:{s:6:\"source\";s:32:\"7bd7702ee2ef7875c55c0f411a3b9660\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"96d2affa405935f8feb27c0432325088\";a:5:{s:6:\"source\";s:32:\"96d2affa405935f8feb27c0432325088\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9d4d9fa6e6f3434ff51592a26ca4ff92\";a:5:{s:6:\"source\";s:32:\"9d4d9fa6e6f3434ff51592a26ca4ff92\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cb143835f328a8ab694758173db9b7ae\";a:5:{s:6:\"source\";s:32:\"cb143835f328a8ab694758173db9b7ae\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"52aac5f30a484b44b319e5d63c960111\";a:5:{s:6:\"source\";s:32:\"52aac5f30a484b44b319e5d63c960111\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2d4f1f9d262f66977c00c6d5c9a8659b\";a:5:{s:6:\"source\";s:32:\"2d4f1f9d262f66977c00c6d5c9a8659b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f2529796844fb13893bd12ff24cdb91\";a:5:{s:6:\"source\";s:32:\"7f2529796844fb13893bd12ff24cdb91\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9e335ffd0ec0da33761e9e3fa011bf86\";a:5:{s:6:\"source\";s:32:\"9e335ffd0ec0da33761e9e3fa011bf86\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b303b87159180f44482ab50b91708b26\";a:5:{s:6:\"source\";s:32:\"b303b87159180f44482ab50b91708b26\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"caf9f3e3684feb8d2a336cb9cea64f1e\";a:5:{s:6:\"source\";s:32:\"caf9f3e3684feb8d2a336cb9cea64f1e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"015445891ea54e78e08f70bb7cd3791d\";a:5:{s:6:\"source\";s:32:\"015445891ea54e78e08f70bb7cd3791d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9c6b8b5d95fbeee9195d88f98ce572bc\";a:5:{s:6:\"source\";s:32:\"9c6b8b5d95fbeee9195d88f98ce572bc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"42e714e7bb98cb14dcf6e9ecafe24b81\";a:5:{s:6:\"source\";s:32:\"42e714e7bb98cb14dcf6e9ecafe24b81\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2ee4a99d530c2665760106b36a106f66\";a:5:{s:6:\"source\";s:32:\"2ee4a99d530c2665760106b36a106f66\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3a07ceee36e06b8cfe2755a251a2ab23\";a:5:{s:6:\"source\";s:32:\"3a07ceee36e06b8cfe2755a251a2ab23\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6e5d934bd38a1b1692c49330c380fde4\";a:5:{s:6:\"source\";s:32:\"6e5d934bd38a1b1692c49330c380fde4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a5bcab8a90575d57fb53adacb7934e5a\";a:5:{s:6:\"source\";s:32:\"a5bcab8a90575d57fb53adacb7934e5a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bcfc1869e6e84109b27fd1cf01e84c20\";a:5:{s:6:\"source\";s:32:\"bcfc1869e6e84109b27fd1cf01e84c20\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d814b07455ca00d616deb64a824a0874\";a:5:{s:6:\"source\";s:32:\"d814b07455ca00d616deb64a824a0874\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dd68430cf8fdd18e17bdab6c7d9c0fd5\";a:5:{s:6:\"source\";s:32:\"dd68430cf8fdd18e17bdab6c7d9c0fd5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d58c5b67bf66a8eeac1dab83d0465026\";a:5:{s:6:\"source\";s:32:\"d58c5b67bf66a8eeac1dab83d0465026\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c6aea3631609f0050d378c5da9c239c2\";a:5:{s:6:\"source\";s:32:\"c6aea3631609f0050d378c5da9c239c2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b67697c986c3b4ca4494b9ca156a588e\";a:5:{s:6:\"source\";s:32:\"b67697c986c3b4ca4494b9ca156a588e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fcd029f5499d8244ee5d5d63cef46c1f\";a:5:{s:6:\"source\";s:32:\"fcd029f5499d8244ee5d5d63cef46c1f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fe7afb917090376c43b018f5183ce124\";a:5:{s:6:\"source\";s:32:\"fe7afb917090376c43b018f5183ce124\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dfaaaf981c5ebac86516302a23206846\";a:5:{s:6:\"source\";s:32:\"dfaaaf981c5ebac86516302a23206846\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"72d557f3079b566b8b5c58aeaa30c5b6\";a:5:{s:6:\"source\";s:32:\"72d557f3079b566b8b5c58aeaa30c5b6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"93e2a906a0d9c3315e0879bec1d5b615\";a:5:{s:6:\"source\";s:32:\"93e2a906a0d9c3315e0879bec1d5b615\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0a2853b0d95ea9e947bb4c467faff9ff\";a:5:{s:6:\"source\";s:32:\"0a2853b0d95ea9e947bb4c467faff9ff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6bae64dfca233fdf9adee6e9a2ab50bc\";a:5:{s:6:\"source\";s:32:\"6bae64dfca233fdf9adee6e9a2ab50bc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3e4b06e45e62db8fb6b28de9d377ebc5\";a:5:{s:6:\"source\";s:32:\"3e4b06e45e62db8fb6b28de9d377ebc5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6fa91e183373b1e87e7bc5bab8135bf8\";a:5:{s:6:\"source\";s:32:\"6fa91e183373b1e87e7bc5bab8135bf8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6609c0833dfa1d0166b70a5561d4834d\";a:5:{s:6:\"source\";s:32:\"6609c0833dfa1d0166b70a5561d4834d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"90a86ecf725a04d370a5286703514938\";a:5:{s:6:\"source\";s:32:\"90a86ecf725a04d370a5286703514938\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c63055c171121c673e8231848fc7b0ab\";a:5:{s:6:\"source\";s:32:\"c63055c171121c673e8231848fc7b0ab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aecfa01689f66ce0255a8be7138a498c\";a:5:{s:6:\"source\";s:32:\"aecfa01689f66ce0255a8be7138a498c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e50128203361932a53f268a32956dddb\";a:5:{s:6:\"source\";s:32:\"e50128203361932a53f268a32956dddb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"da54472d100b37f1859ac857ff64fe69\";a:5:{s:6:\"source\";s:32:\"da54472d100b37f1859ac857ff64fe69\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"91c6c80e9a117feda47720a5d70ee94c\";a:5:{s:6:\"source\";s:32:\"91c6c80e9a117feda47720a5d70ee94c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1b7f2d04fcf0da1a852dee15e37bc905\";a:5:{s:6:\"source\";s:32:\"1b7f2d04fcf0da1a852dee15e37bc905\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b21c8834fcf25cc822e42511f5a210b4\";a:5:{s:6:\"source\";s:32:\"b21c8834fcf25cc822e42511f5a210b4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2043edaf4deeb40e18ae7d42ebc31989\";a:5:{s:6:\"source\";s:32:\"2043edaf4deeb40e18ae7d42ebc31989\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dc6f76b4b778fb42ac151543a3f58bb6\";a:5:{s:6:\"source\";s:32:\"dc6f76b4b778fb42ac151543a3f58bb6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"51129a3f92b0a3c84e3e127b89ceae6a\";a:5:{s:6:\"source\";s:32:\"51129a3f92b0a3c84e3e127b89ceae6a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2ffbee2d2b5bb1bd2f288949dd1a5c33\";a:5:{s:6:\"source\";s:32:\"2ffbee2d2b5bb1bd2f288949dd1a5c33\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0ab068ea63a318216cc7d63efcf82021\";a:5:{s:6:\"source\";s:32:\"0ab068ea63a318216cc7d63efcf82021\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff853898ce68dc28fe9becbdd24de0cf\";a:5:{s:6:\"source\";s:32:\"ff853898ce68dc28fe9becbdd24de0cf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a9ae63521e22505ddd386c96ef0e5170\";a:5:{s:6:\"source\";s:32:\"a9ae63521e22505ddd386c96ef0e5170\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6fb07062d62be5f20427d41951f973f6\";a:5:{s:6:\"source\";s:32:\"6fb07062d62be5f20427d41951f973f6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"050b89e3e54121247f9593b771323f7a\";a:5:{s:6:\"source\";s:32:\"050b89e3e54121247f9593b771323f7a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1ba2d3b02132eac1c767578455f7c2ef\";a:5:{s:6:\"source\";s:32:\"1ba2d3b02132eac1c767578455f7c2ef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"90fa0a333a7412a04328f83e1d6c75fa\";a:5:{s:6:\"source\";s:32:\"90fa0a333a7412a04328f83e1d6c75fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5c8d690c034bcf4db49adc352163749e\";a:5:{s:6:\"source\";s:32:\"5c8d690c034bcf4db49adc352163749e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"14d5d34ad441c152105b91f18357f2d6\";a:5:{s:6:\"source\";s:32:\"14d5d34ad441c152105b91f18357f2d6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4f16e5bdd5b67937da7be39e4ee52ca7\";a:5:{s:6:\"source\";s:32:\"4f16e5bdd5b67937da7be39e4ee52ca7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"44c857111579b2f4571b9777f00dbbec\";a:5:{s:6:\"source\";s:32:\"44c857111579b2f4571b9777f00dbbec\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b61e5c029eaffe6b8aaa7bfb30fe492e\";a:5:{s:6:\"source\";s:32:\"b61e5c029eaffe6b8aaa7bfb30fe492e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e6503d858da8b696accdb11b63ea60ed\";a:5:{s:6:\"source\";s:32:\"e6503d858da8b696accdb11b63ea60ed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0182e2966f9e2f191c4a2af677254d0b\";a:5:{s:6:\"source\";s:32:\"0182e2966f9e2f191c4a2af677254d0b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f3b8c0320479ab0c2603eb52b3c26209\";a:5:{s:6:\"source\";s:32:\"f3b8c0320479ab0c2603eb52b3c26209\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"73830cf466d40b2e6cfbfbc77e8a9d98\";a:5:{s:6:\"source\";s:32:\"73830cf466d40b2e6cfbfbc77e8a9d98\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9390440fb32ab78ae328d97022eeda00\";a:5:{s:6:\"source\";s:32:\"9390440fb32ab78ae328d97022eeda00\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"30b8cbbfe015392641f350c11b4f7b73\";a:5:{s:6:\"source\";s:32:\"30b8cbbfe015392641f350c11b4f7b73\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"829c919f9c07c4f17685e8a4c84664af\";a:5:{s:6:\"source\";s:32:\"829c919f9c07c4f17685e8a4c84664af\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2bca413506b2f520f6168455df9f344e\";a:5:{s:6:\"source\";s:32:\"2bca413506b2f520f6168455df9f344e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"25b5ac5461635044ff74e7f301406136\";a:5:{s:6:\"source\";s:32:\"25b5ac5461635044ff74e7f301406136\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8da435b0f268de61a6b2047e7eaccef2\";a:5:{s:6:\"source\";s:32:\"8da435b0f268de61a6b2047e7eaccef2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e865c5e47a7ad67e805996d9c323bf4f\";a:5:{s:6:\"source\";s:32:\"e865c5e47a7ad67e805996d9c323bf4f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a0e27878d21f474b3d462e3ad0fe4f29\";a:5:{s:6:\"source\";s:32:\"a0e27878d21f474b3d462e3ad0fe4f29\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"af2876858e9b315c336bdc8b635980c5\";a:5:{s:6:\"source\";s:32:\"af2876858e9b315c336bdc8b635980c5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a766474dbcac821a994b9da13a3d043a\";a:5:{s:6:\"source\";s:32:\"a766474dbcac821a994b9da13a3d043a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b11dd833d7f327f5927d0e13c1e43943\";a:5:{s:6:\"source\";s:32:\"b11dd833d7f327f5927d0e13c1e43943\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a2502c2c23af6f75b4dc8ab38f71e7ca\";a:5:{s:6:\"source\";s:32:\"a2502c2c23af6f75b4dc8ab38f71e7ca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"afc888d001d769dcd2dbc6c87c75f697\";a:5:{s:6:\"source\";s:32:\"afc888d001d769dcd2dbc6c87c75f697\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"53d87f3945ed54efcd74d119d1b14031\";a:5:{s:6:\"source\";s:32:\"53d87f3945ed54efcd74d119d1b14031\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bf4cbf9e5c71df2a34b214d86c98ebdd\";a:5:{s:6:\"source\";s:32:\"bf4cbf9e5c71df2a34b214d86c98ebdd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"48d2c374896facdd2b8d0371ca5785fe\";a:5:{s:6:\"source\";s:32:\"48d2c374896facdd2b8d0371ca5785fe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"93f2ab6cb62219d43df6e4fbfed5e985\";a:5:{s:6:\"source\";s:32:\"93f2ab6cb62219d43df6e4fbfed5e985\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"913b01447cb96e4cd530431922d269df\";a:5:{s:6:\"source\";s:32:\"913b01447cb96e4cd530431922d269df\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"302d792f2d1bf496d78a1bff8872c891\";a:5:{s:6:\"source\";s:32:\"302d792f2d1bf496d78a1bff8872c891\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7bb9ab1d668d63afd5419e5e0c7b2957\";a:5:{s:6:\"source\";s:32:\"7bb9ab1d668d63afd5419e5e0c7b2957\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"51bf40a410eb28063f6e3300c46e4df0\";a:5:{s:6:\"source\";s:32:\"51bf40a410eb28063f6e3300c46e4df0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e8ee91106a10e06bc675a53a8e09a141\";a:5:{s:6:\"source\";s:32:\"e8ee91106a10e06bc675a53a8e09a141\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ec3e38d2be5196aee9f3917fafe7c728\";a:5:{s:6:\"source\";s:32:\"ec3e38d2be5196aee9f3917fafe7c728\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f4c659570a650a2b17d3b3e646a23340\";a:5:{s:6:\"source\";s:32:\"f4c659570a650a2b17d3b3e646a23340\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"523191c277298a76d939dd88065c57b0\";a:5:{s:6:\"source\";s:32:\"523191c277298a76d939dd88065c57b0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"205d6fedf00af0b5f378d2f11ceb5ec0\";a:5:{s:6:\"source\";s:32:\"205d6fedf00af0b5f378d2f11ceb5ec0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"37b0224d3004f01a4b3ca915d5e7f941\";a:5:{s:6:\"source\";s:32:\"37b0224d3004f01a4b3ca915d5e7f941\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"54bae3eb72d331591af5dac026632989\";a:5:{s:6:\"source\";s:32:\"54bae3eb72d331591af5dac026632989\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3d52e9d9b5980c3e67a53d05a69e97ab\";a:5:{s:6:\"source\";s:32:\"3d52e9d9b5980c3e67a53d05a69e97ab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3d5422b8769d93e817982daeb3f8cf9f\";a:5:{s:6:\"source\";s:32:\"3d5422b8769d93e817982daeb3f8cf9f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9d8feaa06b4c26bdda19cdd0eb05e5bd\";a:5:{s:6:\"source\";s:32:\"9d8feaa06b4c26bdda19cdd0eb05e5bd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c8fb3488ea20223da639306a7ece0524\";a:5:{s:6:\"source\";s:32:\"c8fb3488ea20223da639306a7ece0524\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fddc61c4e44896f6f0a6c923640d1cda\";a:5:{s:6:\"source\";s:32:\"fddc61c4e44896f6f0a6c923640d1cda\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"834be57a68c74739387d3e8be854d22f\";a:5:{s:6:\"source\";s:32:\"834be57a68c74739387d3e8be854d22f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"feef5b903196f1b74685b043262b84e0\";a:5:{s:6:\"source\";s:32:\"feef5b903196f1b74685b043262b84e0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"af73b3f22b945ba772530d5a40ae6c83\";a:5:{s:6:\"source\";s:32:\"af73b3f22b945ba772530d5a40ae6c83\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dd94b629f8e3c42004b5ba8b1214fcec\";a:5:{s:6:\"source\";s:32:\"dd94b629f8e3c42004b5ba8b1214fcec\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aed688751295eb37ca2bc4da1c0a94c0\";a:5:{s:6:\"source\";s:32:\"aed688751295eb37ca2bc4da1c0a94c0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"09c0d309ded39d53f17928ad011941db\";a:5:{s:6:\"source\";s:32:\"09c0d309ded39d53f17928ad011941db\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"20ea596d487a4080553f0f02591bcb24\";a:5:{s:6:\"source\";s:32:\"20ea596d487a4080553f0f02591bcb24\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6b45fe98f997ba7bbe437b73cb05d24e\";a:5:{s:6:\"source\";s:32:\"6b45fe98f997ba7bbe437b73cb05d24e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"70ca35d13b4a54361bda75e774a47d4f\";a:5:{s:6:\"source\";s:32:\"70ca35d13b4a54361bda75e774a47d4f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"651ada36a97155cc996560564426cbdf\";a:5:{s:6:\"source\";s:32:\"651ada36a97155cc996560564426cbdf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2ea5870c5c4b46de67d4fdea9a4b384c\";a:5:{s:6:\"source\";s:32:\"2ea5870c5c4b46de67d4fdea9a4b384c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"34e076ecc9cf1a62711d6e08dc3eb7db\";a:5:{s:6:\"source\";s:32:\"34e076ecc9cf1a62711d6e08dc3eb7db\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a2f3313b15159d693320ed9f6c0f40f4\";a:5:{s:6:\"source\";s:32:\"a2f3313b15159d693320ed9f6c0f40f4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"570ca05dd7abd5aa58d20b6a32360455\";a:5:{s:6:\"source\";s:32:\"570ca05dd7abd5aa58d20b6a32360455\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"903e8bf14ed7528ec360aeac3a09fb83\";a:5:{s:6:\"source\";s:32:\"903e8bf14ed7528ec360aeac3a09fb83\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9d86c20d94e56617978f3d04c1347018\";a:5:{s:6:\"source\";s:32:\"9d86c20d94e56617978f3d04c1347018\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ba6b5e251fcef792d1d4163619840e88\";a:5:{s:6:\"source\";s:32:\"ba6b5e251fcef792d1d4163619840e88\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"92d64407ca80ee17fa700f138f923d40\";a:5:{s:6:\"source\";s:32:\"92d64407ca80ee17fa700f138f923d40\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ec46ffbf571a3b768b121312f456b732\";a:5:{s:6:\"source\";s:32:\"ec46ffbf571a3b768b121312f456b732\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"843f8194bb6ec660c5d7a7b075f524d5\";a:5:{s:6:\"source\";s:32:\"843f8194bb6ec660c5d7a7b075f524d5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ab0687601869871517affa2e2e794cf\";a:5:{s:6:\"source\";s:32:\"8ab0687601869871517affa2e2e794cf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b1ad2e52b0e60db045fbece48c78b80c\";a:5:{s:6:\"source\";s:32:\"b1ad2e52b0e60db045fbece48c78b80c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fda36847799a2630a6b2919e930d2d2a\";a:5:{s:6:\"source\";s:32:\"fda36847799a2630a6b2919e930d2d2a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c8e80464fce0cf0ac1e9f76eba86bf08\";a:5:{s:6:\"source\";s:32:\"c8e80464fce0cf0ac1e9f76eba86bf08\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"293acf7cad83f67b15cb774fb5d8ce17\";a:5:{s:6:\"source\";s:32:\"293acf7cad83f67b15cb774fb5d8ce17\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c77d5c99ae658875a98af9b6bcbe371\";a:5:{s:6:\"source\";s:32:\"3c77d5c99ae658875a98af9b6bcbe371\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"be4aa6396014cb7a8e10bf501419c01a\";a:5:{s:6:\"source\";s:32:\"be4aa6396014cb7a8e10bf501419c01a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c3f1eef5ffcc6ab901e9a1b548a675f\";a:5:{s:6:\"source\";s:32:\"2c3f1eef5ffcc6ab901e9a1b548a675f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c796a79cfa4919241d4cf530b970ab6b\";a:5:{s:6:\"source\";s:32:\"c796a79cfa4919241d4cf530b970ab6b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dc3f4d1ee9fc72fbd09ce4f90f4625d7\";a:5:{s:6:\"source\";s:32:\"dc3f4d1ee9fc72fbd09ce4f90f4625d7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a52c08f208c93083ce1eb665c87bd9d8\";a:5:{s:6:\"source\";s:32:\"a52c08f208c93083ce1eb665c87bd9d8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"42b9edb493c40a2fe5348bfad94fac32\";a:5:{s:6:\"source\";s:32:\"42b9edb493c40a2fe5348bfad94fac32\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0fa982432e7c0e72c52183a219d7b301\";a:5:{s:6:\"source\";s:32:\"0fa982432e7c0e72c52183a219d7b301\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"609df7c45afb227e1c16c0950bf5f829\";a:5:{s:6:\"source\";s:32:\"609df7c45afb227e1c16c0950bf5f829\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"27604d2ab2f75727fb1173c63bcfc161\";a:5:{s:6:\"source\";s:32:\"27604d2ab2f75727fb1173c63bcfc161\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"564b92ecb915134e265a37b49b16a5e9\";a:5:{s:6:\"source\";s:32:\"564b92ecb915134e265a37b49b16a5e9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3ab7c94c3856f0d50b0751dc823898ab\";a:5:{s:6:\"source\";s:32:\"3ab7c94c3856f0d50b0751dc823898ab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b52e6818fe8e77b6b444e3975d28d5cf\";a:5:{s:6:\"source\";s:32:\"b52e6818fe8e77b6b444e3975d28d5cf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1114712547555e3fb49ed9149aea1924\";a:5:{s:6:\"source\";s:32:\"1114712547555e3fb49ed9149aea1924\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3183e3ec6614587feff806765a43b1f8\";a:5:{s:6:\"source\";s:32:\"3183e3ec6614587feff806765a43b1f8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5d6cf2f095374a58f19f72ba162d1008\";a:5:{s:6:\"source\";s:32:\"5d6cf2f095374a58f19f72ba162d1008\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"39efbb11f91811645a28bbf3813e706c\";a:5:{s:6:\"source\";s:32:\"39efbb11f91811645a28bbf3813e706c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d4839e455c81cde935864752b085b6a5\";a:5:{s:6:\"source\";s:32:\"d4839e455c81cde935864752b085b6a5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d33508b474ddac5ec45361e3ab63b68e\";a:5:{s:6:\"source\";s:32:\"d33508b474ddac5ec45361e3ab63b68e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a705a3837a514f1eb1e774a2b2635e0b\";a:5:{s:6:\"source\";s:32:\"a705a3837a514f1eb1e774a2b2635e0b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"14fed312ca4b9dd53eeb00b412dba91b\";a:5:{s:6:\"source\";s:32:\"14fed312ca4b9dd53eeb00b412dba91b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"06560fd4114daa45006f476277cf7e07\";a:5:{s:6:\"source\";s:32:\"06560fd4114daa45006f476277cf7e07\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"51875f34fe5d28a46fa2d051c536696f\";a:5:{s:6:\"source\";s:32:\"51875f34fe5d28a46fa2d051c536696f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1023c90b2591e01656781e8b67b444bf\";a:5:{s:6:\"source\";s:32:\"1023c90b2591e01656781e8b67b444bf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cb027992f4d7ba9005921b56955d5e68\";a:5:{s:6:\"source\";s:32:\"cb027992f4d7ba9005921b56955d5e68\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cfd9eb59b2718450cc192edc6cdce66c\";a:5:{s:6:\"source\";s:32:\"cfd9eb59b2718450cc192edc6cdce66c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3996e4aa23d5d8635cb0b1efb9b00bbf\";a:5:{s:6:\"source\";s:32:\"3996e4aa23d5d8635cb0b1efb9b00bbf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"503611af44e2a1114a11de00a2a4d5c8\";a:5:{s:6:\"source\";s:32:\"503611af44e2a1114a11de00a2a4d5c8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"98ccea60434e68e2d0cf0b98da647554\";a:5:{s:6:\"source\";s:32:\"98ccea60434e68e2d0cf0b98da647554\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"00be0ec19bf83a39e17324b10ff68964\";a:5:{s:6:\"source\";s:32:\"00be0ec19bf83a39e17324b10ff68964\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"21253f2df694a09f7dc5bb8f7f355b69\";a:5:{s:6:\"source\";s:32:\"21253f2df694a09f7dc5bb8f7f355b69\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3207f5dca5c705c331613e1dae151322\";a:5:{s:6:\"source\";s:32:\"3207f5dca5c705c331613e1dae151322\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5d20198d606c40e144155955b043a29b\";a:5:{s:6:\"source\";s:32:\"5d20198d606c40e144155955b043a29b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d715f2653e80e3aeba4e87fac6846299\";a:5:{s:6:\"source\";s:32:\"d715f2653e80e3aeba4e87fac6846299\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5a872957d4b172b0077b9cf81d915fa7\";a:5:{s:6:\"source\";s:32:\"5a872957d4b172b0077b9cf81d915fa7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d24b91593b03bbd18a0d7b0bdca8fa01\";a:5:{s:6:\"source\";s:32:\"d24b91593b03bbd18a0d7b0bdca8fa01\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"589786f942c091b2c9b6103824b57d7c\";a:5:{s:6:\"source\";s:32:\"589786f942c091b2c9b6103824b57d7c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"188b2ae8f0c1ce9e159825c4e12ebaf1\";a:5:{s:6:\"source\";s:32:\"188b2ae8f0c1ce9e159825c4e12ebaf1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"869b566a9581323487a57b823c69b1e6\";a:5:{s:6:\"source\";s:32:\"869b566a9581323487a57b823c69b1e6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef25891e53a652ae462bc66b97aaf60e\";a:5:{s:6:\"source\";s:32:\"ef25891e53a652ae462bc66b97aaf60e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ed6336981570b91f2ce41d2a06fcf0f1\";a:5:{s:6:\"source\";s:32:\"ed6336981570b91f2ce41d2a06fcf0f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"12056884efbcafc9aa2255af3a004940\";a:5:{s:6:\"source\";s:32:\"12056884efbcafc9aa2255af3a004940\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"77f51057f8852e4a0ae93fb1f090ddc9\";a:5:{s:6:\"source\";s:32:\"77f51057f8852e4a0ae93fb1f090ddc9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c838ab1d2eb9b7d9b6cb549cdaedf73d\";a:5:{s:6:\"source\";s:32:\"c838ab1d2eb9b7d9b6cb549cdaedf73d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f5f0b5d9abc1fe71b223c301a2db03c2\";a:5:{s:6:\"source\";s:32:\"f5f0b5d9abc1fe71b223c301a2db03c2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"437800488735f30749efc4e0f43e8d08\";a:5:{s:6:\"source\";s:32:\"437800488735f30749efc4e0f43e8d08\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cd20bb6a6a19237532eb43a081f95fa9\";a:5:{s:6:\"source\";s:32:\"cd20bb6a6a19237532eb43a081f95fa9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"066187af147793db2df276330a6f6c8a\";a:5:{s:6:\"source\";s:32:\"066187af147793db2df276330a6f6c8a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"96e164fd8aef835b427e754a7174aa58\";a:5:{s:6:\"source\";s:32:\"96e164fd8aef835b427e754a7174aa58\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e7694738599b04e2560e24cf6348212c\";a:5:{s:6:\"source\";s:32:\"e7694738599b04e2560e24cf6348212c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4999061382f7e6db62b626e0af8b2524\";a:5:{s:6:\"source\";s:32:\"4999061382f7e6db62b626e0af8b2524\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4b64ba0e54bbc9b5ebb319cf8661d91a\";a:5:{s:6:\"source\";s:32:\"4b64ba0e54bbc9b5ebb319cf8661d91a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d2f8879f570cf847184110a715b440ad\";a:5:{s:6:\"source\";s:32:\"d2f8879f570cf847184110a715b440ad\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"90a415767a3f9e9fad2ebe496e9bc428\";a:5:{s:6:\"source\";s:32:\"90a415767a3f9e9fad2ebe496e9bc428\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6df1863aa67c5d00eafdc0a1df1e1491\";a:5:{s:6:\"source\";s:32:\"6df1863aa67c5d00eafdc0a1df1e1491\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"487277c090ea480079d1ceadb9a8f312\";a:5:{s:6:\"source\";s:32:\"487277c090ea480079d1ceadb9a8f312\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"76e67070c444b317cc0ed97d86fd7ef2\";a:5:{s:6:\"source\";s:32:\"76e67070c444b317cc0ed97d86fd7ef2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d2dc0cbfa11b113ec73e64e2be3a8fc0\";a:5:{s:6:\"source\";s:32:\"d2dc0cbfa11b113ec73e64e2be3a8fc0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fe0c18cd944380acd2fabba5b918bc1b\";a:5:{s:6:\"source\";s:32:\"fe0c18cd944380acd2fabba5b918bc1b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9807fc098ab79227338d35a90bf98752\";a:5:{s:6:\"source\";s:32:\"9807fc098ab79227338d35a90bf98752\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ca8d0508539d2b841d12ea111d339033\";a:5:{s:6:\"source\";s:32:\"ca8d0508539d2b841d12ea111d339033\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a1a1f30d4169342e4f50fc58c89aa708\";a:5:{s:6:\"source\";s:32:\"a1a1f30d4169342e4f50fc58c89aa708\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"85169aa1b4b1606f1960ab7ea595dfae\";a:5:{s:6:\"source\";s:32:\"85169aa1b4b1606f1960ab7ea595dfae\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ed294a3aa78014933eb87c3084d34cc\";a:5:{s:6:\"source\";s:32:\"8ed294a3aa78014933eb87c3084d34cc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"86fe04fff5d9ec92062b231b12ee2f47\";a:5:{s:6:\"source\";s:32:\"86fe04fff5d9ec92062b231b12ee2f47\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a93e08d5bf77efa472d3d51d5d4b64bd\";a:5:{s:6:\"source\";s:32:\"a93e08d5bf77efa472d3d51d5d4b64bd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"74de54ed9de2db32acaac235cdc31d7b\";a:5:{s:6:\"source\";s:32:\"74de54ed9de2db32acaac235cdc31d7b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1e6cbb026c90aa5498f7191780246b28\";a:5:{s:6:\"source\";s:32:\"1e6cbb026c90aa5498f7191780246b28\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f36ec9fc3faca70705258ccc6a031f6a\";a:5:{s:6:\"source\";s:32:\"f36ec9fc3faca70705258ccc6a031f6a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5f82c86b4a8018ea1876fd4de6de51d5\";a:5:{s:6:\"source\";s:32:\"5f82c86b4a8018ea1876fd4de6de51d5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"20ae52743fb292c8ccf1a46a02a8a253\";a:5:{s:6:\"source\";s:32:\"20ae52743fb292c8ccf1a46a02a8a253\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"236cd76a916828b2e5a48f92cdfea1d3\";a:5:{s:6:\"source\";s:32:\"236cd76a916828b2e5a48f92cdfea1d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"014e122f8a7796e58f91e9e67a9c6a44\";a:5:{s:6:\"source\";s:32:\"014e122f8a7796e58f91e9e67a9c6a44\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"db96ecceb254a99267fdfa96898a1780\";a:5:{s:6:\"source\";s:32:\"db96ecceb254a99267fdfa96898a1780\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e0dfca4cca12a53b40b6da4ec17e00d0\";a:5:{s:6:\"source\";s:32:\"e0dfca4cca12a53b40b6da4ec17e00d0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f982b371541e2a9ae54efd34c3081253\";a:5:{s:6:\"source\";s:32:\"f982b371541e2a9ae54efd34c3081253\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7a84cd3df0ca8dafcd9c7bd95e2afd97\";a:5:{s:6:\"source\";s:32:\"7a84cd3df0ca8dafcd9c7bd95e2afd97\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"91374945512068a4f1114628b91f3ed5\";a:5:{s:6:\"source\";s:32:\"91374945512068a4f1114628b91f3ed5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"288f836bcacde8f71cbe7b55f0380ac0\";a:5:{s:6:\"source\";s:32:\"288f836bcacde8f71cbe7b55f0380ac0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"748f51a69cc524c65630d1bb3fd5e70a\";a:5:{s:6:\"source\";s:32:\"748f51a69cc524c65630d1bb3fd5e70a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2824f615fbab064bd7d1e9f050842b0b\";a:5:{s:6:\"source\";s:32:\"2824f615fbab064bd7d1e9f050842b0b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"65a9e7e4a23193a81d12b89eeaa47b4c\";a:5:{s:6:\"source\";s:32:\"65a9e7e4a23193a81d12b89eeaa47b4c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7622fc405dad4d4a182f35ce8716bdcf\";a:5:{s:6:\"source\";s:32:\"7622fc405dad4d4a182f35ce8716bdcf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bfe976a41287ad06c37d59825dcd340d\";a:5:{s:6:\"source\";s:32:\"bfe976a41287ad06c37d59825dcd340d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"625250b387074ccb803a5dbe4f99ae47\";a:5:{s:6:\"source\";s:32:\"625250b387074ccb803a5dbe4f99ae47\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e7ccbcaae80f600922350a3ddf31ccbd\";a:5:{s:6:\"source\";s:32:\"e7ccbcaae80f600922350a3ddf31ccbd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ac564b51e3c4f20c98c105a5e74ecfe6\";a:5:{s:6:\"source\";s:32:\"ac564b51e3c4f20c98c105a5e74ecfe6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d503863d2f32072dd044974188622f64\";a:5:{s:6:\"source\";s:32:\"d503863d2f32072dd044974188622f64\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c2a17f911c317474cf5fe5ab141a1c9\";a:5:{s:6:\"source\";s:32:\"3c2a17f911c317474cf5fe5ab141a1c9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7066614776eecb1704ec3f0d9f1a26db\";a:5:{s:6:\"source\";s:32:\"7066614776eecb1704ec3f0d9f1a26db\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a428bf050d875e6896f912d953adc99f\";a:5:{s:6:\"source\";s:32:\"a428bf050d875e6896f912d953adc99f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c32759b39184102e81ae8d2ba642edd\";a:5:{s:6:\"source\";s:32:\"2c32759b39184102e81ae8d2ba642edd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5b5c0651958122fe0586fc7bd62b5aa1\";a:5:{s:6:\"source\";s:32:\"5b5c0651958122fe0586fc7bd62b5aa1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c7b2dd0dffa782ef41361ef4563c168c\";a:5:{s:6:\"source\";s:32:\"c7b2dd0dffa782ef41361ef4563c168c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dc1840a2ede4566b1ab68bad6f411766\";a:5:{s:6:\"source\";s:32:\"dc1840a2ede4566b1ab68bad6f411766\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"64c4e2c538bb597ca1dd525d2e83b4cc\";a:5:{s:6:\"source\";s:32:\"64c4e2c538bb597ca1dd525d2e83b4cc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7c2b3c897858e70dc76eb5554bebcf90\";a:5:{s:6:\"source\";s:32:\"7c2b3c897858e70dc76eb5554bebcf90\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7dad73787007a71416d4355ad7bce7de\";a:5:{s:6:\"source\";s:32:\"7dad73787007a71416d4355ad7bce7de\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1e187dc674c833b96bd79aedc8c1292b\";a:5:{s:6:\"source\";s:32:\"1e187dc674c833b96bd79aedc8c1292b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7e877f9300b590123b4d64b6015fca5e\";a:5:{s:6:\"source\";s:32:\"7e877f9300b590123b4d64b6015fca5e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a666179af7a8c9ea509bbc69d37da57e\";a:5:{s:6:\"source\";s:32:\"a666179af7a8c9ea509bbc69d37da57e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b6ad3d37a8255c7bf585ba96af1e765a\";a:5:{s:6:\"source\";s:32:\"b6ad3d37a8255c7bf585ba96af1e765a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f548cc4942e30d8b27dda03ef2b2a188\";a:5:{s:6:\"source\";s:32:\"f548cc4942e30d8b27dda03ef2b2a188\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"072c3ec95d48df5c422740653b02b7ac\";a:5:{s:6:\"source\";s:32:\"072c3ec95d48df5c422740653b02b7ac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"76ddf0f1972ae912a09195c5ad8a0d90\";a:5:{s:6:\"source\";s:32:\"76ddf0f1972ae912a09195c5ad8a0d90\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"875216f11207c19f65105c1fd8ac5e2e\";a:5:{s:6:\"source\";s:32:\"875216f11207c19f65105c1fd8ac5e2e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e27b719ef7a9db45516a9f5989024e48\";a:5:{s:6:\"source\";s:32:\"e27b719ef7a9db45516a9f5989024e48\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"93d1314d2394e8978968729feed03c1e\";a:5:{s:6:\"source\";s:32:\"93d1314d2394e8978968729feed03c1e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b3b4abdd6ae742da6daced4e85e95a34\";a:5:{s:6:\"source\";s:32:\"b3b4abdd6ae742da6daced4e85e95a34\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6531c8b002110843f5a21882c885f43c\";a:5:{s:6:\"source\";s:32:\"6531c8b002110843f5a21882c885f43c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fec9084f2fdc3285ba0fac83784aff00\";a:5:{s:6:\"source\";s:32:\"fec9084f2fdc3285ba0fac83784aff00\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"25edd046e80b63139ce88dc82a1d01c3\";a:5:{s:6:\"source\";s:32:\"25edd046e80b63139ce88dc82a1d01c3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cba0a7cb2e4f38a4067dfea538146b88\";a:5:{s:6:\"source\";s:32:\"cba0a7cb2e4f38a4067dfea538146b88\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ec66cedf44dbf32b596e01d652361f76\";a:5:{s:6:\"source\";s:32:\"ec66cedf44dbf32b596e01d652361f76\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"40b4216722313dd9b757a8a533b335cd\";a:5:{s:6:\"source\";s:32:\"40b4216722313dd9b757a8a533b335cd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0b2515e21c849f166f04b3088b511878\";a:5:{s:6:\"source\";s:32:\"0b2515e21c849f166f04b3088b511878\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"50db2099bb518df6b61700ccb22b5c5f\";a:5:{s:6:\"source\";s:32:\"50db2099bb518df6b61700ccb22b5c5f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"267122e33fc861bd1686adee071b94bc\";a:5:{s:6:\"source\";s:32:\"267122e33fc861bd1686adee071b94bc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7fd8f3956c2682e5e751fb5840d98569\";a:5:{s:6:\"source\";s:32:\"7fd8f3956c2682e5e751fb5840d98569\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e224a574967a1e7a006c8f28db15e2a2\";a:5:{s:6:\"source\";s:32:\"e224a574967a1e7a006c8f28db15e2a2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a5e35cc06a4028b66c4be4fcb829fa03\";a:5:{s:6:\"source\";s:32:\"a5e35cc06a4028b66c4be4fcb829fa03\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bd68f5fe54632ffa77bc7c28fb0ceff1\";a:5:{s:6:\"source\";s:32:\"bd68f5fe54632ffa77bc7c28fb0ceff1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3b047d4172fe6b8a6563127b07ef7989\";a:5:{s:6:\"source\";s:32:\"3b047d4172fe6b8a6563127b07ef7989\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d397abeb9e394c9c867736a6b1bb8257\";a:5:{s:6:\"source\";s:32:\"d397abeb9e394c9c867736a6b1bb8257\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dd7382c53f6e4a497b8a6d18707e7b35\";a:5:{s:6:\"source\";s:32:\"dd7382c53f6e4a497b8a6d18707e7b35\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0119445320f108d8ddebe4f7c3a8c7ef\";a:5:{s:6:\"source\";s:32:\"0119445320f108d8ddebe4f7c3a8c7ef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ebc5664d7fd5a88a5cc67285c035f42\";a:5:{s:6:\"source\";s:32:\"8ebc5664d7fd5a88a5cc67285c035f42\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6094e7c32f1ca5a6d7e877f7e3a67da1\";a:5:{s:6:\"source\";s:32:\"6094e7c32f1ca5a6d7e877f7e3a67da1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"986da5baca24e1cc0e3d9d6bf8f6fc7a\";a:5:{s:6:\"source\";s:32:\"986da5baca24e1cc0e3d9d6bf8f6fc7a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"058c0b39352776f120a7117b17c6a278\";a:5:{s:6:\"source\";s:32:\"058c0b39352776f120a7117b17c6a278\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fa53d39ce441ffcfb723f63c987a14f6\";a:5:{s:6:\"source\";s:32:\"fa53d39ce441ffcfb723f63c987a14f6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c05bc61b2420fd60a9f6240ab165a182\";a:5:{s:6:\"source\";s:32:\"c05bc61b2420fd60a9f6240ab165a182\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3aac45b686046a65de19d8b55cf430e1\";a:5:{s:6:\"source\";s:32:\"3aac45b686046a65de19d8b55cf430e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c3b3c11583c5615213325b4f31337d2d\";a:5:{s:6:\"source\";s:32:\"c3b3c11583c5615213325b4f31337d2d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"df8b7d71f38bc908decb3f003f4886af\";a:5:{s:6:\"source\";s:32:\"df8b7d71f38bc908decb3f003f4886af\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"368388bab62e452f1534a0477131a50d\";a:5:{s:6:\"source\";s:32:\"368388bab62e452f1534a0477131a50d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"91df23253b389104eba3698087c3aafd\";a:5:{s:6:\"source\";s:32:\"91df23253b389104eba3698087c3aafd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1ffa839dfa84dd2452085ce971938885\";a:5:{s:6:\"source\";s:32:\"1ffa839dfa84dd2452085ce971938885\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a2d9dbbf8afb76608d563f111c5c398c\";a:5:{s:6:\"source\";s:32:\"a2d9dbbf8afb76608d563f111c5c398c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"270a475061103fdbcdd342ca474627c5\";a:5:{s:6:\"source\";s:32:\"270a475061103fdbcdd342ca474627c5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2229ceb8b738251fe7df5865d1f3024d\";a:5:{s:6:\"source\";s:32:\"2229ceb8b738251fe7df5865d1f3024d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e177959ebea8ae3fa421eefeefa6b532\";a:5:{s:6:\"source\";s:32:\"e177959ebea8ae3fa421eefeefa6b532\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ae5e591dee5f3e89bb7b694166925a96\";a:5:{s:6:\"source\";s:32:\"ae5e591dee5f3e89bb7b694166925a96\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e040fd1c2a9402ed712dc231130d64f4\";a:5:{s:6:\"source\";s:32:\"e040fd1c2a9402ed712dc231130d64f4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8bf8e1dc4512c5751f0a01dc3443fe9d\";a:5:{s:6:\"source\";s:32:\"8bf8e1dc4512c5751f0a01dc3443fe9d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4ef6f7ad11aedd7a71114e8a19d14a55\";a:5:{s:6:\"source\";s:32:\"4ef6f7ad11aedd7a71114e8a19d14a55\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3b782cf9c47522177f14a7b16a4c008c\";a:5:{s:6:\"source\";s:32:\"3b782cf9c47522177f14a7b16a4c008c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"619c33d1bbb907135d576911b33967be\";a:5:{s:6:\"source\";s:32:\"619c33d1bbb907135d576911b33967be\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8595c7237e169cfcc052648a051310f1\";a:5:{s:6:\"source\";s:32:\"8595c7237e169cfcc052648a051310f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d87c7320c152256c214bdaf5d5fdffa4\";a:5:{s:6:\"source\";s:32:\"d87c7320c152256c214bdaf5d5fdffa4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2b0375de46aef87936cd3ac7a3542b6e\";a:5:{s:6:\"source\";s:32:\"2b0375de46aef87936cd3ac7a3542b6e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5667af443f2f1625b68ac5c9ff87dbd7\";a:5:{s:6:\"source\";s:32:\"5667af443f2f1625b68ac5c9ff87dbd7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"885c606e81390c81c7db1a5a81f02ab3\";a:5:{s:6:\"source\";s:32:\"885c606e81390c81c7db1a5a81f02ab3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"09514c8054075077ca9314a5d0cd6eed\";a:5:{s:6:\"source\";s:32:\"09514c8054075077ca9314a5d0cd6eed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5f4fceee3bd8c0889153a520e0b8ca77\";a:5:{s:6:\"source\";s:32:\"5f4fceee3bd8c0889153a520e0b8ca77\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a1cba918322101413f25654bdc759024\";a:5:{s:6:\"source\";s:32:\"a1cba918322101413f25654bdc759024\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1fafcdb74c89b72fcc8a259453fbe91c\";a:5:{s:6:\"source\";s:32:\"1fafcdb74c89b72fcc8a259453fbe91c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e549a0945087b78cac3f3fe9165beb34\";a:5:{s:6:\"source\";s:32:\"e549a0945087b78cac3f3fe9165beb34\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"30c017393461c712a6d07e10b5f148f7\";a:5:{s:6:\"source\";s:32:\"30c017393461c712a6d07e10b5f148f7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"061052b4c41d046eb3b1a6a054eccb4d\";a:5:{s:6:\"source\";s:32:\"061052b4c41d046eb3b1a6a054eccb4d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"baebd3de1fa6617e440a83a70a8faa5b\";a:5:{s:6:\"source\";s:32:\"baebd3de1fa6617e440a83a70a8faa5b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"482e344f1b046ff038680a2e2486a061\";a:5:{s:6:\"source\";s:32:\"482e344f1b046ff038680a2e2486a061\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a2af5376dea5d2d9ee6f8016c03d7950\";a:5:{s:6:\"source\";s:32:\"a2af5376dea5d2d9ee6f8016c03d7950\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3b57394fea3018f6c63279737633553c\";a:5:{s:6:\"source\";s:32:\"3b57394fea3018f6c63279737633553c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"347c75fd28969bb311ed68c9e26f4b80\";a:5:{s:6:\"source\";s:32:\"347c75fd28969bb311ed68c9e26f4b80\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"56b2ba68ad1af7482ecc9d10b6637955\";a:5:{s:6:\"source\";s:32:\"56b2ba68ad1af7482ecc9d10b6637955\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4e0c802a50f2bd4fcc2cb77d0fa5b0bc\";a:5:{s:6:\"source\";s:32:\"4e0c802a50f2bd4fcc2cb77d0fa5b0bc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"50c1cd2b7861a145228381f7da46f369\";a:5:{s:6:\"source\";s:32:\"50c1cd2b7861a145228381f7da46f369\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"35338780508f90835cf8391e54a7d7c7\";a:5:{s:6:\"source\";s:32:\"35338780508f90835cf8391e54a7d7c7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fc626f3ee05aac32ec6560951eae5645\";a:5:{s:6:\"source\";s:32:\"fc626f3ee05aac32ec6560951eae5645\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e3a3d62afbc7b70723191f3c72957cf5\";a:5:{s:6:\"source\";s:32:\"e3a3d62afbc7b70723191f3c72957cf5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aaeee2f75bf8d875f47503cd1ad08832\";a:5:{s:6:\"source\";s:32:\"aaeee2f75bf8d875f47503cd1ad08832\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8487b96d66c924b033b6430a15bd63f3\";a:5:{s:6:\"source\";s:32:\"8487b96d66c924b033b6430a15bd63f3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1561f90f98ad63613b65ed6a4cd1555a\";a:5:{s:6:\"source\";s:32:\"1561f90f98ad63613b65ed6a4cd1555a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"440ffda1fec1ecfd8600fb50bb3983e7\";a:5:{s:6:\"source\";s:32:\"440ffda1fec1ecfd8600fb50bb3983e7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e03702961f926e0eb8f68e1c5bac0aa9\";a:5:{s:6:\"source\";s:32:\"e03702961f926e0eb8f68e1c5bac0aa9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0fcb34b1f1b5f6867c01401a922887ac\";a:5:{s:6:\"source\";s:32:\"0fcb34b1f1b5f6867c01401a922887ac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9cd8b7d5abc612b53b89b139a3897813\";a:5:{s:6:\"source\";s:32:\"9cd8b7d5abc612b53b89b139a3897813\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c5e36ff4ae009de5d7b9c3bfdb8bc8f9\";a:5:{s:6:\"source\";s:32:\"c5e36ff4ae009de5d7b9c3bfdb8bc8f9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ec1dc1e3c06516d945ae5dc1bbdd7c8a\";a:5:{s:6:\"source\";s:32:\"ec1dc1e3c06516d945ae5dc1bbdd7c8a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"da4cceb65940753610fe778abfc6db65\";a:5:{s:6:\"source\";s:32:\"da4cceb65940753610fe778abfc6db65\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"83b6020f2ff30c49b27af4a434281581\";a:5:{s:6:\"source\";s:32:\"83b6020f2ff30c49b27af4a434281581\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6b1d9127f475188cab62a9cab3a10f38\";a:5:{s:6:\"source\";s:32:\"6b1d9127f475188cab62a9cab3a10f38\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"152e504adfbffcf9449c719f41e6d1c8\";a:5:{s:6:\"source\";s:32:\"152e504adfbffcf9449c719f41e6d1c8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f0e84f71f3f275bdf6a9010783b10865\";a:5:{s:6:\"source\";s:32:\"f0e84f71f3f275bdf6a9010783b10865\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"395ddca98e5467d71b287f23c1639ca7\";a:5:{s:6:\"source\";s:32:\"395ddca98e5467d71b287f23c1639ca7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1b1e3271882421cab5d83fe8d46f19b2\";a:5:{s:6:\"source\";s:32:\"1b1e3271882421cab5d83fe8d46f19b2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"13825053b7144b29a837b60b5554d8e8\";a:5:{s:6:\"source\";s:32:\"13825053b7144b29a837b60b5554d8e8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2a8f289098c32f473e40d2f4cd59ce03\";a:5:{s:6:\"source\";s:32:\"2a8f289098c32f473e40d2f4cd59ce03\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fc69c96fee6cce91123a07248645f7a6\";a:5:{s:6:\"source\";s:32:\"fc69c96fee6cce91123a07248645f7a6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"86af7a2b9f5bb3923b9379d207cfb06a\";a:5:{s:6:\"source\";s:32:\"86af7a2b9f5bb3923b9379d207cfb06a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f7301614f438c8b12fee7c0ef017c6a\";a:5:{s:6:\"source\";s:32:\"7f7301614f438c8b12fee7c0ef017c6a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5019bd2af14278fe043601674558de54\";a:5:{s:6:\"source\";s:32:\"5019bd2af14278fe043601674558de54\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"48433dd51ce0057da58ad0df2fda4514\";a:5:{s:6:\"source\";s:32:\"48433dd51ce0057da58ad0df2fda4514\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0f8fa3c62b0e24ed432b039c73293125\";a:5:{s:6:\"source\";s:32:\"0f8fa3c62b0e24ed432b039c73293125\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"28dd4876fbb2cd0fc24b41f2b512da17\";a:5:{s:6:\"source\";s:32:\"28dd4876fbb2cd0fc24b41f2b512da17\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b8731418b266a376febe57693f120bb6\";a:5:{s:6:\"source\";s:32:\"b8731418b266a376febe57693f120bb6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"efacfa66b89b69229f9a89cab5d81dc2\";a:5:{s:6:\"source\";s:32:\"efacfa66b89b69229f9a89cab5d81dc2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"12a7432aeceed11fb6e8665c999b7cab\";a:5:{s:6:\"source\";s:32:\"12a7432aeceed11fb6e8665c999b7cab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2f912f38c0ab234e6df5e764c6371245\";a:5:{s:6:\"source\";s:32:\"2f912f38c0ab234e6df5e764c6371245\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"12199cf084d059202ae73360f1f251a4\";a:5:{s:6:\"source\";s:32:\"12199cf084d059202ae73360f1f251a4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5187748aae6f50f3d727d701c0684dc0\";a:5:{s:6:\"source\";s:32:\"5187748aae6f50f3d727d701c0684dc0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3f47ceb57df33d1b0a4efe2fbdb75c22\";a:5:{s:6:\"source\";s:32:\"3f47ceb57df33d1b0a4efe2fbdb75c22\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d5387c5706ff6888ddc2be521b8d8571\";a:5:{s:6:\"source\";s:32:\"d5387c5706ff6888ddc2be521b8d8571\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"df3b0ff099abea7d489d57bd9c6802e1\";a:5:{s:6:\"source\";s:32:\"df3b0ff099abea7d489d57bd9c6802e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d847c3cb51dbac5ee2fd0d909b09fb88\";a:5:{s:6:\"source\";s:32:\"d847c3cb51dbac5ee2fd0d909b09fb88\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"11833ad07490063dcba399973e400a83\";a:5:{s:6:\"source\";s:32:\"11833ad07490063dcba399973e400a83\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c3abedd9138de0d9ee62a0f0c56d29cb\";a:5:{s:6:\"source\";s:32:\"c3abedd9138de0d9ee62a0f0c56d29cb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"29a94ccf27335b20fa02fc173613263f\";a:5:{s:6:\"source\";s:32:\"29a94ccf27335b20fa02fc173613263f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"75d298794910f5531e5fa133877d5753\";a:5:{s:6:\"source\";s:32:\"75d298794910f5531e5fa133877d5753\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"71736d392c48e8baee613507396e7024\";a:5:{s:6:\"source\";s:32:\"71736d392c48e8baee613507396e7024\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"13f4ef76b91201ec210d265c94371d5d\";a:5:{s:6:\"source\";s:32:\"13f4ef76b91201ec210d265c94371d5d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"06e409884838f5eb3fde2d1c02ac02db\";a:5:{s:6:\"source\";s:32:\"06e409884838f5eb3fde2d1c02ac02db\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"adbc2a43eb4b15d038b5491f1b668d69\";a:5:{s:6:\"source\";s:32:\"adbc2a43eb4b15d038b5491f1b668d69\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4b8d914cecb3df28b42bf3b23dc1eddd\";a:5:{s:6:\"source\";s:32:\"4b8d914cecb3df28b42bf3b23dc1eddd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ed4d63ef49f338d4c78ba44c8a67bd8\";a:5:{s:6:\"source\";s:32:\"8ed4d63ef49f338d4c78ba44c8a67bd8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b43ae2f410800df6144a70c9c4c27969\";a:5:{s:6:\"source\";s:32:\"b43ae2f410800df6144a70c9c4c27969\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"759a613744d27cf1096ab5e41fa15f69\";a:5:{s:6:\"source\";s:32:\"759a613744d27cf1096ab5e41fa15f69\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2d51610e61bcc26a5f6c5f542ad7a332\";a:5:{s:6:\"source\";s:32:\"2d51610e61bcc26a5f6c5f542ad7a332\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7a9bfd43ed6ecbaaf14fed9b2f917bfd\";a:5:{s:6:\"source\";s:32:\"7a9bfd43ed6ecbaaf14fed9b2f917bfd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d2ad185215541c3ffe2206319068e90b\";a:5:{s:6:\"source\";s:32:\"d2ad185215541c3ffe2206319068e90b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0732e70df480ef6160ec8e34163d42be\";a:5:{s:6:\"source\";s:32:\"0732e70df480ef6160ec8e34163d42be\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2b1fe25dc7a017ad582a5aa731ed7bd0\";a:5:{s:6:\"source\";s:32:\"2b1fe25dc7a017ad582a5aa731ed7bd0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2dda7b0c6ce08c3788ab47e3ffefce49\";a:5:{s:6:\"source\";s:32:\"2dda7b0c6ce08c3788ab47e3ffefce49\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"db5cd13246017875307c1724e1071cef\";a:5:{s:6:\"source\";s:32:\"db5cd13246017875307c1724e1071cef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"68a5a384dc4c2ddd8de661cc8b88422f\";a:5:{s:6:\"source\";s:32:\"68a5a384dc4c2ddd8de661cc8b88422f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"45ae64f8f9a9658347d8c0651f33d12d\";a:5:{s:6:\"source\";s:32:\"45ae64f8f9a9658347d8c0651f33d12d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"988a770e8c2f0a730409c50918b5de52\";a:5:{s:6:\"source\";s:32:\"988a770e8c2f0a730409c50918b5de52\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"22c53e29e6afb7294aa157c2403c3140\";a:5:{s:6:\"source\";s:32:\"22c53e29e6afb7294aa157c2403c3140\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fb3264d0ea2fbe857e18e8b044650e7d\";a:5:{s:6:\"source\";s:32:\"fb3264d0ea2fbe857e18e8b044650e7d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4ed92f2535415cb9e2544d9208ecbcf3\";a:5:{s:6:\"source\";s:32:\"4ed92f2535415cb9e2544d9208ecbcf3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"22d8357d2b17952ae220eeca19dc1032\";a:5:{s:6:\"source\";s:32:\"22d8357d2b17952ae220eeca19dc1032\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"652d9b579ad3a89ac859c03838f6cdd7\";a:5:{s:6:\"source\";s:32:\"652d9b579ad3a89ac859c03838f6cdd7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f101fde527ea362b6ddc1bfe67907cc7\";a:5:{s:6:\"source\";s:32:\"f101fde527ea362b6ddc1bfe67907cc7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9696bac3508d495ff0c5e1ba0da73ee9\";a:5:{s:6:\"source\";s:32:\"9696bac3508d495ff0c5e1ba0da73ee9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3ec5a3ecb2051fe381f72dc2ea2e3d24\";a:5:{s:6:\"source\";s:32:\"3ec5a3ecb2051fe381f72dc2ea2e3d24\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"39ca5f6280eea130e660c872ff77f28e\";a:5:{s:6:\"source\";s:32:\"39ca5f6280eea130e660c872ff77f28e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"adde837532490394ce393160a8862882\";a:5:{s:6:\"source\";s:32:\"adde837532490394ce393160a8862882\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0de230d42344070e755fcb908836e344\";a:5:{s:6:\"source\";s:32:\"0de230d42344070e755fcb908836e344\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7fcf69f074aaeee83682cc06b0295c8e\";a:5:{s:6:\"source\";s:32:\"7fcf69f074aaeee83682cc06b0295c8e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b66763ac6ce9a38f56770da3882db28e\";a:5:{s:6:\"source\";s:32:\"b66763ac6ce9a38f56770da3882db28e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"99ebf82ed98031e15b20d53f798f2eae\";a:5:{s:6:\"source\";s:32:\"99ebf82ed98031e15b20d53f798f2eae\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"344a21a6dc838870b1e32d0d1e24545f\";a:5:{s:6:\"source\";s:32:\"344a21a6dc838870b1e32d0d1e24545f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"12a1c6c69025628c49f3666e4d88f9a1\";a:5:{s:6:\"source\";s:32:\"12a1c6c69025628c49f3666e4d88f9a1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5cd3aafc25cf8c77ef468d070d66fbf3\";a:5:{s:6:\"source\";s:32:\"5cd3aafc25cf8c77ef468d070d66fbf3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"89d7737a93ea99d96f980bdcf9832357\";a:5:{s:6:\"source\";s:32:\"89d7737a93ea99d96f980bdcf9832357\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bee474b71dc190da52dd2b8fafeb6bd3\";a:5:{s:6:\"source\";s:32:\"bee474b71dc190da52dd2b8fafeb6bd3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b70621f281899ffe9703785fd99649aa\";a:5:{s:6:\"source\";s:32:\"b70621f281899ffe9703785fd99649aa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c55faa0fea61e567db5deba40e29026a\";a:5:{s:6:\"source\";s:32:\"c55faa0fea61e567db5deba40e29026a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7d27dfb2da6fa91f0316568233c26398\";a:5:{s:6:\"source\";s:32:\"7d27dfb2da6fa91f0316568233c26398\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"160aecd9c61b1352532694865de75c95\";a:5:{s:6:\"source\";s:32:\"160aecd9c61b1352532694865de75c95\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"37ddbffd20336edcdfd4a440fa751834\";a:5:{s:6:\"source\";s:32:\"37ddbffd20336edcdfd4a440fa751834\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1cd0aba1bc8d3393dd9035234f6a5652\";a:5:{s:6:\"source\";s:32:\"1cd0aba1bc8d3393dd9035234f6a5652\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"54b13aba7f88177b3f5722183cf95d4a\";a:5:{s:6:\"source\";s:32:\"54b13aba7f88177b3f5722183cf95d4a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9885e8503d234784dc890ec36c869e8a\";a:5:{s:6:\"source\";s:32:\"9885e8503d234784dc890ec36c869e8a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d719080002e4ee112f0151ec7a833d3b\";a:5:{s:6:\"source\";s:32:\"d719080002e4ee112f0151ec7a833d3b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c23286d952fe9bd457e874ec3af7b1f\";a:5:{s:6:\"source\";s:32:\"3c23286d952fe9bd457e874ec3af7b1f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"467e0ec8bf4fd708da7d42dcf597c52b\";a:5:{s:6:\"source\";s:32:\"467e0ec8bf4fd708da7d42dcf597c52b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3f079a199d17c05838265f5a1d8f984e\";a:5:{s:6:\"source\";s:32:\"3f079a199d17c05838265f5a1d8f984e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a7deeb89518d5d0550291f6585c86ad5\";a:5:{s:6:\"source\";s:32:\"a7deeb89518d5d0550291f6585c86ad5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"32cc2a4595e38cda20905a88edda6d53\";a:5:{s:6:\"source\";s:32:\"32cc2a4595e38cda20905a88edda6d53\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2b9adf9b0a2e952a05625037eb55bbb6\";a:5:{s:6:\"source\";s:32:\"2b9adf9b0a2e952a05625037eb55bbb6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a295a825d9c2dabbbf9adc0b3aa0e081\";a:5:{s:6:\"source\";s:32:\"a295a825d9c2dabbbf9adc0b3aa0e081\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f3ca0266fa30b35d4831003e8819b47a\";a:5:{s:6:\"source\";s:32:\"f3ca0266fa30b35d4831003e8819b47a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b0f2ec794b05315e6e518d460234e615\";a:5:{s:6:\"source\";s:32:\"b0f2ec794b05315e6e518d460234e615\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"67ea823cd8267e13e4c19c52b6eb634e\";a:5:{s:6:\"source\";s:32:\"67ea823cd8267e13e4c19c52b6eb634e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3d753f49d0ada4ed42cf797f336c6268\";a:5:{s:6:\"source\";s:32:\"3d753f49d0ada4ed42cf797f336c6268\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"51055bdddb364e92e78f636e7bdb5ab6\";a:5:{s:6:\"source\";s:32:\"51055bdddb364e92e78f636e7bdb5ab6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eefcc3b3a0fee42a0f69cdef8dfdc2e0\";a:5:{s:6:\"source\";s:32:\"eefcc3b3a0fee42a0f69cdef8dfdc2e0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"33ca3a9df1696c60841c8a4c03369176\";a:5:{s:6:\"source\";s:32:\"33ca3a9df1696c60841c8a4c03369176\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4e52918239edc96de27400860d3aa67f\";a:5:{s:6:\"source\";s:32:\"4e52918239edc96de27400860d3aa67f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0c04a1a43ed331cb0ad4a84e980b9eaf\";a:5:{s:6:\"source\";s:32:\"0c04a1a43ed331cb0ad4a84e980b9eaf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"83c34387fcb4cacaae77ec69cf42d72c\";a:5:{s:6:\"source\";s:32:\"83c34387fcb4cacaae77ec69cf42d72c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"685ebaf5211f9abf41b851ea904e3dc3\";a:5:{s:6:\"source\";s:32:\"685ebaf5211f9abf41b851ea904e3dc3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cf56db920726270053ccc4accfa455e0\";a:5:{s:6:\"source\";s:32:\"cf56db920726270053ccc4accfa455e0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b4d618e49e8ed56d308f0b55298f6477\";a:5:{s:6:\"source\";s:32:\"b4d618e49e8ed56d308f0b55298f6477\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e07eb31fd5a92770c44de3f7df35a6d3\";a:5:{s:6:\"source\";s:32:\"e07eb31fd5a92770c44de3f7df35a6d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ce49092947e1d5dc8698a6f039b22524\";a:5:{s:6:\"source\";s:32:\"ce49092947e1d5dc8698a6f039b22524\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"62283f7058f3b550d075aa6d063a88e6\";a:5:{s:6:\"source\";s:32:\"62283f7058f3b550d075aa6d063a88e6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0039801d09f2095abfd2729fd32e52be\";a:5:{s:6:\"source\";s:32:\"0039801d09f2095abfd2729fd32e52be\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"13553374e75f121f3e9229fa44049ee6\";a:5:{s:6:\"source\";s:32:\"13553374e75f121f3e9229fa44049ee6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"35b7946625915e15f654254e57eda8a9\";a:5:{s:6:\"source\";s:32:\"35b7946625915e15f654254e57eda8a9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"97d3a1829d8a47a27d3f178ee4cd948c\";a:5:{s:6:\"source\";s:32:\"97d3a1829d8a47a27d3f178ee4cd948c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"981cc7750385a9d9d90665ad6342f044\";a:5:{s:6:\"source\";s:32:\"981cc7750385a9d9d90665ad6342f044\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4b598a4844333cf238c1504c29121561\";a:5:{s:6:\"source\";s:32:\"4b598a4844333cf238c1504c29121561\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"543dab9e84f4d18539504fa22e2f336e\";a:5:{s:6:\"source\";s:32:\"543dab9e84f4d18539504fa22e2f336e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c6a5cba413d6c77eb8019ac682e6e2c0\";a:5:{s:6:\"source\";s:32:\"c6a5cba413d6c77eb8019ac682e6e2c0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"53179834347ed87c2e16e7bb162fbf22\";a:5:{s:6:\"source\";s:32:\"53179834347ed87c2e16e7bb162fbf22\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e578be4d702c08b5ec224a793e49edce\";a:5:{s:6:\"source\";s:32:\"e578be4d702c08b5ec224a793e49edce\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9629b439fd4f45ac38ddab5015255488\";a:5:{s:6:\"source\";s:32:\"9629b439fd4f45ac38ddab5015255488\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6eda2552bb765b7eb5479d7a29a1db7a\";a:5:{s:6:\"source\";s:32:\"6eda2552bb765b7eb5479d7a29a1db7a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5747b0ff7a32ab0d13126f6bc5e2d8d1\";a:5:{s:6:\"source\";s:32:\"5747b0ff7a32ab0d13126f6bc5e2d8d1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3ccfa5c6f979830663f84b0730aa55b3\";a:5:{s:6:\"source\";s:32:\"3ccfa5c6f979830663f84b0730aa55b3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1d2ea90ba5a2ba7c26ad13db44774947\";a:5:{s:6:\"source\";s:32:\"1d2ea90ba5a2ba7c26ad13db44774947\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"58028420c7599e777f1fd5c752a13040\";a:5:{s:6:\"source\";s:32:\"58028420c7599e777f1fd5c752a13040\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a10d7407a8cc78415f2085e9a91b0f6a\";a:5:{s:6:\"source\";s:32:\"a10d7407a8cc78415f2085e9a91b0f6a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"557025f8d9ccc6dd1f0c59185f9ac6f3\";a:5:{s:6:\"source\";s:32:\"557025f8d9ccc6dd1f0c59185f9ac6f3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dfc5acf85504ed80f6ba9a6cb25a8a72\";a:5:{s:6:\"source\";s:32:\"dfc5acf85504ed80f6ba9a6cb25a8a72\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2e73ca981ac5637f8ae6164777deca49\";a:5:{s:6:\"source\";s:32:\"2e73ca981ac5637f8ae6164777deca49\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6afb15ddaa40c2edd626a8b7d6abfb17\";a:5:{s:6:\"source\";s:32:\"6afb15ddaa40c2edd626a8b7d6abfb17\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"99aeee07d85fef8041ec48154b50712e\";a:5:{s:6:\"source\";s:32:\"99aeee07d85fef8041ec48154b50712e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cada608ce6561e4b170717dd5383b0e1\";a:5:{s:6:\"source\";s:32:\"cada608ce6561e4b170717dd5383b0e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aa118608fbd9319c7a859b30d0313f39\";a:5:{s:6:\"source\";s:32:\"aa118608fbd9319c7a859b30d0313f39\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"53ebf8d7e7a287efe8d5a280e19e76c1\";a:5:{s:6:\"source\";s:32:\"53ebf8d7e7a287efe8d5a280e19e76c1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"99b8213db64b539775e41836e6d1ddc2\";a:5:{s:6:\"source\";s:32:\"99b8213db64b539775e41836e6d1ddc2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f28d7abf9e8304e7c8b9369e3e97b2c5\";a:5:{s:6:\"source\";s:32:\"f28d7abf9e8304e7c8b9369e3e97b2c5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c792abc4807ea3be34fda0c6d1aa8ba5\";a:5:{s:6:\"source\";s:32:\"c792abc4807ea3be34fda0c6d1aa8ba5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c7d1a182fa2969da9df5e08c26346e2\";a:5:{s:6:\"source\";s:32:\"2c7d1a182fa2969da9df5e08c26346e2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"13e8c1d2d346ff99e3f34383b94912f2\";a:5:{s:6:\"source\";s:32:\"13e8c1d2d346ff99e3f34383b94912f2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d2460b0757d7c4f98be823ff9a271e68\";a:5:{s:6:\"source\";s:32:\"d2460b0757d7c4f98be823ff9a271e68\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"99f15a14008c7ddc609cdaf5d6766817\";a:5:{s:6:\"source\";s:32:\"99f15a14008c7ddc609cdaf5d6766817\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1d8a216baffd2d7d8e32be4dbfb24f72\";a:5:{s:6:\"source\";s:32:\"1d8a216baffd2d7d8e32be4dbfb24f72\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b30a33ca7fe7504ebdbbc08e64b08ed8\";a:5:{s:6:\"source\";s:32:\"b30a33ca7fe7504ebdbbc08e64b08ed8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d4f83f8c0a6ef374ba19563f6e85967f\";a:5:{s:6:\"source\";s:32:\"d4f83f8c0a6ef374ba19563f6e85967f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c40bd06f77b2f029ead3827e36304d04\";a:5:{s:6:\"source\";s:32:\"c40bd06f77b2f029ead3827e36304d04\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9e8cf6baa6ef5bce34ccba5df8a76351\";a:5:{s:6:\"source\";s:32:\"9e8cf6baa6ef5bce34ccba5df8a76351\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2bfa1d91bb675a3d3876b8b88d6a967d\";a:5:{s:6:\"source\";s:32:\"2bfa1d91bb675a3d3876b8b88d6a967d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"902ebe22fd0c2e0f400b48a9852a13c7\";a:5:{s:6:\"source\";s:32:\"902ebe22fd0c2e0f400b48a9852a13c7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b8d5faf294c08f9b0aabb8cbac5e6729\";a:5:{s:6:\"source\";s:32:\"b8d5faf294c08f9b0aabb8cbac5e6729\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c17fd4ed972437acf0cef0555fc9d2d7\";a:5:{s:6:\"source\";s:32:\"c17fd4ed972437acf0cef0555fc9d2d7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0cd2b2e2656fc82acee45ff0ce647600\";a:5:{s:6:\"source\";s:32:\"0cd2b2e2656fc82acee45ff0ce647600\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0c2121e27abd52a6627d717bb4275af6\";a:5:{s:6:\"source\";s:32:\"0c2121e27abd52a6627d717bb4275af6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0ff79e6be1bd780f5baa9678a3177ecb\";a:5:{s:6:\"source\";s:32:\"0ff79e6be1bd780f5baa9678a3177ecb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4b4ba10c24a65739d7391ffea79e956e\";a:5:{s:6:\"source\";s:32:\"4b4ba10c24a65739d7391ffea79e956e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b0df8d652f0eb305dea63391832161e9\";a:5:{s:6:\"source\";s:32:\"b0df8d652f0eb305dea63391832161e9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d8f2366df45a903e041408cdefa249f6\";a:5:{s:6:\"source\";s:32:\"d8f2366df45a903e041408cdefa249f6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f3e114f16945801d2a4c25a87c8ac72\";a:5:{s:6:\"source\";s:32:\"7f3e114f16945801d2a4c25a87c8ac72\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eaab135f1653478b41fdefdd7d25b97b\";a:5:{s:6:\"source\";s:32:\"eaab135f1653478b41fdefdd7d25b97b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4a745ec18ac7cb2df9102fde398d9d49\";a:5:{s:6:\"source\";s:32:\"4a745ec18ac7cb2df9102fde398d9d49\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0151bbaa3c555ac316ae923275e7ee6e\";a:5:{s:6:\"source\";s:32:\"0151bbaa3c555ac316ae923275e7ee6e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"416099efeae54f1968a4d12b48806d40\";a:5:{s:6:\"source\";s:32:\"416099efeae54f1968a4d12b48806d40\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"860ae493fcb33b9b80715764658c30a9\";a:5:{s:6:\"source\";s:32:\"860ae493fcb33b9b80715764658c30a9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b0b6c959e49c1e20a8ea3abd51595a22\";a:5:{s:6:\"source\";s:32:\"b0b6c959e49c1e20a8ea3abd51595a22\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"68661062091b796016a5c20b77991a4e\";a:5:{s:6:\"source\";s:32:\"68661062091b796016a5c20b77991a4e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a00ba6b8f313455a56643108656c3df1\";a:5:{s:6:\"source\";s:32:\"a00ba6b8f313455a56643108656c3df1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"87da74e36218980467762f569a238a5d\";a:5:{s:6:\"source\";s:32:\"87da74e36218980467762f569a238a5d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"49fbb2cc20ebdfcb352b7b247206eeef\";a:5:{s:6:\"source\";s:32:\"49fbb2cc20ebdfcb352b7b247206eeef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cd28fed27ac0613f21b5ecbc2774825a\";a:5:{s:6:\"source\";s:32:\"cd28fed27ac0613f21b5ecbc2774825a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"04f22c6d61aadd5cf2425a76fbb6bdab\";a:5:{s:6:\"source\";s:32:\"04f22c6d61aadd5cf2425a76fbb6bdab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"45450a19c0ccba29710bcd76b6b40d91\";a:5:{s:6:\"source\";s:32:\"45450a19c0ccba29710bcd76b6b40d91\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5709de2b845ae40800293997e87a5c49\";a:5:{s:6:\"source\";s:32:\"5709de2b845ae40800293997e87a5c49\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"75f30742971cee63bdc3c3bf384265ba\";a:5:{s:6:\"source\";s:32:\"75f30742971cee63bdc3c3bf384265ba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"397a665342e774a103067832fcc800c8\";a:5:{s:6:\"source\";s:32:\"397a665342e774a103067832fcc800c8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dbfc003d2242845840d860b848032255\";a:5:{s:6:\"source\";s:32:\"dbfc003d2242845840d860b848032255\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"74181012cc515677a0a1ffd4c8159bb0\";a:5:{s:6:\"source\";s:32:\"74181012cc515677a0a1ffd4c8159bb0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"be477fd362dc892c287487f05f8e9ce4\";a:5:{s:6:\"source\";s:32:\"be477fd362dc892c287487f05f8e9ce4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1f0a56d4380a30e182c96d63f2e4dc86\";a:5:{s:6:\"source\";s:32:\"1f0a56d4380a30e182c96d63f2e4dc86\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"031d0cfd282b7a63e12eb0633aee5743\";a:5:{s:6:\"source\";s:32:\"031d0cfd282b7a63e12eb0633aee5743\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"67c01114824fb36062edf5a8c3957791\";a:5:{s:6:\"source\";s:32:\"67c01114824fb36062edf5a8c3957791\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"22509e3fcb9cf61b1965841010714484\";a:5:{s:6:\"source\";s:32:\"22509e3fcb9cf61b1965841010714484\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"139cda3171471a6019790beb2fba377c\";a:5:{s:6:\"source\";s:32:\"139cda3171471a6019790beb2fba377c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"62fd2dcf157f4e92b2614a20df260f8d\";a:5:{s:6:\"source\";s:32:\"62fd2dcf157f4e92b2614a20df260f8d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f70345587b95a1cf0609d3c9e86fbf00\";a:5:{s:6:\"source\";s:32:\"f70345587b95a1cf0609d3c9e86fbf00\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0887fd3a1f600f92eddf6b76bbf5d63b\";a:5:{s:6:\"source\";s:32:\"0887fd3a1f600f92eddf6b76bbf5d63b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8aaa8dc343621a8e0254ba35876b2710\";a:5:{s:6:\"source\";s:32:\"8aaa8dc343621a8e0254ba35876b2710\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fab6924a2a7748101904d27a6274eddd\";a:5:{s:6:\"source\";s:32:\"fab6924a2a7748101904d27a6274eddd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"290d3632f5a57f7d1df309df88a4f97c\";a:5:{s:6:\"source\";s:32:\"290d3632f5a57f7d1df309df88a4f97c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e3447b17e590f46247952c04ab7fe913\";a:5:{s:6:\"source\";s:32:\"e3447b17e590f46247952c04ab7fe913\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4e8e9e4786450039d7bd70a8d5d3eca1\";a:5:{s:6:\"source\";s:32:\"4e8e9e4786450039d7bd70a8d5d3eca1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cb5612dd40df356926c1ac44bbb044cf\";a:5:{s:6:\"source\";s:32:\"cb5612dd40df356926c1ac44bbb044cf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b575e25536314ea97ebd3852b1ce4fa7\";a:5:{s:6:\"source\";s:32:\"b575e25536314ea97ebd3852b1ce4fa7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"63663836e3bd7cb2ee3f8cf42a92e32a\";a:5:{s:6:\"source\";s:32:\"63663836e3bd7cb2ee3f8cf42a92e32a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6c6c7b99e9567d7506786b85b46fffbe\";a:5:{s:6:\"source\";s:32:\"6c6c7b99e9567d7506786b85b46fffbe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c3bf8d36e4dbb349761e612948446476\";a:5:{s:6:\"source\";s:32:\"c3bf8d36e4dbb349761e612948446476\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"61320ae0e2bc4af516afb125de0f9918\";a:5:{s:6:\"source\";s:32:\"61320ae0e2bc4af516afb125de0f9918\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"50bc34892399d694661c2bd5b42aa353\";a:5:{s:6:\"source\";s:32:\"50bc34892399d694661c2bd5b42aa353\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0eb8d3c8dcc396fb6ad37cda5d37121d\";a:5:{s:6:\"source\";s:32:\"0eb8d3c8dcc396fb6ad37cda5d37121d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ed16569833f9c9900678271dad4e7d9a\";a:5:{s:6:\"source\";s:32:\"ed16569833f9c9900678271dad4e7d9a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b1d4b9e6d5f5052603689dc27b297aed\";a:5:{s:6:\"source\";s:32:\"b1d4b9e6d5f5052603689dc27b297aed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3777185f71cd756d8abdba016d944b0b\";a:5:{s:6:\"source\";s:32:\"3777185f71cd756d8abdba016d944b0b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e1d1eff23df55b43ef2bbf8e4f92681c\";a:5:{s:6:\"source\";s:32:\"e1d1eff23df55b43ef2bbf8e4f92681c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"34d058d68489092315e267884a39f33a\";a:5:{s:6:\"source\";s:32:\"34d058d68489092315e267884a39f33a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"584268b4aadc1ea570c77dbedaee8916\";a:5:{s:6:\"source\";s:32:\"584268b4aadc1ea570c77dbedaee8916\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"54eef6b03bf4a11e606ea90b497689ef\";a:5:{s:6:\"source\";s:32:\"54eef6b03bf4a11e606ea90b497689ef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"203a52f41f8bf96e37dc9ecbe079fd8e\";a:5:{s:6:\"source\";s:32:\"203a52f41f8bf96e37dc9ecbe079fd8e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5bfa5ff874e7df1ce3d83a4d4159e73b\";a:5:{s:6:\"source\";s:32:\"5bfa5ff874e7df1ce3d83a4d4159e73b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"06ab76dd57bd2087ccbf184d445ad9cf\";a:5:{s:6:\"source\";s:32:\"06ab76dd57bd2087ccbf184d445ad9cf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4c23f8d8147f32ea312f43156fe1eb30\";a:5:{s:6:\"source\";s:32:\"4c23f8d8147f32ea312f43156fe1eb30\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"860452b378a80636b620c013a4778081\";a:5:{s:6:\"source\";s:32:\"860452b378a80636b620c013a4778081\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6d66a8fab3c944b080320566ba87d2a0\";a:5:{s:6:\"source\";s:32:\"6d66a8fab3c944b080320566ba87d2a0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3d4727f170c81b2e3527e3636ed842c1\";a:5:{s:6:\"source\";s:32:\"3d4727f170c81b2e3527e3636ed842c1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"77d430f6a92380a7353defecea2177f6\";a:5:{s:6:\"source\";s:32:\"77d430f6a92380a7353defecea2177f6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1a7046291343704fbb6c666c9ee784e3\";a:5:{s:6:\"source\";s:32:\"1a7046291343704fbb6c666c9ee784e3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"146bbfbf9e4998c66d9ac27f4b30a59f\";a:5:{s:6:\"source\";s:32:\"146bbfbf9e4998c66d9ac27f4b30a59f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"98296fd4cfe80b3dad37eb07f48324d0\";a:5:{s:6:\"source\";s:32:\"98296fd4cfe80b3dad37eb07f48324d0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"08c6b6a5c172d5a327a0413ab984b30f\";a:5:{s:6:\"source\";s:32:\"08c6b6a5c172d5a327a0413ab984b30f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"07262f75e3aea5e723fc2e0013c175d2\";a:5:{s:6:\"source\";s:32:\"07262f75e3aea5e723fc2e0013c175d2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d845b5277d6d4b7cc999d28a2c352cd9\";a:5:{s:6:\"source\";s:32:\"d845b5277d6d4b7cc999d28a2c352cd9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e1017a5862a75d95b7625adffba4340d\";a:5:{s:6:\"source\";s:32:\"e1017a5862a75d95b7625adffba4340d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9e19a6cff2f66756fb6c7c751dbaa291\";a:5:{s:6:\"source\";s:32:\"9e19a6cff2f66756fb6c7c751dbaa291\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0074b23220e82fede35fe34201a399ac\";a:5:{s:6:\"source\";s:32:\"0074b23220e82fede35fe34201a399ac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ca9c4184cb4a676306c4fce04c5259d2\";a:5:{s:6:\"source\";s:32:\"ca9c4184cb4a676306c4fce04c5259d2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a8bab51e93d8f287c1fa0ff6922c94b6\";a:5:{s:6:\"source\";s:32:\"a8bab51e93d8f287c1fa0ff6922c94b6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2faadf24a2d3b77dfa11ec9c50081c88\";a:5:{s:6:\"source\";s:32:\"2faadf24a2d3b77dfa11ec9c50081c88\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3d6b9e5656dc7899ea347f5730687e83\";a:5:{s:6:\"source\";s:32:\"3d6b9e5656dc7899ea347f5730687e83\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cbec2bcb0674765b0ec761399eb07607\";a:5:{s:6:\"source\";s:32:\"cbec2bcb0674765b0ec761399eb07607\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9ac8bf36723bb7b08638c380caf053b2\";a:5:{s:6:\"source\";s:32:\"9ac8bf36723bb7b08638c380caf053b2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5af9c50802ba1961404ef23be5b176c6\";a:5:{s:6:\"source\";s:32:\"5af9c50802ba1961404ef23be5b176c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1e2e07055123d22b005ec90637ee83b8\";a:5:{s:6:\"source\";s:32:\"1e2e07055123d22b005ec90637ee83b8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5d98812dad7e7c99cd554c8084f3e98c\";a:5:{s:6:\"source\";s:32:\"5d98812dad7e7c99cd554c8084f3e98c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"834e209a560da20b71393abaa01ba06b\";a:5:{s:6:\"source\";s:32:\"834e209a560da20b71393abaa01ba06b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"43694c96fad0cffc3fe3ee5684628ce5\";a:5:{s:6:\"source\";s:32:\"43694c96fad0cffc3fe3ee5684628ce5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ac85c0379fa7d712376d389ea0948610\";a:5:{s:6:\"source\";s:32:\"ac85c0379fa7d712376d389ea0948610\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9ebf723d349dbe5db17d930bb0a35a7e\";a:5:{s:6:\"source\";s:32:\"9ebf723d349dbe5db17d930bb0a35a7e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f62e542826531a34b00796a78df0b465\";a:5:{s:6:\"source\";s:32:\"f62e542826531a34b00796a78df0b465\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"87b01f7f050aaabc6f5d60081dc083a5\";a:5:{s:6:\"source\";s:32:\"87b01f7f050aaabc6f5d60081dc083a5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1d2a8467f71599fc4c45e8f1c4b38eea\";a:5:{s:6:\"source\";s:32:\"1d2a8467f71599fc4c45e8f1c4b38eea\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9b42303e7a797fcc713a87c5606e2173\";a:5:{s:6:\"source\";s:32:\"9b42303e7a797fcc713a87c5606e2173\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"579b1e529ccbfdf8bf27db50ac299ba8\";a:5:{s:6:\"source\";s:32:\"579b1e529ccbfdf8bf27db50ac299ba8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a90ee137eed098518bc1bfc3a0c8ceb\";a:5:{s:6:\"source\";s:32:\"8a90ee137eed098518bc1bfc3a0c8ceb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"491d14eaae733e4e0af30edc118c3e84\";a:5:{s:6:\"source\";s:32:\"491d14eaae733e4e0af30edc118c3e84\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6d0fea097186a49760faf79884bbfd80\";a:5:{s:6:\"source\";s:32:\"6d0fea097186a49760faf79884bbfd80\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5f8fc34b6c12554bc78de94e20ce662d\";a:5:{s:6:\"source\";s:32:\"5f8fc34b6c12554bc78de94e20ce662d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"365e17ca95bf8f6dc790572e040b9cd2\";a:5:{s:6:\"source\";s:32:\"365e17ca95bf8f6dc790572e040b9cd2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e26bee7273e48087639af4c95219679a\";a:5:{s:6:\"source\";s:32:\"e26bee7273e48087639af4c95219679a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2f0f3cb48ae9bf06ac76c89253052785\";a:5:{s:6:\"source\";s:32:\"2f0f3cb48ae9bf06ac76c89253052785\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e555092576a07e8e8eb6124ad3184ec0\";a:5:{s:6:\"source\";s:32:\"e555092576a07e8e8eb6124ad3184ec0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"250ab425d05a2ad676139b3405cabe3d\";a:5:{s:6:\"source\";s:32:\"250ab425d05a2ad676139b3405cabe3d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c0bc5c5b89ff2efd66ef1813773e523\";a:5:{s:6:\"source\";s:32:\"3c0bc5c5b89ff2efd66ef1813773e523\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4c6ae486507675cd0990253131310c05\";a:5:{s:6:\"source\";s:32:\"4c6ae486507675cd0990253131310c05\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0cbef828fe4d7e176ad749b4532e2057\";a:5:{s:6:\"source\";s:32:\"0cbef828fe4d7e176ad749b4532e2057\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"869c678fefb6be32bd65ef7c0fe601c4\";a:5:{s:6:\"source\";s:32:\"869c678fefb6be32bd65ef7c0fe601c4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"114d062f597d2d45f8356c6c30c5566f\";a:5:{s:6:\"source\";s:32:\"114d062f597d2d45f8356c6c30c5566f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"047232a47a12211691ece485d447efdf\";a:5:{s:6:\"source\";s:32:\"047232a47a12211691ece485d447efdf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7bf27c635d4f6229f9a711f3bb3f272d\";a:5:{s:6:\"source\";s:32:\"7bf27c635d4f6229f9a711f3bb3f272d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4a7072206e87e069ecc76119d4708508\";a:5:{s:6:\"source\";s:32:\"4a7072206e87e069ecc76119d4708508\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"823183e8de9fb1e09c9fa7f1eb66ffc7\";a:5:{s:6:\"source\";s:32:\"823183e8de9fb1e09c9fa7f1eb66ffc7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"715d337cd56c0517481ebb523fcc81f8\";a:5:{s:6:\"source\";s:32:\"715d337cd56c0517481ebb523fcc81f8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cba85028fc32bc80c3a3a7b61f9f5113\";a:5:{s:6:\"source\";s:32:\"cba85028fc32bc80c3a3a7b61f9f5113\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"40f9db41fee77df25f3f823573231e69\";a:5:{s:6:\"source\";s:32:\"40f9db41fee77df25f3f823573231e69\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4a6a1ae109848f2ca5f49a537cac2617\";a:5:{s:6:\"source\";s:32:\"4a6a1ae109848f2ca5f49a537cac2617\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9e02b7753bf2596688036e4922dcdb93\";a:5:{s:6:\"source\";s:32:\"9e02b7753bf2596688036e4922dcdb93\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f6066a58aeea768f02952e992d8f12c2\";a:5:{s:6:\"source\";s:32:\"f6066a58aeea768f02952e992d8f12c2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"439182e39f625d4a365190173be09a90\";a:5:{s:6:\"source\";s:32:\"439182e39f625d4a365190173be09a90\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ce98266c7e1c20e3229fe6a15d0412a\";a:5:{s:6:\"source\";s:32:\"8ce98266c7e1c20e3229fe6a15d0412a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0b5061a3f4861bed5caf3ecdf231154d\";a:5:{s:6:\"source\";s:32:\"0b5061a3f4861bed5caf3ecdf231154d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8f56664ec23d0be1cd74acceb9406b73\";a:5:{s:6:\"source\";s:32:\"8f56664ec23d0be1cd74acceb9406b73\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e39f5a6217dc4982003fb2f85f7cd2fb\";a:5:{s:6:\"source\";s:32:\"e39f5a6217dc4982003fb2f85f7cd2fb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f1cba54c0f7a46296c871b3dafacc469\";a:5:{s:6:\"source\";s:32:\"f1cba54c0f7a46296c871b3dafacc469\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"08fe3527e67586d1b5d4f8380f585f59\";a:5:{s:6:\"source\";s:32:\"08fe3527e67586d1b5d4f8380f585f59\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a77efa009db32a878f4c5a21438843b3\";a:5:{s:6:\"source\";s:32:\"a77efa009db32a878f4c5a21438843b3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2a90f97eee5043c7d780c59bbc6a37e0\";a:5:{s:6:\"source\";s:32:\"2a90f97eee5043c7d780c59bbc6a37e0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5d5833e7bfe201c5ce051f639827812d\";a:5:{s:6:\"source\";s:32:\"5d5833e7bfe201c5ce051f639827812d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2273e7fd3ede101853322c5ea4ceb911\";a:5:{s:6:\"source\";s:32:\"2273e7fd3ede101853322c5ea4ceb911\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff85c1e4ff13fa3a3bd97d0aa6b13b4f\";a:5:{s:6:\"source\";s:32:\"ff85c1e4ff13fa3a3bd97d0aa6b13b4f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"da93ed4c4dafbdf0c17ce2a410d2b32c\";a:5:{s:6:\"source\";s:32:\"da93ed4c4dafbdf0c17ce2a410d2b32c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a5b802d7ff347bf3c455df4b736c3c0\";a:5:{s:6:\"source\";s:32:\"8a5b802d7ff347bf3c455df4b736c3c0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b071d6a3929be61d7704c4b5b9b8fc36\";a:5:{s:6:\"source\";s:32:\"b071d6a3929be61d7704c4b5b9b8fc36\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5add8f4cfac894e60c203186f795fbc3\";a:5:{s:6:\"source\";s:32:\"5add8f4cfac894e60c203186f795fbc3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"38cb44ae412d4a136404c8b237765034\";a:5:{s:6:\"source\";s:32:\"38cb44ae412d4a136404c8b237765034\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b39ac5cc72bf283d1080ce97510e5552\";a:5:{s:6:\"source\";s:32:\"b39ac5cc72bf283d1080ce97510e5552\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3e1de76610c546f0f740bff9162cf9f6\";a:5:{s:6:\"source\";s:32:\"3e1de76610c546f0f740bff9162cf9f6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7cdba30c5c49d5472052e8a5bfb4500e\";a:5:{s:6:\"source\";s:32:\"7cdba30c5c49d5472052e8a5bfb4500e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0a6f94760d239645c26bf792f5d653fb\";a:5:{s:6:\"source\";s:32:\"0a6f94760d239645c26bf792f5d653fb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5642e4f530322de3cbde42b44088f054\";a:5:{s:6:\"source\";s:32:\"5642e4f530322de3cbde42b44088f054\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a706f099f8b594c1e729170a8c3f7e1e\";a:5:{s:6:\"source\";s:32:\"a706f099f8b594c1e729170a8c3f7e1e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3a50795796116716993146d469efa800\";a:5:{s:6:\"source\";s:32:\"3a50795796116716993146d469efa800\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ddb70b59dbdffcc705fb29eb64b4c959\";a:5:{s:6:\"source\";s:32:\"ddb70b59dbdffcc705fb29eb64b4c959\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"879647eec7e1c01922bd659ef248eb71\";a:5:{s:6:\"source\";s:32:\"879647eec7e1c01922bd659ef248eb71\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"01cf330be368c5bd9e0be9761d2e45a2\";a:5:{s:6:\"source\";s:32:\"01cf330be368c5bd9e0be9761d2e45a2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"83ffe83758d37f871dc11ab0b9da5513\";a:5:{s:6:\"source\";s:32:\"83ffe83758d37f871dc11ab0b9da5513\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"08e7cdd9f7a0966ea25b32e6713b9939\";a:5:{s:6:\"source\";s:32:\"08e7cdd9f7a0966ea25b32e6713b9939\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"39b52e8a1b567f295f4af8f8d1aba18c\";a:5:{s:6:\"source\";s:32:\"39b52e8a1b567f295f4af8f8d1aba18c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a8e3053364e05ba65d321530f3354cc1\";a:5:{s:6:\"source\";s:32:\"a8e3053364e05ba65d321530f3354cc1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aa8362661134efb7264df4860001c3b7\";a:5:{s:6:\"source\";s:32:\"aa8362661134efb7264df4860001c3b7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"347d0f9b74da1c4189a9585565f6a0f3\";a:5:{s:6:\"source\";s:32:\"347d0f9b74da1c4189a9585565f6a0f3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b687fc4921a2bb30a79fac490ee013e6\";a:5:{s:6:\"source\";s:32:\"b687fc4921a2bb30a79fac490ee013e6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"000acfa2de92b3f036be1e0a639b384a\";a:5:{s:6:\"source\";s:32:\"000acfa2de92b3f036be1e0a639b384a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2dae8695335207ac03deb049be9b1736\";a:5:{s:6:\"source\";s:32:\"2dae8695335207ac03deb049be9b1736\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d173b1e4702ff7424f0bcf5ce2f56720\";a:5:{s:6:\"source\";s:32:\"d173b1e4702ff7424f0bcf5ce2f56720\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c2018276bc8ac2572ab1f94724e42a6b\";a:5:{s:6:\"source\";s:32:\"c2018276bc8ac2572ab1f94724e42a6b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"211080774ba8d96b4482d82e0d8b696f\";a:5:{s:6:\"source\";s:32:\"211080774ba8d96b4482d82e0d8b696f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c89b4bea40f7ea8f709f4d6d5405e832\";a:5:{s:6:\"source\";s:32:\"c89b4bea40f7ea8f709f4d6d5405e832\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"31743f657de710d25361b4066c2749b0\";a:5:{s:6:\"source\";s:32:\"31743f657de710d25361b4066c2749b0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"74943f43579d012c501ffec24c3aaf12\";a:5:{s:6:\"source\";s:32:\"74943f43579d012c501ffec24c3aaf12\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4fdf824495259ab2f8017514dc6e974b\";a:5:{s:6:\"source\";s:32:\"4fdf824495259ab2f8017514dc6e974b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff321f031f43baf7d194e13c55d05276\";a:5:{s:6:\"source\";s:32:\"ff321f031f43baf7d194e13c55d05276\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a81685d9fd64cc434339b3e16084e13a\";a:5:{s:6:\"source\";s:32:\"a81685d9fd64cc434339b3e16084e13a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"53c6565971a19131acdfe6148a5278f2\";a:5:{s:6:\"source\";s:32:\"53c6565971a19131acdfe6148a5278f2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"70bb326402d37def7ea9a33657aefb72\";a:5:{s:6:\"source\";s:32:\"70bb326402d37def7ea9a33657aefb72\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"29a7dfea060cc04ea86e95294b349513\";a:5:{s:6:\"source\";s:32:\"29a7dfea060cc04ea86e95294b349513\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"531e99538c82ea13d25dc61f8b31ddde\";a:5:{s:6:\"source\";s:32:\"531e99538c82ea13d25dc61f8b31ddde\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f1ea3b8f198d365ac160f8eb1997fcd9\";a:5:{s:6:\"source\";s:32:\"f1ea3b8f198d365ac160f8eb1997fcd9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ad64891f3336ac37791a8f2b144efe03\";a:5:{s:6:\"source\";s:32:\"ad64891f3336ac37791a8f2b144efe03\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bef8fb3c58e0c79d62b56eaae7aa5fa0\";a:5:{s:6:\"source\";s:32:\"bef8fb3c58e0c79d62b56eaae7aa5fa0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"49ff3d55b299c045d573cb0f78584df0\";a:5:{s:6:\"source\";s:32:\"49ff3d55b299c045d573cb0f78584df0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9abf079f3bd37fd912bff7a5f8f623f4\";a:5:{s:6:\"source\";s:32:\"9abf079f3bd37fd912bff7a5f8f623f4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"34ce8dbc64ccd89ca01372d5d3bcc88b\";a:5:{s:6:\"source\";s:32:\"34ce8dbc64ccd89ca01372d5d3bcc88b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3a4e2c187726d8f84455f30f0ca545bf\";a:5:{s:6:\"source\";s:32:\"3a4e2c187726d8f84455f30f0ca545bf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9c2b9a72ddb2b273c84ee3f9849b5ab5\";a:5:{s:6:\"source\";s:32:\"9c2b9a72ddb2b273c84ee3f9849b5ab5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a06b2f3cf6c7ba1843ffbe3ec19a69ac\";a:5:{s:6:\"source\";s:32:\"a06b2f3cf6c7ba1843ffbe3ec19a69ac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9a4889998b626c983007486fb68f02f7\";a:5:{s:6:\"source\";s:32:\"9a4889998b626c983007486fb68f02f7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a2b20118698c3e58029c7b8963cbe2de\";a:5:{s:6:\"source\";s:32:\"a2b20118698c3e58029c7b8963cbe2de\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"10cc151adf60dde55d6685b70164105c\";a:5:{s:6:\"source\";s:32:\"10cc151adf60dde55d6685b70164105c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7a35be012da7601b712a7841c2285d65\";a:5:{s:6:\"source\";s:32:\"7a35be012da7601b712a7841c2285d65\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dca13c1830d2a00801a75311e6530b2a\";a:5:{s:6:\"source\";s:32:\"dca13c1830d2a00801a75311e6530b2a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"86a5be0c3510f37b24ce73d5a3f5b145\";a:5:{s:6:\"source\";s:32:\"86a5be0c3510f37b24ce73d5a3f5b145\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0715d0f1012b81c2a6d48a7a9f677a22\";a:5:{s:6:\"source\";s:32:\"0715d0f1012b81c2a6d48a7a9f677a22\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0908b1159d05af65e102846c9359d92a\";a:5:{s:6:\"source\";s:32:\"0908b1159d05af65e102846c9359d92a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4843a770e96f780474a1a1dc6b121efc\";a:5:{s:6:\"source\";s:32:\"4843a770e96f780474a1a1dc6b121efc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ce2daef6ea19ffb4bbf72b499ba76922\";a:5:{s:6:\"source\";s:32:\"ce2daef6ea19ffb4bbf72b499ba76922\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"55e10c85384c0ad8ad7ddef1e48a68a7\";a:5:{s:6:\"source\";s:32:\"55e10c85384c0ad8ad7ddef1e48a68a7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3ba230a2a47c9e3e58c324aa74afcd0a\";a:5:{s:6:\"source\";s:32:\"3ba230a2a47c9e3e58c324aa74afcd0a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"52944507538120a47c54c300f40c6889\";a:5:{s:6:\"source\";s:32:\"52944507538120a47c54c300f40c6889\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b3a8a1858b3540759d5b276d286940d6\";a:5:{s:6:\"source\";s:32:\"b3a8a1858b3540759d5b276d286940d6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"031349de4a6bc75c4621de6b6a9fa697\";a:5:{s:6:\"source\";s:32:\"031349de4a6bc75c4621de6b6a9fa697\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e215da787513a70268207cece94a9bf4\";a:5:{s:6:\"source\";s:32:\"e215da787513a70268207cece94a9bf4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e3f1fa7512c006224aeb7dc874f31136\";a:5:{s:6:\"source\";s:32:\"e3f1fa7512c006224aeb7dc874f31136\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f718187612bdc1b5440c09131c1099b3\";a:5:{s:6:\"source\";s:32:\"f718187612bdc1b5440c09131c1099b3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bd9cb13c2b6219e259763f6a25b43b06\";a:5:{s:6:\"source\";s:32:\"bd9cb13c2b6219e259763f6a25b43b06\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f9bcd5d7e504fc34648f9a12ac9e818\";a:5:{s:6:\"source\";s:32:\"7f9bcd5d7e504fc34648f9a12ac9e818\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6d327de255d667151c1e5d6c069d1433\";a:5:{s:6:\"source\";s:32:\"6d327de255d667151c1e5d6c069d1433\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a6384eb17c8c56bea2bf5102bce63e02\";a:5:{s:6:\"source\";s:32:\"a6384eb17c8c56bea2bf5102bce63e02\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d51ba7bc8d569730292dd9e04a93f3fd\";a:5:{s:6:\"source\";s:32:\"d51ba7bc8d569730292dd9e04a93f3fd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f26218beec10b9f55221c3275df8f378\";a:5:{s:6:\"source\";s:32:\"f26218beec10b9f55221c3275df8f378\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e5007c11105ca53e43ef1492ebf0af67\";a:5:{s:6:\"source\";s:32:\"e5007c11105ca53e43ef1492ebf0af67\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"037a1824fc03564512b89e5bb217ae97\";a:5:{s:6:\"source\";s:32:\"037a1824fc03564512b89e5bb217ae97\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8e39ed3b6883ea41733711e463b0df85\";a:5:{s:6:\"source\";s:32:\"8e39ed3b6883ea41733711e463b0df85\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e6dfc3566706663ac2b8c1f7cac5b537\";a:5:{s:6:\"source\";s:32:\"e6dfc3566706663ac2b8c1f7cac5b537\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"719c53ddc4aa8799cd99bc8a56b33824\";a:5:{s:6:\"source\";s:32:\"719c53ddc4aa8799cd99bc8a56b33824\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"93d85b10232f271d7ff001620f7243f6\";a:5:{s:6:\"source\";s:32:\"93d85b10232f271d7ff001620f7243f6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"efe29dea6b43fd5fcf0a35e490dc4987\";a:5:{s:6:\"source\";s:32:\"efe29dea6b43fd5fcf0a35e490dc4987\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ed4417b3d30e76a45f4379d2dbb3ce18\";a:5:{s:6:\"source\";s:32:\"ed4417b3d30e76a45f4379d2dbb3ce18\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"85a16e612a731907bf1f15588fcc0f48\";a:5:{s:6:\"source\";s:32:\"85a16e612a731907bf1f15588fcc0f48\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f7d52754807281c1f5965b9602c20ead\";a:5:{s:6:\"source\";s:32:\"f7d52754807281c1f5965b9602c20ead\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"74a37207a360d491857771b1947bfe5e\";a:5:{s:6:\"source\";s:32:\"74a37207a360d491857771b1947bfe5e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"682e6d4bfe58fb587e36b6230eaa2676\";a:5:{s:6:\"source\";s:32:\"682e6d4bfe58fb587e36b6230eaa2676\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"44fb285f54383c37a90e5ad747c4a151\";a:5:{s:6:\"source\";s:32:\"44fb285f54383c37a90e5ad747c4a151\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2e2f43f0d0d3621a74b2795cda3917ee\";a:5:{s:6:\"source\";s:32:\"2e2f43f0d0d3621a74b2795cda3917ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2cacaa862c825dbc7389e1f46e8b5c4c\";a:5:{s:6:\"source\";s:32:\"2cacaa862c825dbc7389e1f46e8b5c4c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7a32232901fab3beb33f3eddd6c2fc20\";a:5:{s:6:\"source\";s:32:\"7a32232901fab3beb33f3eddd6c2fc20\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"20531cf6c0c372faf32ab6d7ce0a5416\";a:5:{s:6:\"source\";s:32:\"20531cf6c0c372faf32ab6d7ce0a5416\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9670bcb006539416b7b5e65935237675\";a:5:{s:6:\"source\";s:32:\"9670bcb006539416b7b5e65935237675\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a69eddfa622a5feb76b3c27d983d2694\";a:5:{s:6:\"source\";s:32:\"a69eddfa622a5feb76b3c27d983d2694\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"66d007a3da77a69ed954a0dee4c4d1cf\";a:5:{s:6:\"source\";s:32:\"66d007a3da77a69ed954a0dee4c4d1cf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a63e739d85742c644c3bb06c5ab5abf3\";a:5:{s:6:\"source\";s:32:\"a63e739d85742c644c3bb06c5ab5abf3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"682bdafe602af9c7dd88f1f8b9f8e871\";a:5:{s:6:\"source\";s:32:\"682bdafe602af9c7dd88f1f8b9f8e871\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0cc663dc874d1c50fced9f76b612e6d1\";a:5:{s:6:\"source\";s:32:\"0cc663dc874d1c50fced9f76b612e6d1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a7c5b296d1ecb4ff3aaad532539bcc78\";a:5:{s:6:\"source\";s:32:\"a7c5b296d1ecb4ff3aaad532539bcc78\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a3fc84ee2df89c8c5afb11be678072d8\";a:5:{s:6:\"source\";s:32:\"a3fc84ee2df89c8c5afb11be678072d8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"62033d1122706a799c9274bb7a98d7e0\";a:5:{s:6:\"source\";s:32:\"62033d1122706a799c9274bb7a98d7e0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3e80472ccc3a05a8792529d3c1f0c294\";a:5:{s:6:\"source\";s:32:\"3e80472ccc3a05a8792529d3c1f0c294\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4dbbcec52918d5d32d2e89d533ece755\";a:5:{s:6:\"source\";s:32:\"4dbbcec52918d5d32d2e89d533ece755\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4fc23f79f18be00f4dd34a151bfe591a\";a:5:{s:6:\"source\";s:32:\"4fc23f79f18be00f4dd34a151bfe591a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7268049c3e9f477aed56d19be368e8a7\";a:5:{s:6:\"source\";s:32:\"7268049c3e9f477aed56d19be368e8a7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"395c6deffd74861553df291b56018260\";a:5:{s:6:\"source\";s:32:\"395c6deffd74861553df291b56018260\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c2ad3de76f39bdeeaba70e6694ee5f65\";a:5:{s:6:\"source\";s:32:\"c2ad3de76f39bdeeaba70e6694ee5f65\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"686156349336ef4f99b6fb6f937eff40\";a:5:{s:6:\"source\";s:32:\"686156349336ef4f99b6fb6f937eff40\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3d0812d962aa7be5bdadc925d0a1ef8c\";a:5:{s:6:\"source\";s:32:\"3d0812d962aa7be5bdadc925d0a1ef8c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c570918886a1110a595803a6b640ebe9\";a:5:{s:6:\"source\";s:32:\"c570918886a1110a595803a6b640ebe9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"74b6323d12a177d73e9b4c031878834e\";a:5:{s:6:\"source\";s:32:\"74b6323d12a177d73e9b4c031878834e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5678f5d64be2d49911e9a1c769f7f0b1\";a:5:{s:6:\"source\";s:32:\"5678f5d64be2d49911e9a1c769f7f0b1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c2545b8f5925abd8d679ca02c994b77\";a:5:{s:6:\"source\";s:32:\"2c2545b8f5925abd8d679ca02c994b77\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4c22097cc18ded2e33486d6b344afd71\";a:5:{s:6:\"source\";s:32:\"4c22097cc18ded2e33486d6b344afd71\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d382403a40a65574923cbd1e0781f060\";a:5:{s:6:\"source\";s:32:\"d382403a40a65574923cbd1e0781f060\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b55270ff5e934c49f5f762225379c90b\";a:5:{s:6:\"source\";s:32:\"b55270ff5e934c49f5f762225379c90b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9cb59cd7d8ea69a7f72894e6fc989a32\";a:5:{s:6:\"source\";s:32:\"9cb59cd7d8ea69a7f72894e6fc989a32\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c12199239eb0aae215c6fdfdc6327e5c\";a:5:{s:6:\"source\";s:32:\"c12199239eb0aae215c6fdfdc6327e5c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c2180d4f20810a7eabe3d6eac4f223a8\";a:5:{s:6:\"source\";s:32:\"c2180d4f20810a7eabe3d6eac4f223a8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"79cd1f6f354f03345c34a935e70ddb69\";a:5:{s:6:\"source\";s:32:\"79cd1f6f354f03345c34a935e70ddb69\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8bbf78d702e29f8d4bc2faf8580d5a06\";a:5:{s:6:\"source\";s:32:\"8bbf78d702e29f8d4bc2faf8580d5a06\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"81d9ef7559fed4cce8688500609ef1ad\";a:5:{s:6:\"source\";s:32:\"81d9ef7559fed4cce8688500609ef1ad\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"495e6520eae03b3fb394fd16c95c7d32\";a:5:{s:6:\"source\";s:32:\"495e6520eae03b3fb394fd16c95c7d32\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1f880866e80f2291b13a5475291c69ed\";a:5:{s:6:\"source\";s:32:\"1f880866e80f2291b13a5475291c69ed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ad228df8116a7be08a7debced0f00cb9\";a:5:{s:6:\"source\";s:32:\"ad228df8116a7be08a7debced0f00cb9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"77c4746fbb3881e21b71ee35a614a8fb\";a:5:{s:6:\"source\";s:32:\"77c4746fbb3881e21b71ee35a614a8fb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c2e547ba54f7048842d9f06a671ac53\";a:5:{s:6:\"source\";s:32:\"2c2e547ba54f7048842d9f06a671ac53\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6c584587c33da4bea66910430e032c9f\";a:5:{s:6:\"source\";s:32:\"6c584587c33da4bea66910430e032c9f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ee37f2250a73fb80ff79dcde9a3479b9\";a:5:{s:6:\"source\";s:32:\"ee37f2250a73fb80ff79dcde9a3479b9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"01e026e48e6a96c3f5820137eeeda0cc\";a:5:{s:6:\"source\";s:32:\"01e026e48e6a96c3f5820137eeeda0cc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e9f73444c2bd2ddd946eeabd7f62a5f0\";a:5:{s:6:\"source\";s:32:\"e9f73444c2bd2ddd946eeabd7f62a5f0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"051b2ec2a630b2e8142d070ff83cd101\";a:5:{s:6:\"source\";s:32:\"051b2ec2a630b2e8142d070ff83cd101\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"282f0dfb62594a2ca966ed10f5b46e3c\";a:5:{s:6:\"source\";s:32:\"282f0dfb62594a2ca966ed10f5b46e3c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a912fb78d3c6b002baa63873cd099ac4\";a:5:{s:6:\"source\";s:32:\"a912fb78d3c6b002baa63873cd099ac4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0556057d356f094fb6dba69b5465fa78\";a:5:{s:6:\"source\";s:32:\"0556057d356f094fb6dba69b5465fa78\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"917589ad4b53a3581ffbf496ce6df497\";a:5:{s:6:\"source\";s:32:\"917589ad4b53a3581ffbf496ce6df497\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"32961bc9d1fa172c9e1a863dfbacb196\";a:5:{s:6:\"source\";s:32:\"32961bc9d1fa172c9e1a863dfbacb196\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c5494dd55e8424ab4d1b73d3b2aa4ebb\";a:5:{s:6:\"source\";s:32:\"c5494dd55e8424ab4d1b73d3b2aa4ebb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e26df4a777c08917210ecb0eb1edd09c\";a:5:{s:6:\"source\";s:32:\"e26df4a777c08917210ecb0eb1edd09c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"62442d93a3ff5adbe57a37dd964855c3\";a:5:{s:6:\"source\";s:32:\"62442d93a3ff5adbe57a37dd964855c3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ab8abde3ddcee1db878ca16aecc23b1\";a:5:{s:6:\"source\";s:32:\"8ab8abde3ddcee1db878ca16aecc23b1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3148ee893975561b88ee51e003d890d3\";a:5:{s:6:\"source\";s:32:\"3148ee893975561b88ee51e003d890d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7cb59f9e006f19564c81014aa4bb72c2\";a:5:{s:6:\"source\";s:32:\"7cb59f9e006f19564c81014aa4bb72c2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c7c1942478f5604575016c109b85a281\";a:5:{s:6:\"source\";s:32:\"c7c1942478f5604575016c109b85a281\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c56ed033f525194ecd57d673ba47c167\";a:5:{s:6:\"source\";s:32:\"c56ed033f525194ecd57d673ba47c167\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7a3903551007caefaf1618bf5aeab814\";a:5:{s:6:\"source\";s:32:\"7a3903551007caefaf1618bf5aeab814\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b046f3a9558d16fb734d24bff36796cd\";a:5:{s:6:\"source\";s:32:\"b046f3a9558d16fb734d24bff36796cd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"964ab89d8c1cca7454f8a08ff88992a6\";a:5:{s:6:\"source\";s:32:\"964ab89d8c1cca7454f8a08ff88992a6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0bbd56572df46c28d1b7a4bb86baf369\";a:5:{s:6:\"source\";s:32:\"0bbd56572df46c28d1b7a4bb86baf369\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"30e527c3a34955d0dc293d399442d41d\";a:5:{s:6:\"source\";s:32:\"30e527c3a34955d0dc293d399442d41d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b5f55c7b69eff0dc52f8b056bcddc748\";a:5:{s:6:\"source\";s:32:\"b5f55c7b69eff0dc52f8b056bcddc748\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d968f19d414afe122a7f100d3d32d69a\";a:5:{s:6:\"source\";s:32:\"d968f19d414afe122a7f100d3d32d69a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"11834322dde5737916b8d2683f6d8474\";a:5:{s:6:\"source\";s:32:\"11834322dde5737916b8d2683f6d8474\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"282f29aa6cb5460085147f4d1b127529\";a:5:{s:6:\"source\";s:32:\"282f29aa6cb5460085147f4d1b127529\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1b0f7f75db39f139f3e95fe4e9a11ec9\";a:5:{s:6:\"source\";s:32:\"1b0f7f75db39f139f3e95fe4e9a11ec9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dea7d32f379d5b55bcf4e38f11d07a68\";a:5:{s:6:\"source\";s:32:\"dea7d32f379d5b55bcf4e38f11d07a68\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"05413ed7705fc3013d128d31321ba454\";a:5:{s:6:\"source\";s:32:\"05413ed7705fc3013d128d31321ba454\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d1691cc134b0c48d5efbbc13106a26df\";a:5:{s:6:\"source\";s:32:\"d1691cc134b0c48d5efbbc13106a26df\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"21136dfa47add1604d0bea2f812e6c43\";a:5:{s:6:\"source\";s:32:\"21136dfa47add1604d0bea2f812e6c43\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c95836a6b6f4dff8cd4dcd85c4dec209\";a:5:{s:6:\"source\";s:32:\"c95836a6b6f4dff8cd4dcd85c4dec209\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4607462d6bf7695c320b4c77e6038e73\";a:5:{s:6:\"source\";s:32:\"4607462d6bf7695c320b4c77e6038e73\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8463fb56d1d3cbace8ba296d18d52f19\";a:5:{s:6:\"source\";s:32:\"8463fb56d1d3cbace8ba296d18d52f19\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"550908b07630c0761989e5b358bac3e7\";a:5:{s:6:\"source\";s:32:\"550908b07630c0761989e5b358bac3e7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e9337c1ca3013e38dd9da74bf3f7ea6d\";a:5:{s:6:\"source\";s:32:\"e9337c1ca3013e38dd9da74bf3f7ea6d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"675db40bb14f369b9a14f1f94e65914e\";a:5:{s:6:\"source\";s:32:\"675db40bb14f369b9a14f1f94e65914e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d3c32cccf39f817818c70a9f37c525ca\";a:5:{s:6:\"source\";s:32:\"d3c32cccf39f817818c70a9f37c525ca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cac86e30c9fc235a12504bc7beed47b7\";a:5:{s:6:\"source\";s:32:\"cac86e30c9fc235a12504bc7beed47b7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d9da3c295ba79bea017c71706fcbe7d3\";a:5:{s:6:\"source\";s:32:\"d9da3c295ba79bea017c71706fcbe7d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7c308fabb343b850cba281007a1a70e6\";a:5:{s:6:\"source\";s:32:\"7c308fabb343b850cba281007a1a70e6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aa520433f8dab251808cbe33edb4b866\";a:5:{s:6:\"source\";s:32:\"aa520433f8dab251808cbe33edb4b866\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"683e283fd500bac3cceb1ed419c15b4a\";a:5:{s:6:\"source\";s:32:\"683e283fd500bac3cceb1ed419c15b4a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8d5b3c5378e3d3ffe87c405de555fcd4\";a:5:{s:6:\"source\";s:32:\"8d5b3c5378e3d3ffe87c405de555fcd4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a6aba4242c26acc9b57e00fc1f34f126\";a:5:{s:6:\"source\";s:32:\"a6aba4242c26acc9b57e00fc1f34f126\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"47558e4621a8ba68e621044ea739265d\";a:5:{s:6:\"source\";s:32:\"47558e4621a8ba68e621044ea739265d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5acc6e82a414a6323bdcce6d4049eb03\";a:5:{s:6:\"source\";s:32:\"5acc6e82a414a6323bdcce6d4049eb03\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"83f36bc6551b428540de65369bef6882\";a:5:{s:6:\"source\";s:32:\"83f36bc6551b428540de65369bef6882\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0efd2ba08bd46e3c668d6fcaf0057ba4\";a:5:{s:6:\"source\";s:32:\"0efd2ba08bd46e3c668d6fcaf0057ba4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e4d25e9c68f9c4e3e301e9b1742681d4\";a:5:{s:6:\"source\";s:32:\"e4d25e9c68f9c4e3e301e9b1742681d4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8c09b88627a16c5e961a97e9ee50e163\";a:5:{s:6:\"source\";s:32:\"8c09b88627a16c5e961a97e9ee50e163\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aa30af72b35bfc3e8b99eea1bd9a89fb\";a:5:{s:6:\"source\";s:32:\"aa30af72b35bfc3e8b99eea1bd9a89fb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"519a64a0d7f2bbc840bc5b1b80735aa5\";a:5:{s:6:\"source\";s:32:\"519a64a0d7f2bbc840bc5b1b80735aa5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b32dcd3e637285fd652879276dc1e913\";a:5:{s:6:\"source\";s:32:\"b32dcd3e637285fd652879276dc1e913\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4ee971d9e6b26021630e2df5be0178b9\";a:5:{s:6:\"source\";s:32:\"4ee971d9e6b26021630e2df5be0178b9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"322cf7de6f8ebeeed138b099c1f39c93\";a:5:{s:6:\"source\";s:32:\"322cf7de6f8ebeeed138b099c1f39c93\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7a6d1c0d187a8f636d84b0a772e39bc5\";a:5:{s:6:\"source\";s:32:\"7a6d1c0d187a8f636d84b0a772e39bc5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"24e5b192cea323b8c4d66d81135c773d\";a:5:{s:6:\"source\";s:32:\"24e5b192cea323b8c4d66d81135c773d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d8526263f5183b447a5ed30431156a0b\";a:5:{s:6:\"source\";s:32:\"d8526263f5183b447a5ed30431156a0b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"88a7e8520b5a0c51d2f4e67aa76e7cb7\";a:5:{s:6:\"source\";s:32:\"88a7e8520b5a0c51d2f4e67aa76e7cb7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"84ad523e05c7544077087606409eefcc\";a:5:{s:6:\"source\";s:32:\"84ad523e05c7544077087606409eefcc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6c648c4c6eae2ca3601ef4acf1373c6e\";a:5:{s:6:\"source\";s:32:\"6c648c4c6eae2ca3601ef4acf1373c6e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"37f34445f31c4487146a851cc739f905\";a:5:{s:6:\"source\";s:32:\"37f34445f31c4487146a851cc739f905\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c4560c10ea4fcfc1a5f865fd477bf153\";a:5:{s:6:\"source\";s:32:\"c4560c10ea4fcfc1a5f865fd477bf153\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"77a1eba2c0394d3f8f43274343c8c77d\";a:5:{s:6:\"source\";s:32:\"77a1eba2c0394d3f8f43274343c8c77d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f8cdf0cf6de4f2e6ceb87c4021ceb10d\";a:5:{s:6:\"source\";s:32:\"f8cdf0cf6de4f2e6ceb87c4021ceb10d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bb00749128c2a93e2465e1169c4e9358\";a:5:{s:6:\"source\";s:32:\"bb00749128c2a93e2465e1169c4e9358\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5aac99ae3b0515e2700aaf8ba2ed62ad\";a:5:{s:6:\"source\";s:32:\"5aac99ae3b0515e2700aaf8ba2ed62ad\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"50df03902f1bdab29f554ad49a630735\";a:5:{s:6:\"source\";s:32:\"50df03902f1bdab29f554ad49a630735\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3375effca8ba7cb46b0fc57f070aefe4\";a:5:{s:6:\"source\";s:32:\"3375effca8ba7cb46b0fc57f070aefe4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9bd263b3e124ff44bfe951b65e96bfc6\";a:5:{s:6:\"source\";s:32:\"9bd263b3e124ff44bfe951b65e96bfc6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"435bb0bd1c83addeed4050878d5fed15\";a:5:{s:6:\"source\";s:32:\"435bb0bd1c83addeed4050878d5fed15\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"df37bd8102db60c12d4f01a02ae36d93\";a:5:{s:6:\"source\";s:32:\"df37bd8102db60c12d4f01a02ae36d93\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b8ba8f3d47084d9f42f6c4f0025f8199\";a:5:{s:6:\"source\";s:32:\"b8ba8f3d47084d9f42f6c4f0025f8199\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d3811ba5651f8f73cdbf9060b80850d2\";a:5:{s:6:\"source\";s:32:\"d3811ba5651f8f73cdbf9060b80850d2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b8c17e33c582e828cdfc4c6b2e50ce8e\";a:5:{s:6:\"source\";s:32:\"b8c17e33c582e828cdfc4c6b2e50ce8e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"53a17ea4259cd73b109453bac8951bd6\";a:5:{s:6:\"source\";s:32:\"53a17ea4259cd73b109453bac8951bd6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"053a85efa1c9dbf5d0f69014b5021cc4\";a:5:{s:6:\"source\";s:32:\"053a85efa1c9dbf5d0f69014b5021cc4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"01b445c4c986a0e251933fe370184755\";a:5:{s:6:\"source\";s:32:\"01b445c4c986a0e251933fe370184755\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"df9f1074d02f9a685ab02f8e37c95340\";a:5:{s:6:\"source\";s:32:\"df9f1074d02f9a685ab02f8e37c95340\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6c730dd26a0df5984464f1f8c58a8a9a\";a:5:{s:6:\"source\";s:32:\"6c730dd26a0df5984464f1f8c58a8a9a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"32565871618c7d051179203d87c75522\";a:5:{s:6:\"source\";s:32:\"32565871618c7d051179203d87c75522\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6786ff771ab6fafc30994f09417e471f\";a:5:{s:6:\"source\";s:32:\"6786ff771ab6fafc30994f09417e471f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6da1d651d48ac95b299df82ecb8e7210\";a:5:{s:6:\"source\";s:32:\"6da1d651d48ac95b299df82ecb8e7210\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"be0593ddbdda885bac8d9a6c3f16840a\";a:5:{s:6:\"source\";s:32:\"be0593ddbdda885bac8d9a6c3f16840a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4853bb2f2debdf3d7d61540d2d93f85b\";a:5:{s:6:\"source\";s:32:\"4853bb2f2debdf3d7d61540d2d93f85b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4386ff4851ba6e3e273adaa62eb0ebae\";a:5:{s:6:\"source\";s:32:\"4386ff4851ba6e3e273adaa62eb0ebae\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6f13dc04786995ce4baab729687fd4e5\";a:5:{s:6:\"source\";s:32:\"6f13dc04786995ce4baab729687fd4e5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fc425ba3610aae7c2c2d9f6034a72499\";a:5:{s:6:\"source\";s:32:\"fc425ba3610aae7c2c2d9f6034a72499\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"60efd88871d52f8105dea22545c012b1\";a:5:{s:6:\"source\";s:32:\"60efd88871d52f8105dea22545c012b1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6dd1d3e38ee85c188c081dee80786632\";a:5:{s:6:\"source\";s:32:\"6dd1d3e38ee85c188c081dee80786632\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0eeffe014e1c11157f3219bfbb4992d2\";a:5:{s:6:\"source\";s:32:\"0eeffe014e1c11157f3219bfbb4992d2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4265ccd19edf4145270379afe0f99ac3\";a:5:{s:6:\"source\";s:32:\"4265ccd19edf4145270379afe0f99ac3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"09b83ba86347abcd045e99e5a2202f91\";a:5:{s:6:\"source\";s:32:\"09b83ba86347abcd045e99e5a2202f91\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3aa0fbc9aba7e64f62e5508ef735c0ea\";a:5:{s:6:\"source\";s:32:\"3aa0fbc9aba7e64f62e5508ef735c0ea\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"576c966e97fdbebe27f104a9deea0994\";a:5:{s:6:\"source\";s:32:\"576c966e97fdbebe27f104a9deea0994\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"828ef25db2ff9cf1e45cb7524765351e\";a:5:{s:6:\"source\";s:32:\"828ef25db2ff9cf1e45cb7524765351e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dedf4312e46de84dadc4dd0a3e4f3059\";a:5:{s:6:\"source\";s:32:\"dedf4312e46de84dadc4dd0a3e4f3059\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b171de23e81c98288075be87f891fcc5\";a:5:{s:6:\"source\";s:32:\"b171de23e81c98288075be87f891fcc5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f41f9b1c0c248a580867b21e62b1e491\";a:5:{s:6:\"source\";s:32:\"f41f9b1c0c248a580867b21e62b1e491\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a819c7474865e4fed2acb9d5e4fc5826\";a:5:{s:6:\"source\";s:32:\"a819c7474865e4fed2acb9d5e4fc5826\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"de81d816c7c864c2e297f86ccded7332\";a:5:{s:6:\"source\";s:32:\"de81d816c7c864c2e297f86ccded7332\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"63c6739a9e219fc9ac6e77501a51dd5c\";a:5:{s:6:\"source\";s:32:\"63c6739a9e219fc9ac6e77501a51dd5c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fa043e4f6e9a25008b6f542f9d46b589\";a:5:{s:6:\"source\";s:32:\"fa043e4f6e9a25008b6f542f9d46b589\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0a3801e633a5aa7fca34c814bc7d896f\";a:5:{s:6:\"source\";s:32:\"0a3801e633a5aa7fca34c814bc7d896f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"45785f98181a365fda1074843fc5f8f8\";a:5:{s:6:\"source\";s:32:\"45785f98181a365fda1074843fc5f8f8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aafaf029cec71940a4cfd9d21241a329\";a:5:{s:6:\"source\";s:32:\"aafaf029cec71940a4cfd9d21241a329\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"69d4cbbd252efe31e9f2d6140db0a0bc\";a:5:{s:6:\"source\";s:32:\"69d4cbbd252efe31e9f2d6140db0a0bc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c26aefadcef42541ce737d96ccf79852\";a:5:{s:6:\"source\";s:32:\"c26aefadcef42541ce737d96ccf79852\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6fd4c383e3b50642361af5a648763f38\";a:5:{s:6:\"source\";s:32:\"6fd4c383e3b50642361af5a648763f38\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"244850b6957d86e9192c76a50b472532\";a:5:{s:6:\"source\";s:32:\"244850b6957d86e9192c76a50b472532\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"71e74995b9a64181e3f752d615d3b3ae\";a:5:{s:6:\"source\";s:32:\"71e74995b9a64181e3f752d615d3b3ae\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6bfaa5f7b203761f81dde4b1eabd934b\";a:5:{s:6:\"source\";s:32:\"6bfaa5f7b203761f81dde4b1eabd934b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4ad59ef495bf3c2f76f8455fd8fc97f6\";a:5:{s:6:\"source\";s:32:\"4ad59ef495bf3c2f76f8455fd8fc97f6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5acfbbd21e506275b42e91216b3c5c48\";a:5:{s:6:\"source\";s:32:\"5acfbbd21e506275b42e91216b3c5c48\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eab9aebf99e2ba44d936ddcf8b92a676\";a:5:{s:6:\"source\";s:32:\"eab9aebf99e2ba44d936ddcf8b92a676\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d3538248dad47e732da05f58b2ec1573\";a:5:{s:6:\"source\";s:32:\"d3538248dad47e732da05f58b2ec1573\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f6e754ad6e2b8ade588836a888b01243\";a:5:{s:6:\"source\";s:32:\"f6e754ad6e2b8ade588836a888b01243\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e04b5d304950b4970b153fdefe81f93a\";a:5:{s:6:\"source\";s:32:\"e04b5d304950b4970b153fdefe81f93a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4e69664025464f8c015061a51be234a6\";a:5:{s:6:\"source\";s:32:\"4e69664025464f8c015061a51be234a6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"61a694e35c5a9a2713c9534e9a62fbe0\";a:5:{s:6:\"source\";s:32:\"61a694e35c5a9a2713c9534e9a62fbe0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fbf77770e931a046f425a6e012033f64\";a:5:{s:6:\"source\";s:32:\"fbf77770e931a046f425a6e012033f64\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9b4e804d8c8ca088fe874325a53a1677\";a:5:{s:6:\"source\";s:32:\"9b4e804d8c8ca088fe874325a53a1677\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"419aa84c1f199bc5d52ceba972d1516a\";a:5:{s:6:\"source\";s:32:\"419aa84c1f199bc5d52ceba972d1516a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7841997a5900b20c01697b4dcfac021e\";a:5:{s:6:\"source\";s:32:\"7841997a5900b20c01697b4dcfac021e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"db7e1537412c2b1a87629036277db067\";a:5:{s:6:\"source\";s:32:\"db7e1537412c2b1a87629036277db067\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"08b00e6817655a2534252c6697fd9285\";a:5:{s:6:\"source\";s:32:\"08b00e6817655a2534252c6697fd9285\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b5d8ea5454446b9b2d1cbd84b5ae141a\";a:5:{s:6:\"source\";s:32:\"b5d8ea5454446b9b2d1cbd84b5ae141a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"24eac06aded3ae634155ad9ce55c60c3\";a:5:{s:6:\"source\";s:32:\"24eac06aded3ae634155ad9ce55c60c3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"68c9bf37de4abbc3f278a8c3c1622593\";a:5:{s:6:\"source\";s:32:\"68c9bf37de4abbc3f278a8c3c1622593\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a9d16287097de14e3d2679433fc6958c\";a:5:{s:6:\"source\";s:32:\"a9d16287097de14e3d2679433fc6958c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5e1ffb1cdb4184b750cac2f38369e56b\";a:5:{s:6:\"source\";s:32:\"5e1ffb1cdb4184b750cac2f38369e56b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1fa7e9a22d62757c76e259f4cadabc5c\";a:5:{s:6:\"source\";s:32:\"1fa7e9a22d62757c76e259f4cadabc5c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c20354441dd38bb52fda54561204f4b3\";a:5:{s:6:\"source\";s:32:\"c20354441dd38bb52fda54561204f4b3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fa5364254f1a566ad5f3aa3a687390ea\";a:5:{s:6:\"source\";s:32:\"fa5364254f1a566ad5f3aa3a687390ea\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4c9e9460729dfba35bd3ad56b3a9cb75\";a:5:{s:6:\"source\";s:32:\"4c9e9460729dfba35bd3ad56b3a9cb75\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"800983c7d715ac9fe40521fb391cdc88\";a:5:{s:6:\"source\";s:32:\"800983c7d715ac9fe40521fb391cdc88\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ebd5ec076c96e34f65b9fd923e28b37a\";a:5:{s:6:\"source\";s:32:\"ebd5ec076c96e34f65b9fd923e28b37a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a170e0f65597cdba0a68e1aa1f7b4513\";a:5:{s:6:\"source\";s:32:\"a170e0f65597cdba0a68e1aa1f7b4513\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8cca1c49dfab258f6291cbb13b8c0fa8\";a:5:{s:6:\"source\";s:32:\"8cca1c49dfab258f6291cbb13b8c0fa8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dd0cad19f6d27300a4dd362f127db147\";a:5:{s:6:\"source\";s:32:\"dd0cad19f6d27300a4dd362f127db147\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"60d3831bd6161c1dfc0c8fc1bfbcdba4\";a:5:{s:6:\"source\";s:32:\"60d3831bd6161c1dfc0c8fc1bfbcdba4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"128e7430fa4c99e71666ba0a61a323cc\";a:5:{s:6:\"source\";s:32:\"128e7430fa4c99e71666ba0a61a323cc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6f94251b0d5a912fe5995fa34ee3ff4b\";a:5:{s:6:\"source\";s:32:\"6f94251b0d5a912fe5995fa34ee3ff4b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"56d4962dcbaea6f22356bf13ab70b8f6\";a:5:{s:6:\"source\";s:32:\"56d4962dcbaea6f22356bf13ab70b8f6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7c5093d177b3db0e293b334ecb6ff981\";a:5:{s:6:\"source\";s:32:\"7c5093d177b3db0e293b334ecb6ff981\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5dc13154e13b3403373d8ad81506237a\";a:5:{s:6:\"source\";s:32:\"5dc13154e13b3403373d8ad81506237a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1f7ac1f341fe4e2e70b9d698e6d2c2b5\";a:5:{s:6:\"source\";s:32:\"1f7ac1f341fe4e2e70b9d698e6d2c2b5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"54c65336d35dd68e794a8c9da23c5487\";a:5:{s:6:\"source\";s:32:\"54c65336d35dd68e794a8c9da23c5487\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e4098698dcd1261d79f58590fcbf87e5\";a:5:{s:6:\"source\";s:32:\"e4098698dcd1261d79f58590fcbf87e5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"066bfc02ac2ef3bd3bf6ec44446e833b\";a:5:{s:6:\"source\";s:32:\"066bfc02ac2ef3bd3bf6ec44446e833b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"92ebb74de422020c29785e29dea07312\";a:5:{s:6:\"source\";s:32:\"92ebb74de422020c29785e29dea07312\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9502ee6d7e0242235377b967c7f2a780\";a:5:{s:6:\"source\";s:32:\"9502ee6d7e0242235377b967c7f2a780\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bf587261ce2ebe9584984dace3aaad96\";a:5:{s:6:\"source\";s:32:\"bf587261ce2ebe9584984dace3aaad96\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1ea352ad052c52a544eb7fa14f6b261f\";a:5:{s:6:\"source\";s:32:\"1ea352ad052c52a544eb7fa14f6b261f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"49ba4609d4fc1b3eb50a333918c4877c\";a:5:{s:6:\"source\";s:32:\"49ba4609d4fc1b3eb50a333918c4877c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d858f85c114c41a20cc282c840a41246\";a:5:{s:6:\"source\";s:32:\"d858f85c114c41a20cc282c840a41246\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d873c51410e9dba2e4b597d1eb2800ba\";a:5:{s:6:\"source\";s:32:\"d873c51410e9dba2e4b597d1eb2800ba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"197d48f87316b353069dfd2c65802fd1\";a:5:{s:6:\"source\";s:32:\"197d48f87316b353069dfd2c65802fd1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"310b2d0430149606dac411a7bc589e4f\";a:5:{s:6:\"source\";s:32:\"310b2d0430149606dac411a7bc589e4f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"07278c9814217acb016f3fd8c08725d3\";a:5:{s:6:\"source\";s:32:\"07278c9814217acb016f3fd8c08725d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dbe427f8fbf899f10425f6f34c0a3522\";a:5:{s:6:\"source\";s:32:\"dbe427f8fbf899f10425f6f34c0a3522\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ec9928ac03f369f066a5d51b5a33e116\";a:5:{s:6:\"source\";s:32:\"ec9928ac03f369f066a5d51b5a33e116\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7b7acae0a5d90a1b3cde321205dc294e\";a:5:{s:6:\"source\";s:32:\"7b7acae0a5d90a1b3cde321205dc294e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d5d9ef34758287a0fc957f9f5485dfb7\";a:5:{s:6:\"source\";s:32:\"d5d9ef34758287a0fc957f9f5485dfb7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9a4c57491906290a95699c970433b621\";a:5:{s:6:\"source\";s:32:\"9a4c57491906290a95699c970433b621\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3482f470ff87f31f6898377a6e677a9d\";a:5:{s:6:\"source\";s:32:\"3482f470ff87f31f6898377a6e677a9d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e675d89dab8f283a54ccfba1714860e1\";a:5:{s:6:\"source\";s:32:\"e675d89dab8f283a54ccfba1714860e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c344fa777de53551d9f2f04e5a499323\";a:5:{s:6:\"source\";s:32:\"c344fa777de53551d9f2f04e5a499323\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fe5588e745849118e816dc680f0573e9\";a:5:{s:6:\"source\";s:32:\"fe5588e745849118e816dc680f0573e9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"216e696904b72300673b15d9a439454b\";a:5:{s:6:\"source\";s:32:\"216e696904b72300673b15d9a439454b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"860997dbc1688290636305c9a19ac626\";a:5:{s:6:\"source\";s:32:\"860997dbc1688290636305c9a19ac626\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e93f28f22f85e8fd6ee399a231e9bf91\";a:5:{s:6:\"source\";s:32:\"e93f28f22f85e8fd6ee399a231e9bf91\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"30b2a497c53eaddc6b7b2388ac136ebc\";a:5:{s:6:\"source\";s:32:\"30b2a497c53eaddc6b7b2388ac136ebc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"515e90497ce9f7a3f4d8e387bd6a18c6\";a:5:{s:6:\"source\";s:32:\"515e90497ce9f7a3f4d8e387bd6a18c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"10139608c09ce044a66d7507de0e4d76\";a:5:{s:6:\"source\";s:32:\"10139608c09ce044a66d7507de0e4d76\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b6a220f9033762f57e0eae76819cfa4f\";a:5:{s:6:\"source\";s:32:\"b6a220f9033762f57e0eae76819cfa4f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6b03f2341e7974be27381b350509fb4b\";a:5:{s:6:\"source\";s:32:\"6b03f2341e7974be27381b350509fb4b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6d464588319121b80e1ffe0a715426b9\";a:5:{s:6:\"source\";s:32:\"6d464588319121b80e1ffe0a715426b9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5d2163aab16306cfc617ad3b42f91219\";a:5:{s:6:\"source\";s:32:\"5d2163aab16306cfc617ad3b42f91219\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"82e9ae0ce47335015f5bbcc1af7f741e\";a:5:{s:6:\"source\";s:32:\"82e9ae0ce47335015f5bbcc1af7f741e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6866df93e998262fd2ff40dd4a158e3a\";a:5:{s:6:\"source\";s:32:\"6866df93e998262fd2ff40dd4a158e3a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c300e6603a6e52136bd385b289088fbb\";a:5:{s:6:\"source\";s:32:\"c300e6603a6e52136bd385b289088fbb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ae3fe894fc97aca043b4c3505e8a1273\";a:5:{s:6:\"source\";s:32:\"ae3fe894fc97aca043b4c3505e8a1273\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c0db1ad1a865a5fb07f131a508585135\";a:5:{s:6:\"source\";s:32:\"c0db1ad1a865a5fb07f131a508585135\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1ad3a87698ae0043e67b64394f9cc850\";a:5:{s:6:\"source\";s:32:\"1ad3a87698ae0043e67b64394f9cc850\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3a172659dac625a9b164e938b9026e64\";a:5:{s:6:\"source\";s:32:\"3a172659dac625a9b164e938b9026e64\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cbb220a11580ad1c39f8644c82d386d7\";a:5:{s:6:\"source\";s:32:\"cbb220a11580ad1c39f8644c82d386d7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b2c8241ca2ed282af7ecd5801b14fbf5\";a:5:{s:6:\"source\";s:32:\"b2c8241ca2ed282af7ecd5801b14fbf5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"98459d2d4c5f04ce1c3e7dc5eb162ac4\";a:5:{s:6:\"source\";s:32:\"98459d2d4c5f04ce1c3e7dc5eb162ac4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"44fea6fb37c67c018f15f7b2cb1fddf7\";a:5:{s:6:\"source\";s:32:\"44fea6fb37c67c018f15f7b2cb1fddf7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3cc38d708b5cd40cc82a27f7f479788e\";a:5:{s:6:\"source\";s:32:\"3cc38d708b5cd40cc82a27f7f479788e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cf88e944b5d3f870d07764a9c140c428\";a:5:{s:6:\"source\";s:32:\"cf88e944b5d3f870d07764a9c140c428\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"44708a5f6b6ae6f88ca7a6019c3247a4\";a:5:{s:6:\"source\";s:32:\"44708a5f6b6ae6f88ca7a6019c3247a4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ba090fa77f9685e20eca490c72f05c6e\";a:5:{s:6:\"source\";s:32:\"ba090fa77f9685e20eca490c72f05c6e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3e516db53b537d568318164347358740\";a:5:{s:6:\"source\";s:32:\"3e516db53b537d568318164347358740\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e1236bc32beaa36153d00d93a6fa7057\";a:5:{s:6:\"source\";s:32:\"e1236bc32beaa36153d00d93a6fa7057\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0ac537738467afb6ae88931aa695ae36\";a:5:{s:6:\"source\";s:32:\"0ac537738467afb6ae88931aa695ae36\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9ac08587ffeed1d81e6ecf9d075d5cbe\";a:5:{s:6:\"source\";s:32:\"9ac08587ffeed1d81e6ecf9d075d5cbe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"35cfd4c53e2ab09b87f99eb4dcbf32b4\";a:5:{s:6:\"source\";s:32:\"35cfd4c53e2ab09b87f99eb4dcbf32b4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c58bad4f7d22b6830548dd94e0cae92a\";a:5:{s:6:\"source\";s:32:\"c58bad4f7d22b6830548dd94e0cae92a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"335be242fa79f5d7acef0916b6a281dc\";a:5:{s:6:\"source\";s:32:\"335be242fa79f5d7acef0916b6a281dc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4bf35c65207d3100ce1d182b4e8389f1\";a:5:{s:6:\"source\";s:32:\"4bf35c65207d3100ce1d182b4e8389f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dc13c3c8dbc33bc513e28ce5aa1ed54d\";a:5:{s:6:\"source\";s:32:\"dc13c3c8dbc33bc513e28ce5aa1ed54d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9d0b5b7ae2504769a21bd8845b214f99\";a:5:{s:6:\"source\";s:32:\"9d0b5b7ae2504769a21bd8845b214f99\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a1f78d945153c03e8599c40bc911ae96\";a:5:{s:6:\"source\";s:32:\"a1f78d945153c03e8599c40bc911ae96\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e14f3a5298fac510249835f6f9210fb7\";a:5:{s:6:\"source\";s:32:\"e14f3a5298fac510249835f6f9210fb7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a60f481ff51ee544997bb318db9abb1c\";a:5:{s:6:\"source\";s:32:\"a60f481ff51ee544997bb318db9abb1c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"99e9f491c9ee5731b892f921a9455749\";a:5:{s:6:\"source\";s:32:\"99e9f491c9ee5731b892f921a9455749\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dcadba0b780d12db2ff8007bce33ecd7\";a:5:{s:6:\"source\";s:32:\"dcadba0b780d12db2ff8007bce33ecd7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e035ed1fd5aa132c7d4c5c6635e11f30\";a:5:{s:6:\"source\";s:32:\"e035ed1fd5aa132c7d4c5c6635e11f30\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"88fe84ff3126bc58b16737f00cb9087e\";a:5:{s:6:\"source\";s:32:\"88fe84ff3126bc58b16737f00cb9087e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e3f90afe3b55eb89c19602651f1d155f\";a:5:{s:6:\"source\";s:32:\"e3f90afe3b55eb89c19602651f1d155f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a6634f43247d4c58cd62625b1f9091dc\";a:5:{s:6:\"source\";s:32:\"a6634f43247d4c58cd62625b1f9091dc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8c1de2dc5c5150bfe8dc51e5674edaa8\";a:5:{s:6:\"source\";s:32:\"8c1de2dc5c5150bfe8dc51e5674edaa8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c268e9231a312af60d9851a906859a40\";a:5:{s:6:\"source\";s:32:\"c268e9231a312af60d9851a906859a40\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"58e16a21677e1421570f3afa7a5273b0\";a:5:{s:6:\"source\";s:32:\"58e16a21677e1421570f3afa7a5273b0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9f89ec1ea1def98e0a715a150090624a\";a:5:{s:6:\"source\";s:32:\"9f89ec1ea1def98e0a715a150090624a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8c567756d15a3049743c909c4d288b36\";a:5:{s:6:\"source\";s:32:\"8c567756d15a3049743c909c4d288b36\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"70350db6123aaadc4146586cb7491a95\";a:5:{s:6:\"source\";s:32:\"70350db6123aaadc4146586cb7491a95\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a43258349087a70cfa361ef932a620a1\";a:5:{s:6:\"source\";s:32:\"a43258349087a70cfa361ef932a620a1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c6e7c8a861068e5429f571b0ee1aeba\";a:5:{s:6:\"source\";s:32:\"3c6e7c8a861068e5429f571b0ee1aeba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"218e96e9e06a1c053b62cd3cba8a6453\";a:5:{s:6:\"source\";s:32:\"218e96e9e06a1c053b62cd3cba8a6453\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"869b8a6804f15d8c38c965ca388f4a5b\";a:5:{s:6:\"source\";s:32:\"869b8a6804f15d8c38c965ca388f4a5b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"94a3c319e966be979fdd6a5e29a80fd4\";a:5:{s:6:\"source\";s:32:\"94a3c319e966be979fdd6a5e29a80fd4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a1e94b729a58ef85890aaaced63f5b08\";a:5:{s:6:\"source\";s:32:\"a1e94b729a58ef85890aaaced63f5b08\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4adc8be6193bf1f86da7e609450389e5\";a:5:{s:6:\"source\";s:32:\"4adc8be6193bf1f86da7e609450389e5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"50f7e7b4d3099fd1e98a05cd08ff5787\";a:5:{s:6:\"source\";s:32:\"50f7e7b4d3099fd1e98a05cd08ff5787\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"54927e5532077f7ad94ec0b3f59a1e4a\";a:5:{s:6:\"source\";s:32:\"54927e5532077f7ad94ec0b3f59a1e4a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1bf3cc582ca83d42fdc8e45b3fa2b153\";a:5:{s:6:\"source\";s:32:\"1bf3cc582ca83d42fdc8e45b3fa2b153\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8f861ebc54fa7cf422dcc4c9dc7afb6d\";a:5:{s:6:\"source\";s:32:\"8f861ebc54fa7cf422dcc4c9dc7afb6d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dad3e341ce808d0930cb62dda2dd309d\";a:5:{s:6:\"source\";s:32:\"dad3e341ce808d0930cb62dda2dd309d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ba6202dde8026c9bcfdb3bae21ede2eb\";a:5:{s:6:\"source\";s:32:\"ba6202dde8026c9bcfdb3bae21ede2eb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b93c361dd3c9e29f23246948ed557e5d\";a:5:{s:6:\"source\";s:32:\"b93c361dd3c9e29f23246948ed557e5d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2ed334ba43126a21d1efb4cdeca2a302\";a:5:{s:6:\"source\";s:32:\"2ed334ba43126a21d1efb4cdeca2a302\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fea6a6804dcffe5c8c2aaa76cd4d2149\";a:5:{s:6:\"source\";s:32:\"fea6a6804dcffe5c8c2aaa76cd4d2149\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8c0258117c2adb672ff80897e97f7e42\";a:5:{s:6:\"source\";s:32:\"8c0258117c2adb672ff80897e97f7e42\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"33473b40069e5a73c481daeba63e8255\";a:5:{s:6:\"source\";s:32:\"33473b40069e5a73c481daeba63e8255\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dc06bb8393bfbf1c1c648e7b17197476\";a:5:{s:6:\"source\";s:32:\"dc06bb8393bfbf1c1c648e7b17197476\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"62de99b97897d1ce1ef16935ba593106\";a:5:{s:6:\"source\";s:32:\"62de99b97897d1ce1ef16935ba593106\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dc24158e772767abb2132bc9c18af74a\";a:5:{s:6:\"source\";s:32:\"dc24158e772767abb2132bc9c18af74a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6cf3576fecaf79d92ecc023a119ee0b8\";a:5:{s:6:\"source\";s:32:\"6cf3576fecaf79d92ecc023a119ee0b8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d7af31f20c9763596d6c4b7d064d4ecd\";a:5:{s:6:\"source\";s:32:\"d7af31f20c9763596d6c4b7d064d4ecd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"029a9a01ff2991d81e04b1a80bccde41\";a:5:{s:6:\"source\";s:32:\"029a9a01ff2991d81e04b1a80bccde41\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"47586ae41ab859fb934fcb3bb6acfc7b\";a:5:{s:6:\"source\";s:32:\"47586ae41ab859fb934fcb3bb6acfc7b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9565b47e462888f100263976119d98d1\";a:5:{s:6:\"source\";s:32:\"9565b47e462888f100263976119d98d1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"deae1a5815d070f8bb6a617a117a8ede\";a:5:{s:6:\"source\";s:32:\"deae1a5815d070f8bb6a617a117a8ede\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bfe7dd368ac839acae8b7d2e10cabb63\";a:5:{s:6:\"source\";s:32:\"bfe7dd368ac839acae8b7d2e10cabb63\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"60443083b592eb278ece99d5c5288878\";a:5:{s:6:\"source\";s:32:\"60443083b592eb278ece99d5c5288878\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c02e3547d6aa1078ff9eaf0a07025862\";a:5:{s:6:\"source\";s:32:\"c02e3547d6aa1078ff9eaf0a07025862\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"814cb9b9e5c2e29f24751ed9dc8ed859\";a:5:{s:6:\"source\";s:32:\"814cb9b9e5c2e29f24751ed9dc8ed859\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c452ae4e6a97a3706efeeca2989f4ce1\";a:5:{s:6:\"source\";s:32:\"c452ae4e6a97a3706efeeca2989f4ce1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6b76a9faee5e3db410a7c4312bdb492b\";a:5:{s:6:\"source\";s:32:\"6b76a9faee5e3db410a7c4312bdb492b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b48a581a7f6cc1ff28ee2d05cfd3eb2a\";a:5:{s:6:\"source\";s:32:\"b48a581a7f6cc1ff28ee2d05cfd3eb2a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dda969c7b6a90db288a5751eb475811e\";a:5:{s:6:\"source\";s:32:\"dda969c7b6a90db288a5751eb475811e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"817489428beb67adfe6e733f52eed32a\";a:5:{s:6:\"source\";s:32:\"817489428beb67adfe6e733f52eed32a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"13a79ce241fbd5e343ece711d34baf07\";a:5:{s:6:\"source\";s:32:\"13a79ce241fbd5e343ece711d34baf07\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2621fbc06838c43aa85c1d97f6968b81\";a:5:{s:6:\"source\";s:32:\"2621fbc06838c43aa85c1d97f6968b81\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e8f07b6a47ea4830a71fca0ca5b4beb5\";a:5:{s:6:\"source\";s:32:\"e8f07b6a47ea4830a71fca0ca5b4beb5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"47cea39afa767aac1019bc91d76a75d5\";a:5:{s:6:\"source\";s:32:\"47cea39afa767aac1019bc91d76a75d5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"32134e3d87cd0c8e54453de56a49fa60\";a:5:{s:6:\"source\";s:32:\"32134e3d87cd0c8e54453de56a49fa60\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6528f92b4ea77e1a751e92e94dcb13f3\";a:5:{s:6:\"source\";s:32:\"6528f92b4ea77e1a751e92e94dcb13f3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6c2659b6f5656792fa5d91c18382d22a\";a:5:{s:6:\"source\";s:32:\"6c2659b6f5656792fa5d91c18382d22a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e9f96404358797339db5015342ab7ae3\";a:5:{s:6:\"source\";s:32:\"e9f96404358797339db5015342ab7ae3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1dd385d753540e15740a1aefe4df21f2\";a:5:{s:6:\"source\";s:32:\"1dd385d753540e15740a1aefe4df21f2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3fc5a0530977f2f7a05f21de348a8e41\";a:5:{s:6:\"source\";s:32:\"3fc5a0530977f2f7a05f21de348a8e41\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8c329668bfa9c59405655e328b02c29c\";a:5:{s:6:\"source\";s:32:\"8c329668bfa9c59405655e328b02c29c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ad67aa89bcb619f934bb03da5ddf420\";a:5:{s:6:\"source\";s:32:\"8ad67aa89bcb619f934bb03da5ddf420\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1e6ed88029bca3e70f56ffb05c8eb4da\";a:5:{s:6:\"source\";s:32:\"1e6ed88029bca3e70f56ffb05c8eb4da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6826023ad15e411a73cccbe9f06d1be5\";a:5:{s:6:\"source\";s:32:\"6826023ad15e411a73cccbe9f06d1be5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7c46393d3e802fdeec03a3e48f4af9b3\";a:5:{s:6:\"source\";s:32:\"7c46393d3e802fdeec03a3e48f4af9b3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"14b478b3922d1e256d50cc00cc49fa60\";a:5:{s:6:\"source\";s:32:\"14b478b3922d1e256d50cc00cc49fa60\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"32c4426be4651f8131f1d844dcab7295\";a:5:{s:6:\"source\";s:32:\"32c4426be4651f8131f1d844dcab7295\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2bf9d0269aae6c1ac3a736c5f9c30a14\";a:5:{s:6:\"source\";s:32:\"2bf9d0269aae6c1ac3a736c5f9c30a14\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ee41ebcfa365634a5f9ba418baeba692\";a:5:{s:6:\"source\";s:32:\"ee41ebcfa365634a5f9ba418baeba692\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4ad862ea750861f8619034eb7ed499f0\";a:5:{s:6:\"source\";s:32:\"4ad862ea750861f8619034eb7ed499f0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e03de0c1b933e0d0b29e14463b00b909\";a:5:{s:6:\"source\";s:32:\"e03de0c1b933e0d0b29e14463b00b909\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b99be0a774867116849fc1f3a067803e\";a:5:{s:6:\"source\";s:32:\"b99be0a774867116849fc1f3a067803e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9f13e6efca11229c74a1076a897ce7e7\";a:5:{s:6:\"source\";s:32:\"9f13e6efca11229c74a1076a897ce7e7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"78b095ef809cc20b3b77ba99d6ef6fc7\";a:5:{s:6:\"source\";s:32:\"78b095ef809cc20b3b77ba99d6ef6fc7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"033935b90bf9ca624eabce664155e6c9\";a:5:{s:6:\"source\";s:32:\"033935b90bf9ca624eabce664155e6c9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8b49888b14b3ff4da21c5f94731e5487\";a:5:{s:6:\"source\";s:32:\"8b49888b14b3ff4da21c5f94731e5487\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c9ccd1096b0197d188a944e68351dbef\";a:5:{s:6:\"source\";s:32:\"c9ccd1096b0197d188a944e68351dbef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2788715a2facf230658cb3fbeedada86\";a:5:{s:6:\"source\";s:32:\"2788715a2facf230658cb3fbeedada86\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0226b5577a21ac8a70f065ac24f63da2\";a:5:{s:6:\"source\";s:32:\"0226b5577a21ac8a70f065ac24f63da2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4f05c3e963fd8ba092baae18f08244d8\";a:5:{s:6:\"source\";s:32:\"4f05c3e963fd8ba092baae18f08244d8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d1b810f4f29e25af8a01a5f2a6f9a044\";a:5:{s:6:\"source\";s:32:\"d1b810f4f29e25af8a01a5f2a6f9a044\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5a1ce9f887fc43f65ee169357c9e462e\";a:5:{s:6:\"source\";s:32:\"5a1ce9f887fc43f65ee169357c9e462e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fdcb2afaee70f4be6bb1071e4e2bf3de\";a:5:{s:6:\"source\";s:32:\"fdcb2afaee70f4be6bb1071e4e2bf3de\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"def518b26690f4ed1fa7fa9914847a1e\";a:5:{s:6:\"source\";s:32:\"def518b26690f4ed1fa7fa9914847a1e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c82e8e8541477f0d2043585350a5c0eb\";a:5:{s:6:\"source\";s:32:\"c82e8e8541477f0d2043585350a5c0eb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e93438ce584bb95c90fe020a88d2c178\";a:5:{s:6:\"source\";s:32:\"e93438ce584bb95c90fe020a88d2c178\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"56107f6f0fd80e75d49febb8a084a6b3\";a:5:{s:6:\"source\";s:32:\"56107f6f0fd80e75d49febb8a084a6b3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"33958806d0bb598b451b11743abf0014\";a:5:{s:6:\"source\";s:32:\"33958806d0bb598b451b11743abf0014\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"60fc8de5afd6435b410a5c2ae91d41e6\";a:5:{s:6:\"source\";s:32:\"60fc8de5afd6435b410a5c2ae91d41e6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5cc68e098b11d4899b3b974136c9d495\";a:5:{s:6:\"source\";s:32:\"5cc68e098b11d4899b3b974136c9d495\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e00c50960d69884390ff273555168f24\";a:5:{s:6:\"source\";s:32:\"e00c50960d69884390ff273555168f24\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"85a37a7afa32f5648073c4ce2c442d84\";a:5:{s:6:\"source\";s:32:\"85a37a7afa32f5648073c4ce2c442d84\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"77b0af355e71deb82309816747955d90\";a:5:{s:6:\"source\";s:32:\"77b0af355e71deb82309816747955d90\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f6f4a1117e02e015fb644bf444c89339\";a:5:{s:6:\"source\";s:32:\"f6f4a1117e02e015fb644bf444c89339\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5beba9130c8e00ff09ab170fe07a79e4\";a:5:{s:6:\"source\";s:32:\"5beba9130c8e00ff09ab170fe07a79e4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1431e834a0ca61c7d523be7a8e2429c4\";a:5:{s:6:\"source\";s:32:\"1431e834a0ca61c7d523be7a8e2429c4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ba3b356d554a2bc0482865491b878b66\";a:5:{s:6:\"source\";s:32:\"ba3b356d554a2bc0482865491b878b66\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d76ba5e7830d29c333be3cc8c1e6d212\";a:5:{s:6:\"source\";s:32:\"d76ba5e7830d29c333be3cc8c1e6d212\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5ae10401cf7923c14c744d37569e7976\";a:5:{s:6:\"source\";s:32:\"5ae10401cf7923c14c744d37569e7976\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f3b8ac9e0c822dce9e47035344febc9c\";a:5:{s:6:\"source\";s:32:\"f3b8ac9e0c822dce9e47035344febc9c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6b8370932403ecb258d22681ad317f32\";a:5:{s:6:\"source\";s:32:\"6b8370932403ecb258d22681ad317f32\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"244ff9e9379bc124e5b894d0d3339560\";a:5:{s:6:\"source\";s:32:\"244ff9e9379bc124e5b894d0d3339560\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eaabe57ba752f926fbdf4f0a511137e6\";a:5:{s:6:\"source\";s:32:\"eaabe57ba752f926fbdf4f0a511137e6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c98bc22e404602d28c8252775b0955e7\";a:5:{s:6:\"source\";s:32:\"c98bc22e404602d28c8252775b0955e7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7fbd449c3ca48d7f51ad8f7da14feae4\";a:5:{s:6:\"source\";s:32:\"7fbd449c3ca48d7f51ad8f7da14feae4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bdf9ae776fb38a0773d9927f27e5b02f\";a:5:{s:6:\"source\";s:32:\"bdf9ae776fb38a0773d9927f27e5b02f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ca899a78b22ced031e40bc52432ff73c\";a:5:{s:6:\"source\";s:32:\"ca899a78b22ced031e40bc52432ff73c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"95f2c8ea16771c0044127e3a09372d8d\";a:5:{s:6:\"source\";s:32:\"95f2c8ea16771c0044127e3a09372d8d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3e34e277109c0b4d54627df936d6f7b7\";a:5:{s:6:\"source\";s:32:\"3e34e277109c0b4d54627df936d6f7b7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f32081b40c024f6a18cc5c400e30a85a\";a:5:{s:6:\"source\";s:32:\"f32081b40c024f6a18cc5c400e30a85a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f353f3ca0b1202b80587bca2e1ff89e7\";a:5:{s:6:\"source\";s:32:\"f353f3ca0b1202b80587bca2e1ff89e7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"372521f5b0a8add14bb70c88c69f55fa\";a:5:{s:6:\"source\";s:32:\"372521f5b0a8add14bb70c88c69f55fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e97a8e3924de47b39cf9ffc413859fd5\";a:5:{s:6:\"source\";s:32:\"e97a8e3924de47b39cf9ffc413859fd5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aa4c935ebae95f5f9274955644b848c4\";a:5:{s:6:\"source\";s:32:\"aa4c935ebae95f5f9274955644b848c4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d99bd5a7299f60159cfe4cf79e08139\";a:5:{s:6:\"source\";s:32:\"4d99bd5a7299f60159cfe4cf79e08139\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a49f6a643cf72e77d94d2a9042d5caaf\";a:5:{s:6:\"source\";s:32:\"a49f6a643cf72e77d94d2a9042d5caaf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dde92665a16cb25505edd0b559dd8fa9\";a:5:{s:6:\"source\";s:32:\"dde92665a16cb25505edd0b559dd8fa9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"49a1b415ab1d17f2664199c946d4cada\";a:5:{s:6:\"source\";s:32:\"49a1b415ab1d17f2664199c946d4cada\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"02eeb1c437c1a756f9da72feb7ec2f77\";a:5:{s:6:\"source\";s:32:\"02eeb1c437c1a756f9da72feb7ec2f77\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4500647231c2899db032c22e8265b335\";a:5:{s:6:\"source\";s:32:\"4500647231c2899db032c22e8265b335\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"111ad8ab9f3049f4070cd8ba1b4abde4\";a:5:{s:6:\"source\";s:32:\"111ad8ab9f3049f4070cd8ba1b4abde4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"86ca3a887655357e4322518341520981\";a:5:{s:6:\"source\";s:32:\"86ca3a887655357e4322518341520981\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ab5beb2a5456516845cef10aaa1fd8a4\";a:5:{s:6:\"source\";s:32:\"ab5beb2a5456516845cef10aaa1fd8a4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1f2b59f697bddf895f99ace751c5639e\";a:5:{s:6:\"source\";s:32:\"1f2b59f697bddf895f99ace751c5639e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff8cc7036954015624309ad3b5d75687\";a:5:{s:6:\"source\";s:32:\"ff8cc7036954015624309ad3b5d75687\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a214147fd005726f516775cad7242a1c\";a:5:{s:6:\"source\";s:32:\"a214147fd005726f516775cad7242a1c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ad3c90177e5e89cc2a6d967fc996ace4\";a:5:{s:6:\"source\";s:32:\"ad3c90177e5e89cc2a6d967fc996ace4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dbaeefb80beb5ffee906f2384f24f9e9\";a:5:{s:6:\"source\";s:32:\"dbaeefb80beb5ffee906f2384f24f9e9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ddf13305fd99787256a5657e1a7d87cd\";a:5:{s:6:\"source\";s:32:\"ddf13305fd99787256a5657e1a7d87cd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"89d2cc68946df01982e080ab32be1554\";a:5:{s:6:\"source\";s:32:\"89d2cc68946df01982e080ab32be1554\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"40ecba6f9b7644a0dba7df67071d8d57\";a:5:{s:6:\"source\";s:32:\"40ecba6f9b7644a0dba7df67071d8d57\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ebd65d32bc74eb0e8c90de7eec39821c\";a:5:{s:6:\"source\";s:32:\"ebd65d32bc74eb0e8c90de7eec39821c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"71b91b77c6905bd14818df31688eee5a\";a:5:{s:6:\"source\";s:32:\"71b91b77c6905bd14818df31688eee5a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c005c803cea977b5391b973a334b5f19\";a:5:{s:6:\"source\";s:32:\"c005c803cea977b5391b973a334b5f19\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d2ca2a4c8f7cf818b2598d748c8aad9d\";a:5:{s:6:\"source\";s:32:\"d2ca2a4c8f7cf818b2598d748c8aad9d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dacc0a68061ecbe9d8885a828208b59e\";a:5:{s:6:\"source\";s:32:\"dacc0a68061ecbe9d8885a828208b59e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3641004e92b607a27a38976e3a6e3606\";a:5:{s:6:\"source\";s:32:\"3641004e92b607a27a38976e3a6e3606\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e0cfdde9d6781547c0e76712d123e956\";a:5:{s:6:\"source\";s:32:\"e0cfdde9d6781547c0e76712d123e956\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b2035f8ee12fc5e49b54d9e5c3e2117a\";a:5:{s:6:\"source\";s:32:\"b2035f8ee12fc5e49b54d9e5c3e2117a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cecbbd37239ada392c47017a7c33f12c\";a:5:{s:6:\"source\";s:32:\"cecbbd37239ada392c47017a7c33f12c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4f2b522a056b0167e7c971fc598e41d2\";a:5:{s:6:\"source\";s:32:\"4f2b522a056b0167e7c971fc598e41d2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9f3ef8e59947973d44193b7472eddc85\";a:5:{s:6:\"source\";s:32:\"9f3ef8e59947973d44193b7472eddc85\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1e640b976a1df15f42ec1e727e574a33\";a:5:{s:6:\"source\";s:32:\"1e640b976a1df15f42ec1e727e574a33\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"01d29d2405bbc661845f931e1c32ff62\";a:5:{s:6:\"source\";s:32:\"01d29d2405bbc661845f931e1c32ff62\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"68fa2c02cfef65e173c7439b64cf24d1\";a:5:{s:6:\"source\";s:32:\"68fa2c02cfef65e173c7439b64cf24d1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"037f145151675c239d3f7e2d25851c6d\";a:5:{s:6:\"source\";s:32:\"037f145151675c239d3f7e2d25851c6d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bba50454627dc17018e8da975069195b\";a:5:{s:6:\"source\";s:32:\"bba50454627dc17018e8da975069195b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b814635e469d8794778f7ba216bf5165\";a:5:{s:6:\"source\";s:32:\"b814635e469d8794778f7ba216bf5165\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d90be7011f466eb0ab9544dc225392c3\";a:5:{s:6:\"source\";s:32:\"d90be7011f466eb0ab9544dc225392c3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"878101995948b498970d31367a8d73a8\";a:5:{s:6:\"source\";s:32:\"878101995948b498970d31367a8d73a8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"153a417645611d9b46ed237cebeba495\";a:5:{s:6:\"source\";s:32:\"153a417645611d9b46ed237cebeba495\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"79626bd3862e37098e2fb473f37845d9\";a:5:{s:6:\"source\";s:32:\"79626bd3862e37098e2fb473f37845d9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9f8f44abc86b839c8e4d9b11a610efd5\";a:5:{s:6:\"source\";s:32:\"9f8f44abc86b839c8e4d9b11a610efd5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5ce1e1bacf6875755fdedf98927a0aab\";a:5:{s:6:\"source\";s:32:\"5ce1e1bacf6875755fdedf98927a0aab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0258788946e04872f812698bd2a9c392\";a:5:{s:6:\"source\";s:32:\"0258788946e04872f812698bd2a9c392\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ed829247672f23302bff604854513139\";a:5:{s:6:\"source\";s:32:\"ed829247672f23302bff604854513139\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"678ccb48d53c2a5083fa4061676ee5bb\";a:5:{s:6:\"source\";s:32:\"678ccb48d53c2a5083fa4061676ee5bb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"907d8273ef1982b7612d573a26ea9cfb\";a:5:{s:6:\"source\";s:32:\"907d8273ef1982b7612d573a26ea9cfb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"561cfcf6443e3d13ae713bd907aaa8e3\";a:5:{s:6:\"source\";s:32:\"561cfcf6443e3d13ae713bd907aaa8e3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"55b1b380aff6981f6199f5d64f13e923\";a:5:{s:6:\"source\";s:32:\"55b1b380aff6981f6199f5d64f13e923\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0299f572d549dedd6da421b72b051fe4\";a:5:{s:6:\"source\";s:32:\"0299f572d549dedd6da421b72b051fe4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a836c89c6e933d2f317fea6c5b421d20\";a:5:{s:6:\"source\";s:32:\"a836c89c6e933d2f317fea6c5b421d20\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff617fcca3a56796bca3e0e81b336496\";a:5:{s:6:\"source\";s:32:\"ff617fcca3a56796bca3e0e81b336496\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fcb95e09bc1fc0eda3f3c61cf42071fd\";a:5:{s:6:\"source\";s:32:\"fcb95e09bc1fc0eda3f3c61cf42071fd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6754cdfa223bcb18623f8a277b456a14\";a:5:{s:6:\"source\";s:32:\"6754cdfa223bcb18623f8a277b456a14\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9d39354be905f18db5a6805179456f0c\";a:5:{s:6:\"source\";s:32:\"9d39354be905f18db5a6805179456f0c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3ec0f089db75c9c9608b74c5bd781560\";a:5:{s:6:\"source\";s:32:\"3ec0f089db75c9c9608b74c5bd781560\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef1ce09f78ed4594d7c083a895971a9a\";a:5:{s:6:\"source\";s:32:\"ef1ce09f78ed4594d7c083a895971a9a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"72b9d2941785fbf4a12c53dadd7eea03\";a:5:{s:6:\"source\";s:32:\"72b9d2941785fbf4a12c53dadd7eea03\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2b714e157f9aab3ae15d961919cb62a7\";a:5:{s:6:\"source\";s:32:\"2b714e157f9aab3ae15d961919cb62a7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2d0cbc7303b1149106b56c555f2ce432\";a:5:{s:6:\"source\";s:32:\"2d0cbc7303b1149106b56c555f2ce432\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c7690083aa369d79f6058109806da280\";a:5:{s:6:\"source\";s:32:\"c7690083aa369d79f6058109806da280\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9fdc3f0b8b398228c82cebac69fd5a3b\";a:5:{s:6:\"source\";s:32:\"9fdc3f0b8b398228c82cebac69fd5a3b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3ecbaee2caf9176ef0b08d94e8972592\";a:5:{s:6:\"source\";s:32:\"3ecbaee2caf9176ef0b08d94e8972592\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"85244b942a2f0f77010deffdc44aff5c\";a:5:{s:6:\"source\";s:32:\"85244b942a2f0f77010deffdc44aff5c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e3b9c09a7367788bb713c86ca8c64e13\";a:5:{s:6:\"source\";s:32:\"e3b9c09a7367788bb713c86ca8c64e13\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"426e7eac82e795cee95aec138f87e23f\";a:5:{s:6:\"source\";s:32:\"426e7eac82e795cee95aec138f87e23f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fb35c5d62f042e51e166d9c338cea99c\";a:5:{s:6:\"source\";s:32:\"fb35c5d62f042e51e166d9c338cea99c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1d0fc09ba37559142233c9f9bc8a7b38\";a:5:{s:6:\"source\";s:32:\"1d0fc09ba37559142233c9f9bc8a7b38\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"97a1e242164b7fea007e77ad3a16e2a0\";a:5:{s:6:\"source\";s:32:\"97a1e242164b7fea007e77ad3a16e2a0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a6ca3646826ca7e95ab7e61eba4b3cf8\";a:5:{s:6:\"source\";s:32:\"a6ca3646826ca7e95ab7e61eba4b3cf8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"85e64a1686e61a5d0a78b2fcc4e11449\";a:5:{s:6:\"source\";s:32:\"85e64a1686e61a5d0a78b2fcc4e11449\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fd004caf37b43aafabae2b029caf6429\";a:5:{s:6:\"source\";s:32:\"fd004caf37b43aafabae2b029caf6429\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6ebc5b6780fbffea4deb179a3bc0d695\";a:5:{s:6:\"source\";s:32:\"6ebc5b6780fbffea4deb179a3bc0d695\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"22b1be8998d4d2399bcaeec7a8b449af\";a:5:{s:6:\"source\";s:32:\"22b1be8998d4d2399bcaeec7a8b449af\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"614e71b48cd587397bedb850451d0353\";a:5:{s:6:\"source\";s:32:\"614e71b48cd587397bedb850451d0353\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"06df205bbde0a9514c39c870b282efc6\";a:5:{s:6:\"source\";s:32:\"06df205bbde0a9514c39c870b282efc6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"472373349aff4376ff4c5510098adb64\";a:5:{s:6:\"source\";s:32:\"472373349aff4376ff4c5510098adb64\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c6452b67ea8d078e6bb1d9615960f479\";a:5:{s:6:\"source\";s:32:\"c6452b67ea8d078e6bb1d9615960f479\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1c14016e2783c0f2b826eb899d290491\";a:5:{s:6:\"source\";s:32:\"1c14016e2783c0f2b826eb899d290491\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8f8b3f9abb52e47594174749cf135b81\";a:5:{s:6:\"source\";s:32:\"8f8b3f9abb52e47594174749cf135b81\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"56841f89a20b4acd53b8fe581ef8c252\";a:5:{s:6:\"source\";s:32:\"56841f89a20b4acd53b8fe581ef8c252\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e86ec845a095078dd9fccec8300737ab\";a:5:{s:6:\"source\";s:32:\"e86ec845a095078dd9fccec8300737ab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"23e5e0851dcb66a53803b791eb4ce393\";a:5:{s:6:\"source\";s:32:\"23e5e0851dcb66a53803b791eb4ce393\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8dc9f99c5b8674b9e600f5272600af64\";a:5:{s:6:\"source\";s:32:\"8dc9f99c5b8674b9e600f5272600af64\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"df269758294806cf4ddad04bd2ab914c\";a:5:{s:6:\"source\";s:32:\"df269758294806cf4ddad04bd2ab914c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b6073173edd10377d4f31241edc418d3\";a:5:{s:6:\"source\";s:32:\"b6073173edd10377d4f31241edc418d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"069f87920108c6a0c7bbdaabb445bf04\";a:5:{s:6:\"source\";s:32:\"069f87920108c6a0c7bbdaabb445bf04\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5ca02af6015475a3f958ba769235c4f1\";a:5:{s:6:\"source\";s:32:\"5ca02af6015475a3f958ba769235c4f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a705e1f4151ed093d5df6c2da7abdfaf\";a:5:{s:6:\"source\";s:32:\"a705e1f4151ed093d5df6c2da7abdfaf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e23d9f1dc3fcd2e69a06d3ebc27f7d8f\";a:5:{s:6:\"source\";s:32:\"e23d9f1dc3fcd2e69a06d3ebc27f7d8f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"56d65e85dcac7ee715247cb3a71ae5d8\";a:5:{s:6:\"source\";s:32:\"56d65e85dcac7ee715247cb3a71ae5d8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7de621f46f757778c9bcc17548b0d892\";a:5:{s:6:\"source\";s:32:\"7de621f46f757778c9bcc17548b0d892\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1395b80b2354238f91b49a2b9fdfcef2\";a:5:{s:6:\"source\";s:32:\"1395b80b2354238f91b49a2b9fdfcef2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"88bee13c8edf39eb68d75bcfe7cda047\";a:5:{s:6:\"source\";s:32:\"88bee13c8edf39eb68d75bcfe7cda047\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"78a1c333d20796d341889d7ecef43914\";a:5:{s:6:\"source\";s:32:\"78a1c333d20796d341889d7ecef43914\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bf0e70455e450955b94db2fbb352ca88\";a:5:{s:6:\"source\";s:32:\"bf0e70455e450955b94db2fbb352ca88\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bc090874745ae1cacdbff73f4004689b\";a:5:{s:6:\"source\";s:32:\"bc090874745ae1cacdbff73f4004689b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e9cb80f552e108acf63a945ee8a03a2e\";a:5:{s:6:\"source\";s:32:\"e9cb80f552e108acf63a945ee8a03a2e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"71ffd0756cf83280dd319f44ea5d2994\";a:5:{s:6:\"source\";s:32:\"71ffd0756cf83280dd319f44ea5d2994\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a5922a67ef77961b526e55cdd218fade\";a:5:{s:6:\"source\";s:32:\"a5922a67ef77961b526e55cdd218fade\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9e0be2aae067df15833168811575f1d6\";a:5:{s:6:\"source\";s:32:\"9e0be2aae067df15833168811575f1d6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8aace05a478cefe6d7c57801faa7718f\";a:5:{s:6:\"source\";s:32:\"8aace05a478cefe6d7c57801faa7718f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b24637e879ceac8f378a425fecbb455c\";a:5:{s:6:\"source\";s:32:\"b24637e879ceac8f378a425fecbb455c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"19509a8bcca01c253f4b13645aab4bd0\";a:5:{s:6:\"source\";s:32:\"19509a8bcca01c253f4b13645aab4bd0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"509c39c405323b1466983f7e2f1109cc\";a:5:{s:6:\"source\";s:32:\"509c39c405323b1466983f7e2f1109cc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"04163e76a0799721418fa9f050cd8354\";a:5:{s:6:\"source\";s:32:\"04163e76a0799721418fa9f050cd8354\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a9104c9d6c96eaa7317eb4897db73fd7\";a:5:{s:6:\"source\";s:32:\"a9104c9d6c96eaa7317eb4897db73fd7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ddb39c49c9b3ad725473bf863e87bc16\";a:5:{s:6:\"source\";s:32:\"ddb39c49c9b3ad725473bf863e87bc16\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bfda61eb7a1ccc469a39e039580a73f6\";a:5:{s:6:\"source\";s:32:\"bfda61eb7a1ccc469a39e039580a73f6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"038c170e4f4f37a69ec077afeb64feb9\";a:5:{s:6:\"source\";s:32:\"038c170e4f4f37a69ec077afeb64feb9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8b509edbddb40af897018e80ff28bd56\";a:5:{s:6:\"source\";s:32:\"8b509edbddb40af897018e80ff28bd56\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"221cdf73c5f44af61b69acaf8d9e0554\";a:5:{s:6:\"source\";s:32:\"221cdf73c5f44af61b69acaf8d9e0554\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f0ddf40ac2e044c85378ffc36083d16e\";a:5:{s:6:\"source\";s:32:\"f0ddf40ac2e044c85378ffc36083d16e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"44d025350fb0ce0f25f45a5f8812fc66\";a:5:{s:6:\"source\";s:32:\"44d025350fb0ce0f25f45a5f8812fc66\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"127ee6dbb9f4eebf971c8b68aba1ec91\";a:5:{s:6:\"source\";s:32:\"127ee6dbb9f4eebf971c8b68aba1ec91\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9ad74b2720270781d0c1c4e412a8c0a4\";a:5:{s:6:\"source\";s:32:\"9ad74b2720270781d0c1c4e412a8c0a4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e246325386534cd804037c257d45319f\";a:5:{s:6:\"source\";s:32:\"e246325386534cd804037c257d45319f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ead145036b37d781a5a45858eba88a12\";a:5:{s:6:\"source\";s:32:\"ead145036b37d781a5a45858eba88a12\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cafe6e793fc2b38d7ef297a77ed0a71b\";a:5:{s:6:\"source\";s:32:\"cafe6e793fc2b38d7ef297a77ed0a71b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f2f5345599714a4f68ba637b16bc44e1\";a:5:{s:6:\"source\";s:32:\"f2f5345599714a4f68ba637b16bc44e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"85afdc207f031989a3bb7fd501a6a30d\";a:5:{s:6:\"source\";s:32:\"85afdc207f031989a3bb7fd501a6a30d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d15fa96f85a615f3a9163b0bca1bb724\";a:5:{s:6:\"source\";s:32:\"d15fa96f85a615f3a9163b0bca1bb724\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"98e2a6d28320673345113dd9670ae5dc\";a:5:{s:6:\"source\";s:32:\"98e2a6d28320673345113dd9670ae5dc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"68853060789b249dd3d0e916e337e430\";a:5:{s:6:\"source\";s:32:\"68853060789b249dd3d0e916e337e430\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ea5b628b8995dd1eee5076f477d82fd9\";a:5:{s:6:\"source\";s:32:\"ea5b628b8995dd1eee5076f477d82fd9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"18e61a706030068935f5687a6ec643b4\";a:5:{s:6:\"source\";s:32:\"18e61a706030068935f5687a6ec643b4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"353d0243d6f19e40e1e91bb175f952bd\";a:5:{s:6:\"source\";s:32:\"353d0243d6f19e40e1e91bb175f952bd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d7755136f17c7b8900bb8a396d82f657\";a:5:{s:6:\"source\";s:32:\"d7755136f17c7b8900bb8a396d82f657\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2e965e4b93932fd8d3325ed8249b2b9c\";a:5:{s:6:\"source\";s:32:\"2e965e4b93932fd8d3325ed8249b2b9c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7ce8c56336172d5dc7a08ba5a690d5f9\";a:5:{s:6:\"source\";s:32:\"7ce8c56336172d5dc7a08ba5a690d5f9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0eb403d217fbff905552fb21e7f7257a\";a:5:{s:6:\"source\";s:32:\"0eb403d217fbff905552fb21e7f7257a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8f85d75bc9fee74df17d9c080877cd7e\";a:5:{s:6:\"source\";s:32:\"8f85d75bc9fee74df17d9c080877cd7e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"efcd97027e513984d702218e75fc170c\";a:5:{s:6:\"source\";s:32:\"efcd97027e513984d702218e75fc170c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"55bee1fb1774489abad4173406f77de9\";a:5:{s:6:\"source\";s:32:\"55bee1fb1774489abad4173406f77de9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e29da6e0787a3e5e5c7388b69c5d0453\";a:5:{s:6:\"source\";s:32:\"e29da6e0787a3e5e5c7388b69c5d0453\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b22690e0bf3dac5f2674174ef84c8974\";a:5:{s:6:\"source\";s:32:\"b22690e0bf3dac5f2674174ef84c8974\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2078b4f811b143a276b515258e314230\";a:5:{s:6:\"source\";s:32:\"2078b4f811b143a276b515258e314230\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"931b357cf224cf13307f0512ce502903\";a:5:{s:6:\"source\";s:32:\"931b357cf224cf13307f0512ce502903\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2faae61e9481bc787ac9281ee5df4534\";a:5:{s:6:\"source\";s:32:\"2faae61e9481bc787ac9281ee5df4534\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"06d6e5a063e3e54955674db7e084dc5a\";a:5:{s:6:\"source\";s:32:\"06d6e5a063e3e54955674db7e084dc5a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ea40f28ab0e7295ca3e8f5f9ac54d9fb\";a:5:{s:6:\"source\";s:32:\"ea40f28ab0e7295ca3e8f5f9ac54d9fb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b8d9c4f5e72c448a0f289ed42446ec21\";a:5:{s:6:\"source\";s:32:\"b8d9c4f5e72c448a0f289ed42446ec21\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6cfe5e6c9ae69923eb78b4a847918fa8\";a:5:{s:6:\"source\";s:32:\"6cfe5e6c9ae69923eb78b4a847918fa8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5c9e8cc46a681a4f0e2f34bed4c4f95d\";a:5:{s:6:\"source\";s:32:\"5c9e8cc46a681a4f0e2f34bed4c4f95d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c78f9e8ccc08a635042ed293faf98ee\";a:5:{s:6:\"source\";s:32:\"3c78f9e8ccc08a635042ed293faf98ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"254751b180c5f2a39231aced3a303105\";a:5:{s:6:\"source\";s:32:\"254751b180c5f2a39231aced3a303105\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d779e406eeb182e0f58a5dd61af10bf\";a:5:{s:6:\"source\";s:32:\"4d779e406eeb182e0f58a5dd61af10bf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ed4d5a3d321edba1bb9ddc752b68b8bc\";a:5:{s:6:\"source\";s:32:\"ed4d5a3d321edba1bb9ddc752b68b8bc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"24cf3303f22d3ebc98338b38f3bea9e4\";a:5:{s:6:\"source\";s:32:\"24cf3303f22d3ebc98338b38f3bea9e4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"086e9b59e619627d525df0f403c94685\";a:5:{s:6:\"source\";s:32:\"086e9b59e619627d525df0f403c94685\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"10bd9f5cfdb7ba865cbae77ea7e8aeba\";a:5:{s:6:\"source\";s:32:\"10bd9f5cfdb7ba865cbae77ea7e8aeba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3cb02f66d91209b02dd42fc451a31ca7\";a:5:{s:6:\"source\";s:32:\"3cb02f66d91209b02dd42fc451a31ca7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1124cf3e954df5ed3d1330a05c232f33\";a:5:{s:6:\"source\";s:32:\"1124cf3e954df5ed3d1330a05c232f33\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f3e9ffc78c1888bd18f7f6b28eace6f9\";a:5:{s:6:\"source\";s:32:\"f3e9ffc78c1888bd18f7f6b28eace6f9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"47bca20f0f859ee78452427c04121b5d\";a:5:{s:6:\"source\";s:32:\"47bca20f0f859ee78452427c04121b5d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b209a63167a8ffa8a8378f992516d617\";a:5:{s:6:\"source\";s:32:\"b209a63167a8ffa8a8378f992516d617\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"148bf9f7865b9eae151862db7976f6ca\";a:5:{s:6:\"source\";s:32:\"148bf9f7865b9eae151862db7976f6ca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"21081a5f1a2e2237da5b517f4343f005\";a:5:{s:6:\"source\";s:32:\"21081a5f1a2e2237da5b517f4343f005\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ca7ac5cc84dc78395d3a6e8cb96b9a43\";a:5:{s:6:\"source\";s:32:\"ca7ac5cc84dc78395d3a6e8cb96b9a43\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"372514acca36532ca3332e7f72b605fa\";a:5:{s:6:\"source\";s:32:\"372514acca36532ca3332e7f72b605fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"00841a0dc701aa809bb869984d341f98\";a:5:{s:6:\"source\";s:32:\"00841a0dc701aa809bb869984d341f98\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6f1631c5d453b53b82083b7aef7a9bb4\";a:5:{s:6:\"source\";s:32:\"6f1631c5d453b53b82083b7aef7a9bb4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7a51cc6302486bf8aad09ac5a188f459\";a:5:{s:6:\"source\";s:32:\"7a51cc6302486bf8aad09ac5a188f459\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ad5171de7803146105cf3e7e56735efd\";a:5:{s:6:\"source\";s:32:\"ad5171de7803146105cf3e7e56735efd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1912e60028db808e742b1243200831a9\";a:5:{s:6:\"source\";s:32:\"1912e60028db808e742b1243200831a9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5ef12a08e6b2d6fb75aeb8133f318b93\";a:5:{s:6:\"source\";s:32:\"5ef12a08e6b2d6fb75aeb8133f318b93\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"307e242e59a6ffbfc3de0da5ab8b97ae\";a:5:{s:6:\"source\";s:32:\"307e242e59a6ffbfc3de0da5ab8b97ae\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f638d650f0b9ddbd0c47577b22076c4f\";a:5:{s:6:\"source\";s:32:\"f638d650f0b9ddbd0c47577b22076c4f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1886eb3497c2fffeba6a921d71fd6b36\";a:5:{s:6:\"source\";s:32:\"1886eb3497c2fffeba6a921d71fd6b36\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0d6129efe4cdf0b618b0c63e5583dec9\";a:5:{s:6:\"source\";s:32:\"0d6129efe4cdf0b618b0c63e5583dec9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bf1e02936d9bd19b59075ed17cfc5929\";a:5:{s:6:\"source\";s:32:\"bf1e02936d9bd19b59075ed17cfc5929\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f148feb44c07806306d0762a6a83ac75\";a:5:{s:6:\"source\";s:32:\"f148feb44c07806306d0762a6a83ac75\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"216e153109e2e57288bc62d3bfe952ac\";a:5:{s:6:\"source\";s:32:\"216e153109e2e57288bc62d3bfe952ac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0effc6f795aae63b869ee88ca4d9bac8\";a:5:{s:6:\"source\";s:32:\"0effc6f795aae63b869ee88ca4d9bac8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"229119bc90dc16df1f9dfe7d13bc581a\";a:5:{s:6:\"source\";s:32:\"229119bc90dc16df1f9dfe7d13bc581a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"593b986644f86e84843364d5019fdb9c\";a:5:{s:6:\"source\";s:32:\"593b986644f86e84843364d5019fdb9c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eafc70a3cbe6746275e6c5e714073c74\";a:5:{s:6:\"source\";s:32:\"eafc70a3cbe6746275e6c5e714073c74\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9eed15c2306191a61c7a0bd8047d2c16\";a:5:{s:6:\"source\";s:32:\"9eed15c2306191a61c7a0bd8047d2c16\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d9409061e13369bfaaf3a482ac6e0c41\";a:5:{s:6:\"source\";s:32:\"d9409061e13369bfaaf3a482ac6e0c41\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3835f1bb01a343c2d7b88d4b394d3bcc\";a:5:{s:6:\"source\";s:32:\"3835f1bb01a343c2d7b88d4b394d3bcc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e24f51e1c7f5575753e50cef7dccfedc\";a:5:{s:6:\"source\";s:32:\"e24f51e1c7f5575753e50cef7dccfedc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"624a23fa39099ef9d3356e3e77559eb9\";a:5:{s:6:\"source\";s:32:\"624a23fa39099ef9d3356e3e77559eb9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a14dce2c9ba66fb166c5d19344929c87\";a:5:{s:6:\"source\";s:32:\"a14dce2c9ba66fb166c5d19344929c87\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e7802cce4357eec9f9677dbf150e5672\";a:5:{s:6:\"source\";s:32:\"e7802cce4357eec9f9677dbf150e5672\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dae408056b0489a21d97df4cb49036b5\";a:5:{s:6:\"source\";s:32:\"dae408056b0489a21d97df4cb49036b5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1b5b4b9777f3c17ef8178f067d0e9929\";a:5:{s:6:\"source\";s:32:\"1b5b4b9777f3c17ef8178f067d0e9929\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d4eaa7517c08687caa73c732a32d04b4\";a:5:{s:6:\"source\";s:32:\"d4eaa7517c08687caa73c732a32d04b4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c6d9da28136cca6a48adbc021dfafd23\";a:5:{s:6:\"source\";s:32:\"c6d9da28136cca6a48adbc021dfafd23\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"351ba7dbba118c93ffda46dd4fd3f230\";a:5:{s:6:\"source\";s:32:\"351ba7dbba118c93ffda46dd4fd3f230\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f43d2886949dfc0f6210f53e1cc19322\";a:5:{s:6:\"source\";s:32:\"f43d2886949dfc0f6210f53e1cc19322\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bd058d6465d08c3474980e138c54cfa4\";a:5:{s:6:\"source\";s:32:\"bd058d6465d08c3474980e138c54cfa4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0f32ac0d895ecea20137706798ddd40b\";a:5:{s:6:\"source\";s:32:\"0f32ac0d895ecea20137706798ddd40b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b0e86f37a08dc0565561070f86fa8376\";a:5:{s:6:\"source\";s:32:\"b0e86f37a08dc0565561070f86fa8376\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"560c6e33b944f1f0aaaac1ebc485075b\";a:5:{s:6:\"source\";s:32:\"560c6e33b944f1f0aaaac1ebc485075b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8cb4af91f077afe74c841f62dad5d0be\";a:5:{s:6:\"source\";s:32:\"8cb4af91f077afe74c841f62dad5d0be\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c47263751ca8eac9f20ecbbb14f38500\";a:5:{s:6:\"source\";s:32:\"c47263751ca8eac9f20ecbbb14f38500\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"98e86c5060202c1594e304c6df9239ea\";a:5:{s:6:\"source\";s:32:\"98e86c5060202c1594e304c6df9239ea\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c4865ca555bcf43d5c9392080a76bbd6\";a:5:{s:6:\"source\";s:32:\"c4865ca555bcf43d5c9392080a76bbd6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"40eb1be2bf3a6eb7452cedc6881cf3e3\";a:5:{s:6:\"source\";s:32:\"40eb1be2bf3a6eb7452cedc6881cf3e3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d3a3ac7fcd7f24c8404716c73c0c7b08\";a:5:{s:6:\"source\";s:32:\"d3a3ac7fcd7f24c8404716c73c0c7b08\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5ee8f87a710f594a81bc530c3b6b02be\";a:5:{s:6:\"source\";s:32:\"5ee8f87a710f594a81bc530c3b6b02be\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef420b3a9e8510a2b0d488269e8fa6bf\";a:5:{s:6:\"source\";s:32:\"ef420b3a9e8510a2b0d488269e8fa6bf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"319971e0d9a8e32c47e35826fe2c7751\";a:5:{s:6:\"source\";s:32:\"319971e0d9a8e32c47e35826fe2c7751\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"843e59d294ad705634673b1939076286\";a:5:{s:6:\"source\";s:32:\"843e59d294ad705634673b1939076286\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1831650f7cb4a2be010fcc771486cc23\";a:5:{s:6:\"source\";s:32:\"1831650f7cb4a2be010fcc771486cc23\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4195a949f615ebb6f80cd9cefd4f6bd7\";a:5:{s:6:\"source\";s:32:\"4195a949f615ebb6f80cd9cefd4f6bd7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"24d6119bcf0faec74f333ed5892f250a\";a:5:{s:6:\"source\";s:32:\"24d6119bcf0faec74f333ed5892f250a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2b4f704afcb66af6ea98552eefefe672\";a:5:{s:6:\"source\";s:32:\"2b4f704afcb66af6ea98552eefefe672\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ac67f2fc229ad52c3d41e80f6aef21b9\";a:5:{s:6:\"source\";s:32:\"ac67f2fc229ad52c3d41e80f6aef21b9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e1741897fafcf8fcd360f9e3164bf9c6\";a:5:{s:6:\"source\";s:32:\"e1741897fafcf8fcd360f9e3164bf9c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"30368a74fd10e48a3ef5e080121518b4\";a:5:{s:6:\"source\";s:32:\"30368a74fd10e48a3ef5e080121518b4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"53c0be254a822c3665e19335c84b17a6\";a:5:{s:6:\"source\";s:32:\"53c0be254a822c3665e19335c84b17a6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"058ec9662114eeabb46e82b7faa3c2c7\";a:5:{s:6:\"source\";s:32:\"058ec9662114eeabb46e82b7faa3c2c7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"362ea11de9cf4e036f23c900f4a0aac3\";a:5:{s:6:\"source\";s:32:\"362ea11de9cf4e036f23c900f4a0aac3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ce9cfc2d3717ba22125a60c653bd687b\";a:5:{s:6:\"source\";s:32:\"ce9cfc2d3717ba22125a60c653bd687b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"63db45c27c77408619bc66a9975bc2bf\";a:5:{s:6:\"source\";s:32:\"63db45c27c77408619bc66a9975bc2bf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c0d20c43df999c748d12b95d647b2717\";a:5:{s:6:\"source\";s:32:\"c0d20c43df999c748d12b95d647b2717\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"78fb226bb67de6ac3bc396a7cd8b867c\";a:5:{s:6:\"source\";s:32:\"78fb226bb67de6ac3bc396a7cd8b867c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"25b4cdebd0904b7bda5cce9c07476437\";a:5:{s:6:\"source\";s:32:\"25b4cdebd0904b7bda5cce9c07476437\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c33455d809b2898ea039c730833f64f\";a:5:{s:6:\"source\";s:32:\"2c33455d809b2898ea039c730833f64f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e413402369e78a09e12945b355925cde\";a:5:{s:6:\"source\";s:32:\"e413402369e78a09e12945b355925cde\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"035168ee922614dafa29e11bde09e080\";a:5:{s:6:\"source\";s:32:\"035168ee922614dafa29e11bde09e080\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"48a5ff214b0a4a47a8c3c8fc78cef132\";a:5:{s:6:\"source\";s:32:\"48a5ff214b0a4a47a8c3c8fc78cef132\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6a3894847e2ea978d7c15c6585f4d608\";a:5:{s:6:\"source\";s:32:\"6a3894847e2ea978d7c15c6585f4d608\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aa40d6dd2d7f7233a95bb03323a0d4f6\";a:5:{s:6:\"source\";s:32:\"aa40d6dd2d7f7233a95bb03323a0d4f6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"58bb6c5c18f5d688f7027e457d3596ed\";a:5:{s:6:\"source\";s:32:\"58bb6c5c18f5d688f7027e457d3596ed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1abbbd2ef3dc1ab646f025993f0f0aaa\";a:5:{s:6:\"source\";s:32:\"1abbbd2ef3dc1ab646f025993f0f0aaa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cf1e88cf56571e19eb73278aea53f5db\";a:5:{s:6:\"source\";s:32:\"cf1e88cf56571e19eb73278aea53f5db\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1dc35918c6f805cbc5222db8412eeb99\";a:5:{s:6:\"source\";s:32:\"1dc35918c6f805cbc5222db8412eeb99\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a326e055ac7abc1315b2cad98147a046\";a:5:{s:6:\"source\";s:32:\"a326e055ac7abc1315b2cad98147a046\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"31cb9b5bdac9c131c101f608836c4401\";a:5:{s:6:\"source\";s:32:\"31cb9b5bdac9c131c101f608836c4401\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3a28c02939dba45b7eff6501da0899e2\";a:5:{s:6:\"source\";s:32:\"3a28c02939dba45b7eff6501da0899e2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"60f24a016cc1fc419bde9fd22a477773\";a:5:{s:6:\"source\";s:32:\"60f24a016cc1fc419bde9fd22a477773\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"89d42f33f0aae22a9e4907f1839a0078\";a:5:{s:6:\"source\";s:32:\"89d42f33f0aae22a9e4907f1839a0078\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6fe534d0bc15f3c6b335a3ed28ef796d\";a:5:{s:6:\"source\";s:32:\"6fe534d0bc15f3c6b335a3ed28ef796d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6b653dd6df41319caeca320da9d469ea\";a:5:{s:6:\"source\";s:32:\"6b653dd6df41319caeca320da9d469ea\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6ee4b98260da7e42373fa9225fc8994e\";a:5:{s:6:\"source\";s:32:\"6ee4b98260da7e42373fa9225fc8994e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fc1ad876886fe6708fd7cd83da758ead\";a:5:{s:6:\"source\";s:32:\"fc1ad876886fe6708fd7cd83da758ead\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9555b15ec5c2ef9c7948417d55b16271\";a:5:{s:6:\"source\";s:32:\"9555b15ec5c2ef9c7948417d55b16271\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a09d97ec4876de364d2bb534e0d6ba38\";a:5:{s:6:\"source\";s:32:\"a09d97ec4876de364d2bb534e0d6ba38\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"48af6983f087e83c665081dc6da5fdd4\";a:5:{s:6:\"source\";s:32:\"48af6983f087e83c665081dc6da5fdd4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7c1334c900b35eeded8f15b5722a3f16\";a:5:{s:6:\"source\";s:32:\"7c1334c900b35eeded8f15b5722a3f16\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3b9b37951206ffff86004154c94bea18\";a:5:{s:6:\"source\";s:32:\"3b9b37951206ffff86004154c94bea18\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"74ea694393e06348b4030e8104a1750d\";a:5:{s:6:\"source\";s:32:\"74ea694393e06348b4030e8104a1750d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c68aa04a5b78af84172ad618120107b0\";a:5:{s:6:\"source\";s:32:\"c68aa04a5b78af84172ad618120107b0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4accfd1f5c7e8c68935e1aee36aa375c\";a:5:{s:6:\"source\";s:32:\"4accfd1f5c7e8c68935e1aee36aa375c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"97980ae53a0f606370acee798d4b3a42\";a:5:{s:6:\"source\";s:32:\"97980ae53a0f606370acee798d4b3a42\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d0892d9e15f311e255dbfeec8d70ee4c\";a:5:{s:6:\"source\";s:32:\"d0892d9e15f311e255dbfeec8d70ee4c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d54c3e814d32f019e42450f5f195398\";a:5:{s:6:\"source\";s:32:\"4d54c3e814d32f019e42450f5f195398\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"77cf17b0042de05acc9a3e1eac8a1866\";a:5:{s:6:\"source\";s:32:\"77cf17b0042de05acc9a3e1eac8a1866\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef28d9a802bb6d89d55fc8dfa015602d\";a:5:{s:6:\"source\";s:32:\"ef28d9a802bb6d89d55fc8dfa015602d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2478b286208c5aaf81cde54c1cd57211\";a:5:{s:6:\"source\";s:32:\"2478b286208c5aaf81cde54c1cd57211\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9a24a8c46c0d694f9b23bd77be8fd661\";a:5:{s:6:\"source\";s:32:\"9a24a8c46c0d694f9b23bd77be8fd661\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f501e0d892e1de524e9c283eda9dfe1e\";a:5:{s:6:\"source\";s:32:\"f501e0d892e1de524e9c283eda9dfe1e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d54558c4c0599216ffebbf014f8f293a\";a:5:{s:6:\"source\";s:32:\"d54558c4c0599216ffebbf014f8f293a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c4bb5f3957a8d2552ad045290bb3e317\";a:5:{s:6:\"source\";s:32:\"c4bb5f3957a8d2552ad045290bb3e317\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3ea0447c8d44cea8fed48272e179da34\";a:5:{s:6:\"source\";s:32:\"3ea0447c8d44cea8fed48272e179da34\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2cc0cf6ad986c69d7e47502a56f3da12\";a:5:{s:6:\"source\";s:32:\"2cc0cf6ad986c69d7e47502a56f3da12\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7106ec1b78910b61a565450dfec6ce1b\";a:5:{s:6:\"source\";s:32:\"7106ec1b78910b61a565450dfec6ce1b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6feb1e3bbf3ed929c73665e5df210dbf\";a:5:{s:6:\"source\";s:32:\"6feb1e3bbf3ed929c73665e5df210dbf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9a7d89d0849376ae9ffb40463a3b8be3\";a:5:{s:6:\"source\";s:32:\"9a7d89d0849376ae9ffb40463a3b8be3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"62ef2a799bb66aa7fe9efadd847d2daf\";a:5:{s:6:\"source\";s:32:\"62ef2a799bb66aa7fe9efadd847d2daf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"394d59f718d9e22da6a3acd2c6ca4ad6\";a:5:{s:6:\"source\";s:32:\"394d59f718d9e22da6a3acd2c6ca4ad6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c6f8b5f9cf34fbedc4357e83d7337893\";a:5:{s:6:\"source\";s:32:\"c6f8b5f9cf34fbedc4357e83d7337893\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"541720c2b7682a22caa988e070d301b5\";a:5:{s:6:\"source\";s:32:\"541720c2b7682a22caa988e070d301b5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c5226e6021c4f6e76f9b3a309624612e\";a:5:{s:6:\"source\";s:32:\"c5226e6021c4f6e76f9b3a309624612e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"141560d55c152f84b947f0908685e8df\";a:5:{s:6:\"source\";s:32:\"141560d55c152f84b947f0908685e8df\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8b6f2b1974e0c43e45e4ac5d3398dd5d\";a:5:{s:6:\"source\";s:32:\"8b6f2b1974e0c43e45e4ac5d3398dd5d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"900722c6f39db0c4b5986e2dc2caf78b\";a:5:{s:6:\"source\";s:32:\"900722c6f39db0c4b5986e2dc2caf78b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ee62700820ca8eb10450c2421c584773\";a:5:{s:6:\"source\";s:32:\"ee62700820ca8eb10450c2421c584773\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"65bc69cecb4631076a82137bed4caf35\";a:5:{s:6:\"source\";s:32:\"65bc69cecb4631076a82137bed4caf35\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"16a6b8da055793c520f647d36c43f140\";a:5:{s:6:\"source\";s:32:\"16a6b8da055793c520f647d36c43f140\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fb8b49dbc9cb4ca731779b825aa7a5d7\";a:5:{s:6:\"source\";s:32:\"fb8b49dbc9cb4ca731779b825aa7a5d7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7b36c62ea428e88c3803123de3460fe0\";a:5:{s:6:\"source\";s:32:\"7b36c62ea428e88c3803123de3460fe0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e5741988a05a44f84988f043c56264ed\";a:5:{s:6:\"source\";s:32:\"e5741988a05a44f84988f043c56264ed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f78eaef690b47bfd981cde9c20d479b5\";a:5:{s:6:\"source\";s:32:\"f78eaef690b47bfd981cde9c20d479b5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9ca56c5232d5937d72cccc0be045f012\";a:5:{s:6:\"source\";s:32:\"9ca56c5232d5937d72cccc0be045f012\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e96116a334b49183b30b6df1bb8b6dd5\";a:5:{s:6:\"source\";s:32:\"e96116a334b49183b30b6df1bb8b6dd5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a412489d93826fd86c73275660b3dc73\";a:5:{s:6:\"source\";s:32:\"a412489d93826fd86c73275660b3dc73\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3b45bc9a933e2c91316c6df9cb422046\";a:5:{s:6:\"source\";s:32:\"3b45bc9a933e2c91316c6df9cb422046\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5b7ebade3b617a0f4d2a06a0cbdb161a\";a:5:{s:6:\"source\";s:32:\"5b7ebade3b617a0f4d2a06a0cbdb161a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a11b93b9dd6ea79978c4e6d5825ca47\";a:5:{s:6:\"source\";s:32:\"8a11b93b9dd6ea79978c4e6d5825ca47\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fdd15397cd92dbefc2cf582bee259d48\";a:5:{s:6:\"source\";s:32:\"fdd15397cd92dbefc2cf582bee259d48\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"da238df9df40af8f992e1067ad290c13\";a:5:{s:6:\"source\";s:32:\"da238df9df40af8f992e1067ad290c13\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"211f547b922fbe3cd5b74155a4b4ce48\";a:5:{s:6:\"source\";s:32:\"211f547b922fbe3cd5b74155a4b4ce48\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"64df14530929e994a1535046311d7b05\";a:5:{s:6:\"source\";s:32:\"64df14530929e994a1535046311d7b05\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2ec545959b23c1edbd3388bb9302cd07\";a:5:{s:6:\"source\";s:32:\"2ec545959b23c1edbd3388bb9302cd07\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f5493b9e35e875952ed4169e2ac1008b\";a:5:{s:6:\"source\";s:32:\"f5493b9e35e875952ed4169e2ac1008b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b9abc89075562735117efc0fda0b26e8\";a:5:{s:6:\"source\";s:32:\"b9abc89075562735117efc0fda0b26e8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9f56466de173a287b7475cab0be7d642\";a:5:{s:6:\"source\";s:32:\"9f56466de173a287b7475cab0be7d642\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"401ba2c3f2c856df889a986c05c3c402\";a:5:{s:6:\"source\";s:32:\"401ba2c3f2c856df889a986c05c3c402\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"818b197443902fdd85ee6e2429998e0b\";a:5:{s:6:\"source\";s:32:\"818b197443902fdd85ee6e2429998e0b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"43ecfedf499ce4205544b3c5d43ddefc\";a:5:{s:6:\"source\";s:32:\"43ecfedf499ce4205544b3c5d43ddefc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6c55c4ab10f7a370e22ec5aa65b47027\";a:5:{s:6:\"source\";s:32:\"6c55c4ab10f7a370e22ec5aa65b47027\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"94f6a6782ab3c43b031c2c9648fbe224\";a:5:{s:6:\"source\";s:32:\"94f6a6782ab3c43b031c2c9648fbe224\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fca2a4daefcf508b752fe835932e80a6\";a:5:{s:6:\"source\";s:32:\"fca2a4daefcf508b752fe835932e80a6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"15277cf38d351200a2d29f29023cbeda\";a:5:{s:6:\"source\";s:32:\"15277cf38d351200a2d29f29023cbeda\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"68e0b963c50b8fdc1b21cb3454e23dff\";a:5:{s:6:\"source\";s:32:\"68e0b963c50b8fdc1b21cb3454e23dff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5254ebcd0875fa5a27a83fd246e2d5df\";a:5:{s:6:\"source\";s:32:\"5254ebcd0875fa5a27a83fd246e2d5df\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a7257a8fa29e5f06237a953e0a4cd3a5\";a:5:{s:6:\"source\";s:32:\"a7257a8fa29e5f06237a953e0a4cd3a5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0c8b5a65abe1e122cf2bcc8fc69c5ddb\";a:5:{s:6:\"source\";s:32:\"0c8b5a65abe1e122cf2bcc8fc69c5ddb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7497d14cb11d6a30108ae8aa6eb85d5d\";a:5:{s:6:\"source\";s:32:\"7497d14cb11d6a30108ae8aa6eb85d5d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fa914fe3e3bdd441b76eec611bc55274\";a:5:{s:6:\"source\";s:32:\"fa914fe3e3bdd441b76eec611bc55274\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0f5407e11f66510d74ee84b2b02b59ef\";a:5:{s:6:\"source\";s:32:\"0f5407e11f66510d74ee84b2b02b59ef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"03e56439ed60a78c900dbe0e3976c38d\";a:5:{s:6:\"source\";s:32:\"03e56439ed60a78c900dbe0e3976c38d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0338fc97098261e68a5cc4539609e609\";a:5:{s:6:\"source\";s:32:\"0338fc97098261e68a5cc4539609e609\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e6a582cfa44a21b1e61623d07db7a8b7\";a:5:{s:6:\"source\";s:32:\"e6a582cfa44a21b1e61623d07db7a8b7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5386639ebe7fb13180943f34148f6630\";a:5:{s:6:\"source\";s:32:\"5386639ebe7fb13180943f34148f6630\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a6e9be4229cf071edb1aeb37e73e4b87\";a:5:{s:6:\"source\";s:32:\"a6e9be4229cf071edb1aeb37e73e4b87\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"73ffdd3258718ce4a55fe98d58c78dc0\";a:5:{s:6:\"source\";s:32:\"73ffdd3258718ce4a55fe98d58c78dc0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0fab48748edf25a21af109d5e6eb8a8f\";a:5:{s:6:\"source\";s:32:\"0fab48748edf25a21af109d5e6eb8a8f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8b9795cd9ae607bbc0f6c7369fbfbfc9\";a:5:{s:6:\"source\";s:32:\"8b9795cd9ae607bbc0f6c7369fbfbfc9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"406b3dc235dc86182d689fed0e4c163b\";a:5:{s:6:\"source\";s:32:\"406b3dc235dc86182d689fed0e4c163b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a5c34c528c5183c45035ff39b67fbdee\";a:5:{s:6:\"source\";s:32:\"a5c34c528c5183c45035ff39b67fbdee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"94a52d198187dab7e2c66cc5e66b1f57\";a:5:{s:6:\"source\";s:32:\"94a52d198187dab7e2c66cc5e66b1f57\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f1309fabacba415937b292747ae011a\";a:5:{s:6:\"source\";s:32:\"7f1309fabacba415937b292747ae011a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a34d8cd8505c8d83ab668483b803c7cf\";a:5:{s:6:\"source\";s:32:\"a34d8cd8505c8d83ab668483b803c7cf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"86970a7ce0728e0e2b29cdfd4221702f\";a:5:{s:6:\"source\";s:32:\"86970a7ce0728e0e2b29cdfd4221702f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7ce7ea35839a4da8e811b1738f9b1f47\";a:5:{s:6:\"source\";s:32:\"7ce7ea35839a4da8e811b1738f9b1f47\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6fe60e74353d14b8f59b988a24c321cd\";a:5:{s:6:\"source\";s:32:\"6fe60e74353d14b8f59b988a24c321cd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5a3b4e6303d77e44360d2438fe6570ee\";a:5:{s:6:\"source\";s:32:\"5a3b4e6303d77e44360d2438fe6570ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c7bf9d310280792fe8ca345ed5ec6e47\";a:5:{s:6:\"source\";s:32:\"c7bf9d310280792fe8ca345ed5ec6e47\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c4dfa4eef99f2550a3d26e842663614c\";a:5:{s:6:\"source\";s:32:\"c4dfa4eef99f2550a3d26e842663614c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dff1db400a526f4209d9b802b019e107\";a:5:{s:6:\"source\";s:32:\"dff1db400a526f4209d9b802b019e107\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9abd9102254fca45a30f6a4aa76ae252\";a:5:{s:6:\"source\";s:32:\"9abd9102254fca45a30f6a4aa76ae252\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dc1650313e2d56246a1a7a28cc3ae30f\";a:5:{s:6:\"source\";s:32:\"dc1650313e2d56246a1a7a28cc3ae30f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eacfd80ee247105b8b4d1c4d821a268c\";a:5:{s:6:\"source\";s:32:\"eacfd80ee247105b8b4d1c4d821a268c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ae45ea8561d67427a4abcd0dbc86cf34\";a:5:{s:6:\"source\";s:32:\"ae45ea8561d67427a4abcd0dbc86cf34\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"52b98d011d26a1feba832dd8d59174d0\";a:5:{s:6:\"source\";s:32:\"52b98d011d26a1feba832dd8d59174d0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0b87bcad24f82110121bfb6705aede3d\";a:5:{s:6:\"source\";s:32:\"0b87bcad24f82110121bfb6705aede3d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fc8f568952723546f0e91eca20bd1852\";a:5:{s:6:\"source\";s:32:\"fc8f568952723546f0e91eca20bd1852\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8cc204451516bc390992225a6d98084a\";a:5:{s:6:\"source\";s:32:\"8cc204451516bc390992225a6d98084a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dcf0224ae91d56269ca9b5abcd14de23\";a:5:{s:6:\"source\";s:32:\"dcf0224ae91d56269ca9b5abcd14de23\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a15a67939d11aaea142bc4e9cbbe3d93\";a:5:{s:6:\"source\";s:32:\"a15a67939d11aaea142bc4e9cbbe3d93\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cc8ea901aa2878979fffe1f41e53f538\";a:5:{s:6:\"source\";s:32:\"cc8ea901aa2878979fffe1f41e53f538\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"faa65cd63112936d8c939b225243898f\";a:5:{s:6:\"source\";s:32:\"faa65cd63112936d8c939b225243898f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"267028cb51e09d859ee27849cff8319c\";a:5:{s:6:\"source\";s:32:\"267028cb51e09d859ee27849cff8319c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cd7dee22a1eee811727cfc3b8f82fc7a\";a:5:{s:6:\"source\";s:32:\"cd7dee22a1eee811727cfc3b8f82fc7a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"43f9ac1a541d40ae6b76e70af29f1738\";a:5:{s:6:\"source\";s:32:\"43f9ac1a541d40ae6b76e70af29f1738\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1ded6cb3123beb37e3cacf705bbf39c5\";a:5:{s:6:\"source\";s:32:\"1ded6cb3123beb37e3cacf705bbf39c5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bbf05c104c40b6b806d994149c291eeb\";a:5:{s:6:\"source\";s:32:\"bbf05c104c40b6b806d994149c291eeb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"db5b999b18f42cdf249c26f7f35a49de\";a:5:{s:6:\"source\";s:32:\"db5b999b18f42cdf249c26f7f35a49de\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f9c9e6aaa3fd040c266d3673ec25798\";a:5:{s:6:\"source\";s:32:\"7f9c9e6aaa3fd040c266d3673ec25798\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4abe5be5205231f77b8acd67d3e12c11\";a:5:{s:6:\"source\";s:32:\"4abe5be5205231f77b8acd67d3e12c11\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a08338cfe136412c6b536865025e9b85\";a:5:{s:6:\"source\";s:32:\"a08338cfe136412c6b536865025e9b85\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3a29f30276e5fb1a3bc2a577ea71d041\";a:5:{s:6:\"source\";s:32:\"3a29f30276e5fb1a3bc2a577ea71d041\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8360bc5d03e802a1e05032b4c76327a8\";a:5:{s:6:\"source\";s:32:\"8360bc5d03e802a1e05032b4c76327a8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5d35b9f1b0c1ff29e98a20d5a0d7a93f\";a:5:{s:6:\"source\";s:32:\"5d35b9f1b0c1ff29e98a20d5a0d7a93f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4a568bda33764fb0cb8cdf9a354997d5\";a:5:{s:6:\"source\";s:32:\"4a568bda33764fb0cb8cdf9a354997d5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b0d1e5a83acd9d50cd51cf1fe10419d9\";a:5:{s:6:\"source\";s:32:\"b0d1e5a83acd9d50cd51cf1fe10419d9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"168e33453bc3cb919078d6de7c004453\";a:5:{s:6:\"source\";s:32:\"168e33453bc3cb919078d6de7c004453\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"18021f156f141efceb9fa96e5393dd50\";a:5:{s:6:\"source\";s:32:\"18021f156f141efceb9fa96e5393dd50\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cc4e15e8b42f937d21f8bff87ab8d3c7\";a:5:{s:6:\"source\";s:32:\"cc4e15e8b42f937d21f8bff87ab8d3c7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"02e5b0f621c3fea3af69724c8c5f110f\";a:5:{s:6:\"source\";s:32:\"02e5b0f621c3fea3af69724c8c5f110f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d5bf9e0fda3930ad579fe43d71d59053\";a:5:{s:6:\"source\";s:32:\"d5bf9e0fda3930ad579fe43d71d59053\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6b1252f0fd9aa812aa00c05e20abe18a\";a:5:{s:6:\"source\";s:32:\"6b1252f0fd9aa812aa00c05e20abe18a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cd254a0918afa1df33046feec3163936\";a:5:{s:6:\"source\";s:32:\"cd254a0918afa1df33046feec3163936\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ed1986e53940ec203d5e13e2fc9520b1\";a:5:{s:6:\"source\";s:32:\"ed1986e53940ec203d5e13e2fc9520b1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0c8c8d453040b5ea3eedbe0243a44f1c\";a:5:{s:6:\"source\";s:32:\"0c8c8d453040b5ea3eedbe0243a44f1c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5f7fe0e154aa8cb19b17c304aab892d7\";a:5:{s:6:\"source\";s:32:\"5f7fe0e154aa8cb19b17c304aab892d7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"562a09285bb54e519c94c06750d1c30c\";a:5:{s:6:\"source\";s:32:\"562a09285bb54e519c94c06750d1c30c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5a6db8886292e454d803384d9279c4ac\";a:5:{s:6:\"source\";s:32:\"5a6db8886292e454d803384d9279c4ac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9c3c3cc7ba465913e8d9e5504a83c931\";a:5:{s:6:\"source\";s:32:\"9c3c3cc7ba465913e8d9e5504a83c931\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a7de905e99ed1bea39e0cafb51bdce84\";a:5:{s:6:\"source\";s:32:\"a7de905e99ed1bea39e0cafb51bdce84\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1c17eeb2da9f0c5828b9b9f00668aa71\";a:5:{s:6:\"source\";s:32:\"1c17eeb2da9f0c5828b9b9f00668aa71\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"85a177678a376dd2c0c918c696cd5da7\";a:5:{s:6:\"source\";s:32:\"85a177678a376dd2c0c918c696cd5da7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fb862db6e0c2fdb98ef96fcdbd288b9a\";a:5:{s:6:\"source\";s:32:\"fb862db6e0c2fdb98ef96fcdbd288b9a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"319a2cfb87ca9ab79bb3446a9993dc8b\";a:5:{s:6:\"source\";s:32:\"319a2cfb87ca9ab79bb3446a9993dc8b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c5fc79c0161ec548881174e84051c348\";a:5:{s:6:\"source\";s:32:\"c5fc79c0161ec548881174e84051c348\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a1206edfee610985b6727b53b7a07377\";a:5:{s:6:\"source\";s:32:\"a1206edfee610985b6727b53b7a07377\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e95d5cae8075f7b64eeaeabd6223d1ca\";a:5:{s:6:\"source\";s:32:\"e95d5cae8075f7b64eeaeabd6223d1ca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"507dff71557de4b99ad624b6f8f7830b\";a:5:{s:6:\"source\";s:32:\"507dff71557de4b99ad624b6f8f7830b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"17ede38ceeb0aaedb3cb078c7b4beb07\";a:5:{s:6:\"source\";s:32:\"17ede38ceeb0aaedb3cb078c7b4beb07\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e5bc34d38eea8b3298f91a3a7b6fd276\";a:5:{s:6:\"source\";s:32:\"e5bc34d38eea8b3298f91a3a7b6fd276\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fc0946f2d643a6e5102c7bf8e69e95d8\";a:5:{s:6:\"source\";s:32:\"fc0946f2d643a6e5102c7bf8e69e95d8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6cb8995f2d19daa0adb364b2889eb25a\";a:5:{s:6:\"source\";s:32:\"6cb8995f2d19daa0adb364b2889eb25a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"479b45fcddf920ef464d28f080105062\";a:5:{s:6:\"source\";s:32:\"479b45fcddf920ef464d28f080105062\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f8dc0d8493d5dc60c05cea29db3fd15d\";a:5:{s:6:\"source\";s:32:\"f8dc0d8493d5dc60c05cea29db3fd15d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"376f87a7dc314e771195e612d7000cdb\";a:5:{s:6:\"source\";s:32:\"376f87a7dc314e771195e612d7000cdb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5306fd665aea00d32305d425dd41d9c8\";a:5:{s:6:\"source\";s:32:\"5306fd665aea00d32305d425dd41d9c8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"19f637242cfefff6d926a4f0ac1dfac5\";a:5:{s:6:\"source\";s:32:\"19f637242cfefff6d926a4f0ac1dfac5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e00092c9698be762f5cb8a53fb3e008d\";a:5:{s:6:\"source\";s:32:\"e00092c9698be762f5cb8a53fb3e008d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2afd802d4c4fe1882533142a51c16309\";a:5:{s:6:\"source\";s:32:\"2afd802d4c4fe1882533142a51c16309\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"24517d25da494b04745ed43402a1a4a5\";a:5:{s:6:\"source\";s:32:\"24517d25da494b04745ed43402a1a4a5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"66480f5ecbb26f013a91a77c68c505cd\";a:5:{s:6:\"source\";s:32:\"66480f5ecbb26f013a91a77c68c505cd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5706ae36678faba4c40ee9b1658bd331\";a:5:{s:6:\"source\";s:32:\"5706ae36678faba4c40ee9b1658bd331\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b585487cf825a7930b7c95bab279722d\";a:5:{s:6:\"source\";s:32:\"b585487cf825a7930b7c95bab279722d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4c328914d1521d4b642f8f79e592c0c0\";a:5:{s:6:\"source\";s:32:\"4c328914d1521d4b642f8f79e592c0c0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d120b23dc781299c98eb7d3bbf1de796\";a:5:{s:6:\"source\";s:32:\"d120b23dc781299c98eb7d3bbf1de796\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5a433a16a1b60aa65f198422a35170b7\";a:5:{s:6:\"source\";s:32:\"5a433a16a1b60aa65f198422a35170b7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fa76824341283953447009c3d1bd2493\";a:5:{s:6:\"source\";s:32:\"fa76824341283953447009c3d1bd2493\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3fb99272c225af6045cfd45c704201ce\";a:5:{s:6:\"source\";s:32:\"3fb99272c225af6045cfd45c704201ce\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"71c70c332b2ac11f622410bb74ec2514\";a:5:{s:6:\"source\";s:32:\"71c70c332b2ac11f622410bb74ec2514\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"906e5af2964b36051eaac62b6f9dfb7a\";a:5:{s:6:\"source\";s:32:\"906e5af2964b36051eaac62b6f9dfb7a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"147a3387844540ebfcdc5aa7dc6cffc7\";a:5:{s:6:\"source\";s:32:\"147a3387844540ebfcdc5aa7dc6cffc7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"44b2b9f9bc4af719f498a4e29c9e8568\";a:5:{s:6:\"source\";s:32:\"44b2b9f9bc4af719f498a4e29c9e8568\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4fcc63793015063adee18ed331a241ec\";a:5:{s:6:\"source\";s:32:\"4fcc63793015063adee18ed331a241ec\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7bd779da137c5368bf4b8fb40871ba17\";a:5:{s:6:\"source\";s:32:\"7bd779da137c5368bf4b8fb40871ba17\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f600bf641573278c07c74c54279bc94a\";a:5:{s:6:\"source\";s:32:\"f600bf641573278c07c74c54279bc94a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0d44635d48faf5f06836f7033b46c342\";a:5:{s:6:\"source\";s:32:\"0d44635d48faf5f06836f7033b46c342\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a4b45b39ad03d8a898cb0b5ec40b1ca9\";a:5:{s:6:\"source\";s:32:\"a4b45b39ad03d8a898cb0b5ec40b1ca9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"11a3285ab1eeecb125ff47da5c693bcd\";a:5:{s:6:\"source\";s:32:\"11a3285ab1eeecb125ff47da5c693bcd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c0a2cd414a3d8fc751b688c2d559ff19\";a:5:{s:6:\"source\";s:32:\"c0a2cd414a3d8fc751b688c2d559ff19\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e6bfb66035081011b2636770577fc187\";a:5:{s:6:\"source\";s:32:\"e6bfb66035081011b2636770577fc187\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3fa8acd71d1a39c7283023c8e424c9cd\";a:5:{s:6:\"source\";s:32:\"3fa8acd71d1a39c7283023c8e424c9cd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"214c6cbd7e4d44d1d8b0e52e88567e9d\";a:5:{s:6:\"source\";s:32:\"214c6cbd7e4d44d1d8b0e52e88567e9d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"306bfaf1619b414b4d9be80e54c6705c\";a:5:{s:6:\"source\";s:32:\"306bfaf1619b414b4d9be80e54c6705c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c4343968b752b1c16911bd3adb065980\";a:5:{s:6:\"source\";s:32:\"c4343968b752b1c16911bd3adb065980\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"513d5fe7d5447668e0303d5ad4b5ed6f\";a:5:{s:6:\"source\";s:32:\"513d5fe7d5447668e0303d5ad4b5ed6f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"02a72262c466b0b49873a8beb4ea22ce\";a:5:{s:6:\"source\";s:32:\"02a72262c466b0b49873a8beb4ea22ce\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"93a35483369b8801849c8cdef72a9ae0\";a:5:{s:6:\"source\";s:32:\"93a35483369b8801849c8cdef72a9ae0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5008d380352bae6918017f00c4561018\";a:5:{s:6:\"source\";s:32:\"5008d380352bae6918017f00c4561018\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ee7314cd760637d0546151f4696ffc70\";a:5:{s:6:\"source\";s:32:\"ee7314cd760637d0546151f4696ffc70\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c38db7b3823596bf233796305225c190\";a:5:{s:6:\"source\";s:32:\"c38db7b3823596bf233796305225c190\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d1bfb4b1b4964acda1ae3cbae900b604\";a:5:{s:6:\"source\";s:32:\"d1bfb4b1b4964acda1ae3cbae900b604\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bad73e61eecd206766f23705efe9dd65\";a:5:{s:6:\"source\";s:32:\"bad73e61eecd206766f23705efe9dd65\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ffe813c07bcb937176945accd1499685\";a:5:{s:6:\"source\";s:32:\"ffe813c07bcb937176945accd1499685\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cbe279f64fdf0b0300a3ba803d3d3534\";a:5:{s:6:\"source\";s:32:\"cbe279f64fdf0b0300a3ba803d3d3534\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"144f8d8e9c93bf8d69e5b6611abce119\";a:5:{s:6:\"source\";s:32:\"144f8d8e9c93bf8d69e5b6611abce119\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b5ad447086f31606cd1d0c1117cd0a85\";a:5:{s:6:\"source\";s:32:\"b5ad447086f31606cd1d0c1117cd0a85\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cd31e4d9ed8018f4895dc0ccaee3d12f\";a:5:{s:6:\"source\";s:32:\"cd31e4d9ed8018f4895dc0ccaee3d12f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"51ad91b67e6c7d3f38544474f39c7495\";a:5:{s:6:\"source\";s:32:\"51ad91b67e6c7d3f38544474f39c7495\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b56c7710197b8e42e4ce555bada688f9\";a:5:{s:6:\"source\";s:32:\"b56c7710197b8e42e4ce555bada688f9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a99b40a32b8efecf74b2d190a2b1e576\";a:5:{s:6:\"source\";s:32:\"a99b40a32b8efecf74b2d190a2b1e576\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3ec0be4f329fad7f685b1cc009601848\";a:5:{s:6:\"source\";s:32:\"3ec0be4f329fad7f685b1cc009601848\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7b9680164aaf1f44fc796eca978b399e\";a:5:{s:6:\"source\";s:32:\"7b9680164aaf1f44fc796eca978b399e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"12eb37dfeb6212e5822da4f1704a7d31\";a:5:{s:6:\"source\";s:32:\"12eb37dfeb6212e5822da4f1704a7d31\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d36b7d9ebed34a3346b9bf6dbc41531e\";a:5:{s:6:\"source\";s:32:\"d36b7d9ebed34a3346b9bf6dbc41531e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f4127d0f0f1155f568b2d76240d08940\";a:5:{s:6:\"source\";s:32:\"f4127d0f0f1155f568b2d76240d08940\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"996114da990c52f8cbe1b8c207ada3c5\";a:5:{s:6:\"source\";s:32:\"996114da990c52f8cbe1b8c207ada3c5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9847663c6e2e906a280d0b157306dead\";a:5:{s:6:\"source\";s:32:\"9847663c6e2e906a280d0b157306dead\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8b789a07cbf62b976cd80e29f1d9da7e\";a:5:{s:6:\"source\";s:32:\"8b789a07cbf62b976cd80e29f1d9da7e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"943e438580e0024fc637b3436be85999\";a:5:{s:6:\"source\";s:32:\"943e438580e0024fc637b3436be85999\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5ae57da9a35a136266d70139d0e43e18\";a:5:{s:6:\"source\";s:32:\"5ae57da9a35a136266d70139d0e43e18\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3e8354b03416a90e0a87bf9dc2be6bd0\";a:5:{s:6:\"source\";s:32:\"3e8354b03416a90e0a87bf9dc2be6bd0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8121ce8643eb25be1775de48a9596e11\";a:5:{s:6:\"source\";s:32:\"8121ce8643eb25be1775de48a9596e11\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"389393907c09c3dc2d84894a98796e5d\";a:5:{s:6:\"source\";s:32:\"389393907c09c3dc2d84894a98796e5d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"419e0853caa6137df87a730e67a12e1d\";a:5:{s:6:\"source\";s:32:\"419e0853caa6137df87a730e67a12e1d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ebd90dcbfc0e0b89ced818a1997f653b\";a:5:{s:6:\"source\";s:32:\"ebd90dcbfc0e0b89ced818a1997f653b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c5d03a942ee6bf5a43e79820b3f68bfe\";a:5:{s:6:\"source\";s:32:\"c5d03a942ee6bf5a43e79820b3f68bfe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6acdd57124a477c6c49781a7f87e643d\";a:5:{s:6:\"source\";s:32:\"6acdd57124a477c6c49781a7f87e643d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3045c7e6ce79d9226bfbb4e4b86b3421\";a:5:{s:6:\"source\";s:32:\"3045c7e6ce79d9226bfbb4e4b86b3421\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"528f9bbce005206be24a5674b8d472dc\";a:5:{s:6:\"source\";s:32:\"528f9bbce005206be24a5674b8d472dc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f88cb80b1a287e23fb4cd075036c09d5\";a:5:{s:6:\"source\";s:32:\"f88cb80b1a287e23fb4cd075036c09d5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7ae32a2de261f9b907e48cf37ff9b29c\";a:5:{s:6:\"source\";s:32:\"7ae32a2de261f9b907e48cf37ff9b29c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"266b09079f2d3b045f13298a164a537d\";a:5:{s:6:\"source\";s:32:\"266b09079f2d3b045f13298a164a537d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"75281f5bda22502c24f099fc0c3f73c2\";a:5:{s:6:\"source\";s:32:\"75281f5bda22502c24f099fc0c3f73c2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bcd971c212933c2729feb9526bca288c\";a:5:{s:6:\"source\";s:32:\"bcd971c212933c2729feb9526bca288c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9ea78748da360b966fcb6eedc6220329\";a:5:{s:6:\"source\";s:32:\"9ea78748da360b966fcb6eedc6220329\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5e6d46c0d6cdfb6b8e6d246a1cf685c2\";a:5:{s:6:\"source\";s:32:\"5e6d46c0d6cdfb6b8e6d246a1cf685c2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0043e2361e02a3b9e4966fe0c48bc021\";a:5:{s:6:\"source\";s:32:\"0043e2361e02a3b9e4966fe0c48bc021\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"41112d9f6ce08f3e49474b092763a818\";a:5:{s:6:\"source\";s:32:\"41112d9f6ce08f3e49474b092763a818\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"01dc5e3ee8313b23b265048d5f388c43\";a:5:{s:6:\"source\";s:32:\"01dc5e3ee8313b23b265048d5f388c43\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c06ff789d2821a46e5b9a2feb5670cd\";a:5:{s:6:\"source\";s:32:\"2c06ff789d2821a46e5b9a2feb5670cd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"854119006671c474345e6679c8967918\";a:5:{s:6:\"source\";s:32:\"854119006671c474345e6679c8967918\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d2cb7deae1af5ba9b8346e6212135fc5\";a:5:{s:6:\"source\";s:32:\"d2cb7deae1af5ba9b8346e6212135fc5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7d6e78652383ccb1501bf2ca31b80ba9\";a:5:{s:6:\"source\";s:32:\"7d6e78652383ccb1501bf2ca31b80ba9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a3f587243bdd81bf9354943f475acfe7\";a:5:{s:6:\"source\";s:32:\"a3f587243bdd81bf9354943f475acfe7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"db27302bf13ce29396138dcc977079c3\";a:5:{s:6:\"source\";s:32:\"db27302bf13ce29396138dcc977079c3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"74d5b93e161022d7470e623368b834da\";a:5:{s:6:\"source\";s:32:\"74d5b93e161022d7470e623368b834da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6b5b35d9aceaf7696e4245d0251952f3\";a:5:{s:6:\"source\";s:32:\"6b5b35d9aceaf7696e4245d0251952f3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3722f28a69ecb66ecc8d9f6fc317ae45\";a:5:{s:6:\"source\";s:32:\"3722f28a69ecb66ecc8d9f6fc317ae45\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"26201ec74b383a279974862141f1de05\";a:5:{s:6:\"source\";s:32:\"26201ec74b383a279974862141f1de05\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ccde03e746ce4065f07290ddb8b81ead\";a:5:{s:6:\"source\";s:32:\"ccde03e746ce4065f07290ddb8b81ead\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5cfefed39e6b04acd040110137e1c5b6\";a:5:{s:6:\"source\";s:32:\"5cfefed39e6b04acd040110137e1c5b6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3ad0a240962f6278a29db3ac9e3492fd\";a:5:{s:6:\"source\";s:32:\"3ad0a240962f6278a29db3ac9e3492fd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7993d76e5e5f44fdcb08a09f3e533337\";a:5:{s:6:\"source\";s:32:\"7993d76e5e5f44fdcb08a09f3e533337\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e430d00a26aafff95cbc648a3e93b34e\";a:5:{s:6:\"source\";s:32:\"e430d00a26aafff95cbc648a3e93b34e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e3b402254834940f36832e60dd67a31e\";a:5:{s:6:\"source\";s:32:\"e3b402254834940f36832e60dd67a31e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0e8114ff0d5412d90866eb3f38a7701c\";a:5:{s:6:\"source\";s:32:\"0e8114ff0d5412d90866eb3f38a7701c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f04d52c9d3eef2f9968a016f4627b970\";a:5:{s:6:\"source\";s:32:\"f04d52c9d3eef2f9968a016f4627b970\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2652d783853c26dc82487710111603fc\";a:5:{s:6:\"source\";s:32:\"2652d783853c26dc82487710111603fc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d0cb82db33e3b92b87627186f7b75b51\";a:5:{s:6:\"source\";s:32:\"d0cb82db33e3b92b87627186f7b75b51\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8db9b2982508848b4185f85f8d573ddd\";a:5:{s:6:\"source\";s:32:\"8db9b2982508848b4185f85f8d573ddd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a3dabbd139f83e859f0474d59e43d079\";a:5:{s:6:\"source\";s:32:\"a3dabbd139f83e859f0474d59e43d079\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1fa55f06e1e8b67a28bc630473ec8292\";a:5:{s:6:\"source\";s:32:\"1fa55f06e1e8b67a28bc630473ec8292\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"05b4df0855b1366480a5d4ad8560fbe7\";a:5:{s:6:\"source\";s:32:\"05b4df0855b1366480a5d4ad8560fbe7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"47b3d83529e6463274ff977ac3ea02de\";a:5:{s:6:\"source\";s:32:\"47b3d83529e6463274ff977ac3ea02de\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0874b2e3a0753544cb00d2e1b8c691fc\";a:5:{s:6:\"source\";s:32:\"0874b2e3a0753544cb00d2e1b8c691fc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"390873d81c16489c08568d8ec15a44a6\";a:5:{s:6:\"source\";s:32:\"390873d81c16489c08568d8ec15a44a6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9ccbf7b2a3d4fdcd3e661eb1386460b3\";a:5:{s:6:\"source\";s:32:\"9ccbf7b2a3d4fdcd3e661eb1386460b3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cdc130493e5c9a4a61d10de8843385db\";a:5:{s:6:\"source\";s:32:\"cdc130493e5c9a4a61d10de8843385db\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"666b2517682d582ab95436ef29ec9198\";a:5:{s:6:\"source\";s:32:\"666b2517682d582ab95436ef29ec9198\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"76a6c2c736577c9cd6733242789e402f\";a:5:{s:6:\"source\";s:32:\"76a6c2c736577c9cd6733242789e402f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"312c8b324f95d6db9eaae9bbcaa2d927\";a:5:{s:6:\"source\";s:32:\"312c8b324f95d6db9eaae9bbcaa2d927\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"284ed58f233b5ebf12d6d73d4f42e96c\";a:5:{s:6:\"source\";s:32:\"284ed58f233b5ebf12d6d73d4f42e96c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"43e9c7b62e1340a5675e1a3ea7777f42\";a:5:{s:6:\"source\";s:32:\"43e9c7b62e1340a5675e1a3ea7777f42\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"091f4919df73bb7becf5892d2cdd12e4\";a:5:{s:6:\"source\";s:32:\"091f4919df73bb7becf5892d2cdd12e4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8c6bda8406fbb27d013db8e895007944\";a:5:{s:6:\"source\";s:32:\"8c6bda8406fbb27d013db8e895007944\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fe761a15cb65def35c87a627dbe6c105\";a:5:{s:6:\"source\";s:32:\"fe761a15cb65def35c87a627dbe6c105\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7b83113fc95c485a8e239f92ba7b98f0\";a:5:{s:6:\"source\";s:32:\"7b83113fc95c485a8e239f92ba7b98f0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bfbf4b31abbb64f5c94c9e5c7616ae1b\";a:5:{s:6:\"source\";s:32:\"bfbf4b31abbb64f5c94c9e5c7616ae1b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c3dc8398bbdcca6730963dbd12ecdf3\";a:5:{s:6:\"source\";s:32:\"3c3dc8398bbdcca6730963dbd12ecdf3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c5e54bcf40d9e8f61bb86775d405d9ee\";a:5:{s:6:\"source\";s:32:\"c5e54bcf40d9e8f61bb86775d405d9ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f77531db4dcfbdf950862a8959adeaf\";a:5:{s:6:\"source\";s:32:\"7f77531db4dcfbdf950862a8959adeaf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"94f585ee07b29c942f2d2a1e9c3a7ced\";a:5:{s:6:\"source\";s:32:\"94f585ee07b29c942f2d2a1e9c3a7ced\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff3c3844358c97a898be739266af27be\";a:5:{s:6:\"source\";s:32:\"ff3c3844358c97a898be739266af27be\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c3812a4fdde5d3f460b1793b07027c22\";a:5:{s:6:\"source\";s:32:\"c3812a4fdde5d3f460b1793b07027c22\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b5128ff4b2a933a1a95466ee3544b7d1\";a:5:{s:6:\"source\";s:32:\"b5128ff4b2a933a1a95466ee3544b7d1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3079b241bb8f148233fe4a01257c9384\";a:5:{s:6:\"source\";s:32:\"3079b241bb8f148233fe4a01257c9384\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cb21c7b0b352a3c86d18de43569ec872\";a:5:{s:6:\"source\";s:32:\"cb21c7b0b352a3c86d18de43569ec872\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1e51863555a5e561f5d72f9a0714c442\";a:5:{s:6:\"source\";s:32:\"1e51863555a5e561f5d72f9a0714c442\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"684a00dd70c66a7edcf58357aa0829b7\";a:5:{s:6:\"source\";s:32:\"684a00dd70c66a7edcf58357aa0829b7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d22ef776c88a793214ff277d718561cc\";a:5:{s:6:\"source\";s:32:\"d22ef776c88a793214ff277d718561cc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"50414621395052f1b366ba8f873b8ec4\";a:5:{s:6:\"source\";s:32:\"50414621395052f1b366ba8f873b8ec4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c0d9ba68a269f1337e9621b608f44bcc\";a:5:{s:6:\"source\";s:32:\"c0d9ba68a269f1337e9621b608f44bcc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d6fc52daca98733074a5e735fb2d4a80\";a:5:{s:6:\"source\";s:32:\"d6fc52daca98733074a5e735fb2d4a80\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"54aacb55c50d4b90ea2ba4ab69549077\";a:5:{s:6:\"source\";s:32:\"54aacb55c50d4b90ea2ba4ab69549077\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ddd5a1ebaa2c0a4afb30ccc21bdfa468\";a:5:{s:6:\"source\";s:32:\"ddd5a1ebaa2c0a4afb30ccc21bdfa468\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"23a72dd9345b0138fc145a4e4eace019\";a:5:{s:6:\"source\";s:32:\"23a72dd9345b0138fc145a4e4eace019\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6c8f477fcda4f296602dd5a04571b98c\";a:5:{s:6:\"source\";s:32:\"6c8f477fcda4f296602dd5a04571b98c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e858b4bcd090bb1dc90f5b1d55811829\";a:5:{s:6:\"source\";s:32:\"e858b4bcd090bb1dc90f5b1d55811829\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"63a7f6989155eef0947c40d94c4514a0\";a:5:{s:6:\"source\";s:32:\"63a7f6989155eef0947c40d94c4514a0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ab4131de428fc0bb0eeea6ead1efcdc6\";a:5:{s:6:\"source\";s:32:\"ab4131de428fc0bb0eeea6ead1efcdc6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cb07ac8835711c2fbf8e300162df05ef\";a:5:{s:6:\"source\";s:32:\"cb07ac8835711c2fbf8e300162df05ef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cf50fe096b829c2e49c33b72b64c9b1c\";a:5:{s:6:\"source\";s:32:\"cf50fe096b829c2e49c33b72b64c9b1c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7d158b0726fcf11c4a14332f6dc55c6c\";a:5:{s:6:\"source\";s:32:\"7d158b0726fcf11c4a14332f6dc55c6c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8950c7908b6fc0e86bed646add57e38d\";a:5:{s:6:\"source\";s:32:\"8950c7908b6fc0e86bed646add57e38d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"54181873a52e2023b13f3cda4df38e4d\";a:5:{s:6:\"source\";s:32:\"54181873a52e2023b13f3cda4df38e4d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1aef2504d4225efecb35fa64cdc8a4f2\";a:5:{s:6:\"source\";s:32:\"1aef2504d4225efecb35fa64cdc8a4f2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"240818ee64d8736dc6b46a900c6b33f7\";a:5:{s:6:\"source\";s:32:\"240818ee64d8736dc6b46a900c6b33f7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"749e123a82bc799aa9e70862b8216d28\";a:5:{s:6:\"source\";s:32:\"749e123a82bc799aa9e70862b8216d28\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e53295a9443117a938640ef207ac4242\";a:5:{s:6:\"source\";s:32:\"e53295a9443117a938640ef207ac4242\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"59e5a28e694ca0f3a5772b8e4fc1e02d\";a:5:{s:6:\"source\";s:32:\"59e5a28e694ca0f3a5772b8e4fc1e02d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"55e1a22e0c0eaced02fda0606985a019\";a:5:{s:6:\"source\";s:32:\"55e1a22e0c0eaced02fda0606985a019\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"02a2bd94d9ad8fecc06ec4847b327fd5\";a:5:{s:6:\"source\";s:32:\"02a2bd94d9ad8fecc06ec4847b327fd5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"34dbfe6dc8e2fca43b2ef3bb6f587988\";a:5:{s:6:\"source\";s:32:\"34dbfe6dc8e2fca43b2ef3bb6f587988\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"09b296c533737d6c290412457b7d601f\";a:5:{s:6:\"source\";s:32:\"09b296c533737d6c290412457b7d601f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f4386fe92d7c7c0a82fe33c7d07dcffb\";a:5:{s:6:\"source\";s:32:\"f4386fe92d7c7c0a82fe33c7d07dcffb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4a3eb78eeabbd2be8cfa757b5089ba17\";a:5:{s:6:\"source\";s:32:\"4a3eb78eeabbd2be8cfa757b5089ba17\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e86d277a07ce8e4509d3498be85a226d\";a:5:{s:6:\"source\";s:32:\"e86d277a07ce8e4509d3498be85a226d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8f4800120e3ddc2b85cff45ee8306c28\";a:5:{s:6:\"source\";s:32:\"8f4800120e3ddc2b85cff45ee8306c28\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ae0a618e284b224ca09ebe5b1c841447\";a:5:{s:6:\"source\";s:32:\"ae0a618e284b224ca09ebe5b1c841447\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9b731992b03a8043cd33b6a5fb49ed81\";a:5:{s:6:\"source\";s:32:\"9b731992b03a8043cd33b6a5fb49ed81\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"592e04e496686b6e1bdd261bb06bff6b\";a:5:{s:6:\"source\";s:32:\"592e04e496686b6e1bdd261bb06bff6b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"969001912618a42ee157c6ed14a1bb94\";a:5:{s:6:\"source\";s:32:\"969001912618a42ee157c6ed14a1bb94\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"424e7899a2f8c8fb52dd9d0f16fb61f2\";a:5:{s:6:\"source\";s:32:\"424e7899a2f8c8fb52dd9d0f16fb61f2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ea8547a6d365da6b7f35ec7248eade48\";a:5:{s:6:\"source\";s:32:\"ea8547a6d365da6b7f35ec7248eade48\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c0e1416e62694830d6d973d538e21ba7\";a:5:{s:6:\"source\";s:32:\"c0e1416e62694830d6d973d538e21ba7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b34b72da26ff807be99b0a98542962e3\";a:5:{s:6:\"source\";s:32:\"b34b72da26ff807be99b0a98542962e3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"930ebdb81dad61ceac486bc5152c7fc4\";a:5:{s:6:\"source\";s:32:\"930ebdb81dad61ceac486bc5152c7fc4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e2236071dad295e19c0792cdde484e51\";a:5:{s:6:\"source\";s:32:\"e2236071dad295e19c0792cdde484e51\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e7bb7a45f3f7e6cc1b95b61c21fc781c\";a:5:{s:6:\"source\";s:32:\"e7bb7a45f3f7e6cc1b95b61c21fc781c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f0e716370bdd75e5b559f88bc21f2e2f\";a:5:{s:6:\"source\";s:32:\"f0e716370bdd75e5b559f88bc21f2e2f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c4f2d2a388f13f733f34837129678342\";a:5:{s:6:\"source\";s:32:\"c4f2d2a388f13f733f34837129678342\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a6a4fee270a935477c28ddbb39f4192a\";a:5:{s:6:\"source\";s:32:\"a6a4fee270a935477c28ddbb39f4192a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4480ab39225e48ed1dc079e3990c3f6e\";a:5:{s:6:\"source\";s:32:\"4480ab39225e48ed1dc079e3990c3f6e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a6b602a700f3e6f7e14d32fe9a4c6cef\";a:5:{s:6:\"source\";s:32:\"a6b602a700f3e6f7e14d32fe9a4c6cef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0c4a9ee90af5b57cbd79187d2fa053b4\";a:5:{s:6:\"source\";s:32:\"0c4a9ee90af5b57cbd79187d2fa053b4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"796b690d9e4f4922ed3d49bec7ba44c9\";a:5:{s:6:\"source\";s:32:\"796b690d9e4f4922ed3d49bec7ba44c9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"77224adf484d57bf5b7455c522c6f9c3\";a:5:{s:6:\"source\";s:32:\"77224adf484d57bf5b7455c522c6f9c3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b29d9c845d048cfcbe390de9ba896bb2\";a:5:{s:6:\"source\";s:32:\"b29d9c845d048cfcbe390de9ba896bb2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6eab34958512b731bf4e9e2a1c3e422a\";a:5:{s:6:\"source\";s:32:\"6eab34958512b731bf4e9e2a1c3e422a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bf1a0b5f225eb369f54d8c5423cb0274\";a:5:{s:6:\"source\";s:32:\"bf1a0b5f225eb369f54d8c5423cb0274\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1248dd0a8db76ee6888c5c82b42ec6d3\";a:5:{s:6:\"source\";s:32:\"1248dd0a8db76ee6888c5c82b42ec6d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"31b09a68140e7d8e13060843dea83b42\";a:5:{s:6:\"source\";s:32:\"31b09a68140e7d8e13060843dea83b42\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4ba350098a4a0d4f1508edc7554834dc\";a:5:{s:6:\"source\";s:32:\"4ba350098a4a0d4f1508edc7554834dc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5170dce9bea8848bd056ade10a0fd3a1\";a:5:{s:6:\"source\";s:32:\"5170dce9bea8848bd056ade10a0fd3a1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"98aeb7b3769202f1c7dd1e0dcfd67060\";a:5:{s:6:\"source\";s:32:\"98aeb7b3769202f1c7dd1e0dcfd67060\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6532fdfede59384909d04a7a6270244d\";a:5:{s:6:\"source\";s:32:\"6532fdfede59384909d04a7a6270244d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f1a8cc83dc91006011e92a096a98edc\";a:5:{s:6:\"source\";s:32:\"7f1a8cc83dc91006011e92a096a98edc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5da4a48bc44df95089d588bad7b25313\";a:5:{s:6:\"source\";s:32:\"5da4a48bc44df95089d588bad7b25313\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"51eada9befd2eaed992a8910dcef6372\";a:5:{s:6:\"source\";s:32:\"51eada9befd2eaed992a8910dcef6372\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d401c3c781dafde1704f66f48e3f9d3e\";a:5:{s:6:\"source\";s:32:\"d401c3c781dafde1704f66f48e3f9d3e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9a508b6c3338eb5c9617596b07ac352e\";a:5:{s:6:\"source\";s:32:\"9a508b6c3338eb5c9617596b07ac352e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9a065fd5540ad8134e1980646b4a5ca2\";a:5:{s:6:\"source\";s:32:\"9a065fd5540ad8134e1980646b4a5ca2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7a94e81f26b109cd8b1e790f4d2a8c2f\";a:5:{s:6:\"source\";s:32:\"7a94e81f26b109cd8b1e790f4d2a8c2f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4c28a325a2a491fe42a18011606d656f\";a:5:{s:6:\"source\";s:32:\"4c28a325a2a491fe42a18011606d656f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c2b54a4db3d35a003bf6f52e0ea19237\";a:5:{s:6:\"source\";s:32:\"c2b54a4db3d35a003bf6f52e0ea19237\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"959c74a91bbdf495949263b632366fbf\";a:5:{s:6:\"source\";s:32:\"959c74a91bbdf495949263b632366fbf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d09122b484d2db8cf401efb60b217054\";a:5:{s:6:\"source\";s:32:\"d09122b484d2db8cf401efb60b217054\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ef92afe7b7f6c97ef4bdb36b84323f1\";a:5:{s:6:\"source\";s:32:\"8ef92afe7b7f6c97ef4bdb36b84323f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0ff46cf40ccc838547fd3d2297b8e6e6\";a:5:{s:6:\"source\";s:32:\"0ff46cf40ccc838547fd3d2297b8e6e6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"255fd9e1fced87b7e550c59fae42b3c7\";a:5:{s:6:\"source\";s:32:\"255fd9e1fced87b7e550c59fae42b3c7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"84bf62b724ca1dc7850bcacbdd9193b9\";a:5:{s:6:\"source\";s:32:\"84bf62b724ca1dc7850bcacbdd9193b9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"af15c245305bb72770b31a490dba024d\";a:5:{s:6:\"source\";s:32:\"af15c245305bb72770b31a490dba024d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5cc243f98f2a59b26a3cbbffcaeae848\";a:5:{s:6:\"source\";s:32:\"5cc243f98f2a59b26a3cbbffcaeae848\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2700e8f23c9fa43f9de3d217d41734c3\";a:5:{s:6:\"source\";s:32:\"2700e8f23c9fa43f9de3d217d41734c3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1558968cea02602623887d4945b2b5dd\";a:5:{s:6:\"source\";s:32:\"1558968cea02602623887d4945b2b5dd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"baced4ac2bcf31a0b6faa661ef8e4a8b\";a:5:{s:6:\"source\";s:32:\"baced4ac2bcf31a0b6faa661ef8e4a8b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"41902b732a49814e4c09c225427d8312\";a:5:{s:6:\"source\";s:32:\"41902b732a49814e4c09c225427d8312\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"247eb6e9d8f19d3050ea0537029ddb4a\";a:5:{s:6:\"source\";s:32:\"247eb6e9d8f19d3050ea0537029ddb4a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7d71eac01a2338f1bc5c20871c5b741a\";a:5:{s:6:\"source\";s:32:\"7d71eac01a2338f1bc5c20871c5b741a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a3cdf6e87588dc9d09b15fd58b880fce\";a:5:{s:6:\"source\";s:32:\"a3cdf6e87588dc9d09b15fd58b880fce\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f93ad37492b7bd4bb79a328cdf5f9ad3\";a:5:{s:6:\"source\";s:32:\"f93ad37492b7bd4bb79a328cdf5f9ad3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"63f7e3588e7cd36199951a81c4236893\";a:5:{s:6:\"source\";s:32:\"63f7e3588e7cd36199951a81c4236893\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d605f84cb82db525d4928f9854767093\";a:5:{s:6:\"source\";s:32:\"d605f84cb82db525d4928f9854767093\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b032c8e0d1f779e28bbf4aa1cd4b0496\";a:5:{s:6:\"source\";s:32:\"b032c8e0d1f779e28bbf4aa1cd4b0496\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"85aece1f4f52ef281a171eff4c989505\";a:5:{s:6:\"source\";s:32:\"85aece1f4f52ef281a171eff4c989505\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c91a74148967050f643b245e123b5190\";a:5:{s:6:\"source\";s:32:\"c91a74148967050f643b245e123b5190\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"38f4fe096666a3e11f6ed30e9a072570\";a:5:{s:6:\"source\";s:32:\"38f4fe096666a3e11f6ed30e9a072570\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"527d7b7a684714de6b1b617e805d800b\";a:5:{s:6:\"source\";s:32:\"527d7b7a684714de6b1b617e805d800b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f10321aadbe0a25452a27d21c4d47d13\";a:5:{s:6:\"source\";s:32:\"f10321aadbe0a25452a27d21c4d47d13\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9dcd8a72bcf2a6285a144a6dbfacec6c\";a:5:{s:6:\"source\";s:32:\"9dcd8a72bcf2a6285a144a6dbfacec6c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"637880a39ddf2522e9a1fbd65eafca87\";a:5:{s:6:\"source\";s:32:\"637880a39ddf2522e9a1fbd65eafca87\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e97af304b00a2e0a0a35557e8a730582\";a:5:{s:6:\"source\";s:32:\"e97af304b00a2e0a0a35557e8a730582\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ac203947667a41ef8e44665fec5a93d\";a:5:{s:6:\"source\";s:32:\"8ac203947667a41ef8e44665fec5a93d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8557776acfd796a05eed278c794f02f8\";a:5:{s:6:\"source\";s:32:\"8557776acfd796a05eed278c794f02f8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3d2a51d89427217b9dfd48f9a69e1e93\";a:5:{s:6:\"source\";s:32:\"3d2a51d89427217b9dfd48f9a69e1e93\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"66358e147e6de03e0183dbce4585250a\";a:5:{s:6:\"source\";s:32:\"66358e147e6de03e0183dbce4585250a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"308c349e99b4fe8fa0f5e61684251122\";a:5:{s:6:\"source\";s:32:\"308c349e99b4fe8fa0f5e61684251122\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9b56cde6ed8cfea0bf76da86ae9909e0\";a:5:{s:6:\"source\";s:32:\"9b56cde6ed8cfea0bf76da86ae9909e0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bfbbcb64088a1b649481ec82d571fdf3\";a:5:{s:6:\"source\";s:32:\"bfbbcb64088a1b649481ec82d571fdf3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"11f7d347b462a753fed045cb2018e8f2\";a:5:{s:6:\"source\";s:32:\"11f7d347b462a753fed045cb2018e8f2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5379ca2d853da64a398facebbeada78c\";a:5:{s:6:\"source\";s:32:\"5379ca2d853da64a398facebbeada78c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bbe222cfc2c2a34608b50d48786f1574\";a:5:{s:6:\"source\";s:32:\"bbe222cfc2c2a34608b50d48786f1574\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"74d7ace95590ebfa92b2134bfd712302\";a:5:{s:6:\"source\";s:32:\"74d7ace95590ebfa92b2134bfd712302\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8f859905c511c82c1fd4f2ece8e436a2\";a:5:{s:6:\"source\";s:32:\"8f859905c511c82c1fd4f2ece8e436a2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"36031a8cdafa3a8d413e57f0957f0d7e\";a:5:{s:6:\"source\";s:32:\"36031a8cdafa3a8d413e57f0957f0d7e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f60e1c1cb539a38f130f88468b1ebd6d\";a:5:{s:6:\"source\";s:32:\"f60e1c1cb539a38f130f88468b1ebd6d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7573d492f833f61f02670dd6280e7f1b\";a:5:{s:6:\"source\";s:32:\"7573d492f833f61f02670dd6280e7f1b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3cd5bcb2747c493251a84ed5e7be9bb7\";a:5:{s:6:\"source\";s:32:\"3cd5bcb2747c493251a84ed5e7be9bb7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c7d1c59085f59bf923fc31658dda5187\";a:5:{s:6:\"source\";s:32:\"c7d1c59085f59bf923fc31658dda5187\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eb601001c825b8d76ac6cefcadc86b1c\";a:5:{s:6:\"source\";s:32:\"eb601001c825b8d76ac6cefcadc86b1c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ce7add3e546cd0cb1f345ca7c5dd994a\";a:5:{s:6:\"source\";s:32:\"ce7add3e546cd0cb1f345ca7c5dd994a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4297c697403c8de05c93c64120363227\";a:5:{s:6:\"source\";s:32:\"4297c697403c8de05c93c64120363227\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"31375740a95606b70aa07188bd2cd138\";a:5:{s:6:\"source\";s:32:\"31375740a95606b70aa07188bd2cd138\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff9208952b168fda065d401e8fce24e4\";a:5:{s:6:\"source\";s:32:\"ff9208952b168fda065d401e8fce24e4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8d4632e6b9b75c23c89cd71084151e1e\";a:5:{s:6:\"source\";s:32:\"8d4632e6b9b75c23c89cd71084151e1e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"36461a9999e5b9bbde3c1974266d59ad\";a:5:{s:6:\"source\";s:32:\"36461a9999e5b9bbde3c1974266d59ad\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2f6bbb2f53acbea6bd4948bbb44d3787\";a:5:{s:6:\"source\";s:32:\"2f6bbb2f53acbea6bd4948bbb44d3787\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"903f02e662a4a0ec113837f4681f7c34\";a:5:{s:6:\"source\";s:32:\"903f02e662a4a0ec113837f4681f7c34\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cea4206e3158c167b6746f94a99bc22e\";a:5:{s:6:\"source\";s:32:\"cea4206e3158c167b6746f94a99bc22e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c063a83b64c9adbb221fee3f47283246\";a:5:{s:6:\"source\";s:32:\"c063a83b64c9adbb221fee3f47283246\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d64e2efdf9e0914fbfcc450fb29a5c12\";a:5:{s:6:\"source\";s:32:\"d64e2efdf9e0914fbfcc450fb29a5c12\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"95dee1cdcf55c47a41abbbf9826ea256\";a:5:{s:6:\"source\";s:32:\"95dee1cdcf55c47a41abbbf9826ea256\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f848ff6c0a4b5e8d558ad7b8b96b7f5f\";a:5:{s:6:\"source\";s:32:\"f848ff6c0a4b5e8d558ad7b8b96b7f5f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"94282f3390dfe4bdfd9f0f742b57f5ff\";a:5:{s:6:\"source\";s:32:\"94282f3390dfe4bdfd9f0f742b57f5ff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ac4ecba6a30931e172b37312deb9a41d\";a:5:{s:6:\"source\";s:32:\"ac4ecba6a30931e172b37312deb9a41d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"67ce03e7a44efb56f8a7790462280839\";a:5:{s:6:\"source\";s:32:\"67ce03e7a44efb56f8a7790462280839\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b911bdd86c91c45a127a6d85be86cf7d\";a:5:{s:6:\"source\";s:32:\"b911bdd86c91c45a127a6d85be86cf7d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"abd6c33963c4d251f8bba4f0544209f3\";a:5:{s:6:\"source\";s:32:\"abd6c33963c4d251f8bba4f0544209f3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ab4611a19ee95438f4817d5e44af001e\";a:5:{s:6:\"source\";s:32:\"ab4611a19ee95438f4817d5e44af001e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4c294c4948b006a1bfe53a83e6482c6c\";a:5:{s:6:\"source\";s:32:\"4c294c4948b006a1bfe53a83e6482c6c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6dfea1f2d0c6f53d2d698b1adfb5446d\";a:5:{s:6:\"source\";s:32:\"6dfea1f2d0c6f53d2d698b1adfb5446d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"63a27733cb8e45aa62b215a7fab8118b\";a:5:{s:6:\"source\";s:32:\"63a27733cb8e45aa62b215a7fab8118b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a6e63b994d379e5f4780e09a8ff50041\";a:5:{s:6:\"source\";s:32:\"a6e63b994d379e5f4780e09a8ff50041\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d501d2e7175b24fed22a356e14852e40\";a:5:{s:6:\"source\";s:32:\"d501d2e7175b24fed22a356e14852e40\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5d637564687699f624df492f7a682625\";a:5:{s:6:\"source\";s:32:\"5d637564687699f624df492f7a682625\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a5b34526aaf053f5efd00b4b774461e4\";a:5:{s:6:\"source\";s:32:\"a5b34526aaf053f5efd00b4b774461e4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"75e7ad9a46cc9b057103ad7dbbfcf030\";a:5:{s:6:\"source\";s:32:\"75e7ad9a46cc9b057103ad7dbbfcf030\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"27a8bfac5fdb4ab19d401c0fee14a0be\";a:5:{s:6:\"source\";s:32:\"27a8bfac5fdb4ab19d401c0fee14a0be\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"324164ad3f1bf02ea2aa02f854451a53\";a:5:{s:6:\"source\";s:32:\"324164ad3f1bf02ea2aa02f854451a53\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c9259cfbe5a29256f02bd483be43d738\";a:5:{s:6:\"source\";s:32:\"c9259cfbe5a29256f02bd483be43d738\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b800652db3cbe36c9180bfc068c7663c\";a:5:{s:6:\"source\";s:32:\"b800652db3cbe36c9180bfc068c7663c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a8317c1d3196f295913ea21ea65b6c55\";a:5:{s:6:\"source\";s:32:\"a8317c1d3196f295913ea21ea65b6c55\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e15b27509796036ab8dfb44fdf60157d\";a:5:{s:6:\"source\";s:32:\"e15b27509796036ab8dfb44fdf60157d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8e3822f31911c9121d7c3d2b8dd9b839\";a:5:{s:6:\"source\";s:32:\"8e3822f31911c9121d7c3d2b8dd9b839\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6a28687be347aa7aaf26fcc4b73cc6a2\";a:5:{s:6:\"source\";s:32:\"6a28687be347aa7aaf26fcc4b73cc6a2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"38d781796a32f117c7767a0e62730cfe\";a:5:{s:6:\"source\";s:32:\"38d781796a32f117c7767a0e62730cfe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"17be4301398ae5a1ac8b8e86a670d8fb\";a:5:{s:6:\"source\";s:32:\"17be4301398ae5a1ac8b8e86a670d8fb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a5e120f45f268654d88b25429a8657ed\";a:5:{s:6:\"source\";s:32:\"a5e120f45f268654d88b25429a8657ed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c588a53261e4d3602a960dde4dd82b8b\";a:5:{s:6:\"source\";s:32:\"c588a53261e4d3602a960dde4dd82b8b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"15ceae583fd2537e33b5610083f4a81e\";a:5:{s:6:\"source\";s:32:\"15ceae583fd2537e33b5610083f4a81e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bc62847dd69c94c59fe0468088b0841d\";a:5:{s:6:\"source\";s:32:\"bc62847dd69c94c59fe0468088b0841d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d6c091980890a049a40861616b255e02\";a:5:{s:6:\"source\";s:32:\"d6c091980890a049a40861616b255e02\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7fa44817de147f18304b2e6b9300ac06\";a:5:{s:6:\"source\";s:32:\"7fa44817de147f18304b2e6b9300ac06\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0c7cdd8b7fd7489c9a181be87c9c97df\";a:5:{s:6:\"source\";s:32:\"0c7cdd8b7fd7489c9a181be87c9c97df\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"53a4cc9e890f3b2e99f63806abbd8e9b\";a:5:{s:6:\"source\";s:32:\"53a4cc9e890f3b2e99f63806abbd8e9b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dae2e1f63253d47c0db3db05fe0620a3\";a:5:{s:6:\"source\";s:32:\"dae2e1f63253d47c0db3db05fe0620a3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d35d1ec70683ae190fad3ce32ddc05d3\";a:5:{s:6:\"source\";s:32:\"d35d1ec70683ae190fad3ce32ddc05d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9077ac020d1965949d7b841833f07ecf\";a:5:{s:6:\"source\";s:32:\"9077ac020d1965949d7b841833f07ecf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a710f62e95e539dda1909e9399a09362\";a:5:{s:6:\"source\";s:32:\"a710f62e95e539dda1909e9399a09362\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"40c3deebe6292d2ce9d907412a2bec75\";a:5:{s:6:\"source\";s:32:\"40c3deebe6292d2ce9d907412a2bec75\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a325c76e43fe53fcacbab821079dafdf\";a:5:{s:6:\"source\";s:32:\"a325c76e43fe53fcacbab821079dafdf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"99e760a71da49bcc32fc9649693a0796\";a:5:{s:6:\"source\";s:32:\"99e760a71da49bcc32fc9649693a0796\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a1cc56932b14dbfa57a6f5f13d291100\";a:5:{s:6:\"source\";s:32:\"a1cc56932b14dbfa57a6f5f13d291100\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"66539e9c90e1002179b8e31a26b8c981\";a:5:{s:6:\"source\";s:32:\"66539e9c90e1002179b8e31a26b8c981\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"386147be5efccc51c974fbea3b1133d3\";a:5:{s:6:\"source\";s:32:\"386147be5efccc51c974fbea3b1133d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dfbc1c7f5c3220e9d3c3e47ab0843843\";a:5:{s:6:\"source\";s:32:\"dfbc1c7f5c3220e9d3c3e47ab0843843\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b0b7f7477593f09d27d7e46efc20cdc4\";a:5:{s:6:\"source\";s:32:\"b0b7f7477593f09d27d7e46efc20cdc4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4627c1ea4e4f8b903d5535de9f786f0c\";a:5:{s:6:\"source\";s:32:\"4627c1ea4e4f8b903d5535de9f786f0c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"60e131981d3beb2d0f441d821c24ace4\";a:5:{s:6:\"source\";s:32:\"60e131981d3beb2d0f441d821c24ace4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6a0b4dcc127254a0a278b82ae885dcbf\";a:5:{s:6:\"source\";s:32:\"6a0b4dcc127254a0a278b82ae885dcbf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"057d93dc1f1467b6ce9b9612686f533e\";a:5:{s:6:\"source\";s:32:\"057d93dc1f1467b6ce9b9612686f533e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a23db7d8ba18d1095cab4bb931bbd989\";a:5:{s:6:\"source\";s:32:\"a23db7d8ba18d1095cab4bb931bbd989\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"247ef023f00e0f18b88089771db77a38\";a:5:{s:6:\"source\";s:32:\"247ef023f00e0f18b88089771db77a38\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a05910ad23405aa230ebfa7a239e732\";a:5:{s:6:\"source\";s:32:\"8a05910ad23405aa230ebfa7a239e732\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"30f4f1e37587085abbb6654ce46adbc9\";a:5:{s:6:\"source\";s:32:\"30f4f1e37587085abbb6654ce46adbc9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4f3245d3b0fffa9753999d1ed0b20d4f\";a:5:{s:6:\"source\";s:32:\"4f3245d3b0fffa9753999d1ed0b20d4f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e19b55289a6ebe617d282155a85aebe4\";a:5:{s:6:\"source\";s:32:\"e19b55289a6ebe617d282155a85aebe4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"01bdc34dc2af389cabe72197f1595e21\";a:5:{s:6:\"source\";s:32:\"01bdc34dc2af389cabe72197f1595e21\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"faf4d85453a9d4bed84b02afbbd6c16c\";a:5:{s:6:\"source\";s:32:\"faf4d85453a9d4bed84b02afbbd6c16c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f300f092b4465f3460ac67f2468855ea\";a:5:{s:6:\"source\";s:32:\"f300f092b4465f3460ac67f2468855ea\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a5430080714251b0958aebd2a52a4efa\";a:5:{s:6:\"source\";s:32:\"a5430080714251b0958aebd2a52a4efa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6dd8545b22bd28b7e4b153350fa93536\";a:5:{s:6:\"source\";s:32:\"6dd8545b22bd28b7e4b153350fa93536\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"197a04fdbd49925f0ed7c8f0ad7490e1\";a:5:{s:6:\"source\";s:32:\"197a04fdbd49925f0ed7c8f0ad7490e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3caf6a1f0f220f631767f1254ba3907e\";a:5:{s:6:\"source\";s:32:\"3caf6a1f0f220f631767f1254ba3907e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ebb09d340cf47071f50435ec8317efec\";a:5:{s:6:\"source\";s:32:\"ebb09d340cf47071f50435ec8317efec\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aaee76bbaee049580a752cd997b9d87b\";a:5:{s:6:\"source\";s:32:\"aaee76bbaee049580a752cd997b9d87b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9f6c0deac7abef3ce2dd5e02731ffaa2\";a:5:{s:6:\"source\";s:32:\"9f6c0deac7abef3ce2dd5e02731ffaa2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c993227d012944de14a518e071adc9e1\";a:5:{s:6:\"source\";s:32:\"c993227d012944de14a518e071adc9e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b19cd846226feb66106c779c7b0aac2d\";a:5:{s:6:\"source\";s:32:\"b19cd846226feb66106c779c7b0aac2d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a1d4f78d0dd81e6293096da6225cc4ac\";a:5:{s:6:\"source\";s:32:\"a1d4f78d0dd81e6293096da6225cc4ac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"65f02bec79f893eb960aaebb6004b2a4\";a:5:{s:6:\"source\";s:32:\"65f02bec79f893eb960aaebb6004b2a4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"64d5ce851388169556744744bdae04dc\";a:5:{s:6:\"source\";s:32:\"64d5ce851388169556744744bdae04dc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e1e9459f55291868e2ff3ceff1a9ed0e\";a:5:{s:6:\"source\";s:32:\"e1e9459f55291868e2ff3ceff1a9ed0e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d292b182764fb764cd8ac9bf0d1d294\";a:5:{s:6:\"source\";s:32:\"4d292b182764fb764cd8ac9bf0d1d294\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cfaa0c034a01ae08f7170a18789bb589\";a:5:{s:6:\"source\";s:32:\"cfaa0c034a01ae08f7170a18789bb589\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"25c5d07be85058ae7948187f1d211d44\";a:5:{s:6:\"source\";s:32:\"25c5d07be85058ae7948187f1d211d44\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7fbcb6464f745c26ff60b08478ed98e0\";a:5:{s:6:\"source\";s:32:\"7fbcb6464f745c26ff60b08478ed98e0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"576616693f9243ade92d7a7adb3a4692\";a:5:{s:6:\"source\";s:32:\"576616693f9243ade92d7a7adb3a4692\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bd090c48e2c4e0d4190b4694cecfb36d\";a:5:{s:6:\"source\";s:32:\"bd090c48e2c4e0d4190b4694cecfb36d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eadbd383cae1287cf10165f7a067e63d\";a:5:{s:6:\"source\";s:32:\"eadbd383cae1287cf10165f7a067e63d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9fcb25e84731aae8b55a8838e1f4336e\";a:5:{s:6:\"source\";s:32:\"9fcb25e84731aae8b55a8838e1f4336e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"11afaec21c18c2043a0828d2db47c0fd\";a:5:{s:6:\"source\";s:32:\"11afaec21c18c2043a0828d2db47c0fd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d9bf09d37e757abfa785487a50be07b4\";a:5:{s:6:\"source\";s:32:\"d9bf09d37e757abfa785487a50be07b4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b2bc413e679a3dab15b96fc782d86705\";a:5:{s:6:\"source\";s:32:\"b2bc413e679a3dab15b96fc782d86705\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5055c7b0aefe46fa287bcec508ccef38\";a:5:{s:6:\"source\";s:32:\"5055c7b0aefe46fa287bcec508ccef38\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4cf0c79f5099fa2f735868ca997cf9d6\";a:5:{s:6:\"source\";s:32:\"4cf0c79f5099fa2f735868ca997cf9d6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"23e09657a351c40e8de2078e3406373c\";a:5:{s:6:\"source\";s:32:\"23e09657a351c40e8de2078e3406373c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"80305a87c30a363cd5cbc698ba220841\";a:5:{s:6:\"source\";s:32:\"80305a87c30a363cd5cbc698ba220841\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5b3cc662d39df7eb73d6377748a338e2\";a:5:{s:6:\"source\";s:32:\"5b3cc662d39df7eb73d6377748a338e2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"92369e12bef2398c20e00616b3aff834\";a:5:{s:6:\"source\";s:32:\"92369e12bef2398c20e00616b3aff834\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1a5d7525cb32fc7baaafcec7d24cc0fe\";a:5:{s:6:\"source\";s:32:\"1a5d7525cb32fc7baaafcec7d24cc0fe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a6426ae9faf7d972189c15b38846e193\";a:5:{s:6:\"source\";s:32:\"a6426ae9faf7d972189c15b38846e193\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c64a64235313c570609a196f405f8ede\";a:5:{s:6:\"source\";s:32:\"c64a64235313c570609a196f405f8ede\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3480b27a3d9200fd5bfb6721bff46a04\";a:5:{s:6:\"source\";s:32:\"3480b27a3d9200fd5bfb6721bff46a04\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c150f235b6fab793cc3934829409a30a\";a:5:{s:6:\"source\";s:32:\"c150f235b6fab793cc3934829409a30a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"587915d74c664b2f02875aff10ca4120\";a:5:{s:6:\"source\";s:32:\"587915d74c664b2f02875aff10ca4120\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"14a877b208527736f0a53bcc5082abc6\";a:5:{s:6:\"source\";s:32:\"14a877b208527736f0a53bcc5082abc6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4f94ce33e294de0a45cad4b9b855caad\";a:5:{s:6:\"source\";s:32:\"4f94ce33e294de0a45cad4b9b855caad\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5e2a58cfeabe2c46d6d2e064b3b9fd98\";a:5:{s:6:\"source\";s:32:\"5e2a58cfeabe2c46d6d2e064b3b9fd98\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e49f7ac8e4a6c9eb57eccb69363fcc2d\";a:5:{s:6:\"source\";s:32:\"e49f7ac8e4a6c9eb57eccb69363fcc2d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"012bf7ffbec20049eb4d5b54d6e5b387\";a:5:{s:6:\"source\";s:32:\"012bf7ffbec20049eb4d5b54d6e5b387\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6bc47b0cce093cfa73c7af8f23d23abc\";a:5:{s:6:\"source\";s:32:\"6bc47b0cce093cfa73c7af8f23d23abc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7673d669e0542dfeb6088406f200f8da\";a:5:{s:6:\"source\";s:32:\"7673d669e0542dfeb6088406f200f8da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"79f8a9ee41f4811ed39006e4ed0ee9e5\";a:5:{s:6:\"source\";s:32:\"79f8a9ee41f4811ed39006e4ed0ee9e5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c147306aa66954924b4742f15360b161\";a:5:{s:6:\"source\";s:32:\"c147306aa66954924b4742f15360b161\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1208a114e7ad7b24cf586cca96a7b510\";a:5:{s:6:\"source\";s:32:\"1208a114e7ad7b24cf586cca96a7b510\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"017c7a544251613de0334f1ae9316a29\";a:5:{s:6:\"source\";s:32:\"017c7a544251613de0334f1ae9316a29\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c54c52f813d32436ee3d54e60837cde\";a:5:{s:6:\"source\";s:32:\"3c54c52f813d32436ee3d54e60837cde\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a7295371ad988ba00a3339350d3f6391\";a:5:{s:6:\"source\";s:32:\"a7295371ad988ba00a3339350d3f6391\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"263c28795112c5be3859c645dd553c95\";a:5:{s:6:\"source\";s:32:\"263c28795112c5be3859c645dd553c95\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c822b177b9f4cdd4264c3e62b9885fc6\";a:5:{s:6:\"source\";s:32:\"c822b177b9f4cdd4264c3e62b9885fc6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7c9c09a8a530ef1bb47b8308d1b3053a\";a:5:{s:6:\"source\";s:32:\"7c9c09a8a530ef1bb47b8308d1b3053a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1b3f9b20be1de52cb61e20c6931e56be\";a:5:{s:6:\"source\";s:32:\"1b3f9b20be1de52cb61e20c6931e56be\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"98f99389a63a4b7535fb5dd4d51b4b6d\";a:5:{s:6:\"source\";s:32:\"98f99389a63a4b7535fb5dd4d51b4b6d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6f15f46c66fd9209ff0bfc45ba37ad26\";a:5:{s:6:\"source\";s:32:\"6f15f46c66fd9209ff0bfc45ba37ad26\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9f89370bacd92aeaba7396f5b5fcd59e\";a:5:{s:6:\"source\";s:32:\"9f89370bacd92aeaba7396f5b5fcd59e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e02e15d672acf9c0542e05a1b6cbac6c\";a:5:{s:6:\"source\";s:32:\"e02e15d672acf9c0542e05a1b6cbac6c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"43e0f4ed4b68515c8030c2364bcee1eb\";a:5:{s:6:\"source\";s:32:\"43e0f4ed4b68515c8030c2364bcee1eb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ced94aa9333d7df2f49e797f3ef3d2d0\";a:5:{s:6:\"source\";s:32:\"ced94aa9333d7df2f49e797f3ef3d2d0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a1f77b8413db63f3c8ad04f40f436fc5\";a:5:{s:6:\"source\";s:32:\"a1f77b8413db63f3c8ad04f40f436fc5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"331073f11f7d00d0437f073ab4173814\";a:5:{s:6:\"source\";s:32:\"331073f11f7d00d0437f073ab4173814\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dfaafeec5d411972ef530be25874cd74\";a:5:{s:6:\"source\";s:32:\"dfaafeec5d411972ef530be25874cd74\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e6d64eb6d048329dbb4d144d16f1f6dc\";a:5:{s:6:\"source\";s:32:\"e6d64eb6d048329dbb4d144d16f1f6dc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b6a3c03466dd1097c02417b37afbb23e\";a:5:{s:6:\"source\";s:32:\"b6a3c03466dd1097c02417b37afbb23e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"478ca9248a198dc28f023b308b8f8a4a\";a:5:{s:6:\"source\";s:32:\"478ca9248a198dc28f023b308b8f8a4a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"97fecd0f6986e33a50295ca45ab684c6\";a:5:{s:6:\"source\";s:32:\"97fecd0f6986e33a50295ca45ab684c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d418f81f2496f62ccc4061388548ca7d\";a:5:{s:6:\"source\";s:32:\"d418f81f2496f62ccc4061388548ca7d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c2a49e70adfaea688fe0244d6ed5e222\";a:5:{s:6:\"source\";s:32:\"c2a49e70adfaea688fe0244d6ed5e222\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"75d21996144a495827ee384b1e947b9a\";a:5:{s:6:\"source\";s:32:\"75d21996144a495827ee384b1e947b9a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c4f35e1a44c12f5cf984b59a31549e88\";a:5:{s:6:\"source\";s:32:\"c4f35e1a44c12f5cf984b59a31549e88\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aa30221a9d8e862acbabeb0dde20f487\";a:5:{s:6:\"source\";s:32:\"aa30221a9d8e862acbabeb0dde20f487\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"de429eb61fbe02a14ab97a50e1ae4cba\";a:5:{s:6:\"source\";s:32:\"de429eb61fbe02a14ab97a50e1ae4cba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0dd7e88db128e712b33d3db4a1247dde\";a:5:{s:6:\"source\";s:32:\"0dd7e88db128e712b33d3db4a1247dde\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ab4f00c95f46046908cd625261b0e935\";a:5:{s:6:\"source\";s:32:\"ab4f00c95f46046908cd625261b0e935\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1dc91098247af037a7e5646479230628\";a:5:{s:6:\"source\";s:32:\"1dc91098247af037a7e5646479230628\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2b5e5df9540e0b6b0137f34095c92085\";a:5:{s:6:\"source\";s:32:\"2b5e5df9540e0b6b0137f34095c92085\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dd8460f67ce76bae3051d845cfd191e8\";a:5:{s:6:\"source\";s:32:\"dd8460f67ce76bae3051d845cfd191e8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a3279256b00646cbd51b0143fc40065\";a:5:{s:6:\"source\";s:32:\"8a3279256b00646cbd51b0143fc40065\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"13e6181b55a1e4473a258758b28b9597\";a:5:{s:6:\"source\";s:32:\"13e6181b55a1e4473a258758b28b9597\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4777c5683e0410c4c674605316bf38c9\";a:5:{s:6:\"source\";s:32:\"4777c5683e0410c4c674605316bf38c9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ae9d03bce59e2037f3d093ab47378e03\";a:5:{s:6:\"source\";s:32:\"ae9d03bce59e2037f3d093ab47378e03\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4f2d8345f210679e5170fe1ed1df585f\";a:5:{s:6:\"source\";s:32:\"4f2d8345f210679e5170fe1ed1df585f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e3f53fccfa6b09998fd2c3502d544754\";a:5:{s:6:\"source\";s:32:\"e3f53fccfa6b09998fd2c3502d544754\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"392ba1940eca81bd74c7fb49d774c4fd\";a:5:{s:6:\"source\";s:32:\"392ba1940eca81bd74c7fb49d774c4fd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e6f6b4d7a209f9d54ab0af955d103104\";a:5:{s:6:\"source\";s:32:\"e6f6b4d7a209f9d54ab0af955d103104\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f34c822f63cfe4e5329eda573f90afec\";a:5:{s:6:\"source\";s:32:\"f34c822f63cfe4e5329eda573f90afec\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b8986ff5443da1cce7aab3c0c5a6798e\";a:5:{s:6:\"source\";s:32:\"b8986ff5443da1cce7aab3c0c5a6798e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9d24e685e763ec4cc3ae09e7283aca01\";a:5:{s:6:\"source\";s:32:\"9d24e685e763ec4cc3ae09e7283aca01\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ddc95ad77c735d7df8958504d2cab730\";a:5:{s:6:\"source\";s:32:\"ddc95ad77c735d7df8958504d2cab730\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d58e967b3191471eeb3b52e75bfadba4\";a:5:{s:6:\"source\";s:32:\"d58e967b3191471eeb3b52e75bfadba4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6da803bcbd5ab195fc62fb48e79c94da\";a:5:{s:6:\"source\";s:32:\"6da803bcbd5ab195fc62fb48e79c94da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c7a98f64db0896bf95fb1ec894df230e\";a:5:{s:6:\"source\";s:32:\"c7a98f64db0896bf95fb1ec894df230e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"24b4c03dcdfbd554062eb72d464a03aa\";a:5:{s:6:\"source\";s:32:\"24b4c03dcdfbd554062eb72d464a03aa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"98f12774af1a7568197e7d03b43d8b58\";a:5:{s:6:\"source\";s:32:\"98f12774af1a7568197e7d03b43d8b58\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3cee5353f946a02d8129d59d3ed5ffb9\";a:5:{s:6:\"source\";s:32:\"3cee5353f946a02d8129d59d3ed5ffb9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6cd739df23b3ef3c5326e1dc5b3daffa\";a:5:{s:6:\"source\";s:32:\"6cd739df23b3ef3c5326e1dc5b3daffa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4e6ba4117ae5d22d797544e2fad00302\";a:5:{s:6:\"source\";s:32:\"4e6ba4117ae5d22d797544e2fad00302\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d8a4a439eee8392ff16b8a99e0840387\";a:5:{s:6:\"source\";s:32:\"d8a4a439eee8392ff16b8a99e0840387\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"33672d51f54342fb6fa0eb285c12b64b\";a:5:{s:6:\"source\";s:32:\"33672d51f54342fb6fa0eb285c12b64b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cbd456a2bc45a55f3dd9877a6bb8087c\";a:5:{s:6:\"source\";s:32:\"cbd456a2bc45a55f3dd9877a6bb8087c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2447fad0001525bf078969e1078e7cd1\";a:5:{s:6:\"source\";s:32:\"2447fad0001525bf078969e1078e7cd1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d419020213f77653ef7fff09b1c96b05\";a:5:{s:6:\"source\";s:32:\"d419020213f77653ef7fff09b1c96b05\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"af9c26e42a45c85c27725da7a209e6ee\";a:5:{s:6:\"source\";s:32:\"af9c26e42a45c85c27725da7a209e6ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c68655b55bc8fd084f221adf3cda6d59\";a:5:{s:6:\"source\";s:32:\"c68655b55bc8fd084f221adf3cda6d59\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"98bb805fb6882aab65575eaa56b4b662\";a:5:{s:6:\"source\";s:32:\"98bb805fb6882aab65575eaa56b4b662\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d7ab4f0110a9189cecf727bb12c031ff\";a:5:{s:6:\"source\";s:32:\"d7ab4f0110a9189cecf727bb12c031ff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5c754c799074e4ae2c970b52b1c8f356\";a:5:{s:6:\"source\";s:32:\"5c754c799074e4ae2c970b52b1c8f356\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1007caefdd87b63fd5efd68b513a2a9e\";a:5:{s:6:\"source\";s:32:\"1007caefdd87b63fd5efd68b513a2a9e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"870f9e3f74acedeb62a866b197bef223\";a:5:{s:6:\"source\";s:32:\"870f9e3f74acedeb62a866b197bef223\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"56327b0602b9377015f10134e95cf8bc\";a:5:{s:6:\"source\";s:32:\"56327b0602b9377015f10134e95cf8bc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"85db561878a7592bb5e80097123b7ced\";a:5:{s:6:\"source\";s:32:\"85db561878a7592bb5e80097123b7ced\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4b425f9c5f3b99f7fafead6c06f92681\";a:5:{s:6:\"source\";s:32:\"4b425f9c5f3b99f7fafead6c06f92681\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8c568a3a6a0e983c46952eaf9f0061ae\";a:5:{s:6:\"source\";s:32:\"8c568a3a6a0e983c46952eaf9f0061ae\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1be3fb497c49e86cedacd1da08b1227f\";a:5:{s:6:\"source\";s:32:\"1be3fb497c49e86cedacd1da08b1227f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9e0d875ef9036168769fe23ef12ddff2\";a:5:{s:6:\"source\";s:32:\"9e0d875ef9036168769fe23ef12ddff2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e00494bc9e12401e8a315b7e17545c59\";a:5:{s:6:\"source\";s:32:\"e00494bc9e12401e8a315b7e17545c59\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d35d0d2ce2487298a0499114e38df0f1\";a:5:{s:6:\"source\";s:32:\"d35d0d2ce2487298a0499114e38df0f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"918ea4df635d1aac8a77a5d96b20e62a\";a:5:{s:6:\"source\";s:32:\"918ea4df635d1aac8a77a5d96b20e62a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ab409f1842e34ae3e44faa3d3eb6ae32\";a:5:{s:6:\"source\";s:32:\"ab409f1842e34ae3e44faa3d3eb6ae32\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e9dd25768ca9f3cd54da991c8389f739\";a:5:{s:6:\"source\";s:32:\"e9dd25768ca9f3cd54da991c8389f739\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a9a01df0551fa2de90f8188d9d04a9b1\";a:5:{s:6:\"source\";s:32:\"a9a01df0551fa2de90f8188d9d04a9b1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"95a81298d5be778fa41e198f18cc18a9\";a:5:{s:6:\"source\";s:32:\"95a81298d5be778fa41e198f18cc18a9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"06629280d64d35f3ef774c80e6d113de\";a:5:{s:6:\"source\";s:32:\"06629280d64d35f3ef774c80e6d113de\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d2e6735a1eb941814198c65ea3781fad\";a:5:{s:6:\"source\";s:32:\"d2e6735a1eb941814198c65ea3781fad\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a0410432ab15354b2afc70a9b956a5c4\";a:5:{s:6:\"source\";s:32:\"a0410432ab15354b2afc70a9b956a5c4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ba9e453f7ddd9698da80804be11eafd1\";a:5:{s:6:\"source\";s:32:\"ba9e453f7ddd9698da80804be11eafd1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a8157abd2d53892db04432d6a856a8c4\";a:5:{s:6:\"source\";s:32:\"a8157abd2d53892db04432d6a856a8c4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1a96fcd5ae5e73b2faad48e0d2fc641a\";a:5:{s:6:\"source\";s:32:\"1a96fcd5ae5e73b2faad48e0d2fc641a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5f61782c992d6b094f3f04500a01f115\";a:5:{s:6:\"source\";s:32:\"5f61782c992d6b094f3f04500a01f115\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7919319fad036cd7a389af3db2ade337\";a:5:{s:6:\"source\";s:32:\"7919319fad036cd7a389af3db2ade337\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fe500fac5989067afb0e3a92ad5eb197\";a:5:{s:6:\"source\";s:32:\"fe500fac5989067afb0e3a92ad5eb197\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7d618980a323012d3268c8707a23e32b\";a:5:{s:6:\"source\";s:32:\"7d618980a323012d3268c8707a23e32b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"585c353b3fb834264dabb86774aedcf0\";a:5:{s:6:\"source\";s:32:\"585c353b3fb834264dabb86774aedcf0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f5f604258b09c459267eba915fc5be96\";a:5:{s:6:\"source\";s:32:\"f5f604258b09c459267eba915fc5be96\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7220feaa2bb501c463d316cb9d668058\";a:5:{s:6:\"source\";s:32:\"7220feaa2bb501c463d316cb9d668058\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"12bb520c4521b19fbeedecf1cd9b4077\";a:5:{s:6:\"source\";s:32:\"12bb520c4521b19fbeedecf1cd9b4077\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ea53af7baa98d9dbaa07d7244d3ff979\";a:5:{s:6:\"source\";s:32:\"ea53af7baa98d9dbaa07d7244d3ff979\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"edf4d44ceafe71b76253334a49dd2245\";a:5:{s:6:\"source\";s:32:\"edf4d44ceafe71b76253334a49dd2245\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7c3206e1b98861e62f197b4f2853149b\";a:5:{s:6:\"source\";s:32:\"7c3206e1b98861e62f197b4f2853149b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7bcbf390069f89889f7913a5a7fd440b\";a:5:{s:6:\"source\";s:32:\"7bcbf390069f89889f7913a5a7fd440b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"97ec20ee08116cb1a298c24c03f49f53\";a:5:{s:6:\"source\";s:32:\"97ec20ee08116cb1a298c24c03f49f53\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a2b914a2d8666cf889d23579fd36f141\";a:5:{s:6:\"source\";s:32:\"a2b914a2d8666cf889d23579fd36f141\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dba05295794a4df8082a24067b3495e1\";a:5:{s:6:\"source\";s:32:\"dba05295794a4df8082a24067b3495e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e50d8702ebb2f6772a8daa241f96fe25\";a:5:{s:6:\"source\";s:32:\"e50d8702ebb2f6772a8daa241f96fe25\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"92b736634d847d987c0ad3e811367682\";a:5:{s:6:\"source\";s:32:\"92b736634d847d987c0ad3e811367682\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5af17698c78196dc6f13c59c71065311\";a:5:{s:6:\"source\";s:32:\"5af17698c78196dc6f13c59c71065311\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ee45a447345b492a49f4fe7fc6e48b0b\";a:5:{s:6:\"source\";s:32:\"ee45a447345b492a49f4fe7fc6e48b0b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"27b7c221505c6395e9e76e9b81a4216f\";a:5:{s:6:\"source\";s:32:\"27b7c221505c6395e9e76e9b81a4216f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dea4031583c8786d202739b8a77a8df6\";a:5:{s:6:\"source\";s:32:\"dea4031583c8786d202739b8a77a8df6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0143979334d2d73ca7bf17aae55973ff\";a:5:{s:6:\"source\";s:32:\"0143979334d2d73ca7bf17aae55973ff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2867a5fc533778b1b46f3744629ce5b0\";a:5:{s:6:\"source\";s:32:\"2867a5fc533778b1b46f3744629ce5b0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a31d1104d70e0a93be538798e16338fd\";a:5:{s:6:\"source\";s:32:\"a31d1104d70e0a93be538798e16338fd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"23ed5edc10f9e546682a641f0b1208d7\";a:5:{s:6:\"source\";s:32:\"23ed5edc10f9e546682a641f0b1208d7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f5c8e43f11f6c143a75a7a3c8cb76165\";a:5:{s:6:\"source\";s:32:\"f5c8e43f11f6c143a75a7a3c8cb76165\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ae137f8019d30d590a3eb3e5a3e5d37\";a:5:{s:6:\"source\";s:32:\"8ae137f8019d30d590a3eb3e5a3e5d37\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0abe08486d53b69b9ba1d2b1e1b62efa\";a:5:{s:6:\"source\";s:32:\"0abe08486d53b69b9ba1d2b1e1b62efa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ccb42622c2c9e21ab7508dfb90d99859\";a:5:{s:6:\"source\";s:32:\"ccb42622c2c9e21ab7508dfb90d99859\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c2ce740469906f9d48068d337db65d07\";a:5:{s:6:\"source\";s:32:\"c2ce740469906f9d48068d337db65d07\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1a5ff5a97fa447edc9463bd33e6a9d76\";a:5:{s:6:\"source\";s:32:\"1a5ff5a97fa447edc9463bd33e6a9d76\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3b984af2b30ce000738f014961fd2073\";a:5:{s:6:\"source\";s:32:\"3b984af2b30ce000738f014961fd2073\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4e90af726ae48a6fa8b17f27bd1acbb5\";a:5:{s:6:\"source\";s:32:\"4e90af726ae48a6fa8b17f27bd1acbb5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eb127ffea7f5c611d0dd442274183cda\";a:5:{s:6:\"source\";s:32:\"eb127ffea7f5c611d0dd442274183cda\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b374a5c08c78005c130a83a6a8bb6ca1\";a:5:{s:6:\"source\";s:32:\"b374a5c08c78005c130a83a6a8bb6ca1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"44745b00e29855c823257f3298f26b28\";a:5:{s:6:\"source\";s:32:\"44745b00e29855c823257f3298f26b28\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5668dbee1be927cc3eb958af3dfbd4f7\";a:5:{s:6:\"source\";s:32:\"5668dbee1be927cc3eb958af3dfbd4f7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"30f1bdc5ed8c6228617025b19ed67e37\";a:5:{s:6:\"source\";s:32:\"30f1bdc5ed8c6228617025b19ed67e37\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"02b352288863ea101a14739f04259596\";a:5:{s:6:\"source\";s:32:\"02b352288863ea101a14739f04259596\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"565b8ce6b76aa7a5016ab4d1ca98bcc7\";a:5:{s:6:\"source\";s:32:\"565b8ce6b76aa7a5016ab4d1ca98bcc7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e173d097cc32a28451f87920a35d8004\";a:5:{s:6:\"source\";s:32:\"e173d097cc32a28451f87920a35d8004\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d32a31f4cc5d6f92d3397c912937c35e\";a:5:{s:6:\"source\";s:32:\"d32a31f4cc5d6f92d3397c912937c35e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dae4e8e80f1ac2eb2170089fc94c147e\";a:5:{s:6:\"source\";s:32:\"dae4e8e80f1ac2eb2170089fc94c147e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dd91b67dc8c2c62c3e9785e7abd81c08\";a:5:{s:6:\"source\";s:32:\"dd91b67dc8c2c62c3e9785e7abd81c08\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d85c13eb18c4e7a52859aa212b7c3425\";a:5:{s:6:\"source\";s:32:\"d85c13eb18c4e7a52859aa212b7c3425\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2032ebec0dc537fd1b34d8759a8c9a36\";a:5:{s:6:\"source\";s:32:\"2032ebec0dc537fd1b34d8759a8c9a36\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"db054397ff63832f1371215ec3639533\";a:5:{s:6:\"source\";s:32:\"db054397ff63832f1371215ec3639533\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9a8ce44ec668859d2533f86adb0b7a4a\";a:5:{s:6:\"source\";s:32:\"9a8ce44ec668859d2533f86adb0b7a4a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d4e1fa8b6f690e116526ab499213210\";a:5:{s:6:\"source\";s:32:\"4d4e1fa8b6f690e116526ab499213210\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f5202cc3702963b36cc5defbc9c01c95\";a:5:{s:6:\"source\";s:32:\"f5202cc3702963b36cc5defbc9c01c95\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9b06cbdb342d6c0d1510712aa3a30294\";a:5:{s:6:\"source\";s:32:\"9b06cbdb342d6c0d1510712aa3a30294\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f55f3842ec4b048095367560d7bea885\";a:5:{s:6:\"source\";s:32:\"f55f3842ec4b048095367560d7bea885\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ee782607820e0637a6ae20cfc754d68f\";a:5:{s:6:\"source\";s:32:\"ee782607820e0637a6ae20cfc754d68f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bc1b9be53ba6e1d915b5d392a2b660ef\";a:5:{s:6:\"source\";s:32:\"bc1b9be53ba6e1d915b5d392a2b660ef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6349ef058f72c51a1b60c144cf20d469\";a:5:{s:6:\"source\";s:32:\"6349ef058f72c51a1b60c144cf20d469\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0c0c12752f1aa02668ebf0ac9b7f79f0\";a:5:{s:6:\"source\";s:32:\"0c0c12752f1aa02668ebf0ac9b7f79f0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bf33c79fb8e27324355e34a9a43e7cc9\";a:5:{s:6:\"source\";s:32:\"bf33c79fb8e27324355e34a9a43e7cc9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ad5bb5aaf16376d20fc2bd0894d9441a\";a:5:{s:6:\"source\";s:32:\"ad5bb5aaf16376d20fc2bd0894d9441a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8cb5d1580ae89689b917b2b7b547ac6c\";a:5:{s:6:\"source\";s:32:\"8cb5d1580ae89689b917b2b7b547ac6c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9693db59ca99f92656c3134d5551b647\";a:5:{s:6:\"source\";s:32:\"9693db59ca99f92656c3134d5551b647\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"913802ce43509d1acb68615580f20bce\";a:5:{s:6:\"source\";s:32:\"913802ce43509d1acb68615580f20bce\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"00bdc3ddc74cc2053d15bde7569f0c5f\";a:5:{s:6:\"source\";s:32:\"00bdc3ddc74cc2053d15bde7569f0c5f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bc189c23fdcf5032c9d8baf7ab7b87e4\";a:5:{s:6:\"source\";s:32:\"bc189c23fdcf5032c9d8baf7ab7b87e4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5eb27464972841c26b8698ac5baaf1ee\";a:5:{s:6:\"source\";s:32:\"5eb27464972841c26b8698ac5baaf1ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a3e13a3277efdca45f9f27309f2d139f\";a:5:{s:6:\"source\";s:32:\"a3e13a3277efdca45f9f27309f2d139f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b5b99caf1315752ff5b8311633db46f6\";a:5:{s:6:\"source\";s:32:\"b5b99caf1315752ff5b8311633db46f6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4482c176c9085ffef365ebbcf972a005\";a:5:{s:6:\"source\";s:32:\"4482c176c9085ffef365ebbcf972a005\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"902f7f53c8c8913c0acaa756c584e14f\";a:5:{s:6:\"source\";s:32:\"902f7f53c8c8913c0acaa756c584e14f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"97aad1cadda30426d9a269fa2d7a041c\";a:5:{s:6:\"source\";s:32:\"97aad1cadda30426d9a269fa2d7a041c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d55240f63a74acd8f07d9f292482af8b\";a:5:{s:6:\"source\";s:32:\"d55240f63a74acd8f07d9f292482af8b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8d40c41d4ca587acb873465a6410db5e\";a:5:{s:6:\"source\";s:32:\"8d40c41d4ca587acb873465a6410db5e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"488960d6ce64a08be35f27678d42211c\";a:5:{s:6:\"source\";s:32:\"488960d6ce64a08be35f27678d42211c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7c138cf4a85e31f0f128ba383f95e6fc\";a:5:{s:6:\"source\";s:32:\"7c138cf4a85e31f0f128ba383f95e6fc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6b8cb8cb37ae4057e8b5a16a50871bb0\";a:5:{s:6:\"source\";s:32:\"6b8cb8cb37ae4057e8b5a16a50871bb0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e9309839782e3d451fd92fb4e3fe2dfe\";a:5:{s:6:\"source\";s:32:\"e9309839782e3d451fd92fb4e3fe2dfe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5ac327fa2364c60227875cf4a6115540\";a:5:{s:6:\"source\";s:32:\"5ac327fa2364c60227875cf4a6115540\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"216a593659d2f520844a7adf05312006\";a:5:{s:6:\"source\";s:32:\"216a593659d2f520844a7adf05312006\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1b351f0eeebc35981239e11791e5c268\";a:5:{s:6:\"source\";s:32:\"1b351f0eeebc35981239e11791e5c268\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"87bda5e55a41b8ec1c54bdfe5b19a478\";a:5:{s:6:\"source\";s:32:\"87bda5e55a41b8ec1c54bdfe5b19a478\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"10ddfab59bb5ff247ede42dccec44e69\";a:5:{s:6:\"source\";s:32:\"10ddfab59bb5ff247ede42dccec44e69\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"43785b6865c479c648127a4e6aab5546\";a:5:{s:6:\"source\";s:32:\"43785b6865c479c648127a4e6aab5546\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"277dfca393cc7b5d2b2b04f75c381771\";a:5:{s:6:\"source\";s:32:\"277dfca393cc7b5d2b2b04f75c381771\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"339d945232b6a164f698d6710cab738a\";a:5:{s:6:\"source\";s:32:\"339d945232b6a164f698d6710cab738a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8170c6a633593972d030d27690a48e59\";a:5:{s:6:\"source\";s:32:\"8170c6a633593972d030d27690a48e59\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eea358d7184e29a19be64bc47a0aafb0\";a:5:{s:6:\"source\";s:32:\"eea358d7184e29a19be64bc47a0aafb0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a3713ae944b2e50e69ac4c81f2070d6f\";a:5:{s:6:\"source\";s:32:\"a3713ae944b2e50e69ac4c81f2070d6f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e9964773617c5c8e1754607ef2e502ac\";a:5:{s:6:\"source\";s:32:\"e9964773617c5c8e1754607ef2e502ac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6f644e7197ba33cfcb53800773d3c320\";a:5:{s:6:\"source\";s:32:\"6f644e7197ba33cfcb53800773d3c320\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1a0071771e84a65f5a447e82672ea128\";a:5:{s:6:\"source\";s:32:\"1a0071771e84a65f5a447e82672ea128\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d346e5744ca3309638753b5b4d9181f3\";a:5:{s:6:\"source\";s:32:\"d346e5744ca3309638753b5b4d9181f3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4effc3d46de36f24a85fe780beeac8af\";a:5:{s:6:\"source\";s:32:\"4effc3d46de36f24a85fe780beeac8af\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bf34d7fe5d00c7dc336a06bd52c3bbc0\";a:5:{s:6:\"source\";s:32:\"bf34d7fe5d00c7dc336a06bd52c3bbc0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef975868f16f95b5f5e2de7a75adc56f\";a:5:{s:6:\"source\";s:32:\"ef975868f16f95b5f5e2de7a75adc56f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8f8ada914158367d93bf68e58a0e8de1\";a:5:{s:6:\"source\";s:32:\"8f8ada914158367d93bf68e58a0e8de1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d066c463ed6c67ed540c83bb1948a1be\";a:5:{s:6:\"source\";s:32:\"d066c463ed6c67ed540c83bb1948a1be\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a89a2b6b4f5173f87067ab004962050a\";a:5:{s:6:\"source\";s:32:\"a89a2b6b4f5173f87067ab004962050a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d83259ee4d33327340a1485dccb3b409\";a:5:{s:6:\"source\";s:32:\"d83259ee4d33327340a1485dccb3b409\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"620e1d92ce974d898551d3967776ae86\";a:5:{s:6:\"source\";s:32:\"620e1d92ce974d898551d3967776ae86\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bb2a800f2529a5f03a1f7981c233d029\";a:5:{s:6:\"source\";s:32:\"bb2a800f2529a5f03a1f7981c233d029\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ca0d9ef3367d23700acc6107f3f598d\";a:5:{s:6:\"source\";s:32:\"8ca0d9ef3367d23700acc6107f3f598d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8d55ff5f6df4dc8704a02d12d6d238fa\";a:5:{s:6:\"source\";s:32:\"8d55ff5f6df4dc8704a02d12d6d238fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"172add15fcad5da6e04757aa0d2ea3c4\";a:5:{s:6:\"source\";s:32:\"172add15fcad5da6e04757aa0d2ea3c4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"85dc50a1a675b1d8fa6071c22c8616af\";a:5:{s:6:\"source\";s:32:\"85dc50a1a675b1d8fa6071c22c8616af\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"62a4c5f8bfc74c32451ff901bd1a31f5\";a:5:{s:6:\"source\";s:32:\"62a4c5f8bfc74c32451ff901bd1a31f5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"36b3bbea1179d584327d12a1566f645e\";a:5:{s:6:\"source\";s:32:\"36b3bbea1179d584327d12a1566f645e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"29b51b50be5757970d975ec72bef5cc6\";a:5:{s:6:\"source\";s:32:\"29b51b50be5757970d975ec72bef5cc6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f2d664435a58f62e232caabafbc063fe\";a:5:{s:6:\"source\";s:32:\"f2d664435a58f62e232caabafbc063fe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b773e32e5de45a9f1dd00eac04d426d6\";a:5:{s:6:\"source\";s:32:\"b773e32e5de45a9f1dd00eac04d426d6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8bb57b6b5a51c72134e05e362629e4f4\";a:5:{s:6:\"source\";s:32:\"8bb57b6b5a51c72134e05e362629e4f4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fd5e0e998affd9f699c90304aa5b3d3f\";a:5:{s:6:\"source\";s:32:\"fd5e0e998affd9f699c90304aa5b3d3f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1cdf060858ac52e81a800247c21373f7\";a:5:{s:6:\"source\";s:32:\"1cdf060858ac52e81a800247c21373f7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"75670e9aea44f000fc21cbd150ffd232\";a:5:{s:6:\"source\";s:32:\"75670e9aea44f000fc21cbd150ffd232\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"184969952e4dd8fef3a697fe792f03e1\";a:5:{s:6:\"source\";s:32:\"184969952e4dd8fef3a697fe792f03e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0ecb80ccb76040f4f8a386ac1eab9d9e\";a:5:{s:6:\"source\";s:32:\"0ecb80ccb76040f4f8a386ac1eab9d9e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6c40d4a7c19a40d1c3ca3ee9fdf8ac18\";a:5:{s:6:\"source\";s:32:\"6c40d4a7c19a40d1c3ca3ee9fdf8ac18\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ed1bdef85df3ef61381ed6581e7cff02\";a:5:{s:6:\"source\";s:32:\"ed1bdef85df3ef61381ed6581e7cff02\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4eed042a1ce06750945f29a94e486293\";a:5:{s:6:\"source\";s:32:\"4eed042a1ce06750945f29a94e486293\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c728e31b6d5e5b7ba32c3a94da72ed5\";a:5:{s:6:\"source\";s:32:\"3c728e31b6d5e5b7ba32c3a94da72ed5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"026bbe8886c590724e691dda35f0959b\";a:5:{s:6:\"source\";s:32:\"026bbe8886c590724e691dda35f0959b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8c8885049405c4e793d7faa86fcf93a6\";a:5:{s:6:\"source\";s:32:\"8c8885049405c4e793d7faa86fcf93a6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"adaff7163c71edcf2c8e965b9d53c7eb\";a:5:{s:6:\"source\";s:32:\"adaff7163c71edcf2c8e965b9d53c7eb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"48426d83257622939a7736f5f25b4066\";a:5:{s:6:\"source\";s:32:\"48426d83257622939a7736f5f25b4066\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"19543013082b60b0ba72f9cfa4561ec9\";a:5:{s:6:\"source\";s:32:\"19543013082b60b0ba72f9cfa4561ec9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"60c17edf66f4cb92cecac27c5b1ea602\";a:5:{s:6:\"source\";s:32:\"60c17edf66f4cb92cecac27c5b1ea602\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0c990805c679692402cf75726efb021a\";a:5:{s:6:\"source\";s:32:\"0c990805c679692402cf75726efb021a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f6e7bb94d779c69ed95aee47b1ed849e\";a:5:{s:6:\"source\";s:32:\"f6e7bb94d779c69ed95aee47b1ed849e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"06f5d1f4c3d1eb6e91c10ff853b313b9\";a:5:{s:6:\"source\";s:32:\"06f5d1f4c3d1eb6e91c10ff853b313b9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2e602235a2ae5651296d1d84235c6127\";a:5:{s:6:\"source\";s:32:\"2e602235a2ae5651296d1d84235c6127\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"23644e0056bd1798ec2db1f77853b2b3\";a:5:{s:6:\"source\";s:32:\"23644e0056bd1798ec2db1f77853b2b3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dbfc317b1c7ad5df62262ec3a5b58115\";a:5:{s:6:\"source\";s:32:\"dbfc317b1c7ad5df62262ec3a5b58115\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9b47179ad67c1ae8cff0795f03ae4424\";a:5:{s:6:\"source\";s:32:\"9b47179ad67c1ae8cff0795f03ae4424\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d23f8ce564a4e893f60acba9b59c640c\";a:5:{s:6:\"source\";s:32:\"d23f8ce564a4e893f60acba9b59c640c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"56b7de15242649faa4df144206f9e4a1\";a:5:{s:6:\"source\";s:32:\"56b7de15242649faa4df144206f9e4a1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"466569630324182f928f1cda3fa78070\";a:5:{s:6:\"source\";s:32:\"466569630324182f928f1cda3fa78070\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"029b79d0132be8fdfa1cd98e25e80208\";a:5:{s:6:\"source\";s:32:\"029b79d0132be8fdfa1cd98e25e80208\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7ece50b8179a616ae14163325445c51d\";a:5:{s:6:\"source\";s:32:\"7ece50b8179a616ae14163325445c51d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"51b1b15cce567c5015e57685de40b6d2\";a:5:{s:6:\"source\";s:32:\"51b1b15cce567c5015e57685de40b6d2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"421413a7496df7465a505e7e0868a01b\";a:5:{s:6:\"source\";s:32:\"421413a7496df7465a505e7e0868a01b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cfa4c530419df9c41fbf933a1b98401b\";a:5:{s:6:\"source\";s:32:\"cfa4c530419df9c41fbf933a1b98401b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1e8a8cc33baf9458a962e5b041c29c42\";a:5:{s:6:\"source\";s:32:\"1e8a8cc33baf9458a962e5b041c29c42\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a6b12c04ea887ecb098adf4b1a892cd9\";a:5:{s:6:\"source\";s:32:\"a6b12c04ea887ecb098adf4b1a892cd9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9ad63622da6bcbad5e10c4434ac6b398\";a:5:{s:6:\"source\";s:32:\"9ad63622da6bcbad5e10c4434ac6b398\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"042bcb586cab67024946a3ed696e53a0\";a:5:{s:6:\"source\";s:32:\"042bcb586cab67024946a3ed696e53a0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e0b18eb11f45af0b80b841f2ce95b254\";a:5:{s:6:\"source\";s:32:\"e0b18eb11f45af0b80b841f2ce95b254\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"45746e853ceb26ba628e7af503c07e5c\";a:5:{s:6:\"source\";s:32:\"45746e853ceb26ba628e7af503c07e5c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dd3dcf38c1d0bbf0eaa93e21a9eff110\";a:5:{s:6:\"source\";s:32:\"dd3dcf38c1d0bbf0eaa93e21a9eff110\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"21cba19d5959ed2ca69029807d101c2a\";a:5:{s:6:\"source\";s:32:\"21cba19d5959ed2ca69029807d101c2a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fd5fe982ca845575843af616578ea552\";a:5:{s:6:\"source\";s:32:\"fd5fe982ca845575843af616578ea552\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"26e0deab72dbb16b20e7da217d3dc67d\";a:5:{s:6:\"source\";s:32:\"26e0deab72dbb16b20e7da217d3dc67d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f6145ad359cbd75fba78f34a32cb460f\";a:5:{s:6:\"source\";s:32:\"f6145ad359cbd75fba78f34a32cb460f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e28e9a3b0627d2e3be916d48a581e472\";a:5:{s:6:\"source\";s:32:\"e28e9a3b0627d2e3be916d48a581e472\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a9e5e6cef2685b417d36b43c9c6c8730\";a:5:{s:6:\"source\";s:32:\"a9e5e6cef2685b417d36b43c9c6c8730\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b1e5cc58e99ad3fe35aa62515197cad8\";a:5:{s:6:\"source\";s:32:\"b1e5cc58e99ad3fe35aa62515197cad8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"542d5c0ed77f0f135acfde4e5e465891\";a:5:{s:6:\"source\";s:32:\"542d5c0ed77f0f135acfde4e5e465891\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4bfdfbaefd331bca21ebc802d1fdbca1\";a:5:{s:6:\"source\";s:32:\"4bfdfbaefd331bca21ebc802d1fdbca1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"131812d49ebe698e0faf52a46eab1224\";a:5:{s:6:\"source\";s:32:\"131812d49ebe698e0faf52a46eab1224\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"be9a320e6f00eab163714772bb1bc844\";a:5:{s:6:\"source\";s:32:\"be9a320e6f00eab163714772bb1bc844\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d2a52c38172040319fb7948141a1202e\";a:5:{s:6:\"source\";s:32:\"d2a52c38172040319fb7948141a1202e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"17942633d5609e9e4630321fe724e513\";a:5:{s:6:\"source\";s:32:\"17942633d5609e9e4630321fe724e513\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a9539b73c991e60e61b81d567974dba\";a:5:{s:6:\"source\";s:32:\"8a9539b73c991e60e61b81d567974dba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dba4b350d8a546f317adaad76fb430d2\";a:5:{s:6:\"source\";s:32:\"dba4b350d8a546f317adaad76fb430d2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ab2afde2e1407060ebcaefdea19d21ef\";a:5:{s:6:\"source\";s:32:\"ab2afde2e1407060ebcaefdea19d21ef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ddcbeb5ead85819f3efd4b52fa77cec5\";a:5:{s:6:\"source\";s:32:\"ddcbeb5ead85819f3efd4b52fa77cec5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d5a455dbc15825b48fc74b80c9d3ce1c\";a:5:{s:6:\"source\";s:32:\"d5a455dbc15825b48fc74b80c9d3ce1c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"205d616fb458d8ed0600cde4f8df1fa5\";a:5:{s:6:\"source\";s:32:\"205d616fb458d8ed0600cde4f8df1fa5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"650b012b687ba453187fa96985798381\";a:5:{s:6:\"source\";s:32:\"650b012b687ba453187fa96985798381\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e6a04e77b6bd99374c3f9a5885ad74ca\";a:5:{s:6:\"source\";s:32:\"e6a04e77b6bd99374c3f9a5885ad74ca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7a6b2262a550bf3da272da921584bea8\";a:5:{s:6:\"source\";s:32:\"7a6b2262a550bf3da272da921584bea8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"32a45b90b063fd3899c0d4c7144de2dd\";a:5:{s:6:\"source\";s:32:\"32a45b90b063fd3899c0d4c7144de2dd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a52a2a65019cfe397b00ca5e1fcdfc1a\";a:5:{s:6:\"source\";s:32:\"a52a2a65019cfe397b00ca5e1fcdfc1a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f70e1b9302e443032235c57cf6235d04\";a:5:{s:6:\"source\";s:32:\"f70e1b9302e443032235c57cf6235d04\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"69e3797f30d34ccccd94cbcfc579fa55\";a:5:{s:6:\"source\";s:32:\"69e3797f30d34ccccd94cbcfc579fa55\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6d85e902157008b328c017e773cebcf2\";a:5:{s:6:\"source\";s:32:\"6d85e902157008b328c017e773cebcf2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"26ee262ea72ad6a13f759628e923757a\";a:5:{s:6:\"source\";s:32:\"26ee262ea72ad6a13f759628e923757a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"782069ec33d70a46fe593865fe907ff1\";a:5:{s:6:\"source\";s:32:\"782069ec33d70a46fe593865fe907ff1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d24d07fc6e13dc4d4943fd28fe3be001\";a:5:{s:6:\"source\";s:32:\"d24d07fc6e13dc4d4943fd28fe3be001\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b168284dbf72a1ec9e6fff9ec43ecef8\";a:5:{s:6:\"source\";s:32:\"b168284dbf72a1ec9e6fff9ec43ecef8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"11d37d68e3eed58d068f14ac2c8e15ac\";a:5:{s:6:\"source\";s:32:\"11d37d68e3eed58d068f14ac2c8e15ac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1ec502aa406897562075de254c35b7cb\";a:5:{s:6:\"source\";s:32:\"1ec502aa406897562075de254c35b7cb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"76f06f5b876f844e528320f67bb5b0b1\";a:5:{s:6:\"source\";s:32:\"76f06f5b876f844e528320f67bb5b0b1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d162a58766288d23f5ed9b7cbc832e77\";a:5:{s:6:\"source\";s:32:\"d162a58766288d23f5ed9b7cbc832e77\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dc70ebeb232dc4a60f0e7af8c16640ca\";a:5:{s:6:\"source\";s:32:\"dc70ebeb232dc4a60f0e7af8c16640ca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e3a9a2eddcfd13bb5e9057f5f698d623\";a:5:{s:6:\"source\";s:32:\"e3a9a2eddcfd13bb5e9057f5f698d623\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d7132c294dcbea05618674f3f2789a48\";a:5:{s:6:\"source\";s:32:\"d7132c294dcbea05618674f3f2789a48\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"32c1df4265eb0c6bf5c4238fb4097406\";a:5:{s:6:\"source\";s:32:\"32c1df4265eb0c6bf5c4238fb4097406\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dc394f0a94622fb1e7258036006c0f31\";a:5:{s:6:\"source\";s:32:\"dc394f0a94622fb1e7258036006c0f31\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b061f2355105fe8611d26e9a964c08ad\";a:5:{s:6:\"source\";s:32:\"b061f2355105fe8611d26e9a964c08ad\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e33a9fd4dab1ed0c7b4c8011b04448cd\";a:5:{s:6:\"source\";s:32:\"e33a9fd4dab1ed0c7b4c8011b04448cd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"74a9c64caaed5040bf481e1eebe027dd\";a:5:{s:6:\"source\";s:32:\"74a9c64caaed5040bf481e1eebe027dd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fce359ae7b05ccea0c064c6497b960e7\";a:5:{s:6:\"source\";s:32:\"fce359ae7b05ccea0c064c6497b960e7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bb2e4dac605dd10d64ca907408a92206\";a:5:{s:6:\"source\";s:32:\"bb2e4dac605dd10d64ca907408a92206\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"745af86b11705683ce44fee1e10a5f23\";a:5:{s:6:\"source\";s:32:\"745af86b11705683ce44fee1e10a5f23\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1c497cc36f2b32bd813bca6d47101304\";a:5:{s:6:\"source\";s:32:\"1c497cc36f2b32bd813bca6d47101304\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7932a51be17cc025e3b38578444e3b1a\";a:5:{s:6:\"source\";s:32:\"7932a51be17cc025e3b38578444e3b1a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"abbe5462edff81c4dea44b88ea38c56b\";a:5:{s:6:\"source\";s:32:\"abbe5462edff81c4dea44b88ea38c56b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f26b2e3ecd34336db5d655682306a71e\";a:5:{s:6:\"source\";s:32:\"f26b2e3ecd34336db5d655682306a71e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"df65de16214235cca61f811140a074ba\";a:5:{s:6:\"source\";s:32:\"df65de16214235cca61f811140a074ba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d5c56867963edc86a3ceef253244bf5b\";a:5:{s:6:\"source\";s:32:\"d5c56867963edc86a3ceef253244bf5b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"334d1f46e099cbee7ab71dcee33cc837\";a:5:{s:6:\"source\";s:32:\"334d1f46e099cbee7ab71dcee33cc837\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"558ec37dbecf7433adf89b12f4106d32\";a:5:{s:6:\"source\";s:32:\"558ec37dbecf7433adf89b12f4106d32\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"05bcb1cc793e70c2766203a4d10d2ed2\";a:5:{s:6:\"source\";s:32:\"05bcb1cc793e70c2766203a4d10d2ed2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"229e4cbf4fe14037d20392bcdc894201\";a:5:{s:6:\"source\";s:32:\"229e4cbf4fe14037d20392bcdc894201\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"09c956f9547882b94ad0199cf9904be0\";a:5:{s:6:\"source\";s:32:\"09c956f9547882b94ad0199cf9904be0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0ca8b553dd9d0a2145cca60981f875f1\";a:5:{s:6:\"source\";s:32:\"0ca8b553dd9d0a2145cca60981f875f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2b4df0756cb1cb4ba1c36c6b57b794af\";a:5:{s:6:\"source\";s:32:\"2b4df0756cb1cb4ba1c36c6b57b794af\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1f919045443e5f528c5444a0f04e4897\";a:5:{s:6:\"source\";s:32:\"1f919045443e5f528c5444a0f04e4897\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b1fed1a711dcb633ceed7c5df8cc4c7d\";a:5:{s:6:\"source\";s:32:\"b1fed1a711dcb633ceed7c5df8cc4c7d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aacc71d2fd84e46d11d3b4344ab0d404\";a:5:{s:6:\"source\";s:32:\"aacc71d2fd84e46d11d3b4344ab0d404\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"22770cc7de072868fad40ac0a804d70e\";a:5:{s:6:\"source\";s:32:\"22770cc7de072868fad40ac0a804d70e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3fba554ec6b135226efa283b6be891be\";a:5:{s:6:\"source\";s:32:\"3fba554ec6b135226efa283b6be891be\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d4224f95a9e90ce873f7a6c432496e0b\";a:5:{s:6:\"source\";s:32:\"d4224f95a9e90ce873f7a6c432496e0b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e1a0eb99971beeeac69804852f8a5b4f\";a:5:{s:6:\"source\";s:32:\"e1a0eb99971beeeac69804852f8a5b4f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c9ad4e3d6a512b6df75897ef537a890a\";a:5:{s:6:\"source\";s:32:\"c9ad4e3d6a512b6df75897ef537a890a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eef7de1fcf14d9ef6fa49bd353e4ac54\";a:5:{s:6:\"source\";s:32:\"eef7de1fcf14d9ef6fa49bd353e4ac54\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2e4e47045425e0102d2848e5ee177d32\";a:5:{s:6:\"source\";s:32:\"2e4e47045425e0102d2848e5ee177d32\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fcda5c54a9577fd89003b8705f508174\";a:5:{s:6:\"source\";s:32:\"fcda5c54a9577fd89003b8705f508174\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"34d694753fc9201fd6d8c6089693ccd7\";a:5:{s:6:\"source\";s:32:\"34d694753fc9201fd6d8c6089693ccd7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6ca05a6696b3773afc9cd61383ab99b3\";a:5:{s:6:\"source\";s:32:\"6ca05a6696b3773afc9cd61383ab99b3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"04ee60fc1dac968ccb4234861e5abbaf\";a:5:{s:6:\"source\";s:32:\"04ee60fc1dac968ccb4234861e5abbaf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3dd9db1901eca48c35260792a8a1dbbd\";a:5:{s:6:\"source\";s:32:\"3dd9db1901eca48c35260792a8a1dbbd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d082cae32a9ef988b474713f9cd890f4\";a:5:{s:6:\"source\";s:32:\"d082cae32a9ef988b474713f9cd890f4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3acabc99f5acaeeee9b325aff9921821\";a:5:{s:6:\"source\";s:32:\"3acabc99f5acaeeee9b325aff9921821\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d458c01ca9de890b90227679e5dba1b1\";a:5:{s:6:\"source\";s:32:\"d458c01ca9de890b90227679e5dba1b1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d1906af81f88c7abe64fae75a68dfaff\";a:5:{s:6:\"source\";s:32:\"d1906af81f88c7abe64fae75a68dfaff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e20767a750d669a88789ce943184c4d3\";a:5:{s:6:\"source\";s:32:\"e20767a750d669a88789ce943184c4d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2a34d7ad93dce773d235f9c86738c3ee\";a:5:{s:6:\"source\";s:32:\"2a34d7ad93dce773d235f9c86738c3ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0c1ff8a0ba19c4e52328cca9af9f3ae4\";a:5:{s:6:\"source\";s:32:\"0c1ff8a0ba19c4e52328cca9af9f3ae4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0cbdb7eff5d57ff9c07f20df8c303f68\";a:5:{s:6:\"source\";s:32:\"0cbdb7eff5d57ff9c07f20df8c303f68\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8e3c5e020ab71297eb28f8e1d938cc4b\";a:5:{s:6:\"source\";s:32:\"8e3c5e020ab71297eb28f8e1d938cc4b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d1fa01c7d8fdfa086493e9c514435386\";a:5:{s:6:\"source\";s:32:\"d1fa01c7d8fdfa086493e9c514435386\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"30bb3d242e4c03359f5ca3380bc21286\";a:5:{s:6:\"source\";s:32:\"30bb3d242e4c03359f5ca3380bc21286\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a89e3203f5581ab5b463c9430c854fc5\";a:5:{s:6:\"source\";s:32:\"a89e3203f5581ab5b463c9430c854fc5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c17ac190e8e20cbe7116d10837623278\";a:5:{s:6:\"source\";s:32:\"c17ac190e8e20cbe7116d10837623278\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9c8e10196cc9c57088d061218b7a77e1\";a:5:{s:6:\"source\";s:32:\"9c8e10196cc9c57088d061218b7a77e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8d1178041d9af79962324f3be1a6aad4\";a:5:{s:6:\"source\";s:32:\"8d1178041d9af79962324f3be1a6aad4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6e19aa8975edce6f133dd4406790db28\";a:5:{s:6:\"source\";s:32:\"6e19aa8975edce6f133dd4406790db28\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6a75596d146a876cd99414d7ddb8a84a\";a:5:{s:6:\"source\";s:32:\"6a75596d146a876cd99414d7ddb8a84a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a200d0a49a06d7e8e821dec329899ccb\";a:5:{s:6:\"source\";s:32:\"a200d0a49a06d7e8e821dec329899ccb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c39852ca19f77613d92bfd8598f83833\";a:5:{s:6:\"source\";s:32:\"c39852ca19f77613d92bfd8598f83833\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c2f48e0c9b4faffb160d4ba8a69062c4\";a:5:{s:6:\"source\";s:32:\"c2f48e0c9b4faffb160d4ba8a69062c4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"103367ac47dc2c26318361e3d2305585\";a:5:{s:6:\"source\";s:32:\"103367ac47dc2c26318361e3d2305585\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"afd9ab31f0b4d3bdd329639ad7f45ca1\";a:5:{s:6:\"source\";s:32:\"afd9ab31f0b4d3bdd329639ad7f45ca1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2adb9a456216f4b730db330d933c0d47\";a:5:{s:6:\"source\";s:32:\"2adb9a456216f4b730db330d933c0d47\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1cf8e2e29748d70ee1d70077efd79877\";a:5:{s:6:\"source\";s:32:\"1cf8e2e29748d70ee1d70077efd79877\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"75e552eb52b26395032ac46afd5a96dd\";a:5:{s:6:\"source\";s:32:\"75e552eb52b26395032ac46afd5a96dd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f30a42594244ae812bd68258dd057ae2\";a:5:{s:6:\"source\";s:32:\"f30a42594244ae812bd68258dd057ae2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b8ae95dabca9a6a54e751e45ed4801bd\";a:5:{s:6:\"source\";s:32:\"b8ae95dabca9a6a54e751e45ed4801bd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5e15de5678474d9a98bf0e08e7fd7408\";a:5:{s:6:\"source\";s:32:\"5e15de5678474d9a98bf0e08e7fd7408\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e2b72f264dc0dfaeb7a0af796301c2f5\";a:5:{s:6:\"source\";s:32:\"e2b72f264dc0dfaeb7a0af796301c2f5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e0511cf18d544c30ad1b23eb835e87fc\";a:5:{s:6:\"source\";s:32:\"e0511cf18d544c30ad1b23eb835e87fc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5fc8fb2700d84ce684a6d9d223507ee9\";a:5:{s:6:\"source\";s:32:\"5fc8fb2700d84ce684a6d9d223507ee9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4bcd700ba53c5fd67bd3e33f0d6567e6\";a:5:{s:6:\"source\";s:32:\"4bcd700ba53c5fd67bd3e33f0d6567e6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6f2582ff51bb1345af226e89f1478cf4\";a:5:{s:6:\"source\";s:32:\"6f2582ff51bb1345af226e89f1478cf4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"161755dc056b7d0d97f882324c57c594\";a:5:{s:6:\"source\";s:32:\"161755dc056b7d0d97f882324c57c594\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"93c8121ff317c01110e3cb6827295926\";a:5:{s:6:\"source\";s:32:\"93c8121ff317c01110e3cb6827295926\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4daf14152a5c832eb401d63b3fa4d135\";a:5:{s:6:\"source\";s:32:\"4daf14152a5c832eb401d63b3fa4d135\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"37f818c7f59c812fdf77fb38cac9d058\";a:5:{s:6:\"source\";s:32:\"37f818c7f59c812fdf77fb38cac9d058\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a8593d18447af20acbaa6abda7299919\";a:5:{s:6:\"source\";s:32:\"a8593d18447af20acbaa6abda7299919\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"03800fdc28c76cd7294c69a7f84f0ae3\";a:5:{s:6:\"source\";s:32:\"03800fdc28c76cd7294c69a7f84f0ae3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bb263f8a168c3fc227cd77682e3bbeb1\";a:5:{s:6:\"source\";s:32:\"bb263f8a168c3fc227cd77682e3bbeb1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"62cb083a1dac8c1eb34d503e38fb632c\";a:5:{s:6:\"source\";s:32:\"62cb083a1dac8c1eb34d503e38fb632c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ae8a51e51d6dc9ea42b5c1cbbd441e47\";a:5:{s:6:\"source\";s:32:\"ae8a51e51d6dc9ea42b5c1cbbd441e47\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"99a5674220e1c860f2a946a26e5bb424\";a:5:{s:6:\"source\";s:32:\"99a5674220e1c860f2a946a26e5bb424\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2aca5fbd2c2a9e3eae73c96ae21ed5e8\";a:5:{s:6:\"source\";s:32:\"2aca5fbd2c2a9e3eae73c96ae21ed5e8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f18a844a74b4483b3c24dacb4cb15183\";a:5:{s:6:\"source\";s:32:\"f18a844a74b4483b3c24dacb4cb15183\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c84c02030b1752ce20dd10159023eefc\";a:5:{s:6:\"source\";s:32:\"c84c02030b1752ce20dd10159023eefc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4dd0c3dad1ef19b58db64c93ec8d4696\";a:5:{s:6:\"source\";s:32:\"4dd0c3dad1ef19b58db64c93ec8d4696\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e1f4d4df4d80732f4ab2b7343eedef45\";a:5:{s:6:\"source\";s:32:\"e1f4d4df4d80732f4ab2b7343eedef45\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d32f83347be077f508181441426788a\";a:5:{s:6:\"source\";s:32:\"4d32f83347be077f508181441426788a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d1e3d507d47d08777338f3fa23e4969c\";a:5:{s:6:\"source\";s:32:\"d1e3d507d47d08777338f3fa23e4969c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"84e77fe4df9ef50bec8ee5382aeba789\";a:5:{s:6:\"source\";s:32:\"84e77fe4df9ef50bec8ee5382aeba789\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"59d5bd73f682baadfbc50591fbcc2e38\";a:5:{s:6:\"source\";s:32:\"59d5bd73f682baadfbc50591fbcc2e38\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"34408d23412ae5f20400e2cd6d7f0713\";a:5:{s:6:\"source\";s:32:\"34408d23412ae5f20400e2cd6d7f0713\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f94b9bced71753693dd765b28ebfd37d\";a:5:{s:6:\"source\";s:32:\"f94b9bced71753693dd765b28ebfd37d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d80c42d4a056b4c6ac432f3a402a86f3\";a:5:{s:6:\"source\";s:32:\"d80c42d4a056b4c6ac432f3a402a86f3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4ea3dfaca7ed1633ae390766e01b3daa\";a:5:{s:6:\"source\";s:32:\"4ea3dfaca7ed1633ae390766e01b3daa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"af00dc309c3dd1fdbea8c8ce3bc5f3d9\";a:5:{s:6:\"source\";s:32:\"af00dc309c3dd1fdbea8c8ce3bc5f3d9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"612f5f6f8e7a81e38b60324aec999c30\";a:5:{s:6:\"source\";s:32:\"612f5f6f8e7a81e38b60324aec999c30\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"092bc6bdc4080d931311fdc3459b8f3a\";a:5:{s:6:\"source\";s:32:\"092bc6bdc4080d931311fdc3459b8f3a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"267cce4c079312bd013910b16e55ea19\";a:5:{s:6:\"source\";s:32:\"267cce4c079312bd013910b16e55ea19\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"65ae48e1ff86c5e96f2b3e52275c11f0\";a:5:{s:6:\"source\";s:32:\"65ae48e1ff86c5e96f2b3e52275c11f0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2342d49a7decc73fbea549a77e9f2911\";a:5:{s:6:\"source\";s:32:\"2342d49a7decc73fbea549a77e9f2911\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7e92e9a872776c6161a4ba052a9ac3e8\";a:5:{s:6:\"source\";s:32:\"7e92e9a872776c6161a4ba052a9ac3e8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7d255fded3d583fa31137e46efac396c\";a:5:{s:6:\"source\";s:32:\"7d255fded3d583fa31137e46efac396c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f64dd72650585515114ecafd8505c2fa\";a:5:{s:6:\"source\";s:32:\"f64dd72650585515114ecafd8505c2fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fde9a728400a75644657628edd3b2499\";a:5:{s:6:\"source\";s:32:\"fde9a728400a75644657628edd3b2499\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d32f9f1a07f4dd90d44adc01fb247990\";a:5:{s:6:\"source\";s:32:\"d32f9f1a07f4dd90d44adc01fb247990\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5097f5e7382e5873338fde99fef20836\";a:5:{s:6:\"source\";s:32:\"5097f5e7382e5873338fde99fef20836\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"023c7f9fa2bd811b5ed2ee754d059c67\";a:5:{s:6:\"source\";s:32:\"023c7f9fa2bd811b5ed2ee754d059c67\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ebf587824f444aaa951c33a98e18379\";a:5:{s:6:\"source\";s:32:\"8ebf587824f444aaa951c33a98e18379\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e148d6be6e6b9339e370665dff4c23ba\";a:5:{s:6:\"source\";s:32:\"e148d6be6e6b9339e370665dff4c23ba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fd2ea09f263cabefe2a89245fe1e5dd3\";a:5:{s:6:\"source\";s:32:\"fd2ea09f263cabefe2a89245fe1e5dd3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7dd90fcf22d4e56756a08b11ade187ae\";a:5:{s:6:\"source\";s:32:\"7dd90fcf22d4e56756a08b11ade187ae\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3bbe18f0f9e491442e8a0490fe6245d9\";a:5:{s:6:\"source\";s:32:\"3bbe18f0f9e491442e8a0490fe6245d9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6ef4ba24f48ffa727d82df723b9d2455\";a:5:{s:6:\"source\";s:32:\"6ef4ba24f48ffa727d82df723b9d2455\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1950021d28a10e23c62fc81eb6ca058c\";a:5:{s:6:\"source\";s:32:\"1950021d28a10e23c62fc81eb6ca058c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff6703eaf7579c4b41fd899f3f0c621a\";a:5:{s:6:\"source\";s:32:\"ff6703eaf7579c4b41fd899f3f0c621a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"928b4f7d008860b1851821971bae904c\";a:5:{s:6:\"source\";s:32:\"928b4f7d008860b1851821971bae904c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a90da619156fd4cbb8c8f506522da341\";a:5:{s:6:\"source\";s:32:\"a90da619156fd4cbb8c8f506522da341\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1e7699cb9def082d6d823535969a83df\";a:5:{s:6:\"source\";s:32:\"1e7699cb9def082d6d823535969a83df\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"86a49029f460caca8728b51363a320a6\";a:5:{s:6:\"source\";s:32:\"86a49029f460caca8728b51363a320a6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2ff64e8829d912e144769ef1d49d1d85\";a:5:{s:6:\"source\";s:32:\"2ff64e8829d912e144769ef1d49d1d85\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d9a84eda1afeaedd41306176df059cae\";a:5:{s:6:\"source\";s:32:\"d9a84eda1afeaedd41306176df059cae\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d1189151b885520e9d381a67696e0d87\";a:5:{s:6:\"source\";s:32:\"d1189151b885520e9d381a67696e0d87\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b9aba96a8eef4bcbce8d99509eb8ed37\";a:5:{s:6:\"source\";s:32:\"b9aba96a8eef4bcbce8d99509eb8ed37\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0aad5828cfb8cd3161137b4b31b0ade9\";a:5:{s:6:\"source\";s:32:\"0aad5828cfb8cd3161137b4b31b0ade9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"79e3f94cd3a81d31bd53dcd6e1094d33\";a:5:{s:6:\"source\";s:32:\"79e3f94cd3a81d31bd53dcd6e1094d33\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b6d06489f7aaf3499753935f78d3c530\";a:5:{s:6:\"source\";s:32:\"b6d06489f7aaf3499753935f78d3c530\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"88c147a4b375e5bc701e9d34c57ac575\";a:5:{s:6:\"source\";s:32:\"88c147a4b375e5bc701e9d34c57ac575\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0866945dd8eda7a57b2549868afd207f\";a:5:{s:6:\"source\";s:32:\"0866945dd8eda7a57b2549868afd207f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b49b622fa8db9268ae5c8c3c071b9c59\";a:5:{s:6:\"source\";s:32:\"b49b622fa8db9268ae5c8c3c071b9c59\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"13be1eabea75afa58575eb065d2b9fa8\";a:5:{s:6:\"source\";s:32:\"13be1eabea75afa58575eb065d2b9fa8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b6c6b07e4d42b88ed9fce583f1636807\";a:5:{s:6:\"source\";s:32:\"b6c6b07e4d42b88ed9fce583f1636807\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"43c46e8a792a52d762928afd568adf85\";a:5:{s:6:\"source\";s:32:\"43c46e8a792a52d762928afd568adf85\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"717b1b8929e7c7baded043c0bbcb6504\";a:5:{s:6:\"source\";s:32:\"717b1b8929e7c7baded043c0bbcb6504\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bc5d0887fe53ca3590a434cd2d0eac4c\";a:5:{s:6:\"source\";s:32:\"bc5d0887fe53ca3590a434cd2d0eac4c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b9963b6c4f0e842168b5925c058918b4\";a:5:{s:6:\"source\";s:32:\"b9963b6c4f0e842168b5925c058918b4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"59ed37e76dbea863a78f1d1d2319c8fb\";a:5:{s:6:\"source\";s:32:\"59ed37e76dbea863a78f1d1d2319c8fb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3a3e631874b9a1f5c5c7287d7afca7c2\";a:5:{s:6:\"source\";s:32:\"3a3e631874b9a1f5c5c7287d7afca7c2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"012b8e752f91981c984d57b13a6e786f\";a:5:{s:6:\"source\";s:32:\"012b8e752f91981c984d57b13a6e786f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4bf884ef864e7e99b787fd606a33bc7f\";a:5:{s:6:\"source\";s:32:\"4bf884ef864e7e99b787fd606a33bc7f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e45ee8fb6f57acbf697084f5763d4d2b\";a:5:{s:6:\"source\";s:32:\"e45ee8fb6f57acbf697084f5763d4d2b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fa03ef75bafd69f7bb4b16f08b62b337\";a:5:{s:6:\"source\";s:32:\"fa03ef75bafd69f7bb4b16f08b62b337\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"299dbe57a1fe4485afb3742012e44fd9\";a:5:{s:6:\"source\";s:32:\"299dbe57a1fe4485afb3742012e44fd9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ec6c159e0f35a9f0b08c8c4a1975b7ba\";a:5:{s:6:\"source\";s:32:\"ec6c159e0f35a9f0b08c8c4a1975b7ba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5eaffe3912fe52c76ff974a7654d832b\";a:5:{s:6:\"source\";s:32:\"5eaffe3912fe52c76ff974a7654d832b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dadde571007dc30f0b67d1103af36b51\";a:5:{s:6:\"source\";s:32:\"dadde571007dc30f0b67d1103af36b51\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"84eec36f5f9916fb1c0e0b2ee08b6ad3\";a:5:{s:6:\"source\";s:32:\"84eec36f5f9916fb1c0e0b2ee08b6ad3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"875e8502b435d166c68cc92ddcc046a3\";a:5:{s:6:\"source\";s:32:\"875e8502b435d166c68cc92ddcc046a3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eafaf1473ed3e1e0bfe9f4fa9dc41b9a\";a:5:{s:6:\"source\";s:32:\"eafaf1473ed3e1e0bfe9f4fa9dc41b9a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"79f4ba91d4866f7ffef201c8308c7ef8\";a:5:{s:6:\"source\";s:32:\"79f4ba91d4866f7ffef201c8308c7ef8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4a6733a5b28a2668b96b4dff2b2e06c6\";a:5:{s:6:\"source\";s:32:\"4a6733a5b28a2668b96b4dff2b2e06c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c373207e87e75b3a10bfd27573f3d9fe\";a:5:{s:6:\"source\";s:32:\"c373207e87e75b3a10bfd27573f3d9fe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cef629d9eca15ef8af6f19a5d82f96dc\";a:5:{s:6:\"source\";s:32:\"cef629d9eca15ef8af6f19a5d82f96dc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"95229662df41faba5521d3f0389eeaea\";a:5:{s:6:\"source\";s:32:\"95229662df41faba5521d3f0389eeaea\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c63d65a797753e14e670f485c307bdc0\";a:5:{s:6:\"source\";s:32:\"c63d65a797753e14e670f485c307bdc0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0ded4f9c4dd5413284dee4de0f48d6a2\";a:5:{s:6:\"source\";s:32:\"0ded4f9c4dd5413284dee4de0f48d6a2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8cfd26da8d8db075d171f0e790b6aadc\";a:5:{s:6:\"source\";s:32:\"8cfd26da8d8db075d171f0e790b6aadc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"95c53a128eafecd4e6812006e7582ac1\";a:5:{s:6:\"source\";s:32:\"95c53a128eafecd4e6812006e7582ac1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a50d6d8046b4a6e8be93fb6b70ca793f\";a:5:{s:6:\"source\";s:32:\"a50d6d8046b4a6e8be93fb6b70ca793f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"41633e97b390ad5bfddd4be05c883302\";a:5:{s:6:\"source\";s:32:\"41633e97b390ad5bfddd4be05c883302\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2e729ccab5aee8f2ca2d244b71fe9d6c\";a:5:{s:6:\"source\";s:32:\"2e729ccab5aee8f2ca2d244b71fe9d6c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"025b38a528415a7511d62106c5648654\";a:5:{s:6:\"source\";s:32:\"025b38a528415a7511d62106c5648654\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bdeb2d8d7fb7180b744d1c74d4b395f4\";a:5:{s:6:\"source\";s:32:\"bdeb2d8d7fb7180b744d1c74d4b395f4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0fd8de8eb1e05c8d765d4238eb8ed228\";a:5:{s:6:\"source\";s:32:\"0fd8de8eb1e05c8d765d4238eb8ed228\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ded47b0bff8325a8ada84d807c2dd667\";a:5:{s:6:\"source\";s:32:\"ded47b0bff8325a8ada84d807c2dd667\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6f7b8a80d15a34862ea5ce88072e29eb\";a:5:{s:6:\"source\";s:32:\"6f7b8a80d15a34862ea5ce88072e29eb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef6c571cfdc3bb35b6e5abc1a38e3773\";a:5:{s:6:\"source\";s:32:\"ef6c571cfdc3bb35b6e5abc1a38e3773\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"59c21340ffc631412d2cbaae9ed6a849\";a:5:{s:6:\"source\";s:32:\"59c21340ffc631412d2cbaae9ed6a849\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"693ee879f645065bf9d7b32b20bc105b\";a:5:{s:6:\"source\";s:32:\"693ee879f645065bf9d7b32b20bc105b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"70aec152f991d79cf76677e466e61ccb\";a:5:{s:6:\"source\";s:32:\"70aec152f991d79cf76677e466e61ccb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"398fa80cd27420a3c9d3378f1b5da797\";a:5:{s:6:\"source\";s:32:\"398fa80cd27420a3c9d3378f1b5da797\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"af294b35fdc9508e9e68665182f4587f\";a:5:{s:6:\"source\";s:32:\"af294b35fdc9508e9e68665182f4587f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bb08e73963c6763c14f1edfa6c1464df\";a:5:{s:6:\"source\";s:32:\"bb08e73963c6763c14f1edfa6c1464df\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7be41295d1f37dc5f64c3763eff4acdb\";a:5:{s:6:\"source\";s:32:\"7be41295d1f37dc5f64c3763eff4acdb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"879bebfb88e8b5817bd86d7d245d98a8\";a:5:{s:6:\"source\";s:32:\"879bebfb88e8b5817bd86d7d245d98a8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"82df4a8e7e2bedce29c3b4644ac1195e\";a:5:{s:6:\"source\";s:32:\"82df4a8e7e2bedce29c3b4644ac1195e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"afb35334ae1ab329eb068edc8e8f5f10\";a:5:{s:6:\"source\";s:32:\"afb35334ae1ab329eb068edc8e8f5f10\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"225c4e8651a45d12b887cf785eee5748\";a:5:{s:6:\"source\";s:32:\"225c4e8651a45d12b887cf785eee5748\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c45948ebcd34290b1d9f1b64e2b5591a\";a:5:{s:6:\"source\";s:32:\"c45948ebcd34290b1d9f1b64e2b5591a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4a991a08214e90498cc17f807aa036d3\";a:5:{s:6:\"source\";s:32:\"4a991a08214e90498cc17f807aa036d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0fab945767bb701d8622465c407ab9d3\";a:5:{s:6:\"source\";s:32:\"0fab945767bb701d8622465c407ab9d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a0ace98774f89ab428739c81a32f2f54\";a:5:{s:6:\"source\";s:32:\"a0ace98774f89ab428739c81a32f2f54\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ed65b4ffeba717b9e72a5cc3d2ba2107\";a:5:{s:6:\"source\";s:32:\"ed65b4ffeba717b9e72a5cc3d2ba2107\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"889650a3e6b5ce16bc07525479ded70e\";a:5:{s:6:\"source\";s:32:\"889650a3e6b5ce16bc07525479ded70e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fa841feff3cff13160a9dac8325df495\";a:5:{s:6:\"source\";s:32:\"fa841feff3cff13160a9dac8325df495\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cad1a9e81c898d4e234c49ccab9753ff\";a:5:{s:6:\"source\";s:32:\"cad1a9e81c898d4e234c49ccab9753ff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6c3bb575feaa2fbfc3e832ea749100ba\";a:5:{s:6:\"source\";s:32:\"6c3bb575feaa2fbfc3e832ea749100ba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f665cf8d4df3087d70b4d41b10124f1\";a:5:{s:6:\"source\";s:32:\"7f665cf8d4df3087d70b4d41b10124f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"19073ecbff77a28255209dc66dad843a\";a:5:{s:6:\"source\";s:32:\"19073ecbff77a28255209dc66dad843a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b8fba2e5a6d1e391c3218b86cc1b85e1\";a:5:{s:6:\"source\";s:32:\"b8fba2e5a6d1e391c3218b86cc1b85e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8973102d14e40916dd21aa634e1892ab\";a:5:{s:6:\"source\";s:32:\"8973102d14e40916dd21aa634e1892ab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ab1cf182a4e933bdb98368e38fd21baa\";a:5:{s:6:\"source\";s:32:\"ab1cf182a4e933bdb98368e38fd21baa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bc35093775b367aeebb815f95bbb61c6\";a:5:{s:6:\"source\";s:32:\"bc35093775b367aeebb815f95bbb61c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9d97d8b365ee6bdc178145164154da4d\";a:5:{s:6:\"source\";s:32:\"9d97d8b365ee6bdc178145164154da4d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"25dc2c5afe0b66c50ad59ee9424c0d6a\";a:5:{s:6:\"source\";s:32:\"25dc2c5afe0b66c50ad59ee9424c0d6a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f78e5a9b8ca91679a88690cc926c04d9\";a:5:{s:6:\"source\";s:32:\"f78e5a9b8ca91679a88690cc926c04d9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ad0ea13fc3fa2f57d9a04e6149ec5a1c\";a:5:{s:6:\"source\";s:32:\"ad0ea13fc3fa2f57d9a04e6149ec5a1c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"119dd1804dc0e3129d263e558357ea96\";a:5:{s:6:\"source\";s:32:\"119dd1804dc0e3129d263e558357ea96\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2e6affbad9a6f68f4f670231cdb6ddbb\";a:5:{s:6:\"source\";s:32:\"2e6affbad9a6f68f4f670231cdb6ddbb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d4f704d996bd4e3b98dae7c3719c2ad7\";a:5:{s:6:\"source\";s:32:\"d4f704d996bd4e3b98dae7c3719c2ad7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4b2faaf72e95854fc544f8f2c71df1f7\";a:5:{s:6:\"source\";s:32:\"4b2faaf72e95854fc544f8f2c71df1f7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c237425df96bde3c175e3e0395d78d83\";a:5:{s:6:\"source\";s:32:\"c237425df96bde3c175e3e0395d78d83\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"69f7968b3fb1c148fed720a176700ccf\";a:5:{s:6:\"source\";s:32:\"69f7968b3fb1c148fed720a176700ccf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"75230c960239752f1c813ba5f9b8d242\";a:5:{s:6:\"source\";s:32:\"75230c960239752f1c813ba5f9b8d242\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"31bd25c7bd80a6b42c5036859576d52a\";a:5:{s:6:\"source\";s:32:\"31bd25c7bd80a6b42c5036859576d52a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"528427ccfaa6e53cdd4be2c571b44d09\";a:5:{s:6:\"source\";s:32:\"528427ccfaa6e53cdd4be2c571b44d09\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"094ceb480b9bbae11891147b4af49aed\";a:5:{s:6:\"source\";s:32:\"094ceb480b9bbae11891147b4af49aed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"906d7ac3a417eb8cd18b6ec4f8c3e40d\";a:5:{s:6:\"source\";s:32:\"906d7ac3a417eb8cd18b6ec4f8c3e40d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0db48f0ea7cf92d4a0693c581f03bcaf\";a:5:{s:6:\"source\";s:32:\"0db48f0ea7cf92d4a0693c581f03bcaf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a5beee40a06184e474fd8eb4770724a3\";a:5:{s:6:\"source\";s:32:\"a5beee40a06184e474fd8eb4770724a3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5fef958d134f1c48236a96b27cc136f5\";a:5:{s:6:\"source\";s:32:\"5fef958d134f1c48236a96b27cc136f5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"771e6c053f6efc638f8aeafb1e5838bb\";a:5:{s:6:\"source\";s:32:\"771e6c053f6efc638f8aeafb1e5838bb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2f9f2ee2bb2d216d701e7d09814df51e\";a:5:{s:6:\"source\";s:32:\"2f9f2ee2bb2d216d701e7d09814df51e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a6b682339b14677730df1a8cb724cf4b\";a:5:{s:6:\"source\";s:32:\"a6b682339b14677730df1a8cb724cf4b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"582cdfe473ce903c0da82524cc038ee7\";a:5:{s:6:\"source\";s:32:\"582cdfe473ce903c0da82524cc038ee7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e42b222e15655d9f181e18e26ea7d95d\";a:5:{s:6:\"source\";s:32:\"e42b222e15655d9f181e18e26ea7d95d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d8b2025039a05eea66b6b057639effd5\";a:5:{s:6:\"source\";s:32:\"d8b2025039a05eea66b6b057639effd5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"18f7f064614b811894de2c141693a6f6\";a:5:{s:6:\"source\";s:32:\"18f7f064614b811894de2c141693a6f6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"189e203d1d55f1047f10f3e5a27e641f\";a:5:{s:6:\"source\";s:32:\"189e203d1d55f1047f10f3e5a27e641f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"880e0ac4e9cf08ce2a6ffe9275f68de0\";a:5:{s:6:\"source\";s:32:\"880e0ac4e9cf08ce2a6ffe9275f68de0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ceee193cada6f3b39727c04c2961516d\";a:5:{s:6:\"source\";s:32:\"ceee193cada6f3b39727c04c2961516d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8d02163799f9adf908e30f8e4a8aedf9\";a:5:{s:6:\"source\";s:32:\"8d02163799f9adf908e30f8e4a8aedf9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f90dcc558cd586e5151c692ae2e0473a\";a:5:{s:6:\"source\";s:32:\"f90dcc558cd586e5151c692ae2e0473a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1466a63123e8d308b1a3f661c7d87850\";a:5:{s:6:\"source\";s:32:\"1466a63123e8d308b1a3f661c7d87850\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3b966081f0fa8d3e3718a538c3c3c958\";a:5:{s:6:\"source\";s:32:\"3b966081f0fa8d3e3718a538c3c3c958\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a0019fda9e7aee2177194224c94b7932\";a:5:{s:6:\"source\";s:32:\"a0019fda9e7aee2177194224c94b7932\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"44bb112b06cfad361349773a150e99af\";a:5:{s:6:\"source\";s:32:\"44bb112b06cfad361349773a150e99af\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a9f9ab8070e58b55925b00cb0c6539f2\";a:5:{s:6:\"source\";s:32:\"a9f9ab8070e58b55925b00cb0c6539f2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fcbcb5cd779eda87a44ac7fc1022d9ab\";a:5:{s:6:\"source\";s:32:\"fcbcb5cd779eda87a44ac7fc1022d9ab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5dca3caf3afdcc82a56ac14d4eafaf95\";a:5:{s:6:\"source\";s:32:\"5dca3caf3afdcc82a56ac14d4eafaf95\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fe75f0b733ce5593b11f056120b0002d\";a:5:{s:6:\"source\";s:32:\"fe75f0b733ce5593b11f056120b0002d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"872ab5d3f03e999be6d4a49ab31710f9\";a:5:{s:6:\"source\";s:32:\"872ab5d3f03e999be6d4a49ab31710f9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b609ee313bb4586d4e1cd4854aa5d4d1\";a:5:{s:6:\"source\";s:32:\"b609ee313bb4586d4e1cd4854aa5d4d1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f2eb4621f7d5a2e6244f858d6fc451f5\";a:5:{s:6:\"source\";s:32:\"f2eb4621f7d5a2e6244f858d6fc451f5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2d3a203f9dd421c50d3e569cb62112db\";a:5:{s:6:\"source\";s:32:\"2d3a203f9dd421c50d3e569cb62112db\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9c5e113b58db6931c643f772dd9090a3\";a:5:{s:6:\"source\";s:32:\"9c5e113b58db6931c643f772dd9090a3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ae9ca5effa013f90649f426ea8aa29ae\";a:5:{s:6:\"source\";s:32:\"ae9ca5effa013f90649f426ea8aa29ae\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b87b2cc81c053cf2578fdd62ce03926c\";a:5:{s:6:\"source\";s:32:\"b87b2cc81c053cf2578fdd62ce03926c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dfe04d4ac41446e5093abe75e1ba6162\";a:5:{s:6:\"source\";s:32:\"dfe04d4ac41446e5093abe75e1ba6162\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8109e3ee826f9b001a0c19c535f3e7eb\";a:5:{s:6:\"source\";s:32:\"8109e3ee826f9b001a0c19c535f3e7eb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6eba96f272f8289576556fa3d1671ae0\";a:5:{s:6:\"source\";s:32:\"6eba96f272f8289576556fa3d1671ae0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8903aba54190aca594cfc95635fee603\";a:5:{s:6:\"source\";s:32:\"8903aba54190aca594cfc95635fee603\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"177c7bfb63e6e87e4ae5b160ff41b818\";a:5:{s:6:\"source\";s:32:\"177c7bfb63e6e87e4ae5b160ff41b818\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"28ae385418ea052c6f57737fe3c862a5\";a:5:{s:6:\"source\";s:32:\"28ae385418ea052c6f57737fe3c862a5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"10b66113eb2288adda0bc5ed5c7894f6\";a:5:{s:6:\"source\";s:32:\"10b66113eb2288adda0bc5ed5c7894f6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f7ac0c8d6ac064cd631220e6d1ffa4da\";a:5:{s:6:\"source\";s:32:\"f7ac0c8d6ac064cd631220e6d1ffa4da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cb6418c547b3e4db6ee603f2668109dc\";a:5:{s:6:\"source\";s:32:\"cb6418c547b3e4db6ee603f2668109dc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f3d765ff3fe7d1378009c4e7f736f284\";a:5:{s:6:\"source\";s:32:\"f3d765ff3fe7d1378009c4e7f736f284\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d4b8e0556f4297e8bbf67aa7a7f03369\";a:5:{s:6:\"source\";s:32:\"d4b8e0556f4297e8bbf67aa7a7f03369\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9df403ba3ee24e719b5d203bd5566799\";a:5:{s:6:\"source\";s:32:\"9df403ba3ee24e719b5d203bd5566799\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0cfa9678a232660c1575cea1ee27cdfe\";a:5:{s:6:\"source\";s:32:\"0cfa9678a232660c1575cea1ee27cdfe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"31777dc3b4ebab481e5f0cf9b7b3b193\";a:5:{s:6:\"source\";s:32:\"31777dc3b4ebab481e5f0cf9b7b3b193\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"263608e4415153a746820b73a2fc1d9a\";a:5:{s:6:\"source\";s:32:\"263608e4415153a746820b73a2fc1d9a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9dba52adfc420a5bd092fb4706e4332f\";a:5:{s:6:\"source\";s:32:\"9dba52adfc420a5bd092fb4706e4332f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"df308b0d19cadbc36918103420eef0e3\";a:5:{s:6:\"source\";s:32:\"df308b0d19cadbc36918103420eef0e3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"94af448c54f97a2ac9e8cefd731bc6ba\";a:5:{s:6:\"source\";s:32:\"94af448c54f97a2ac9e8cefd731bc6ba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5eb7ed0dfafc6101c1a4d32c501f191f\";a:5:{s:6:\"source\";s:32:\"5eb7ed0dfafc6101c1a4d32c501f191f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"47bd64db4ad0074daf731ba624c13af1\";a:5:{s:6:\"source\";s:32:\"47bd64db4ad0074daf731ba624c13af1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"487f9fbf2ab67b850ae538618e7c31bd\";a:5:{s:6:\"source\";s:32:\"487f9fbf2ab67b850ae538618e7c31bd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6fe89e9ea0937826d9200890d1c5ef81\";a:5:{s:6:\"source\";s:32:\"6fe89e9ea0937826d9200890d1c5ef81\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f69e6eaaf029403bd830fdbea3277d63\";a:5:{s:6:\"source\";s:32:\"f69e6eaaf029403bd830fdbea3277d63\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c344a246b0023fa37bdf1288aac0c610\";a:5:{s:6:\"source\";s:32:\"c344a246b0023fa37bdf1288aac0c610\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1c1d39775eef9b49e4ccb12d9359b528\";a:5:{s:6:\"source\";s:32:\"1c1d39775eef9b49e4ccb12d9359b528\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d056540bc57d20aad0dfcfd40196dabc\";a:5:{s:6:\"source\";s:32:\"d056540bc57d20aad0dfcfd40196dabc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9cd09d7bdc759092c8d39c538e8d75f3\";a:5:{s:6:\"source\";s:32:\"9cd09d7bdc759092c8d39c538e8d75f3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e6f1f78a70a9d62d4e2a9833b9aef8eb\";a:5:{s:6:\"source\";s:32:\"e6f1f78a70a9d62d4e2a9833b9aef8eb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"42ac8225d72ae3ba476421ce8bebae9f\";a:5:{s:6:\"source\";s:32:\"42ac8225d72ae3ba476421ce8bebae9f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2bca612756e14d61a32c9c4d4586f581\";a:5:{s:6:\"source\";s:32:\"2bca612756e14d61a32c9c4d4586f581\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"880c881e0371355f56e161f561115798\";a:5:{s:6:\"source\";s:32:\"880c881e0371355f56e161f561115798\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"19cca1e46334520d14355acb81983554\";a:5:{s:6:\"source\";s:32:\"19cca1e46334520d14355acb81983554\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e1b1cd4a790156850e3bb0f4cd69a5f7\";a:5:{s:6:\"source\";s:32:\"e1b1cd4a790156850e3bb0f4cd69a5f7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a55bb516c1cdf5106092eae4cdcd82c4\";a:5:{s:6:\"source\";s:32:\"a55bb516c1cdf5106092eae4cdcd82c4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3417518a9cdf02b3932e32c34ff3d5d5\";a:5:{s:6:\"source\";s:32:\"3417518a9cdf02b3932e32c34ff3d5d5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1f65aa5498a25801d5234e3c539ca444\";a:5:{s:6:\"source\";s:32:\"1f65aa5498a25801d5234e3c539ca444\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fa152ebdd68155b4f6327d97c3f5bb3a\";a:5:{s:6:\"source\";s:32:\"fa152ebdd68155b4f6327d97c3f5bb3a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cfbe88b35046900768c2df87a4a74870\";a:5:{s:6:\"source\";s:32:\"cfbe88b35046900768c2df87a4a74870\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"60bc2bcb05f1e85950b076a9ad6e61d5\";a:5:{s:6:\"source\";s:32:\"60bc2bcb05f1e85950b076a9ad6e61d5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6d56b5c850f1855b16517fa0258c5836\";a:5:{s:6:\"source\";s:32:\"6d56b5c850f1855b16517fa0258c5836\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ee5035fd790d07e4b5638ad4d85ce4ef\";a:5:{s:6:\"source\";s:32:\"ee5035fd790d07e4b5638ad4d85ce4ef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1f9197e14b9d703c8881774176c6de21\";a:5:{s:6:\"source\";s:32:\"1f9197e14b9d703c8881774176c6de21\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"50fb959a74ef05176c793109b521cad0\";a:5:{s:6:\"source\";s:32:\"50fb959a74ef05176c793109b521cad0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"976992d0ba7bb28fb417f806794f0f03\";a:5:{s:6:\"source\";s:32:\"976992d0ba7bb28fb417f806794f0f03\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"354036acbde1f49ce26cf5ec3e354713\";a:5:{s:6:\"source\";s:32:\"354036acbde1f49ce26cf5ec3e354713\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3f861ac61928cc87e63854b9e2f2d9b7\";a:5:{s:6:\"source\";s:32:\"3f861ac61928cc87e63854b9e2f2d9b7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"674864198a51a6faf27cc8d5015c315e\";a:5:{s:6:\"source\";s:32:\"674864198a51a6faf27cc8d5015c315e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fbdc9ebc4dac97da65d2f21c05ecc655\";a:5:{s:6:\"source\";s:32:\"fbdc9ebc4dac97da65d2f21c05ecc655\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c50cbd61cf385199e5b31ca24f267d71\";a:5:{s:6:\"source\";s:32:\"c50cbd61cf385199e5b31ca24f267d71\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6fbcf10985ec88f2117a43fec7f62a30\";a:5:{s:6:\"source\";s:32:\"6fbcf10985ec88f2117a43fec7f62a30\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9e2bcbbe979873a87f848911e5990424\";a:5:{s:6:\"source\";s:32:\"9e2bcbbe979873a87f848911e5990424\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f9f6a9b2561f7de3729e850a4902b845\";a:5:{s:6:\"source\";s:32:\"f9f6a9b2561f7de3729e850a4902b845\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3375ccb8829f121c2f84ae0432002bb3\";a:5:{s:6:\"source\";s:32:\"3375ccb8829f121c2f84ae0432002bb3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"95a1c9030650f8b6ef2efacfb7e5d28b\";a:5:{s:6:\"source\";s:32:\"95a1c9030650f8b6ef2efacfb7e5d28b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef5b23343d1b73c681bc0a6a3c946d2f\";a:5:{s:6:\"source\";s:32:\"ef5b23343d1b73c681bc0a6a3c946d2f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cb62688131ae0fab9972a5db693b3c46\";a:5:{s:6:\"source\";s:32:\"cb62688131ae0fab9972a5db693b3c46\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7258bd78db206ef867709fabcb07ebd5\";a:5:{s:6:\"source\";s:32:\"7258bd78db206ef867709fabcb07ebd5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"51986e1106a073d3460087194b36d51b\";a:5:{s:6:\"source\";s:32:\"51986e1106a073d3460087194b36d51b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bd36f1a9c755100ac8686554b28b6c08\";a:5:{s:6:\"source\";s:32:\"bd36f1a9c755100ac8686554b28b6c08\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3a02e09f971d68e6840bafc9cbc94b93\";a:5:{s:6:\"source\";s:32:\"3a02e09f971d68e6840bafc9cbc94b93\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0eb65af6257e9c4dc3ccc92b13d5cefd\";a:5:{s:6:\"source\";s:32:\"0eb65af6257e9c4dc3ccc92b13d5cefd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8f31c3ce996850da3175e38f02c6f704\";a:5:{s:6:\"source\";s:32:\"8f31c3ce996850da3175e38f02c6f704\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"904101eaf42481f4fbd3097ed1de366a\";a:5:{s:6:\"source\";s:32:\"904101eaf42481f4fbd3097ed1de366a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ffb4f37a9351c9ad051799d19f5e7e98\";a:5:{s:6:\"source\";s:32:\"ffb4f37a9351c9ad051799d19f5e7e98\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"378a033cd6a86d0fa11dbb25d7a8a9f6\";a:5:{s:6:\"source\";s:32:\"378a033cd6a86d0fa11dbb25d7a8a9f6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"31884a8524a4e6c020269b32c01393c0\";a:5:{s:6:\"source\";s:32:\"31884a8524a4e6c020269b32c01393c0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5c320d1706ae6b34f0ee648894d7972e\";a:5:{s:6:\"source\";s:32:\"5c320d1706ae6b34f0ee648894d7972e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f187bf071f9348c2192a278d5330615e\";a:5:{s:6:\"source\";s:32:\"f187bf071f9348c2192a278d5330615e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"de5951d06809383347fc6cfa1a2c1a8b\";a:5:{s:6:\"source\";s:32:\"de5951d06809383347fc6cfa1a2c1a8b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4180728035ae67bd2bcedc793db54d35\";a:5:{s:6:\"source\";s:32:\"4180728035ae67bd2bcedc793db54d35\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0be4ba465d2731e5a6de5bb4417d6755\";a:5:{s:6:\"source\";s:32:\"0be4ba465d2731e5a6de5bb4417d6755\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1699d4337569dfff515044fd9130f797\";a:5:{s:6:\"source\";s:32:\"1699d4337569dfff515044fd9130f797\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"feb3442eda3ba5ca60bedad397ee9653\";a:5:{s:6:\"source\";s:32:\"feb3442eda3ba5ca60bedad397ee9653\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a64b772715d261218801c68551623bb5\";a:5:{s:6:\"source\";s:32:\"a64b772715d261218801c68551623bb5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f941aabf910fe21817965f0e64a457ac\";a:5:{s:6:\"source\";s:32:\"f941aabf910fe21817965f0e64a457ac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1bf370258bcc49533a151fa9462541fa\";a:5:{s:6:\"source\";s:32:\"1bf370258bcc49533a151fa9462541fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b2323dbe041cb29bc6e9e8190285b833\";a:5:{s:6:\"source\";s:32:\"b2323dbe041cb29bc6e9e8190285b833\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3d82e27bdf8e235e273ac121eb0cfa9e\";a:5:{s:6:\"source\";s:32:\"3d82e27bdf8e235e273ac121eb0cfa9e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef066d7f5060d1360e3066cbeae79611\";a:5:{s:6:\"source\";s:32:\"ef066d7f5060d1360e3066cbeae79611\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e25d7c03f8be5ae302ffd89961d81db5\";a:5:{s:6:\"source\";s:32:\"e25d7c03f8be5ae302ffd89961d81db5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"60a5909cfda56ddb7bda7f12aef31927\";a:5:{s:6:\"source\";s:32:\"60a5909cfda56ddb7bda7f12aef31927\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"afd7ee6d1ad291a84a8bc041ba7811fc\";a:5:{s:6:\"source\";s:32:\"afd7ee6d1ad291a84a8bc041ba7811fc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2bd82c13ca319cf575c632e5ad2a8d9d\";a:5:{s:6:\"source\";s:32:\"2bd82c13ca319cf575c632e5ad2a8d9d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9e092855f0088c09caf3ab0c5db37cfc\";a:5:{s:6:\"source\";s:32:\"9e092855f0088c09caf3ab0c5db37cfc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e5b74d043750e7d2288df7d2b1132123\";a:5:{s:6:\"source\";s:32:\"e5b74d043750e7d2288df7d2b1132123\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"80999d64898e9828350f77220ea6e18b\";a:5:{s:6:\"source\";s:32:\"80999d64898e9828350f77220ea6e18b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7fbc3bdec9abe64dda2804e2c176bbc3\";a:5:{s:6:\"source\";s:32:\"7fbc3bdec9abe64dda2804e2c176bbc3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6f7000f21dd62bbbe98ca33528a8dedc\";a:5:{s:6:\"source\";s:32:\"6f7000f21dd62bbbe98ca33528a8dedc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5b9f68be6387ee273f634e8cdbddf965\";a:5:{s:6:\"source\";s:32:\"5b9f68be6387ee273f634e8cdbddf965\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fd4ce31fdad4c7104e11d4bc41436de3\";a:5:{s:6:\"source\";s:32:\"fd4ce31fdad4c7104e11d4bc41436de3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5ecc5a78dc7b2fdeba68e7e85100c2c8\";a:5:{s:6:\"source\";s:32:\"5ecc5a78dc7b2fdeba68e7e85100c2c8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"07da06d24d0b34d02384792743c96583\";a:5:{s:6:\"source\";s:32:\"07da06d24d0b34d02384792743c96583\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a71037c1bd01d2b2098a93a452603af7\";a:5:{s:6:\"source\";s:32:\"a71037c1bd01d2b2098a93a452603af7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3a2d540148e51afd32a375b5ccd67526\";a:5:{s:6:\"source\";s:32:\"3a2d540148e51afd32a375b5ccd67526\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4993ca836cae268272a8b81ac144133a\";a:5:{s:6:\"source\";s:32:\"4993ca836cae268272a8b81ac144133a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dc2c53aabb3c06ba5d53e18006bd21b5\";a:5:{s:6:\"source\";s:32:\"dc2c53aabb3c06ba5d53e18006bd21b5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5ef21399b1b00afac66183697f516127\";a:5:{s:6:\"source\";s:32:\"5ef21399b1b00afac66183697f516127\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"01cb3ce48aad54c6d972cab449df5536\";a:5:{s:6:\"source\";s:32:\"01cb3ce48aad54c6d972cab449df5536\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"be89414084545aecceaa01131695d4c5\";a:5:{s:6:\"source\";s:32:\"be89414084545aecceaa01131695d4c5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e99596f4f7b77ea6286f27d1e480b07d\";a:5:{s:6:\"source\";s:32:\"e99596f4f7b77ea6286f27d1e480b07d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"88331c0033de3b2a331c15705258a056\";a:5:{s:6:\"source\";s:32:\"88331c0033de3b2a331c15705258a056\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"222d9177b3ea9aef9612d6bd133a3adb\";a:5:{s:6:\"source\";s:32:\"222d9177b3ea9aef9612d6bd133a3adb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a00f60ea5c54bdb2b7a200e25e223010\";a:5:{s:6:\"source\";s:32:\"a00f60ea5c54bdb2b7a200e25e223010\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7b5bd0c449a2ae208200cd8a060cb7f8\";a:5:{s:6:\"source\";s:32:\"7b5bd0c449a2ae208200cd8a060cb7f8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3243aa70692cf94e9924b4b3da0993f4\";a:5:{s:6:\"source\";s:32:\"3243aa70692cf94e9924b4b3da0993f4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"21b89ac33939286e159886d43ff408e0\";a:5:{s:6:\"source\";s:32:\"21b89ac33939286e159886d43ff408e0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"99c1bf9008114e072598573e70cf9741\";a:5:{s:6:\"source\";s:32:\"99c1bf9008114e072598573e70cf9741\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f7f2522d512544b77090dc2def2504fb\";a:5:{s:6:\"source\";s:32:\"f7f2522d512544b77090dc2def2504fb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4062d0f526d63c41d695d4be2ed63070\";a:5:{s:6:\"source\";s:32:\"4062d0f526d63c41d695d4be2ed63070\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c2c20390b50b34d2b247205e9c28e1d\";a:5:{s:6:\"source\";s:32:\"3c2c20390b50b34d2b247205e9c28e1d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1a579dd40acc4e27f6124302dbf32983\";a:5:{s:6:\"source\";s:32:\"1a579dd40acc4e27f6124302dbf32983\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e6c1eafb1a5a6f7a22ae8098242efc58\";a:5:{s:6:\"source\";s:32:\"e6c1eafb1a5a6f7a22ae8098242efc58\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aa513ecef343b440cfa9ee265f13e145\";a:5:{s:6:\"source\";s:32:\"aa513ecef343b440cfa9ee265f13e145\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7b2bc05151526ee0ff7c62db83d4c742\";a:5:{s:6:\"source\";s:32:\"7b2bc05151526ee0ff7c62db83d4c742\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"398341959c4042f1c166bdcf98136dba\";a:5:{s:6:\"source\";s:32:\"398341959c4042f1c166bdcf98136dba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1fafd984f1480dde65c0fea6507ea6d5\";a:5:{s:6:\"source\";s:32:\"1fafd984f1480dde65c0fea6507ea6d5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8b6ad63c61507ffbac8d6a8ecb062129\";a:5:{s:6:\"source\";s:32:\"8b6ad63c61507ffbac8d6a8ecb062129\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c6a819e0c3f92b72f49e7abfa9f510ab\";a:5:{s:6:\"source\";s:32:\"c6a819e0c3f92b72f49e7abfa9f510ab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e6453ffc5c1928d091a6f979aef2912d\";a:5:{s:6:\"source\";s:32:\"e6453ffc5c1928d091a6f979aef2912d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8de1958c2666d2eb2db8bdf0475b02e9\";a:5:{s:6:\"source\";s:32:\"8de1958c2666d2eb2db8bdf0475b02e9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6c25a97825b725c73348b0e53829a1fa\";a:5:{s:6:\"source\";s:32:\"6c25a97825b725c73348b0e53829a1fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f95f31608f5c8938efbee018a3b0944a\";a:5:{s:6:\"source\";s:32:\"f95f31608f5c8938efbee018a3b0944a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9f3cb06069ad217ce8c21183270bf347\";a:5:{s:6:\"source\";s:32:\"9f3cb06069ad217ce8c21183270bf347\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"55c6f3f0d9b1165f2061031c3f9a368c\";a:5:{s:6:\"source\";s:32:\"55c6f3f0d9b1165f2061031c3f9a368c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b1dada4bb05e874f7f0aa9576f865cec\";a:5:{s:6:\"source\";s:32:\"b1dada4bb05e874f7f0aa9576f865cec\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d7ade9ed1869a605ca4c36155a1ebf13\";a:5:{s:6:\"source\";s:32:\"d7ade9ed1869a605ca4c36155a1ebf13\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"06feb83f3f9d2876bb3ba73b8390e600\";a:5:{s:6:\"source\";s:32:\"06feb83f3f9d2876bb3ba73b8390e600\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef029a510fdb9cf969e7b9bf8d0aec3f\";a:5:{s:6:\"source\";s:32:\"ef029a510fdb9cf969e7b9bf8d0aec3f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1bd0dce9ad6fd699f5491b310c206675\";a:5:{s:6:\"source\";s:32:\"1bd0dce9ad6fd699f5491b310c206675\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"11813cbdc4e139642e62a25f25530ba1\";a:5:{s:6:\"source\";s:32:\"11813cbdc4e139642e62a25f25530ba1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f794c1431ed2b909d41269e30fcadffe\";a:5:{s:6:\"source\";s:32:\"f794c1431ed2b909d41269e30fcadffe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"77cb3e495f2734ea1ee94ae689169aca\";a:5:{s:6:\"source\";s:32:\"77cb3e495f2734ea1ee94ae689169aca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6c3415511ff3031e349d53deed8705ce\";a:5:{s:6:\"source\";s:32:\"6c3415511ff3031e349d53deed8705ce\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0406c222df3cfa4359177046a9d9aa4a\";a:5:{s:6:\"source\";s:32:\"0406c222df3cfa4359177046a9d9aa4a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2959b1e5cf8a6f2e34d0d676b3e0616b\";a:5:{s:6:\"source\";s:32:\"2959b1e5cf8a6f2e34d0d676b3e0616b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1f5fe7fc2cc58638f3f7a3b2d4ec2ba9\";a:5:{s:6:\"source\";s:32:\"1f5fe7fc2cc58638f3f7a3b2d4ec2ba9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d2e43f99a960c9cc8ddf5a21743ae6b\";a:5:{s:6:\"source\";s:32:\"4d2e43f99a960c9cc8ddf5a21743ae6b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"671b4bc4813b4cd7396553bd7d4d2943\";a:5:{s:6:\"source\";s:32:\"671b4bc4813b4cd7396553bd7d4d2943\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"813b0b6ac443f65c1cebffcaa160d6e3\";a:5:{s:6:\"source\";s:32:\"813b0b6ac443f65c1cebffcaa160d6e3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"857f5bc379a07583f98140c742b4c73e\";a:5:{s:6:\"source\";s:32:\"857f5bc379a07583f98140c742b4c73e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"975da6255dde695b372d29952f2cc33d\";a:5:{s:6:\"source\";s:32:\"975da6255dde695b372d29952f2cc33d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6aabcfabbde2d0b5270393a3057d8931\";a:5:{s:6:\"source\";s:32:\"6aabcfabbde2d0b5270393a3057d8931\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"21586acc9c3079e8fdd59039d21167cf\";a:5:{s:6:\"source\";s:32:\"21586acc9c3079e8fdd59039d21167cf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"587c74cf76a576a829739d5e9e0288c6\";a:5:{s:6:\"source\";s:32:\"587c74cf76a576a829739d5e9e0288c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0d76d2ff7cdfca8d146c279299a47770\";a:5:{s:6:\"source\";s:32:\"0d76d2ff7cdfca8d146c279299a47770\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"196199c89e6ad81f0643c7778b02997a\";a:5:{s:6:\"source\";s:32:\"196199c89e6ad81f0643c7778b02997a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d9147c75e8c3003e378c7879ca1e334d\";a:5:{s:6:\"source\";s:32:\"d9147c75e8c3003e378c7879ca1e334d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ae25e29d5ccad28a9058ef726569010b\";a:5:{s:6:\"source\";s:32:\"ae25e29d5ccad28a9058ef726569010b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ab1367f4aaca2762af2fced321061f31\";a:5:{s:6:\"source\";s:32:\"ab1367f4aaca2762af2fced321061f31\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8e97fec70b4ba7e036f9f7f5b3d0e306\";a:5:{s:6:\"source\";s:32:\"8e97fec70b4ba7e036f9f7f5b3d0e306\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff8d3286fff1b5d4850bb4c8cdc65ab3\";a:5:{s:6:\"source\";s:32:\"ff8d3286fff1b5d4850bb4c8cdc65ab3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"763b8bbe24b2a088f31c214640a63338\";a:5:{s:6:\"source\";s:32:\"763b8bbe24b2a088f31c214640a63338\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eb1478cadffac7e842551e02e39993be\";a:5:{s:6:\"source\";s:32:\"eb1478cadffac7e842551e02e39993be\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"03ea471273a5a066d6f65d827426b49c\";a:5:{s:6:\"source\";s:32:\"03ea471273a5a066d6f65d827426b49c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eccc9e04411c8f2d2c10b9b09c0fb0bd\";a:5:{s:6:\"source\";s:32:\"eccc9e04411c8f2d2c10b9b09c0fb0bd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6a93543c7b84f3e0b663641f678783ba\";a:5:{s:6:\"source\";s:32:\"6a93543c7b84f3e0b663641f678783ba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fad4d9d25d47642a59e665a11faadd40\";a:5:{s:6:\"source\";s:32:\"fad4d9d25d47642a59e665a11faadd40\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d0de7a5b8500d9fc18ff4dff1129a198\";a:5:{s:6:\"source\";s:32:\"d0de7a5b8500d9fc18ff4dff1129a198\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4618e595b9caa9bb5c3e98592806a2f2\";a:5:{s:6:\"source\";s:32:\"4618e595b9caa9bb5c3e98592806a2f2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8694e3f6b75b3376a12c6546983ac009\";a:5:{s:6:\"source\";s:32:\"8694e3f6b75b3376a12c6546983ac009\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"911e4e8728e8fb1aa1050f8fdbda27c2\";a:5:{s:6:\"source\";s:32:\"911e4e8728e8fb1aa1050f8fdbda27c2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"99bf3d1dc696178440d5a8ad479fdecb\";a:5:{s:6:\"source\";s:32:\"99bf3d1dc696178440d5a8ad479fdecb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bea980bd158563f0b1fc8fa2f0e5d3b0\";a:5:{s:6:\"source\";s:32:\"bea980bd158563f0b1fc8fa2f0e5d3b0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"be336b2da2c84d9b04fe611cf9c6c248\";a:5:{s:6:\"source\";s:32:\"be336b2da2c84d9b04fe611cf9c6c248\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"61fda41d6c6a689c31f71f8f7eb4dc79\";a:5:{s:6:\"source\";s:32:\"61fda41d6c6a689c31f71f8f7eb4dc79\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"184b0da963c5953b3b3866095d3bb539\";a:5:{s:6:\"source\";s:32:\"184b0da963c5953b3b3866095d3bb539\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2ffae2ad97542fc9d57573b1c9b46934\";a:5:{s:6:\"source\";s:32:\"2ffae2ad97542fc9d57573b1c9b46934\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ed5797a74e90bc6a748b40a90d23a73\";a:5:{s:6:\"source\";s:32:\"8ed5797a74e90bc6a748b40a90d23a73\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6509d55de3d910c43a0db5928c4be3e4\";a:5:{s:6:\"source\";s:32:\"6509d55de3d910c43a0db5928c4be3e4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cd2aa8f32bd87851caaa1832303626b5\";a:5:{s:6:\"source\";s:32:\"cd2aa8f32bd87851caaa1832303626b5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"29abfa3e87b52bf4ea0d6ac600b90ba4\";a:5:{s:6:\"source\";s:32:\"29abfa3e87b52bf4ea0d6ac600b90ba4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b596ef1729912d2f084c891adc95c19f\";a:5:{s:6:\"source\";s:32:\"b596ef1729912d2f084c891adc95c19f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"50804788a22a7a49dc29aa124e2a281e\";a:5:{s:6:\"source\";s:32:\"50804788a22a7a49dc29aa124e2a281e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3e1a6097c7c9a0d1a6d1602e8fa93605\";a:5:{s:6:\"source\";s:32:\"3e1a6097c7c9a0d1a6d1602e8fa93605\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4bbace55e620a0398da3bb9c895710fe\";a:5:{s:6:\"source\";s:32:\"4bbace55e620a0398da3bb9c895710fe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"be89bff926bf76b1abff0d7dceb442c7\";a:5:{s:6:\"source\";s:32:\"be89bff926bf76b1abff0d7dceb442c7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b8ae5c89e55b0d98577834acdb80dca2\";a:5:{s:6:\"source\";s:32:\"b8ae5c89e55b0d98577834acdb80dca2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cf03e4c62202b3e5f3e3724634b20992\";a:5:{s:6:\"source\";s:32:\"cf03e4c62202b3e5f3e3724634b20992\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3fc7654b43f4126e7534805799ec2c29\";a:5:{s:6:\"source\";s:32:\"3fc7654b43f4126e7534805799ec2c29\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5c593a1a8f58a8f86565e1f83aeffd6f\";a:5:{s:6:\"source\";s:32:\"5c593a1a8f58a8f86565e1f83aeffd6f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a8c67c73b8cd75b0648e51d6da7e095c\";a:5:{s:6:\"source\";s:32:\"a8c67c73b8cd75b0648e51d6da7e095c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7c730e7d7074efb26fcb9d0312004814\";a:5:{s:6:\"source\";s:32:\"7c730e7d7074efb26fcb9d0312004814\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eed43bb6e0abcf1100a51dea68239c90\";a:5:{s:6:\"source\";s:32:\"eed43bb6e0abcf1100a51dea68239c90\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0ec681ecee4ccbe1758076085f437200\";a:5:{s:6:\"source\";s:32:\"0ec681ecee4ccbe1758076085f437200\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"77b48323ff4258cd8392389664476bb2\";a:5:{s:6:\"source\";s:32:\"77b48323ff4258cd8392389664476bb2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a3afbb63bc7786ead4b9f476caab83a7\";a:5:{s:6:\"source\";s:32:\"a3afbb63bc7786ead4b9f476caab83a7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4c57acc7088aa64c5b5ba98dffd39ff6\";a:5:{s:6:\"source\";s:32:\"4c57acc7088aa64c5b5ba98dffd39ff6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cfab68354d13df2bd5a7e91d877ec3be\";a:5:{s:6:\"source\";s:32:\"cfab68354d13df2bd5a7e91d877ec3be\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"25fe90cf1a5a344173e8e78af0f03759\";a:5:{s:6:\"source\";s:32:\"25fe90cf1a5a344173e8e78af0f03759\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"40a567c36f43a4d39e709d4c0bfc0fed\";a:5:{s:6:\"source\";s:32:\"40a567c36f43a4d39e709d4c0bfc0fed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6999babdef6bf1dd657aebb5a13ef2a0\";a:5:{s:6:\"source\";s:32:\"6999babdef6bf1dd657aebb5a13ef2a0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"76d53401f7ece30389ae8342961e8400\";a:5:{s:6:\"source\";s:32:\"76d53401f7ece30389ae8342961e8400\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"73d0a5cf7e09989208ff0a4b85fa2a5c\";a:5:{s:6:\"source\";s:32:\"73d0a5cf7e09989208ff0a4b85fa2a5c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"33e4fa88c0cd244f5c01a3a542350ceb\";a:5:{s:6:\"source\";s:32:\"33e4fa88c0cd244f5c01a3a542350ceb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ba3ec69318eb8c528af5721b22e4c188\";a:5:{s:6:\"source\";s:32:\"ba3ec69318eb8c528af5721b22e4c188\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0cb4964c821fb8cc54a97493f3e895fd\";a:5:{s:6:\"source\";s:32:\"0cb4964c821fb8cc54a97493f3e895fd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d0b9a7ed30acd097ac573c731d6923c6\";a:5:{s:6:\"source\";s:32:\"d0b9a7ed30acd097ac573c731d6923c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7e9c4cd61e9cb75474b21fab485b0e1b\";a:5:{s:6:\"source\";s:32:\"7e9c4cd61e9cb75474b21fab485b0e1b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fc181ff3b5217d8104e933c842d12a43\";a:5:{s:6:\"source\";s:32:\"fc181ff3b5217d8104e933c842d12a43\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d242e4eaebd99983fd68ec858547599d\";a:5:{s:6:\"source\";s:32:\"d242e4eaebd99983fd68ec858547599d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f58ad3d0a84ab18df214f0e17bc5cad8\";a:5:{s:6:\"source\";s:32:\"f58ad3d0a84ab18df214f0e17bc5cad8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6cac4df6e57fdca1cc375fafc3da8961\";a:5:{s:6:\"source\";s:32:\"6cac4df6e57fdca1cc375fafc3da8961\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bde96b6fdabbc76d9e7fc55dbdf2e35e\";a:5:{s:6:\"source\";s:32:\"bde96b6fdabbc76d9e7fc55dbdf2e35e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e18ec979179655c82d59384078cc9254\";a:5:{s:6:\"source\";s:32:\"e18ec979179655c82d59384078cc9254\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8473d4142d909b50db90433cf3154ccd\";a:5:{s:6:\"source\";s:32:\"8473d4142d909b50db90433cf3154ccd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"50d00074828a74e80aed6d0aedbde597\";a:5:{s:6:\"source\";s:32:\"50d00074828a74e80aed6d0aedbde597\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1e5dc32ba3d701e410780034c07e4264\";a:5:{s:6:\"source\";s:32:\"1e5dc32ba3d701e410780034c07e4264\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1265ebd96d749c64b531493473872059\";a:5:{s:6:\"source\";s:32:\"1265ebd96d749c64b531493473872059\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"10b50096ca801efaebc36b2f8e6bb27e\";a:5:{s:6:\"source\";s:32:\"10b50096ca801efaebc36b2f8e6bb27e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d32380a0db2923ec5431ead03ffd189\";a:5:{s:6:\"source\";s:32:\"4d32380a0db2923ec5431ead03ffd189\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9d1122cc5a65be86195710e864af8e24\";a:5:{s:6:\"source\";s:32:\"9d1122cc5a65be86195710e864af8e24\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bc14c2b694b6fac2d8d124817f635c56\";a:5:{s:6:\"source\";s:32:\"bc14c2b694b6fac2d8d124817f635c56\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2a08f39595efd218be23d399c3d85239\";a:5:{s:6:\"source\";s:32:\"2a08f39595efd218be23d399c3d85239\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a177aa0f68a36e32b2231d285dbe9861\";a:5:{s:6:\"source\";s:32:\"a177aa0f68a36e32b2231d285dbe9861\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5878c744327f650d510d1a8c8f5c86de\";a:5:{s:6:\"source\";s:32:\"5878c744327f650d510d1a8c8f5c86de\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"19fc9a1451dcf4c02375519fa4a93ede\";a:5:{s:6:\"source\";s:32:\"19fc9a1451dcf4c02375519fa4a93ede\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b4416d464a03d70cec4718f58c42ecbc\";a:5:{s:6:\"source\";s:32:\"b4416d464a03d70cec4718f58c42ecbc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7abfd12eddcb7d29b9a27bf3857adf3b\";a:5:{s:6:\"source\";s:32:\"7abfd12eddcb7d29b9a27bf3857adf3b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e331a1b92b11ebc067884bb37e77b63e\";a:5:{s:6:\"source\";s:32:\"e331a1b92b11ebc067884bb37e77b63e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"61db32f051bdcc480ceb370580322d40\";a:5:{s:6:\"source\";s:32:\"61db32f051bdcc480ceb370580322d40\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e86f4c6d6148e623acf55ce2eec9cbd2\";a:5:{s:6:\"source\";s:32:\"e86f4c6d6148e623acf55ce2eec9cbd2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"43ca92f40de398fd3d1cd98e6c84fc7a\";a:5:{s:6:\"source\";s:32:\"43ca92f40de398fd3d1cd98e6c84fc7a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b4b0249deb3b9cf333711a84dee7aee3\";a:5:{s:6:\"source\";s:32:\"b4b0249deb3b9cf333711a84dee7aee3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c6ee7e7306c7983856651ecea45a83ed\";a:5:{s:6:\"source\";s:32:\"c6ee7e7306c7983856651ecea45a83ed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"85d7134193ceb375dccc2d0bd83447a5\";a:5:{s:6:\"source\";s:32:\"85d7134193ceb375dccc2d0bd83447a5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fd5ffb629855d038d2a822a968f85f8c\";a:5:{s:6:\"source\";s:32:\"fd5ffb629855d038d2a822a968f85f8c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff7aaccf9fa2cda1e641e8a8d0affe2c\";a:5:{s:6:\"source\";s:32:\"ff7aaccf9fa2cda1e641e8a8d0affe2c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7d07a8cc133c1e032ddb0e73db3007bc\";a:5:{s:6:\"source\";s:32:\"7d07a8cc133c1e032ddb0e73db3007bc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0c756ea77a46e584bc9e7cd10f98a704\";a:5:{s:6:\"source\";s:32:\"0c756ea77a46e584bc9e7cd10f98a704\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"427aaba8277b5c21294269aa791da4b5\";a:5:{s:6:\"source\";s:32:\"427aaba8277b5c21294269aa791da4b5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2dbfdd5677c93f2878865a04b01de4e9\";a:5:{s:6:\"source\";s:32:\"2dbfdd5677c93f2878865a04b01de4e9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6fd3ff45053252ec73ba3507f9fe4e75\";a:5:{s:6:\"source\";s:32:\"6fd3ff45053252ec73ba3507f9fe4e75\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f48345d9c0810b97506f23a1132b522f\";a:5:{s:6:\"source\";s:32:\"f48345d9c0810b97506f23a1132b522f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"92841b45bdcac2ddfcce48127b3b86c6\";a:5:{s:6:\"source\";s:32:\"92841b45bdcac2ddfcce48127b3b86c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b3d12d726478faf5a77bb54e22b0425c\";a:5:{s:6:\"source\";s:32:\"b3d12d726478faf5a77bb54e22b0425c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b855b04c6f770f31c653328b09812f1d\";a:5:{s:6:\"source\";s:32:\"b855b04c6f770f31c653328b09812f1d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"803d26caf19966103f464afa77c2a87c\";a:5:{s:6:\"source\";s:32:\"803d26caf19966103f464afa77c2a87c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4f652ba047b1212cd1406929c0e767a7\";a:5:{s:6:\"source\";s:32:\"4f652ba047b1212cd1406929c0e767a7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"81b34e0a367b1fc12f7327dc37a20e0a\";a:5:{s:6:\"source\";s:32:\"81b34e0a367b1fc12f7327dc37a20e0a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a715631ab16325f1142a2956e6a5c09f\";a:5:{s:6:\"source\";s:32:\"a715631ab16325f1142a2956e6a5c09f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4a405db00120f4a85383e4fa3c3513cc\";a:5:{s:6:\"source\";s:32:\"4a405db00120f4a85383e4fa3c3513cc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5d33c2d5ddf1b9fd491b8944ce14ba16\";a:5:{s:6:\"source\";s:32:\"5d33c2d5ddf1b9fd491b8944ce14ba16\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7095b242d37e3ef3625310c0eb144de8\";a:5:{s:6:\"source\";s:32:\"7095b242d37e3ef3625310c0eb144de8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a699ede63a5b24798f6502b034de3165\";a:5:{s:6:\"source\";s:32:\"a699ede63a5b24798f6502b034de3165\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d7dd2ab2526ef986f68bad2665fa0aa2\";a:5:{s:6:\"source\";s:32:\"d7dd2ab2526ef986f68bad2665fa0aa2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ee0a72c23e6d02b3d0c9a51c1b288aff\";a:5:{s:6:\"source\";s:32:\"ee0a72c23e6d02b3d0c9a51c1b288aff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"81b22934fd0f314d990cd72f19443fd8\";a:5:{s:6:\"source\";s:32:\"81b22934fd0f314d990cd72f19443fd8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4c94b63bdc7e42e3368e04ab9c77f41d\";a:5:{s:6:\"source\";s:32:\"4c94b63bdc7e42e3368e04ab9c77f41d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f5a026c6a2d2a7277071abed1fcb44d9\";a:5:{s:6:\"source\";s:32:\"f5a026c6a2d2a7277071abed1fcb44d9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"09fcd580934868fc795d6428cda5af52\";a:5:{s:6:\"source\";s:32:\"09fcd580934868fc795d6428cda5af52\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"68808c92a62a016be731e9b6185350ac\";a:5:{s:6:\"source\";s:32:\"68808c92a62a016be731e9b6185350ac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3dede0266a50197a6e0b5e9751ff36ce\";a:5:{s:6:\"source\";s:32:\"3dede0266a50197a6e0b5e9751ff36ce\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e777414c73ccf4066063f44602e092ee\";a:5:{s:6:\"source\";s:32:\"e777414c73ccf4066063f44602e092ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3bca8ac2be5bf43fb6f2c2621b5b43dc\";a:5:{s:6:\"source\";s:32:\"3bca8ac2be5bf43fb6f2c2621b5b43dc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f7156ed5d5b2df2aff7093465d3b933f\";a:5:{s:6:\"source\";s:32:\"f7156ed5d5b2df2aff7093465d3b933f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a2c8594ecb91462b8f2ccb114f1ae267\";a:5:{s:6:\"source\";s:32:\"a2c8594ecb91462b8f2ccb114f1ae267\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b24d877403c2c52530c11ee8a2cb7534\";a:5:{s:6:\"source\";s:32:\"b24d877403c2c52530c11ee8a2cb7534\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6325455b32ed96d4ab3e4c351aaf4645\";a:5:{s:6:\"source\";s:32:\"6325455b32ed96d4ab3e4c351aaf4645\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8c3ada987d71cf89c242ec3752590329\";a:5:{s:6:\"source\";s:32:\"8c3ada987d71cf89c242ec3752590329\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"23139c8cb2977b4e2af9f59e54febd6c\";a:5:{s:6:\"source\";s:32:\"23139c8cb2977b4e2af9f59e54febd6c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a870b54eda5119d35e443f065e215241\";a:5:{s:6:\"source\";s:32:\"a870b54eda5119d35e443f065e215241\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3d031116ed0dcda981607df4158bcbb9\";a:5:{s:6:\"source\";s:32:\"3d031116ed0dcda981607df4158bcbb9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d34d1aedc00ce6364c59c1ef8df067ae\";a:5:{s:6:\"source\";s:32:\"d34d1aedc00ce6364c59c1ef8df067ae\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c2edaf24ec31c2719ae66d6a35d4419\";a:5:{s:6:\"source\";s:32:\"2c2edaf24ec31c2719ae66d6a35d4419\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"afc439f5a44fc5a21c2dd02b791e1310\";a:5:{s:6:\"source\";s:32:\"afc439f5a44fc5a21c2dd02b791e1310\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e4711a78f6b60a1358103173f038a500\";a:5:{s:6:\"source\";s:32:\"e4711a78f6b60a1358103173f038a500\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e3384630c740633d369aa873b31e3fe8\";a:5:{s:6:\"source\";s:32:\"e3384630c740633d369aa873b31e3fe8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"35ed3976e881be6c4cc14b74b63364ea\";a:5:{s:6:\"source\";s:32:\"35ed3976e881be6c4cc14b74b63364ea\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"711cf9f233c068a20846a757f592c87d\";a:5:{s:6:\"source\";s:32:\"711cf9f233c068a20846a757f592c87d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e04b22ed1c6a19a10057e5e3b1e0fa37\";a:5:{s:6:\"source\";s:32:\"e04b22ed1c6a19a10057e5e3b1e0fa37\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a9631cf444fbfecbd75cb3fdac271903\";a:5:{s:6:\"source\";s:32:\"a9631cf444fbfecbd75cb3fdac271903\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"579bffa7328501ad68c564eace4e56e7\";a:5:{s:6:\"source\";s:32:\"579bffa7328501ad68c564eace4e56e7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"64876d2d168fda3cfc9392e0735b37b9\";a:5:{s:6:\"source\";s:32:\"64876d2d168fda3cfc9392e0735b37b9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c5aa9771506d58f7ebfe739b93b31e00\";a:5:{s:6:\"source\";s:32:\"c5aa9771506d58f7ebfe739b93b31e00\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5446c9f0c1d45cacdb1c388c38903f7e\";a:5:{s:6:\"source\";s:32:\"5446c9f0c1d45cacdb1c388c38903f7e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"df74064327b64a7cba623cb3d8ff4cf0\";a:5:{s:6:\"source\";s:32:\"df74064327b64a7cba623cb3d8ff4cf0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"04630e3aaf657b43818e0209d84b049f\";a:5:{s:6:\"source\";s:32:\"04630e3aaf657b43818e0209d84b049f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5ab33a2a0daea52fc14ed20448cd9061\";a:5:{s:6:\"source\";s:32:\"5ab33a2a0daea52fc14ed20448cd9061\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b2f3e3c3a597a89e3ddce59591b952b6\";a:5:{s:6:\"source\";s:32:\"b2f3e3c3a597a89e3ddce59591b952b6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fa921beb43764f0322e043e0d740db30\";a:5:{s:6:\"source\";s:32:\"fa921beb43764f0322e043e0d740db30\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"78616e39a1448ad704a284b41c7a7aeb\";a:5:{s:6:\"source\";s:32:\"78616e39a1448ad704a284b41c7a7aeb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"783103874b1d17ff8f21beb04e16613e\";a:5:{s:6:\"source\";s:32:\"783103874b1d17ff8f21beb04e16613e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a9df1003a09e241b7769bf0041b5488d\";a:5:{s:6:\"source\";s:32:\"a9df1003a09e241b7769bf0041b5488d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"effe748c7cd4e123fe5b6b8ce382312c\";a:5:{s:6:\"source\";s:32:\"effe748c7cd4e123fe5b6b8ce382312c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9ea840cbab54036b74f24e772d666dd0\";a:5:{s:6:\"source\";s:32:\"9ea840cbab54036b74f24e772d666dd0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b8d3707411ca5f020954a5c52f72ca47\";a:5:{s:6:\"source\";s:32:\"b8d3707411ca5f020954a5c52f72ca47\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f737ae2f494b45e795b26a10ccd3f094\";a:5:{s:6:\"source\";s:32:\"f737ae2f494b45e795b26a10ccd3f094\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bf18ac59906717dfcfeb65d4f48a24bd\";a:5:{s:6:\"source\";s:32:\"bf18ac59906717dfcfeb65d4f48a24bd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4b6994f504661abd00d50ad84f41116a\";a:5:{s:6:\"source\";s:32:\"4b6994f504661abd00d50ad84f41116a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cdcbc20a91f5a22eeb442b194755e2bf\";a:5:{s:6:\"source\";s:32:\"cdcbc20a91f5a22eeb442b194755e2bf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"92dad6cf2daca81d0b6025ac9464f29e\";a:5:{s:6:\"source\";s:32:\"92dad6cf2daca81d0b6025ac9464f29e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4e84ffbb1585380f242a6795b464ce94\";a:5:{s:6:\"source\";s:32:\"4e84ffbb1585380f242a6795b464ce94\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"90efb8f98faae25e9942d4fe116cec64\";a:5:{s:6:\"source\";s:32:\"90efb8f98faae25e9942d4fe116cec64\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0ea4f9d828dae7fd36b6732e5040c8ba\";a:5:{s:6:\"source\";s:32:\"0ea4f9d828dae7fd36b6732e5040c8ba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"baf43887b8f2f44b82f774be5715ecba\";a:5:{s:6:\"source\";s:32:\"baf43887b8f2f44b82f774be5715ecba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c9d237a9d223d30bcd29210fc386a124\";a:5:{s:6:\"source\";s:32:\"c9d237a9d223d30bcd29210fc386a124\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"82730383a97db942266b22559bbad130\";a:5:{s:6:\"source\";s:32:\"82730383a97db942266b22559bbad130\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"069c5136e17f97f816216222fd40c8ee\";a:5:{s:6:\"source\";s:32:\"069c5136e17f97f816216222fd40c8ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ee1d018a608d7b51462c650ab2f45885\";a:5:{s:6:\"source\";s:32:\"ee1d018a608d7b51462c650ab2f45885\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8db62576af9cfc78c0cdee43d69c8f57\";a:5:{s:6:\"source\";s:32:\"8db62576af9cfc78c0cdee43d69c8f57\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"69958081eaa44ffadf083fafb4934f52\";a:5:{s:6:\"source\";s:32:\"69958081eaa44ffadf083fafb4934f52\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2d5fd0409353ab2b53b1241bf96fb2f5\";a:5:{s:6:\"source\";s:32:\"2d5fd0409353ab2b53b1241bf96fb2f5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"53f7f8754e1d8b9a92648fa87257b3b3\";a:5:{s:6:\"source\";s:32:\"53f7f8754e1d8b9a92648fa87257b3b3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"98b7bb33d9ae6efc9c06bda809f237fb\";a:5:{s:6:\"source\";s:32:\"98b7bb33d9ae6efc9c06bda809f237fb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4ee16567f3d1a74359ad4b1a6492be87\";a:5:{s:6:\"source\";s:32:\"4ee16567f3d1a74359ad4b1a6492be87\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fed1ea5c375bb64bb61b8834384be46e\";a:5:{s:6:\"source\";s:32:\"fed1ea5c375bb64bb61b8834384be46e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"472928df60c0d73f594ebd1fbff5266d\";a:5:{s:6:\"source\";s:32:\"472928df60c0d73f594ebd1fbff5266d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2ad3282ae6cd3879a057805922b22032\";a:5:{s:6:\"source\";s:32:\"2ad3282ae6cd3879a057805922b22032\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7545e28b33ce81688405c504445a8c0c\";a:5:{s:6:\"source\";s:32:\"7545e28b33ce81688405c504445a8c0c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0696c85f8ddac05a038356c61f5feaa2\";a:5:{s:6:\"source\";s:32:\"0696c85f8ddac05a038356c61f5feaa2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"df85c6db73d17e0e3d97c48fececdc8b\";a:5:{s:6:\"source\";s:32:\"df85c6db73d17e0e3d97c48fececdc8b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f5ff318c206e4101336afc7040b90278\";a:5:{s:6:\"source\";s:32:\"f5ff318c206e4101336afc7040b90278\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a61a02dd869b96db89b3fe4e31dfae5\";a:5:{s:6:\"source\";s:32:\"8a61a02dd869b96db89b3fe4e31dfae5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"896ded209ba90ac79259708617ed1b71\";a:5:{s:6:\"source\";s:32:\"896ded209ba90ac79259708617ed1b71\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ccaadb320e644d33c370c48e0be11623\";a:5:{s:6:\"source\";s:32:\"ccaadb320e644d33c370c48e0be11623\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f7be99ffdc8c1cd01273fc34722cb97a\";a:5:{s:6:\"source\";s:32:\"f7be99ffdc8c1cd01273fc34722cb97a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e244d4e0b38d78437f9369a1eda3bfb7\";a:5:{s:6:\"source\";s:32:\"e244d4e0b38d78437f9369a1eda3bfb7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dce8922312a973caa7f3bf27a584825c\";a:5:{s:6:\"source\";s:32:\"dce8922312a973caa7f3bf27a584825c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"de4f02735755cdfea90a8dd054477279\";a:5:{s:6:\"source\";s:32:\"de4f02735755cdfea90a8dd054477279\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a9c087c3b00e48fad084d5fd0ce3d49b\";a:5:{s:6:\"source\";s:32:\"a9c087c3b00e48fad084d5fd0ce3d49b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8b1469434743d26472e5c15af54db1c6\";a:5:{s:6:\"source\";s:32:\"8b1469434743d26472e5c15af54db1c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"05eada7dfd9310d8e478fe5bf59ad194\";a:5:{s:6:\"source\";s:32:\"05eada7dfd9310d8e478fe5bf59ad194\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4a488ead9e381422f2562ae829081fde\";a:5:{s:6:\"source\";s:32:\"4a488ead9e381422f2562ae829081fde\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"554ef4a41f58ff3a2bc071326df6e762\";a:5:{s:6:\"source\";s:32:\"554ef4a41f58ff3a2bc071326df6e762\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dd790d1ff5fb74b580d718edb088663b\";a:5:{s:6:\"source\";s:32:\"dd790d1ff5fb74b580d718edb088663b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"07f1be65a093192e117408a5112b7f75\";a:5:{s:6:\"source\";s:32:\"07f1be65a093192e117408a5112b7f75\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7db0904538c4e11c1e07abff9cf89132\";a:5:{s:6:\"source\";s:32:\"7db0904538c4e11c1e07abff9cf89132\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e846a6c8d31dfb0224766f72a19f7e5f\";a:5:{s:6:\"source\";s:32:\"e846a6c8d31dfb0224766f72a19f7e5f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2f09b10edfdfd056d5b5f1239433e8cd\";a:5:{s:6:\"source\";s:32:\"2f09b10edfdfd056d5b5f1239433e8cd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ad728c64b92d8ff1e51a2a1e4164cdd9\";a:5:{s:6:\"source\";s:32:\"ad728c64b92d8ff1e51a2a1e4164cdd9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f15f463271aac9c6c85ea51a4e0aea06\";a:5:{s:6:\"source\";s:32:\"f15f463271aac9c6c85ea51a4e0aea06\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"249085c838ef1f4ec1cf74551774311e\";a:5:{s:6:\"source\";s:32:\"249085c838ef1f4ec1cf74551774311e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0e5814e01d6d2af5499056e68574ea0e\";a:5:{s:6:\"source\";s:32:\"0e5814e01d6d2af5499056e68574ea0e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"efa15439e45090682947b8b0a60b74dc\";a:5:{s:6:\"source\";s:32:\"efa15439e45090682947b8b0a60b74dc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"282ce62e3765f91da23c6912e1cd457d\";a:5:{s:6:\"source\";s:32:\"282ce62e3765f91da23c6912e1cd457d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d1066f2f0633c6a8113606d9ed695288\";a:5:{s:6:\"source\";s:32:\"d1066f2f0633c6a8113606d9ed695288\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7427944a5e05b67de8824219c6e6db0b\";a:5:{s:6:\"source\";s:32:\"7427944a5e05b67de8824219c6e6db0b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"391084f4b2ca05b7bd9e59bd74633862\";a:5:{s:6:\"source\";s:32:\"391084f4b2ca05b7bd9e59bd74633862\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b6dd592b34a7ca6c88ef869f69fb7249\";a:5:{s:6:\"source\";s:32:\"b6dd592b34a7ca6c88ef869f69fb7249\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"46e3a859a8175d78ae606c3147651a9f\";a:5:{s:6:\"source\";s:32:\"46e3a859a8175d78ae606c3147651a9f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ece8a38c51291327f94e17f14c7fed1b\";a:5:{s:6:\"source\";s:32:\"ece8a38c51291327f94e17f14c7fed1b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6b97be44d14376a7f01af0272271e73f\";a:5:{s:6:\"source\";s:32:\"6b97be44d14376a7f01af0272271e73f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4487324bd7fbf240867c16a21ea71e06\";a:5:{s:6:\"source\";s:32:\"4487324bd7fbf240867c16a21ea71e06\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4aeec202c2af0315a9ea481553918d97\";a:5:{s:6:\"source\";s:32:\"4aeec202c2af0315a9ea481553918d97\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7b4bbcaf027f9d76e7c3bcfbcffcee3a\";a:5:{s:6:\"source\";s:32:\"7b4bbcaf027f9d76e7c3bcfbcffcee3a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6fc48f49b8292abbb6d25765bd2a66b4\";a:5:{s:6:\"source\";s:32:\"6fc48f49b8292abbb6d25765bd2a66b4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2d149b86ec79437db458a9ac14d9b9da\";a:5:{s:6:\"source\";s:32:\"2d149b86ec79437db458a9ac14d9b9da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"154e09111daf3122111db387b2e33da6\";a:5:{s:6:\"source\";s:32:\"154e09111daf3122111db387b2e33da6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dc966efa2697c979443f477e1ceb2e26\";a:5:{s:6:\"source\";s:32:\"dc966efa2697c979443f477e1ceb2e26\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e218852b5e47e76a0751536e1287cae2\";a:5:{s:6:\"source\";s:32:\"e218852b5e47e76a0751536e1287cae2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1818ac4567ce548f524461220a3bce27\";a:5:{s:6:\"source\";s:32:\"1818ac4567ce548f524461220a3bce27\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a2bcf9a3bc1f45f4ddf294e0ca0059e\";a:5:{s:6:\"source\";s:32:\"8a2bcf9a3bc1f45f4ddf294e0ca0059e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9dc3215ebf3eae503b1bc02ab1c0e373\";a:5:{s:6:\"source\";s:32:\"9dc3215ebf3eae503b1bc02ab1c0e373\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"77d36755f379b9f9515f350fb52acd74\";a:5:{s:6:\"source\";s:32:\"77d36755f379b9f9515f350fb52acd74\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4f0a101ab41f34d6905336569482413e\";a:5:{s:6:\"source\";s:32:\"4f0a101ab41f34d6905336569482413e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"94e33e79f5cee5ae9e13a46b396e31e8\";a:5:{s:6:\"source\";s:32:\"94e33e79f5cee5ae9e13a46b396e31e8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"13e742121f7269e6e4f0aa0140b3d5ba\";a:5:{s:6:\"source\";s:32:\"13e742121f7269e6e4f0aa0140b3d5ba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"759b1cd3343dde5edd33ebb63b3b067f\";a:5:{s:6:\"source\";s:32:\"759b1cd3343dde5edd33ebb63b3b067f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"33a36c531722bd782fa92317e274662a\";a:5:{s:6:\"source\";s:32:\"33a36c531722bd782fa92317e274662a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7c91966f5299bf65bc5b49cc11b49b93\";a:5:{s:6:\"source\";s:32:\"7c91966f5299bf65bc5b49cc11b49b93\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d667ba8fb0c1dd8d80b33ede92e14e96\";a:5:{s:6:\"source\";s:32:\"d667ba8fb0c1dd8d80b33ede92e14e96\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b2106d3bd915a7e63979e744d5011c95\";a:5:{s:6:\"source\";s:32:\"b2106d3bd915a7e63979e744d5011c95\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a657164de3353099c3d7b79a9bd1f579\";a:5:{s:6:\"source\";s:32:\"a657164de3353099c3d7b79a9bd1f579\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"136a6ecd9a7cded747a83cd341a05f45\";a:5:{s:6:\"source\";s:32:\"136a6ecd9a7cded747a83cd341a05f45\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5adba673f84ea8546daa589179d930a2\";a:5:{s:6:\"source\";s:32:\"5adba673f84ea8546daa589179d930a2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f1915e66cb4aadfdeaba7c983d0b68c7\";a:5:{s:6:\"source\";s:32:\"f1915e66cb4aadfdeaba7c983d0b68c7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"68bbc9e6a000d14141e56f5eb64e44dd\";a:5:{s:6:\"source\";s:32:\"68bbc9e6a000d14141e56f5eb64e44dd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c0447f731a9aaed9e5dfd61cb4bd1830\";a:5:{s:6:\"source\";s:32:\"c0447f731a9aaed9e5dfd61cb4bd1830\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1dea1435fb5834099da3dd9f6f57879e\";a:5:{s:6:\"source\";s:32:\"1dea1435fb5834099da3dd9f6f57879e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c830489d1de6fdee3a3df24535095dd7\";a:5:{s:6:\"source\";s:32:\"c830489d1de6fdee3a3df24535095dd7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"73b5a3de1290fc74ab4b7bd79ef72152\";a:5:{s:6:\"source\";s:32:\"73b5a3de1290fc74ab4b7bd79ef72152\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"094adfe111118835c2397535f16c8678\";a:5:{s:6:\"source\";s:32:\"094adfe111118835c2397535f16c8678\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ed13da367ee39892932d4d48d223b8ab\";a:5:{s:6:\"source\";s:32:\"ed13da367ee39892932d4d48d223b8ab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a73dbd2791e4a39938c2ae4ddcaacce1\";a:5:{s:6:\"source\";s:32:\"a73dbd2791e4a39938c2ae4ddcaacce1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bf771cdc359dcf4a390aaac9767f842d\";a:5:{s:6:\"source\";s:32:\"bf771cdc359dcf4a390aaac9767f842d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8d04c8e51586b35711e25d8b7006cca1\";a:5:{s:6:\"source\";s:32:\"8d04c8e51586b35711e25d8b7006cca1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c0bd165e7cb3152ea2e0263fef127fef\";a:5:{s:6:\"source\";s:32:\"c0bd165e7cb3152ea2e0263fef127fef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b69bd76ffd56b056bd8543df012a4d33\";a:5:{s:6:\"source\";s:32:\"b69bd76ffd56b056bd8543df012a4d33\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f8f361bd5b751d4d05e437eddde7e84a\";a:5:{s:6:\"source\";s:32:\"f8f361bd5b751d4d05e437eddde7e84a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fb7bdb8b001e15d28e52d1b15a808f68\";a:5:{s:6:\"source\";s:32:\"fb7bdb8b001e15d28e52d1b15a808f68\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6ac3c4c4d88d426253341b304c43667e\";a:5:{s:6:\"source\";s:32:\"6ac3c4c4d88d426253341b304c43667e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"83f769777787a51a0ae0b60c0621a08d\";a:5:{s:6:\"source\";s:32:\"83f769777787a51a0ae0b60c0621a08d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6ade14090b5260cdbf7f60682e8b22d3\";a:5:{s:6:\"source\";s:32:\"6ade14090b5260cdbf7f60682e8b22d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1fda6f4c77a7c8e05417bf5dd1beb5e3\";a:5:{s:6:\"source\";s:32:\"1fda6f4c77a7c8e05417bf5dd1beb5e3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"db0ab212738545b816684b216db5d4d2\";a:5:{s:6:\"source\";s:32:\"db0ab212738545b816684b216db5d4d2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"efbf82f1c476e86cc7e979317bc08e4f\";a:5:{s:6:\"source\";s:32:\"efbf82f1c476e86cc7e979317bc08e4f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e4fa7da52390cc89a5aa8a9045cf5434\";a:5:{s:6:\"source\";s:32:\"e4fa7da52390cc89a5aa8a9045cf5434\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ab075dc43a1971538612f348ded6c4ad\";a:5:{s:6:\"source\";s:32:\"ab075dc43a1971538612f348ded6c4ad\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9ca30855b583be03f42e53b131f449e9\";a:5:{s:6:\"source\";s:32:\"9ca30855b583be03f42e53b131f449e9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7fbe1bee0ffdad10c3dfce5cbc8c28de\";a:5:{s:6:\"source\";s:32:\"7fbe1bee0ffdad10c3dfce5cbc8c28de\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b92633bcd2f15d77edf6486b699a227e\";a:5:{s:6:\"source\";s:32:\"b92633bcd2f15d77edf6486b699a227e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"74cdcf94569c22e39fd3772d4e4eeca6\";a:5:{s:6:\"source\";s:32:\"74cdcf94569c22e39fd3772d4e4eeca6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1c5b392323c881e3e6c08c441b82f893\";a:5:{s:6:\"source\";s:32:\"1c5b392323c881e3e6c08c441b82f893\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"62879d212e5cac32df456d7c29f7c44d\";a:5:{s:6:\"source\";s:32:\"62879d212e5cac32df456d7c29f7c44d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3239774c1effd401032565ac30e99e97\";a:5:{s:6:\"source\";s:32:\"3239774c1effd401032565ac30e99e97\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2cd6f099443faae0540854d0cd95925c\";a:5:{s:6:\"source\";s:32:\"2cd6f099443faae0540854d0cd95925c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"03119c172ee867481f7f24c53230e500\";a:5:{s:6:\"source\";s:32:\"03119c172ee867481f7f24c53230e500\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5f653ed88ef73291355079bdd91a9724\";a:5:{s:6:\"source\";s:32:\"5f653ed88ef73291355079bdd91a9724\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"238da6db52f4a4f7c1f6d8604aeead30\";a:5:{s:6:\"source\";s:32:\"238da6db52f4a4f7c1f6d8604aeead30\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"17c38046bebcbf696d2158e2950a3e45\";a:5:{s:6:\"source\";s:32:\"17c38046bebcbf696d2158e2950a3e45\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"17c2185758e62f2744d89fc188efbdae\";a:5:{s:6:\"source\";s:32:\"17c2185758e62f2744d89fc188efbdae\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8b15e7f2eb56f759b888d7437ee76089\";a:5:{s:6:\"source\";s:32:\"8b15e7f2eb56f759b888d7437ee76089\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7aea0ed7c54ec6da21b60bdd2fa3b70c\";a:5:{s:6:\"source\";s:32:\"7aea0ed7c54ec6da21b60bdd2fa3b70c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9976cd6d4bfbff573439b51249740136\";a:5:{s:6:\"source\";s:32:\"9976cd6d4bfbff573439b51249740136\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4e26c6c6c41a657ba68ed1ccebce5334\";a:5:{s:6:\"source\";s:32:\"4e26c6c6c41a657ba68ed1ccebce5334\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5307cf6a7a5f3d4d6b33d5c13d142d98\";a:5:{s:6:\"source\";s:32:\"5307cf6a7a5f3d4d6b33d5c13d142d98\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d5bf38e5d69e2871ecd7b27efa14db02\";a:5:{s:6:\"source\";s:32:\"d5bf38e5d69e2871ecd7b27efa14db02\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"55f0ccf9aab741a9fd384b0e5076dee4\";a:5:{s:6:\"source\";s:32:\"55f0ccf9aab741a9fd384b0e5076dee4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"881886d813afdcfb060d90f0f3d286f5\";a:5:{s:6:\"source\";s:32:\"881886d813afdcfb060d90f0f3d286f5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"558a3de2694eb69908db6c843f1d182c\";a:5:{s:6:\"source\";s:32:\"558a3de2694eb69908db6c843f1d182c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0a09af80eb3f0df12ed5f03e4d8e66ff\";a:5:{s:6:\"source\";s:32:\"0a09af80eb3f0df12ed5f03e4d8e66ff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"721394a12d4bf94819e373a79cb18717\";a:5:{s:6:\"source\";s:32:\"721394a12d4bf94819e373a79cb18717\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eb3910646c766cf8d8baf4931f72d150\";a:5:{s:6:\"source\";s:32:\"eb3910646c766cf8d8baf4931f72d150\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5cc496b585555cbff30bab20b5d893f1\";a:5:{s:6:\"source\";s:32:\"5cc496b585555cbff30bab20b5d893f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b8f7a34e3802f8e4e6e38b8b48ef3d75\";a:5:{s:6:\"source\";s:32:\"b8f7a34e3802f8e4e6e38b8b48ef3d75\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"43e43598265152599b0e8cf36c30bcaa\";a:5:{s:6:\"source\";s:32:\"43e43598265152599b0e8cf36c30bcaa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"11c3e7dbb66a31f63c016daa84a1bebd\";a:5:{s:6:\"source\";s:32:\"11c3e7dbb66a31f63c016daa84a1bebd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a687bb45a59d387c72eab2ec5b9288ca\";a:5:{s:6:\"source\";s:32:\"a687bb45a59d387c72eab2ec5b9288ca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"04f6df7d74f28bcb3817178b5d673397\";a:5:{s:6:\"source\";s:32:\"04f6df7d74f28bcb3817178b5d673397\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4db0b6e838c95671f878cb8ff52cebc2\";a:5:{s:6:\"source\";s:32:\"4db0b6e838c95671f878cb8ff52cebc2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9c30575ab78edfc4f0341fb9e931a4b6\";a:5:{s:6:\"source\";s:32:\"9c30575ab78edfc4f0341fb9e931a4b6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a76f0a9a94138fce1e30fc5a79187f1f\";a:5:{s:6:\"source\";s:32:\"a76f0a9a94138fce1e30fc5a79187f1f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e1033ee47ae715a23ff2d1d564c8fccb\";a:5:{s:6:\"source\";s:32:\"e1033ee47ae715a23ff2d1d564c8fccb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"620da053b711bf76140679e06f832cf4\";a:5:{s:6:\"source\";s:32:\"620da053b711bf76140679e06f832cf4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9168be9f1f83fb53f5950c6804fc5020\";a:5:{s:6:\"source\";s:32:\"9168be9f1f83fb53f5950c6804fc5020\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef2257f5fce797592157cdc73f2c7881\";a:5:{s:6:\"source\";s:32:\"ef2257f5fce797592157cdc73f2c7881\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b0cf9b00e79d1ce575223fec79b3be7b\";a:5:{s:6:\"source\";s:32:\"b0cf9b00e79d1ce575223fec79b3be7b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"28d088a7677e351a5cd074b036761ca1\";a:5:{s:6:\"source\";s:32:\"28d088a7677e351a5cd074b036761ca1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"21583a5c32ba2a17f194af72f284dfdb\";a:5:{s:6:\"source\";s:32:\"21583a5c32ba2a17f194af72f284dfdb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cd3530f28733cde131fe3e964a529b92\";a:5:{s:6:\"source\";s:32:\"cd3530f28733cde131fe3e964a529b92\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6d07991d62b0d3f6425913b9899a3900\";a:5:{s:6:\"source\";s:32:\"6d07991d62b0d3f6425913b9899a3900\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1628daf9574c43535c535c1b2e763e80\";a:5:{s:6:\"source\";s:32:\"1628daf9574c43535c535c1b2e763e80\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0d03d515bc7bd5e53f19ac91ca972fdd\";a:5:{s:6:\"source\";s:32:\"0d03d515bc7bd5e53f19ac91ca972fdd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6d52c558b1d42e710f7b0f83a6225f10\";a:5:{s:6:\"source\";s:32:\"6d52c558b1d42e710f7b0f83a6225f10\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"718996949616e43b9ff585ed14330db8\";a:5:{s:6:\"source\";s:32:\"718996949616e43b9ff585ed14330db8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e108165517e8deba85acde38b1872c5b\";a:5:{s:6:\"source\";s:32:\"e108165517e8deba85acde38b1872c5b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c7b5cc2aad61a8a18ea408708e15408f\";a:5:{s:6:\"source\";s:32:\"c7b5cc2aad61a8a18ea408708e15408f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"98811d4a342cbbe93e7915b45ac9bcb1\";a:5:{s:6:\"source\";s:32:\"98811d4a342cbbe93e7915b45ac9bcb1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7fb450e94b569772bc89e4c003e406bf\";a:5:{s:6:\"source\";s:32:\"7fb450e94b569772bc89e4c003e406bf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"700e79dcf1bcd0fa25024bfe290384c0\";a:5:{s:6:\"source\";s:32:\"700e79dcf1bcd0fa25024bfe290384c0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f4cfb13be4fd661eb05d12f09353f6a0\";a:5:{s:6:\"source\";s:32:\"f4cfb13be4fd661eb05d12f09353f6a0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"37bfa8bdd6cb65265f283b0aeaf322a5\";a:5:{s:6:\"source\";s:32:\"37bfa8bdd6cb65265f283b0aeaf322a5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"63d53ca6c956f734206bf7d7e95bcbdf\";a:5:{s:6:\"source\";s:32:\"63d53ca6c956f734206bf7d7e95bcbdf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"99d7acd757ebfe7e4a7923928d7e868b\";a:5:{s:6:\"source\";s:32:\"99d7acd757ebfe7e4a7923928d7e868b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6b2401a5472c9eda9c79f0708ef400d0\";a:5:{s:6:\"source\";s:32:\"6b2401a5472c9eda9c79f0708ef400d0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c74b7e2b6692496bdf3435d512e10665\";a:5:{s:6:\"source\";s:32:\"c74b7e2b6692496bdf3435d512e10665\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"06d550aaf4a1cce15027ef694fab20e3\";a:5:{s:6:\"source\";s:32:\"06d550aaf4a1cce15027ef694fab20e3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c87895f62dc06c6c4a75018807be1aa8\";a:5:{s:6:\"source\";s:32:\"c87895f62dc06c6c4a75018807be1aa8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dec7405076d8930fa64d6c28cc23bbf5\";a:5:{s:6:\"source\";s:32:\"dec7405076d8930fa64d6c28cc23bbf5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"216c1d3ae32c9801da245fc376461b84\";a:5:{s:6:\"source\";s:32:\"216c1d3ae32c9801da245fc376461b84\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f0dd20101cfcffe6e91a8a72ff71da90\";a:5:{s:6:\"source\";s:32:\"f0dd20101cfcffe6e91a8a72ff71da90\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dc1e248842257d04ca85e230a5541c7b\";a:5:{s:6:\"source\";s:32:\"dc1e248842257d04ca85e230a5541c7b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"410299e87285fef77d3fb898f3644977\";a:5:{s:6:\"source\";s:32:\"410299e87285fef77d3fb898f3644977\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"26b2d75becc405540287fd12db063255\";a:5:{s:6:\"source\";s:32:\"26b2d75becc405540287fd12db063255\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"158a96ba2587244787c30df67845cccf\";a:5:{s:6:\"source\";s:32:\"158a96ba2587244787c30df67845cccf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f8ab356fdaedf0d8969d85ffd390c1cb\";a:5:{s:6:\"source\";s:32:\"f8ab356fdaedf0d8969d85ffd390c1cb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b582767334e1e283ff3ffc282c67d6d3\";a:5:{s:6:\"source\";s:32:\"b582767334e1e283ff3ffc282c67d6d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3a8f9bccd3dd5bb6a38b3151aaccf3a0\";a:5:{s:6:\"source\";s:32:\"3a8f9bccd3dd5bb6a38b3151aaccf3a0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"95d0e295741f3b70368f92c012647532\";a:5:{s:6:\"source\";s:32:\"95d0e295741f3b70368f92c012647532\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b2de5c3a8b6ccaf11c4453c67249bbc1\";a:5:{s:6:\"source\";s:32:\"b2de5c3a8b6ccaf11c4453c67249bbc1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"378f7e15df11dd2ea8ad06c13dcc7f65\";a:5:{s:6:\"source\";s:32:\"378f7e15df11dd2ea8ad06c13dcc7f65\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c875b674a4e96e4662e5ac666e3d910\";a:5:{s:6:\"source\";s:32:\"2c875b674a4e96e4662e5ac666e3d910\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"33290e72185c78560d67408c3be1c0d4\";a:5:{s:6:\"source\";s:32:\"33290e72185c78560d67408c3be1c0d4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0f3a8addda1607ed8e42d70067efd3be\";a:5:{s:6:\"source\";s:32:\"0f3a8addda1607ed8e42d70067efd3be\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2e1f5d04a55c8922fd0d0130966a54d7\";a:5:{s:6:\"source\";s:32:\"2e1f5d04a55c8922fd0d0130966a54d7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"950eb08717510d39ea12f9e4e89d290f\";a:5:{s:6:\"source\";s:32:\"950eb08717510d39ea12f9e4e89d290f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7a133d46f65db43aabe62ddeedfb16fd\";a:5:{s:6:\"source\";s:32:\"7a133d46f65db43aabe62ddeedfb16fd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9146a4bfe7296028079779301ea54823\";a:5:{s:6:\"source\";s:32:\"9146a4bfe7296028079779301ea54823\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"42c77a65baee33c70721c1d4942534ea\";a:5:{s:6:\"source\";s:32:\"42c77a65baee33c70721c1d4942534ea\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a058ea46da1721c44e179703d617eb4\";a:5:{s:6:\"source\";s:32:\"8a058ea46da1721c44e179703d617eb4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d03e35d220f103446e75c281b7507542\";a:5:{s:6:\"source\";s:32:\"d03e35d220f103446e75c281b7507542\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ed2b541e0971166e91c66e0d5a4f447a\";a:5:{s:6:\"source\";s:32:\"ed2b541e0971166e91c66e0d5a4f447a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8d147969bce210fc32bc177e9122bca1\";a:5:{s:6:\"source\";s:32:\"8d147969bce210fc32bc177e9122bca1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"708d7bcb0376ea5afe1333a1269ecdcd\";a:5:{s:6:\"source\";s:32:\"708d7bcb0376ea5afe1333a1269ecdcd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"095ae8de097f364004612d3a541e5936\";a:5:{s:6:\"source\";s:32:\"095ae8de097f364004612d3a541e5936\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"24768b1680dc517d1ef16fe5d0444ffb\";a:5:{s:6:\"source\";s:32:\"24768b1680dc517d1ef16fe5d0444ffb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"59f80e49cea1e49d4d17ec63b02ca09c\";a:5:{s:6:\"source\";s:32:\"59f80e49cea1e49d4d17ec63b02ca09c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bb28c4aec9d2ae09e11207a6cb90176f\";a:5:{s:6:\"source\";s:32:\"bb28c4aec9d2ae09e11207a6cb90176f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8d19affa4ebae331a00b028609ba8cef\";a:5:{s:6:\"source\";s:32:\"8d19affa4ebae331a00b028609ba8cef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c96ab381782beb3b64b5c9fb9ea115da\";a:5:{s:6:\"source\";s:32:\"c96ab381782beb3b64b5c9fb9ea115da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"932c66c08bfdb570b73b5c4da4c8330f\";a:5:{s:6:\"source\";s:32:\"932c66c08bfdb570b73b5c4da4c8330f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9b5e8791d9194ad7425570058787274b\";a:5:{s:6:\"source\";s:32:\"9b5e8791d9194ad7425570058787274b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d9ba974e8beebf62831c6070fefe8d9\";a:5:{s:6:\"source\";s:32:\"4d9ba974e8beebf62831c6070fefe8d9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"47a627cef75d915f97db977395e7c395\";a:5:{s:6:\"source\";s:32:\"47a627cef75d915f97db977395e7c395\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"83bf90d6b8db6787dae8c3fd9ed746de\";a:5:{s:6:\"source\";s:32:\"83bf90d6b8db6787dae8c3fd9ed746de\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d69b94bf1af21269b332b5b0f4d168b0\";a:5:{s:6:\"source\";s:32:\"d69b94bf1af21269b332b5b0f4d168b0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"631aaba4e2c3f5532962cf448f816a7a\";a:5:{s:6:\"source\";s:32:\"631aaba4e2c3f5532962cf448f816a7a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2694efc051f23fa11cf7aaccf2f9c50c\";a:5:{s:6:\"source\";s:32:\"2694efc051f23fa11cf7aaccf2f9c50c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e4cd8c24fc9a34f46d21bbfb51cf422a\";a:5:{s:6:\"source\";s:32:\"e4cd8c24fc9a34f46d21bbfb51cf422a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ad4cbe6fc789a273b958d0da5cbd575f\";a:5:{s:6:\"source\";s:32:\"ad4cbe6fc789a273b958d0da5cbd575f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3a4e06d96b51c16021deb9096559f0e4\";a:5:{s:6:\"source\";s:32:\"3a4e06d96b51c16021deb9096559f0e4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f94081e843a918ad7bc097aa0c6f7ca6\";a:5:{s:6:\"source\";s:32:\"f94081e843a918ad7bc097aa0c6f7ca6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"00f1a8ee6a052b8986e0c652df18cd3a\";a:5:{s:6:\"source\";s:32:\"00f1a8ee6a052b8986e0c652df18cd3a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b1bb6b3eb5ababa8c3e494e43bde623f\";a:5:{s:6:\"source\";s:32:\"b1bb6b3eb5ababa8c3e494e43bde623f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f20fa37aae11247e96265c86d689a64\";a:5:{s:6:\"source\";s:32:\"7f20fa37aae11247e96265c86d689a64\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9ac9158702364e4c321d713fc7000235\";a:5:{s:6:\"source\";s:32:\"9ac9158702364e4c321d713fc7000235\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8567a454280a3f4424233a033336577e\";a:5:{s:6:\"source\";s:32:\"8567a454280a3f4424233a033336577e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9c96b9e57029fe5a6525ece867e2fd96\";a:5:{s:6:\"source\";s:32:\"9c96b9e57029fe5a6525ece867e2fd96\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f2e8b295f3de9bad208ffae1b6bd1c18\";a:5:{s:6:\"source\";s:32:\"f2e8b295f3de9bad208ffae1b6bd1c18\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f64c7338b7e99ba45ec20287286f5d7b\";a:5:{s:6:\"source\";s:32:\"f64c7338b7e99ba45ec20287286f5d7b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f3945bd8c8d052b4ce4ad281077fade8\";a:5:{s:6:\"source\";s:32:\"f3945bd8c8d052b4ce4ad281077fade8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dac6a586262f9fbe70baeacdbaaf03a7\";a:5:{s:6:\"source\";s:32:\"dac6a586262f9fbe70baeacdbaaf03a7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f7053f59c8fd5aee85544042c32f7498\";a:5:{s:6:\"source\";s:32:\"f7053f59c8fd5aee85544042c32f7498\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8436d401ef5c7a1f17343b13a1590894\";a:5:{s:6:\"source\";s:32:\"8436d401ef5c7a1f17343b13a1590894\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6c7283cfdc9ac238ed830748b2298304\";a:5:{s:6:\"source\";s:32:\"6c7283cfdc9ac238ed830748b2298304\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3fce44fb4f09bb2705c747d66d9fa2a4\";a:5:{s:6:\"source\";s:32:\"3fce44fb4f09bb2705c747d66d9fa2a4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0e7031d035d216cb1c8a085c5df5990e\";a:5:{s:6:\"source\";s:32:\"0e7031d035d216cb1c8a085c5df5990e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7ce2b471f94b9cfb48477f66495cafa7\";a:5:{s:6:\"source\";s:32:\"7ce2b471f94b9cfb48477f66495cafa7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b097c435bfd4a27587f53b0cadf34967\";a:5:{s:6:\"source\";s:32:\"b097c435bfd4a27587f53b0cadf34967\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eaa16f99b8b2d7bf2b718c840e943284\";a:5:{s:6:\"source\";s:32:\"eaa16f99b8b2d7bf2b718c840e943284\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff805971ae06ae653fc2402f811539b1\";a:5:{s:6:\"source\";s:32:\"ff805971ae06ae653fc2402f811539b1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"96b1cbc4fea0c549d23b23d2efd0b44e\";a:5:{s:6:\"source\";s:32:\"96b1cbc4fea0c549d23b23d2efd0b44e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"605bd76739d98a95f9e05138d0426984\";a:5:{s:6:\"source\";s:32:\"605bd76739d98a95f9e05138d0426984\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fa1160c8f235baa518fd518c4651230f\";a:5:{s:6:\"source\";s:32:\"fa1160c8f235baa518fd518c4651230f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9a32f355b468a3d383fabdc61f5ee7c4\";a:5:{s:6:\"source\";s:32:\"9a32f355b468a3d383fabdc61f5ee7c4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"265d6a6de50275005c7aa55ba65b8595\";a:5:{s:6:\"source\";s:32:\"265d6a6de50275005c7aa55ba65b8595\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d0a0889ffce12d3719529bfa175b8a88\";a:5:{s:6:\"source\";s:32:\"d0a0889ffce12d3719529bfa175b8a88\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d3fc057de779fd5ceea0bc6edd20086c\";a:5:{s:6:\"source\";s:32:\"d3fc057de779fd5ceea0bc6edd20086c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"865d2138acac613027ed88264e28815a\";a:5:{s:6:\"source\";s:32:\"865d2138acac613027ed88264e28815a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f7c21bb1f103f5291af3674c3eef0398\";a:5:{s:6:\"source\";s:32:\"f7c21bb1f103f5291af3674c3eef0398\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"447ff3481905a300002127c69909ae68\";a:5:{s:6:\"source\";s:32:\"447ff3481905a300002127c69909ae68\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"90ff9848bb5dd49faad27415e33ef05e\";a:5:{s:6:\"source\";s:32:\"90ff9848bb5dd49faad27415e33ef05e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7755007cfecec78c9d9934f33225a33e\";a:5:{s:6:\"source\";s:32:\"7755007cfecec78c9d9934f33225a33e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"005de2c696f4b74922151e3d5f7a59bb\";a:5:{s:6:\"source\";s:32:\"005de2c696f4b74922151e3d5f7a59bb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"87ead8317bf6bc2634e8b76b53baa7bc\";a:5:{s:6:\"source\";s:32:\"87ead8317bf6bc2634e8b76b53baa7bc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f30192c7810de141dd15566afdc069fd\";a:5:{s:6:\"source\";s:32:\"f30192c7810de141dd15566afdc069fd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6109a386322139ae05c8cdc5efd484e9\";a:5:{s:6:\"source\";s:32:\"6109a386322139ae05c8cdc5efd484e9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c9e7e52df72892906f6eae5a159c8c0d\";a:5:{s:6:\"source\";s:32:\"c9e7e52df72892906f6eae5a159c8c0d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"94bed9a2c2d0af98ef448e007768a844\";a:5:{s:6:\"source\";s:32:\"94bed9a2c2d0af98ef448e007768a844\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b5723d32e6d434ad8bf58ba8684cfe61\";a:5:{s:6:\"source\";s:32:\"b5723d32e6d434ad8bf58ba8684cfe61\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b98039d68d8faf488034fd673249d2a0\";a:5:{s:6:\"source\";s:32:\"b98039d68d8faf488034fd673249d2a0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"509d554d32a77e4becea82721ade5918\";a:5:{s:6:\"source\";s:32:\"509d554d32a77e4becea82721ade5918\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e86068c6a3dc6e13ec10aa17db20a8f7\";a:5:{s:6:\"source\";s:32:\"e86068c6a3dc6e13ec10aa17db20a8f7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c4ac51b4f1475c4ff4398b9e5d5eb939\";a:5:{s:6:\"source\";s:32:\"c4ac51b4f1475c4ff4398b9e5d5eb939\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2b6684510a2a449ecb8847ce02527a84\";a:5:{s:6:\"source\";s:32:\"2b6684510a2a449ecb8847ce02527a84\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"87fbf443a849af834eae38e6f2ab61ed\";a:5:{s:6:\"source\";s:32:\"87fbf443a849af834eae38e6f2ab61ed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"81414c6232999201ed360094f2b6f50f\";a:5:{s:6:\"source\";s:32:\"81414c6232999201ed360094f2b6f50f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"db68c2d5fcc5d46da3e2d87e977982f1\";a:5:{s:6:\"source\";s:32:\"db68c2d5fcc5d46da3e2d87e977982f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a6117ced5ae0baa598acd5f198f9df9\";a:5:{s:6:\"source\";s:32:\"8a6117ced5ae0baa598acd5f198f9df9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9c8465d8254b45bc4574d2943f739cc1\";a:5:{s:6:\"source\";s:32:\"9c8465d8254b45bc4574d2943f739cc1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9954eed2c80b77963f73949dec7199bd\";a:5:{s:6:\"source\";s:32:\"9954eed2c80b77963f73949dec7199bd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7997c26fb070ea2a1e0e9bb5c738ca1e\";a:5:{s:6:\"source\";s:32:\"7997c26fb070ea2a1e0e9bb5c738ca1e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8253d824e0fb0e90d2b3cae0984a8993\";a:5:{s:6:\"source\";s:32:\"8253d824e0fb0e90d2b3cae0984a8993\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1fd53a3b54dfe53c01315fa7fe9d9a8e\";a:5:{s:6:\"source\";s:32:\"1fd53a3b54dfe53c01315fa7fe9d9a8e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"92588d9963d3d1880df167c7f8ca3ae2\";a:5:{s:6:\"source\";s:32:\"92588d9963d3d1880df167c7f8ca3ae2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5f4e65507841a4d2b45b1af249f8ce71\";a:5:{s:6:\"source\";s:32:\"5f4e65507841a4d2b45b1af249f8ce71\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d545ee6efc3442c77fb9cf7a305c2e30\";a:5:{s:6:\"source\";s:32:\"d545ee6efc3442c77fb9cf7a305c2e30\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7b8de387adfa8b939917c2f9c238da7f\";a:5:{s:6:\"source\";s:32:\"7b8de387adfa8b939917c2f9c238da7f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1fae684dd14f1f4a7cd4a4d7309001e6\";a:5:{s:6:\"source\";s:32:\"1fae684dd14f1f4a7cd4a4d7309001e6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a3080da584858d710e84639dfdb26352\";a:5:{s:6:\"source\";s:32:\"a3080da584858d710e84639dfdb26352\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f7f9c50aeb87542404972fc33328d5a8\";a:5:{s:6:\"source\";s:32:\"f7f9c50aeb87542404972fc33328d5a8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d795207c1ded75c0db70f294309c673\";a:5:{s:6:\"source\";s:32:\"4d795207c1ded75c0db70f294309c673\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7d5d82efe72d81925e41620b3938a0f6\";a:5:{s:6:\"source\";s:32:\"7d5d82efe72d81925e41620b3938a0f6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9d74c92627234e9db6404f461a862b98\";a:5:{s:6:\"source\";s:32:\"9d74c92627234e9db6404f461a862b98\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8e0f164784a8ba7a45ea1f8e79aa194d\";a:5:{s:6:\"source\";s:32:\"8e0f164784a8ba7a45ea1f8e79aa194d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3d948a76360058ede5d39c9889783098\";a:5:{s:6:\"source\";s:32:\"3d948a76360058ede5d39c9889783098\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e21f736fb0b11d2e117d4fc4a8433da1\";a:5:{s:6:\"source\";s:32:\"e21f736fb0b11d2e117d4fc4a8433da1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cbe535bb049a9a34a172c7a48428cb27\";a:5:{s:6:\"source\";s:32:\"cbe535bb049a9a34a172c7a48428cb27\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"99c2aa8e7bbbc81fcc834fc2df260a18\";a:5:{s:6:\"source\";s:32:\"99c2aa8e7bbbc81fcc834fc2df260a18\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4932e575a9fa5f8ea70dbf71bf846c7c\";a:5:{s:6:\"source\";s:32:\"4932e575a9fa5f8ea70dbf71bf846c7c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8f6b91136436a569e476a34186bac68b\";a:5:{s:6:\"source\";s:32:\"8f6b91136436a569e476a34186bac68b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f253c35fcb50cc73b03db3b0341e2300\";a:5:{s:6:\"source\";s:32:\"f253c35fcb50cc73b03db3b0341e2300\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cc55b2f68bbfc0671277b653787afb62\";a:5:{s:6:\"source\";s:32:\"cc55b2f68bbfc0671277b653787afb62\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f840b3ace19e881fe5010f6fd3b42153\";a:5:{s:6:\"source\";s:32:\"f840b3ace19e881fe5010f6fd3b42153\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"051625e20290e9e8d8c4011142928467\";a:5:{s:6:\"source\";s:32:\"051625e20290e9e8d8c4011142928467\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f02aae4839afba7d1332b716c3672bb\";a:5:{s:6:\"source\";s:32:\"7f02aae4839afba7d1332b716c3672bb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"650620c8a42051325b0b6f812d360e11\";a:5:{s:6:\"source\";s:32:\"650620c8a42051325b0b6f812d360e11\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"71b5b4da6e8101764740fcdb99753c3e\";a:5:{s:6:\"source\";s:32:\"71b5b4da6e8101764740fcdb99753c3e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"75e000c07b4bf86a23269ab53a6c7b57\";a:5:{s:6:\"source\";s:32:\"75e000c07b4bf86a23269ab53a6c7b57\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cce5de8ed2c1ffb0cd0ef8d5effb7566\";a:5:{s:6:\"source\";s:32:\"cce5de8ed2c1ffb0cd0ef8d5effb7566\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1733e56ff8bc8e870e08a1a057435e1d\";a:5:{s:6:\"source\";s:32:\"1733e56ff8bc8e870e08a1a057435e1d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"31bdf88a1aa229993de31be49d5512a8\";a:5:{s:6:\"source\";s:32:\"31bdf88a1aa229993de31be49d5512a8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e492bb42cf2704794562659a477057c5\";a:5:{s:6:\"source\";s:32:\"e492bb42cf2704794562659a477057c5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c13e97d00e38e6e0b97a9982a230ad2\";a:5:{s:6:\"source\";s:32:\"2c13e97d00e38e6e0b97a9982a230ad2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7746e6dbe35256130fac0f542f514f9b\";a:5:{s:6:\"source\";s:32:\"7746e6dbe35256130fac0f542f514f9b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b1d9e9b3f3a88e1dedddeb9632617ea4\";a:5:{s:6:\"source\";s:32:\"b1d9e9b3f3a88e1dedddeb9632617ea4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5d41ddb8d8d0ff30827d9db9ed593403\";a:5:{s:6:\"source\";s:32:\"5d41ddb8d8d0ff30827d9db9ed593403\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"29bfb9d605ae362bfa049576f00ce479\";a:5:{s:6:\"source\";s:32:\"29bfb9d605ae362bfa049576f00ce479\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"06bec03c4810482a368cc6f1a12c640b\";a:5:{s:6:\"source\";s:32:\"06bec03c4810482a368cc6f1a12c640b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"51b5543df57f43678684cf250522bc77\";a:5:{s:6:\"source\";s:32:\"51b5543df57f43678684cf250522bc77\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0f0a4ec826a5053affc952f8ee5ddabb\";a:5:{s:6:\"source\";s:32:\"0f0a4ec826a5053affc952f8ee5ddabb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fe3fed80c378aee5d7f2948df28f680d\";a:5:{s:6:\"source\";s:32:\"fe3fed80c378aee5d7f2948df28f680d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8cf14d25f1a0f7fac0835f684af9795c\";a:5:{s:6:\"source\";s:32:\"8cf14d25f1a0f7fac0835f684af9795c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"def38ee569fdf8d3785fc16e88df35b8\";a:5:{s:6:\"source\";s:32:\"def38ee569fdf8d3785fc16e88df35b8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"349010e720487c6d8f940fe3a61b1939\";a:5:{s:6:\"source\";s:32:\"349010e720487c6d8f940fe3a61b1939\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"02d61ada1073a6396f8944d43b8924ec\";a:5:{s:6:\"source\";s:32:\"02d61ada1073a6396f8944d43b8924ec\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f8388f8cebe434c01756f62e19db6a9b\";a:5:{s:6:\"source\";s:32:\"f8388f8cebe434c01756f62e19db6a9b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9124aba37e1be3ad49c44bf73f4c9a7c\";a:5:{s:6:\"source\";s:32:\"9124aba37e1be3ad49c44bf73f4c9a7c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2fc954128bc6fef57bf63fe0a8025107\";a:5:{s:6:\"source\";s:32:\"2fc954128bc6fef57bf63fe0a8025107\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1af15403e6e6431cd6bf1cf756c98c52\";a:5:{s:6:\"source\";s:32:\"1af15403e6e6431cd6bf1cf756c98c52\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"de6e0c595ed797e222a2902c0d199b74\";a:5:{s:6:\"source\";s:32:\"de6e0c595ed797e222a2902c0d199b74\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1c86364527edf7e0110b69ea512c3058\";a:5:{s:6:\"source\";s:32:\"1c86364527edf7e0110b69ea512c3058\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1ceef3f760e0b148f5223aaa655c27a3\";a:5:{s:6:\"source\";s:32:\"1ceef3f760e0b148f5223aaa655c27a3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"96c63865fb75194c499d69609322a321\";a:5:{s:6:\"source\";s:32:\"96c63865fb75194c499d69609322a321\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"410bcf4abd7134cbd19782a669d0af33\";a:5:{s:6:\"source\";s:32:\"410bcf4abd7134cbd19782a669d0af33\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"19d3c528f79bc48046b50faa4c6b665f\";a:5:{s:6:\"source\";s:32:\"19d3c528f79bc48046b50faa4c6b665f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b64bd3e137aa2c028c932344c6b5bb44\";a:5:{s:6:\"source\";s:32:\"b64bd3e137aa2c028c932344c6b5bb44\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a6c69a389805f84fee913480bd745d08\";a:5:{s:6:\"source\";s:32:\"a6c69a389805f84fee913480bd745d08\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"400ea1851abcc6d971e8b08d3ac98f0a\";a:5:{s:6:\"source\";s:32:\"400ea1851abcc6d971e8b08d3ac98f0a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4269e772d953e5fe9d5b74b6737726e6\";a:5:{s:6:\"source\";s:32:\"4269e772d953e5fe9d5b74b6737726e6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3f8199d7a2843a66c67e0765f4926c9e\";a:5:{s:6:\"source\";s:32:\"3f8199d7a2843a66c67e0765f4926c9e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"72d8fd190e1c9be1298b23433fcd9080\";a:5:{s:6:\"source\";s:32:\"72d8fd190e1c9be1298b23433fcd9080\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7634f5cda36d916502fb5bfb88cc1336\";a:5:{s:6:\"source\";s:32:\"7634f5cda36d916502fb5bfb88cc1336\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e509071096b6281bed74416832b95d9d\";a:5:{s:6:\"source\";s:32:\"e509071096b6281bed74416832b95d9d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"df8e3c9065899ffd49267e337a71b3c4\";a:5:{s:6:\"source\";s:32:\"df8e3c9065899ffd49267e337a71b3c4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1890f1c87842442ac86ed90803710f5b\";a:5:{s:6:\"source\";s:32:\"1890f1c87842442ac86ed90803710f5b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"12bc15907088d2ab8473f30f9615fa19\";a:5:{s:6:\"source\";s:32:\"12bc15907088d2ab8473f30f9615fa19\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e79074d464d21cc38f6e073fb07134f9\";a:5:{s:6:\"source\";s:32:\"e79074d464d21cc38f6e073fb07134f9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bd4268e42beba3b7fec4521947192273\";a:5:{s:6:\"source\";s:32:\"bd4268e42beba3b7fec4521947192273\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cd2e6ef07db6e08140f42c36429fcb9a\";a:5:{s:6:\"source\";s:32:\"cd2e6ef07db6e08140f42c36429fcb9a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"09acc517f0d84f5547baaf9049089579\";a:5:{s:6:\"source\";s:32:\"09acc517f0d84f5547baaf9049089579\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0903c01a7b1092d81ef6e05f1d7950e5\";a:5:{s:6:\"source\";s:32:\"0903c01a7b1092d81ef6e05f1d7950e5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"698e152d8a42fb85786bcd6e62669b41\";a:5:{s:6:\"source\";s:32:\"698e152d8a42fb85786bcd6e62669b41\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"942afd66847358daf43ed7c911fd5465\";a:5:{s:6:\"source\";s:32:\"942afd66847358daf43ed7c911fd5465\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a6b9ff2334bf6118a3521e9600aac388\";a:5:{s:6:\"source\";s:32:\"a6b9ff2334bf6118a3521e9600aac388\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d3d567671ff87c5202a6db5552402a96\";a:5:{s:6:\"source\";s:32:\"d3d567671ff87c5202a6db5552402a96\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"83b11075c2afb0abcb5bc938af2c2ef8\";a:5:{s:6:\"source\";s:32:\"83b11075c2afb0abcb5bc938af2c2ef8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"366785c29b488801a3bd8fa4f7d29cde\";a:5:{s:6:\"source\";s:32:\"366785c29b488801a3bd8fa4f7d29cde\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"806435c6cdce6c2ebae4fb4f20bdb720\";a:5:{s:6:\"source\";s:32:\"806435c6cdce6c2ebae4fb4f20bdb720\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cf73f4db90414ff9db12ad15fd3be0b0\";a:5:{s:6:\"source\";s:32:\"cf73f4db90414ff9db12ad15fd3be0b0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d82d8623323c4d809842da8e5cb33d65\";a:5:{s:6:\"source\";s:32:\"d82d8623323c4d809842da8e5cb33d65\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e14f7cec74740de9586348a359aa7815\";a:5:{s:6:\"source\";s:32:\"e14f7cec74740de9586348a359aa7815\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"945cc029d10435a6e6f917710dc9bfe2\";a:5:{s:6:\"source\";s:32:\"945cc029d10435a6e6f917710dc9bfe2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d980c8fc899e5673c78cdec581f8983f\";a:5:{s:6:\"source\";s:32:\"d980c8fc899e5673c78cdec581f8983f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8e3c0020f1e80eb436e97dddaae86793\";a:5:{s:6:\"source\";s:32:\"8e3c0020f1e80eb436e97dddaae86793\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"49ffce396098073e4afb8a36d4386b6d\";a:5:{s:6:\"source\";s:32:\"49ffce396098073e4afb8a36d4386b6d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"416819ce19a3fdf74cb7d623095aa8fd\";a:5:{s:6:\"source\";s:32:\"416819ce19a3fdf74cb7d623095aa8fd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"135361fe446ffc959ff7001e47a0c39d\";a:5:{s:6:\"source\";s:32:\"135361fe446ffc959ff7001e47a0c39d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"42305b9ce0bd1b9c2b1b34582643d941\";a:5:{s:6:\"source\";s:32:\"42305b9ce0bd1b9c2b1b34582643d941\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b082e71aaac61db55b02663cfbd549e7\";a:5:{s:6:\"source\";s:32:\"b082e71aaac61db55b02663cfbd549e7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5ee37228bd324bbe1487d3a5903c3f1f\";a:5:{s:6:\"source\";s:32:\"5ee37228bd324bbe1487d3a5903c3f1f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6db7949eed0c4846d6ee6e8e4f6045fe\";a:5:{s:6:\"source\";s:32:\"6db7949eed0c4846d6ee6e8e4f6045fe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b20c7722ec1cba229b82ee95c31f253a\";a:5:{s:6:\"source\";s:32:\"b20c7722ec1cba229b82ee95c31f253a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"474a279f8301a8009ed196ffa0a7aa67\";a:5:{s:6:\"source\";s:32:\"474a279f8301a8009ed196ffa0a7aa67\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"88aeb47b5d61cb64d9427a6409ef8ce3\";a:5:{s:6:\"source\";s:32:\"88aeb47b5d61cb64d9427a6409ef8ce3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c270f9611a641a8fae90807d4d773d1e\";a:5:{s:6:\"source\";s:32:\"c270f9611a641a8fae90807d4d773d1e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3f9ae4e67f374cf0e841ea6853bc5788\";a:5:{s:6:\"source\";s:32:\"3f9ae4e67f374cf0e841ea6853bc5788\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"725784c64624aad68bc947f7f1198bfa\";a:5:{s:6:\"source\";s:32:\"725784c64624aad68bc947f7f1198bfa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a2c865006456acd5a1a588e8c6ff3611\";a:5:{s:6:\"source\";s:32:\"a2c865006456acd5a1a588e8c6ff3611\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d7fcc9d772d0294e38ae0355668c981a\";a:5:{s:6:\"source\";s:32:\"d7fcc9d772d0294e38ae0355668c981a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b130ae889eb8e1cbcf2340e72f758e56\";a:5:{s:6:\"source\";s:32:\"b130ae889eb8e1cbcf2340e72f758e56\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"284920d9a115adb04fbe39fa00cf77b5\";a:5:{s:6:\"source\";s:32:\"284920d9a115adb04fbe39fa00cf77b5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7dbf0879082951aa7bcdf3db27bf38d9\";a:5:{s:6:\"source\";s:32:\"7dbf0879082951aa7bcdf3db27bf38d9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"96b040d5165fb9772c7f3adeccd2526b\";a:5:{s:6:\"source\";s:32:\"96b040d5165fb9772c7f3adeccd2526b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"04e1f63a4ceefe284f48582c4e2307f6\";a:5:{s:6:\"source\";s:32:\"04e1f63a4ceefe284f48582c4e2307f6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"89b919436f560a83eb5e9b7e91bc2ff6\";a:5:{s:6:\"source\";s:32:\"89b919436f560a83eb5e9b7e91bc2ff6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"34429569c88b66cb4001ff958f77d549\";a:5:{s:6:\"source\";s:32:\"34429569c88b66cb4001ff958f77d549\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3e28b34c9d3645c16b3dd8720e16ebc6\";a:5:{s:6:\"source\";s:32:\"3e28b34c9d3645c16b3dd8720e16ebc6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"507aa0651dc842134cd6c86c4d570b38\";a:5:{s:6:\"source\";s:32:\"507aa0651dc842134cd6c86c4d570b38\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a12bf3dbbba3de1ea1e1a46b03e0cd64\";a:5:{s:6:\"source\";s:32:\"a12bf3dbbba3de1ea1e1a46b03e0cd64\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0a56e79fa820bac0b818d6b3356a8bc7\";a:5:{s:6:\"source\";s:32:\"0a56e79fa820bac0b818d6b3356a8bc7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"359931255fae09f3670c0fcc83b7cc75\";a:5:{s:6:\"source\";s:32:\"359931255fae09f3670c0fcc83b7cc75\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d39eb3e8cd980984907e9efd79ce504\";a:5:{s:6:\"source\";s:32:\"4d39eb3e8cd980984907e9efd79ce504\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cafd7ff92a2cf12f8364ef2425d0e7db\";a:5:{s:6:\"source\";s:32:\"cafd7ff92a2cf12f8364ef2425d0e7db\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"66226d0de652a8baffaa3f47b2c55d62\";a:5:{s:6:\"source\";s:32:\"66226d0de652a8baffaa3f47b2c55d62\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3ceccfc362f55abe073bd61323f54e63\";a:5:{s:6:\"source\";s:32:\"3ceccfc362f55abe073bd61323f54e63\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8d9539458790ddeaadb92eade80f2359\";a:5:{s:6:\"source\";s:32:\"8d9539458790ddeaadb92eade80f2359\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"60e827e9d494e2a4f6589ffa2ffb7084\";a:5:{s:6:\"source\";s:32:\"60e827e9d494e2a4f6589ffa2ffb7084\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"14bfa7c6802da815402bba787ebe31e1\";a:5:{s:6:\"source\";s:32:\"14bfa7c6802da815402bba787ebe31e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7d38d88e26e02d157af297369749a665\";a:5:{s:6:\"source\";s:32:\"7d38d88e26e02d157af297369749a665\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"83822ea90c4b45fd72470e8a867da03f\";a:5:{s:6:\"source\";s:32:\"83822ea90c4b45fd72470e8a867da03f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1493b38d4fd7d94dcf491daaf2205a6b\";a:5:{s:6:\"source\";s:32:\"1493b38d4fd7d94dcf491daaf2205a6b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"80460d69178a55d58b9a974afa59724c\";a:5:{s:6:\"source\";s:32:\"80460d69178a55d58b9a974afa59724c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fdc163cdca4969fd55b4d60df319a094\";a:5:{s:6:\"source\";s:32:\"fdc163cdca4969fd55b4d60df319a094\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"23aba89bf567fda1ebf40566e41cda6b\";a:5:{s:6:\"source\";s:32:\"23aba89bf567fda1ebf40566e41cda6b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"54a810f90bfacb278b4e3bd70f60ead1\";a:5:{s:6:\"source\";s:32:\"54a810f90bfacb278b4e3bd70f60ead1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b329d525e5273a1429abed26ab0019b3\";a:5:{s:6:\"source\";s:32:\"b329d525e5273a1429abed26ab0019b3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"06272a0ea54a86504edf528eb8c2bd9b\";a:5:{s:6:\"source\";s:32:\"06272a0ea54a86504edf528eb8c2bd9b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"11d0a795f86d0f403cbb1cc6c9f7c624\";a:5:{s:6:\"source\";s:32:\"11d0a795f86d0f403cbb1cc6c9f7c624\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dd4ae47486447c39286e0902ad8a11ad\";a:5:{s:6:\"source\";s:32:\"dd4ae47486447c39286e0902ad8a11ad\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7e8f65787d8f8cefb67f871009cb418f\";a:5:{s:6:\"source\";s:32:\"7e8f65787d8f8cefb67f871009cb418f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"854f08bd86b423a87a2ac33b5970f539\";a:5:{s:6:\"source\";s:32:\"854f08bd86b423a87a2ac33b5970f539\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b1cc12160a78d72afedf5b3e61ca0e94\";a:5:{s:6:\"source\";s:32:\"b1cc12160a78d72afedf5b3e61ca0e94\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8b7995578592d4f23766b3cbc3bd6e9e\";a:5:{s:6:\"source\";s:32:\"8b7995578592d4f23766b3cbc3bd6e9e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"18e8a9b0afed0de96e2bbfe009e75815\";a:5:{s:6:\"source\";s:32:\"18e8a9b0afed0de96e2bbfe009e75815\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a7b0d9298fca60e25f2797b3c7d07c7\";a:5:{s:6:\"source\";s:32:\"8a7b0d9298fca60e25f2797b3c7d07c7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b0c363a68571006c0483cba9ad397fed\";a:5:{s:6:\"source\";s:32:\"b0c363a68571006c0483cba9ad397fed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"91412eafee32daaf94e37e6eae820b88\";a:5:{s:6:\"source\";s:32:\"91412eafee32daaf94e37e6eae820b88\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d616b9f3a541af77f0d2036eeb61944\";a:5:{s:6:\"source\";s:32:\"4d616b9f3a541af77f0d2036eeb61944\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d344c092baadf1226f874c1af6f8544a\";a:5:{s:6:\"source\";s:32:\"d344c092baadf1226f874c1af6f8544a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bd9833cc1941da34c54c84b4ef4f11af\";a:5:{s:6:\"source\";s:32:\"bd9833cc1941da34c54c84b4ef4f11af\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f20dd6c2825fbf344cbc3b7dc386c21c\";a:5:{s:6:\"source\";s:32:\"f20dd6c2825fbf344cbc3b7dc386c21c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1dd7a62ae5357292c2e1b4ae9f0244c0\";a:5:{s:6:\"source\";s:32:\"1dd7a62ae5357292c2e1b4ae9f0244c0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"80ef621bbe571fd327c118423bff3d04\";a:5:{s:6:\"source\";s:32:\"80ef621bbe571fd327c118423bff3d04\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"00ec57cfe93ea4995bd2f39f237b01f0\";a:5:{s:6:\"source\";s:32:\"00ec57cfe93ea4995bd2f39f237b01f0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dd524170b97c9cdf1f9d484652fa093b\";a:5:{s:6:\"source\";s:32:\"dd524170b97c9cdf1f9d484652fa093b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c3274b20966745d1c989114740bc16b\";a:5:{s:6:\"source\";s:32:\"3c3274b20966745d1c989114740bc16b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"588bb386d088137b011287a2cff5d23b\";a:5:{s:6:\"source\";s:32:\"588bb386d088137b011287a2cff5d23b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"970570f0b3db6be00c45716ebcf8a0a8\";a:5:{s:6:\"source\";s:32:\"970570f0b3db6be00c45716ebcf8a0a8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5b92110c7815c6f0e431ee82aea20ed0\";a:5:{s:6:\"source\";s:32:\"5b92110c7815c6f0e431ee82aea20ed0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2adb84929b49a834b1f7074ce65a47fa\";a:5:{s:6:\"source\";s:32:\"2adb84929b49a834b1f7074ce65a47fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7980f4e4f8f0368736e866d838386537\";a:5:{s:6:\"source\";s:32:\"7980f4e4f8f0368736e866d838386537\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e02a21cce8f9a138d97b3b3f90944977\";a:5:{s:6:\"source\";s:32:\"e02a21cce8f9a138d97b3b3f90944977\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0454d24b15123b1ba752d5e3d0f7c3d4\";a:5:{s:6:\"source\";s:32:\"0454d24b15123b1ba752d5e3d0f7c3d4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9af5d44b6bb41b9ad569ca7f4d3e8bc8\";a:5:{s:6:\"source\";s:32:\"9af5d44b6bb41b9ad569ca7f4d3e8bc8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1f294e73546d21c4ed680bb5089ca00e\";a:5:{s:6:\"source\";s:32:\"1f294e73546d21c4ed680bb5089ca00e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"df2cf5772b95f4527e896c8e823187ca\";a:5:{s:6:\"source\";s:32:\"df2cf5772b95f4527e896c8e823187ca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"367bd0f7e58c1cee1d1db10f51d44005\";a:5:{s:6:\"source\";s:32:\"367bd0f7e58c1cee1d1db10f51d44005\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b7fcbd20331b3be293792a2915baeac7\";a:5:{s:6:\"source\";s:32:\"b7fcbd20331b3be293792a2915baeac7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5b957c30a04d6cdfaaca36e09e9f7f3b\";a:5:{s:6:\"source\";s:32:\"5b957c30a04d6cdfaaca36e09e9f7f3b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8fd8f4cfbcda53bfc54be0d56b8782e3\";a:5:{s:6:\"source\";s:32:\"8fd8f4cfbcda53bfc54be0d56b8782e3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ac44bc989577bf9ba5d0453befcc34c0\";a:5:{s:6:\"source\";s:32:\"ac44bc989577bf9ba5d0453befcc34c0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f775c0e6c7bea96876577fa18dd1d2c6\";a:5:{s:6:\"source\";s:32:\"f775c0e6c7bea96876577fa18dd1d2c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9ceab6849c1143c00895bd1e354c6ff1\";a:5:{s:6:\"source\";s:32:\"9ceab6849c1143c00895bd1e354c6ff1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"26baf7ab634acd7cf1d6d77afcd03417\";a:5:{s:6:\"source\";s:32:\"26baf7ab634acd7cf1d6d77afcd03417\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2b67601a0f52f71590df6c411eeac6d4\";a:5:{s:6:\"source\";s:32:\"2b67601a0f52f71590df6c411eeac6d4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9466730db57cdfab3491ff4f55238116\";a:5:{s:6:\"source\";s:32:\"9466730db57cdfab3491ff4f55238116\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3e8dd78a936064081f830b89468125c6\";a:5:{s:6:\"source\";s:32:\"3e8dd78a936064081f830b89468125c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c069b224e810de2c9a6f80ae0bf4f6b3\";a:5:{s:6:\"source\";s:32:\"c069b224e810de2c9a6f80ae0bf4f6b3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"af2eff0de8b8cdbf03d4f50502e61a88\";a:5:{s:6:\"source\";s:32:\"af2eff0de8b8cdbf03d4f50502e61a88\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ded58aeee9cac74e5183075e1335fa2f\";a:5:{s:6:\"source\";s:32:\"ded58aeee9cac74e5183075e1335fa2f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3b91a0c083e0f8c93113d102096fed86\";a:5:{s:6:\"source\";s:32:\"3b91a0c083e0f8c93113d102096fed86\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ed468ccf61f34ea32a6cad1c81f923a3\";a:5:{s:6:\"source\";s:32:\"ed468ccf61f34ea32a6cad1c81f923a3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f5f52b2a689829a5ccc10dfdb85cd74d\";a:5:{s:6:\"source\";s:32:\"f5f52b2a689829a5ccc10dfdb85cd74d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0563e72c1652f9d0811068d60414c083\";a:5:{s:6:\"source\";s:32:\"0563e72c1652f9d0811068d60414c083\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c76f4ba711de16ac48ab554ca3189822\";a:5:{s:6:\"source\";s:32:\"c76f4ba711de16ac48ab554ca3189822\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"09ae3716e2d0f0731023892563dfdda9\";a:5:{s:6:\"source\";s:32:\"09ae3716e2d0f0731023892563dfdda9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c6b3c9956133974c0a316eb73d9f3e8c\";a:5:{s:6:\"source\";s:32:\"c6b3c9956133974c0a316eb73d9f3e8c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"48b9e8d05b8387acb626474e313ba40e\";a:5:{s:6:\"source\";s:32:\"48b9e8d05b8387acb626474e313ba40e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"89e50e2b7f5b7ad6f9efbfcef916f1ed\";a:5:{s:6:\"source\";s:32:\"89e50e2b7f5b7ad6f9efbfcef916f1ed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"304bb8a48a7d8d8dfeede8e91b655b65\";a:5:{s:6:\"source\";s:32:\"304bb8a48a7d8d8dfeede8e91b655b65\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"05efe7ea5503c8ca1c592bf4881968fc\";a:5:{s:6:\"source\";s:32:\"05efe7ea5503c8ca1c592bf4881968fc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f1c0327393ed38f74463926c5c5b462e\";a:5:{s:6:\"source\";s:32:\"f1c0327393ed38f74463926c5c5b462e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"24881a1672d05aa77ecf63ed563c000d\";a:5:{s:6:\"source\";s:32:\"24881a1672d05aa77ecf63ed563c000d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ab7e93bca48313e335b7d970a4582a3f\";a:5:{s:6:\"source\";s:32:\"ab7e93bca48313e335b7d970a4582a3f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d3a40455ab55833a1f1569abfb82e7a\";a:5:{s:6:\"source\";s:32:\"4d3a40455ab55833a1f1569abfb82e7a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"afdbf4e6cedda6b4105f4df4d1ae7b7e\";a:5:{s:6:\"source\";s:32:\"afdbf4e6cedda6b4105f4df4d1ae7b7e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"85776fef4e939f7a5f03f0e3da1441b0\";a:5:{s:6:\"source\";s:32:\"85776fef4e939f7a5f03f0e3da1441b0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"92928e88bce1a01fa9c514277efb7314\";a:5:{s:6:\"source\";s:32:\"92928e88bce1a01fa9c514277efb7314\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d3e201d01d8c889ea381560f650b566f\";a:5:{s:6:\"source\";s:32:\"d3e201d01d8c889ea381560f650b566f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b1b4176a35002ac7c789b38d0eddeff0\";a:5:{s:6:\"source\";s:32:\"b1b4176a35002ac7c789b38d0eddeff0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c0d77f481a3e759054d9bba053305aa8\";a:5:{s:6:\"source\";s:32:\"c0d77f481a3e759054d9bba053305aa8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6924d29991eeaff2530b8c6c1c6cc652\";a:5:{s:6:\"source\";s:32:\"6924d29991eeaff2530b8c6c1c6cc652\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"18a0bbe6325cd991e89730a7f2d2f7a4\";a:5:{s:6:\"source\";s:32:\"18a0bbe6325cd991e89730a7f2d2f7a4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0672667fbd486664df8bb367ffee9c65\";a:5:{s:6:\"source\";s:32:\"0672667fbd486664df8bb367ffee9c65\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"19a2689ce21be94560fca530bfa64ac6\";a:5:{s:6:\"source\";s:32:\"19a2689ce21be94560fca530bfa64ac6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a889c024eea21e64308a3e12e6c455b7\";a:5:{s:6:\"source\";s:32:\"a889c024eea21e64308a3e12e6c455b7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"20503feaf1f5d3a8d2fe91d090b3edfa\";a:5:{s:6:\"source\";s:32:\"20503feaf1f5d3a8d2fe91d090b3edfa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"616993b0ba0f356a7a1e333981dad9ff\";a:5:{s:6:\"source\";s:32:\"616993b0ba0f356a7a1e333981dad9ff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ead7447e4eceb0af9e971b7c8af7eb6c\";a:5:{s:6:\"source\";s:32:\"ead7447e4eceb0af9e971b7c8af7eb6c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0391db42bd4837fd5ff08af77261b926\";a:5:{s:6:\"source\";s:32:\"0391db42bd4837fd5ff08af77261b926\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"177f5aeb355a81cc418fced6c87daf6b\";a:5:{s:6:\"source\";s:32:\"177f5aeb355a81cc418fced6c87daf6b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"97204ce842c000dd0f64c16fcd4fc1b9\";a:5:{s:6:\"source\";s:32:\"97204ce842c000dd0f64c16fcd4fc1b9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"15c03a37bcbc76f58f4614b713c2bf54\";a:5:{s:6:\"source\";s:32:\"15c03a37bcbc76f58f4614b713c2bf54\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"64e194f30e25e68d91f785473e4c4075\";a:5:{s:6:\"source\";s:32:\"64e194f30e25e68d91f785473e4c4075\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"247532fcf3560b211e71fe0ed2b0c95a\";a:5:{s:6:\"source\";s:32:\"247532fcf3560b211e71fe0ed2b0c95a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e2f3863689155198e40e1ab38bf8a1ba\";a:5:{s:6:\"source\";s:32:\"e2f3863689155198e40e1ab38bf8a1ba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c05d9123ce645866662cb5561e580942\";a:5:{s:6:\"source\";s:32:\"c05d9123ce645866662cb5561e580942\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"68673386dd584a46dfa341ad6aab4bcc\";a:5:{s:6:\"source\";s:32:\"68673386dd584a46dfa341ad6aab4bcc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"daf3efb09bef7ef21ac283c73a37df2f\";a:5:{s:6:\"source\";s:32:\"daf3efb09bef7ef21ac283c73a37df2f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f295e6a194cbe02cf63f16957065cd12\";a:5:{s:6:\"source\";s:32:\"f295e6a194cbe02cf63f16957065cd12\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e37a71bd4aff32964d3dc4cc69538821\";a:5:{s:6:\"source\";s:32:\"e37a71bd4aff32964d3dc4cc69538821\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff9c3dc37af430db8c4d359a6bcb3de8\";a:5:{s:6:\"source\";s:32:\"ff9c3dc37af430db8c4d359a6bcb3de8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1e0f9c3cc72577e3ea8e790844b0b9e0\";a:5:{s:6:\"source\";s:32:\"1e0f9c3cc72577e3ea8e790844b0b9e0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b102f06c093a79a8a4d645fd6cb915fd\";a:5:{s:6:\"source\";s:32:\"b102f06c093a79a8a4d645fd6cb915fd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"708bcbbadd6e3ed4fafcbc29554b3ad3\";a:5:{s:6:\"source\";s:32:\"708bcbbadd6e3ed4fafcbc29554b3ad3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d8e89b3b4f377ee7e093f7485e8d0095\";a:5:{s:6:\"source\";s:32:\"d8e89b3b4f377ee7e093f7485e8d0095\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"33f62328d2f7c0f3ed68ed64a65de19f\";a:5:{s:6:\"source\";s:32:\"33f62328d2f7c0f3ed68ed64a65de19f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"03747ba6b1510c9e444953800333078f\";a:5:{s:6:\"source\";s:32:\"03747ba6b1510c9e444953800333078f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0b68928cc33fd426ce84953927554ba4\";a:5:{s:6:\"source\";s:32:\"0b68928cc33fd426ce84953927554ba4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"91802d98240971e3f47fca95e759f14a\";a:5:{s:6:\"source\";s:32:\"91802d98240971e3f47fca95e759f14a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dfc27255b7ef9f17ff881e82ddefda32\";a:5:{s:6:\"source\";s:32:\"dfc27255b7ef9f17ff881e82ddefda32\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c293b79faaa981e382c2452d5cb8ae97\";a:5:{s:6:\"source\";s:32:\"c293b79faaa981e382c2452d5cb8ae97\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1524a7ed109933e042e05068572ecfb3\";a:5:{s:6:\"source\";s:32:\"1524a7ed109933e042e05068572ecfb3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1056568be59dd118e5caff45aeed20ea\";a:5:{s:6:\"source\";s:32:\"1056568be59dd118e5caff45aeed20ea\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"34f86ea9a762665c6dc42c73162d5093\";a:5:{s:6:\"source\";s:32:\"34f86ea9a762665c6dc42c73162d5093\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2bc326b2c3727e4c0144558793a81620\";a:5:{s:6:\"source\";s:32:\"2bc326b2c3727e4c0144558793a81620\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"330f01dd3c32a96aec295244b0f7ff54\";a:5:{s:6:\"source\";s:32:\"330f01dd3c32a96aec295244b0f7ff54\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cdeab485f8304ceb11513209d4a32386\";a:5:{s:6:\"source\";s:32:\"cdeab485f8304ceb11513209d4a32386\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4dc596ae9b86f9c6d5d77d7acac8ad26\";a:5:{s:6:\"source\";s:32:\"4dc596ae9b86f9c6d5d77d7acac8ad26\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e25c10c74b3cf17f06458fe5fc7fcef2\";a:5:{s:6:\"source\";s:32:\"e25c10c74b3cf17f06458fe5fc7fcef2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9a5a495b832202908944b9972bb07267\";a:5:{s:6:\"source\";s:32:\"9a5a495b832202908944b9972bb07267\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"85dffc14d811c860200a70d2faa17a14\";a:5:{s:6:\"source\";s:32:\"85dffc14d811c860200a70d2faa17a14\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"19b8435a3c7a1684f01fe1fce8f8b9c4\";a:5:{s:6:\"source\";s:32:\"19b8435a3c7a1684f01fe1fce8f8b9c4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9912e0993b416b0ca5f62b0897cb6f28\";a:5:{s:6:\"source\";s:32:\"9912e0993b416b0ca5f62b0897cb6f28\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"910509b3a41f763a4bc0b6a22a13d4fc\";a:5:{s:6:\"source\";s:32:\"910509b3a41f763a4bc0b6a22a13d4fc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"31b273776083c6772eca6eb755cb18bd\";a:5:{s:6:\"source\";s:32:\"31b273776083c6772eca6eb755cb18bd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"197cb4a3162147894d26cde4f37137f1\";a:5:{s:6:\"source\";s:32:\"197cb4a3162147894d26cde4f37137f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4659c0d96f3531e39ea1938c2cf1547c\";a:5:{s:6:\"source\";s:32:\"4659c0d96f3531e39ea1938c2cf1547c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"426a3ec09ed18bc1d926d927b2508150\";a:5:{s:6:\"source\";s:32:\"426a3ec09ed18bc1d926d927b2508150\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"02283d8fbbec7c14058cd38be9370bc9\";a:5:{s:6:\"source\";s:32:\"02283d8fbbec7c14058cd38be9370bc9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3181ecc639936dd33f2b1bb24acf9eb3\";a:5:{s:6:\"source\";s:32:\"3181ecc639936dd33f2b1bb24acf9eb3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"29401404a052de9c547822c8503098f5\";a:5:{s:6:\"source\";s:32:\"29401404a052de9c547822c8503098f5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"50267205440e6a5bbd228a25828bd90a\";a:5:{s:6:\"source\";s:32:\"50267205440e6a5bbd228a25828bd90a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ea758aa1562fd387718a49659a431253\";a:5:{s:6:\"source\";s:32:\"ea758aa1562fd387718a49659a431253\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b6cd7dbcbec4419f4f0a8f9cbcedc694\";a:5:{s:6:\"source\";s:32:\"b6cd7dbcbec4419f4f0a8f9cbcedc694\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fb90ba10bcea48328cf0defe307b6caa\";a:5:{s:6:\"source\";s:32:\"fb90ba10bcea48328cf0defe307b6caa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"795f95b41cc7090e769aeef74e497117\";a:5:{s:6:\"source\";s:32:\"795f95b41cc7090e769aeef74e497117\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d9c24a8704dd0f0654a87616338d55b\";a:5:{s:6:\"source\";s:32:\"4d9c24a8704dd0f0654a87616338d55b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"55098ca9acd6c58533af0c58bcb23c17\";a:5:{s:6:\"source\";s:32:\"55098ca9acd6c58533af0c58bcb23c17\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3ccf9962f28683f8cd987b5161c7dc6a\";a:5:{s:6:\"source\";s:32:\"3ccf9962f28683f8cd987b5161c7dc6a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"269d89c2521657bced34cb6f7a61bf7a\";a:5:{s:6:\"source\";s:32:\"269d89c2521657bced34cb6f7a61bf7a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c57b29180c57fd8b2664d757f72b7002\";a:5:{s:6:\"source\";s:32:\"c57b29180c57fd8b2664d757f72b7002\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e8f45073c2f47cc0df26fa4e2d769bf5\";a:5:{s:6:\"source\";s:32:\"e8f45073c2f47cc0df26fa4e2d769bf5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6cce3818ceda1d3e16e481d02997204c\";a:5:{s:6:\"source\";s:32:\"6cce3818ceda1d3e16e481d02997204c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0a441e4f11907e4b0be9cc2a23fcce76\";a:5:{s:6:\"source\";s:32:\"0a441e4f11907e4b0be9cc2a23fcce76\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2594584cc6e84f96fe10966f7d940b75\";a:5:{s:6:\"source\";s:32:\"2594584cc6e84f96fe10966f7d940b75\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"35ccf673ca1caba6f67f23f88f230abb\";a:5:{s:6:\"source\";s:32:\"35ccf673ca1caba6f67f23f88f230abb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a32631f3c04dcb6f27019b16aafafd52\";a:5:{s:6:\"source\";s:32:\"a32631f3c04dcb6f27019b16aafafd52\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a574544af66a23e8e2d406d521c0005d\";a:5:{s:6:\"source\";s:32:\"a574544af66a23e8e2d406d521c0005d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"09c4a5dad4cda63cca029441182b1497\";a:5:{s:6:\"source\";s:32:\"09c4a5dad4cda63cca029441182b1497\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6dfc20d5ba5cb529240166acc3b5fc9d\";a:5:{s:6:\"source\";s:32:\"6dfc20d5ba5cb529240166acc3b5fc9d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"411df56cdfe1078a7aba44a38411a059\";a:5:{s:6:\"source\";s:32:\"411df56cdfe1078a7aba44a38411a059\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4dc7e74e57b291656d8ec2d9b7023357\";a:5:{s:6:\"source\";s:32:\"4dc7e74e57b291656d8ec2d9b7023357\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"820c97c145f3cfcff1f976fe8fcf51d8\";a:5:{s:6:\"source\";s:32:\"820c97c145f3cfcff1f976fe8fcf51d8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"82c23a41872bcecf1bc559d78acf5d30\";a:5:{s:6:\"source\";s:32:\"82c23a41872bcecf1bc559d78acf5d30\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0b0c677c81a82172e3eca5b5276e52fa\";a:5:{s:6:\"source\";s:32:\"0b0c677c81a82172e3eca5b5276e52fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9763941056220e9d057890aca9f9fe0d\";a:5:{s:6:\"source\";s:32:\"9763941056220e9d057890aca9f9fe0d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"49ff2683e4105141fb42bc7e3cae1136\";a:5:{s:6:\"source\";s:32:\"49ff2683e4105141fb42bc7e3cae1136\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c9ca49de765a2076b8963a0a4368009e\";a:5:{s:6:\"source\";s:32:\"c9ca49de765a2076b8963a0a4368009e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3f551406b171e4283857b9b452ab5685\";a:5:{s:6:\"source\";s:32:\"3f551406b171e4283857b9b452ab5685\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"343b93c0544335a1bb0b8552f6d3d4e9\";a:5:{s:6:\"source\";s:32:\"343b93c0544335a1bb0b8552f6d3d4e9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9d121b04b95e416e5f922b97424721fd\";a:5:{s:6:\"source\";s:32:\"9d121b04b95e416e5f922b97424721fd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"93d1fc2c2603b53ce29fc1fbc0df8c2f\";a:5:{s:6:\"source\";s:32:\"93d1fc2c2603b53ce29fc1fbc0df8c2f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f19682b5f2be1b908a1c79a58b904acb\";a:5:{s:6:\"source\";s:32:\"f19682b5f2be1b908a1c79a58b904acb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d365d6a32a35f28fce920c5ebb1858e7\";a:5:{s:6:\"source\";s:32:\"d365d6a32a35f28fce920c5ebb1858e7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4fd4e3fd8d297b2fe8fa899d37106c41\";a:5:{s:6:\"source\";s:32:\"4fd4e3fd8d297b2fe8fa899d37106c41\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"83e74ad3a28e7d8b79b720da0a1b219f\";a:5:{s:6:\"source\";s:32:\"83e74ad3a28e7d8b79b720da0a1b219f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5fdd5bbff0a0177f96c2d26bc887b821\";a:5:{s:6:\"source\";s:32:\"5fdd5bbff0a0177f96c2d26bc887b821\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1b7b69a0ad18e54e6b264b3a82222186\";a:5:{s:6:\"source\";s:32:\"1b7b69a0ad18e54e6b264b3a82222186\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1c25302432e3f23910b0c48f751869cd\";a:5:{s:6:\"source\";s:32:\"1c25302432e3f23910b0c48f751869cd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"388613bc8aade076fb4e2529e5a9464b\";a:5:{s:6:\"source\";s:32:\"388613bc8aade076fb4e2529e5a9464b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e90b6aea6325fd073949e4b51d0df0cb\";a:5:{s:6:\"source\";s:32:\"e90b6aea6325fd073949e4b51d0df0cb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"52dd25be9da2a383e98a2842fe4fc1b3\";a:5:{s:6:\"source\";s:32:\"52dd25be9da2a383e98a2842fe4fc1b3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"046527db51fbab6045d167b37c536270\";a:5:{s:6:\"source\";s:32:\"046527db51fbab6045d167b37c536270\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ee9ce7a13e6c10c69c651ec12eb4911e\";a:5:{s:6:\"source\";s:32:\"ee9ce7a13e6c10c69c651ec12eb4911e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d9fa94dcd5d3d9b70a10a0dbfab6217e\";a:5:{s:6:\"source\";s:32:\"d9fa94dcd5d3d9b70a10a0dbfab6217e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d416b251dfadb2835868f7ff5158dce3\";a:5:{s:6:\"source\";s:32:\"d416b251dfadb2835868f7ff5158dce3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"71e01201f0ab3807445d0089cc234072\";a:5:{s:6:\"source\";s:32:\"71e01201f0ab3807445d0089cc234072\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a2f6f729c2885b36c68e595608c2f5fd\";a:5:{s:6:\"source\";s:32:\"a2f6f729c2885b36c68e595608c2f5fd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7ec23dfdfc04690ed82e1bd1ffebb7dd\";a:5:{s:6:\"source\";s:32:\"7ec23dfdfc04690ed82e1bd1ffebb7dd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dd24b0d876425474e751d143e1d8a6b9\";a:5:{s:6:\"source\";s:32:\"dd24b0d876425474e751d143e1d8a6b9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"87142f3ff88501f4773eec7da2cab5e2\";a:5:{s:6:\"source\";s:32:\"87142f3ff88501f4773eec7da2cab5e2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2839302866414c3f5f4b254a1631bd41\";a:5:{s:6:\"source\";s:32:\"2839302866414c3f5f4b254a1631bd41\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d50acc0030c0c941d1cfa1f7d77dd7da\";a:5:{s:6:\"source\";s:32:\"d50acc0030c0c941d1cfa1f7d77dd7da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b0d35b4d1440616d5230dbf8f48cb1df\";a:5:{s:6:\"source\";s:32:\"b0d35b4d1440616d5230dbf8f48cb1df\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a15a74456997db780f4024ae982f7e59\";a:5:{s:6:\"source\";s:32:\"a15a74456997db780f4024ae982f7e59\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6c32fc0c42d10f33940c7fa5e7cabd31\";a:5:{s:6:\"source\";s:32:\"6c32fc0c42d10f33940c7fa5e7cabd31\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"02895a75c35ac64f974dcb081e2b9843\";a:5:{s:6:\"source\";s:32:\"02895a75c35ac64f974dcb081e2b9843\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c442dd58429c06cca3cb6e3fbe9cef54\";a:5:{s:6:\"source\";s:32:\"c442dd58429c06cca3cb6e3fbe9cef54\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"705ed8533481758a7cd6e7799f4b2115\";a:5:{s:6:\"source\";s:32:\"705ed8533481758a7cd6e7799f4b2115\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3912864b56155346ad61a8a943436208\";a:5:{s:6:\"source\";s:32:\"3912864b56155346ad61a8a943436208\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d24c53c8cae04896d4f6dc28380174a7\";a:5:{s:6:\"source\";s:32:\"d24c53c8cae04896d4f6dc28380174a7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2fd00524e46b219e55fc18d83f79d0b1\";a:5:{s:6:\"source\";s:32:\"2fd00524e46b219e55fc18d83f79d0b1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"08f2c3e59cb81d9c846f398c8e9f564c\";a:5:{s:6:\"source\";s:32:\"08f2c3e59cb81d9c846f398c8e9f564c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a032d5367552ad286fa43e9b6ae10a31\";a:5:{s:6:\"source\";s:32:\"a032d5367552ad286fa43e9b6ae10a31\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"52cabcb43a5ef2c4c68ec57cd2ee4f35\";a:5:{s:6:\"source\";s:32:\"52cabcb43a5ef2c4c68ec57cd2ee4f35\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"455fd4ea4b4740b409cf51af0baff5bf\";a:5:{s:6:\"source\";s:32:\"455fd4ea4b4740b409cf51af0baff5bf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"41a757aede84805659a8ffa279e782a1\";a:5:{s:6:\"source\";s:32:\"41a757aede84805659a8ffa279e782a1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"883707b54e31802c3154c6a5b5df775f\";a:5:{s:6:\"source\";s:32:\"883707b54e31802c3154c6a5b5df775f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"19a90c9dcc5764904c85f7b7d98dbe70\";a:5:{s:6:\"source\";s:32:\"19a90c9dcc5764904c85f7b7d98dbe70\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e8a97bdc8fe61e8174034de42054f753\";a:5:{s:6:\"source\";s:32:\"e8a97bdc8fe61e8174034de42054f753\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a933e4b42079142b62dac074dd464166\";a:5:{s:6:\"source\";s:32:\"a933e4b42079142b62dac074dd464166\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"387a90458fb6285b99ccd85596ea0e90\";a:5:{s:6:\"source\";s:32:\"387a90458fb6285b99ccd85596ea0e90\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"57561ebbc96096216ba5a344f84131c0\";a:5:{s:6:\"source\";s:32:\"57561ebbc96096216ba5a344f84131c0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2d53e590aa7d0d3569285655aec65d83\";a:5:{s:6:\"source\";s:32:\"2d53e590aa7d0d3569285655aec65d83\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1b553e8b6935c1167708ad7ade96dbe7\";a:5:{s:6:\"source\";s:32:\"1b553e8b6935c1167708ad7ade96dbe7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"89bb8078af3814b1d9cbe2508ab05c9a\";a:5:{s:6:\"source\";s:32:\"89bb8078af3814b1d9cbe2508ab05c9a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e0f984463cbc1857d6f2fcc9f468ea47\";a:5:{s:6:\"source\";s:32:\"e0f984463cbc1857d6f2fcc9f468ea47\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"341f0bd7bd0814b209a77b4dec0b937e\";a:5:{s:6:\"source\";s:32:\"341f0bd7bd0814b209a77b4dec0b937e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"12b189fc31eeef7a55de1b689376f271\";a:5:{s:6:\"source\";s:32:\"12b189fc31eeef7a55de1b689376f271\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a77706f26e2672639732fa89d8804c0d\";a:5:{s:6:\"source\";s:32:\"a77706f26e2672639732fa89d8804c0d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b5362e1eda7f54f39a71c093b75058f3\";a:5:{s:6:\"source\";s:32:\"b5362e1eda7f54f39a71c093b75058f3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9d937e8c03f796d2be1336a27c3a9829\";a:5:{s:6:\"source\";s:32:\"9d937e8c03f796d2be1336a27c3a9829\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aa52b5b1bf4ca6d967737a7d5c753538\";a:5:{s:6:\"source\";s:32:\"aa52b5b1bf4ca6d967737a7d5c753538\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d8023b5d2534d023a9602a961431fe92\";a:5:{s:6:\"source\";s:32:\"d8023b5d2534d023a9602a961431fe92\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b246802fa9ee515aeb283e253a2bafe4\";a:5:{s:6:\"source\";s:32:\"b246802fa9ee515aeb283e253a2bafe4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"983eda6171774af1e934b99ea9b4a78e\";a:5:{s:6:\"source\";s:32:\"983eda6171774af1e934b99ea9b4a78e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1dd2b1e972d33ceddf932ac727d28c70\";a:5:{s:6:\"source\";s:32:\"1dd2b1e972d33ceddf932ac727d28c70\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"07fb739a066549165437f074ceabca7a\";a:5:{s:6:\"source\";s:32:\"07fb739a066549165437f074ceabca7a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ec082c47f6b3cde7b467319b9efe059d\";a:5:{s:6:\"source\";s:32:\"ec082c47f6b3cde7b467319b9efe059d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"89fbec9019f54c48ea5dab6e170b39b9\";a:5:{s:6:\"source\";s:32:\"89fbec9019f54c48ea5dab6e170b39b9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5695dde12c7ee94a165c98ad40bf62eb\";a:5:{s:6:\"source\";s:32:\"5695dde12c7ee94a165c98ad40bf62eb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"908241d9e6a4a551259be197fc51708d\";a:5:{s:6:\"source\";s:32:\"908241d9e6a4a551259be197fc51708d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f907e33e67461852889423a2c76dd206\";a:5:{s:6:\"source\";s:32:\"f907e33e67461852889423a2c76dd206\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"27a849e2a6b7177f8179bae2ac9aed0b\";a:5:{s:6:\"source\";s:32:\"27a849e2a6b7177f8179bae2ac9aed0b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a732d0b80eb28356c4746f9c94fa1de8\";a:5:{s:6:\"source\";s:32:\"a732d0b80eb28356c4746f9c94fa1de8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0ca301b61951b7eb7576c9fa36cfa1e1\";a:5:{s:6:\"source\";s:32:\"0ca301b61951b7eb7576c9fa36cfa1e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c982b2be0ec2895612f552dd83c0acc3\";a:5:{s:6:\"source\";s:32:\"c982b2be0ec2895612f552dd83c0acc3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6c9f643bac4747b4c0d7be89c61aec8e\";a:5:{s:6:\"source\";s:32:\"6c9f643bac4747b4c0d7be89c61aec8e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0f589d34d0fcd7da7a65126308def66f\";a:5:{s:6:\"source\";s:32:\"0f589d34d0fcd7da7a65126308def66f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"20e5aa1ca71c8ca187748207d778488a\";a:5:{s:6:\"source\";s:32:\"20e5aa1ca71c8ca187748207d778488a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5892386bbaf5578fb88c49010b6eb011\";a:5:{s:6:\"source\";s:32:\"5892386bbaf5578fb88c49010b6eb011\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5a4611dda0906395852f0fbaf60f440a\";a:5:{s:6:\"source\";s:32:\"5a4611dda0906395852f0fbaf60f440a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"17d3ce0c1ff00f2b60baeb64b8a0a4fa\";a:5:{s:6:\"source\";s:32:\"17d3ce0c1ff00f2b60baeb64b8a0a4fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"93ac10e30ca52fee10b8fafcd4ef71fb\";a:5:{s:6:\"source\";s:32:\"93ac10e30ca52fee10b8fafcd4ef71fb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0752f149d123be27c1a48d129fcd2060\";a:5:{s:6:\"source\";s:32:\"0752f149d123be27c1a48d129fcd2060\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4260681898f414d65b8a0f91df128229\";a:5:{s:6:\"source\";s:32:\"4260681898f414d65b8a0f91df128229\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ce2d1595d193e9831c45bde33fe5324d\";a:5:{s:6:\"source\";s:32:\"ce2d1595d193e9831c45bde33fe5324d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f5c3d4ce05a33545f3f9c3ea97ed824c\";a:5:{s:6:\"source\";s:32:\"f5c3d4ce05a33545f3f9c3ea97ed824c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"00311efcb274063dbd733bd87b2f8184\";a:5:{s:6:\"source\";s:32:\"00311efcb274063dbd733bd87b2f8184\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a9e25920bd093cda20f46c163e6361cc\";a:5:{s:6:\"source\";s:32:\"a9e25920bd093cda20f46c163e6361cc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5f042acba2c143a26f1226b69e475eb0\";a:5:{s:6:\"source\";s:32:\"5f042acba2c143a26f1226b69e475eb0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"df2bc7c0bbbd5aff43dd1c8f0446d506\";a:5:{s:6:\"source\";s:32:\"df2bc7c0bbbd5aff43dd1c8f0446d506\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"45c004bc55c1719464543a69f59569f0\";a:5:{s:6:\"source\";s:32:\"45c004bc55c1719464543a69f59569f0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b88b6a72f3dcbdbc3ce3a609818e3379\";a:5:{s:6:\"source\";s:32:\"b88b6a72f3dcbdbc3ce3a609818e3379\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"729761eef6463c5a5e009cdd923b44ee\";a:5:{s:6:\"source\";s:32:\"729761eef6463c5a5e009cdd923b44ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"14c96d5375f2e26cc3d1a1d492a36197\";a:5:{s:6:\"source\";s:32:\"14c96d5375f2e26cc3d1a1d492a36197\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9c867a6b56a85cd5d6f4102d73d2b117\";a:5:{s:6:\"source\";s:32:\"9c867a6b56a85cd5d6f4102d73d2b117\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"14a9ee6d2bb0830c6ed516ae52862d19\";a:5:{s:6:\"source\";s:32:\"14a9ee6d2bb0830c6ed516ae52862d19\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5af05e414b9887733c62982ac6cea8d7\";a:5:{s:6:\"source\";s:32:\"5af05e414b9887733c62982ac6cea8d7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5a88e853a1a28941c85d6de4cb06e651\";a:5:{s:6:\"source\";s:32:\"5a88e853a1a28941c85d6de4cb06e651\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c7fef0623214439c5e28937a12da5423\";a:5:{s:6:\"source\";s:32:\"c7fef0623214439c5e28937a12da5423\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2f99d0111e7f7912daf62f519c85ae5f\";a:5:{s:6:\"source\";s:32:\"2f99d0111e7f7912daf62f519c85ae5f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a0ea9fdfdb492a9b871e69d7a57be4f2\";a:5:{s:6:\"source\";s:32:\"a0ea9fdfdb492a9b871e69d7a57be4f2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b707334d2a4ae753bb6f3be8be9750e9\";a:5:{s:6:\"source\";s:32:\"b707334d2a4ae753bb6f3be8be9750e9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"356aa55bba82197dfec3d07efa01af52\";a:5:{s:6:\"source\";s:32:\"356aa55bba82197dfec3d07efa01af52\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e901b3070933bfd6aa4f89187cb13d3d\";a:5:{s:6:\"source\";s:32:\"e901b3070933bfd6aa4f89187cb13d3d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cdbc502395703aa67e0e413b2f358a0c\";a:5:{s:6:\"source\";s:32:\"cdbc502395703aa67e0e413b2f358a0c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d257bd5f44086bb70ccc762090edfdc2\";a:5:{s:6:\"source\";s:32:\"d257bd5f44086bb70ccc762090edfdc2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cd5d99eff3bcdb39a7e59da21e8ac53b\";a:5:{s:6:\"source\";s:32:\"cd5d99eff3bcdb39a7e59da21e8ac53b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"95da20bf00260bc78bfe2eeb3e0dcdbe\";a:5:{s:6:\"source\";s:32:\"95da20bf00260bc78bfe2eeb3e0dcdbe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c84c4235d2b976baf19276dec9126f1c\";a:5:{s:6:\"source\";s:32:\"c84c4235d2b976baf19276dec9126f1c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0ccf791473f0817ef16a0193c6b19a5f\";a:5:{s:6:\"source\";s:32:\"0ccf791473f0817ef16a0193c6b19a5f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1ecfef58347421b8ec1ad4e9f2326bc5\";a:5:{s:6:\"source\";s:32:\"1ecfef58347421b8ec1ad4e9f2326bc5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"99ba9e865ac4df9353b9ffd31ea547f4\";a:5:{s:6:\"source\";s:32:\"99ba9e865ac4df9353b9ffd31ea547f4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f0e0768eb302f4172be32a12c06da7d7\";a:5:{s:6:\"source\";s:32:\"f0e0768eb302f4172be32a12c06da7d7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2da86cb82a5188b6c55cd52d854e76bb\";a:5:{s:6:\"source\";s:32:\"2da86cb82a5188b6c55cd52d854e76bb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b802467a49704f67b7bbb577c0ee4acc\";a:5:{s:6:\"source\";s:32:\"b802467a49704f67b7bbb577c0ee4acc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2f24de056ce58710f2b44d70edfa9d53\";a:5:{s:6:\"source\";s:32:\"2f24de056ce58710f2b44d70edfa9d53\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7d46a9fa98430a4d0015e58d7edc6174\";a:5:{s:6:\"source\";s:32:\"7d46a9fa98430a4d0015e58d7edc6174\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1665883039a57d85f04d57eaa76d4982\";a:5:{s:6:\"source\";s:32:\"1665883039a57d85f04d57eaa76d4982\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f134d964f677f41f62c4958f5452ac9d\";a:5:{s:6:\"source\";s:32:\"f134d964f677f41f62c4958f5452ac9d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"32e4c9743fe4614554ff461a35e8d396\";a:5:{s:6:\"source\";s:32:\"32e4c9743fe4614554ff461a35e8d396\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e059a72ae83e0430a39c7d76e60f8d17\";a:5:{s:6:\"source\";s:32:\"e059a72ae83e0430a39c7d76e60f8d17\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"38a9f3a926afde9158a043d2abbae72b\";a:5:{s:6:\"source\";s:32:\"38a9f3a926afde9158a043d2abbae72b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cf48b4009765e62ea21a4546c27298e3\";a:5:{s:6:\"source\";s:32:\"cf48b4009765e62ea21a4546c27298e3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6da0688e4f95e8d4169c2cf22d8fad54\";a:5:{s:6:\"source\";s:32:\"6da0688e4f95e8d4169c2cf22d8fad54\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"369072b2779c99a3f2939712d2b33e65\";a:5:{s:6:\"source\";s:32:\"369072b2779c99a3f2939712d2b33e65\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0396c64e1987b7da34ff01a2da24dd8f\";a:5:{s:6:\"source\";s:32:\"0396c64e1987b7da34ff01a2da24dd8f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5de24d76f24efa00bb1d6ee9edd573ff\";a:5:{s:6:\"source\";s:32:\"5de24d76f24efa00bb1d6ee9edd573ff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4e12218fd5e066beb2f8ae13a4ce3b3e\";a:5:{s:6:\"source\";s:32:\"4e12218fd5e066beb2f8ae13a4ce3b3e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1764fd046c0a066f58ef5186c3564498\";a:5:{s:6:\"source\";s:32:\"1764fd046c0a066f58ef5186c3564498\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fcede760611495e0ccc4259e42ef8005\";a:5:{s:6:\"source\";s:32:\"fcede760611495e0ccc4259e42ef8005\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ee25041dab54e867e3b8e44f7fc2c984\";a:5:{s:6:\"source\";s:32:\"ee25041dab54e867e3b8e44f7fc2c984\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1b8fdabfd1d4f2b9aacbf9cfd002f503\";a:5:{s:6:\"source\";s:32:\"1b8fdabfd1d4f2b9aacbf9cfd002f503\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3748865c97400f96fb7490bc65023b1e\";a:5:{s:6:\"source\";s:32:\"3748865c97400f96fb7490bc65023b1e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b937044256ee92c6deb65a91c2c58a03\";a:5:{s:6:\"source\";s:32:\"b937044256ee92c6deb65a91c2c58a03\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"237f7e639157d1974f74dc4779597ad4\";a:5:{s:6:\"source\";s:32:\"237f7e639157d1974f74dc4779597ad4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9304c30a8bb74fed61dac40e1a6e7e25\";a:5:{s:6:\"source\";s:32:\"9304c30a8bb74fed61dac40e1a6e7e25\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4e02e9f0ac80616be3bd68bb0c4e8c04\";a:5:{s:6:\"source\";s:32:\"4e02e9f0ac80616be3bd68bb0c4e8c04\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"96a4b71c5ec6faab595e53355b79211b\";a:5:{s:6:\"source\";s:32:\"96a4b71c5ec6faab595e53355b79211b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b8c730faf9775fec5848b92fd6631e02\";a:5:{s:6:\"source\";s:32:\"b8c730faf9775fec5848b92fd6631e02\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7dd23ea99908849405658a5f37dc74d3\";a:5:{s:6:\"source\";s:32:\"7dd23ea99908849405658a5f37dc74d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f516da18ae25914472da1f5c400601b6\";a:5:{s:6:\"source\";s:32:\"f516da18ae25914472da1f5c400601b6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1f20b5d5d35379069848d115d33d332f\";a:5:{s:6:\"source\";s:32:\"1f20b5d5d35379069848d115d33d332f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f642263e2a268b8618145cb807d06559\";a:5:{s:6:\"source\";s:32:\"f642263e2a268b8618145cb807d06559\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dd29c01457c6c7dc000ad5c3377b6ed1\";a:5:{s:6:\"source\";s:32:\"dd29c01457c6c7dc000ad5c3377b6ed1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ffeaa20196eedf96221de384b3545229\";a:5:{s:6:\"source\";s:32:\"ffeaa20196eedf96221de384b3545229\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b8b42f767a777c24b1969ed419d03000\";a:5:{s:6:\"source\";s:32:\"b8b42f767a777c24b1969ed419d03000\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aea849c6832f2d03bb7ee4f3f7f2c657\";a:5:{s:6:\"source\";s:32:\"aea849c6832f2d03bb7ee4f3f7f2c657\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9d1f081c5a7196d80bbc3ef2c7dbee78\";a:5:{s:6:\"source\";s:32:\"9d1f081c5a7196d80bbc3ef2c7dbee78\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f50993bd43924e5f008fd3becb917519\";a:5:{s:6:\"source\";s:32:\"f50993bd43924e5f008fd3becb917519\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d670aa318e2a8e93ccd58b407c73c7f5\";a:5:{s:6:\"source\";s:32:\"d670aa318e2a8e93ccd58b407c73c7f5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f8e1ae547eea0b0b2d0efb74ac0dd306\";a:5:{s:6:\"source\";s:32:\"f8e1ae547eea0b0b2d0efb74ac0dd306\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1f4f4c87f4fc213454835dc1387f6df8\";a:5:{s:6:\"source\";s:32:\"1f4f4c87f4fc213454835dc1387f6df8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"603d32694f03bdd089b80aac52fd8792\";a:5:{s:6:\"source\";s:32:\"603d32694f03bdd089b80aac52fd8792\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fe69fc5bd3ec71c046a30a1db861f705\";a:5:{s:6:\"source\";s:32:\"fe69fc5bd3ec71c046a30a1db861f705\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f2e10a15ac1ba5f21b4fc252300695e5\";a:5:{s:6:\"source\";s:32:\"f2e10a15ac1ba5f21b4fc252300695e5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0ce81b22d76a884c59b565f2bb40dacd\";a:5:{s:6:\"source\";s:32:\"0ce81b22d76a884c59b565f2bb40dacd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"725f72ec93ca65b0b25d701b6235a9aa\";a:5:{s:6:\"source\";s:32:\"725f72ec93ca65b0b25d701b6235a9aa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2b3ca23cebf992e3f235198d531c8316\";a:5:{s:6:\"source\";s:32:\"2b3ca23cebf992e3f235198d531c8316\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"00b60669b6f3c01903ab28db6a4f9101\";a:5:{s:6:\"source\";s:32:\"00b60669b6f3c01903ab28db6a4f9101\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cf76d8981a317298a49cc6d9d0a1f604\";a:5:{s:6:\"source\";s:32:\"cf76d8981a317298a49cc6d9d0a1f604\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aab46fb3f431480c7db0a9bb71fb51e5\";a:5:{s:6:\"source\";s:32:\"aab46fb3f431480c7db0a9bb71fb51e5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"117f5a26d19d6d708eb750b6eea32829\";a:5:{s:6:\"source\";s:32:\"117f5a26d19d6d708eb750b6eea32829\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fc2561b3f7d31689db6bf3838f78848b\";a:5:{s:6:\"source\";s:32:\"fc2561b3f7d31689db6bf3838f78848b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ac549179cb18d2d5e01ce59b0054f418\";a:5:{s:6:\"source\";s:32:\"ac549179cb18d2d5e01ce59b0054f418\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"82db1d5ec3c5a208cdfbacc1054a1798\";a:5:{s:6:\"source\";s:32:\"82db1d5ec3c5a208cdfbacc1054a1798\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b55ab208140638bc37063333d7238043\";a:5:{s:6:\"source\";s:32:\"b55ab208140638bc37063333d7238043\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"38e63dde8ecc48b82f1f580d7168926a\";a:5:{s:6:\"source\";s:32:\"38e63dde8ecc48b82f1f580d7168926a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c9bceceda37ca36e90d15fcd10281c6f\";a:5:{s:6:\"source\";s:32:\"c9bceceda37ca36e90d15fcd10281c6f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6668a870337207ea7516d9c2c255dd08\";a:5:{s:6:\"source\";s:32:\"6668a870337207ea7516d9c2c255dd08\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"67d45e009d8ccac2e7a9a82e3ba75b8b\";a:5:{s:6:\"source\";s:32:\"67d45e009d8ccac2e7a9a82e3ba75b8b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3f223763e0fe85072b70024f25452b30\";a:5:{s:6:\"source\";s:32:\"3f223763e0fe85072b70024f25452b30\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"94db41f60e0ca29e30979227354e823c\";a:5:{s:6:\"source\";s:32:\"94db41f60e0ca29e30979227354e823c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"46b3e457dbb4a8a1d629496b353735d7\";a:5:{s:6:\"source\";s:32:\"46b3e457dbb4a8a1d629496b353735d7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cdff903d6d26eb52a4ec9fb2b88dde60\";a:5:{s:6:\"source\";s:32:\"cdff903d6d26eb52a4ec9fb2b88dde60\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"69f0a2c63bb64013c01e8368a01c9fee\";a:5:{s:6:\"source\";s:32:\"69f0a2c63bb64013c01e8368a01c9fee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c25dcd4d8124d85d8e973c3c9bf60426\";a:5:{s:6:\"source\";s:32:\"c25dcd4d8124d85d8e973c3c9bf60426\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"492d373e3856089e99ebf3977416549b\";a:5:{s:6:\"source\";s:32:\"492d373e3856089e99ebf3977416549b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"192ccd5b438870dabbec4ab60be1da16\";a:5:{s:6:\"source\";s:32:\"192ccd5b438870dabbec4ab60be1da16\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"22bae3712453ae04bdc744f1c5b22195\";a:5:{s:6:\"source\";s:32:\"22bae3712453ae04bdc744f1c5b22195\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"933df7d89824ae664cdf75b6a6a48475\";a:5:{s:6:\"source\";s:32:\"933df7d89824ae664cdf75b6a6a48475\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"482c47bc705284acad47241dcd9fe674\";a:5:{s:6:\"source\";s:32:\"482c47bc705284acad47241dcd9fe674\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f81a4343b50cba4e471e07026200fe29\";a:5:{s:6:\"source\";s:32:\"f81a4343b50cba4e471e07026200fe29\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ca5223ec20003a7285426154f1d1afed\";a:5:{s:6:\"source\";s:32:\"ca5223ec20003a7285426154f1d1afed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"79ca0405cc8e2ee64532767e8c0454b8\";a:5:{s:6:\"source\";s:32:\"79ca0405cc8e2ee64532767e8c0454b8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a40b6e4c4ae98307e767378c63af015c\";a:5:{s:6:\"source\";s:32:\"a40b6e4c4ae98307e767378c63af015c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"25c3ff3de2a53767283b608a057f0e63\";a:5:{s:6:\"source\";s:32:\"25c3ff3de2a53767283b608a057f0e63\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"afd060a03bfe1350b7be4ccf338f0106\";a:5:{s:6:\"source\";s:32:\"afd060a03bfe1350b7be4ccf338f0106\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"76acbb6c0c3ab80dad04cfb9987487ee\";a:5:{s:6:\"source\";s:32:\"76acbb6c0c3ab80dad04cfb9987487ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6cb98ffb04912b97bd70999802cc0617\";a:5:{s:6:\"source\";s:32:\"6cb98ffb04912b97bd70999802cc0617\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8f628402df22a33a91a5b135b172ed10\";a:5:{s:6:\"source\";s:32:\"8f628402df22a33a91a5b135b172ed10\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a179543b6780dd77a435b09c58d4a015\";a:5:{s:6:\"source\";s:32:\"a179543b6780dd77a435b09c58d4a015\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"18c4de312ec4346795ec9f6e020ea86c\";a:5:{s:6:\"source\";s:32:\"18c4de312ec4346795ec9f6e020ea86c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e9d3cc6f9948ef85feef19910017cc0f\";a:5:{s:6:\"source\";s:32:\"e9d3cc6f9948ef85feef19910017cc0f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6f7b8609e38ce4f6e189875b34aa0475\";a:5:{s:6:\"source\";s:32:\"6f7b8609e38ce4f6e189875b34aa0475\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"633c3174a961070ca547e076284de348\";a:5:{s:6:\"source\";s:32:\"633c3174a961070ca547e076284de348\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c48b7d047d51aa908a44ddfec8b10291\";a:5:{s:6:\"source\";s:32:\"c48b7d047d51aa908a44ddfec8b10291\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"93596f7c7902a2928e4af97b0f62ec82\";a:5:{s:6:\"source\";s:32:\"93596f7c7902a2928e4af97b0f62ec82\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"de0dd47e46782c5bb7a27916058a2787\";a:5:{s:6:\"source\";s:32:\"de0dd47e46782c5bb7a27916058a2787\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2d5cb725582418965177df4b8f75dfab\";a:5:{s:6:\"source\";s:32:\"2d5cb725582418965177df4b8f75dfab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fd3ff5358e21934278fd0d2db9bbb44d\";a:5:{s:6:\"source\";s:32:\"fd3ff5358e21934278fd0d2db9bbb44d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"43694158ff571c0fa894b6d827a54e9a\";a:5:{s:6:\"source\";s:32:\"43694158ff571c0fa894b6d827a54e9a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"44ccd6e5c6a8ca3da944a200cf839cdd\";a:5:{s:6:\"source\";s:32:\"44ccd6e5c6a8ca3da944a200cf839cdd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"63e384cf965acbf8bbd8be1c09ac635f\";a:5:{s:6:\"source\";s:32:\"63e384cf965acbf8bbd8be1c09ac635f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"598ea11531a6a1497057fe821b995969\";a:5:{s:6:\"source\";s:32:\"598ea11531a6a1497057fe821b995969\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"22d84ece73b8c92c9eee6f6688f4d57e\";a:5:{s:6:\"source\";s:32:\"22d84ece73b8c92c9eee6f6688f4d57e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"15e012dd8f8f5be800eec400aba8e7bf\";a:5:{s:6:\"source\";s:32:\"15e012dd8f8f5be800eec400aba8e7bf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2493dfa66f0157091fdb4dbeaaf6bfa9\";a:5:{s:6:\"source\";s:32:\"2493dfa66f0157091fdb4dbeaaf6bfa9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"23bd8d89501e6922b2d3066fd4fc3012\";a:5:{s:6:\"source\";s:32:\"23bd8d89501e6922b2d3066fd4fc3012\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"007a2e6ee9f410ccee46f9118ac51363\";a:5:{s:6:\"source\";s:32:\"007a2e6ee9f410ccee46f9118ac51363\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff94828d2f7142b0aa9e956e8226c86d\";a:5:{s:6:\"source\";s:32:\"ff94828d2f7142b0aa9e956e8226c86d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"17648c7af460dbf8e6a74793817d91d0\";a:5:{s:6:\"source\";s:32:\"17648c7af460dbf8e6a74793817d91d0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"66efd387c0d8522acd77f7c9e0832260\";a:5:{s:6:\"source\";s:32:\"66efd387c0d8522acd77f7c9e0832260\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8f3cea28a8f0c66026ed8abd5daeef77\";a:5:{s:6:\"source\";s:32:\"8f3cea28a8f0c66026ed8abd5daeef77\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0951d1b2b5c7ba784110987c0b156992\";a:5:{s:6:\"source\";s:32:\"0951d1b2b5c7ba784110987c0b156992\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f640af458f21e2296f99a67226a5f9b3\";a:5:{s:6:\"source\";s:32:\"f640af458f21e2296f99a67226a5f9b3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c607047bc08073a2206f7892f74cda3c\";a:5:{s:6:\"source\";s:32:\"c607047bc08073a2206f7892f74cda3c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"17282899b7b1f2e24ea5c2c004765909\";a:5:{s:6:\"source\";s:32:\"17282899b7b1f2e24ea5c2c004765909\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e1dc3e2ddc9dcbce11d708503643b49f\";a:5:{s:6:\"source\";s:32:\"e1dc3e2ddc9dcbce11d708503643b49f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"421e5731c46b5e5c90ff71b41d8fb167\";a:5:{s:6:\"source\";s:32:\"421e5731c46b5e5c90ff71b41d8fb167\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b3a218d9d28e3d413bbef6ad9cda4315\";a:5:{s:6:\"source\";s:32:\"b3a218d9d28e3d413bbef6ad9cda4315\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"583b07d58da49ac7f2d86089e229d679\";a:5:{s:6:\"source\";s:32:\"583b07d58da49ac7f2d86089e229d679\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f813764a0b587f159d6420dcdf101b3b\";a:5:{s:6:\"source\";s:32:\"f813764a0b587f159d6420dcdf101b3b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eefeacd513dae7c9e50a664690b3700c\";a:5:{s:6:\"source\";s:32:\"eefeacd513dae7c9e50a664690b3700c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0b83e2e23aa2e061de0cc7363dfcd8d9\";a:5:{s:6:\"source\";s:32:\"0b83e2e23aa2e061de0cc7363dfcd8d9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4a8c5057c71d82bcd6fa3d0e02e1843e\";a:5:{s:6:\"source\";s:32:\"4a8c5057c71d82bcd6fa3d0e02e1843e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"97647dea6d24cd2840a44f4d9d6af5ed\";a:5:{s:6:\"source\";s:32:\"97647dea6d24cd2840a44f4d9d6af5ed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c4ea7698ce79b6701b5b506d0d1712aa\";a:5:{s:6:\"source\";s:32:\"c4ea7698ce79b6701b5b506d0d1712aa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"87a73011218f6bb14b4bc601a2a51add\";a:5:{s:6:\"source\";s:32:\"87a73011218f6bb14b4bc601a2a51add\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9999ade8a09520ff8cd9794725fcbb8c\";a:5:{s:6:\"source\";s:32:\"9999ade8a09520ff8cd9794725fcbb8c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d4319098d83cf6576fa4efc1ecf749a4\";a:5:{s:6:\"source\";s:32:\"d4319098d83cf6576fa4efc1ecf749a4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5a06a537c9a0740c29a1567ce3267b87\";a:5:{s:6:\"source\";s:32:\"5a06a537c9a0740c29a1567ce3267b87\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e57249e9865aef44e2a38f3b1e20a732\";a:5:{s:6:\"source\";s:32:\"e57249e9865aef44e2a38f3b1e20a732\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f6ee476db554da3badfe8ce9730e8ac3\";a:5:{s:6:\"source\";s:32:\"f6ee476db554da3badfe8ce9730e8ac3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5f7e60e590c75fba99152fe688ff4263\";a:5:{s:6:\"source\";s:32:\"5f7e60e590c75fba99152fe688ff4263\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5c067a02ede60d748a95ea32efc870ab\";a:5:{s:6:\"source\";s:32:\"5c067a02ede60d748a95ea32efc870ab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6d0df724a8f951ea04e4c903df334070\";a:5:{s:6:\"source\";s:32:\"6d0df724a8f951ea04e4c903df334070\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e27cb2b3aef721f1a1243abaed9786e1\";a:5:{s:6:\"source\";s:32:\"e27cb2b3aef721f1a1243abaed9786e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b2dc6c668a2e707eb3cac3a1cb28ab6c\";a:5:{s:6:\"source\";s:32:\"b2dc6c668a2e707eb3cac3a1cb28ab6c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2a4e20e3cc747d8a1c67c9170e0b5d24\";a:5:{s:6:\"source\";s:32:\"2a4e20e3cc747d8a1c67c9170e0b5d24\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"587116d8c99f8243eff5f107d5a39d17\";a:5:{s:6:\"source\";s:32:\"587116d8c99f8243eff5f107d5a39d17\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a6139a98ae9d3d2bad7a45c37387a33\";a:5:{s:6:\"source\";s:32:\"8a6139a98ae9d3d2bad7a45c37387a33\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7a0b9323d81e8ca5ea6f628bb617857e\";a:5:{s:6:\"source\";s:32:\"7a0b9323d81e8ca5ea6f628bb617857e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"074273a6e6bdbc29e8e0c55ba280830c\";a:5:{s:6:\"source\";s:32:\"074273a6e6bdbc29e8e0c55ba280830c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e73374209aed33f3c22243f98ec68ff6\";a:5:{s:6:\"source\";s:32:\"e73374209aed33f3c22243f98ec68ff6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e68cee7923a6ff42556c5635ae3051cc\";a:5:{s:6:\"source\";s:32:\"e68cee7923a6ff42556c5635ae3051cc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"288543d64aada8c3e36d1402dea66108\";a:5:{s:6:\"source\";s:32:\"288543d64aada8c3e36d1402dea66108\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c937ac3d971e3369f4dd6ed507de443f\";a:5:{s:6:\"source\";s:32:\"c937ac3d971e3369f4dd6ed507de443f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5b23ec674aa2ebc54784bd61fdce3035\";a:5:{s:6:\"source\";s:32:\"5b23ec674aa2ebc54784bd61fdce3035\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a3efeb475513422031e018d033e32cdb\";a:5:{s:6:\"source\";s:32:\"a3efeb475513422031e018d033e32cdb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef78f7459ab905d61b8ffbc01bb873ae\";a:5:{s:6:\"source\";s:32:\"ef78f7459ab905d61b8ffbc01bb873ae\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6e4aa10067eac0791a062a759790ef70\";a:5:{s:6:\"source\";s:32:\"6e4aa10067eac0791a062a759790ef70\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8c25b8af2acdd5d4f0b068826125521d\";a:5:{s:6:\"source\";s:32:\"8c25b8af2acdd5d4f0b068826125521d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2b976a4be3db4981c260246f45ab62d0\";a:5:{s:6:\"source\";s:32:\"2b976a4be3db4981c260246f45ab62d0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f6ec6e87e7e1fdf9ad1e366a24ff472\";a:5:{s:6:\"source\";s:32:\"7f6ec6e87e7e1fdf9ad1e366a24ff472\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2d839d148494605916753197ed14b1f4\";a:5:{s:6:\"source\";s:32:\"2d839d148494605916753197ed14b1f4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4dfb26a50ed4fe114ff980b9bf4f02da\";a:5:{s:6:\"source\";s:32:\"4dfb26a50ed4fe114ff980b9bf4f02da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e6405db296f738cd9667a60b1b7d94c5\";a:5:{s:6:\"source\";s:32:\"e6405db296f738cd9667a60b1b7d94c5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2dcc6a7f33686033577a2949c4e4a762\";a:5:{s:6:\"source\";s:32:\"2dcc6a7f33686033577a2949c4e4a762\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"53bd7236e21450c6ea3492ba44918f55\";a:5:{s:6:\"source\";s:32:\"53bd7236e21450c6ea3492ba44918f55\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a8cfae2d6ba28a1d6e4dae82e4658a07\";a:5:{s:6:\"source\";s:32:\"a8cfae2d6ba28a1d6e4dae82e4658a07\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4bab5b4510ef7868d867d43a8188f2ab\";a:5:{s:6:\"source\";s:32:\"4bab5b4510ef7868d867d43a8188f2ab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b333d41963bbcfc3a92ccee27ec3a2d7\";a:5:{s:6:\"source\";s:32:\"b333d41963bbcfc3a92ccee27ec3a2d7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"523797465b55b8247b98d2f7719b792e\";a:5:{s:6:\"source\";s:32:\"523797465b55b8247b98d2f7719b792e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"989aecd072be7afcfd8cd337c394e404\";a:5:{s:6:\"source\";s:32:\"989aecd072be7afcfd8cd337c394e404\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fc1060a8af7f1dd9f5cdeaa781d72f47\";a:5:{s:6:\"source\";s:32:\"fc1060a8af7f1dd9f5cdeaa781d72f47\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5b2724d939e2e50a14cfd5d3f8956014\";a:5:{s:6:\"source\";s:32:\"5b2724d939e2e50a14cfd5d3f8956014\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b94e4157902ff501fb555c7ef4d877ae\";a:5:{s:6:\"source\";s:32:\"b94e4157902ff501fb555c7ef4d877ae\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fa6a435018b13085434156cad966e396\";a:5:{s:6:\"source\";s:32:\"fa6a435018b13085434156cad966e396\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0e0e9fff96c494f8d9f54dd53a0cdb2c\";a:5:{s:6:\"source\";s:32:\"0e0e9fff96c494f8d9f54dd53a0cdb2c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1d3dc06605e356c0011fb7f95d8aa9f0\";a:5:{s:6:\"source\";s:32:\"1d3dc06605e356c0011fb7f95d8aa9f0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"908e7c1663caa5d4556d260338a43082\";a:5:{s:6:\"source\";s:32:\"908e7c1663caa5d4556d260338a43082\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8032fb95cdf9615cc9432a85c514ba12\";a:5:{s:6:\"source\";s:32:\"8032fb95cdf9615cc9432a85c514ba12\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1593e8c9bbf85205f25a44f54f3deb65\";a:5:{s:6:\"source\";s:32:\"1593e8c9bbf85205f25a44f54f3deb65\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef1fea7d852e514460176bb720c53537\";a:5:{s:6:\"source\";s:32:\"ef1fea7d852e514460176bb720c53537\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"942c903b4d4c9015de79c214308983c6\";a:5:{s:6:\"source\";s:32:\"942c903b4d4c9015de79c214308983c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"18b850bc19ec083d43ad6251bd313ca4\";a:5:{s:6:\"source\";s:32:\"18b850bc19ec083d43ad6251bd313ca4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"18d985dc21e64da502aa42d29346485f\";a:5:{s:6:\"source\";s:32:\"18d985dc21e64da502aa42d29346485f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d5a99ce630f9ca3656f6678f29b2b73c\";a:5:{s:6:\"source\";s:32:\"d5a99ce630f9ca3656f6678f29b2b73c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"de1e58e4d609742dcbaf9ade2ddbc9c3\";a:5:{s:6:\"source\";s:32:\"de1e58e4d609742dcbaf9ade2ddbc9c3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"67ac6809c5890c8d0e5017e56f653ccb\";a:5:{s:6:\"source\";s:32:\"67ac6809c5890c8d0e5017e56f653ccb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c457ca0d2d5a3cfd9112057ecf0ffeb5\";a:5:{s:6:\"source\";s:32:\"c457ca0d2d5a3cfd9112057ecf0ffeb5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0580727d35d436bca8f4930e85b3d283\";a:5:{s:6:\"source\";s:32:\"0580727d35d436bca8f4930e85b3d283\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c1ef17c432fb700508927cebe9279845\";a:5:{s:6:\"source\";s:32:\"c1ef17c432fb700508927cebe9279845\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0e5f146f26255f62d98f79b033214103\";a:5:{s:6:\"source\";s:32:\"0e5f146f26255f62d98f79b033214103\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4063fc5450d0be48c5fea14d028b891c\";a:5:{s:6:\"source\";s:32:\"4063fc5450d0be48c5fea14d028b891c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ed5c37cbe5cbfd2ab144d060de4c6ff0\";a:5:{s:6:\"source\";s:32:\"ed5c37cbe5cbfd2ab144d060de4c6ff0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"214437e64b9bda6b6f837b7935201f78\";a:5:{s:6:\"source\";s:32:\"214437e64b9bda6b6f837b7935201f78\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"96bee9c359356759f999e2702c3f0de8\";a:5:{s:6:\"source\";s:32:\"96bee9c359356759f999e2702c3f0de8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e76c3e3952bd81b41374c851d0e02a53\";a:5:{s:6:\"source\";s:32:\"e76c3e3952bd81b41374c851d0e02a53\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1d1dacea27c87fc136761247f6770fb9\";a:5:{s:6:\"source\";s:32:\"1d1dacea27c87fc136761247f6770fb9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0f43cfb448f6aef349545c9dd3f2f01e\";a:5:{s:6:\"source\";s:32:\"0f43cfb448f6aef349545c9dd3f2f01e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"19ea9a61d4aaefccfbc1f4f821e94222\";a:5:{s:6:\"source\";s:32:\"19ea9a61d4aaefccfbc1f4f821e94222\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"62d27ec0f5ab1009adde4664e77b4490\";a:5:{s:6:\"source\";s:32:\"62d27ec0f5ab1009adde4664e77b4490\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5f95abff85cec71b3de6a9b596ed42ed\";a:5:{s:6:\"source\";s:32:\"5f95abff85cec71b3de6a9b596ed42ed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6536e76cd1f8853b5efd92900a070982\";a:5:{s:6:\"source\";s:32:\"6536e76cd1f8853b5efd92900a070982\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3cdc0e3abcafa5b2e6dd745facf444f1\";a:5:{s:6:\"source\";s:32:\"3cdc0e3abcafa5b2e6dd745facf444f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d1c6e426c5d2ac1e0335ab932ff7c55a\";a:5:{s:6:\"source\";s:32:\"d1c6e426c5d2ac1e0335ab932ff7c55a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4921c76f0811ef476a24e7f2b6894c78\";a:5:{s:6:\"source\";s:32:\"4921c76f0811ef476a24e7f2b6894c78\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"18d974abe3ac870bfb2b2ebadb8f3221\";a:5:{s:6:\"source\";s:32:\"18d974abe3ac870bfb2b2ebadb8f3221\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2ed68f81b1a344621f8dae2ef90d82e6\";a:5:{s:6:\"source\";s:32:\"2ed68f81b1a344621f8dae2ef90d82e6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7d7dd674482414366658879556611d6a\";a:5:{s:6:\"source\";s:32:\"7d7dd674482414366658879556611d6a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c917135e55751e87bcef124dc4bcbf0b\";a:5:{s:6:\"source\";s:32:\"c917135e55751e87bcef124dc4bcbf0b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3ec7646b0137d7eaf0bf77948ffa426e\";a:5:{s:6:\"source\";s:32:\"3ec7646b0137d7eaf0bf77948ffa426e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cac213e38fd131dfa52d3f7f9dc55e8d\";a:5:{s:6:\"source\";s:32:\"cac213e38fd131dfa52d3f7f9dc55e8d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ceb9a02fc186bdaf4e3010b75b68483\";a:5:{s:6:\"source\";s:32:\"8ceb9a02fc186bdaf4e3010b75b68483\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1208b4270a781b4b001ef01f7e3c8280\";a:5:{s:6:\"source\";s:32:\"1208b4270a781b4b001ef01f7e3c8280\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5f327d0194fc96b27cc2078521a93dee\";a:5:{s:6:\"source\";s:32:\"5f327d0194fc96b27cc2078521a93dee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7665325341f720e003f08258ccf721f1\";a:5:{s:6:\"source\";s:32:\"7665325341f720e003f08258ccf721f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"049a7d107c1c1a623d226ef79476240a\";a:5:{s:6:\"source\";s:32:\"049a7d107c1c1a623d226ef79476240a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a9dfcc4ec5a49d11d8af023182e37af8\";a:5:{s:6:\"source\";s:32:\"a9dfcc4ec5a49d11d8af023182e37af8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"be862748f5ec4a6a1aeca56050624973\";a:5:{s:6:\"source\";s:32:\"be862748f5ec4a6a1aeca56050624973\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"208d4601525695d3a1589348752631cb\";a:5:{s:6:\"source\";s:32:\"208d4601525695d3a1589348752631cb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"984eee9bf2b64b23b94c3c55b46ae099\";a:5:{s:6:\"source\";s:32:\"984eee9bf2b64b23b94c3c55b46ae099\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bee573b6c876fccaab73cec9ac995ca1\";a:5:{s:6:\"source\";s:32:\"bee573b6c876fccaab73cec9ac995ca1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ece91c39365061168ee80a4dc4bcfddd\";a:5:{s:6:\"source\";s:32:\"ece91c39365061168ee80a4dc4bcfddd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2954f67264ff997978a915c82ed1a71d\";a:5:{s:6:\"source\";s:32:\"2954f67264ff997978a915c82ed1a71d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6dc95b93bb299e3803a53c1a3b328792\";a:5:{s:6:\"source\";s:32:\"6dc95b93bb299e3803a53c1a3b328792\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"68658889ba603c36e54a4cfa124abf8e\";a:5:{s:6:\"source\";s:32:\"68658889ba603c36e54a4cfa124abf8e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2d7d704340f804e6638d8613ac1252df\";a:5:{s:6:\"source\";s:32:\"2d7d704340f804e6638d8613ac1252df\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8f8267b4bcece1f5ceefd2b1a5ec49c6\";a:5:{s:6:\"source\";s:32:\"8f8267b4bcece1f5ceefd2b1a5ec49c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f471bc64f06ccf863b250cca07514d18\";a:5:{s:6:\"source\";s:32:\"f471bc64f06ccf863b250cca07514d18\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c639e9a14a06decf2f2114b2e2faf3e0\";a:5:{s:6:\"source\";s:32:\"c639e9a14a06decf2f2114b2e2faf3e0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6e3d7ffa7a5e0e9957b04043ed219c01\";a:5:{s:6:\"source\";s:32:\"6e3d7ffa7a5e0e9957b04043ed219c01\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"92c82ea26e92ea0563d269540c12b2c2\";a:5:{s:6:\"source\";s:32:\"92c82ea26e92ea0563d269540c12b2c2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ab9aade565176a3ef897063e1071795\";a:5:{s:6:\"source\";s:32:\"8ab9aade565176a3ef897063e1071795\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"48901354be90919fd37423ba1c1d96d5\";a:5:{s:6:\"source\";s:32:\"48901354be90919fd37423ba1c1d96d5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5e3d6a73b377e47d862ded15ff227a27\";a:5:{s:6:\"source\";s:32:\"5e3d6a73b377e47d862ded15ff227a27\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"04f41b668657ccc12a369c0d0fd74ed1\";a:5:{s:6:\"source\";s:32:\"04f41b668657ccc12a369c0d0fd74ed1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5ea637c71fbeb857ba40ac8ec77cfeb0\";a:5:{s:6:\"source\";s:32:\"5ea637c71fbeb857ba40ac8ec77cfeb0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a4ce0fddf2af7ade9900710c476bceb8\";a:5:{s:6:\"source\";s:32:\"a4ce0fddf2af7ade9900710c476bceb8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aaf8c30555429065ef4b9980bd3ad430\";a:5:{s:6:\"source\";s:32:\"aaf8c30555429065ef4b9980bd3ad430\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"af662ed92eede464e13f53f8b8511d5a\";a:5:{s:6:\"source\";s:32:\"af662ed92eede464e13f53f8b8511d5a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"089623f65f04f7979f097d85f17086fb\";a:5:{s:6:\"source\";s:32:\"089623f65f04f7979f097d85f17086fb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"58fd8d57117b5888d280523145ccf1ca\";a:5:{s:6:\"source\";s:32:\"58fd8d57117b5888d280523145ccf1ca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"34ddac3835eb2afa08c8c7907c990ecd\";a:5:{s:6:\"source\";s:32:\"34ddac3835eb2afa08c8c7907c990ecd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0b4e002f2c4f4ccb280e17c481eb049f\";a:5:{s:6:\"source\";s:32:\"0b4e002f2c4f4ccb280e17c481eb049f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b471f6f02983cda4d6b6560294ef1d4a\";a:5:{s:6:\"source\";s:32:\"b471f6f02983cda4d6b6560294ef1d4a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d65fb8c1a3ca1fbb5e329e4b4f6547bf\";a:5:{s:6:\"source\";s:32:\"d65fb8c1a3ca1fbb5e329e4b4f6547bf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"10d222e0d164c2787cff94ffab5f4b50\";a:5:{s:6:\"source\";s:32:\"10d222e0d164c2787cff94ffab5f4b50\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ab4a90ec048b606a63c77d50bc86c46f\";a:5:{s:6:\"source\";s:32:\"ab4a90ec048b606a63c77d50bc86c46f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9080643fd1aadaf36174fb3d1cfff490\";a:5:{s:6:\"source\";s:32:\"9080643fd1aadaf36174fb3d1cfff490\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3ccff36163d581f741776ce060adbf54\";a:5:{s:6:\"source\";s:32:\"3ccff36163d581f741776ce060adbf54\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d93b52787953b86ba0899883205100db\";a:5:{s:6:\"source\";s:32:\"d93b52787953b86ba0899883205100db\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ccf992363b4e0263cb332c3f9e0b2d8\";a:5:{s:6:\"source\";s:32:\"8ccf992363b4e0263cb332c3f9e0b2d8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"307fdaf614f14e969a185681f598a5f4\";a:5:{s:6:\"source\";s:32:\"307fdaf614f14e969a185681f598a5f4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8525c8ec2e91c6f8e314cda1733ee45f\";a:5:{s:6:\"source\";s:32:\"8525c8ec2e91c6f8e314cda1733ee45f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1b30fd23193383591c2bb810811384e1\";a:5:{s:6:\"source\";s:32:\"1b30fd23193383591c2bb810811384e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9692c7dc43e8de14b0f921b8c8ea303b\";a:5:{s:6:\"source\";s:32:\"9692c7dc43e8de14b0f921b8c8ea303b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2011f04b66cc1a3e940449c1bb93b4df\";a:5:{s:6:\"source\";s:32:\"2011f04b66cc1a3e940449c1bb93b4df\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8b28455bdb972df268dfdff87e822d97\";a:5:{s:6:\"source\";s:32:\"8b28455bdb972df268dfdff87e822d97\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef5ae644e8e56eb066f17a6f4de61343\";a:5:{s:6:\"source\";s:32:\"ef5ae644e8e56eb066f17a6f4de61343\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dc0fb6b6d676739c9cb425f86b911fdd\";a:5:{s:6:\"source\";s:32:\"dc0fb6b6d676739c9cb425f86b911fdd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7563b8be1bd4a769b4af0555cc41e026\";a:5:{s:6:\"source\";s:32:\"7563b8be1bd4a769b4af0555cc41e026\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c3b702ed17d8a3adec3423cf5398e2a6\";a:5:{s:6:\"source\";s:32:\"c3b702ed17d8a3adec3423cf5398e2a6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6daded1f2fafa7b768142ecd1f85598c\";a:5:{s:6:\"source\";s:32:\"6daded1f2fafa7b768142ecd1f85598c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d42b79cd5be2901fe080a4aeca15121e\";a:5:{s:6:\"source\";s:32:\"d42b79cd5be2901fe080a4aeca15121e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a3c414b077e943c23b79e3c600d76bd7\";a:5:{s:6:\"source\";s:32:\"a3c414b077e943c23b79e3c600d76bd7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2d614fd5d8fa91d3708a557b6a321e2f\";a:5:{s:6:\"source\";s:32:\"2d614fd5d8fa91d3708a557b6a321e2f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"faf9587aeb633e30c5ceeb0ea993ec54\";a:5:{s:6:\"source\";s:32:\"faf9587aeb633e30c5ceeb0ea993ec54\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5893c3ae34b295a908f5f91ea4c140fd\";a:5:{s:6:\"source\";s:32:\"5893c3ae34b295a908f5f91ea4c140fd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b9cf0226fa07328e6c6c79fd18f9bea2\";a:5:{s:6:\"source\";s:32:\"b9cf0226fa07328e6c6c79fd18f9bea2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"99ca85653864e681d57f367f72c737a9\";a:5:{s:6:\"source\";s:32:\"99ca85653864e681d57f367f72c737a9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9facf3a542f7cd31898ed48d476a80c3\";a:5:{s:6:\"source\";s:32:\"9facf3a542f7cd31898ed48d476a80c3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"078fb0edc4fbcc257f8e17b0de27c5e1\";a:5:{s:6:\"source\";s:32:\"078fb0edc4fbcc257f8e17b0de27c5e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0b1751e30f9b3c06fc4d897df504d5fa\";a:5:{s:6:\"source\";s:32:\"0b1751e30f9b3c06fc4d897df504d5fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"39fc14871d2e8bdb8ce62d7d230a3186\";a:5:{s:6:\"source\";s:32:\"39fc14871d2e8bdb8ce62d7d230a3186\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"359c10ec5a8e415c934aebc8e79b0224\";a:5:{s:6:\"source\";s:32:\"359c10ec5a8e415c934aebc8e79b0224\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b10b3b46c0fe78b69b17e109a88c57d6\";a:5:{s:6:\"source\";s:32:\"b10b3b46c0fe78b69b17e109a88c57d6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9a751c0908b95fcabbf3791bed7735f1\";a:5:{s:6:\"source\";s:32:\"9a751c0908b95fcabbf3791bed7735f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6084f581fe5a46baf7aea0349afa91e4\";a:5:{s:6:\"source\";s:32:\"6084f581fe5a46baf7aea0349afa91e4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5e872e734c75be41f69ed950984ae1f8\";a:5:{s:6:\"source\";s:32:\"5e872e734c75be41f69ed950984ae1f8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1f682a6bc1640f2ab8bb03b744bab1e7\";a:5:{s:6:\"source\";s:32:\"1f682a6bc1640f2ab8bb03b744bab1e7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8396bff1fa59a96ca671a9b9de2dab1c\";a:5:{s:6:\"source\";s:32:\"8396bff1fa59a96ca671a9b9de2dab1c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bc4e291dc0e43a6acab65cde794dc4a5\";a:5:{s:6:\"source\";s:32:\"bc4e291dc0e43a6acab65cde794dc4a5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"70e4f375531f9462887775322535af11\";a:5:{s:6:\"source\";s:32:\"70e4f375531f9462887775322535af11\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7ded2b622b243c824ef7324cfae3cbf6\";a:5:{s:6:\"source\";s:32:\"7ded2b622b243c824ef7324cfae3cbf6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"72bdb88e5f08de17038c73081e725a4e\";a:5:{s:6:\"source\";s:32:\"72bdb88e5f08de17038c73081e725a4e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"502cf8edc8c4ae3022fc736067fb8a22\";a:5:{s:6:\"source\";s:32:\"502cf8edc8c4ae3022fc736067fb8a22\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e3f892c2a5ca902644f6b7a22ec71ee8\";a:5:{s:6:\"source\";s:32:\"e3f892c2a5ca902644f6b7a22ec71ee8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"59597ecfbe9b081acf62260289ed7972\";a:5:{s:6:\"source\";s:32:\"59597ecfbe9b081acf62260289ed7972\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3576e186e104944a412178b41ba2053a\";a:5:{s:6:\"source\";s:32:\"3576e186e104944a412178b41ba2053a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"db8d635c51f32679b4226488ba42d2a3\";a:5:{s:6:\"source\";s:32:\"db8d635c51f32679b4226488ba42d2a3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e897682491ee0bc7e9372851e5c9087f\";a:5:{s:6:\"source\";s:32:\"e897682491ee0bc7e9372851e5c9087f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"52e4c03f30cf2d3136b546dfb6c252cc\";a:5:{s:6:\"source\";s:32:\"52e4c03f30cf2d3136b546dfb6c252cc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fd8448f38d53352c3fe35df6cbd34d5c\";a:5:{s:6:\"source\";s:32:\"fd8448f38d53352c3fe35df6cbd34d5c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cfb0d5425950ca6aeece91205e131cab\";a:5:{s:6:\"source\";s:32:\"cfb0d5425950ca6aeece91205e131cab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b2b6f7c8e1ce5ad35fd3e2b6ed669a53\";a:5:{s:6:\"source\";s:32:\"b2b6f7c8e1ce5ad35fd3e2b6ed669a53\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a57d5df3f74309cde2a3ed13f6987225\";a:5:{s:6:\"source\";s:32:\"a57d5df3f74309cde2a3ed13f6987225\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eff05c057adda0834f526454b1b34a01\";a:5:{s:6:\"source\";s:32:\"eff05c057adda0834f526454b1b34a01\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5c3120213476aafa6c359092c773227f\";a:5:{s:6:\"source\";s:32:\"5c3120213476aafa6c359092c773227f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"701ca0a8f7fc486efc9cae80d7bc57be\";a:5:{s:6:\"source\";s:32:\"701ca0a8f7fc486efc9cae80d7bc57be\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"053300d2c6614f8fbe3bd95e0bd5f7ee\";a:5:{s:6:\"source\";s:32:\"053300d2c6614f8fbe3bd95e0bd5f7ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"064e4775b6771e7977d574de2863a4f4\";a:5:{s:6:\"source\";s:32:\"064e4775b6771e7977d574de2863a4f4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"594a99755a35e0882f8bb020d2bc8611\";a:5:{s:6:\"source\";s:32:\"594a99755a35e0882f8bb020d2bc8611\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"14f875722a15b8e4ce626c9ff790f41f\";a:5:{s:6:\"source\";s:32:\"14f875722a15b8e4ce626c9ff790f41f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"96280aea87b887e3e004982a5b85093f\";a:5:{s:6:\"source\";s:32:\"96280aea87b887e3e004982a5b85093f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cf5d6614bab80f331f20590687c58fdc\";a:5:{s:6:\"source\";s:32:\"cf5d6614bab80f331f20590687c58fdc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4a0b0d035705317e07f950ad3e811731\";a:5:{s:6:\"source\";s:32:\"4a0b0d035705317e07f950ad3e811731\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a0497da039ff4bede3e93fd6e6fcc1dc\";a:5:{s:6:\"source\";s:32:\"a0497da039ff4bede3e93fd6e6fcc1dc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e64b1559c22e9473ec7089756e356d92\";a:5:{s:6:\"source\";s:32:\"e64b1559c22e9473ec7089756e356d92\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c5eec51e8647915c2aea794950f42532\";a:5:{s:6:\"source\";s:32:\"c5eec51e8647915c2aea794950f42532\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"82ce61a1e7945f56eb2a571fb9474829\";a:5:{s:6:\"source\";s:32:\"82ce61a1e7945f56eb2a571fb9474829\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9549c711d5fca49665d3f062c4d9145d\";a:5:{s:6:\"source\";s:32:\"9549c711d5fca49665d3f062c4d9145d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7e88d32885ba200831e4c5c6b8506f84\";a:5:{s:6:\"source\";s:32:\"7e88d32885ba200831e4c5c6b8506f84\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4ce437a8e0db5dd172a6481018128d76\";a:5:{s:6:\"source\";s:32:\"4ce437a8e0db5dd172a6481018128d76\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"afa03c76686d08f96556fd948069dbc1\";a:5:{s:6:\"source\";s:32:\"afa03c76686d08f96556fd948069dbc1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"27628e1177d5811fa96313316a8b72d0\";a:5:{s:6:\"source\";s:32:\"27628e1177d5811fa96313316a8b72d0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"65101046682d68c3de05af68c274335b\";a:5:{s:6:\"source\";s:32:\"65101046682d68c3de05af68c274335b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e8ec9c6c8ac23c7966e41edf1a54c8a4\";a:5:{s:6:\"source\";s:32:\"e8ec9c6c8ac23c7966e41edf1a54c8a4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"95888e5222b4a477d6b721c48446ca17\";a:5:{s:6:\"source\";s:32:\"95888e5222b4a477d6b721c48446ca17\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7aa197ab3db09dd0f92fdaf706998f34\";a:5:{s:6:\"source\";s:32:\"7aa197ab3db09dd0f92fdaf706998f34\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fb73f0df7c739dcc7d766c702371efa4\";a:5:{s:6:\"source\";s:32:\"fb73f0df7c739dcc7d766c702371efa4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"603a78f205d85958cbea2e85f5a42a7c\";a:5:{s:6:\"source\";s:32:\"603a78f205d85958cbea2e85f5a42a7c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2ac01a6c84dee53153b708da69316441\";a:5:{s:6:\"source\";s:32:\"2ac01a6c84dee53153b708da69316441\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2ae17753b25e770b6b4ca56415cbd677\";a:5:{s:6:\"source\";s:32:\"2ae17753b25e770b6b4ca56415cbd677\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"76af22e90980d173e91fec0f547de750\";a:5:{s:6:\"source\";s:32:\"76af22e90980d173e91fec0f547de750\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dbe176d14c70d48b769f24944a240ece\";a:5:{s:6:\"source\";s:32:\"dbe176d14c70d48b769f24944a240ece\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"af932de5369e71b4f70cd79ff2a7abde\";a:5:{s:6:\"source\";s:32:\"af932de5369e71b4f70cd79ff2a7abde\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"08e0454cc557dc42cb88763fa4433bf1\";a:5:{s:6:\"source\";s:32:\"08e0454cc557dc42cb88763fa4433bf1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff1cf630c85670b241b7f883afbe9096\";a:5:{s:6:\"source\";s:32:\"ff1cf630c85670b241b7f883afbe9096\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dfbff7c08cb481849812a3ee07be8da3\";a:5:{s:6:\"source\";s:32:\"dfbff7c08cb481849812a3ee07be8da3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"91d25cb812d6d73dae0796be06b174f5\";a:5:{s:6:\"source\";s:32:\"91d25cb812d6d73dae0796be06b174f5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6b6b672c84d064a72dc9212d9b4a5334\";a:5:{s:6:\"source\";s:32:\"6b6b672c84d064a72dc9212d9b4a5334\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c9baf010d329a44e794b1d3369cd47ec\";a:5:{s:6:\"source\";s:32:\"c9baf010d329a44e794b1d3369cd47ec\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0022efa6df4383cea514f0260be9525a\";a:5:{s:6:\"source\";s:32:\"0022efa6df4383cea514f0260be9525a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7ff1183ca8e875f214f5b1b77574c6e9\";a:5:{s:6:\"source\";s:32:\"7ff1183ca8e875f214f5b1b77574c6e9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8137e70085be99fa5fd8a612e1bdf47d\";a:5:{s:6:\"source\";s:32:\"8137e70085be99fa5fd8a612e1bdf47d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f3b45848f9bc2745c08368b95ec6fd1\";a:5:{s:6:\"source\";s:32:\"7f3b45848f9bc2745c08368b95ec6fd1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e351a42b3b363de23a0b188006d8aa35\";a:5:{s:6:\"source\";s:32:\"e351a42b3b363de23a0b188006d8aa35\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4f8e688cdd45a8d37a84732b60a70529\";a:5:{s:6:\"source\";s:32:\"4f8e688cdd45a8d37a84732b60a70529\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef4308cfd035d21d0b427ef0a166074e\";a:5:{s:6:\"source\";s:32:\"ef4308cfd035d21d0b427ef0a166074e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b17a6ab6d2fbf0abe01d9859cca9a71f\";a:5:{s:6:\"source\";s:32:\"b17a6ab6d2fbf0abe01d9859cca9a71f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"94ab2726f6253107d14cb3cb28dd4323\";a:5:{s:6:\"source\";s:32:\"94ab2726f6253107d14cb3cb28dd4323\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"10773c62e99a20593ee33139d54b8f9e\";a:5:{s:6:\"source\";s:32:\"10773c62e99a20593ee33139d54b8f9e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b2921209dcd9565367706d443d282195\";a:5:{s:6:\"source\";s:32:\"b2921209dcd9565367706d443d282195\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f5ac870441fb391dfa8cbd6fb962fe09\";a:5:{s:6:\"source\";s:32:\"f5ac870441fb391dfa8cbd6fb962fe09\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c47be4c1cde5ee6acdd31d760ff3489\";a:5:{s:6:\"source\";s:32:\"3c47be4c1cde5ee6acdd31d760ff3489\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1e8f488163e69dc62fafc68d485aecc5\";a:5:{s:6:\"source\";s:32:\"1e8f488163e69dc62fafc68d485aecc5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e4b427b8a34b88ee5394f0501a78911f\";a:5:{s:6:\"source\";s:32:\"e4b427b8a34b88ee5394f0501a78911f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"51e38b609d9cac8a70c22576c2d82178\";a:5:{s:6:\"source\";s:32:\"51e38b609d9cac8a70c22576c2d82178\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e838223cd5e2726ef1b519ebbb69e593\";a:5:{s:6:\"source\";s:32:\"e838223cd5e2726ef1b519ebbb69e593\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f0567299df25b5a4cb46457809680733\";a:5:{s:6:\"source\";s:32:\"f0567299df25b5a4cb46457809680733\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"abd9d557afee7c04d7ca7bef668a0a69\";a:5:{s:6:\"source\";s:32:\"abd9d557afee7c04d7ca7bef668a0a69\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"24ddaa1f3d86ad56f7db0736e5de4231\";a:5:{s:6:\"source\";s:32:\"24ddaa1f3d86ad56f7db0736e5de4231\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bf7134dfe11146ac427857d8caec0ed2\";a:5:{s:6:\"source\";s:32:\"bf7134dfe11146ac427857d8caec0ed2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"efa8a5dd48a280579467d41a9f16b90a\";a:5:{s:6:\"source\";s:32:\"efa8a5dd48a280579467d41a9f16b90a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bce1a34dcf0ccc7426d0eaa508f33748\";a:5:{s:6:\"source\";s:32:\"bce1a34dcf0ccc7426d0eaa508f33748\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"08396f1a524ed181ecb8ea4559eaa4c6\";a:5:{s:6:\"source\";s:32:\"08396f1a524ed181ecb8ea4559eaa4c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1030d7618b908eda74fd652cc9c6ab97\";a:5:{s:6:\"source\";s:32:\"1030d7618b908eda74fd652cc9c6ab97\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"79374d5e3a4213aa6428a6a514a5ee71\";a:5:{s:6:\"source\";s:32:\"79374d5e3a4213aa6428a6a514a5ee71\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"392db8c86032c0560479079ca850b0b1\";a:5:{s:6:\"source\";s:32:\"392db8c86032c0560479079ca850b0b1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1026a03138fdecc6ec47d727b0eb0120\";a:5:{s:6:\"source\";s:32:\"1026a03138fdecc6ec47d727b0eb0120\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"69d5f778fc73974c5947760280c1ba8f\";a:5:{s:6:\"source\";s:32:\"69d5f778fc73974c5947760280c1ba8f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2e45088d77cb4fc14eb810a398c3220b\";a:5:{s:6:\"source\";s:32:\"2e45088d77cb4fc14eb810a398c3220b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eb577e33ed4054abf731e5984615f134\";a:5:{s:6:\"source\";s:32:\"eb577e33ed4054abf731e5984615f134\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d3cf84ba8d07af8abd40d3481af8b2af\";a:5:{s:6:\"source\";s:32:\"d3cf84ba8d07af8abd40d3481af8b2af\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"db0d97885ebc91e111cef6127fef364e\";a:5:{s:6:\"source\";s:32:\"db0d97885ebc91e111cef6127fef364e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"64212dfe658ce2b6181248150c16a041\";a:5:{s:6:\"source\";s:32:\"64212dfe658ce2b6181248150c16a041\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"784b835f63b096867df06c642e948b85\";a:5:{s:6:\"source\";s:32:\"784b835f63b096867df06c642e948b85\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9a8e5a61f39ff291aec25588ee7e0558\";a:5:{s:6:\"source\";s:32:\"9a8e5a61f39ff291aec25588ee7e0558\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"132e54edd402377689fd0a784158dac0\";a:5:{s:6:\"source\";s:32:\"132e54edd402377689fd0a784158dac0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4bd1737beaab5eb24234cf5bd0d29b5a\";a:5:{s:6:\"source\";s:32:\"4bd1737beaab5eb24234cf5bd0d29b5a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f94b04625ae3cc403cee41c1726c3792\";a:5:{s:6:\"source\";s:32:\"f94b04625ae3cc403cee41c1726c3792\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1fe54b5675896bf47f4cd6f329a50be8\";a:5:{s:6:\"source\";s:32:\"1fe54b5675896bf47f4cd6f329a50be8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b564bb7b54706d95b48591d0f9385923\";a:5:{s:6:\"source\";s:32:\"b564bb7b54706d95b48591d0f9385923\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8c8c7e6eefb9216692897ba02787dd11\";a:5:{s:6:\"source\";s:32:\"8c8c7e6eefb9216692897ba02787dd11\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"457c58665f5883dee8bddd70feec0034\";a:5:{s:6:\"source\";s:32:\"457c58665f5883dee8bddd70feec0034\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fbcee7583d9f5c80d9c4b23a06be539b\";a:5:{s:6:\"source\";s:32:\"fbcee7583d9f5c80d9c4b23a06be539b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e6392b1138ec8f6eb603eb0ecf8561b8\";a:5:{s:6:\"source\";s:32:\"e6392b1138ec8f6eb603eb0ecf8561b8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"639403d4921e1d5d268bd754c9edf0b8\";a:5:{s:6:\"source\";s:32:\"639403d4921e1d5d268bd754c9edf0b8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b280b554c3d0be23b972ed8905bae236\";a:5:{s:6:\"source\";s:32:\"b280b554c3d0be23b972ed8905bae236\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a7437326a48c44be65d86aac940683ae\";a:5:{s:6:\"source\";s:32:\"a7437326a48c44be65d86aac940683ae\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"19d81b818978c7c14630e2cc95a62f3d\";a:5:{s:6:\"source\";s:32:\"19d81b818978c7c14630e2cc95a62f3d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1b9f97672fffb290cc5edbd3c1e9f4af\";a:5:{s:6:\"source\";s:32:\"1b9f97672fffb290cc5edbd3c1e9f4af\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1d682cbf0b9d725ea336179b92544d6d\";a:5:{s:6:\"source\";s:32:\"1d682cbf0b9d725ea336179b92544d6d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a3658d647c761b57e34ec55555f021cb\";a:5:{s:6:\"source\";s:32:\"a3658d647c761b57e34ec55555f021cb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a623b5b00f415f859ac0bb7cf6c61a30\";a:5:{s:6:\"source\";s:32:\"a623b5b00f415f859ac0bb7cf6c61a30\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"11a17e2dcd29571a157af5164b7ad793\";a:5:{s:6:\"source\";s:32:\"11a17e2dcd29571a157af5164b7ad793\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e2234818d5868a8c2a889577157ef7a9\";a:5:{s:6:\"source\";s:32:\"e2234818d5868a8c2a889577157ef7a9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"53e2c17603a722e68245d86083b93f9f\";a:5:{s:6:\"source\";s:32:\"53e2c17603a722e68245d86083b93f9f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9d302e98df8113d3e3508104330e81b1\";a:5:{s:6:\"source\";s:32:\"9d302e98df8113d3e3508104330e81b1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dd791adfc82c3d47f7379bbb5f308dce\";a:5:{s:6:\"source\";s:32:\"dd791adfc82c3d47f7379bbb5f308dce\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a70512a061260aa137af67e683223e8b\";a:5:{s:6:\"source\";s:32:\"a70512a061260aa137af67e683223e8b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9d16192e38acc88bc2a1375f883b11f9\";a:5:{s:6:\"source\";s:32:\"9d16192e38acc88bc2a1375f883b11f9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"21eb4961089e740b97dbc896eeb07003\";a:5:{s:6:\"source\";s:32:\"21eb4961089e740b97dbc896eeb07003\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4e24730d939eeca842bbf6c6f1695f7f\";a:5:{s:6:\"source\";s:32:\"4e24730d939eeca842bbf6c6f1695f7f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"326e4288289627c88064a99840ea8b89\";a:5:{s:6:\"source\";s:32:\"326e4288289627c88064a99840ea8b89\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0b3755f4be7b9bba09f94559c83d6881\";a:5:{s:6:\"source\";s:32:\"0b3755f4be7b9bba09f94559c83d6881\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7e0f84d75e9af36f504c51402b9cd9d9\";a:5:{s:6:\"source\";s:32:\"7e0f84d75e9af36f504c51402b9cd9d9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"262b9a3a4f9270ba3d1378727d377596\";a:5:{s:6:\"source\";s:32:\"262b9a3a4f9270ba3d1378727d377596\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a4535276f36dd2876a5af6093f22879d\";a:5:{s:6:\"source\";s:32:\"a4535276f36dd2876a5af6093f22879d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4603c0b42bcaaeab1e4ceb6a3f8525c4\";a:5:{s:6:\"source\";s:32:\"4603c0b42bcaaeab1e4ceb6a3f8525c4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8fe70d34e09c6e853d413b51ba707ae8\";a:5:{s:6:\"source\";s:32:\"8fe70d34e09c6e853d413b51ba707ae8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b91809d859cbbb810726bb9926d8869b\";a:5:{s:6:\"source\";s:32:\"b91809d859cbbb810726bb9926d8869b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d74cda3ba81c8c73bd7bbe996b6efc0d\";a:5:{s:6:\"source\";s:32:\"d74cda3ba81c8c73bd7bbe996b6efc0d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f60b3d1407074710bace416e03f0b92e\";a:5:{s:6:\"source\";s:32:\"f60b3d1407074710bace416e03f0b92e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bc066f34f37efc9765ad7caafdac2d83\";a:5:{s:6:\"source\";s:32:\"bc066f34f37efc9765ad7caafdac2d83\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2a1232f51441b46bd4c8f54939d1ee8d\";a:5:{s:6:\"source\";s:32:\"2a1232f51441b46bd4c8f54939d1ee8d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c69868073ff82a1f672131ad7963dfd1\";a:5:{s:6:\"source\";s:32:\"c69868073ff82a1f672131ad7963dfd1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"67e650fdf9c1b87c4e4dfa3cc00680e0\";a:5:{s:6:\"source\";s:32:\"67e650fdf9c1b87c4e4dfa3cc00680e0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"012fb9c17b48508e9e0bedd54838e442\";a:5:{s:6:\"source\";s:32:\"012fb9c17b48508e9e0bedd54838e442\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b893139c03767ce9fe5696546f36f6e5\";a:5:{s:6:\"source\";s:32:\"b893139c03767ce9fe5696546f36f6e5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e9c0d1af2acf1cdb7d59532eb3a686f1\";a:5:{s:6:\"source\";s:32:\"e9c0d1af2acf1cdb7d59532eb3a686f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d651876eff9b3d6aefeb824abbb5b7bb\";a:5:{s:6:\"source\";s:32:\"d651876eff9b3d6aefeb824abbb5b7bb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6ebff43ff5ea695369ac3a22f3bc4476\";a:5:{s:6:\"source\";s:32:\"6ebff43ff5ea695369ac3a22f3bc4476\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"95ee0b6426aab3e59d230a35f8c46f00\";a:5:{s:6:\"source\";s:32:\"95ee0b6426aab3e59d230a35f8c46f00\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"db39d859c9beeebfcfd7d3c348639a10\";a:5:{s:6:\"source\";s:32:\"db39d859c9beeebfcfd7d3c348639a10\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1a2535165b9fc1f7ca7d052e05d7e1f4\";a:5:{s:6:\"source\";s:32:\"1a2535165b9fc1f7ca7d052e05d7e1f4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e007803ddbed93c012aae39564f1f089\";a:5:{s:6:\"source\";s:32:\"e007803ddbed93c012aae39564f1f089\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"69e8d5f358741bb1621be5e433b585ff\";a:5:{s:6:\"source\";s:32:\"69e8d5f358741bb1621be5e433b585ff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d99c443a74859e3cfa7070d0d5187458\";a:5:{s:6:\"source\";s:32:\"d99c443a74859e3cfa7070d0d5187458\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d42e9aa6359f8c19e3e3df0ee616607\";a:5:{s:6:\"source\";s:32:\"4d42e9aa6359f8c19e3e3df0ee616607\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d920ccfc5323cc3e9083467046ff4d24\";a:5:{s:6:\"source\";s:32:\"d920ccfc5323cc3e9083467046ff4d24\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d16ce0b38048ac329ecd8b21163af9cf\";a:5:{s:6:\"source\";s:32:\"d16ce0b38048ac329ecd8b21163af9cf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"076bdc355f176088f8a6d70bbf793efd\";a:5:{s:6:\"source\";s:32:\"076bdc355f176088f8a6d70bbf793efd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c5736ad768d97aefaef75273249f0edd\";a:5:{s:6:\"source\";s:32:\"c5736ad768d97aefaef75273249f0edd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"89083a9c5cd795ac7549a9bbc1acd67a\";a:5:{s:6:\"source\";s:32:\"89083a9c5cd795ac7549a9bbc1acd67a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1dedcc66d0812e098d9d1dae2a745d50\";a:5:{s:6:\"source\";s:32:\"1dedcc66d0812e098d9d1dae2a745d50\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a3cdf1c493af537cd668f869eec25c0\";a:5:{s:6:\"source\";s:32:\"8a3cdf1c493af537cd668f869eec25c0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c6e23ab86e795c64d5c6b3f1ba3309a2\";a:5:{s:6:\"source\";s:32:\"c6e23ab86e795c64d5c6b3f1ba3309a2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"31ce46653f77e7aee814dc776859850b\";a:5:{s:6:\"source\";s:32:\"31ce46653f77e7aee814dc776859850b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"afc8c7580f53b0168e05890bbf68817a\";a:5:{s:6:\"source\";s:32:\"afc8c7580f53b0168e05890bbf68817a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bdafa576f0d3a70e86bbc9c653b6ea7f\";a:5:{s:6:\"source\";s:32:\"bdafa576f0d3a70e86bbc9c653b6ea7f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"876ba49b1f360d2676a2e0b7d976ce6d\";a:5:{s:6:\"source\";s:32:\"876ba49b1f360d2676a2e0b7d976ce6d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c4b74bce827c68d1f0aea85045f60ee8\";a:5:{s:6:\"source\";s:32:\"c4b74bce827c68d1f0aea85045f60ee8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5682839477393c51e625e6a4dc15ce3b\";a:5:{s:6:\"source\";s:32:\"5682839477393c51e625e6a4dc15ce3b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1c1505579c9c6f248132ed63f1ea6561\";a:5:{s:6:\"source\";s:32:\"1c1505579c9c6f248132ed63f1ea6561\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"33ffe935250e04d7c5df7c29b2364753\";a:5:{s:6:\"source\";s:32:\"33ffe935250e04d7c5df7c29b2364753\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fa747a764435806bef76f997726a82d5\";a:5:{s:6:\"source\";s:32:\"fa747a764435806bef76f997726a82d5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f8087d6d5d592cb1b761560e1c8323c9\";a:5:{s:6:\"source\";s:32:\"f8087d6d5d592cb1b761560e1c8323c9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"21336358065f9f3a0bea0b2ffed6ae7e\";a:5:{s:6:\"source\";s:32:\"21336358065f9f3a0bea0b2ffed6ae7e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b92843bdc3c585abe2652104e69257ba\";a:5:{s:6:\"source\";s:32:\"b92843bdc3c585abe2652104e69257ba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eef9e856489bcabe0c338344c5968c8e\";a:5:{s:6:\"source\";s:32:\"eef9e856489bcabe0c338344c5968c8e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5588adb2f4beaa92f436834dddc4d197\";a:5:{s:6:\"source\";s:32:\"5588adb2f4beaa92f436834dddc4d197\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e1dfa948ad72783e0b620b65e90fed66\";a:5:{s:6:\"source\";s:32:\"e1dfa948ad72783e0b620b65e90fed66\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4dc74eba818feab39037471635033bf2\";a:5:{s:6:\"source\";s:32:\"4dc74eba818feab39037471635033bf2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"247da17cee636f90c2d4622cb6808836\";a:5:{s:6:\"source\";s:32:\"247da17cee636f90c2d4622cb6808836\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7199ba07ce257ff115fcd131754bdece\";a:5:{s:6:\"source\";s:32:\"7199ba07ce257ff115fcd131754bdece\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"93b86533b07e78d42b154b0f99aade58\";a:5:{s:6:\"source\";s:32:\"93b86533b07e78d42b154b0f99aade58\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"394081d0ff126f1361f63a0a9a4b9851\";a:5:{s:6:\"source\";s:32:\"394081d0ff126f1361f63a0a9a4b9851\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"37d5a824dbba9dbba12019dcbf33849c\";a:5:{s:6:\"source\";s:32:\"37d5a824dbba9dbba12019dcbf33849c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"52cd609aee274915da37b5f3774ed875\";a:5:{s:6:\"source\";s:32:\"52cd609aee274915da37b5f3774ed875\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"09168ec40b8e01fe27f352c2d9547e20\";a:5:{s:6:\"source\";s:32:\"09168ec40b8e01fe27f352c2d9547e20\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e0f4703169851a440c365d5ecba28bd5\";a:5:{s:6:\"source\";s:32:\"e0f4703169851a440c365d5ecba28bd5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"52708f3fd1ae86db4a5b09595a207c22\";a:5:{s:6:\"source\";s:32:\"52708f3fd1ae86db4a5b09595a207c22\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dc3db575c2127548f0a8a18d529f2cef\";a:5:{s:6:\"source\";s:32:\"dc3db575c2127548f0a8a18d529f2cef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"af9132db674dc079b78a4c10282b00a8\";a:5:{s:6:\"source\";s:32:\"af9132db674dc079b78a4c10282b00a8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a5b50c6b2371d72d19649194e1fac712\";a:5:{s:6:\"source\";s:32:\"a5b50c6b2371d72d19649194e1fac712\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eac48f730e7a0847bd3d8b82aa4d20d7\";a:5:{s:6:\"source\";s:32:\"eac48f730e7a0847bd3d8b82aa4d20d7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8c3618fb547858ee7fdcec8e9d2411d6\";a:5:{s:6:\"source\";s:32:\"8c3618fb547858ee7fdcec8e9d2411d6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"990803aff94b7b123c15baa68a3a2364\";a:5:{s:6:\"source\";s:32:\"990803aff94b7b123c15baa68a3a2364\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"192e701806fdf771d39d0917d81ffe01\";a:5:{s:6:\"source\";s:32:\"192e701806fdf771d39d0917d81ffe01\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0e4326117ced67e1702fad977655ce3f\";a:5:{s:6:\"source\";s:32:\"0e4326117ced67e1702fad977655ce3f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0e7aa2e41abae6dde2cd032037bf9eb8\";a:5:{s:6:\"source\";s:32:\"0e7aa2e41abae6dde2cd032037bf9eb8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1285ee6274d499ab142fb6d42cc87213\";a:5:{s:6:\"source\";s:32:\"1285ee6274d499ab142fb6d42cc87213\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ec607f8cf888735c9877e154796fa456\";a:5:{s:6:\"source\";s:32:\"ec607f8cf888735c9877e154796fa456\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f8786530e9cfbe7fa4f8eb7e51c610b\";a:5:{s:6:\"source\";s:32:\"7f8786530e9cfbe7fa4f8eb7e51c610b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c45d03fff6e31186d89c6b068612fe9c\";a:5:{s:6:\"source\";s:32:\"c45d03fff6e31186d89c6b068612fe9c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5a23d053cf2987792ec6d597f4b0ca13\";a:5:{s:6:\"source\";s:32:\"5a23d053cf2987792ec6d597f4b0ca13\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0f451ad030bd9acab10c7414bd397bce\";a:5:{s:6:\"source\";s:32:\"0f451ad030bd9acab10c7414bd397bce\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"182ba2e4d8c7ee785d6f5419b39d7144\";a:5:{s:6:\"source\";s:32:\"182ba2e4d8c7ee785d6f5419b39d7144\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a93a1a866003ebfcd78ea938f8220f47\";a:5:{s:6:\"source\";s:32:\"a93a1a866003ebfcd78ea938f8220f47\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"38987f16b9f7b1e6d7526370120a1e3b\";a:5:{s:6:\"source\";s:32:\"38987f16b9f7b1e6d7526370120a1e3b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c1c8b7fc169749ad5ee6448796f7e6f9\";a:5:{s:6:\"source\";s:32:\"c1c8b7fc169749ad5ee6448796f7e6f9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e56d76f50235f50d91980569ec692dc9\";a:5:{s:6:\"source\";s:32:\"e56d76f50235f50d91980569ec692dc9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e42da698bad127e0512726fde25d5073\";a:5:{s:6:\"source\";s:32:\"e42da698bad127e0512726fde25d5073\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"af283c4bc9f14a0adb28c7bbde609612\";a:5:{s:6:\"source\";s:32:\"af283c4bc9f14a0adb28c7bbde609612\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6426b3ec814952485c415b8e0758da94\";a:5:{s:6:\"source\";s:32:\"6426b3ec814952485c415b8e0758da94\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3ce264f5d2b3949735ae66bd1699f33c\";a:5:{s:6:\"source\";s:32:\"3ce264f5d2b3949735ae66bd1699f33c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"73925fcbb3c9a618a7f565414bc7222b\";a:5:{s:6:\"source\";s:32:\"73925fcbb3c9a618a7f565414bc7222b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5cacdb352990c011ecffbef2891678d3\";a:5:{s:6:\"source\";s:32:\"5cacdb352990c011ecffbef2891678d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a916f504835fbbf90f24acec8bbda0f0\";a:5:{s:6:\"source\";s:32:\"a916f504835fbbf90f24acec8bbda0f0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"557c33ad05fea72debc3b6e757d04d6e\";a:5:{s:6:\"source\";s:32:\"557c33ad05fea72debc3b6e757d04d6e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"350062c2d42644a77d326df7debc58b5\";a:5:{s:6:\"source\";s:32:\"350062c2d42644a77d326df7debc58b5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bde45aea0e7814533347c8c0dc610d04\";a:5:{s:6:\"source\";s:32:\"bde45aea0e7814533347c8c0dc610d04\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1155d53ff91188dd2e51e8ebdc9274c6\";a:5:{s:6:\"source\";s:32:\"1155d53ff91188dd2e51e8ebdc9274c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fd54b674e5ec9b1fbcab9b7d55595764\";a:5:{s:6:\"source\";s:32:\"fd54b674e5ec9b1fbcab9b7d55595764\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f1bed9ac7877a88ecef9ee55f934a37b\";a:5:{s:6:\"source\";s:32:\"f1bed9ac7877a88ecef9ee55f934a37b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c9d548f61190b9ce69aeb0d2e93211d0\";a:5:{s:6:\"source\";s:32:\"c9d548f61190b9ce69aeb0d2e93211d0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a007db820405daf71409c768ae42548b\";a:5:{s:6:\"source\";s:32:\"a007db820405daf71409c768ae42548b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"87fce63516becc280409bca993308fcc\";a:5:{s:6:\"source\";s:32:\"87fce63516becc280409bca993308fcc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"74b4aced2d32fffe7c2a0fff83318a3d\";a:5:{s:6:\"source\";s:32:\"74b4aced2d32fffe7c2a0fff83318a3d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4eb60f30f9754e28c2ea50a9ff214be3\";a:5:{s:6:\"source\";s:32:\"4eb60f30f9754e28c2ea50a9ff214be3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5356156c3f2e012bf43e622d9d73b177\";a:5:{s:6:\"source\";s:32:\"5356156c3f2e012bf43e622d9d73b177\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c7eb819e650c4f8396d3ed1837eeb966\";a:5:{s:6:\"source\";s:32:\"c7eb819e650c4f8396d3ed1837eeb966\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"08d5d8685798f5b9d7fc80da059ce94f\";a:5:{s:6:\"source\";s:32:\"08d5d8685798f5b9d7fc80da059ce94f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a466263dd10735e9899055d16798a07d\";a:5:{s:6:\"source\";s:32:\"a466263dd10735e9899055d16798a07d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fece597254bf6ea75e27097336a0fecc\";a:5:{s:6:\"source\";s:32:\"fece597254bf6ea75e27097336a0fecc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2324b9cbfe51bbabf2d69950e09ddaf6\";a:5:{s:6:\"source\";s:32:\"2324b9cbfe51bbabf2d69950e09ddaf6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"406ac054f72d07f83d89cd9377bb7139\";a:5:{s:6:\"source\";s:32:\"406ac054f72d07f83d89cd9377bb7139\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dff0a90f1337da125575ea4fe63a1b8c\";a:5:{s:6:\"source\";s:32:\"dff0a90f1337da125575ea4fe63a1b8c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5bfe06bb665431a85829cf326b361118\";a:5:{s:6:\"source\";s:32:\"5bfe06bb665431a85829cf326b361118\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bdf601c2b612311a63bcb735faa7e05d\";a:5:{s:6:\"source\";s:32:\"bdf601c2b612311a63bcb735faa7e05d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e4acee611b76348c0bbc3bb2a47bf7ed\";a:5:{s:6:\"source\";s:32:\"e4acee611b76348c0bbc3bb2a47bf7ed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"11d3723ace8594d8a9928acd62555f52\";a:5:{s:6:\"source\";s:32:\"11d3723ace8594d8a9928acd62555f52\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"77a566eabd8aaf89ae342949a76fb4e7\";a:5:{s:6:\"source\";s:32:\"77a566eabd8aaf89ae342949a76fb4e7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e326a2f434e15a49f734824ea4459125\";a:5:{s:6:\"source\";s:32:\"e326a2f434e15a49f734824ea4459125\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bdffb07fa80004371dded151d7e85923\";a:5:{s:6:\"source\";s:32:\"bdffb07fa80004371dded151d7e85923\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e9e53b1905e8187649e95d2fb19060f5\";a:5:{s:6:\"source\";s:32:\"e9e53b1905e8187649e95d2fb19060f5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e152cee98a6099c16f379637316cd0b2\";a:5:{s:6:\"source\";s:32:\"e152cee98a6099c16f379637316cd0b2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cbb63dbdd273f502093658d6b0d3b172\";a:5:{s:6:\"source\";s:32:\"cbb63dbdd273f502093658d6b0d3b172\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"db38fd20ea7e2705df12628f1d81d745\";a:5:{s:6:\"source\";s:32:\"db38fd20ea7e2705df12628f1d81d745\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"232f8b23551761f1129ae1fda5298494\";a:5:{s:6:\"source\";s:32:\"232f8b23551761f1129ae1fda5298494\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7724763b82082a5a6f5432a17e603944\";a:5:{s:6:\"source\";s:32:\"7724763b82082a5a6f5432a17e603944\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2e14477fd47f3c128657f94f27cb918e\";a:5:{s:6:\"source\";s:32:\"2e14477fd47f3c128657f94f27cb918e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"690f4cd9b722360ff98600f9b7029dd7\";a:5:{s:6:\"source\";s:32:\"690f4cd9b722360ff98600f9b7029dd7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a5ef6d3e9f094ffecaf5694d90186396\";a:5:{s:6:\"source\";s:32:\"a5ef6d3e9f094ffecaf5694d90186396\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3537eb3558c539e7ad20e032a35c2971\";a:5:{s:6:\"source\";s:32:\"3537eb3558c539e7ad20e032a35c2971\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4becf32f4035cf8c2eac6fbda57c8b19\";a:5:{s:6:\"source\";s:32:\"4becf32f4035cf8c2eac6fbda57c8b19\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3bc904b30c0a844fd80b28bad2f68980\";a:5:{s:6:\"source\";s:32:\"3bc904b30c0a844fd80b28bad2f68980\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e8f88a42c868802b5e74eb3430ba8dea\";a:5:{s:6:\"source\";s:32:\"e8f88a42c868802b5e74eb3430ba8dea\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b996b3fd8facd26864776887d82f4ff7\";a:5:{s:6:\"source\";s:32:\"b996b3fd8facd26864776887d82f4ff7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"897608ed60f726857d61b1c2edc08f02\";a:5:{s:6:\"source\";s:32:\"897608ed60f726857d61b1c2edc08f02\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3d5bc59eaf33b84a98a08af27faed908\";a:5:{s:6:\"source\";s:32:\"3d5bc59eaf33b84a98a08af27faed908\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"71b000b516364a0d497b8f81690d7955\";a:5:{s:6:\"source\";s:32:\"71b000b516364a0d497b8f81690d7955\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"207418e2293b628081166e28ecc70464\";a:5:{s:6:\"source\";s:32:\"207418e2293b628081166e28ecc70464\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"91aaad3333bfe9a65ec1904a5f2e65ad\";a:5:{s:6:\"source\";s:32:\"91aaad3333bfe9a65ec1904a5f2e65ad\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7ffab62b6b909cb7322969a52b70eda3\";a:5:{s:6:\"source\";s:32:\"7ffab62b6b909cb7322969a52b70eda3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8976e66241776f93c8705dd3bed3ec20\";a:5:{s:6:\"source\";s:32:\"8976e66241776f93c8705dd3bed3ec20\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4878e8a628c0fdb9bf562977aeed8742\";a:5:{s:6:\"source\";s:32:\"4878e8a628c0fdb9bf562977aeed8742\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7a5fcab8196cbd6f103e793b45fca715\";a:5:{s:6:\"source\";s:32:\"7a5fcab8196cbd6f103e793b45fca715\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ae2d873f6f3f0f1aa7f8bf5778e4c2a9\";a:5:{s:6:\"source\";s:32:\"ae2d873f6f3f0f1aa7f8bf5778e4c2a9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3a25e6160d205e8a8d2da9ac6b900d4e\";a:5:{s:6:\"source\";s:32:\"3a25e6160d205e8a8d2da9ac6b900d4e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e42713b643e24a59b296ec6a6c5edd9d\";a:5:{s:6:\"source\";s:32:\"e42713b643e24a59b296ec6a6c5edd9d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cf7877cd4badc8d5153692f40e26070b\";a:5:{s:6:\"source\";s:32:\"cf7877cd4badc8d5153692f40e26070b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"82e4c2e8b514d423129316b911463bce\";a:5:{s:6:\"source\";s:32:\"82e4c2e8b514d423129316b911463bce\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff52878bda713f9225a1b548f93809f8\";a:5:{s:6:\"source\";s:32:\"ff52878bda713f9225a1b548f93809f8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2570501fcd4002e515790ad251f25cf8\";a:5:{s:6:\"source\";s:32:\"2570501fcd4002e515790ad251f25cf8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ae84f840e5b85bf267089aec8dc9e2b6\";a:5:{s:6:\"source\";s:32:\"ae84f840e5b85bf267089aec8dc9e2b6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2d0a30d350d393ac17207c90236bf802\";a:5:{s:6:\"source\";s:32:\"2d0a30d350d393ac17207c90236bf802\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6863059d1503af3708ccae4a74e9b746\";a:5:{s:6:\"source\";s:32:\"6863059d1503af3708ccae4a74e9b746\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b8bf57699824cfbbfe9f96a1c09ff6f1\";a:5:{s:6:\"source\";s:32:\"b8bf57699824cfbbfe9f96a1c09ff6f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"704fb9ddd96469277d17c597bfb691b8\";a:5:{s:6:\"source\";s:32:\"704fb9ddd96469277d17c597bfb691b8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"181803552c7cd95f47af4e2c7ae3df55\";a:5:{s:6:\"source\";s:32:\"181803552c7cd95f47af4e2c7ae3df55\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d4e404c89b3caedfc0e756d662342cd3\";a:5:{s:6:\"source\";s:32:\"d4e404c89b3caedfc0e756d662342cd3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1aa3ca4b6252547b1844b653489cce89\";a:5:{s:6:\"source\";s:32:\"1aa3ca4b6252547b1844b653489cce89\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"87b904f231b35d99c0cd39516f37e18c\";a:5:{s:6:\"source\";s:32:\"87b904f231b35d99c0cd39516f37e18c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f35738973014635c3b65d1c05ec3eeca\";a:5:{s:6:\"source\";s:32:\"f35738973014635c3b65d1c05ec3eeca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c236e2bfcc84cb40fd913015d5fad0e4\";a:5:{s:6:\"source\";s:32:\"c236e2bfcc84cb40fd913015d5fad0e4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e04828d01b7aede0ff2de683db4b5791\";a:5:{s:6:\"source\";s:32:\"e04828d01b7aede0ff2de683db4b5791\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c9dc17cab1916c8186d3a6ba4b54507\";a:5:{s:6:\"source\";s:32:\"2c9dc17cab1916c8186d3a6ba4b54507\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"52ab34ba5dd6e352048ad12cc6b22fab\";a:5:{s:6:\"source\";s:32:\"52ab34ba5dd6e352048ad12cc6b22fab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ded03b76b8619a3f27438d0994f7e880\";a:5:{s:6:\"source\";s:32:\"ded03b76b8619a3f27438d0994f7e880\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b6ff38b43bf4f3edf254e4fa0a119256\";a:5:{s:6:\"source\";s:32:\"b6ff38b43bf4f3edf254e4fa0a119256\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c58397af152e6bde70d68a2d89672ee0\";a:5:{s:6:\"source\";s:32:\"c58397af152e6bde70d68a2d89672ee0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fdf1f1f4368172dd04ea2a7ee1a31579\";a:5:{s:6:\"source\";s:32:\"fdf1f1f4368172dd04ea2a7ee1a31579\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"69c2e3d288d52838138ea2ff5ec49606\";a:5:{s:6:\"source\";s:32:\"69c2e3d288d52838138ea2ff5ec49606\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bcda03e683f7194e133ff66f7c0684fd\";a:5:{s:6:\"source\";s:32:\"bcda03e683f7194e133ff66f7c0684fd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d31ddb5ce58ac742974ef09f2d88ed0c\";a:5:{s:6:\"source\";s:32:\"d31ddb5ce58ac742974ef09f2d88ed0c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"23aa83a042bcadb0e4a1688b18892b7c\";a:5:{s:6:\"source\";s:32:\"23aa83a042bcadb0e4a1688b18892b7c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"115c6505116d778f0f34a98b1a26a0f4\";a:5:{s:6:\"source\";s:32:\"115c6505116d778f0f34a98b1a26a0f4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ebc19013ca549e896f4ee034fb0677cf\";a:5:{s:6:\"source\";s:32:\"ebc19013ca549e896f4ee034fb0677cf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dffadfb570eb4a23f6388d9d1f7b7ea6\";a:5:{s:6:\"source\";s:32:\"dffadfb570eb4a23f6388d9d1f7b7ea6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b5723e428c629b1eda092aac856b86f8\";a:5:{s:6:\"source\";s:32:\"b5723e428c629b1eda092aac856b86f8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"67902fea9e48096f72e3598649fb868e\";a:5:{s:6:\"source\";s:32:\"67902fea9e48096f72e3598649fb868e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c332aeebab76622fbe049ed8f16b243\";a:5:{s:6:\"source\";s:32:\"2c332aeebab76622fbe049ed8f16b243\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0036360e0469fcfabf616a53aed7ba5a\";a:5:{s:6:\"source\";s:32:\"0036360e0469fcfabf616a53aed7ba5a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ec75b3ddc16d02cc61781c39ff4b259c\";a:5:{s:6:\"source\";s:32:\"ec75b3ddc16d02cc61781c39ff4b259c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"77acf5b282443bff362e4a96be33d0d6\";a:5:{s:6:\"source\";s:32:\"77acf5b282443bff362e4a96be33d0d6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6617ea7244de578d5f500da9a33434ce\";a:5:{s:6:\"source\";s:32:\"6617ea7244de578d5f500da9a33434ce\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"657f91ca90b999e561618bfba484f101\";a:5:{s:6:\"source\";s:32:\"657f91ca90b999e561618bfba484f101\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d46d5bfa87634f0741bbc888e4302295\";a:5:{s:6:\"source\";s:32:\"d46d5bfa87634f0741bbc888e4302295\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3adc7ad5b490128c6c21fc16501975e3\";a:5:{s:6:\"source\";s:32:\"3adc7ad5b490128c6c21fc16501975e3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e5d8e5ec3e63ec59e14186a135f9ce02\";a:5:{s:6:\"source\";s:32:\"e5d8e5ec3e63ec59e14186a135f9ce02\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dade7e789658ac55146e984ef3aad9ee\";a:5:{s:6:\"source\";s:32:\"dade7e789658ac55146e984ef3aad9ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"04dedb2099a9b46ea38535dfe14a17d0\";a:5:{s:6:\"source\";s:32:\"04dedb2099a9b46ea38535dfe14a17d0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"31e318b8ecedd7a7ecf3827d3dc26bc9\";a:5:{s:6:\"source\";s:32:\"31e318b8ecedd7a7ecf3827d3dc26bc9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eb1b7b5951fcc565702c043b71f88610\";a:5:{s:6:\"source\";s:32:\"eb1b7b5951fcc565702c043b71f88610\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"08157f66bf3487fc187907ab9be667da\";a:5:{s:6:\"source\";s:32:\"08157f66bf3487fc187907ab9be667da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"92e89093f0beec1ceb5d7c6908192a79\";a:5:{s:6:\"source\";s:32:\"92e89093f0beec1ceb5d7c6908192a79\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1f546d8184ae5d5774d80ae64b11f60f\";a:5:{s:6:\"source\";s:32:\"1f546d8184ae5d5774d80ae64b11f60f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c5d62ae2787a945ef2bc180ace0c11c6\";a:5:{s:6:\"source\";s:32:\"c5d62ae2787a945ef2bc180ace0c11c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8316a858e68cbdd08bc0648ee77fe27a\";a:5:{s:6:\"source\";s:32:\"8316a858e68cbdd08bc0648ee77fe27a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4471f54f0735d259b2ec2368096c4325\";a:5:{s:6:\"source\";s:32:\"4471f54f0735d259b2ec2368096c4325\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5ec1826dd39149fadb3d4f1915812be5\";a:5:{s:6:\"source\";s:32:\"5ec1826dd39149fadb3d4f1915812be5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e3b5de53273ef9c61828d9b8e8c6b753\";a:5:{s:6:\"source\";s:32:\"e3b5de53273ef9c61828d9b8e8c6b753\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"58d8418411bc0dec9895b9d2244ce4f1\";a:5:{s:6:\"source\";s:32:\"58d8418411bc0dec9895b9d2244ce4f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bbfa5c374a4dad19e801c82ab4c2beef\";a:5:{s:6:\"source\";s:32:\"bbfa5c374a4dad19e801c82ab4c2beef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"46955420752bddf45c0a99ab5f73428d\";a:5:{s:6:\"source\";s:32:\"46955420752bddf45c0a99ab5f73428d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"54573cd77934fe34453bd54ef3b23c3a\";a:5:{s:6:\"source\";s:32:\"54573cd77934fe34453bd54ef3b23c3a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dc716e4019b91e24b4e9c1f566a91c09\";a:5:{s:6:\"source\";s:32:\"dc716e4019b91e24b4e9c1f566a91c09\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3b5deb12f16366bf4b33a7f800e17f61\";a:5:{s:6:\"source\";s:32:\"3b5deb12f16366bf4b33a7f800e17f61\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8632422e7dad034222f9bce4d5cadd33\";a:5:{s:6:\"source\";s:32:\"8632422e7dad034222f9bce4d5cadd33\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"81642753d5953a6a974c6be923b0c128\";a:5:{s:6:\"source\";s:32:\"81642753d5953a6a974c6be923b0c128\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"19644ebdf47c59671921e93e218b2e86\";a:5:{s:6:\"source\";s:32:\"19644ebdf47c59671921e93e218b2e86\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7e233206bac54d58a02eb873ef054654\";a:5:{s:6:\"source\";s:32:\"7e233206bac54d58a02eb873ef054654\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"47300c92f3be0d06dcf4c1178a5ce0bf\";a:5:{s:6:\"source\";s:32:\"47300c92f3be0d06dcf4c1178a5ce0bf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2b7846557d34a0ad778226085d1fdbb0\";a:5:{s:6:\"source\";s:32:\"2b7846557d34a0ad778226085d1fdbb0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0cd96cbc462a83532d8411c95d76add7\";a:5:{s:6:\"source\";s:32:\"0cd96cbc462a83532d8411c95d76add7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cf71737ee8bf9d10a69f1c8f2090b4c7\";a:5:{s:6:\"source\";s:32:\"cf71737ee8bf9d10a69f1c8f2090b4c7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"18db88908be25c515dd306a2b4e062ab\";a:5:{s:6:\"source\";s:32:\"18db88908be25c515dd306a2b4e062ab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"25b7058640954bd38a7ff4e6ae19de3c\";a:5:{s:6:\"source\";s:32:\"25b7058640954bd38a7ff4e6ae19de3c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c40747a1d4c9e8c4a974ccf4f63d487d\";a:5:{s:6:\"source\";s:32:\"c40747a1d4c9e8c4a974ccf4f63d487d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6709ad0a493c8aadcf9b78210295c8d5\";a:5:{s:6:\"source\";s:32:\"6709ad0a493c8aadcf9b78210295c8d5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"be16d955ab55cbbc674ab69a23485506\";a:5:{s:6:\"source\";s:32:\"be16d955ab55cbbc674ab69a23485506\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"de94fd1a5d796c8c61638cdb29fd65cf\";a:5:{s:6:\"source\";s:32:\"de94fd1a5d796c8c61638cdb29fd65cf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a50853cbfa70bfaa51852d5fd91aeaf0\";a:5:{s:6:\"source\";s:32:\"a50853cbfa70bfaa51852d5fd91aeaf0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f315691ad37c2285be72bd034652cf9e\";a:5:{s:6:\"source\";s:32:\"f315691ad37c2285be72bd034652cf9e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1a0a374775aab6bbe1ec25d0040bed6d\";a:5:{s:6:\"source\";s:32:\"1a0a374775aab6bbe1ec25d0040bed6d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"007f245ec213cf87962936ae489277a0\";a:5:{s:6:\"source\";s:32:\"007f245ec213cf87962936ae489277a0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c8d3a83e3c82cd6411006bc5f9db878d\";a:5:{s:6:\"source\";s:32:\"c8d3a83e3c82cd6411006bc5f9db878d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"28a93dbd97bd846ee25d3ca18e70c0f3\";a:5:{s:6:\"source\";s:32:\"28a93dbd97bd846ee25d3ca18e70c0f3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c78f61a16119f58ef0bdc19e0681cd36\";a:5:{s:6:\"source\";s:32:\"c78f61a16119f58ef0bdc19e0681cd36\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4f8c50b2d596c3a4d88288a0410d55ca\";a:5:{s:6:\"source\";s:32:\"4f8c50b2d596c3a4d88288a0410d55ca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"04ac9f3769430be86d9a360e81188fba\";a:5:{s:6:\"source\";s:32:\"04ac9f3769430be86d9a360e81188fba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c26717f7c74a5d99c180762baea60867\";a:5:{s:6:\"source\";s:32:\"c26717f7c74a5d99c180762baea60867\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"76b3486f8b57ad084476e00e9618f670\";a:5:{s:6:\"source\";s:32:\"76b3486f8b57ad084476e00e9618f670\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0c2b501d0bafb8055e56afe7b2542a36\";a:5:{s:6:\"source\";s:32:\"0c2b501d0bafb8055e56afe7b2542a36\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0335d093f27f9281b69ecb2fbfa44bed\";a:5:{s:6:\"source\";s:32:\"0335d093f27f9281b69ecb2fbfa44bed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2052121ce90c3b0fa5ed7edda4615dc2\";a:5:{s:6:\"source\";s:32:\"2052121ce90c3b0fa5ed7edda4615dc2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5dae21bdf618bc7f30ce1cc246500253\";a:5:{s:6:\"source\";s:32:\"5dae21bdf618bc7f30ce1cc246500253\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f0a897d01c459d6ae93ff2d4a0584e05\";a:5:{s:6:\"source\";s:32:\"f0a897d01c459d6ae93ff2d4a0584e05\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cab2cbc43ef70a86977d747765523514\";a:5:{s:6:\"source\";s:32:\"cab2cbc43ef70a86977d747765523514\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"597fda0c1afc8c494c7a13f30d065fed\";a:5:{s:6:\"source\";s:32:\"597fda0c1afc8c494c7a13f30d065fed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d5aa3151b46a66aae5195f62c411a7ac\";a:5:{s:6:\"source\";s:32:\"d5aa3151b46a66aae5195f62c411a7ac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"226300c2c1d264bcf49e3c73553d41e9\";a:5:{s:6:\"source\";s:32:\"226300c2c1d264bcf49e3c73553d41e9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"924e83efb21a640e815b697aab711e63\";a:5:{s:6:\"source\";s:32:\"924e83efb21a640e815b697aab711e63\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"743e5475371e7738ef95bfbea08f97fe\";a:5:{s:6:\"source\";s:32:\"743e5475371e7738ef95bfbea08f97fe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f30c02d89a9623d1499f8b44e2892e62\";a:5:{s:6:\"source\";s:32:\"f30c02d89a9623d1499f8b44e2892e62\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"141d6dd3d80bc87884d2de41e5d049a8\";a:5:{s:6:\"source\";s:32:\"141d6dd3d80bc87884d2de41e5d049a8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b183eabecc8c6fbbff5e178ede0eb272\";a:5:{s:6:\"source\";s:32:\"b183eabecc8c6fbbff5e178ede0eb272\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a82c5e0a6263f28196082db151c4b01e\";a:5:{s:6:\"source\";s:32:\"a82c5e0a6263f28196082db151c4b01e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"55b81052ac48ed824902d0ba8faab6c7\";a:5:{s:6:\"source\";s:32:\"55b81052ac48ed824902d0ba8faab6c7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"36407820225b4c5d55fc1c69d6a0243a\";a:5:{s:6:\"source\";s:32:\"36407820225b4c5d55fc1c69d6a0243a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"44db3f9426520f907e5ca46fa3eebcb0\";a:5:{s:6:\"source\";s:32:\"44db3f9426520f907e5ca46fa3eebcb0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e434386415456830eef4db60a85a5efe\";a:5:{s:6:\"source\";s:32:\"e434386415456830eef4db60a85a5efe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bd0ab3d4b5a95932d546dbe738d421fb\";a:5:{s:6:\"source\";s:32:\"bd0ab3d4b5a95932d546dbe738d421fb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"11439dad1f71a7517f59c861af71a20f\";a:5:{s:6:\"source\";s:32:\"11439dad1f71a7517f59c861af71a20f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a32d73cfc9b5541ab94e2ef652df50c5\";a:5:{s:6:\"source\";s:32:\"a32d73cfc9b5541ab94e2ef652df50c5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f39c095ae45931d7ab3e08b0d0908444\";a:5:{s:6:\"source\";s:32:\"f39c095ae45931d7ab3e08b0d0908444\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6396d05f572a36932acb222ac44ad1b6\";a:5:{s:6:\"source\";s:32:\"6396d05f572a36932acb222ac44ad1b6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"80f4c8f4657b962f66589cbd4567b2c3\";a:5:{s:6:\"source\";s:32:\"80f4c8f4657b962f66589cbd4567b2c3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8d9868c5c7946dbc4b8132a56d7819dd\";a:5:{s:6:\"source\";s:32:\"8d9868c5c7946dbc4b8132a56d7819dd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1a01a08e878383868cd1b74a6d8ad14b\";a:5:{s:6:\"source\";s:32:\"1a01a08e878383868cd1b74a6d8ad14b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5e6c9ad060fc2a957c466e2bac8ea65f\";a:5:{s:6:\"source\";s:32:\"5e6c9ad060fc2a957c466e2bac8ea65f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"822e304fcb351f8103cd991f061d8281\";a:5:{s:6:\"source\";s:32:\"822e304fcb351f8103cd991f061d8281\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"46aaf77f18b2801eef020e075663450c\";a:5:{s:6:\"source\";s:32:\"46aaf77f18b2801eef020e075663450c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1c1ba04646dd78e12e9af98086461288\";a:5:{s:6:\"source\";s:32:\"1c1ba04646dd78e12e9af98086461288\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"66aaa046b50c507607bb6d909bc24aa3\";a:5:{s:6:\"source\";s:32:\"66aaa046b50c507607bb6d909bc24aa3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b602f10c48b77e804bb1a6a775696a54\";a:5:{s:6:\"source\";s:32:\"b602f10c48b77e804bb1a6a775696a54\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c3818be8450448c2fe626bfcbff9c3d0\";a:5:{s:6:\"source\";s:32:\"c3818be8450448c2fe626bfcbff9c3d0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e476b9b1fec97bfa62a2223f5af50617\";a:5:{s:6:\"source\";s:32:\"e476b9b1fec97bfa62a2223f5af50617\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e911fec52016210c36555f5b59ed9f5b\";a:5:{s:6:\"source\";s:32:\"e911fec52016210c36555f5b59ed9f5b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d3efa9539609c3909ff758d9bd72f422\";a:5:{s:6:\"source\";s:32:\"d3efa9539609c3909ff758d9bd72f422\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c6ac7e2d027bec5810bff6e4ff90c0b6\";a:5:{s:6:\"source\";s:32:\"c6ac7e2d027bec5810bff6e4ff90c0b6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"90d07b7d2de9fd8614f1585cece34c00\";a:5:{s:6:\"source\";s:32:\"90d07b7d2de9fd8614f1585cece34c00\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d002e1bbd1c0b9a4528b823007a85578\";a:5:{s:6:\"source\";s:32:\"d002e1bbd1c0b9a4528b823007a85578\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"818c79848d88ce39b3d0b84d41b7bf20\";a:5:{s:6:\"source\";s:32:\"818c79848d88ce39b3d0b84d41b7bf20\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c593a22cd0ac922498220513a77e6db6\";a:5:{s:6:\"source\";s:32:\"c593a22cd0ac922498220513a77e6db6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"658debe4d64336bc6d7e62ee00772b97\";a:5:{s:6:\"source\";s:32:\"658debe4d64336bc6d7e62ee00772b97\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6f4f57743bffbb8eeaf97c8f0bd9e803\";a:5:{s:6:\"source\";s:32:\"6f4f57743bffbb8eeaf97c8f0bd9e803\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4be217c7818373b6e279992acb0e6d2e\";a:5:{s:6:\"source\";s:32:\"4be217c7818373b6e279992acb0e6d2e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"48b391d2941791f0f012b50c41664f5c\";a:5:{s:6:\"source\";s:32:\"48b391d2941791f0f012b50c41664f5c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"10373751dbf66db07e02f03c3578c535\";a:5:{s:6:\"source\";s:32:\"10373751dbf66db07e02f03c3578c535\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"45e8de1bd1dc44b5ccacf64d15da1110\";a:5:{s:6:\"source\";s:32:\"45e8de1bd1dc44b5ccacf64d15da1110\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e62c7d2a0e766c77eef244f1d8e1addd\";a:5:{s:6:\"source\";s:32:\"e62c7d2a0e766c77eef244f1d8e1addd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"23616fca83e8783b3097608610aa8288\";a:5:{s:6:\"source\";s:32:\"23616fca83e8783b3097608610aa8288\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"25533beb91a853271cd2b7575998ac2c\";a:5:{s:6:\"source\";s:32:\"25533beb91a853271cd2b7575998ac2c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"96799940be9d7346958c4d831774d260\";a:5:{s:6:\"source\";s:32:\"96799940be9d7346958c4d831774d260\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c42b361345f9fdd0509689b267c9b304\";a:5:{s:6:\"source\";s:32:\"c42b361345f9fdd0509689b267c9b304\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d193a549e882ffc705fd511f4cd216fb\";a:5:{s:6:\"source\";s:32:\"d193a549e882ffc705fd511f4cd216fb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"db91ed45207d8e412fe5f660005f5cc1\";a:5:{s:6:\"source\";s:32:\"db91ed45207d8e412fe5f660005f5cc1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2a3959370a582f8dbc524018499992bc\";a:5:{s:6:\"source\";s:32:\"2a3959370a582f8dbc524018499992bc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7ca1155afe53e5e29f4a4fc70fb8824d\";a:5:{s:6:\"source\";s:32:\"7ca1155afe53e5e29f4a4fc70fb8824d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ec832c7c8547947c724aee58a999bd87\";a:5:{s:6:\"source\";s:32:\"ec832c7c8547947c724aee58a999bd87\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cf20b465749331ee91baaf3bdc8223db\";a:5:{s:6:\"source\";s:32:\"cf20b465749331ee91baaf3bdc8223db\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4b0c289cb7b5cf9abbf334c9fc32ce61\";a:5:{s:6:\"source\";s:32:\"4b0c289cb7b5cf9abbf334c9fc32ce61\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1220c78f6f32f28c0ec86589bcb4a886\";a:5:{s:6:\"source\";s:32:\"1220c78f6f32f28c0ec86589bcb4a886\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a966ff39aae7e1abf2686046ac807356\";a:5:{s:6:\"source\";s:32:\"a966ff39aae7e1abf2686046ac807356\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"094692b216dcc65d42bc1eae06fc4db8\";a:5:{s:6:\"source\";s:32:\"094692b216dcc65d42bc1eae06fc4db8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d5694aad054b5cc85d5e08aa6734c7d6\";a:5:{s:6:\"source\";s:32:\"d5694aad054b5cc85d5e08aa6734c7d6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"50224fef243a0e264030ae6141338b9d\";a:5:{s:6:\"source\";s:32:\"50224fef243a0e264030ae6141338b9d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c952fb5c16f5e0091db7ccf1f5cf05d5\";a:5:{s:6:\"source\";s:32:\"c952fb5c16f5e0091db7ccf1f5cf05d5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dd907af2b02754f599d5b857d0e14f4b\";a:5:{s:6:\"source\";s:32:\"dd907af2b02754f599d5b857d0e14f4b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5b030b49364aeac8a4bc507fc151cbe7\";a:5:{s:6:\"source\";s:32:\"5b030b49364aeac8a4bc507fc151cbe7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"886dc00a914c34aa0409c868914e0ad1\";a:5:{s:6:\"source\";s:32:\"886dc00a914c34aa0409c868914e0ad1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f4fb5b412bd135e6d5a0aa6942736c4f\";a:5:{s:6:\"source\";s:32:\"f4fb5b412bd135e6d5a0aa6942736c4f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3020b8bc018b32f3be2700cb58ec8b9c\";a:5:{s:6:\"source\";s:32:\"3020b8bc018b32f3be2700cb58ec8b9c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0aea94fe773015c8015ef7c51663c5a1\";a:5:{s:6:\"source\";s:32:\"0aea94fe773015c8015ef7c51663c5a1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c71272f2312d45ca8aac07d8bf5a90de\";a:5:{s:6:\"source\";s:32:\"c71272f2312d45ca8aac07d8bf5a90de\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e91b2d0b2e7c7cbc9158e0c297d85b48\";a:5:{s:6:\"source\";s:32:\"e91b2d0b2e7c7cbc9158e0c297d85b48\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3eeafd8ed5876b5df7121c8b2ac2497b\";a:5:{s:6:\"source\";s:32:\"3eeafd8ed5876b5df7121c8b2ac2497b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a9546e184d89f60b175fdf2c9b4ab698\";a:5:{s:6:\"source\";s:32:\"a9546e184d89f60b175fdf2c9b4ab698\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8afe052020fa79f9c6f8ef79db150f5c\";a:5:{s:6:\"source\";s:32:\"8afe052020fa79f9c6f8ef79db150f5c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9996387d3192754d0cdc06881fa9c7a1\";a:5:{s:6:\"source\";s:32:\"9996387d3192754d0cdc06881fa9c7a1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8fe154741992095ceab92c231aae2eff\";a:5:{s:6:\"source\";s:32:\"8fe154741992095ceab92c231aae2eff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"11222cae3a1cc4d9d7e8ffd5bc0e1209\";a:5:{s:6:\"source\";s:32:\"11222cae3a1cc4d9d7e8ffd5bc0e1209\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0ed7e5bc3b76f65fb31f600b655d086d\";a:5:{s:6:\"source\";s:32:\"0ed7e5bc3b76f65fb31f600b655d086d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"186eb2054e2f6e1f8476ff93fe1fa7a7\";a:5:{s:6:\"source\";s:32:\"186eb2054e2f6e1f8476ff93fe1fa7a7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e54df82d6190f3cf6c99fe339e3419d1\";a:5:{s:6:\"source\";s:32:\"e54df82d6190f3cf6c99fe339e3419d1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"62fefb7de52ba29333d616ae41b42675\";a:5:{s:6:\"source\";s:32:\"62fefb7de52ba29333d616ae41b42675\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5aca16a1bcb5208902801c5f598d0927\";a:5:{s:6:\"source\";s:32:\"5aca16a1bcb5208902801c5f598d0927\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bb4bb514f691734b73ad22229d62dba7\";a:5:{s:6:\"source\";s:32:\"bb4bb514f691734b73ad22229d62dba7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"59ab61481747cd5251900c535d9bde9d\";a:5:{s:6:\"source\";s:32:\"59ab61481747cd5251900c535d9bde9d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"078e0d680e867d111c90ccab5f803ccc\";a:5:{s:6:\"source\";s:32:\"078e0d680e867d111c90ccab5f803ccc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8c0b3b1f1d5b6ef8b3647949d01b3d09\";a:5:{s:6:\"source\";s:32:\"8c0b3b1f1d5b6ef8b3647949d01b3d09\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"882106f99f602988a2007e02a0638b1b\";a:5:{s:6:\"source\";s:32:\"882106f99f602988a2007e02a0638b1b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"425e9ad87ed756b0c9f899861641b98d\";a:5:{s:6:\"source\";s:32:\"425e9ad87ed756b0c9f899861641b98d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ba799a093f4390d35ddb605753b611b4\";a:5:{s:6:\"source\";s:32:\"ba799a093f4390d35ddb605753b611b4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f968a1da038536b654817cc4f62ce75d\";a:5:{s:6:\"source\";s:32:\"f968a1da038536b654817cc4f62ce75d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"59291104ee5c0251b0e674ca7628a954\";a:5:{s:6:\"source\";s:32:\"59291104ee5c0251b0e674ca7628a954\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2463caf3aa914013f54350f873ccf67e\";a:5:{s:6:\"source\";s:32:\"2463caf3aa914013f54350f873ccf67e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0069ec3b3007a79c81884a7ebfcd5741\";a:5:{s:6:\"source\";s:32:\"0069ec3b3007a79c81884a7ebfcd5741\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"426ea86b93ad6466ab8094120971fbb1\";a:5:{s:6:\"source\";s:32:\"426ea86b93ad6466ab8094120971fbb1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e39315f81132b40f5688cafe8d81cd59\";a:5:{s:6:\"source\";s:32:\"e39315f81132b40f5688cafe8d81cd59\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1e3a2ce0fd7a39f2877e8c8ffcba090c\";a:5:{s:6:\"source\";s:32:\"1e3a2ce0fd7a39f2877e8c8ffcba090c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2fb9b1137d33de1d4ffb094b6ca8f5c9\";a:5:{s:6:\"source\";s:32:\"2fb9b1137d33de1d4ffb094b6ca8f5c9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"337e2cd15cbb35580c4c4cc45b186550\";a:5:{s:6:\"source\";s:32:\"337e2cd15cbb35580c4c4cc45b186550\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1a3f35e0245a234ca438a47dfedf2c09\";a:5:{s:6:\"source\";s:32:\"1a3f35e0245a234ca438a47dfedf2c09\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a5cc884baffc2d85912b7d43ee69f125\";a:5:{s:6:\"source\";s:32:\"a5cc884baffc2d85912b7d43ee69f125\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"043dc6a5597b8f225baea877baea4673\";a:5:{s:6:\"source\";s:32:\"043dc6a5597b8f225baea877baea4673\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a882dda86ce2ef5a78866a3f66dcea2f\";a:5:{s:6:\"source\";s:32:\"a882dda86ce2ef5a78866a3f66dcea2f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"390b9aa96fc917951cd0de8ed1f24d42\";a:5:{s:6:\"source\";s:32:\"390b9aa96fc917951cd0de8ed1f24d42\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fe3d6e2b29d3540a662ec912c4697da3\";a:5:{s:6:\"source\";s:32:\"fe3d6e2b29d3540a662ec912c4697da3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"69a6c65c0af261125c156370d49f42d1\";a:5:{s:6:\"source\";s:32:\"69a6c65c0af261125c156370d49f42d1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6c9bfe4d1616aa9794e0cd9e8cf3436d\";a:5:{s:6:\"source\";s:32:\"6c9bfe4d1616aa9794e0cd9e8cf3436d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"140f6e0b4be30b64795e51328cf6731f\";a:5:{s:6:\"source\";s:32:\"140f6e0b4be30b64795e51328cf6731f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fee80bbee2eae25e41c80300b42dea20\";a:5:{s:6:\"source\";s:32:\"fee80bbee2eae25e41c80300b42dea20\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1120b0e32d38e8d0518b0548cbec22e5\";a:5:{s:6:\"source\";s:32:\"1120b0e32d38e8d0518b0548cbec22e5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cdffa550d9e54aa694a7e1d03f7bf369\";a:5:{s:6:\"source\";s:32:\"cdffa550d9e54aa694a7e1d03f7bf369\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a584f0efeb2c6b386f343ca7c14f5838\";a:5:{s:6:\"source\";s:32:\"a584f0efeb2c6b386f343ca7c14f5838\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fc98b0360abdcbc4300aadfd313eb021\";a:5:{s:6:\"source\";s:32:\"fc98b0360abdcbc4300aadfd313eb021\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e90d2c0e956d0286d03ef66a2f2fb560\";a:5:{s:6:\"source\";s:32:\"e90d2c0e956d0286d03ef66a2f2fb560\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d2262b5aeb745b9fb9404649222d0bca\";a:5:{s:6:\"source\";s:32:\"d2262b5aeb745b9fb9404649222d0bca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"22917ba7a56c8acd603c9ce94c639821\";a:5:{s:6:\"source\";s:32:\"22917ba7a56c8acd603c9ce94c639821\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"db0b1b3ec4470577ed950f13af4c5bac\";a:5:{s:6:\"source\";s:32:\"db0b1b3ec4470577ed950f13af4c5bac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f4d88249bcfa0ec7abed311e160317aa\";a:5:{s:6:\"source\";s:32:\"f4d88249bcfa0ec7abed311e160317aa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d8e93393de6a8c3fc8fc65f847f95166\";a:5:{s:6:\"source\";s:32:\"d8e93393de6a8c3fc8fc65f847f95166\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1240db0561aeebd814e0292ea5b28fab\";a:5:{s:6:\"source\";s:32:\"1240db0561aeebd814e0292ea5b28fab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"620761a49a4528a944ca3a53fcd9b62c\";a:5:{s:6:\"source\";s:32:\"620761a49a4528a944ca3a53fcd9b62c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"836598d12b40242cdfb8d40a02373add\";a:5:{s:6:\"source\";s:32:\"836598d12b40242cdfb8d40a02373add\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"795617175b86b2c408881561515bb8e8\";a:5:{s:6:\"source\";s:32:\"795617175b86b2c408881561515bb8e8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7fea8b560347c8737a11c8a423eed825\";a:5:{s:6:\"source\";s:32:\"7fea8b560347c8737a11c8a423eed825\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"78fd8a427560e277dc875c8777f33f21\";a:5:{s:6:\"source\";s:32:\"78fd8a427560e277dc875c8777f33f21\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6aa2d5224187e2d8da2ea92cb77ccea5\";a:5:{s:6:\"source\";s:32:\"6aa2d5224187e2d8da2ea92cb77ccea5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"21d2de923b179dc0083bca4d2036e98d\";a:5:{s:6:\"source\";s:32:\"21d2de923b179dc0083bca4d2036e98d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d0be2766a74b979a163a0c4a43a1303a\";a:5:{s:6:\"source\";s:32:\"d0be2766a74b979a163a0c4a43a1303a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6451aa794096e65641301b9630edce34\";a:5:{s:6:\"source\";s:32:\"6451aa794096e65641301b9630edce34\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3bbed9bf119655952daa55c14b9dbb67\";a:5:{s:6:\"source\";s:32:\"3bbed9bf119655952daa55c14b9dbb67\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b54d9d1068c0a8d0c222ac46942b0a2e\";a:5:{s:6:\"source\";s:32:\"b54d9d1068c0a8d0c222ac46942b0a2e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2cb79b491ece535bde5a0269ba5fd6d8\";a:5:{s:6:\"source\";s:32:\"2cb79b491ece535bde5a0269ba5fd6d8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"881a98a75238df250fe11707a5715441\";a:5:{s:6:\"source\";s:32:\"881a98a75238df250fe11707a5715441\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1a056549215bd7c72e61bfb3eabbaf40\";a:5:{s:6:\"source\";s:32:\"1a056549215bd7c72e61bfb3eabbaf40\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"265371a646271f28bb84ce316489d0ab\";a:5:{s:6:\"source\";s:32:\"265371a646271f28bb84ce316489d0ab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"14832b3a5b7dc376a28ac5ff6d72232f\";a:5:{s:6:\"source\";s:32:\"14832b3a5b7dc376a28ac5ff6d72232f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1debbc993170d1ea1e776706573eaa90\";a:5:{s:6:\"source\";s:32:\"1debbc993170d1ea1e776706573eaa90\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cb71ea1088f459e80ccc7447267a1ddb\";a:5:{s:6:\"source\";s:32:\"cb71ea1088f459e80ccc7447267a1ddb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7cab00e0fd2e1f2b97012fb2567c4630\";a:5:{s:6:\"source\";s:32:\"7cab00e0fd2e1f2b97012fb2567c4630\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7dbe1a7475cb108f017f46af8a854ab3\";a:5:{s:6:\"source\";s:32:\"7dbe1a7475cb108f017f46af8a854ab3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a218e1fcead6456ed8f2a9a4a0cf1843\";a:5:{s:6:\"source\";s:32:\"a218e1fcead6456ed8f2a9a4a0cf1843\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e1330801cd7d4aa5c994c6dbb540a52a\";a:5:{s:6:\"source\";s:32:\"e1330801cd7d4aa5c994c6dbb540a52a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7a8ff965e60f0efba0a5a4e156e458b5\";a:5:{s:6:\"source\";s:32:\"7a8ff965e60f0efba0a5a4e156e458b5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"133b245509107321d03ce65a934e1e2e\";a:5:{s:6:\"source\";s:32:\"133b245509107321d03ce65a934e1e2e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff12b74df116ccfbd8f7bf6350e79e6d\";a:5:{s:6:\"source\";s:32:\"ff12b74df116ccfbd8f7bf6350e79e6d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ecf0b4661ad9522d587d0e6e947121da\";a:5:{s:6:\"source\";s:32:\"ecf0b4661ad9522d587d0e6e947121da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c232bafeced81f5e8af0884104940b0e\";a:5:{s:6:\"source\";s:32:\"c232bafeced81f5e8af0884104940b0e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"53db5b9a7c7d98810489b3221739f544\";a:5:{s:6:\"source\";s:32:\"53db5b9a7c7d98810489b3221739f544\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0b8d0f6908488d4406e71f89fc5058a6\";a:5:{s:6:\"source\";s:32:\"0b8d0f6908488d4406e71f89fc5058a6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"35060dfbaedb7f709588c6c4596f2508\";a:5:{s:6:\"source\";s:32:\"35060dfbaedb7f709588c6c4596f2508\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d4c9867054925a2cb21f68e1924e7733\";a:5:{s:6:\"source\";s:32:\"d4c9867054925a2cb21f68e1924e7733\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"563dbc10ceeaf16597407aac20aeb2e7\";a:5:{s:6:\"source\";s:32:\"563dbc10ceeaf16597407aac20aeb2e7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"73683990dc72faf05289fa89c4bae376\";a:5:{s:6:\"source\";s:32:\"73683990dc72faf05289fa89c4bae376\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a5caca43253e0aadbf1d4b7f6a8f9d50\";a:5:{s:6:\"source\";s:32:\"a5caca43253e0aadbf1d4b7f6a8f9d50\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7aa17e68854a04f5feb113de33e474c1\";a:5:{s:6:\"source\";s:32:\"7aa17e68854a04f5feb113de33e474c1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8f6a4eb6b52e93a0ad2ffe4c4a522e06\";a:5:{s:6:\"source\";s:32:\"8f6a4eb6b52e93a0ad2ffe4c4a522e06\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"18bdce9c6fe1338ac33fcd125e6b3754\";a:5:{s:6:\"source\";s:32:\"18bdce9c6fe1338ac33fcd125e6b3754\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a8e69ab9bce842295143319db43735f1\";a:5:{s:6:\"source\";s:32:\"a8e69ab9bce842295143319db43735f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"677b69d582632830125adc5f0828d375\";a:5:{s:6:\"source\";s:32:\"677b69d582632830125adc5f0828d375\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ecdb6fba81a97af0c796d45ad2a4615\";a:5:{s:6:\"source\";s:32:\"8ecdb6fba81a97af0c796d45ad2a4615\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"12b78b33709bd1c6d50b42855a8fb773\";a:5:{s:6:\"source\";s:32:\"12b78b33709bd1c6d50b42855a8fb773\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ec3a47025ea1e9130dbb004ded0e0d15\";a:5:{s:6:\"source\";s:32:\"ec3a47025ea1e9130dbb004ded0e0d15\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"43d50c8df9d79c80440b48d1f93f3c1c\";a:5:{s:6:\"source\";s:32:\"43d50c8df9d79c80440b48d1f93f3c1c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"19cd6a982291bac54f162a7cb2d2cc13\";a:5:{s:6:\"source\";s:32:\"19cd6a982291bac54f162a7cb2d2cc13\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"84fa0dae0112d8887faa52a8d848c42f\";a:5:{s:6:\"source\";s:32:\"84fa0dae0112d8887faa52a8d848c42f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c000b9000c4726a5213e1314d06f6d8\";a:5:{s:6:\"source\";s:32:\"2c000b9000c4726a5213e1314d06f6d8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"269f0df88ab9ee4dbbb454ed33283307\";a:5:{s:6:\"source\";s:32:\"269f0df88ab9ee4dbbb454ed33283307\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"194d16a084b4a5bff580f21d45b69d82\";a:5:{s:6:\"source\";s:32:\"194d16a084b4a5bff580f21d45b69d82\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b0ed66bb83f2bb4a52ad3b87e6b2faaa\";a:5:{s:6:\"source\";s:32:\"b0ed66bb83f2bb4a52ad3b87e6b2faaa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"036ae711bcf225c44c7b7ead88446770\";a:5:{s:6:\"source\";s:32:\"036ae711bcf225c44c7b7ead88446770\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cf14db6e7470b6d1751d654f7d8f5791\";a:5:{s:6:\"source\";s:32:\"cf14db6e7470b6d1751d654f7d8f5791\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9be801a634b442ea0ac277bea82904c7\";a:5:{s:6:\"source\";s:32:\"9be801a634b442ea0ac277bea82904c7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5030848b270919eaac0e2a734c703178\";a:5:{s:6:\"source\";s:32:\"5030848b270919eaac0e2a734c703178\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e655ad3fd7aeb29489d7b846f6e92f07\";a:5:{s:6:\"source\";s:32:\"e655ad3fd7aeb29489d7b846f6e92f07\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b41f3a01f504c26e09e7edebe787103b\";a:5:{s:6:\"source\";s:32:\"b41f3a01f504c26e09e7edebe787103b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"140a44650c1b450371e1d3b888e81031\";a:5:{s:6:\"source\";s:32:\"140a44650c1b450371e1d3b888e81031\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"73d0fe8242f30d85cbbd589f38d37567\";a:5:{s:6:\"source\";s:32:\"73d0fe8242f30d85cbbd589f38d37567\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e306c9b3bad838aa732ae3b4a6356314\";a:5:{s:6:\"source\";s:32:\"e306c9b3bad838aa732ae3b4a6356314\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bad96a7970a191e8d79ac1ff28faa7f0\";a:5:{s:6:\"source\";s:32:\"bad96a7970a191e8d79ac1ff28faa7f0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c12210b52bfe87c59e5c1e11c3375553\";a:5:{s:6:\"source\";s:32:\"c12210b52bfe87c59e5c1e11c3375553\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a53c64604b99fa7946c050d2840bc9d4\";a:5:{s:6:\"source\";s:32:\"a53c64604b99fa7946c050d2840bc9d4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d1fb65cd7734c87c2831ee98926d1bc3\";a:5:{s:6:\"source\";s:32:\"d1fb65cd7734c87c2831ee98926d1bc3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"26b179bfbe1bf497c1c207dda786cb7d\";a:5:{s:6:\"source\";s:32:\"26b179bfbe1bf497c1c207dda786cb7d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"94439a40ece34bec341076245ba10062\";a:5:{s:6:\"source\";s:32:\"94439a40ece34bec341076245ba10062\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9d79f67379d959894f82fb17604fede1\";a:5:{s:6:\"source\";s:32:\"9d79f67379d959894f82fb17604fede1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cfa4ce55cbbcd02fb7885dfa6667fe71\";a:5:{s:6:\"source\";s:32:\"cfa4ce55cbbcd02fb7885dfa6667fe71\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"03a8b01170fd452484cf8c5a92810cf4\";a:5:{s:6:\"source\";s:32:\"03a8b01170fd452484cf8c5a92810cf4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"45d1723a754c581ce4697e2e5846b088\";a:5:{s:6:\"source\";s:32:\"45d1723a754c581ce4697e2e5846b088\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"603691dda38e3a242a60e8eb051b3566\";a:5:{s:6:\"source\";s:32:\"603691dda38e3a242a60e8eb051b3566\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e95895da4f6593dc4f7a3207ceaa1d7d\";a:5:{s:6:\"source\";s:32:\"e95895da4f6593dc4f7a3207ceaa1d7d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"181592a2ebf014f340cc825547dc7da9\";a:5:{s:6:\"source\";s:32:\"181592a2ebf014f340cc825547dc7da9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3ecae956f45c256ddfc2540e45f75126\";a:5:{s:6:\"source\";s:32:\"3ecae956f45c256ddfc2540e45f75126\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0a48008e429573b6e931fb83d22a69ec\";a:5:{s:6:\"source\";s:32:\"0a48008e429573b6e931fb83d22a69ec\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aeeb9d9c295278b0a07d65c2eab4fd8a\";a:5:{s:6:\"source\";s:32:\"aeeb9d9c295278b0a07d65c2eab4fd8a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"927f09f815e8190c3cbea677a1eca3d6\";a:5:{s:6:\"source\";s:32:\"927f09f815e8190c3cbea677a1eca3d6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f04a37748239fb3dd940720774d4b86c\";a:5:{s:6:\"source\";s:32:\"f04a37748239fb3dd940720774d4b86c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"404a022b953daa52027d9adc356c7c52\";a:5:{s:6:\"source\";s:32:\"404a022b953daa52027d9adc356c7c52\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5ad0aef71ca2d3310b5721ace3508ecd\";a:5:{s:6:\"source\";s:32:\"5ad0aef71ca2d3310b5721ace3508ecd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0fa6ee96a6d126d7d112a66d04737aa8\";a:5:{s:6:\"source\";s:32:\"0fa6ee96a6d126d7d112a66d04737aa8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"278ad2524b62769d3eed1fa8a75df7c3\";a:5:{s:6:\"source\";s:32:\"278ad2524b62769d3eed1fa8a75df7c3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ea4eb5396146470192e18ecb4d3f234c\";a:5:{s:6:\"source\";s:32:\"ea4eb5396146470192e18ecb4d3f234c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b2cdef82e9c431f96f0bf461c7799663\";a:5:{s:6:\"source\";s:32:\"b2cdef82e9c431f96f0bf461c7799663\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4495744808f10f72858b42f80a6c728f\";a:5:{s:6:\"source\";s:32:\"4495744808f10f72858b42f80a6c728f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"25326386bb5095f8358d59a435a91b52\";a:5:{s:6:\"source\";s:32:\"25326386bb5095f8358d59a435a91b52\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dd3dfd649984dd4a4b23e42bc7844032\";a:5:{s:6:\"source\";s:32:\"dd3dfd649984dd4a4b23e42bc7844032\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7ef81eda21051e238b7223501f76bdda\";a:5:{s:6:\"source\";s:32:\"7ef81eda21051e238b7223501f76bdda\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4f05413621d3c10d2264bb63d02e45d2\";a:5:{s:6:\"source\";s:32:\"4f05413621d3c10d2264bb63d02e45d2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b5a4e1d56a4722ee992e0721df3d6855\";a:5:{s:6:\"source\";s:32:\"b5a4e1d56a4722ee992e0721df3d6855\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4e5f4ab2ba52883aed89e215f4662bbb\";a:5:{s:6:\"source\";s:32:\"4e5f4ab2ba52883aed89e215f4662bbb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7cffb956580fdddd573dc2d2c9e6e812\";a:5:{s:6:\"source\";s:32:\"7cffb956580fdddd573dc2d2c9e6e812\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"709ade22221d4bd4febc9b11e8e56f85\";a:5:{s:6:\"source\";s:32:\"709ade22221d4bd4febc9b11e8e56f85\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"89be909e4738470979a0d03ab7fa8da6\";a:5:{s:6:\"source\";s:32:\"89be909e4738470979a0d03ab7fa8da6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"144257e5928e4f4e3355175ac7090428\";a:5:{s:6:\"source\";s:32:\"144257e5928e4f4e3355175ac7090428\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a559896fa14b7a5817dbdebfabfd4102\";a:5:{s:6:\"source\";s:32:\"a559896fa14b7a5817dbdebfabfd4102\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6fab3872c8e8f9ea6446060d0943f0fa\";a:5:{s:6:\"source\";s:32:\"6fab3872c8e8f9ea6446060d0943f0fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"485e12b12f6410db58a0539fe8580bbe\";a:5:{s:6:\"source\";s:32:\"485e12b12f6410db58a0539fe8580bbe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ad31fb60d101a8ad8559cff579af5b4f\";a:5:{s:6:\"source\";s:32:\"ad31fb60d101a8ad8559cff579af5b4f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0e6772c5c6ad7c162470d7096a1e8dfc\";a:5:{s:6:\"source\";s:32:\"0e6772c5c6ad7c162470d7096a1e8dfc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"237eae476ca14f17a502ca4e09656a1d\";a:5:{s:6:\"source\";s:32:\"237eae476ca14f17a502ca4e09656a1d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"924889a690f9dc64442c67bf8a598447\";a:5:{s:6:\"source\";s:32:\"924889a690f9dc64442c67bf8a598447\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6bbdccc511e1133f4c79c37ab9353e5f\";a:5:{s:6:\"source\";s:32:\"6bbdccc511e1133f4c79c37ab9353e5f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6ca58564ac15b582031809d9921be2a9\";a:5:{s:6:\"source\";s:32:\"6ca58564ac15b582031809d9921be2a9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d7397d00b193fca2ad5f39c550787442\";a:5:{s:6:\"source\";s:32:\"d7397d00b193fca2ad5f39c550787442\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"74ff1bf748322b30aaeac9d24859bc52\";a:5:{s:6:\"source\";s:32:\"74ff1bf748322b30aaeac9d24859bc52\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aea60db42aef54145149517cd5e68de0\";a:5:{s:6:\"source\";s:32:\"aea60db42aef54145149517cd5e68de0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"864c692ea4a79733a6ca063e4f3cebfc\";a:5:{s:6:\"source\";s:32:\"864c692ea4a79733a6ca063e4f3cebfc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aec206e46e36b0c8cfb561db4e521cfb\";a:5:{s:6:\"source\";s:32:\"aec206e46e36b0c8cfb561db4e521cfb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ebaf2dfb7876793c26e1d9890b7e9d48\";a:5:{s:6:\"source\";s:32:\"ebaf2dfb7876793c26e1d9890b7e9d48\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6fbc94d212b80d73a5864f8876786d2b\";a:5:{s:6:\"source\";s:32:\"6fbc94d212b80d73a5864f8876786d2b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2770e23b2a809923e56b95f18ad9a1fa\";a:5:{s:6:\"source\";s:32:\"2770e23b2a809923e56b95f18ad9a1fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b477942c923bc70a8c60e44d6d0a31e4\";a:5:{s:6:\"source\";s:32:\"b477942c923bc70a8c60e44d6d0a31e4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0bfad32b526ab345629238f2fd1a5297\";a:5:{s:6:\"source\";s:32:\"0bfad32b526ab345629238f2fd1a5297\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cd281a65e72ac48c347eaf34daea21c0\";a:5:{s:6:\"source\";s:32:\"cd281a65e72ac48c347eaf34daea21c0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"29d1a356d09f48a0bcfcc51865af7584\";a:5:{s:6:\"source\";s:32:\"29d1a356d09f48a0bcfcc51865af7584\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"28fd3fb3f2f15221d2db7bb209ddee5c\";a:5:{s:6:\"source\";s:32:\"28fd3fb3f2f15221d2db7bb209ddee5c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a5d1c818b4f38dac69573d3c9aa5a183\";a:5:{s:6:\"source\";s:32:\"a5d1c818b4f38dac69573d3c9aa5a183\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f37c81938aae730923fd29f52dfd6d75\";a:5:{s:6:\"source\";s:32:\"f37c81938aae730923fd29f52dfd6d75\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ec58dbad6e07becc56a33b6892d27da7\";a:5:{s:6:\"source\";s:32:\"ec58dbad6e07becc56a33b6892d27da7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f9c943e98418017e51b149916cc1842e\";a:5:{s:6:\"source\";s:32:\"f9c943e98418017e51b149916cc1842e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"534984a62fecf258211c0710a4efd8d7\";a:5:{s:6:\"source\";s:32:\"534984a62fecf258211c0710a4efd8d7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b4ba6ccdede36c5e3292f2fb5e161aa6\";a:5:{s:6:\"source\";s:32:\"b4ba6ccdede36c5e3292f2fb5e161aa6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"19c1d025b6b6af6f9a92c0f0ca347240\";a:5:{s:6:\"source\";s:32:\"19c1d025b6b6af6f9a92c0f0ca347240\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"30f7ce49b8a0149829b56f550485f649\";a:5:{s:6:\"source\";s:32:\"30f7ce49b8a0149829b56f550485f649\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e4afe5c62bd90527141a2be55a7f1c07\";a:5:{s:6:\"source\";s:32:\"e4afe5c62bd90527141a2be55a7f1c07\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ed36f3d39069444ec1eb35ffe79e9e2e\";a:5:{s:6:\"source\";s:32:\"ed36f3d39069444ec1eb35ffe79e9e2e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"910c9cf9b3cb120753ef9f27abc1b030\";a:5:{s:6:\"source\";s:32:\"910c9cf9b3cb120753ef9f27abc1b030\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7231cdde587230b4c2bea96caca06ac7\";a:5:{s:6:\"source\";s:32:\"7231cdde587230b4c2bea96caca06ac7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"09e4a7dd0b861363ac6a2e636bbfb0df\";a:5:{s:6:\"source\";s:32:\"09e4a7dd0b861363ac6a2e636bbfb0df\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a0bc339b9e61b1fa7cdc518f08dc73b5\";a:5:{s:6:\"source\";s:32:\"a0bc339b9e61b1fa7cdc518f08dc73b5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f2b6400f897c74b6892bf58b0b36743d\";a:5:{s:6:\"source\";s:32:\"f2b6400f897c74b6892bf58b0b36743d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7a196bc5efa77f4d240b35b6e2b20dfd\";a:5:{s:6:\"source\";s:32:\"7a196bc5efa77f4d240b35b6e2b20dfd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7b4a39bf7bdbc7f0c533864b72a6682d\";a:5:{s:6:\"source\";s:32:\"7b4a39bf7bdbc7f0c533864b72a6682d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4cf8a8928ae19bcf36c52a1a1daede02\";a:5:{s:6:\"source\";s:32:\"4cf8a8928ae19bcf36c52a1a1daede02\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a15d0739478709ff4f34d2911a833a98\";a:5:{s:6:\"source\";s:32:\"a15d0739478709ff4f34d2911a833a98\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c330a5f68f3c02b0fd9cc95e54bc2da0\";a:5:{s:6:\"source\";s:32:\"c330a5f68f3c02b0fd9cc95e54bc2da0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e18e2fd2483f6d21291b29e6a6cc623f\";a:5:{s:6:\"source\";s:32:\"e18e2fd2483f6d21291b29e6a6cc623f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"85a7e0440e6be5fcced84abe9d7293a2\";a:5:{s:6:\"source\";s:32:\"85a7e0440e6be5fcced84abe9d7293a2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a9f643baccf2e3bc17a86ff11f3a24c7\";a:5:{s:6:\"source\";s:32:\"a9f643baccf2e3bc17a86ff11f3a24c7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"01914dd2fbdfad554d73d183ab62ea93\";a:5:{s:6:\"source\";s:32:\"01914dd2fbdfad554d73d183ab62ea93\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0b04fa5bf104d194a926f686fa058019\";a:5:{s:6:\"source\";s:32:\"0b04fa5bf104d194a926f686fa058019\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"393c329be09b5e95321f86adb827dcf3\";a:5:{s:6:\"source\";s:32:\"393c329be09b5e95321f86adb827dcf3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b5011e9560799c042bbc329fb5b9cb09\";a:5:{s:6:\"source\";s:32:\"b5011e9560799c042bbc329fb5b9cb09\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ccafc66a9213691c1c44b089af0b778f\";a:5:{s:6:\"source\";s:32:\"ccafc66a9213691c1c44b089af0b778f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f252f40bea0514c0885123b5245a55e2\";a:5:{s:6:\"source\";s:32:\"f252f40bea0514c0885123b5245a55e2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7c34b673331ef13b36974d7ac411688d\";a:5:{s:6:\"source\";s:32:\"7c34b673331ef13b36974d7ac411688d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"45fcb304d410eb93d6dc6615f3d24de3\";a:5:{s:6:\"source\";s:32:\"45fcb304d410eb93d6dc6615f3d24de3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0f85c5d6dfe97345d440d35d0f82a1eb\";a:5:{s:6:\"source\";s:32:\"0f85c5d6dfe97345d440d35d0f82a1eb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"30a033937cefd779bf5b9d37ff9fbee1\";a:5:{s:6:\"source\";s:32:\"30a033937cefd779bf5b9d37ff9fbee1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c6b5b058217670a9d457e9c681cd1e2b\";a:5:{s:6:\"source\";s:32:\"c6b5b058217670a9d457e9c681cd1e2b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dff1cd6a56b1dddf84397a8070594f4a\";a:5:{s:6:\"source\";s:32:\"dff1cd6a56b1dddf84397a8070594f4a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e2f363859576ac87352f44b815f2b653\";a:5:{s:6:\"source\";s:32:\"e2f363859576ac87352f44b815f2b653\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f73fc8e0701d60e9f82cd6d34b20ebe4\";a:5:{s:6:\"source\";s:32:\"f73fc8e0701d60e9f82cd6d34b20ebe4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"378680de182968610315c761a03a0d6a\";a:5:{s:6:\"source\";s:32:\"378680de182968610315c761a03a0d6a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"507be018d7ddcdbbe8b6f834fd1ebdbb\";a:5:{s:6:\"source\";s:32:\"507be018d7ddcdbbe8b6f834fd1ebdbb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4f04b4d67eb3e0220a33816bc6f36036\";a:5:{s:6:\"source\";s:32:\"4f04b4d67eb3e0220a33816bc6f36036\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4a572998727a2f5bab0d27272394a3f2\";a:5:{s:6:\"source\";s:32:\"4a572998727a2f5bab0d27272394a3f2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a6ae402ef214b82c7c7b3109e63ab05b\";a:5:{s:6:\"source\";s:32:\"a6ae402ef214b82c7c7b3109e63ab05b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fc0e4932fe701ee21525a582081cf293\";a:5:{s:6:\"source\";s:32:\"fc0e4932fe701ee21525a582081cf293\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f1b27504419e7fd9a00271f9349cff7f\";a:5:{s:6:\"source\";s:32:\"f1b27504419e7fd9a00271f9349cff7f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"36411bcc0526504e663700c23c0332e5\";a:5:{s:6:\"source\";s:32:\"36411bcc0526504e663700c23c0332e5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7e39317e4a0b160953a0cfda999dcf70\";a:5:{s:6:\"source\";s:32:\"7e39317e4a0b160953a0cfda999dcf70\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"240b1fe42116a55e5e6dc4a4a57d80c9\";a:5:{s:6:\"source\";s:32:\"240b1fe42116a55e5e6dc4a4a57d80c9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eeb930200e6a268707f1f5c208bc6aaf\";a:5:{s:6:\"source\";s:32:\"eeb930200e6a268707f1f5c208bc6aaf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6c5ec33b919d1bd1d63cf9bed6b060ad\";a:5:{s:6:\"source\";s:32:\"6c5ec33b919d1bd1d63cf9bed6b060ad\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"04de6e6f4a6fa2d9f7397b4cf6be808a\";a:5:{s:6:\"source\";s:32:\"04de6e6f4a6fa2d9f7397b4cf6be808a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"586e94f05f02669bbbedca39617d1d8a\";a:5:{s:6:\"source\";s:32:\"586e94f05f02669bbbedca39617d1d8a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ae86b97865433545e4087fdb13994707\";a:5:{s:6:\"source\";s:32:\"ae86b97865433545e4087fdb13994707\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fec8d66c527e90dc6bc432a580249daa\";a:5:{s:6:\"source\";s:32:\"fec8d66c527e90dc6bc432a580249daa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b6fdecfa8e4a544b62a22cfa0c441eb8\";a:5:{s:6:\"source\";s:32:\"b6fdecfa8e4a544b62a22cfa0c441eb8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"46278fc913d266d2a112a8c0ad2ddb46\";a:5:{s:6:\"source\";s:32:\"46278fc913d266d2a112a8c0ad2ddb46\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"48bc609ed1edd4f849b8acbdb67f7d8c\";a:5:{s:6:\"source\";s:32:\"48bc609ed1edd4f849b8acbdb67f7d8c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ba23071f422bee69cd5672cedcc8dcda\";a:5:{s:6:\"source\";s:32:\"ba23071f422bee69cd5672cedcc8dcda\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"24a06f4c299058bfc82a2afe223a336d\";a:5:{s:6:\"source\";s:32:\"24a06f4c299058bfc82a2afe223a336d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"78c97ee85e4c4cb31a48b94696f8f206\";a:5:{s:6:\"source\";s:32:\"78c97ee85e4c4cb31a48b94696f8f206\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ba5607f6e4e46f1aaeea2357eb15c5c0\";a:5:{s:6:\"source\";s:32:\"ba5607f6e4e46f1aaeea2357eb15c5c0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f45030fa6901e9c9e4a999a0ecc5ccd2\";a:5:{s:6:\"source\";s:32:\"f45030fa6901e9c9e4a999a0ecc5ccd2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"75348340e5f89e73494c510f4a0787dd\";a:5:{s:6:\"source\";s:32:\"75348340e5f89e73494c510f4a0787dd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7ac679f1ba3528fc4ba760adc4c98039\";a:5:{s:6:\"source\";s:32:\"7ac679f1ba3528fc4ba760adc4c98039\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4e8b537a623bfe141cdea4ebc1ab2b4a\";a:5:{s:6:\"source\";s:32:\"4e8b537a623bfe141cdea4ebc1ab2b4a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d10759d97d827f2e064019c1f3343707\";a:5:{s:6:\"source\";s:32:\"d10759d97d827f2e064019c1f3343707\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ece56bf6e349c34cc727e37fe70c4c6\";a:5:{s:6:\"source\";s:32:\"8ece56bf6e349c34cc727e37fe70c4c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7e982807aa9092ac867969bd5724d796\";a:5:{s:6:\"source\";s:32:\"7e982807aa9092ac867969bd5724d796\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"17cc3046bb144222fe9af1079754b6c1\";a:5:{s:6:\"source\";s:32:\"17cc3046bb144222fe9af1079754b6c1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"583cadfe716c6b6f2a88714d187a7cb5\";a:5:{s:6:\"source\";s:32:\"583cadfe716c6b6f2a88714d187a7cb5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"144e423210ecbe74dd3f217d9127214b\";a:5:{s:6:\"source\";s:32:\"144e423210ecbe74dd3f217d9127214b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f7ea936b215d50be6ec424b151298705\";a:5:{s:6:\"source\";s:32:\"f7ea936b215d50be6ec424b151298705\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fde368dce69ea5e10a82926eeba12fbc\";a:5:{s:6:\"source\";s:32:\"fde368dce69ea5e10a82926eeba12fbc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5932a7d13212ac5162487e56829946b9\";a:5:{s:6:\"source\";s:32:\"5932a7d13212ac5162487e56829946b9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bae1c8c6bc6f9aca854a21450a67a7da\";a:5:{s:6:\"source\";s:32:\"bae1c8c6bc6f9aca854a21450a67a7da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6ef76826839fb5bd4c19a0ceab557c06\";a:5:{s:6:\"source\";s:32:\"6ef76826839fb5bd4c19a0ceab557c06\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1e7debacc8dfdc794cd776d455efee42\";a:5:{s:6:\"source\";s:32:\"1e7debacc8dfdc794cd776d455efee42\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c5d704a14ca88a4199ade639227111b8\";a:5:{s:6:\"source\";s:32:\"c5d704a14ca88a4199ade639227111b8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"781e87c1f2e7b905b25a829050dc4fc8\";a:5:{s:6:\"source\";s:32:\"781e87c1f2e7b905b25a829050dc4fc8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"57736b1fe437fe6343156d07773edf55\";a:5:{s:6:\"source\";s:32:\"57736b1fe437fe6343156d07773edf55\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8fded1cc57c02ede6008c0533b336447\";a:5:{s:6:\"source\";s:32:\"8fded1cc57c02ede6008c0533b336447\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0f3728e4cd33cb01d1fa67ddeda4c7ce\";a:5:{s:6:\"source\";s:32:\"0f3728e4cd33cb01d1fa67ddeda4c7ce\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4b559c93d8c74d65679b5cece0f27d0b\";a:5:{s:6:\"source\";s:32:\"4b559c93d8c74d65679b5cece0f27d0b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"838b0d349a48b7cf82dc0841e8095f19\";a:5:{s:6:\"source\";s:32:\"838b0d349a48b7cf82dc0841e8095f19\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"31d4fb7f48b114b18c5e36699beecd07\";a:5:{s:6:\"source\";s:32:\"31d4fb7f48b114b18c5e36699beecd07\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"764ef99e9c617d7b371e634a195d0d8c\";a:5:{s:6:\"source\";s:32:\"764ef99e9c617d7b371e634a195d0d8c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"90949523d8352d2674f8541fccfc650d\";a:5:{s:6:\"source\";s:32:\"90949523d8352d2674f8541fccfc650d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"34dfe7e4769f2f3466e2a09c955ee3db\";a:5:{s:6:\"source\";s:32:\"34dfe7e4769f2f3466e2a09c955ee3db\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"98b93c650475a3e732fc03a7663f6f3e\";a:5:{s:6:\"source\";s:32:\"98b93c650475a3e732fc03a7663f6f3e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"df8d07a21d4441b33235939b701139d8\";a:5:{s:6:\"source\";s:32:\"df8d07a21d4441b33235939b701139d8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b22b3bf20d49f197271863e414597378\";a:5:{s:6:\"source\";s:32:\"b22b3bf20d49f197271863e414597378\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1fb5c28d88e06afa4a8f889b6c4b2d1b\";a:5:{s:6:\"source\";s:32:\"1fb5c28d88e06afa4a8f889b6c4b2d1b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c3a0493371dfb9d8f12973a2bf8cf406\";a:5:{s:6:\"source\";s:32:\"c3a0493371dfb9d8f12973a2bf8cf406\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1bff4ca93cd4eb8df881f95182f4f1bb\";a:5:{s:6:\"source\";s:32:\"1bff4ca93cd4eb8df881f95182f4f1bb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aba478f3e74aedb40adf4a6949e0d814\";a:5:{s:6:\"source\";s:32:\"aba478f3e74aedb40adf4a6949e0d814\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6eaf08dd270f66a1bd36e71db4497efe\";a:5:{s:6:\"source\";s:32:\"6eaf08dd270f66a1bd36e71db4497efe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"03003211ff00aa80b6c1f5f5731172dd\";a:5:{s:6:\"source\";s:32:\"03003211ff00aa80b6c1f5f5731172dd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"694839bbf825cc13a2b6c0e0ecefff11\";a:5:{s:6:\"source\";s:32:\"694839bbf825cc13a2b6c0e0ecefff11\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"22fbb4bd0f4fe023c549d83c2d0a489c\";a:5:{s:6:\"source\";s:32:\"22fbb4bd0f4fe023c549d83c2d0a489c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9926e9217409cc14988e374049429762\";a:5:{s:6:\"source\";s:32:\"9926e9217409cc14988e374049429762\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c0c47ba6e5e0bea83182330003cf13ca\";a:5:{s:6:\"source\";s:32:\"c0c47ba6e5e0bea83182330003cf13ca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4f643e5fa29658ea136d0dbf53c63249\";a:5:{s:6:\"source\";s:32:\"4f643e5fa29658ea136d0dbf53c63249\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"738531997c6f48c9fafcc10ae3b2200b\";a:5:{s:6:\"source\";s:32:\"738531997c6f48c9fafcc10ae3b2200b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3d38852f402a0363cb3d9dcebe330cc9\";a:5:{s:6:\"source\";s:32:\"3d38852f402a0363cb3d9dcebe330cc9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"70cca2a0164ded5937197522671a8c3f\";a:5:{s:6:\"source\";s:32:\"70cca2a0164ded5937197522671a8c3f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a38cc127171ca602fb4215af52a1a740\";a:5:{s:6:\"source\";s:32:\"a38cc127171ca602fb4215af52a1a740\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8aabcf89c6b8270c2ee30886d319096e\";a:5:{s:6:\"source\";s:32:\"8aabcf89c6b8270c2ee30886d319096e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3eced23c09a9cb15a191aa73c99894e9\";a:5:{s:6:\"source\";s:32:\"3eced23c09a9cb15a191aa73c99894e9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9008a871b22e4a6f0fe33af9eac7e78d\";a:5:{s:6:\"source\";s:32:\"9008a871b22e4a6f0fe33af9eac7e78d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"72ef7aa2dc3492f7c7ba739c27f943a0\";a:5:{s:6:\"source\";s:32:\"72ef7aa2dc3492f7c7ba739c27f943a0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d32f75bd250c022643efa15fc2ba8f0d\";a:5:{s:6:\"source\";s:32:\"d32f75bd250c022643efa15fc2ba8f0d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b5d0f6f7634fe7cdb7e4928e10f48561\";a:5:{s:6:\"source\";s:32:\"b5d0f6f7634fe7cdb7e4928e10f48561\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"19356dcb4c4a155d15a99a44a2e1c0c1\";a:5:{s:6:\"source\";s:32:\"19356dcb4c4a155d15a99a44a2e1c0c1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a149b5d1b78488559e10c82c83a4a090\";a:5:{s:6:\"source\";s:32:\"a149b5d1b78488559e10c82c83a4a090\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4468c4b1b8442a2dd60fc422a58646e4\";a:5:{s:6:\"source\";s:32:\"4468c4b1b8442a2dd60fc422a58646e4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fd089022f72bfe839c9d5efe0427c986\";a:5:{s:6:\"source\";s:32:\"fd089022f72bfe839c9d5efe0427c986\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9aa50555ce396ab40805e57cd4af77a0\";a:5:{s:6:\"source\";s:32:\"9aa50555ce396ab40805e57cd4af77a0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"010351d97294db50de353c57161150fb\";a:5:{s:6:\"source\";s:32:\"010351d97294db50de353c57161150fb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8444c3d1f542e47ee93666364f793aaa\";a:5:{s:6:\"source\";s:32:\"8444c3d1f542e47ee93666364f793aaa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7b782cc2c236fbf3ebc7cfb5df603daa\";a:5:{s:6:\"source\";s:32:\"7b782cc2c236fbf3ebc7cfb5df603daa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1302594302c0464727315937b47f3788\";a:5:{s:6:\"source\";s:32:\"1302594302c0464727315937b47f3788\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9dc336b71245bfd877d481e98c1f8ccb\";a:5:{s:6:\"source\";s:32:\"9dc336b71245bfd877d481e98c1f8ccb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"829c78e63850275db7c6f7aa79594c9d\";a:5:{s:6:\"source\";s:32:\"829c78e63850275db7c6f7aa79594c9d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e5da5d7bc626bd57b37e1f79df02b054\";a:5:{s:6:\"source\";s:32:\"e5da5d7bc626bd57b37e1f79df02b054\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"909f6d4f37fb736e46f0b98223313392\";a:5:{s:6:\"source\";s:32:\"909f6d4f37fb736e46f0b98223313392\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"41130b1b84614acb73ab125067af10fe\";a:5:{s:6:\"source\";s:32:\"41130b1b84614acb73ab125067af10fe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"29cdf7ae951aaa6c36684831d3f24bc7\";a:5:{s:6:\"source\";s:32:\"29cdf7ae951aaa6c36684831d3f24bc7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d149d82dac9646efe7e7d89c8e24cb47\";a:5:{s:6:\"source\";s:32:\"d149d82dac9646efe7e7d89c8e24cb47\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"798bea60c038eae89da56184bf47e98c\";a:5:{s:6:\"source\";s:32:\"798bea60c038eae89da56184bf47e98c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7a8ebe853e431c5070a43d3d8e2ea424\";a:5:{s:6:\"source\";s:32:\"7a8ebe853e431c5070a43d3d8e2ea424\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"701b96bf490b4071e2c45fa1176930d7\";a:5:{s:6:\"source\";s:32:\"701b96bf490b4071e2c45fa1176930d7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"45408620ce59b6fe22968ca2808d659e\";a:5:{s:6:\"source\";s:32:\"45408620ce59b6fe22968ca2808d659e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6e1fad03ebf1144a4719566268c43bb2\";a:5:{s:6:\"source\";s:32:\"6e1fad03ebf1144a4719566268c43bb2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bcde90a5fd7ebc256a689a5972af6e5f\";a:5:{s:6:\"source\";s:32:\"bcde90a5fd7ebc256a689a5972af6e5f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"213d5f867605ea8e74893795fd83d7d1\";a:5:{s:6:\"source\";s:32:\"213d5f867605ea8e74893795fd83d7d1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1cca5f1f21a9b05f91fb9dc6362cd95a\";a:5:{s:6:\"source\";s:32:\"1cca5f1f21a9b05f91fb9dc6362cd95a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"319fd7fdae6e8fc7c66a7d6a7e0a9aff\";a:5:{s:6:\"source\";s:32:\"319fd7fdae6e8fc7c66a7d6a7e0a9aff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fb1756b559d7db5438eac753d1238077\";a:5:{s:6:\"source\";s:32:\"fb1756b559d7db5438eac753d1238077\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4b834ba566f6aa3c328408c2fbd84efe\";a:5:{s:6:\"source\";s:32:\"4b834ba566f6aa3c328408c2fbd84efe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c2e046d27ce1f5caf66c65963cd72bd\";a:5:{s:6:\"source\";s:32:\"2c2e046d27ce1f5caf66c65963cd72bd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"80af4970033c58da2fd27f6547ca58e3\";a:5:{s:6:\"source\";s:32:\"80af4970033c58da2fd27f6547ca58e3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"092ebc4d7294710159514100c78645e1\";a:5:{s:6:\"source\";s:32:\"092ebc4d7294710159514100c78645e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6fb204b88d0d15cb90d89fcecacaa0e3\";a:5:{s:6:\"source\";s:32:\"6fb204b88d0d15cb90d89fcecacaa0e3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"070f317297f07db47f20bc6ee5b0c81c\";a:5:{s:6:\"source\";s:32:\"070f317297f07db47f20bc6ee5b0c81c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e6ffeaa71cacca614d6653302a6c6d21\";a:5:{s:6:\"source\";s:32:\"e6ffeaa71cacca614d6653302a6c6d21\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a6215fffd63d68fda5a6f8b41d4406c2\";a:5:{s:6:\"source\";s:32:\"a6215fffd63d68fda5a6f8b41d4406c2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e8b264c7935eac24a9f9d6cf9318feb6\";a:5:{s:6:\"source\";s:32:\"e8b264c7935eac24a9f9d6cf9318feb6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6d9c5dde8f500ce2ac4ff12aabdec287\";a:5:{s:6:\"source\";s:32:\"6d9c5dde8f500ce2ac4ff12aabdec287\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7bfeaa478db6cf530cd2b6fd0ef7fca5\";a:5:{s:6:\"source\";s:32:\"7bfeaa478db6cf530cd2b6fd0ef7fca5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4a2c55d27f162b4a944025c1eb20dea3\";a:5:{s:6:\"source\";s:32:\"4a2c55d27f162b4a944025c1eb20dea3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"57882dcd1b7b62fadfac11ebe9c87566\";a:5:{s:6:\"source\";s:32:\"57882dcd1b7b62fadfac11ebe9c87566\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c4ff7e59e3d278b76bf9386638a88bbf\";a:5:{s:6:\"source\";s:32:\"c4ff7e59e3d278b76bf9386638a88bbf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5074015f59b73b0565b26672689a1220\";a:5:{s:6:\"source\";s:32:\"5074015f59b73b0565b26672689a1220\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8aeb79e22567f47d5f7261ebc452fda2\";a:5:{s:6:\"source\";s:32:\"8aeb79e22567f47d5f7261ebc452fda2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f0785631d9f16fba451a9a7397f63dcf\";a:5:{s:6:\"source\";s:32:\"f0785631d9f16fba451a9a7397f63dcf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fdbad96a4c38ec303962a5789f8ecbb7\";a:5:{s:6:\"source\";s:32:\"fdbad96a4c38ec303962a5789f8ecbb7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a1c96090cfef93039e30d6c60cd4a5a4\";a:5:{s:6:\"source\";s:32:\"a1c96090cfef93039e30d6c60cd4a5a4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b77dc1e8d532328442e9d33d55ae9f61\";a:5:{s:6:\"source\";s:32:\"b77dc1e8d532328442e9d33d55ae9f61\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6bc3fdbae67be03e0eaab73f2285c244\";a:5:{s:6:\"source\";s:32:\"6bc3fdbae67be03e0eaab73f2285c244\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3bdb2f8ab300256ce73fadca580aacd3\";a:5:{s:6:\"source\";s:32:\"3bdb2f8ab300256ce73fadca580aacd3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"32727d3bbde97b975103394af027aaad\";a:5:{s:6:\"source\";s:32:\"32727d3bbde97b975103394af027aaad\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"12bc4329f791eb5d21fc8379ebd14af9\";a:5:{s:6:\"source\";s:32:\"12bc4329f791eb5d21fc8379ebd14af9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"422d1d570659ad59e9acf72612e1156d\";a:5:{s:6:\"source\";s:32:\"422d1d570659ad59e9acf72612e1156d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dbcb046e60db491bc888e064c1be7196\";a:5:{s:6:\"source\";s:32:\"dbcb046e60db491bc888e064c1be7196\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cef07ebd1b1dc720687b21de2b071f51\";a:5:{s:6:\"source\";s:32:\"cef07ebd1b1dc720687b21de2b071f51\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ae98e15fc77903bbaa635fdb07c8eb1a\";a:5:{s:6:\"source\";s:32:\"ae98e15fc77903bbaa635fdb07c8eb1a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"794a4eba4a7cc3919d7d48b0d4b4fea4\";a:5:{s:6:\"source\";s:32:\"794a4eba4a7cc3919d7d48b0d4b4fea4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4adcf184ce86bc6d57f1f031a4aa7262\";a:5:{s:6:\"source\";s:32:\"4adcf184ce86bc6d57f1f031a4aa7262\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"24869080462a5216b3f9afa49e876d1c\";a:5:{s:6:\"source\";s:32:\"24869080462a5216b3f9afa49e876d1c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1c1b5642863fadfdc9f27970f8a31cec\";a:5:{s:6:\"source\";s:32:\"1c1b5642863fadfdc9f27970f8a31cec\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cfbd3ec89342cb5e5a4de910d74bec09\";a:5:{s:6:\"source\";s:32:\"cfbd3ec89342cb5e5a4de910d74bec09\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"52c56989661f0113c337d89f1f825f9f\";a:5:{s:6:\"source\";s:32:\"52c56989661f0113c337d89f1f825f9f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4a465c57b4670ca151d4141550298733\";a:5:{s:6:\"source\";s:32:\"4a465c57b4670ca151d4141550298733\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7106c3de2002b151aaf153b9a14e7e76\";a:5:{s:6:\"source\";s:32:\"7106c3de2002b151aaf153b9a14e7e76\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5639cb6a4eaf76520e3036968f68c899\";a:5:{s:6:\"source\";s:32:\"5639cb6a4eaf76520e3036968f68c899\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4043dd4a55715a4d97be8a199dc57bd0\";a:5:{s:6:\"source\";s:32:\"4043dd4a55715a4d97be8a199dc57bd0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d8b256364b62f03d5ee14a911b49384b\";a:5:{s:6:\"source\";s:32:\"d8b256364b62f03d5ee14a911b49384b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d51e3e6c4be71a1a270048448f975e8f\";a:5:{s:6:\"source\";s:32:\"d51e3e6c4be71a1a270048448f975e8f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b0c672edffebde56ef36e0f608bc7cac\";a:5:{s:6:\"source\";s:32:\"b0c672edffebde56ef36e0f608bc7cac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9fdb0abbb756de1db25a5d8b1af0d72c\";a:5:{s:6:\"source\";s:32:\"9fdb0abbb756de1db25a5d8b1af0d72c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c2e54cc30bbb5e72cf127cb9aad1726d\";a:5:{s:6:\"source\";s:32:\"c2e54cc30bbb5e72cf127cb9aad1726d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7ce7fdb883b1d3c97ee3b00a8f956de7\";a:5:{s:6:\"source\";s:32:\"7ce7fdb883b1d3c97ee3b00a8f956de7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"12b31c856da6ccdaaeaa83040f371f30\";a:5:{s:6:\"source\";s:32:\"12b31c856da6ccdaaeaa83040f371f30\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0656eac054fb29d4caaaa0704582a73e\";a:5:{s:6:\"source\";s:32:\"0656eac054fb29d4caaaa0704582a73e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d184b44a99ae4fd8f76bca9b85d18c74\";a:5:{s:6:\"source\";s:32:\"d184b44a99ae4fd8f76bca9b85d18c74\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"90c2b47daa9be7cf45dbdb41712fec32\";a:5:{s:6:\"source\";s:32:\"90c2b47daa9be7cf45dbdb41712fec32\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ad12062ec312cc20f76e1f740a1ffff5\";a:5:{s:6:\"source\";s:32:\"ad12062ec312cc20f76e1f740a1ffff5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0fb17993b8449d934971524b5c4c7f81\";a:5:{s:6:\"source\";s:32:\"0fb17993b8449d934971524b5c4c7f81\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6084f31300f2605fd19c9635ccf8f4fa\";a:5:{s:6:\"source\";s:32:\"6084f31300f2605fd19c9635ccf8f4fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d8331a6c6bda077853da740152f9634d\";a:5:{s:6:\"source\";s:32:\"d8331a6c6bda077853da740152f9634d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4a84cfcd3eff124294449e2e2680d77d\";a:5:{s:6:\"source\";s:32:\"4a84cfcd3eff124294449e2e2680d77d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bb499c5d1b5d91df77caa369be1044ae\";a:5:{s:6:\"source\";s:32:\"bb499c5d1b5d91df77caa369be1044ae\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b7931e89f9526347514939886d0506fd\";a:5:{s:6:\"source\";s:32:\"b7931e89f9526347514939886d0506fd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"869d44279666bd29832981ad4f03da72\";a:5:{s:6:\"source\";s:32:\"869d44279666bd29832981ad4f03da72\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f0fd26cb617378960e219af51906125c\";a:5:{s:6:\"source\";s:32:\"f0fd26cb617378960e219af51906125c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2ab3e707be3017deed3232131cd6f0a9\";a:5:{s:6:\"source\";s:32:\"2ab3e707be3017deed3232131cd6f0a9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fd6160dd959ede3fedb834abb3300fcb\";a:5:{s:6:\"source\";s:32:\"fd6160dd959ede3fedb834abb3300fcb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0032d24695b8c3ba9783492c919f38fd\";a:5:{s:6:\"source\";s:32:\"0032d24695b8c3ba9783492c919f38fd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ac4080deecb0ec57a140c1c40e945aaa\";a:5:{s:6:\"source\";s:32:\"ac4080deecb0ec57a140c1c40e945aaa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0faf9bbd690a31cc30624393662c4b3a\";a:5:{s:6:\"source\";s:32:\"0faf9bbd690a31cc30624393662c4b3a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2318b7819cddfbd0a6f70a7fbba6ceb1\";a:5:{s:6:\"source\";s:32:\"2318b7819cddfbd0a6f70a7fbba6ceb1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d776e7178143a0f00faca37e234619f\";a:5:{s:6:\"source\";s:32:\"4d776e7178143a0f00faca37e234619f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7fdb39c3908403aa2e6b82c534acd317\";a:5:{s:6:\"source\";s:32:\"7fdb39c3908403aa2e6b82c534acd317\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a2a8e93c99d9f8c69ead284881a7d913\";a:5:{s:6:\"source\";s:32:\"a2a8e93c99d9f8c69ead284881a7d913\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1bb2c10f994354de91a1100fdcaa3d0f\";a:5:{s:6:\"source\";s:32:\"1bb2c10f994354de91a1100fdcaa3d0f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"320a652f34e17620161aa9a589b6ad9a\";a:5:{s:6:\"source\";s:32:\"320a652f34e17620161aa9a589b6ad9a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7bdb807ddb07161ca6f2796af8c372fd\";a:5:{s:6:\"source\";s:32:\"7bdb807ddb07161ca6f2796af8c372fd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a0eaf5cbddcac1f98d8505640f66ed5d\";a:5:{s:6:\"source\";s:32:\"a0eaf5cbddcac1f98d8505640f66ed5d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"22339609915d5f37b8610c8e417a6bea\";a:5:{s:6:\"source\";s:32:\"22339609915d5f37b8610c8e417a6bea\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c59956ec57488b03bb2413c771f755bc\";a:5:{s:6:\"source\";s:32:\"c59956ec57488b03bb2413c771f755bc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"73f9874452143c81bb6fdf5e79afc6b5\";a:5:{s:6:\"source\";s:32:\"73f9874452143c81bb6fdf5e79afc6b5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"893bfeb6e32eb7ee3ae9f0903cec3df6\";a:5:{s:6:\"source\";s:32:\"893bfeb6e32eb7ee3ae9f0903cec3df6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8182af403be3a7a01cf3ec5bd4a6fcda\";a:5:{s:6:\"source\";s:32:\"8182af403be3a7a01cf3ec5bd4a6fcda\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"03e93cc38cc19d696c4a7fb2f78645dc\";a:5:{s:6:\"source\";s:32:\"03e93cc38cc19d696c4a7fb2f78645dc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"63f50292bef1ac16015dec50b8017210\";a:5:{s:6:\"source\";s:32:\"63f50292bef1ac16015dec50b8017210\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9e5e416dad0a22b17f3dc0f75b6fa195\";a:5:{s:6:\"source\";s:32:\"9e5e416dad0a22b17f3dc0f75b6fa195\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ebb50a3593dc72b28648d3b31fdf2e92\";a:5:{s:6:\"source\";s:32:\"ebb50a3593dc72b28648d3b31fdf2e92\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e2360a9256e2cd0b53cb7a826aa845c7\";a:5:{s:6:\"source\";s:32:\"e2360a9256e2cd0b53cb7a826aa845c7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"15f5315556bf0c6341ec93b22dab1089\";a:5:{s:6:\"source\";s:32:\"15f5315556bf0c6341ec93b22dab1089\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ffaab6b62a95aa99aa5feffa243086e1\";a:5:{s:6:\"source\";s:32:\"ffaab6b62a95aa99aa5feffa243086e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cc1467210297cc2ae324d0a2d523f965\";a:5:{s:6:\"source\";s:32:\"cc1467210297cc2ae324d0a2d523f965\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0509a699e1898725203e76da56b8a10e\";a:5:{s:6:\"source\";s:32:\"0509a699e1898725203e76da56b8a10e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1905e15c5d6b0bc839fe008cc4813496\";a:5:{s:6:\"source\";s:32:\"1905e15c5d6b0bc839fe008cc4813496\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"072c8948b9c21eddc08d7f8da2c43a62\";a:5:{s:6:\"source\";s:32:\"072c8948b9c21eddc08d7f8da2c43a62\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"98e549df13aa4f9db3ae04f0e39426c6\";a:5:{s:6:\"source\";s:32:\"98e549df13aa4f9db3ae04f0e39426c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"63cf7ee3665a8a266cef70f790324619\";a:5:{s:6:\"source\";s:32:\"63cf7ee3665a8a266cef70f790324619\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3f364eac80f862ee88b1ef5d7f7ce49e\";a:5:{s:6:\"source\";s:32:\"3f364eac80f862ee88b1ef5d7f7ce49e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3bbf5b0564c7412dd212291e473a4395\";a:5:{s:6:\"source\";s:32:\"3bbf5b0564c7412dd212291e473a4395\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2fc24671462819f6757bd5eaf27d191e\";a:5:{s:6:\"source\";s:32:\"2fc24671462819f6757bd5eaf27d191e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"012ef95c3a68fd91f287cd7335b1617f\";a:5:{s:6:\"source\";s:32:\"012ef95c3a68fd91f287cd7335b1617f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"255b840cbb419e60d55b12d875875bab\";a:5:{s:6:\"source\";s:32:\"255b840cbb419e60d55b12d875875bab\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"62f955fb6dbf1f15407277269867b16c\";a:5:{s:6:\"source\";s:32:\"62f955fb6dbf1f15407277269867b16c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3ac2276087da813b9626a80d6b9bcdf7\";a:5:{s:6:\"source\";s:32:\"3ac2276087da813b9626a80d6b9bcdf7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5bc6edd2649f9dfe4f551dc081a41398\";a:5:{s:6:\"source\";s:32:\"5bc6edd2649f9dfe4f551dc081a41398\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"02c003ae1f6f8e456ff18c075d903457\";a:5:{s:6:\"source\";s:32:\"02c003ae1f6f8e456ff18c075d903457\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5bea16418db0db8c0a7a470da246e0f4\";a:5:{s:6:\"source\";s:32:\"5bea16418db0db8c0a7a470da246e0f4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"283dc734186b9856389b38c1d32eb545\";a:5:{s:6:\"source\";s:32:\"283dc734186b9856389b38c1d32eb545\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"91af3e4d5b0f157019915b33d2dc6edb\";a:5:{s:6:\"source\";s:32:\"91af3e4d5b0f157019915b33d2dc6edb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0ce84c76ef9722b8d54c698d8159ac4f\";a:5:{s:6:\"source\";s:32:\"0ce84c76ef9722b8d54c698d8159ac4f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9d2ef90eac688543aee608f6cd1757a8\";a:5:{s:6:\"source\";s:32:\"9d2ef90eac688543aee608f6cd1757a8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"63c80d5ae601eb984b32ccd02a558cd8\";a:5:{s:6:\"source\";s:32:\"63c80d5ae601eb984b32ccd02a558cd8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7abb76aca96905879f50359999f67682\";a:5:{s:6:\"source\";s:32:\"7abb76aca96905879f50359999f67682\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3f83a75d5a51254da7f0c1c0d84532a1\";a:5:{s:6:\"source\";s:32:\"3f83a75d5a51254da7f0c1c0d84532a1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a221a4440946ca2ce7fce54c6cd1431e\";a:5:{s:6:\"source\";s:32:\"a221a4440946ca2ce7fce54c6cd1431e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0aaf0ce00b023c125819a9619df76979\";a:5:{s:6:\"source\";s:32:\"0aaf0ce00b023c125819a9619df76979\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"342ec02326ad7717f1d09ece6681f433\";a:5:{s:6:\"source\";s:32:\"342ec02326ad7717f1d09ece6681f433\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d2b5c878c40951c082e4c65a1f1986b3\";a:5:{s:6:\"source\";s:32:\"d2b5c878c40951c082e4c65a1f1986b3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff480b5ae74895de8d52c6e49d8af292\";a:5:{s:6:\"source\";s:32:\"ff480b5ae74895de8d52c6e49d8af292\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fe2241297c7172afa07cca8a454a3ebf\";a:5:{s:6:\"source\";s:32:\"fe2241297c7172afa07cca8a454a3ebf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"81178c4268c596c245ae89ce383c1afb\";a:5:{s:6:\"source\";s:32:\"81178c4268c596c245ae89ce383c1afb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"be67f4293cc00e595e176c555b8395a6\";a:5:{s:6:\"source\";s:32:\"be67f4293cc00e595e176c555b8395a6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d4e6c010b83abe4f65740ee9458e408e\";a:5:{s:6:\"source\";s:32:\"d4e6c010b83abe4f65740ee9458e408e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9287c56d44c46002bb3ab5e35db340cb\";a:5:{s:6:\"source\";s:32:\"9287c56d44c46002bb3ab5e35db340cb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6d25c04f9a0ede749e0eaf12cfc10fa6\";a:5:{s:6:\"source\";s:32:\"6d25c04f9a0ede749e0eaf12cfc10fa6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1da46952f7f7848eb43f6f8e2f4baa88\";a:5:{s:6:\"source\";s:32:\"1da46952f7f7848eb43f6f8e2f4baa88\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fcc23183882a8b681954acdf443c70b0\";a:5:{s:6:\"source\";s:32:\"fcc23183882a8b681954acdf443c70b0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"22b58ec115b3eca4084848c7397bee14\";a:5:{s:6:\"source\";s:32:\"22b58ec115b3eca4084848c7397bee14\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"866bdceba021e5a16c37c8c7dce1f5b7\";a:5:{s:6:\"source\";s:32:\"866bdceba021e5a16c37c8c7dce1f5b7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ad36bf004c84f9e471c1e1da2d47e863\";a:5:{s:6:\"source\";s:32:\"ad36bf004c84f9e471c1e1da2d47e863\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"998cb96ad251454582a07ee52810cc73\";a:5:{s:6:\"source\";s:32:\"998cb96ad251454582a07ee52810cc73\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f1e38f6c7ebe5c8ef988aa20237b2522\";a:5:{s:6:\"source\";s:32:\"f1e38f6c7ebe5c8ef988aa20237b2522\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1d744677d902137741d9bfa77f5d19fe\";a:5:{s:6:\"source\";s:32:\"1d744677d902137741d9bfa77f5d19fe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"088026115b3b156aaa29dca34c0dc806\";a:5:{s:6:\"source\";s:32:\"088026115b3b156aaa29dca34c0dc806\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e0ddb2382b356c07eeaf451eeb7fb73b\";a:5:{s:6:\"source\";s:32:\"e0ddb2382b356c07eeaf451eeb7fb73b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"950310aedd70694b994e85fabc5952ac\";a:5:{s:6:\"source\";s:32:\"950310aedd70694b994e85fabc5952ac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"61ea5181b68a6297aeda0de22efdbd2c\";a:5:{s:6:\"source\";s:32:\"61ea5181b68a6297aeda0de22efdbd2c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6a13989fc530b8c99071c925425f451c\";a:5:{s:6:\"source\";s:32:\"6a13989fc530b8c99071c925425f451c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"daa9a039c36253151898074d11aaa6ac\";a:5:{s:6:\"source\";s:32:\"daa9a039c36253151898074d11aaa6ac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"13961bf32613dd2227bafa35e91bd60e\";a:5:{s:6:\"source\";s:32:\"13961bf32613dd2227bafa35e91bd60e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a30963dc28a4818fce57bf7bbaced49b\";a:5:{s:6:\"source\";s:32:\"a30963dc28a4818fce57bf7bbaced49b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"52a95a16a45e35c7bfe0e93e65909c1d\";a:5:{s:6:\"source\";s:32:\"52a95a16a45e35c7bfe0e93e65909c1d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"78d89ccfb8a95d8c46c094f7a890d90d\";a:5:{s:6:\"source\";s:32:\"78d89ccfb8a95d8c46c094f7a890d90d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"302804ea450627d54ce8d834a456d3b0\";a:5:{s:6:\"source\";s:32:\"302804ea450627d54ce8d834a456d3b0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef30ec3ec68d9bf934b6eca1aeddc7b7\";a:5:{s:6:\"source\";s:32:\"ef30ec3ec68d9bf934b6eca1aeddc7b7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9f62d09ff8585b4c899e2f5327f90c8d\";a:5:{s:6:\"source\";s:32:\"9f62d09ff8585b4c899e2f5327f90c8d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f2c4f01d6bfb57645c9bbc7c3962819\";a:5:{s:6:\"source\";s:32:\"7f2c4f01d6bfb57645c9bbc7c3962819\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"504ad7f2e8bef345e6139c404f1910b7\";a:5:{s:6:\"source\";s:32:\"504ad7f2e8bef345e6139c404f1910b7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e94b5df0271313ac3d13b93e88fe1cd3\";a:5:{s:6:\"source\";s:32:\"e94b5df0271313ac3d13b93e88fe1cd3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b79d3bfd70aea33c99e26c67cf8ecaeb\";a:5:{s:6:\"source\";s:32:\"b79d3bfd70aea33c99e26c67cf8ecaeb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3361ff0b15d55134a53fdc27cd05664f\";a:5:{s:6:\"source\";s:32:\"3361ff0b15d55134a53fdc27cd05664f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"67cecfde5e0ebd81f95b15fe37770fd4\";a:5:{s:6:\"source\";s:32:\"67cecfde5e0ebd81f95b15fe37770fd4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"606d0a62261cf5ef01d32970b7c5cd01\";a:5:{s:6:\"source\";s:32:\"606d0a62261cf5ef01d32970b7c5cd01\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"58ad554e490b0b146978a0ab9e82db52\";a:5:{s:6:\"source\";s:32:\"58ad554e490b0b146978a0ab9e82db52\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f336b242f88d71668b1000cf1128bb66\";a:5:{s:6:\"source\";s:32:\"f336b242f88d71668b1000cf1128bb66\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3d775a2f7cc60e86b0ca39a11cb2130d\";a:5:{s:6:\"source\";s:32:\"3d775a2f7cc60e86b0ca39a11cb2130d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"68a1d4cd6df10908dc48b04c044f59e6\";a:5:{s:6:\"source\";s:32:\"68a1d4cd6df10908dc48b04c044f59e6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"102fe82d116944f30257c594da6a7c56\";a:5:{s:6:\"source\";s:32:\"102fe82d116944f30257c594da6a7c56\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"acbcd30b4a9c66ff6263c0d324f7151c\";a:5:{s:6:\"source\";s:32:\"acbcd30b4a9c66ff6263c0d324f7151c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d826905a67c164fbd5d4073406747c92\";a:5:{s:6:\"source\";s:32:\"d826905a67c164fbd5d4073406747c92\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bdf70394495c3f824b91155b2e13e85b\";a:5:{s:6:\"source\";s:32:\"bdf70394495c3f824b91155b2e13e85b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ea0e5d95d26414dc5cd76e2c7ea5d1a1\";a:5:{s:6:\"source\";s:32:\"ea0e5d95d26414dc5cd76e2c7ea5d1a1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d56ae403269d8888e935358edb56bff2\";a:5:{s:6:\"source\";s:32:\"d56ae403269d8888e935358edb56bff2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c76a7914b513d898aa0ba6c3ab5f1548\";a:5:{s:6:\"source\";s:32:\"c76a7914b513d898aa0ba6c3ab5f1548\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fade5a5ee3d4d0cce6b762a2b85e8e92\";a:5:{s:6:\"source\";s:32:\"fade5a5ee3d4d0cce6b762a2b85e8e92\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a85a577c3fe07fbeaa0c39fbad313606\";a:5:{s:6:\"source\";s:32:\"a85a577c3fe07fbeaa0c39fbad313606\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b1a749d1bb2634dc427c7f0312f7bfaa\";a:5:{s:6:\"source\";s:32:\"b1a749d1bb2634dc427c7f0312f7bfaa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d5628f55315ba888c21bcbe87cc17be2\";a:5:{s:6:\"source\";s:32:\"d5628f55315ba888c21bcbe87cc17be2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"38442ba1299706c50a63a989e5b086da\";a:5:{s:6:\"source\";s:32:\"38442ba1299706c50a63a989e5b086da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"89f710f1db9b71c71062b6b125106560\";a:5:{s:6:\"source\";s:32:\"89f710f1db9b71c71062b6b125106560\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a1a8f218355605d96aa5acf1f23c55c2\";a:5:{s:6:\"source\";s:32:\"a1a8f218355605d96aa5acf1f23c55c2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5423929b863b360ad1808ae4b1ee3b2e\";a:5:{s:6:\"source\";s:32:\"5423929b863b360ad1808ae4b1ee3b2e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dc195fc3fd125e0f57d7903599e7d15c\";a:5:{s:6:\"source\";s:32:\"dc195fc3fd125e0f57d7903599e7d15c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"048d8665482e2b6e082b410b461ad79f\";a:5:{s:6:\"source\";s:32:\"048d8665482e2b6e082b410b461ad79f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"227e39a87bfef57442fa0f180ed6ce52\";a:5:{s:6:\"source\";s:32:\"227e39a87bfef57442fa0f180ed6ce52\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c204111718ebba913606faf404a446b4\";a:5:{s:6:\"source\";s:32:\"c204111718ebba913606faf404a446b4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ffe29acfdd7bd174996f22aaf2aa3924\";a:5:{s:6:\"source\";s:32:\"ffe29acfdd7bd174996f22aaf2aa3924\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0a0bf167a242c7afa3a39cbdfb48ea5d\";a:5:{s:6:\"source\";s:32:\"0a0bf167a242c7afa3a39cbdfb48ea5d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"39737f0c3203e63a80e6256f4b0eb756\";a:5:{s:6:\"source\";s:32:\"39737f0c3203e63a80e6256f4b0eb756\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"99ad861b4e9b90aaa32e9af9a2794479\";a:5:{s:6:\"source\";s:32:\"99ad861b4e9b90aaa32e9af9a2794479\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"04fb928636951c90c163de3899e2bffb\";a:5:{s:6:\"source\";s:32:\"04fb928636951c90c163de3899e2bffb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bc65f91f38843f116b7fa1d3c3a02aaf\";a:5:{s:6:\"source\";s:32:\"bc65f91f38843f116b7fa1d3c3a02aaf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6f662d43aaf43ad482c7be345de2d7fe\";a:5:{s:6:\"source\";s:32:\"6f662d43aaf43ad482c7be345de2d7fe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4e10e9b1b75b3fe3b1fe8427c1861eac\";a:5:{s:6:\"source\";s:32:\"4e10e9b1b75b3fe3b1fe8427c1861eac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1cbf089a88830334068d37614ae4647c\";a:5:{s:6:\"source\";s:32:\"1cbf089a88830334068d37614ae4647c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"78f64f7a8b872595411fd9410e17a6cc\";a:5:{s:6:\"source\";s:32:\"78f64f7a8b872595411fd9410e17a6cc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9747e6b1b1368e4c97761c4a79892ea9\";a:5:{s:6:\"source\";s:32:\"9747e6b1b1368e4c97761c4a79892ea9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ed6b0df7ad3a8a5448a5ac3e311ffff9\";a:5:{s:6:\"source\";s:32:\"ed6b0df7ad3a8a5448a5ac3e311ffff9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"230506fccec19ed3f094b4098b3fea99\";a:5:{s:6:\"source\";s:32:\"230506fccec19ed3f094b4098b3fea99\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"13f7b775ecbd3963f7589bc133b9657c\";a:5:{s:6:\"source\";s:32:\"13f7b775ecbd3963f7589bc133b9657c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef9bc85d55df08eee965025baab114c3\";a:5:{s:6:\"source\";s:32:\"ef9bc85d55df08eee965025baab114c3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7dc7b8b9f59d1a8964e1ba2011ca349e\";a:5:{s:6:\"source\";s:32:\"7dc7b8b9f59d1a8964e1ba2011ca349e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c438f4bd03c524e26876a093fddc478d\";a:5:{s:6:\"source\";s:32:\"c438f4bd03c524e26876a093fddc478d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d37eb1a8aa13f77f26d17a09c94fcd9\";a:5:{s:6:\"source\";s:32:\"4d37eb1a8aa13f77f26d17a09c94fcd9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3fb403f19c7d830c78f0a24ab14e867d\";a:5:{s:6:\"source\";s:32:\"3fb403f19c7d830c78f0a24ab14e867d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1919fb83d675d2c5428d4981698fd7d2\";a:5:{s:6:\"source\";s:32:\"1919fb83d675d2c5428d4981698fd7d2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0260393ecd0c342c45332a41b13ae789\";a:5:{s:6:\"source\";s:32:\"0260393ecd0c342c45332a41b13ae789\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e98384650451f8a33dff153ea7114ac6\";a:5:{s:6:\"source\";s:32:\"e98384650451f8a33dff153ea7114ac6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"554f5d0b8562dbdb46bdf57c13fe76ed\";a:5:{s:6:\"source\";s:32:\"554f5d0b8562dbdb46bdf57c13fe76ed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"168b1c51a75d485400d258f38e98bf47\";a:5:{s:6:\"source\";s:32:\"168b1c51a75d485400d258f38e98bf47\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"de81ca73744c2be3d1df091b1c8f6b3c\";a:5:{s:6:\"source\";s:32:\"de81ca73744c2be3d1df091b1c8f6b3c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2e7203ded3be3dc99b051d3507f5aff0\";a:5:{s:6:\"source\";s:32:\"2e7203ded3be3dc99b051d3507f5aff0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c96deab52eec999a6dffbb11a6aeaeb9\";a:5:{s:6:\"source\";s:32:\"c96deab52eec999a6dffbb11a6aeaeb9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c1b4cc43c3f9f19a6d17bbab58c9ec39\";a:5:{s:6:\"source\";s:32:\"c1b4cc43c3f9f19a6d17bbab58c9ec39\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5891ead0ae6fcd411bbed5f79f8fd6d8\";a:5:{s:6:\"source\";s:32:\"5891ead0ae6fcd411bbed5f79f8fd6d8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"23176ae3f3aca2aec3bc08dc1d02f9fa\";a:5:{s:6:\"source\";s:32:\"23176ae3f3aca2aec3bc08dc1d02f9fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b75681f04aa70725dcee3ab4b875c7ee\";a:5:{s:6:\"source\";s:32:\"b75681f04aa70725dcee3ab4b875c7ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6733ce53dcb50aa6517e33afe6128693\";a:5:{s:6:\"source\";s:32:\"6733ce53dcb50aa6517e33afe6128693\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c9f970209bd578000c91854280f2fb4\";a:5:{s:6:\"source\";s:32:\"3c9f970209bd578000c91854280f2fb4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"92806942e8af7d067819808c012734ec\";a:5:{s:6:\"source\";s:32:\"92806942e8af7d067819808c012734ec\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"46526f8ad17127a73ce3c9a3dc62b02b\";a:5:{s:6:\"source\";s:32:\"46526f8ad17127a73ce3c9a3dc62b02b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff7ef0686dbae7dd47b6f6f08c9b1be6\";a:5:{s:6:\"source\";s:32:\"ff7ef0686dbae7dd47b6f6f08c9b1be6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"345fbd7cb6cdbfc72c7188bca7d7664f\";a:5:{s:6:\"source\";s:32:\"345fbd7cb6cdbfc72c7188bca7d7664f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4cf2de4a2120b351ad5dfc264b2040d2\";a:5:{s:6:\"source\";s:32:\"4cf2de4a2120b351ad5dfc264b2040d2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e78ecfc82cb2d65d4b3f1b60ea1407c0\";a:5:{s:6:\"source\";s:32:\"e78ecfc82cb2d65d4b3f1b60ea1407c0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fc5ed25538fc91a012f552e2b1d6f5e0\";a:5:{s:6:\"source\";s:32:\"fc5ed25538fc91a012f552e2b1d6f5e0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"072efb2352e297962c5ba33fe7695cac\";a:5:{s:6:\"source\";s:32:\"072efb2352e297962c5ba33fe7695cac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9a3c502b8e6f131a7ccd8c00428d479b\";a:5:{s:6:\"source\";s:32:\"9a3c502b8e6f131a7ccd8c00428d479b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d59f11d767d378565e40e95d6a07bbb7\";a:5:{s:6:\"source\";s:32:\"d59f11d767d378565e40e95d6a07bbb7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3077c98fcb92bd5384790378db93cf06\";a:5:{s:6:\"source\";s:32:\"3077c98fcb92bd5384790378db93cf06\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"73826c1ba27725daf035f6c0108b3a86\";a:5:{s:6:\"source\";s:32:\"73826c1ba27725daf035f6c0108b3a86\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bee083e930ff4addd8fb6952788edcad\";a:5:{s:6:\"source\";s:32:\"bee083e930ff4addd8fb6952788edcad\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f63b375b2ef5c8f2c61549b39f2ba8f2\";a:5:{s:6:\"source\";s:32:\"f63b375b2ef5c8f2c61549b39f2ba8f2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6df71136dae3f0b995a07ef8c6d7a076\";a:5:{s:6:\"source\";s:32:\"6df71136dae3f0b995a07ef8c6d7a076\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"661100777be4a6408abefc7d7439064e\";a:5:{s:6:\"source\";s:32:\"661100777be4a6408abefc7d7439064e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9f63a2f2c0250e2fcae0d45f47c72a2e\";a:5:{s:6:\"source\";s:32:\"9f63a2f2c0250e2fcae0d45f47c72a2e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aaaeaa54838e0e3fb57fad4ff6bcddb8\";a:5:{s:6:\"source\";s:32:\"aaaeaa54838e0e3fb57fad4ff6bcddb8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3157b83df9e82c92fcacb6918875ca3b\";a:5:{s:6:\"source\";s:32:\"3157b83df9e82c92fcacb6918875ca3b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"075b7709af4747b2a17c22f5fb674054\";a:5:{s:6:\"source\";s:32:\"075b7709af4747b2a17c22f5fb674054\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"78bcba7c2212aa2b8407cff53a0c8b55\";a:5:{s:6:\"source\";s:32:\"78bcba7c2212aa2b8407cff53a0c8b55\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6bcaf69430c066812c15c1f6ec6e93b2\";a:5:{s:6:\"source\";s:32:\"6bcaf69430c066812c15c1f6ec6e93b2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"74c29806cfba376746a115253835b461\";a:5:{s:6:\"source\";s:32:\"74c29806cfba376746a115253835b461\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"01f5459d26492ab2192492ea783ed250\";a:5:{s:6:\"source\";s:32:\"01f5459d26492ab2192492ea783ed250\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"522347b6bef2d55cc22e897d9c1753e1\";a:5:{s:6:\"source\";s:32:\"522347b6bef2d55cc22e897d9c1753e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cda5bfed7e9b2760ccedb1864a76cf15\";a:5:{s:6:\"source\";s:32:\"cda5bfed7e9b2760ccedb1864a76cf15\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b1664563305e8caa819af3f67081ad71\";a:5:{s:6:\"source\";s:32:\"b1664563305e8caa819af3f67081ad71\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cf4bbc113abaca459b477479722ede08\";a:5:{s:6:\"source\";s:32:\"cf4bbc113abaca459b477479722ede08\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"13775cba9224e70374efdba8251551db\";a:5:{s:6:\"source\";s:32:\"13775cba9224e70374efdba8251551db\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a81a0d06b17440e09aa7cf87822ab2d9\";a:5:{s:6:\"source\";s:32:\"a81a0d06b17440e09aa7cf87822ab2d9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b9810b9936f6c67f65053d151d6c3087\";a:5:{s:6:\"source\";s:32:\"b9810b9936f6c67f65053d151d6c3087\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5bba38730347095a80436141505ac2eb\";a:5:{s:6:\"source\";s:32:\"5bba38730347095a80436141505ac2eb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0b574b6b7530e7d855c539e7c559af68\";a:5:{s:6:\"source\";s:32:\"0b574b6b7530e7d855c539e7c559af68\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5533ba13d5f98e9c4639f80dc8583253\";a:5:{s:6:\"source\";s:32:\"5533ba13d5f98e9c4639f80dc8583253\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a86e5e749dbd1185eba4fc307b925ff\";a:5:{s:6:\"source\";s:32:\"8a86e5e749dbd1185eba4fc307b925ff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1722330030ad38b4c6e1859f6a537d7f\";a:5:{s:6:\"source\";s:32:\"1722330030ad38b4c6e1859f6a537d7f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d77a9f31071352926c56edc20965299f\";a:5:{s:6:\"source\";s:32:\"d77a9f31071352926c56edc20965299f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c7141d1e88fdcb38a1c5e7ba3226e505\";a:5:{s:6:\"source\";s:32:\"c7141d1e88fdcb38a1c5e7ba3226e505\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"198b0d665516a0d49338a2572e43987a\";a:5:{s:6:\"source\";s:32:\"198b0d665516a0d49338a2572e43987a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0b9cdd6f27b227770e7185e8a16271b5\";a:5:{s:6:\"source\";s:32:\"0b9cdd6f27b227770e7185e8a16271b5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"350e8359fe19c66eb1d15a014c6f1d68\";a:5:{s:6:\"source\";s:32:\"350e8359fe19c66eb1d15a014c6f1d68\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a9281d32d930031e9f5a7ed9c3f04c8f\";a:5:{s:6:\"source\";s:32:\"a9281d32d930031e9f5a7ed9c3f04c8f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"28b126ae7315bc5df2df07500410af90\";a:5:{s:6:\"source\";s:32:\"28b126ae7315bc5df2df07500410af90\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d0394a43e8e88c188d3b48d6aaf20fbf\";a:5:{s:6:\"source\";s:32:\"d0394a43e8e88c188d3b48d6aaf20fbf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0490d1c3eba7737a4c337a3b315cf710\";a:5:{s:6:\"source\";s:32:\"0490d1c3eba7737a4c337a3b315cf710\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4c5c66de2b45cdf900fb52acd043f70d\";a:5:{s:6:\"source\";s:32:\"4c5c66de2b45cdf900fb52acd043f70d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"222092ec1eebd601a1b9ce8da16e0153\";a:5:{s:6:\"source\";s:32:\"222092ec1eebd601a1b9ce8da16e0153\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c056c20872c04e14c963988450fbc839\";a:5:{s:6:\"source\";s:32:\"c056c20872c04e14c963988450fbc839\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8d03613a210e02e143199fe5bf43c3eb\";a:5:{s:6:\"source\";s:32:\"8d03613a210e02e143199fe5bf43c3eb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c7519ce8a1ddefd8e5431846eef2c704\";a:5:{s:6:\"source\";s:32:\"c7519ce8a1ddefd8e5431846eef2c704\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"536ef5257ec1a157651094e21eb5750d\";a:5:{s:6:\"source\";s:32:\"536ef5257ec1a157651094e21eb5750d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"affe5153b5e1ea78bfa440d05a14bf2f\";a:5:{s:6:\"source\";s:32:\"affe5153b5e1ea78bfa440d05a14bf2f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"919e2896c66221857fdd04bbcdc7e503\";a:5:{s:6:\"source\";s:32:\"919e2896c66221857fdd04bbcdc7e503\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f0b07b933ebeef199c697b71c4c990f6\";a:5:{s:6:\"source\";s:32:\"f0b07b933ebeef199c697b71c4c990f6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2211f849ddeb70db3b040b09943ee21b\";a:5:{s:6:\"source\";s:32:\"2211f849ddeb70db3b040b09943ee21b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"81ee026fe24e58316682175efcc318bb\";a:5:{s:6:\"source\";s:32:\"81ee026fe24e58316682175efcc318bb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"47e50b3bf6f9c302badbc21d1df93183\";a:5:{s:6:\"source\";s:32:\"47e50b3bf6f9c302badbc21d1df93183\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0e5a71db22cbd4766b5ef9fc8a47849a\";a:5:{s:6:\"source\";s:32:\"0e5a71db22cbd4766b5ef9fc8a47849a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c32f4c134f91990672c4de523beab989\";a:5:{s:6:\"source\";s:32:\"c32f4c134f91990672c4de523beab989\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3be17d624a7bc09baca5105c96c1c8ad\";a:5:{s:6:\"source\";s:32:\"3be17d624a7bc09baca5105c96c1c8ad\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a066cd28c282a7ac3d83252e3dadc4da\";a:5:{s:6:\"source\";s:32:\"a066cd28c282a7ac3d83252e3dadc4da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"062025ec3bb0081233d505c054167074\";a:5:{s:6:\"source\";s:32:\"062025ec3bb0081233d505c054167074\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2e313fa333834e8549430d699825198b\";a:5:{s:6:\"source\";s:32:\"2e313fa333834e8549430d699825198b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"26cfd01ed311c042dd88e0fe1cc5f538\";a:5:{s:6:\"source\";s:32:\"26cfd01ed311c042dd88e0fe1cc5f538\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"49b1197607f4a075ee1eab1441b0b3db\";a:5:{s:6:\"source\";s:32:\"49b1197607f4a075ee1eab1441b0b3db\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5cce0071226d40eed03ede6ee815ae59\";a:5:{s:6:\"source\";s:32:\"5cce0071226d40eed03ede6ee815ae59\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fa0affa1ee666884db69ac7a5940824a\";a:5:{s:6:\"source\";s:32:\"fa0affa1ee666884db69ac7a5940824a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7c81b8b58ded3bc33d6ba378120e5d57\";a:5:{s:6:\"source\";s:32:\"7c81b8b58ded3bc33d6ba378120e5d57\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"11c89c584e37f71f07e203545be14c46\";a:5:{s:6:\"source\";s:32:\"11c89c584e37f71f07e203545be14c46\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9beea7df2a487ad5bcb59ffed14c453f\";a:5:{s:6:\"source\";s:32:\"9beea7df2a487ad5bcb59ffed14c453f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ce3a9f17a5284ecf546fd1250e99de92\";a:5:{s:6:\"source\";s:32:\"ce3a9f17a5284ecf546fd1250e99de92\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c5454c092c63f57d0deab091f1ec6cf\";a:5:{s:6:\"source\";s:32:\"3c5454c092c63f57d0deab091f1ec6cf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e59144ba9d6b70f86054bdbdcb433410\";a:5:{s:6:\"source\";s:32:\"e59144ba9d6b70f86054bdbdcb433410\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"732347764453c06abb1549562a073eff\";a:5:{s:6:\"source\";s:32:\"732347764453c06abb1549562a073eff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d78eafc0cfb5e14b59fd810a2bf38657\";a:5:{s:6:\"source\";s:32:\"d78eafc0cfb5e14b59fd810a2bf38657\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"85ffd4563e49e02c76e6f13bd5878ea6\";a:5:{s:6:\"source\";s:32:\"85ffd4563e49e02c76e6f13bd5878ea6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9464533a5f16697a4645e511ddd07985\";a:5:{s:6:\"source\";s:32:\"9464533a5f16697a4645e511ddd07985\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e181479d7c5a931e5874a12e3f91b50a\";a:5:{s:6:\"source\";s:32:\"e181479d7c5a931e5874a12e3f91b50a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c269c392e208a75d1937f1f5058e2a86\";a:5:{s:6:\"source\";s:32:\"c269c392e208a75d1937f1f5058e2a86\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dba36cd3aad1fe67352a0d9046ec7ece\";a:5:{s:6:\"source\";s:32:\"dba36cd3aad1fe67352a0d9046ec7ece\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"94888ab865874fc0ccc92de3324e2752\";a:5:{s:6:\"source\";s:32:\"94888ab865874fc0ccc92de3324e2752\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5de6c23492bb74faab98088597376fbf\";a:5:{s:6:\"source\";s:32:\"5de6c23492bb74faab98088597376fbf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9a457e69a35422b5e7b4c6c59fba64d4\";a:5:{s:6:\"source\";s:32:\"9a457e69a35422b5e7b4c6c59fba64d4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"22f98e151760300dd068197a3b49dc3d\";a:5:{s:6:\"source\";s:32:\"22f98e151760300dd068197a3b49dc3d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0cdef49ed5cba897abd67dda59b49d07\";a:5:{s:6:\"source\";s:32:\"0cdef49ed5cba897abd67dda59b49d07\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"32f175e09b904493c6eba2b4b3a9cbb8\";a:5:{s:6:\"source\";s:32:\"32f175e09b904493c6eba2b4b3a9cbb8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6c09f083eed16337d14758c5f1648b47\";a:5:{s:6:\"source\";s:32:\"6c09f083eed16337d14758c5f1648b47\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d92da1c547cdf23c654c5c9f7d6c92d0\";a:5:{s:6:\"source\";s:32:\"d92da1c547cdf23c654c5c9f7d6c92d0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d478673c284eca2ba11fcc79515c1377\";a:5:{s:6:\"source\";s:32:\"d478673c284eca2ba11fcc79515c1377\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f367a90675d064ba47855682b358c13b\";a:5:{s:6:\"source\";s:32:\"f367a90675d064ba47855682b358c13b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cd19f5285f607d7af09985879eab5772\";a:5:{s:6:\"source\";s:32:\"cd19f5285f607d7af09985879eab5772\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b9d15309c5f5a4d804ea4a09de243e5c\";a:5:{s:6:\"source\";s:32:\"b9d15309c5f5a4d804ea4a09de243e5c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"afb352ccf185935e5a72911fd6cc7d8a\";a:5:{s:6:\"source\";s:32:\"afb352ccf185935e5a72911fd6cc7d8a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9e93ac1a7c97093c7e3c5e5671dcdb4c\";a:5:{s:6:\"source\";s:32:\"9e93ac1a7c97093c7e3c5e5671dcdb4c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e26e83d1d9982fc1f52ab21761b92863\";a:5:{s:6:\"source\";s:32:\"e26e83d1d9982fc1f52ab21761b92863\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7d42dbc306869a431bfcde72112952f5\";a:5:{s:6:\"source\";s:32:\"7d42dbc306869a431bfcde72112952f5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f3206268d708c8bc88343fb30747527b\";a:5:{s:6:\"source\";s:32:\"f3206268d708c8bc88343fb30747527b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d88f7641aca9af0f3c545fb0ff92a371\";a:5:{s:6:\"source\";s:32:\"d88f7641aca9af0f3c545fb0ff92a371\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"97ea8b53c072bba51f1aa1a8d745832e\";a:5:{s:6:\"source\";s:32:\"97ea8b53c072bba51f1aa1a8d745832e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"70aeaa32f5c74f642cd9083d0cd77f45\";a:5:{s:6:\"source\";s:32:\"70aeaa32f5c74f642cd9083d0cd77f45\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d1ef7e87c35f57cf8cada0ac86c9921d\";a:5:{s:6:\"source\";s:32:\"d1ef7e87c35f57cf8cada0ac86c9921d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c188811f923cf19b13040c413600168f\";a:5:{s:6:\"source\";s:32:\"c188811f923cf19b13040c413600168f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7bbbfb5c5c1e62171d93e401efd11d3e\";a:5:{s:6:\"source\";s:32:\"7bbbfb5c5c1e62171d93e401efd11d3e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cc161afa38c2b467829dc2f9aeb553c0\";a:5:{s:6:\"source\";s:32:\"cc161afa38c2b467829dc2f9aeb553c0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2046e8970feeccbd563a4a134868a6e2\";a:5:{s:6:\"source\";s:32:\"2046e8970feeccbd563a4a134868a6e2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"19ebc0ed60a278bb9dac54a37bdd6363\";a:5:{s:6:\"source\";s:32:\"19ebc0ed60a278bb9dac54a37bdd6363\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"69a7eabc25a20f174cbacc990ea949c0\";a:5:{s:6:\"source\";s:32:\"69a7eabc25a20f174cbacc990ea949c0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"70f1b2d38a9dc03346436e51531856e8\";a:5:{s:6:\"source\";s:32:\"70f1b2d38a9dc03346436e51531856e8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fca7566c2ffd5e6853dd8d3a7b1f3e49\";a:5:{s:6:\"source\";s:32:\"fca7566c2ffd5e6853dd8d3a7b1f3e49\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"18d715522949e92f9b00f4cf114c3818\";a:5:{s:6:\"source\";s:32:\"18d715522949e92f9b00f4cf114c3818\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dc9e13bbe8d909afa4124e5966fedd78\";a:5:{s:6:\"source\";s:32:\"dc9e13bbe8d909afa4124e5966fedd78\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e65b8377028fcc88548d5cbc38ed1b0d\";a:5:{s:6:\"source\";s:32:\"e65b8377028fcc88548d5cbc38ed1b0d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"43a35288805b9fa68c181eeefedacace\";a:5:{s:6:\"source\";s:32:\"43a35288805b9fa68c181eeefedacace\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1640f4b589015d6f3c4dab005d32705f\";a:5:{s:6:\"source\";s:32:\"1640f4b589015d6f3c4dab005d32705f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"107cf9a8275cabd05c54b4effa41d245\";a:5:{s:6:\"source\";s:32:\"107cf9a8275cabd05c54b4effa41d245\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e47dda6e5ca5a4a453c5897204bd644a\";a:5:{s:6:\"source\";s:32:\"e47dda6e5ca5a4a453c5897204bd644a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"98f640424bf9d2363a23358940f45db2\";a:5:{s:6:\"source\";s:32:\"98f640424bf9d2363a23358940f45db2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eeb10bd57af987e8fd8070a9e3f1c9a5\";a:5:{s:6:\"source\";s:32:\"eeb10bd57af987e8fd8070a9e3f1c9a5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"34210c5cc567d6f4f799a2a691addb08\";a:5:{s:6:\"source\";s:32:\"34210c5cc567d6f4f799a2a691addb08\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d387778f87e9e0b5a864d11aed51fc0e\";a:5:{s:6:\"source\";s:32:\"d387778f87e9e0b5a864d11aed51fc0e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"38b075c9783c466efe35fe4705508f66\";a:5:{s:6:\"source\";s:32:\"38b075c9783c466efe35fe4705508f66\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c0309e1ac703f80d26e5d40d669a90de\";a:5:{s:6:\"source\";s:32:\"c0309e1ac703f80d26e5d40d669a90de\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"101cdbdc0701b659756c9b35ffd963e4\";a:5:{s:6:\"source\";s:32:\"101cdbdc0701b659756c9b35ffd963e4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c8eeeed4ba879167e5504761807f565b\";a:5:{s:6:\"source\";s:32:\"c8eeeed4ba879167e5504761807f565b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"84303a0a7c06ab2b69f4c76b7f97333a\";a:5:{s:6:\"source\";s:32:\"84303a0a7c06ab2b69f4c76b7f97333a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ffa503ff3d1322ce1272ef5e80fff8e\";a:5:{s:6:\"source\";s:32:\"8ffa503ff3d1322ce1272ef5e80fff8e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5ebea925a42ead9f1adbdc815110c631\";a:5:{s:6:\"source\";s:32:\"5ebea925a42ead9f1adbdc815110c631\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6d90167614bec72e3b9b20c2bc3a455b\";a:5:{s:6:\"source\";s:32:\"6d90167614bec72e3b9b20c2bc3a455b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"028f457d722e5f6a3419a65d6540b5a6\";a:5:{s:6:\"source\";s:32:\"028f457d722e5f6a3419a65d6540b5a6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"03e1b41d811c797866454daf9f07960f\";a:5:{s:6:\"source\";s:32:\"03e1b41d811c797866454daf9f07960f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6465b3d588a3cd479a71776efc3feaf2\";a:5:{s:6:\"source\";s:32:\"6465b3d588a3cd479a71776efc3feaf2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2a06a71dac4c625192346863642028cd\";a:5:{s:6:\"source\";s:32:\"2a06a71dac4c625192346863642028cd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bdbcaaeb92350405c1be1480c935d2d3\";a:5:{s:6:\"source\";s:32:\"bdbcaaeb92350405c1be1480c935d2d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3e642a9e409c12a1864e656d4f285bce\";a:5:{s:6:\"source\";s:32:\"3e642a9e409c12a1864e656d4f285bce\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"129461387a11ab59c9ff80e463a31faf\";a:5:{s:6:\"source\";s:32:\"129461387a11ab59c9ff80e463a31faf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4dc1415cd6affb807c0ef7ee51be6467\";a:5:{s:6:\"source\";s:32:\"4dc1415cd6affb807c0ef7ee51be6467\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e58a29f65fd45e7107cceb54c0d94dd8\";a:5:{s:6:\"source\";s:32:\"e58a29f65fd45e7107cceb54c0d94dd8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a7ae93a58e704f91185d0454717478c\";a:5:{s:6:\"source\";s:32:\"8a7ae93a58e704f91185d0454717478c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"138b4df2f78903ae9c6c6ed94953b393\";a:5:{s:6:\"source\";s:32:\"138b4df2f78903ae9c6c6ed94953b393\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"59a4926eb96f3e2c1fd9183091f0c890\";a:5:{s:6:\"source\";s:32:\"59a4926eb96f3e2c1fd9183091f0c890\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c130b993ef6593f37fbe4fa76d1d02a1\";a:5:{s:6:\"source\";s:32:\"c130b993ef6593f37fbe4fa76d1d02a1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"db7f9cc98311ae21d89b6a9ecff8dd76\";a:5:{s:6:\"source\";s:32:\"db7f9cc98311ae21d89b6a9ecff8dd76\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"142020c82ada9f500bfd078ebc548bf7\";a:5:{s:6:\"source\";s:32:\"142020c82ada9f500bfd078ebc548bf7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cfe5629ab803143135aa7f7ccd7cf551\";a:5:{s:6:\"source\";s:32:\"cfe5629ab803143135aa7f7ccd7cf551\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e827db9f13b0eee41f79dc3bae63f12c\";a:5:{s:6:\"source\";s:32:\"e827db9f13b0eee41f79dc3bae63f12c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8849eee4365cd2a15fdfc956c9c58df0\";a:5:{s:6:\"source\";s:32:\"8849eee4365cd2a15fdfc956c9c58df0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c9dbe091567b743156b9319f383b423\";a:5:{s:6:\"source\";s:32:\"3c9dbe091567b743156b9319f383b423\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"51f2bb58f71af939cea46e8b6b573d6e\";a:5:{s:6:\"source\";s:32:\"51f2bb58f71af939cea46e8b6b573d6e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b72c35d736b8da91d4642425ac666c83\";a:5:{s:6:\"source\";s:32:\"b72c35d736b8da91d4642425ac666c83\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dd3db8b7c62bcbbe76c307720ddcd662\";a:5:{s:6:\"source\";s:32:\"dd3db8b7c62bcbbe76c307720ddcd662\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ec695dd4ca1d7b9c13738d2d68e20749\";a:5:{s:6:\"source\";s:32:\"ec695dd4ca1d7b9c13738d2d68e20749\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"65d829a316903bec74eaeceb40bd0836\";a:5:{s:6:\"source\";s:32:\"65d829a316903bec74eaeceb40bd0836\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e2e29c1b4db5a0eea666bc73c2eb3703\";a:5:{s:6:\"source\";s:32:\"e2e29c1b4db5a0eea666bc73c2eb3703\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7b6b2b4076f1d1acf3d0dc72773f32dd\";a:5:{s:6:\"source\";s:32:\"7b6b2b4076f1d1acf3d0dc72773f32dd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2a43f4800133230b7ee44404dedc0e19\";a:5:{s:6:\"source\";s:32:\"2a43f4800133230b7ee44404dedc0e19\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eb1732530ce56f2acafb5bda94cb2aef\";a:5:{s:6:\"source\";s:32:\"eb1732530ce56f2acafb5bda94cb2aef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ddabe3976031a32d781e53f0188a4a15\";a:5:{s:6:\"source\";s:32:\"ddabe3976031a32d781e53f0188a4a15\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3f6d117f638af4b5046140dd6605bcb9\";a:5:{s:6:\"source\";s:32:\"3f6d117f638af4b5046140dd6605bcb9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f410e1a2255b20a8d05c35b51a96d60e\";a:5:{s:6:\"source\";s:32:\"f410e1a2255b20a8d05c35b51a96d60e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6ad76b38b26dcd13c2039f934d3c0489\";a:5:{s:6:\"source\";s:32:\"6ad76b38b26dcd13c2039f934d3c0489\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"738431158c89b8e27bdddbb7e0c9e754\";a:5:{s:6:\"source\";s:32:\"738431158c89b8e27bdddbb7e0c9e754\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0e825d2f4d2794409fc5461fc66a75af\";a:5:{s:6:\"source\";s:32:\"0e825d2f4d2794409fc5461fc66a75af\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d50a1d7b001e82e9972aa1f438302814\";a:5:{s:6:\"source\";s:32:\"d50a1d7b001e82e9972aa1f438302814\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4ccb500937dc0760ca6b2012b04ca1ee\";a:5:{s:6:\"source\";s:32:\"4ccb500937dc0760ca6b2012b04ca1ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d68463580a22c517709b5781122d7e55\";a:5:{s:6:\"source\";s:32:\"d68463580a22c517709b5781122d7e55\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7976bcabf3e9a0d45091aa2f68fd6a4a\";a:5:{s:6:\"source\";s:32:\"7976bcabf3e9a0d45091aa2f68fd6a4a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cc347ee5e327275503ccba446b2302dc\";a:5:{s:6:\"source\";s:32:\"cc347ee5e327275503ccba446b2302dc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7d6e00ab966b8343fe9867e291406d8c\";a:5:{s:6:\"source\";s:32:\"7d6e00ab966b8343fe9867e291406d8c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b4888039342c296fb9d3bbb4b2f76292\";a:5:{s:6:\"source\";s:32:\"b4888039342c296fb9d3bbb4b2f76292\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4ef3471fcc00823c3492eec3e1a4a2b1\";a:5:{s:6:\"source\";s:32:\"4ef3471fcc00823c3492eec3e1a4a2b1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"83cfc8c10cd2860dde4b7daae0c7777e\";a:5:{s:6:\"source\";s:32:\"83cfc8c10cd2860dde4b7daae0c7777e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4624d11aa7c69840e1a89c350ca6c124\";a:5:{s:6:\"source\";s:32:\"4624d11aa7c69840e1a89c350ca6c124\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2574853d78d51ea34eee1123d1fd782c\";a:5:{s:6:\"source\";s:32:\"2574853d78d51ea34eee1123d1fd782c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"69f29eb7eaeed87cee823f4eb3754fc4\";a:5:{s:6:\"source\";s:32:\"69f29eb7eaeed87cee823f4eb3754fc4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4a35ce526c5c53aaa7453e0caeed22c2\";a:5:{s:6:\"source\";s:32:\"4a35ce526c5c53aaa7453e0caeed22c2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2574e9821fb4da59f22b3fc35d6296e2\";a:5:{s:6:\"source\";s:32:\"2574e9821fb4da59f22b3fc35d6296e2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b3216087307da7ab94742304ad5ac8cf\";a:5:{s:6:\"source\";s:32:\"b3216087307da7ab94742304ad5ac8cf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"580ee90fde098ae7f8817d7e6c8d1eba\";a:5:{s:6:\"source\";s:32:\"580ee90fde098ae7f8817d7e6c8d1eba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dd8da627c6c9893e257a3b36b52d8972\";a:5:{s:6:\"source\";s:32:\"dd8da627c6c9893e257a3b36b52d8972\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ac6a7be1f6e1c6eaaa7c2f2cdd23ec27\";a:5:{s:6:\"source\";s:32:\"ac6a7be1f6e1c6eaaa7c2f2cdd23ec27\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bbbb8af5aeff8dd8516283cb2b4a2622\";a:5:{s:6:\"source\";s:32:\"bbbb8af5aeff8dd8516283cb2b4a2622\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"534c05750e7620685c2f4802e8a9e9a1\";a:5:{s:6:\"source\";s:32:\"534c05750e7620685c2f4802e8a9e9a1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"12f8dac8cf646199892883925f397b20\";a:5:{s:6:\"source\";s:32:\"12f8dac8cf646199892883925f397b20\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"724cec652e6798593542c63e4c789276\";a:5:{s:6:\"source\";s:32:\"724cec652e6798593542c63e4c789276\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"da88848cdfd3f6698cf984aa9aed501c\";a:5:{s:6:\"source\";s:32:\"da88848cdfd3f6698cf984aa9aed501c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b880d9545e35d1d201189b382fa4e907\";a:5:{s:6:\"source\";s:32:\"b880d9545e35d1d201189b382fa4e907\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5f16ac6e0da2b8af33f1b112871113de\";a:5:{s:6:\"source\";s:32:\"5f16ac6e0da2b8af33f1b112871113de\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c8d8c99d80081c41308fc96aa3da92a5\";a:5:{s:6:\"source\";s:32:\"c8d8c99d80081c41308fc96aa3da92a5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c108ad71878e3be41626fbe26c22d306\";a:5:{s:6:\"source\";s:32:\"c108ad71878e3be41626fbe26c22d306\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f8e83c46f47540b1e5879941429611df\";a:5:{s:6:\"source\";s:32:\"f8e83c46f47540b1e5879941429611df\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0e032f5f827788f0f7c0969075f4cba8\";a:5:{s:6:\"source\";s:32:\"0e032f5f827788f0f7c0969075f4cba8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3d948ed2d2e70ab32a423241df6fbd3a\";a:5:{s:6:\"source\";s:32:\"3d948ed2d2e70ab32a423241df6fbd3a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bccee102161ba07a25cb60a4b1bd36cc\";a:5:{s:6:\"source\";s:32:\"bccee102161ba07a25cb60a4b1bd36cc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2c806c23f25baea2c5fb605eb0818731\";a:5:{s:6:\"source\";s:32:\"2c806c23f25baea2c5fb605eb0818731\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ac90195040b07b261db5cd644fcbf6c5\";a:5:{s:6:\"source\";s:32:\"ac90195040b07b261db5cd644fcbf6c5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"76955f7fa790d0d30aed7c6235c63d19\";a:5:{s:6:\"source\";s:32:\"76955f7fa790d0d30aed7c6235c63d19\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4358b2410b910df9f8d516e86ae2a37b\";a:5:{s:6:\"source\";s:32:\"4358b2410b910df9f8d516e86ae2a37b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"623675d7904c01a63531cdfa13d2406f\";a:5:{s:6:\"source\";s:32:\"623675d7904c01a63531cdfa13d2406f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"21cf3209ba5502296d127509c2c6f827\";a:5:{s:6:\"source\";s:32:\"21cf3209ba5502296d127509c2c6f827\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b11449f3c1fd41da07d0fe3ae836c758\";a:5:{s:6:\"source\";s:32:\"b11449f3c1fd41da07d0fe3ae836c758\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5ca4dfb7521325135fddaaed72ffa948\";a:5:{s:6:\"source\";s:32:\"5ca4dfb7521325135fddaaed72ffa948\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6a16563d335239ab77fec8063c52f720\";a:5:{s:6:\"source\";s:32:\"6a16563d335239ab77fec8063c52f720\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7dcc44556d8878b664e6090d930b0bf7\";a:5:{s:6:\"source\";s:32:\"7dcc44556d8878b664e6090d930b0bf7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fe367f15a8c4abd02e156508389491d6\";a:5:{s:6:\"source\";s:32:\"fe367f15a8c4abd02e156508389491d6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8bbca0ad19b915cd9f615d02917850f8\";a:5:{s:6:\"source\";s:32:\"8bbca0ad19b915cd9f615d02917850f8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d1716d38f23edb60a53389aea6eee52c\";a:5:{s:6:\"source\";s:32:\"d1716d38f23edb60a53389aea6eee52c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"70388c0f193177ec2300c2a124e25fb5\";a:5:{s:6:\"source\";s:32:\"70388c0f193177ec2300c2a124e25fb5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"163e7bf7c90393f1fb20590034e6c3e7\";a:5:{s:6:\"source\";s:32:\"163e7bf7c90393f1fb20590034e6c3e7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7c3b8809fcf99f565503d2e3325efc9b\";a:5:{s:6:\"source\";s:32:\"7c3b8809fcf99f565503d2e3325efc9b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"429a25262da4aecfc0b14e3f4bf51f3e\";a:5:{s:6:\"source\";s:32:\"429a25262da4aecfc0b14e3f4bf51f3e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3aa2fd02ee3966c04bc47cac6a9975b7\";a:5:{s:6:\"source\";s:32:\"3aa2fd02ee3966c04bc47cac6a9975b7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7957294ff83d4eb17bb45224f9bab3de\";a:5:{s:6:\"source\";s:32:\"7957294ff83d4eb17bb45224f9bab3de\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"42c5a967dd7a3712da23fa0fb621daf0\";a:5:{s:6:\"source\";s:32:\"42c5a967dd7a3712da23fa0fb621daf0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"418abf39bcb15efc4b354052c7f8c62b\";a:5:{s:6:\"source\";s:32:\"418abf39bcb15efc4b354052c7f8c62b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a9fc99c21be33c08131d7e96c7934ee2\";a:5:{s:6:\"source\";s:32:\"a9fc99c21be33c08131d7e96c7934ee2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5e6c0227dfff99066430b283c4296e5f\";a:5:{s:6:\"source\";s:32:\"5e6c0227dfff99066430b283c4296e5f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"98c52fcf03fd86788c14b89862f5f95d\";a:5:{s:6:\"source\";s:32:\"98c52fcf03fd86788c14b89862f5f95d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4512a6217369a014dfde405381ea2f43\";a:5:{s:6:\"source\";s:32:\"4512a6217369a014dfde405381ea2f43\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1344ff3e75ac983fa7b7e01c19df802e\";a:5:{s:6:\"source\";s:32:\"1344ff3e75ac983fa7b7e01c19df802e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dbf54b4a4749fcc4ea5d7d50d0b15359\";a:5:{s:6:\"source\";s:32:\"dbf54b4a4749fcc4ea5d7d50d0b15359\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"879cd68990d02cfcf8aa11e21f645d42\";a:5:{s:6:\"source\";s:32:\"879cd68990d02cfcf8aa11e21f645d42\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b000f2c7df84ba28bddb4ff428891f33\";a:5:{s:6:\"source\";s:32:\"b000f2c7df84ba28bddb4ff428891f33\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"33cebbd7e578001de2a0daeaba0cbfbe\";a:5:{s:6:\"source\";s:32:\"33cebbd7e578001de2a0daeaba0cbfbe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e7876c012b339a42ae01e21e36ddb449\";a:5:{s:6:\"source\";s:32:\"e7876c012b339a42ae01e21e36ddb449\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f347aec12b846f095b489a058039c7a3\";a:5:{s:6:\"source\";s:32:\"f347aec12b846f095b489a058039c7a3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1da821d8bc8e4af67b2c6f687f037e20\";a:5:{s:6:\"source\";s:32:\"1da821d8bc8e4af67b2c6f687f037e20\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"004a54cbef43b88246bd693c1ae45789\";a:5:{s:6:\"source\";s:32:\"004a54cbef43b88246bd693c1ae45789\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3e5032e76cabe6f96cf223620b7d2f2d\";a:5:{s:6:\"source\";s:32:\"3e5032e76cabe6f96cf223620b7d2f2d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"50f4634981f5201b86421fb2cc781a27\";a:5:{s:6:\"source\";s:32:\"50f4634981f5201b86421fb2cc781a27\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7453e41aefaa26bdb0ffa0034e43b203\";a:5:{s:6:\"source\";s:32:\"7453e41aefaa26bdb0ffa0034e43b203\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"237da9699b95424b6a40ba011facd9e7\";a:5:{s:6:\"source\";s:32:\"237da9699b95424b6a40ba011facd9e7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"554f57d7d8c5ddc877e10c26f51e3180\";a:5:{s:6:\"source\";s:32:\"554f57d7d8c5ddc877e10c26f51e3180\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c4484cd3fda4f796cbb256d95228510a\";a:5:{s:6:\"source\";s:32:\"c4484cd3fda4f796cbb256d95228510a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"912aff042ee2097251d2eb979909d84c\";a:5:{s:6:\"source\";s:32:\"912aff042ee2097251d2eb979909d84c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c150d041399e310d661211c1afd85570\";a:5:{s:6:\"source\";s:32:\"c150d041399e310d661211c1afd85570\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2f127e3b289ddea2e9a292b5bb3ec4b0\";a:5:{s:6:\"source\";s:32:\"2f127e3b289ddea2e9a292b5bb3ec4b0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a876fd6cde7590e0f1b33312d7b673b2\";a:5:{s:6:\"source\";s:32:\"a876fd6cde7590e0f1b33312d7b673b2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"49594ca8d2939ace6a00684f874b0328\";a:5:{s:6:\"source\";s:32:\"49594ca8d2939ace6a00684f874b0328\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0100472c71502633bbaba22737899b29\";a:5:{s:6:\"source\";s:32:\"0100472c71502633bbaba22737899b29\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3ef71bc614b31a5448c5319020e34099\";a:5:{s:6:\"source\";s:32:\"3ef71bc614b31a5448c5319020e34099\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fd91cc03cdd14b922a0261cbb6d3eaed\";a:5:{s:6:\"source\";s:32:\"fd91cc03cdd14b922a0261cbb6d3eaed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2dfa96fa6261498d812823af93394a1c\";a:5:{s:6:\"source\";s:32:\"2dfa96fa6261498d812823af93394a1c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e024f56e72ead9bcdf5aa72f713686a1\";a:5:{s:6:\"source\";s:32:\"e024f56e72ead9bcdf5aa72f713686a1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4da6de775903a00deac34c6ba13ed6f6\";a:5:{s:6:\"source\";s:32:\"4da6de775903a00deac34c6ba13ed6f6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"775c97f3ea1f4eb246c77bc79b38051b\";a:5:{s:6:\"source\";s:32:\"775c97f3ea1f4eb246c77bc79b38051b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"581b8e9a3bcd7060548fca951fcf9602\";a:5:{s:6:\"source\";s:32:\"581b8e9a3bcd7060548fca951fcf9602\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aaea920dc4883f44a1d44afa32e4b840\";a:5:{s:6:\"source\";s:32:\"aaea920dc4883f44a1d44afa32e4b840\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a5afb002ba312278b7153d82387bd7b\";a:5:{s:6:\"source\";s:32:\"8a5afb002ba312278b7153d82387bd7b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ed376a1fcaa9890d7aedf141e362bf06\";a:5:{s:6:\"source\";s:32:\"ed376a1fcaa9890d7aedf141e362bf06\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"544405b580c8a9b88f517526548b6879\";a:5:{s:6:\"source\";s:32:\"544405b580c8a9b88f517526548b6879\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4e22adc8936f752ecd2734c47c4454c7\";a:5:{s:6:\"source\";s:32:\"4e22adc8936f752ecd2734c47c4454c7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ba465607f1ee69882d5375afd2ef7e00\";a:5:{s:6:\"source\";s:32:\"ba465607f1ee69882d5375afd2ef7e00\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ec026049e443acce5c613010b267f48\";a:5:{s:6:\"source\";s:32:\"8ec026049e443acce5c613010b267f48\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"db701d822f580b779a3174cac2029345\";a:5:{s:6:\"source\";s:32:\"db701d822f580b779a3174cac2029345\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1c8b97ca22413971f0c0df21dfd9ef5a\";a:5:{s:6:\"source\";s:32:\"1c8b97ca22413971f0c0df21dfd9ef5a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bf4ec08efc68376e89b85790733ae947\";a:5:{s:6:\"source\";s:32:\"bf4ec08efc68376e89b85790733ae947\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"602cb14eabc9f3a24d1d898945c97e25\";a:5:{s:6:\"source\";s:32:\"602cb14eabc9f3a24d1d898945c97e25\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b2d1b84bd793f1f5e53cd8c73f0eefd2\";a:5:{s:6:\"source\";s:32:\"b2d1b84bd793f1f5e53cd8c73f0eefd2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9090135def911e05dd2d4a6813127cd0\";a:5:{s:6:\"source\";s:32:\"9090135def911e05dd2d4a6813127cd0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4bfd8b82cd5929482f24f423181ed116\";a:5:{s:6:\"source\";s:32:\"4bfd8b82cd5929482f24f423181ed116\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ae4ed27c9e725caf87874c5cf56fc030\";a:5:{s:6:\"source\";s:32:\"ae4ed27c9e725caf87874c5cf56fc030\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b12eddc0bf9c520a7026c378737dda46\";a:5:{s:6:\"source\";s:32:\"b12eddc0bf9c520a7026c378737dda46\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2fd4c574142faac9ff706909c82524e7\";a:5:{s:6:\"source\";s:32:\"2fd4c574142faac9ff706909c82524e7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fbd2ecfffc20d9f65e6c4087ac42091b\";a:5:{s:6:\"source\";s:32:\"fbd2ecfffc20d9f65e6c4087ac42091b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4057a2f3c7d539272027df8faa554dd3\";a:5:{s:6:\"source\";s:32:\"4057a2f3c7d539272027df8faa554dd3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d7c25774a85cd99869b62d85156afe8b\";a:5:{s:6:\"source\";s:32:\"d7c25774a85cd99869b62d85156afe8b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0a2a1019002ac8dc55e2609f6d90bd88\";a:5:{s:6:\"source\";s:32:\"0a2a1019002ac8dc55e2609f6d90bd88\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cfc4b9926b600c58417f994c5a262094\";a:5:{s:6:\"source\";s:32:\"cfc4b9926b600c58417f994c5a262094\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d84a03f5765dc04206a88f9766cb658b\";a:5:{s:6:\"source\";s:32:\"d84a03f5765dc04206a88f9766cb658b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4146c30c1ef129dd55b9667fd85008d1\";a:5:{s:6:\"source\";s:32:\"4146c30c1ef129dd55b9667fd85008d1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e04c52b98b8d1d10eff5d4102db06ee2\";a:5:{s:6:\"source\";s:32:\"e04c52b98b8d1d10eff5d4102db06ee2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9abd0730e8d9e58c3ee8aa5721fa9519\";a:5:{s:6:\"source\";s:32:\"9abd0730e8d9e58c3ee8aa5721fa9519\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ab3f4e943108f9b59f08edb6d7d43576\";a:5:{s:6:\"source\";s:32:\"ab3f4e943108f9b59f08edb6d7d43576\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9cce6976540ae3c73fac885fac09ebd3\";a:5:{s:6:\"source\";s:32:\"9cce6976540ae3c73fac885fac09ebd3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"54c0df365d3281e6fe028d1322b1db01\";a:5:{s:6:\"source\";s:32:\"54c0df365d3281e6fe028d1322b1db01\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6e8d176ccfcc4d25e4d28ff431600eb1\";a:5:{s:6:\"source\";s:32:\"6e8d176ccfcc4d25e4d28ff431600eb1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"62a14356b83f84c8b103b9b3e4746bb5\";a:5:{s:6:\"source\";s:32:\"62a14356b83f84c8b103b9b3e4746bb5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d5f7d777af954e48b7923199398d877b\";a:5:{s:6:\"source\";s:32:\"d5f7d777af954e48b7923199398d877b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bcc29ad6f4728f4adb5f672a25f636d6\";a:5:{s:6:\"source\";s:32:\"bcc29ad6f4728f4adb5f672a25f636d6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ac66729c909320bc812ceef7f7571aa7\";a:5:{s:6:\"source\";s:32:\"ac66729c909320bc812ceef7f7571aa7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"44a8a755205e81a3ec63398f21ea7996\";a:5:{s:6:\"source\";s:32:\"44a8a755205e81a3ec63398f21ea7996\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2aaab44a77c58a91d19f0d672c638d83\";a:5:{s:6:\"source\";s:32:\"2aaab44a77c58a91d19f0d672c638d83\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"18197722f73b2415dd054cb6f8f56777\";a:5:{s:6:\"source\";s:32:\"18197722f73b2415dd054cb6f8f56777\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"54be2257069ea55705d0054d52ead2fe\";a:5:{s:6:\"source\";s:32:\"54be2257069ea55705d0054d52ead2fe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c30ab4a03c3235aa3c41147003b6a67c\";a:5:{s:6:\"source\";s:32:\"c30ab4a03c3235aa3c41147003b6a67c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"89a6bd5c46a70373b1102a96b2218602\";a:5:{s:6:\"source\";s:32:\"89a6bd5c46a70373b1102a96b2218602\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a0ff4de5702258e4e146c847d70ebe63\";a:5:{s:6:\"source\";s:32:\"a0ff4de5702258e4e146c847d70ebe63\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"91ba1ff41a3c0ff5d7c87b4c2955336e\";a:5:{s:6:\"source\";s:32:\"91ba1ff41a3c0ff5d7c87b4c2955336e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"73f47f9d71d33986837529aa08cb3d6a\";a:5:{s:6:\"source\";s:32:\"73f47f9d71d33986837529aa08cb3d6a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a41eacf18994752cf0413a36238404b1\";a:5:{s:6:\"source\";s:32:\"a41eacf18994752cf0413a36238404b1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6e15aad81baee74ad556a15fc0a27b23\";a:5:{s:6:\"source\";s:32:\"6e15aad81baee74ad556a15fc0a27b23\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dba27ff765109df4178196c25ee24665\";a:5:{s:6:\"source\";s:32:\"dba27ff765109df4178196c25ee24665\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7b0e32b9d8848a614e71b1c09da099bd\";a:5:{s:6:\"source\";s:32:\"7b0e32b9d8848a614e71b1c09da099bd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6dc9beb99c59744e5f3dc851a5c740bf\";a:5:{s:6:\"source\";s:32:\"6dc9beb99c59744e5f3dc851a5c740bf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f7dbc6b5a2feda46c4619f98cecd60fa\";a:5:{s:6:\"source\";s:32:\"f7dbc6b5a2feda46c4619f98cecd60fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"17afea2c3bb15b81c9380ce3017f7cdc\";a:5:{s:6:\"source\";s:32:\"17afea2c3bb15b81c9380ce3017f7cdc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fe145aa68e70ac0b0dd221a21cd225e3\";a:5:{s:6:\"source\";s:32:\"fe145aa68e70ac0b0dd221a21cd225e3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0dec9756687bcb6309b39f72d399e0f3\";a:5:{s:6:\"source\";s:32:\"0dec9756687bcb6309b39f72d399e0f3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c6c89b0976b0f98f47b9f81567ce9335\";a:5:{s:6:\"source\";s:32:\"c6c89b0976b0f98f47b9f81567ce9335\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fda7c855c948ad984aa1eeb9fc1c86e6\";a:5:{s:6:\"source\";s:32:\"fda7c855c948ad984aa1eeb9fc1c86e6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fba4e8d09cb656d299390dfcf9df76de\";a:5:{s:6:\"source\";s:32:\"fba4e8d09cb656d299390dfcf9df76de\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e1bfb1ea25637bfdd33115ab88d6d4b0\";a:5:{s:6:\"source\";s:32:\"e1bfb1ea25637bfdd33115ab88d6d4b0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5cb01b9b604abdb30f56aa377f48cdf3\";a:5:{s:6:\"source\";s:32:\"5cb01b9b604abdb30f56aa377f48cdf3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d8418127be8c5057987581a5e825cafc\";a:5:{s:6:\"source\";s:32:\"d8418127be8c5057987581a5e825cafc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f1e273c9889e7ef309cd0dfe7e1cf020\";a:5:{s:6:\"source\";s:32:\"f1e273c9889e7ef309cd0dfe7e1cf020\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b965bbb668590dbb4b15ac24a0b17a32\";a:5:{s:6:\"source\";s:32:\"b965bbb668590dbb4b15ac24a0b17a32\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"54c49124aed7c9d0f15d0e91b2a324a1\";a:5:{s:6:\"source\";s:32:\"54c49124aed7c9d0f15d0e91b2a324a1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"946fde759c7ff844e991642915f1f1e4\";a:5:{s:6:\"source\";s:32:\"946fde759c7ff844e991642915f1f1e4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"df7b2fa669c9b53088e30525ae2c3935\";a:5:{s:6:\"source\";s:32:\"df7b2fa669c9b53088e30525ae2c3935\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"371fb869593d4437d4ccd44e70dd8220\";a:5:{s:6:\"source\";s:32:\"371fb869593d4437d4ccd44e70dd8220\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e9baae1c0c6ba99f98395989031e28a2\";a:5:{s:6:\"source\";s:32:\"e9baae1c0c6ba99f98395989031e28a2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"867fcd922415b2fbd57a268ccb3ea0d7\";a:5:{s:6:\"source\";s:32:\"867fcd922415b2fbd57a268ccb3ea0d7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9925ffc6b2f509d0df24dcb0f09f70da\";a:5:{s:6:\"source\";s:32:\"9925ffc6b2f509d0df24dcb0f09f70da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e17af9a9009f4784e96586cd03cc37cc\";a:5:{s:6:\"source\";s:32:\"e17af9a9009f4784e96586cd03cc37cc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8e253bccb93ec8cf9a7766071e8baae6\";a:5:{s:6:\"source\";s:32:\"8e253bccb93ec8cf9a7766071e8baae6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d568cda2dbac9d39c4a540edd63888ea\";a:5:{s:6:\"source\";s:32:\"d568cda2dbac9d39c4a540edd63888ea\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6118e6e83c631d18ff0b40db48b1dfbd\";a:5:{s:6:\"source\";s:32:\"6118e6e83c631d18ff0b40db48b1dfbd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2f6fe234c8d950b4ee3a12883a93d19a\";a:5:{s:6:\"source\";s:32:\"2f6fe234c8d950b4ee3a12883a93d19a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e34ef4de61000b412206b26a21fb919e\";a:5:{s:6:\"source\";s:32:\"e34ef4de61000b412206b26a21fb919e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"833f916d74d4fe72be0c02c352b987ee\";a:5:{s:6:\"source\";s:32:\"833f916d74d4fe72be0c02c352b987ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e3f01b413f18bfc596f74b8a50722322\";a:5:{s:6:\"source\";s:32:\"e3f01b413f18bfc596f74b8a50722322\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4bad9b32088e7f2df99e3cf410082e40\";a:5:{s:6:\"source\";s:32:\"4bad9b32088e7f2df99e3cf410082e40\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2fa8e322d2c2edfe16a6d552a987c4c2\";a:5:{s:6:\"source\";s:32:\"2fa8e322d2c2edfe16a6d552a987c4c2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3b0d2ad90c8da84a1cf96c2fcc843eec\";a:5:{s:6:\"source\";s:32:\"3b0d2ad90c8da84a1cf96c2fcc843eec\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c623696440d618787cd85b1e984cd4b\";a:5:{s:6:\"source\";s:32:\"3c623696440d618787cd85b1e984cd4b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5fde85e79a09d361f80cd9803bcbc0f0\";a:5:{s:6:\"source\";s:32:\"5fde85e79a09d361f80cd9803bcbc0f0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b4baef0a59347fdaf3f954541ba32e0d\";a:5:{s:6:\"source\";s:32:\"b4baef0a59347fdaf3f954541ba32e0d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"89255d1f1c38e7dc520d132f5f8b947d\";a:5:{s:6:\"source\";s:32:\"89255d1f1c38e7dc520d132f5f8b947d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"170be66aa4600f5885dc6245ff2b4f5f\";a:5:{s:6:\"source\";s:32:\"170be66aa4600f5885dc6245ff2b4f5f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"93b80ffd1e36100528dac24d56d08598\";a:5:{s:6:\"source\";s:32:\"93b80ffd1e36100528dac24d56d08598\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7c54bcd5b7753ec0f90d372eacfb2367\";a:5:{s:6:\"source\";s:32:\"7c54bcd5b7753ec0f90d372eacfb2367\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b6997f763f7f5d9db28a2cc12c8a08f9\";a:5:{s:6:\"source\";s:32:\"b6997f763f7f5d9db28a2cc12c8a08f9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5def4b8842ec17010d2a0b397e7097a3\";a:5:{s:6:\"source\";s:32:\"5def4b8842ec17010d2a0b397e7097a3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3053b0bc7a1901c5c0b750795311ad67\";a:5:{s:6:\"source\";s:32:\"3053b0bc7a1901c5c0b750795311ad67\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8c8951d9a466bc766996e5953bf69a90\";a:5:{s:6:\"source\";s:32:\"8c8951d9a466bc766996e5953bf69a90\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9da367281f6a8e2ce25303ebfa3352af\";a:5:{s:6:\"source\";s:32:\"9da367281f6a8e2ce25303ebfa3352af\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"91bf6d5c9993262dc3eaac9c144aa927\";a:5:{s:6:\"source\";s:32:\"91bf6d5c9993262dc3eaac9c144aa927\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8e6d953bf7dd341a8ec57e8d00a69bcb\";a:5:{s:6:\"source\";s:32:\"8e6d953bf7dd341a8ec57e8d00a69bcb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"92cd8bf5c04e13123852e9c7882596a2\";a:5:{s:6:\"source\";s:32:\"92cd8bf5c04e13123852e9c7882596a2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6bcd9323da55802dc9e7b83074e1ae2b\";a:5:{s:6:\"source\";s:32:\"6bcd9323da55802dc9e7b83074e1ae2b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ec815c301cc96317ae8b939424cbaa7b\";a:5:{s:6:\"source\";s:32:\"ec815c301cc96317ae8b939424cbaa7b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a05ba160aa9ee0b6312011253d320b52\";a:5:{s:6:\"source\";s:32:\"a05ba160aa9ee0b6312011253d320b52\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"59cfa22f9c6a8c70ca95ac0e49110d90\";a:5:{s:6:\"source\";s:32:\"59cfa22f9c6a8c70ca95ac0e49110d90\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fc911b933bce94c6fcfe80fa5c564bbb\";a:5:{s:6:\"source\";s:32:\"fc911b933bce94c6fcfe80fa5c564bbb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"013dc609b4a86071d3e5bb2765c820a7\";a:5:{s:6:\"source\";s:32:\"013dc609b4a86071d3e5bb2765c820a7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"06a3b06482efffc099d2b2a4491ac793\";a:5:{s:6:\"source\";s:32:\"06a3b06482efffc099d2b2a4491ac793\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e6d524de659426dd927901750502df88\";a:5:{s:6:\"source\";s:32:\"e6d524de659426dd927901750502df88\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3ba90e9f120a7ffb6348d7ba0c76fabf\";a:5:{s:6:\"source\";s:32:\"3ba90e9f120a7ffb6348d7ba0c76fabf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ca311ead22d27c82b1c52991641e583b\";a:5:{s:6:\"source\";s:32:\"ca311ead22d27c82b1c52991641e583b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2ab64b52386c87839e3c075c8ea17abc\";a:5:{s:6:\"source\";s:32:\"2ab64b52386c87839e3c075c8ea17abc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"662db23d4e7cec317dcf104638d59284\";a:5:{s:6:\"source\";s:32:\"662db23d4e7cec317dcf104638d59284\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8c4808456752704ca8499705996fdf0a\";a:5:{s:6:\"source\";s:32:\"8c4808456752704ca8499705996fdf0a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c34fc45ff2dd2c2b7a69961b615d987f\";a:5:{s:6:\"source\";s:32:\"c34fc45ff2dd2c2b7a69961b615d987f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c70bfbca36677b2c338eecc13dee61ea\";a:5:{s:6:\"source\";s:32:\"c70bfbca36677b2c338eecc13dee61ea\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0b964dc988a2a594a96dae631637160f\";a:5:{s:6:\"source\";s:32:\"0b964dc988a2a594a96dae631637160f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a5f063305dad41bfb39221ef86ffaf84\";a:5:{s:6:\"source\";s:32:\"a5f063305dad41bfb39221ef86ffaf84\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"87f8d960f3365c9964b91cc9f9f1c26e\";a:5:{s:6:\"source\";s:32:\"87f8d960f3365c9964b91cc9f9f1c26e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"23bfdaaf13bb38ba0ffde18c5b8beb97\";a:5:{s:6:\"source\";s:32:\"23bfdaaf13bb38ba0ffde18c5b8beb97\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bec6d274957f76d966d5585a49f3b68c\";a:5:{s:6:\"source\";s:32:\"bec6d274957f76d966d5585a49f3b68c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"95787396a0f8f205c19bbbc077e1c303\";a:5:{s:6:\"source\";s:32:\"95787396a0f8f205c19bbbc077e1c303\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3fed5928549740c4bd6fb58fa59759e5\";a:5:{s:6:\"source\";s:32:\"3fed5928549740c4bd6fb58fa59759e5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ca48e28c431e32eeba852fce4af818a0\";a:5:{s:6:\"source\";s:32:\"ca48e28c431e32eeba852fce4af818a0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"110456f139c4b3edc82bd98b32aa946d\";a:5:{s:6:\"source\";s:32:\"110456f139c4b3edc82bd98b32aa946d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b7c4611d5391160216e8d3a7f997b6ee\";a:5:{s:6:\"source\";s:32:\"b7c4611d5391160216e8d3a7f997b6ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"59ce2d6f5410b7451a18b45a26952024\";a:5:{s:6:\"source\";s:32:\"59ce2d6f5410b7451a18b45a26952024\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5871331284693f813884b798dd97ae5f\";a:5:{s:6:\"source\";s:32:\"5871331284693f813884b798dd97ae5f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bca024f5905a2e460ac3b45ac918b9d8\";a:5:{s:6:\"source\";s:32:\"bca024f5905a2e460ac3b45ac918b9d8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"06670d8ac50d560040c5c97c18cadd08\";a:5:{s:6:\"source\";s:32:\"06670d8ac50d560040c5c97c18cadd08\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6cccaca976dda21d4150cfb8329b03de\";a:5:{s:6:\"source\";s:32:\"6cccaca976dda21d4150cfb8329b03de\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1576c2a9823461ea638ef36bcd575cc9\";a:5:{s:6:\"source\";s:32:\"1576c2a9823461ea638ef36bcd575cc9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"76ba06df308ec8d810bad2cd4e49e312\";a:5:{s:6:\"source\";s:32:\"76ba06df308ec8d810bad2cd4e49e312\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b78429755ac0e2d241da495f19a6a6fa\";a:5:{s:6:\"source\";s:32:\"b78429755ac0e2d241da495f19a6a6fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8b9705a46a2b3b8b785d16b2394459d3\";a:5:{s:6:\"source\";s:32:\"8b9705a46a2b3b8b785d16b2394459d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e453d9343e03bcd64f8055c9a5e04175\";a:5:{s:6:\"source\";s:32:\"e453d9343e03bcd64f8055c9a5e04175\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"46c6cf9b8822fea6fbd70f77a8ea688c\";a:5:{s:6:\"source\";s:32:\"46c6cf9b8822fea6fbd70f77a8ea688c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"191b457515bd1a184bf802713dfe8849\";a:5:{s:6:\"source\";s:32:\"191b457515bd1a184bf802713dfe8849\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6aa1d5ac4c4453af97cb42ed55f30b27\";a:5:{s:6:\"source\";s:32:\"6aa1d5ac4c4453af97cb42ed55f30b27\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"89f84a54d48fb4fe1257e83c97f11d04\";a:5:{s:6:\"source\";s:32:\"89f84a54d48fb4fe1257e83c97f11d04\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a055e2389e9f7683ba2a0a929fdbdab1\";a:5:{s:6:\"source\";s:32:\"a055e2389e9f7683ba2a0a929fdbdab1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"58341dcb341551f419cd46a36cd9ded2\";a:5:{s:6:\"source\";s:32:\"58341dcb341551f419cd46a36cd9ded2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"899b42219f92890865fa2ea91097510f\";a:5:{s:6:\"source\";s:32:\"899b42219f92890865fa2ea91097510f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a1e211056990091bd8d52a36f6b006d6\";a:5:{s:6:\"source\";s:32:\"a1e211056990091bd8d52a36f6b006d6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a0121d3c244fad4e7988571b1ad1095f\";a:5:{s:6:\"source\";s:32:\"a0121d3c244fad4e7988571b1ad1095f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d09afe82b796b5b615ddfc47fca071f9\";a:5:{s:6:\"source\";s:32:\"d09afe82b796b5b615ddfc47fca071f9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5e9906c39172f3b6fc4cb17ad9589d3d\";a:5:{s:6:\"source\";s:32:\"5e9906c39172f3b6fc4cb17ad9589d3d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"be4bef539509ab9c3c290761ace4b863\";a:5:{s:6:\"source\";s:32:\"be4bef539509ab9c3c290761ace4b863\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3cffa81cef814f26a826beb6de051dc8\";a:5:{s:6:\"source\";s:32:\"3cffa81cef814f26a826beb6de051dc8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"933a41dda4bfd271a478f450a87f9f7d\";a:5:{s:6:\"source\";s:32:\"933a41dda4bfd271a478f450a87f9f7d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"52f24b50a6875c6e6dd7e1fff5bbd827\";a:5:{s:6:\"source\";s:32:\"52f24b50a6875c6e6dd7e1fff5bbd827\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a6ef768bc5be91e61441d3e6db70b58c\";a:5:{s:6:\"source\";s:32:\"a6ef768bc5be91e61441d3e6db70b58c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"46b3382a030f82af185ed6d8ad0e879c\";a:5:{s:6:\"source\";s:32:\"46b3382a030f82af185ed6d8ad0e879c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d722c93c0cd0fbecdd0677d56b3c808\";a:5:{s:6:\"source\";s:32:\"4d722c93c0cd0fbecdd0677d56b3c808\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2227b652515f4c5fa476159d234906e7\";a:5:{s:6:\"source\";s:32:\"2227b652515f4c5fa476159d234906e7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9b9bde3f4ce4818bc5456277e897b49a\";a:5:{s:6:\"source\";s:32:\"9b9bde3f4ce4818bc5456277e897b49a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f2754bdd669cd43a8ad56e40809e3a8\";a:5:{s:6:\"source\";s:32:\"7f2754bdd669cd43a8ad56e40809e3a8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"47ecc3cb734fb78a649e5b98d4146c06\";a:5:{s:6:\"source\";s:32:\"47ecc3cb734fb78a649e5b98d4146c06\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"417a26be10dceed2045c2f0d6744d0d9\";a:5:{s:6:\"source\";s:32:\"417a26be10dceed2045c2f0d6744d0d9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"64391c5b13861a71e2240c28d28d93e8\";a:5:{s:6:\"source\";s:32:\"64391c5b13861a71e2240c28d28d93e8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7fd7c4859f58479dc6c246d2ca9ca817\";a:5:{s:6:\"source\";s:32:\"7fd7c4859f58479dc6c246d2ca9ca817\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c4322bb362a4cf2568f42324bec614be\";a:5:{s:6:\"source\";s:32:\"c4322bb362a4cf2568f42324bec614be\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"de8c04f78f68de9c59e9ef5be22e7e61\";a:5:{s:6:\"source\";s:32:\"de8c04f78f68de9c59e9ef5be22e7e61\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"085df148a32667c1c2a57eea60651b0c\";a:5:{s:6:\"source\";s:32:\"085df148a32667c1c2a57eea60651b0c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"48f6f3bab974bc4ef41435ac72d2e828\";a:5:{s:6:\"source\";s:32:\"48f6f3bab974bc4ef41435ac72d2e828\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"096d8ba3e3fda35b7d7027d1fe47e087\";a:5:{s:6:\"source\";s:32:\"096d8ba3e3fda35b7d7027d1fe47e087\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"55bb66a4f32cdca0edd345e3cfa2d2b1\";a:5:{s:6:\"source\";s:32:\"55bb66a4f32cdca0edd345e3cfa2d2b1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8462797565587a8cd9017c9720711e70\";a:5:{s:6:\"source\";s:32:\"8462797565587a8cd9017c9720711e70\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6299261d24ac0ba5585b87a26fbf1617\";a:5:{s:6:\"source\";s:32:\"6299261d24ac0ba5585b87a26fbf1617\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"722ddf3431cc126492b4a3d97214a5f5\";a:5:{s:6:\"source\";s:32:\"722ddf3431cc126492b4a3d97214a5f5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ca09d9a4adb2ceb718f0387bf3a0fcc1\";a:5:{s:6:\"source\";s:32:\"ca09d9a4adb2ceb718f0387bf3a0fcc1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"77ee72f905e7c59f1aabc5226a2616ac\";a:5:{s:6:\"source\";s:32:\"77ee72f905e7c59f1aabc5226a2616ac\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6ed5cb78756fbcd603143b146b1c8f53\";a:5:{s:6:\"source\";s:32:\"6ed5cb78756fbcd603143b146b1c8f53\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a2035be9d83f85d56cb81a656ab7725f\";a:5:{s:6:\"source\";s:32:\"a2035be9d83f85d56cb81a656ab7725f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5f3a178da8473ec8cb7fe74723e13d9c\";a:5:{s:6:\"source\";s:32:\"5f3a178da8473ec8cb7fe74723e13d9c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3699241e870504c97c6968fa9ecd6b08\";a:5:{s:6:\"source\";s:32:\"3699241e870504c97c6968fa9ecd6b08\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6f9c50188039d0fe4ca62e5dcb353c92\";a:5:{s:6:\"source\";s:32:\"6f9c50188039d0fe4ca62e5dcb353c92\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cb8dd25a54118d7ab11273109f7fc13e\";a:5:{s:6:\"source\";s:32:\"cb8dd25a54118d7ab11273109f7fc13e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"73481b819dcc9bea156120befdce669b\";a:5:{s:6:\"source\";s:32:\"73481b819dcc9bea156120befdce669b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"798adce91252bee6dd937f9f27c7b000\";a:5:{s:6:\"source\";s:32:\"798adce91252bee6dd937f9f27c7b000\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0da61a782d78e3895d7262920ef7144f\";a:5:{s:6:\"source\";s:32:\"0da61a782d78e3895d7262920ef7144f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fa0aadd43d13fd137aa7f9d29bf9bf43\";a:5:{s:6:\"source\";s:32:\"fa0aadd43d13fd137aa7f9d29bf9bf43\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f46d12367d52c75e3c369a0f77a9a5fe\";a:5:{s:6:\"source\";s:32:\"f46d12367d52c75e3c369a0f77a9a5fe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d03786c5ab3fc4acb786425070bf2e3a\";a:5:{s:6:\"source\";s:32:\"d03786c5ab3fc4acb786425070bf2e3a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"75c1901be6e7ecf989febc2bec45fdc1\";a:5:{s:6:\"source\";s:32:\"75c1901be6e7ecf989febc2bec45fdc1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"98d1d1c0e89bb4ec70f8fdab474cd587\";a:5:{s:6:\"source\";s:32:\"98d1d1c0e89bb4ec70f8fdab474cd587\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dfe6e9d329a288051080aa2e5549a6b7\";a:5:{s:6:\"source\";s:32:\"dfe6e9d329a288051080aa2e5549a6b7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"866b8694b182932553de925338d4f8b5\";a:5:{s:6:\"source\";s:32:\"866b8694b182932553de925338d4f8b5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c4e6ef54806c8c679fd4ea0d0f1d9201\";a:5:{s:6:\"source\";s:32:\"c4e6ef54806c8c679fd4ea0d0f1d9201\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"32afd1a8c22233c1a0bee22996a9c217\";a:5:{s:6:\"source\";s:32:\"32afd1a8c22233c1a0bee22996a9c217\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"52f936bc18c2dc4f108b9f1fd9e89532\";a:5:{s:6:\"source\";s:32:\"52f936bc18c2dc4f108b9f1fd9e89532\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8d0955d64f0aee5cabe5073f0832e786\";a:5:{s:6:\"source\";s:32:\"8d0955d64f0aee5cabe5073f0832e786\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eeb7bda3e268639b55c2cea3194eab71\";a:5:{s:6:\"source\";s:32:\"eeb7bda3e268639b55c2cea3194eab71\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5919d7ac27983f6ee6186cdd5f47616c\";a:5:{s:6:\"source\";s:32:\"5919d7ac27983f6ee6186cdd5f47616c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ad1bf03b14c4d8242d6a428ce97d4d4\";a:5:{s:6:\"source\";s:32:\"8ad1bf03b14c4d8242d6a428ce97d4d4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bccf88d87cfdddee5bb673dcaa1fa690\";a:5:{s:6:\"source\";s:32:\"bccf88d87cfdddee5bb673dcaa1fa690\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2affde78d091c06bdb203086d471ef0a\";a:5:{s:6:\"source\";s:32:\"2affde78d091c06bdb203086d471ef0a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c42f9adb8083163058afc0163dba415e\";a:5:{s:6:\"source\";s:32:\"c42f9adb8083163058afc0163dba415e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d9896ad7731aa8974f7008b337b7696e\";a:5:{s:6:\"source\";s:32:\"d9896ad7731aa8974f7008b337b7696e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c0a6791c2b64b63ddf9f3a110f9cbf9a\";a:5:{s:6:\"source\";s:32:\"c0a6791c2b64b63ddf9f3a110f9cbf9a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"10cf3011aeb814146d69549530051e41\";a:5:{s:6:\"source\";s:32:\"10cf3011aeb814146d69549530051e41\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"08834bb775494ef446aea4ab6196457a\";a:5:{s:6:\"source\";s:32:\"08834bb775494ef446aea4ab6196457a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"395b5383a37033ae2dfca04c382d98c1\";a:5:{s:6:\"source\";s:32:\"395b5383a37033ae2dfca04c382d98c1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"41a065b4af6fc4b9205f677a2d12ec34\";a:5:{s:6:\"source\";s:32:\"41a065b4af6fc4b9205f677a2d12ec34\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c4c4581f04b7c9245cd9c50b1c64705d\";a:5:{s:6:\"source\";s:32:\"c4c4581f04b7c9245cd9c50b1c64705d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d13594f98d218e12c57de68973c9aee\";a:5:{s:6:\"source\";s:32:\"4d13594f98d218e12c57de68973c9aee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6fd0348905ac230cc48e3c339627470c\";a:5:{s:6:\"source\";s:32:\"6fd0348905ac230cc48e3c339627470c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dba2b10713369c52d711d18215a72af0\";a:5:{s:6:\"source\";s:32:\"dba2b10713369c52d711d18215a72af0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9587f44a937b547d10777b3254049e58\";a:5:{s:6:\"source\";s:32:\"9587f44a937b547d10777b3254049e58\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"db746b24ed6a2a2bd2bd18957c417337\";a:5:{s:6:\"source\";s:32:\"db746b24ed6a2a2bd2bd18957c417337\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ae3d4dfbea004d5f35f6216a708d459c\";a:5:{s:6:\"source\";s:32:\"ae3d4dfbea004d5f35f6216a708d459c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"961bfc183306456ac33c70370ee713a1\";a:5:{s:6:\"source\";s:32:\"961bfc183306456ac33c70370ee713a1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0c85420a4f9db936b4d6e4cca30304f1\";a:5:{s:6:\"source\";s:32:\"0c85420a4f9db936b4d6e4cca30304f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"531d2164598b168e2eafd5604d10837d\";a:5:{s:6:\"source\";s:32:\"531d2164598b168e2eafd5604d10837d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"97b1542e26b4d3ed4e8d2a8dab736302\";a:5:{s:6:\"source\";s:32:\"97b1542e26b4d3ed4e8d2a8dab736302\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"44bb6b2bbf8dca239a5956b4bd39e600\";a:5:{s:6:\"source\";s:32:\"44bb6b2bbf8dca239a5956b4bd39e600\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9a2bee4617f182bec52a9e50319d85ec\";a:5:{s:6:\"source\";s:32:\"9a2bee4617f182bec52a9e50319d85ec\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"93494be72505a5bbe752f96aa56099f1\";a:5:{s:6:\"source\";s:32:\"93494be72505a5bbe752f96aa56099f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"86ee6aaf7a869f0179aab71aaad4c892\";a:5:{s:6:\"source\";s:32:\"86ee6aaf7a869f0179aab71aaad4c892\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1842d6a97901b083cc97618c0095cf06\";a:5:{s:6:\"source\";s:32:\"1842d6a97901b083cc97618c0095cf06\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1eaeeafeb4adc1012b67305913942734\";a:5:{s:6:\"source\";s:32:\"1eaeeafeb4adc1012b67305913942734\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"55177fa8c7085b2f187df6cfbb88faef\";a:5:{s:6:\"source\";s:32:\"55177fa8c7085b2f187df6cfbb88faef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f8a055710218547ed8175c2d3ca813f3\";a:5:{s:6:\"source\";s:32:\"f8a055710218547ed8175c2d3ca813f3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f52e044d46fcdd5745617b39f9181b47\";a:5:{s:6:\"source\";s:32:\"f52e044d46fcdd5745617b39f9181b47\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"09994df75dca4897f6a15152083c2cf9\";a:5:{s:6:\"source\";s:32:\"09994df75dca4897f6a15152083c2cf9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dd8904469817767d7b09470dc1bdfaa9\";a:5:{s:6:\"source\";s:32:\"dd8904469817767d7b09470dc1bdfaa9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0aa300bc5f03bfae3bb5a947c13199d3\";a:5:{s:6:\"source\";s:32:\"0aa300bc5f03bfae3bb5a947c13199d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0dbb90e5819a40aff59dee215432540f\";a:5:{s:6:\"source\";s:32:\"0dbb90e5819a40aff59dee215432540f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"66f296cfc8965375657fc526c7a57164\";a:5:{s:6:\"source\";s:32:\"66f296cfc8965375657fc526c7a57164\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e6aa6f59b610ad5ad66b153029927d3c\";a:5:{s:6:\"source\";s:32:\"e6aa6f59b610ad5ad66b153029927d3c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"12957361b98568afca9002b9573a79d5\";a:5:{s:6:\"source\";s:32:\"12957361b98568afca9002b9573a79d5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b91e9b542f04107a8694911b034fd9c2\";a:5:{s:6:\"source\";s:32:\"b91e9b542f04107a8694911b034fd9c2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f95bed66972234b04e2a5c5daf832445\";a:5:{s:6:\"source\";s:32:\"f95bed66972234b04e2a5c5daf832445\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"367a73221f74c3689170e6cf1e164980\";a:5:{s:6:\"source\";s:32:\"367a73221f74c3689170e6cf1e164980\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"60207128c8ea96b5cec1a6046b88bd06\";a:5:{s:6:\"source\";s:32:\"60207128c8ea96b5cec1a6046b88bd06\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c8b78fc7a47563a1e231787694c44b7d\";a:5:{s:6:\"source\";s:32:\"c8b78fc7a47563a1e231787694c44b7d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8b8e16fda7c7d84e9e1c5f9091bc8634\";a:5:{s:6:\"source\";s:32:\"8b8e16fda7c7d84e9e1c5f9091bc8634\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1ec673a9fd51ed361214717ad20ed09b\";a:5:{s:6:\"source\";s:32:\"1ec673a9fd51ed361214717ad20ed09b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b4ff8b96c4d4e60bc2241f8d080f31e7\";a:5:{s:6:\"source\";s:32:\"b4ff8b96c4d4e60bc2241f8d080f31e7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"90657bf98cce20136c21ee43e0f52103\";a:5:{s:6:\"source\";s:32:\"90657bf98cce20136c21ee43e0f52103\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c02df370f6b4280875c29d099c1a215d\";a:5:{s:6:\"source\";s:32:\"c02df370f6b4280875c29d099c1a215d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"83f945935ae25a8b1817c4473133d64f\";a:5:{s:6:\"source\";s:32:\"83f945935ae25a8b1817c4473133d64f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"34052f8361535772dd787371fafa9ba5\";a:5:{s:6:\"source\";s:32:\"34052f8361535772dd787371fafa9ba5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7b8e700ae61bff4845d4eafe109eaf58\";a:5:{s:6:\"source\";s:32:\"7b8e700ae61bff4845d4eafe109eaf58\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f0808c2fe2ee300ae25577c82d5d4512\";a:5:{s:6:\"source\";s:32:\"f0808c2fe2ee300ae25577c82d5d4512\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8013738378e3a468b53ea4143e2c6a1b\";a:5:{s:6:\"source\";s:32:\"8013738378e3a468b53ea4143e2c6a1b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ae13168ec38bdefb416085226fca7190\";a:5:{s:6:\"source\";s:32:\"ae13168ec38bdefb416085226fca7190\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"922c298763a3f518446ce4e8297af788\";a:5:{s:6:\"source\";s:32:\"922c298763a3f518446ce4e8297af788\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7189bd0939a8f3a8e2189b7983f9d9b1\";a:5:{s:6:\"source\";s:32:\"7189bd0939a8f3a8e2189b7983f9d9b1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"20f020c1a902d43ee24bc6fe23fd51df\";a:5:{s:6:\"source\";s:32:\"20f020c1a902d43ee24bc6fe23fd51df\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bed6cc73dda9540e2ef2dd9364cd7ad9\";a:5:{s:6:\"source\";s:32:\"bed6cc73dda9540e2ef2dd9364cd7ad9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4920c791a2a210cde4d0192c7f758b62\";a:5:{s:6:\"source\";s:32:\"4920c791a2a210cde4d0192c7f758b62\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1567e0ffbd5a2a1439f5f01e7914f4a8\";a:5:{s:6:\"source\";s:32:\"1567e0ffbd5a2a1439f5f01e7914f4a8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ffad6bfeba65992e3ad9a8d6a8567419\";a:5:{s:6:\"source\";s:32:\"ffad6bfeba65992e3ad9a8d6a8567419\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"530bebe116de2b8ac26b4c051ef61bb1\";a:5:{s:6:\"source\";s:32:\"530bebe116de2b8ac26b4c051ef61bb1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"adcae83efbb4c65ac4c78a26c4246cd3\";a:5:{s:6:\"source\";s:32:\"adcae83efbb4c65ac4c78a26c4246cd3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e749ab486c1d2191e93c81722126685d\";a:5:{s:6:\"source\";s:32:\"e749ab486c1d2191e93c81722126685d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1cdb3fedd764c470ecf7a93079e8c89a\";a:5:{s:6:\"source\";s:32:\"1cdb3fedd764c470ecf7a93079e8c89a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"de670b834716e8ecc4213d53a6edd9db\";a:5:{s:6:\"source\";s:32:\"de670b834716e8ecc4213d53a6edd9db\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dfd208bcf02b03f141f51783858a633d\";a:5:{s:6:\"source\";s:32:\"dfd208bcf02b03f141f51783858a633d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e66f106e2eea77547a85fcebf0a30fba\";a:5:{s:6:\"source\";s:32:\"e66f106e2eea77547a85fcebf0a30fba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"93e78fb0c8c304e8ae57b6ad082bcd51\";a:5:{s:6:\"source\";s:32:\"93e78fb0c8c304e8ae57b6ad082bcd51\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9e16c509b646cd102ea6478d3c4decfd\";a:5:{s:6:\"source\";s:32:\"9e16c509b646cd102ea6478d3c4decfd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ca660e707edefd7c8441826a0feb711\";a:5:{s:6:\"source\";s:32:\"8ca660e707edefd7c8441826a0feb711\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6555dd3b3e819b061ef9d66faf943e94\";a:5:{s:6:\"source\";s:32:\"6555dd3b3e819b061ef9d66faf943e94\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"abfcabb68178d1d43ae82c2ff41af24d\";a:5:{s:6:\"source\";s:32:\"abfcabb68178d1d43ae82c2ff41af24d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bab465f926fbe1102bd4759361a6103b\";a:5:{s:6:\"source\";s:32:\"bab465f926fbe1102bd4759361a6103b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f6d445a1cc01c226cec74e66b0773230\";a:5:{s:6:\"source\";s:32:\"f6d445a1cc01c226cec74e66b0773230\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a72189c59e0ebd61832cb09c7a41634\";a:5:{s:6:\"source\";s:32:\"8a72189c59e0ebd61832cb09c7a41634\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d2a55a92b2309784faab96f75750a631\";a:5:{s:6:\"source\";s:32:\"d2a55a92b2309784faab96f75750a631\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"52e3d0532b2de264a7466d8ef5a29625\";a:5:{s:6:\"source\";s:32:\"52e3d0532b2de264a7466d8ef5a29625\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f9c3ed0b3eee5e2db4f53669eeb2d96f\";a:5:{s:6:\"source\";s:32:\"f9c3ed0b3eee5e2db4f53669eeb2d96f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"831cf74c9408a2d12b290c7f7026f0f8\";a:5:{s:6:\"source\";s:32:\"831cf74c9408a2d12b290c7f7026f0f8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"600623412e77d0a417af4486a625390c\";a:5:{s:6:\"source\";s:32:\"600623412e77d0a417af4486a625390c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4c9d5598c09236c41ade428e4df57d97\";a:5:{s:6:\"source\";s:32:\"4c9d5598c09236c41ade428e4df57d97\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cd032368471f983a5271a17b2131dea6\";a:5:{s:6:\"source\";s:32:\"cd032368471f983a5271a17b2131dea6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e3bc146972ecfeefbe24e64179f03905\";a:5:{s:6:\"source\";s:32:\"e3bc146972ecfeefbe24e64179f03905\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9be5ad80fc062d370eb9baa84d564453\";a:5:{s:6:\"source\";s:32:\"9be5ad80fc062d370eb9baa84d564453\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7906e43cce6bdabf7b09d506396a2f59\";a:5:{s:6:\"source\";s:32:\"7906e43cce6bdabf7b09d506396a2f59\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"52d4efb0492e07b652204d4cf69566eb\";a:5:{s:6:\"source\";s:32:\"52d4efb0492e07b652204d4cf69566eb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"855cd1173f3ce783cba6fcb4acc09be3\";a:5:{s:6:\"source\";s:32:\"855cd1173f3ce783cba6fcb4acc09be3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0c4aa17d57ec2520b37c108ecdf9eec9\";a:5:{s:6:\"source\";s:32:\"0c4aa17d57ec2520b37c108ecdf9eec9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"78927fbdb6512263ccba2c1ce589d885\";a:5:{s:6:\"source\";s:32:\"78927fbdb6512263ccba2c1ce589d885\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f4c23ac3ceeab0fb92c4678f9877c9e0\";a:5:{s:6:\"source\";s:32:\"f4c23ac3ceeab0fb92c4678f9877c9e0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7b23381f249580993f34192a0c30dc87\";a:5:{s:6:\"source\";s:32:\"7b23381f249580993f34192a0c30dc87\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6b5b9277c4da379d9322ac6f93cd5674\";a:5:{s:6:\"source\";s:32:\"6b5b9277c4da379d9322ac6f93cd5674\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1ddf8ed47028556fd3672775389c46be\";a:5:{s:6:\"source\";s:32:\"1ddf8ed47028556fd3672775389c46be\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b4251761d85184cf70baa2e67f98eb67\";a:5:{s:6:\"source\";s:32:\"b4251761d85184cf70baa2e67f98eb67\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5c0018815ab21e513ca74f04dd5e52a0\";a:5:{s:6:\"source\";s:32:\"5c0018815ab21e513ca74f04dd5e52a0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bb9caa9d176f871f96ad26af579c3e8c\";a:5:{s:6:\"source\";s:32:\"bb9caa9d176f871f96ad26af579c3e8c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"68f246fffe5acb9b67c205cc6bbc64ad\";a:5:{s:6:\"source\";s:32:\"68f246fffe5acb9b67c205cc6bbc64ad\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"94f8a3c2aab4a67ff57d7e5990d8e097\";a:5:{s:6:\"source\";s:32:\"94f8a3c2aab4a67ff57d7e5990d8e097\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6fbdb18c946323f962dfd5c042ce7b91\";a:5:{s:6:\"source\";s:32:\"6fbdb18c946323f962dfd5c042ce7b91\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d2edcafa96fe2730e1231ac8f0b2c26b\";a:5:{s:6:\"source\";s:32:\"d2edcafa96fe2730e1231ac8f0b2c26b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"42caeba781c0d544d3bb83c5781e72ca\";a:5:{s:6:\"source\";s:32:\"42caeba781c0d544d3bb83c5781e72ca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d9fe61857e760210872efd80d88bea10\";a:5:{s:6:\"source\";s:32:\"d9fe61857e760210872efd80d88bea10\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9857efd1ff99eb77be224245c857b18f\";a:5:{s:6:\"source\";s:32:\"9857efd1ff99eb77be224245c857b18f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"76b9d58540ad6ca05b69515049251207\";a:5:{s:6:\"source\";s:32:\"76b9d58540ad6ca05b69515049251207\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"97d6896d59f9ea943e6dd67d62802d33\";a:5:{s:6:\"source\";s:32:\"97d6896d59f9ea943e6dd67d62802d33\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b55844dd2ae8d9d1cf6126244676f703\";a:5:{s:6:\"source\";s:32:\"b55844dd2ae8d9d1cf6126244676f703\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"518fb73e889cbbe992a738346be71551\";a:5:{s:6:\"source\";s:32:\"518fb73e889cbbe992a738346be71551\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dc99b852c2a668841c8149cc3efa7b3b\";a:5:{s:6:\"source\";s:32:\"dc99b852c2a668841c8149cc3efa7b3b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2b836c6505c4a07444a05154ee595f8e\";a:5:{s:6:\"source\";s:32:\"2b836c6505c4a07444a05154ee595f8e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0abcb01a91a07ac2790dcf2d18a6bb10\";a:5:{s:6:\"source\";s:32:\"0abcb01a91a07ac2790dcf2d18a6bb10\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"39f9a3e1c74970841a5778e5dd6372ec\";a:5:{s:6:\"source\";s:32:\"39f9a3e1c74970841a5778e5dd6372ec\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"65708bf35a29783887487d151a4f9777\";a:5:{s:6:\"source\";s:32:\"65708bf35a29783887487d151a4f9777\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"688858293c3750f6b896cab6ebf6bd1c\";a:5:{s:6:\"source\";s:32:\"688858293c3750f6b896cab6ebf6bd1c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8dc865d767f66ab86974fa03a91fd24b\";a:5:{s:6:\"source\";s:32:\"8dc865d767f66ab86974fa03a91fd24b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"de3a5582554379c92b1e9fea77a2660c\";a:5:{s:6:\"source\";s:32:\"de3a5582554379c92b1e9fea77a2660c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"51e9084a6ed0635968fdcfe5484db8a5\";a:5:{s:6:\"source\";s:32:\"51e9084a6ed0635968fdcfe5484db8a5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2e7c68a8f376b78afb7c2e9bb7e7b7ca\";a:5:{s:6:\"source\";s:32:\"2e7c68a8f376b78afb7c2e9bb7e7b7ca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b8462804476eaabf1947b103f10fa688\";a:5:{s:6:\"source\";s:32:\"b8462804476eaabf1947b103f10fa688\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3cbfaed5c194f5326a683a2742900a2d\";a:5:{s:6:\"source\";s:32:\"3cbfaed5c194f5326a683a2742900a2d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0064a5f6cd2d4d117614c817f2c119a7\";a:5:{s:6:\"source\";s:32:\"0064a5f6cd2d4d117614c817f2c119a7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6b00735fb145ee72a6f5d1bc4f8b6d2d\";a:5:{s:6:\"source\";s:32:\"6b00735fb145ee72a6f5d1bc4f8b6d2d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c480fc2faa0b7cbe76b6375f52a04da\";a:5:{s:6:\"source\";s:32:\"3c480fc2faa0b7cbe76b6375f52a04da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7980eadc60e29c6840b90f1c42984b05\";a:5:{s:6:\"source\";s:32:\"7980eadc60e29c6840b90f1c42984b05\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"df1bedcd11b77a6e00a2a3d729e4999a\";a:5:{s:6:\"source\";s:32:\"df1bedcd11b77a6e00a2a3d729e4999a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f7f3c27bbedd369cee6f33a2a0b6830a\";a:5:{s:6:\"source\";s:32:\"f7f3c27bbedd369cee6f33a2a0b6830a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c55b965ae0516598f8c26f3a82d29b1\";a:5:{s:6:\"source\";s:32:\"3c55b965ae0516598f8c26f3a82d29b1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"78e152eadd63a8679c9a33e3e7fe295d\";a:5:{s:6:\"source\";s:32:\"78e152eadd63a8679c9a33e3e7fe295d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7b44a366b4fe0ef080f02a633bfdd004\";a:5:{s:6:\"source\";s:32:\"7b44a366b4fe0ef080f02a633bfdd004\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c5c5dbfbae6a3db961936df629d6e1c0\";a:5:{s:6:\"source\";s:32:\"c5c5dbfbae6a3db961936df629d6e1c0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"13c8d3d8b90e8c36333bc326d627ca2e\";a:5:{s:6:\"source\";s:32:\"13c8d3d8b90e8c36333bc326d627ca2e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3d4e72a63c46c8e95243e37b29283999\";a:5:{s:6:\"source\";s:32:\"3d4e72a63c46c8e95243e37b29283999\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6f97eaffc87eda114c84401f8a007eb7\";a:5:{s:6:\"source\";s:32:\"6f97eaffc87eda114c84401f8a007eb7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"de4a5decb1331cc2c29ccaec8b3c7f7a\";a:5:{s:6:\"source\";s:32:\"de4a5decb1331cc2c29ccaec8b3c7f7a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b81af63a46e23b247992308278283ccd\";a:5:{s:6:\"source\";s:32:\"b81af63a46e23b247992308278283ccd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"406572845bfd603134764bd7a5a409f4\";a:5:{s:6:\"source\";s:32:\"406572845bfd603134764bd7a5a409f4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f6181251193d763dab36ec9369df4f2e\";a:5:{s:6:\"source\";s:32:\"f6181251193d763dab36ec9369df4f2e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0945fee7b6585179d8b826bba5306492\";a:5:{s:6:\"source\";s:32:\"0945fee7b6585179d8b826bba5306492\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"55eec8cd2924a21f659d2129cd3e9629\";a:5:{s:6:\"source\";s:32:\"55eec8cd2924a21f659d2129cd3e9629\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b613f853465049b65728f9791e08977c\";a:5:{s:6:\"source\";s:32:\"b613f853465049b65728f9791e08977c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1fb0d367a2617711ddec590c4f53f8e2\";a:5:{s:6:\"source\";s:32:\"1fb0d367a2617711ddec590c4f53f8e2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0707a370ce2fd262693df43962762a1e\";a:5:{s:6:\"source\";s:32:\"0707a370ce2fd262693df43962762a1e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9d768d3a73f5c36b01b2a040f35a7323\";a:5:{s:6:\"source\";s:32:\"9d768d3a73f5c36b01b2a040f35a7323\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7fa0b890aa23d886836dca2e8bcfbc58\";a:5:{s:6:\"source\";s:32:\"7fa0b890aa23d886836dca2e8bcfbc58\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"85e4a825b77e10dee5adb989905020d8\";a:5:{s:6:\"source\";s:32:\"85e4a825b77e10dee5adb989905020d8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9b7e2e798e2d70ddd5d42922f2c9b903\";a:5:{s:6:\"source\";s:32:\"9b7e2e798e2d70ddd5d42922f2c9b903\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"43f2a0f5f0266701c66e6802ac3a5bb9\";a:5:{s:6:\"source\";s:32:\"43f2a0f5f0266701c66e6802ac3a5bb9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8b49710825280a972bec5f981a6cb9ee\";a:5:{s:6:\"source\";s:32:\"8b49710825280a972bec5f981a6cb9ee\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"da58f6072acc372297e073c6b271b978\";a:5:{s:6:\"source\";s:32:\"da58f6072acc372297e073c6b271b978\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c961010784feeac61c419f75b9c8ec21\";a:5:{s:6:\"source\";s:32:\"c961010784feeac61c419f75b9c8ec21\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"608acfc6ad25c019ebadf94143328075\";a:5:{s:6:\"source\";s:32:\"608acfc6ad25c019ebadf94143328075\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"057632267c4b760d8c0740e3e6deb4f1\";a:5:{s:6:\"source\";s:32:\"057632267c4b760d8c0740e3e6deb4f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"91fd0d5292d7f978eca02c3d5a48de6b\";a:5:{s:6:\"source\";s:32:\"91fd0d5292d7f978eca02c3d5a48de6b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"991e01a5099fbbf33b7cf31098dbec2a\";a:5:{s:6:\"source\";s:32:\"991e01a5099fbbf33b7cf31098dbec2a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3807d0472615dce689ec59a049751485\";a:5:{s:6:\"source\";s:32:\"3807d0472615dce689ec59a049751485\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"11371c6f9ae6c4d25a47a0d200ab6e55\";a:5:{s:6:\"source\";s:32:\"11371c6f9ae6c4d25a47a0d200ab6e55\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"04042ac4f42052aeea3321072a3e90db\";a:5:{s:6:\"source\";s:32:\"04042ac4f42052aeea3321072a3e90db\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0a80d3cca82bb70a423f463acac92fb5\";a:5:{s:6:\"source\";s:32:\"0a80d3cca82bb70a423f463acac92fb5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8c63d34f9cf8a248f32300ec7e42ac2a\";a:5:{s:6:\"source\";s:32:\"8c63d34f9cf8a248f32300ec7e42ac2a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"43e95589bf10acc5653c19a1adde0645\";a:5:{s:6:\"source\";s:32:\"43e95589bf10acc5653c19a1adde0645\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"575cb034eb918567ffa4d50684e01372\";a:5:{s:6:\"source\";s:32:\"575cb034eb918567ffa4d50684e01372\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8b42f0713f7c01a671a753c38d7f43c0\";a:5:{s:6:\"source\";s:32:\"8b42f0713f7c01a671a753c38d7f43c0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f6b0e36523f99d17b8d2c29b422adb82\";a:5:{s:6:\"source\";s:32:\"f6b0e36523f99d17b8d2c29b422adb82\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ccd2b458817ab7e07c87ddc51b076392\";a:5:{s:6:\"source\";s:32:\"ccd2b458817ab7e07c87ddc51b076392\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9f6084a39ced8c07bf802929298c7f1a\";a:5:{s:6:\"source\";s:32:\"9f6084a39ced8c07bf802929298c7f1a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e135ef342c07d52966f7692310ef8bd6\";a:5:{s:6:\"source\";s:32:\"e135ef342c07d52966f7692310ef8bd6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bb3455d711556954980ee8014a5854e3\";a:5:{s:6:\"source\";s:32:\"bb3455d711556954980ee8014a5854e3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"dfe525419cc8c27c88d56508c8b389c4\";a:5:{s:6:\"source\";s:32:\"dfe525419cc8c27c88d56508c8b389c4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"efc5dfe2e2addbee7d2f15a5825ac72a\";a:5:{s:6:\"source\";s:32:\"efc5dfe2e2addbee7d2f15a5825ac72a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0c7987587752c938837c9e731a6d31bf\";a:5:{s:6:\"source\";s:32:\"0c7987587752c938837c9e731a6d31bf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"faa316bb6cc00c2dc5d351df8fc92c93\";a:5:{s:6:\"source\";s:32:\"faa316bb6cc00c2dc5d351df8fc92c93\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"caef9ea2c80483f7927ca2b29abc53c9\";a:5:{s:6:\"source\";s:32:\"caef9ea2c80483f7927ca2b29abc53c9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"20ba942aa77cbd656a32a4c4860de10f\";a:5:{s:6:\"source\";s:32:\"20ba942aa77cbd656a32a4c4860de10f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"419fdb8caced58918e6e74eb55e118f4\";a:5:{s:6:\"source\";s:32:\"419fdb8caced58918e6e74eb55e118f4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"abe275dd507d37820ffa917c69781e4e\";a:5:{s:6:\"source\";s:32:\"abe275dd507d37820ffa917c69781e4e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"539bc7d7ddf826020bb64b0973a8d74d\";a:5:{s:6:\"source\";s:32:\"539bc7d7ddf826020bb64b0973a8d74d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"916776e37252ae1d4e04ce12470ad6a2\";a:5:{s:6:\"source\";s:32:\"916776e37252ae1d4e04ce12470ad6a2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2ad54f0e14f78a9ce2f5eb19176de67a\";a:5:{s:6:\"source\";s:32:\"2ad54f0e14f78a9ce2f5eb19176de67a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"41cb967889ec42f406f59e0e2adc197d\";a:5:{s:6:\"source\";s:32:\"41cb967889ec42f406f59e0e2adc197d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"af5bc61ae0205a3c7294049b859b3978\";a:5:{s:6:\"source\";s:32:\"af5bc61ae0205a3c7294049b859b3978\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"97a7f14175e7c8adde7b63a298b2b11a\";a:5:{s:6:\"source\";s:32:\"97a7f14175e7c8adde7b63a298b2b11a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"986f29aa047da83935fc7a636f3ae11a\";a:5:{s:6:\"source\";s:32:\"986f29aa047da83935fc7a636f3ae11a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"119440272efe728a20793ac9bb354ec6\";a:5:{s:6:\"source\";s:32:\"119440272efe728a20793ac9bb354ec6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"306c0667d85b53ebcba221be4a8aff41\";a:5:{s:6:\"source\";s:32:\"306c0667d85b53ebcba221be4a8aff41\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"167e1d558812c992479257d511178d2a\";a:5:{s:6:\"source\";s:32:\"167e1d558812c992479257d511178d2a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a26c1a4ecd80d98fa7066b53b7b1a2bc\";a:5:{s:6:\"source\";s:32:\"a26c1a4ecd80d98fa7066b53b7b1a2bc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fbc230d2f016cbc70790019fdddcb37d\";a:5:{s:6:\"source\";s:32:\"fbc230d2f016cbc70790019fdddcb37d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b03cce245e7908a92f7a49cb24a28954\";a:5:{s:6:\"source\";s:32:\"b03cce245e7908a92f7a49cb24a28954\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"abace941f242103c0edf63779c168de8\";a:5:{s:6:\"source\";s:32:\"abace941f242103c0edf63779c168de8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a7d562268b80264c1690e9ef2348bde2\";a:5:{s:6:\"source\";s:32:\"a7d562268b80264c1690e9ef2348bde2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"239643dea51b036c05365d13a2e9fdd3\";a:5:{s:6:\"source\";s:32:\"239643dea51b036c05365d13a2e9fdd3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"12ed0d86ab902e76b068f00d62895212\";a:5:{s:6:\"source\";s:32:\"12ed0d86ab902e76b068f00d62895212\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a29eebe52cb89ddab2eaa11ccce43654\";a:5:{s:6:\"source\";s:32:\"a29eebe52cb89ddab2eaa11ccce43654\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5870966038cdb08aafa5e6250d3ee963\";a:5:{s:6:\"source\";s:32:\"5870966038cdb08aafa5e6250d3ee963\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5798cd8f8033ad31e11cabf6a5f25996\";a:5:{s:6:\"source\";s:32:\"5798cd8f8033ad31e11cabf6a5f25996\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bc6536d798e02a564beafd1f8eb7122f\";a:5:{s:6:\"source\";s:32:\"bc6536d798e02a564beafd1f8eb7122f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5fd3ce63bdadc3129c852168d9226520\";a:5:{s:6:\"source\";s:32:\"5fd3ce63bdadc3129c852168d9226520\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e622171c2813b96c92709e82247eedc3\";a:5:{s:6:\"source\";s:32:\"e622171c2813b96c92709e82247eedc3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9ec90b7ed803743f6f8cac690ba94fb2\";a:5:{s:6:\"source\";s:32:\"9ec90b7ed803743f6f8cac690ba94fb2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"78f468ef21ea78f0c4a1bdc2ee06b9de\";a:5:{s:6:\"source\";s:32:\"78f468ef21ea78f0c4a1bdc2ee06b9de\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d044b593d95c5f63e3e6208a58b425d2\";a:5:{s:6:\"source\";s:32:\"d044b593d95c5f63e3e6208a58b425d2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1e7e17e14c816ab739e6340a40fafb23\";a:5:{s:6:\"source\";s:32:\"1e7e17e14c816ab739e6340a40fafb23\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b90e9b3de931b6e90e3b878ba30e2730\";a:5:{s:6:\"source\";s:32:\"b90e9b3de931b6e90e3b878ba30e2730\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c0cc60a6f4fb85ddf45b0e4ac2f51a21\";a:5:{s:6:\"source\";s:32:\"c0cc60a6f4fb85ddf45b0e4ac2f51a21\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d415914630b99cf5bc0471cdb01470d8\";a:5:{s:6:\"source\";s:32:\"d415914630b99cf5bc0471cdb01470d8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f9e29dceccba0760a51df1c6f8cdab74\";a:5:{s:6:\"source\";s:32:\"f9e29dceccba0760a51df1c6f8cdab74\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ed6c2716ef4005790f8185a48865b0ec\";a:5:{s:6:\"source\";s:32:\"ed6c2716ef4005790f8185a48865b0ec\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2a8f700652ab17d4e31f23d444fcfb3b\";a:5:{s:6:\"source\";s:32:\"2a8f700652ab17d4e31f23d444fcfb3b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bdccfc95667756fc5b7de0e736455f68\";a:5:{s:6:\"source\";s:32:\"bdccfc95667756fc5b7de0e736455f68\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"31aa03cce35975bed9d21778f92d047e\";a:5:{s:6:\"source\";s:32:\"31aa03cce35975bed9d21778f92d047e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0a0051bbd147cb306ebef254a7c190f4\";a:5:{s:6:\"source\";s:32:\"0a0051bbd147cb306ebef254a7c190f4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ab0784b2b9e563107cfe9f66df5f213\";a:5:{s:6:\"source\";s:32:\"8ab0784b2b9e563107cfe9f66df5f213\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6c28f85a0b1fd572fee8dac03d6786ca\";a:5:{s:6:\"source\";s:32:\"6c28f85a0b1fd572fee8dac03d6786ca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c170598009ba922ae5b047d11317c0b1\";a:5:{s:6:\"source\";s:32:\"c170598009ba922ae5b047d11317c0b1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5853a6909a754ee821ad0e8452d4e211\";a:5:{s:6:\"source\";s:32:\"5853a6909a754ee821ad0e8452d4e211\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"deab4e9d9ec7bb6e8e7e2331e5b56844\";a:5:{s:6:\"source\";s:32:\"deab4e9d9ec7bb6e8e7e2331e5b56844\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3dd53e24a54996b6ad6ce85cd99d6da7\";a:5:{s:6:\"source\";s:32:\"3dd53e24a54996b6ad6ce85cd99d6da7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"75d2f62e70c7dbc4371306e923555605\";a:5:{s:6:\"source\";s:32:\"75d2f62e70c7dbc4371306e923555605\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0403e2fe2f6349bbb667feb1a447bea1\";a:5:{s:6:\"source\";s:32:\"0403e2fe2f6349bbb667feb1a447bea1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9c6fdb360ea0aad2e16aa2b8d16bca4c\";a:5:{s:6:\"source\";s:32:\"9c6fdb360ea0aad2e16aa2b8d16bca4c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d9287631441773305a2c8a549db7f1c1\";a:5:{s:6:\"source\";s:32:\"d9287631441773305a2c8a549db7f1c1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7c1775f3b5607f16872849900a105cdc\";a:5:{s:6:\"source\";s:32:\"7c1775f3b5607f16872849900a105cdc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b15cfa4971cc19757da64921ea6e8b56\";a:5:{s:6:\"source\";s:32:\"b15cfa4971cc19757da64921ea6e8b56\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cc66dd03a498afcf5a2ff03ae4f09abf\";a:5:{s:6:\"source\";s:32:\"cc66dd03a498afcf5a2ff03ae4f09abf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0141a48547ab3bb9703d4c57588e229d\";a:5:{s:6:\"source\";s:32:\"0141a48547ab3bb9703d4c57588e229d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e726614f8742d231385898a409c0b2ec\";a:5:{s:6:\"source\";s:32:\"e726614f8742d231385898a409c0b2ec\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f1c947bf2dbfff34cc9c0fe976922d2d\";a:5:{s:6:\"source\";s:32:\"f1c947bf2dbfff34cc9c0fe976922d2d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a4df938772298c2912a11ad4e510ed37\";a:5:{s:6:\"source\";s:32:\"a4df938772298c2912a11ad4e510ed37\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"98c321c6c2c39830a0be8b71179a79d7\";a:5:{s:6:\"source\";s:32:\"98c321c6c2c39830a0be8b71179a79d7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d4dd4cedeecd75f71e228196b6f20f73\";a:5:{s:6:\"source\";s:32:\"d4dd4cedeecd75f71e228196b6f20f73\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"98d6cf901f9f1b644e8a1649a1e9fd96\";a:5:{s:6:\"source\";s:32:\"98d6cf901f9f1b644e8a1649a1e9fd96\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"165cd4a700ff8329f6a55cd1dff0f64c\";a:5:{s:6:\"source\";s:32:\"165cd4a700ff8329f6a55cd1dff0f64c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eeccb9222109b9d3267025fad7c47e3b\";a:5:{s:6:\"source\";s:32:\"eeccb9222109b9d3267025fad7c47e3b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"754c299d581e7287e7d34bedf99debd7\";a:5:{s:6:\"source\";s:32:\"754c299d581e7287e7d34bedf99debd7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8f526f012391d7e4d7a23a3b73d5f3a0\";a:5:{s:6:\"source\";s:32:\"8f526f012391d7e4d7a23a3b73d5f3a0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f1cfaf7bdb35b52798f39b9b46d9b0e4\";a:5:{s:6:\"source\";s:32:\"f1cfaf7bdb35b52798f39b9b46d9b0e4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7c503380bff57982e0283ecf4cd4a764\";a:5:{s:6:\"source\";s:32:\"7c503380bff57982e0283ecf4cd4a764\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"59d929bb4bb78b4cbf4c28bf29b6b58f\";a:5:{s:6:\"source\";s:32:\"59d929bb4bb78b4cbf4c28bf29b6b58f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1162eb0228e0356e5d890fa497d266fe\";a:5:{s:6:\"source\";s:32:\"1162eb0228e0356e5d890fa497d266fe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bde62fee8e72d3c3168f281170a2ad33\";a:5:{s:6:\"source\";s:32:\"bde62fee8e72d3c3168f281170a2ad33\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"00d9c6d3dd084c1d6a7588c2ef798e28\";a:5:{s:6:\"source\";s:32:\"00d9c6d3dd084c1d6a7588c2ef798e28\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"019190c05a94dfc5495568315c1d8f19\";a:5:{s:6:\"source\";s:32:\"019190c05a94dfc5495568315c1d8f19\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8ad06a481ea1d29cfdeafbdeeaca36f3\";a:5:{s:6:\"source\";s:32:\"8ad06a481ea1d29cfdeafbdeeaca36f3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d36683a37d0a490ed4d504fb1d8bd92c\";a:5:{s:6:\"source\";s:32:\"d36683a37d0a490ed4d504fb1d8bd92c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"255172868858fc1aac72102793436093\";a:5:{s:6:\"source\";s:32:\"255172868858fc1aac72102793436093\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"34d83fd674a9fe4e86b9351a4d368fde\";a:5:{s:6:\"source\";s:32:\"34d83fd674a9fe4e86b9351a4d368fde\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7ecb51fdd2966f929370c33e543c717a\";a:5:{s:6:\"source\";s:32:\"7ecb51fdd2966f929370c33e543c717a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d38530ea0989dcf3639f95fd3e322ead\";a:5:{s:6:\"source\";s:32:\"d38530ea0989dcf3639f95fd3e322ead\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fccbb30a21f80edc358f9a9fc1edee60\";a:5:{s:6:\"source\";s:32:\"fccbb30a21f80edc358f9a9fc1edee60\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d56537c11bf90490d5e6ade7ad834ad\";a:5:{s:6:\"source\";s:32:\"4d56537c11bf90490d5e6ade7ad834ad\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7174d5985dca8e8fedc06b0985a69896\";a:5:{s:6:\"source\";s:32:\"7174d5985dca8e8fedc06b0985a69896\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d9c618f7abdbd281ee2f293059c42f4f\";a:5:{s:6:\"source\";s:32:\"d9c618f7abdbd281ee2f293059c42f4f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d6ffec966f6cb77d5d1a3892da0fda39\";a:5:{s:6:\"source\";s:32:\"d6ffec966f6cb77d5d1a3892da0fda39\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0466ef4068fb455f4e80028b029decc8\";a:5:{s:6:\"source\";s:32:\"0466ef4068fb455f4e80028b029decc8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"acbe84c3a17866e89eb5c969e9aac901\";a:5:{s:6:\"source\";s:32:\"acbe84c3a17866e89eb5c969e9aac901\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1329569af04cbd2fc6ea809c55ad9b1e\";a:5:{s:6:\"source\";s:32:\"1329569af04cbd2fc6ea809c55ad9b1e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"41357acbe2bb1ef19bd4e6be597b0d90\";a:5:{s:6:\"source\";s:32:\"41357acbe2bb1ef19bd4e6be597b0d90\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"529f0ede3e05ceda121824c0076fcdd5\";a:5:{s:6:\"source\";s:32:\"529f0ede3e05ceda121824c0076fcdd5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"27080b596a31896ce8ae36dfb91516b8\";a:5:{s:6:\"source\";s:32:\"27080b596a31896ce8ae36dfb91516b8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c38977fa60b7b34137ec3a5efbedb141\";a:5:{s:6:\"source\";s:32:\"c38977fa60b7b34137ec3a5efbedb141\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5dc8ea2309e4c1bda91cce02abb65371\";a:5:{s:6:\"source\";s:32:\"5dc8ea2309e4c1bda91cce02abb65371\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3d8851e9465ddc258dc797a4f40f2841\";a:5:{s:6:\"source\";s:32:\"3d8851e9465ddc258dc797a4f40f2841\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"115bbd97073b2b1b7ba8591445617305\";a:5:{s:6:\"source\";s:32:\"115bbd97073b2b1b7ba8591445617305\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1d9d608bc03c1a0f7337ff54169379c4\";a:5:{s:6:\"source\";s:32:\"1d9d608bc03c1a0f7337ff54169379c4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c0851ea72a3cc828a0ee2e7330659b2c\";a:5:{s:6:\"source\";s:32:\"c0851ea72a3cc828a0ee2e7330659b2c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"20d83039ca955c3678a4c020bdb6fb44\";a:5:{s:6:\"source\";s:32:\"20d83039ca955c3678a4c020bdb6fb44\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"67d3924362b9a4cc43534b2dfe51ff47\";a:5:{s:6:\"source\";s:32:\"67d3924362b9a4cc43534b2dfe51ff47\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ae1772ab88ec975ef390f0c50bf67105\";a:5:{s:6:\"source\";s:32:\"ae1772ab88ec975ef390f0c50bf67105\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"01bcbba743b853718ca8de8e95900624\";a:5:{s:6:\"source\";s:32:\"01bcbba743b853718ca8de8e95900624\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"26e4cd733f2a497b66419e45e48661ef\";a:5:{s:6:\"source\";s:32:\"26e4cd733f2a497b66419e45e48661ef\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ca2418ef9d74852915d3a5cc9e867b46\";a:5:{s:6:\"source\";s:32:\"ca2418ef9d74852915d3a5cc9e867b46\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5f538e76fd0cda3d8f9bfa14eb9bfd41\";a:5:{s:6:\"source\";s:32:\"5f538e76fd0cda3d8f9bfa14eb9bfd41\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"87d786ceeabe0ae1cd93bb29ffd7b91d\";a:5:{s:6:\"source\";s:32:\"87d786ceeabe0ae1cd93bb29ffd7b91d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c406e2e4fb3265f16737da6ed786daa0\";a:5:{s:6:\"source\";s:32:\"c406e2e4fb3265f16737da6ed786daa0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"48d2bb05e4c1d23ea6ccdc0a6d0196c4\";a:5:{s:6:\"source\";s:32:\"48d2bb05e4c1d23ea6ccdc0a6d0196c4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f5866c828be31d7667937cffef791282\";a:5:{s:6:\"source\";s:32:\"f5866c828be31d7667937cffef791282\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6510b4cad4d0a10116486cb072d0b6f2\";a:5:{s:6:\"source\";s:32:\"6510b4cad4d0a10116486cb072d0b6f2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b053a77636623208015d2e295c1e70ea\";a:5:{s:6:\"source\";s:32:\"b053a77636623208015d2e295c1e70ea\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ea7ea2db1e7ed49b8f7e660e387ef250\";a:5:{s:6:\"source\";s:32:\"ea7ea2db1e7ed49b8f7e660e387ef250\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3cde39929943e634391ff58ce8148fe3\";a:5:{s:6:\"source\";s:32:\"3cde39929943e634391ff58ce8148fe3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"83bae6232b3fbfffb032dd4c7c649ead\";a:5:{s:6:\"source\";s:32:\"83bae6232b3fbfffb032dd4c7c649ead\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c5d843ac0fbe5cea3372f230b397288\";a:5:{s:6:\"source\";s:32:\"3c5d843ac0fbe5cea3372f230b397288\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"54ed695b796c14ab1396e2ab203b9f1a\";a:5:{s:6:\"source\";s:32:\"54ed695b796c14ab1396e2ab203b9f1a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e465316bb1fdc9120bfce0eee27236e1\";a:5:{s:6:\"source\";s:32:\"e465316bb1fdc9120bfce0eee27236e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"844df7d6e0459952371ca35b46d83a09\";a:5:{s:6:\"source\";s:32:\"844df7d6e0459952371ca35b46d83a09\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ad38599649365fa2d31ac500cfaf115a\";a:5:{s:6:\"source\";s:32:\"ad38599649365fa2d31ac500cfaf115a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b6657123dac36ae94f4ef7bb02127730\";a:5:{s:6:\"source\";s:32:\"b6657123dac36ae94f4ef7bb02127730\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"551eeec8a19a0213c35e1e2368b99e97\";a:5:{s:6:\"source\";s:32:\"551eeec8a19a0213c35e1e2368b99e97\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3253d7ce888f8132821caa255def8dff\";a:5:{s:6:\"source\";s:32:\"3253d7ce888f8132821caa255def8dff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b3e135cc8c677d50f18266a39033073f\";a:5:{s:6:\"source\";s:32:\"b3e135cc8c677d50f18266a39033073f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"26d7a7efd0ccb1abc382c89efb6c788b\";a:5:{s:6:\"source\";s:32:\"26d7a7efd0ccb1abc382c89efb6c788b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8375cd0e5472f0acea46439d39d5d568\";a:5:{s:6:\"source\";s:32:\"8375cd0e5472f0acea46439d39d5d568\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2bbad662403fc611e31bb9b859fad27d\";a:5:{s:6:\"source\";s:32:\"2bbad662403fc611e31bb9b859fad27d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"11a53ffbba3672810acbe1cd9814396c\";a:5:{s:6:\"source\";s:32:\"11a53ffbba3672810acbe1cd9814396c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"36ce69d920a9c293933c087ce9c1a097\";a:5:{s:6:\"source\";s:32:\"36ce69d920a9c293933c087ce9c1a097\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"601f30048860871b9501ce2da4bc35f1\";a:5:{s:6:\"source\";s:32:\"601f30048860871b9501ce2da4bc35f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"64f09c4969642e5c531b8c43d3b54138\";a:5:{s:6:\"source\";s:32:\"64f09c4969642e5c531b8c43d3b54138\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6e1ad2d39235e7cf51611a4f2e547115\";a:5:{s:6:\"source\";s:32:\"6e1ad2d39235e7cf51611a4f2e547115\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a6e135ebf6b5682d9d307a1dd29d2d37\";a:5:{s:6:\"source\";s:32:\"a6e135ebf6b5682d9d307a1dd29d2d37\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4a1e5f7e106db1702480dca69b25fae4\";a:5:{s:6:\"source\";s:32:\"4a1e5f7e106db1702480dca69b25fae4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2911f26bf8484e0e233f3804c7640c51\";a:5:{s:6:\"source\";s:32:\"2911f26bf8484e0e233f3804c7640c51\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9affef7b1749dfbd0d3b741b9471207d\";a:5:{s:6:\"source\";s:32:\"9affef7b1749dfbd0d3b741b9471207d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b6743415b1e5d1777ea1481ee973ae08\";a:5:{s:6:\"source\";s:32:\"b6743415b1e5d1777ea1481ee973ae08\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f847e4394e3d60b529bedd2ac8087bc6\";a:5:{s:6:\"source\";s:32:\"f847e4394e3d60b529bedd2ac8087bc6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c5e4b4c0a42ea519b706066d26a56532\";a:5:{s:6:\"source\";s:32:\"c5e4b4c0a42ea519b706066d26a56532\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a57fecc80f7c090e65174c0d54d631a5\";a:5:{s:6:\"source\";s:32:\"a57fecc80f7c090e65174c0d54d631a5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6612bc42bbca76ab32d371a9734fd538\";a:5:{s:6:\"source\";s:32:\"6612bc42bbca76ab32d371a9734fd538\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"634d733974cfaee3115b4b20ab254b08\";a:5:{s:6:\"source\";s:32:\"634d733974cfaee3115b4b20ab254b08\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7c2997ef22ab01cc13bb28f2d63ec907\";a:5:{s:6:\"source\";s:32:\"7c2997ef22ab01cc13bb28f2d63ec907\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c9a6b514ddcd890e77602e80dc187438\";a:5:{s:6:\"source\";s:32:\"c9a6b514ddcd890e77602e80dc187438\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6ffc6299eb707c57c9d27eb039f0c2f2\";a:5:{s:6:\"source\";s:32:\"6ffc6299eb707c57c9d27eb039f0c2f2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f93848fa9701975a8ee6867a4f884084\";a:5:{s:6:\"source\";s:32:\"f93848fa9701975a8ee6867a4f884084\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f862a53214da74cf369111ebdc7a6585\";a:5:{s:6:\"source\";s:32:\"f862a53214da74cf369111ebdc7a6585\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0654ab5d18bcdbe13c8bb962f29d0a29\";a:5:{s:6:\"source\";s:32:\"0654ab5d18bcdbe13c8bb962f29d0a29\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4bee92e9e842cd85d65027a02410921e\";a:5:{s:6:\"source\";s:32:\"4bee92e9e842cd85d65027a02410921e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"577d8ac5b9b548b5769649272ffd697a\";a:5:{s:6:\"source\";s:32:\"577d8ac5b9b548b5769649272ffd697a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4c7b92c179bea88101df94af7c6585e9\";a:5:{s:6:\"source\";s:32:\"4c7b92c179bea88101df94af7c6585e9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"21f1d3d4a7cd4573874b05ef9c03049e\";a:5:{s:6:\"source\";s:32:\"21f1d3d4a7cd4573874b05ef9c03049e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9a7d6d768640d5dc807c33db741a21ed\";a:5:{s:6:\"source\";s:32:\"9a7d6d768640d5dc807c33db741a21ed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f5d43fd3806cd2e20ebb68abee5546ff\";a:5:{s:6:\"source\";s:32:\"f5d43fd3806cd2e20ebb68abee5546ff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"966aff2e1208f0032aa19c95068af22e\";a:5:{s:6:\"source\";s:32:\"966aff2e1208f0032aa19c95068af22e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1247400589f798d8d9c367b353bd026f\";a:5:{s:6:\"source\";s:32:\"1247400589f798d8d9c367b353bd026f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"42cbb8736de2989e3e781e8f5c64d6c3\";a:5:{s:6:\"source\";s:32:\"42cbb8736de2989e3e781e8f5c64d6c3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5a38bca5e3fe9be3b01b450363f775b6\";a:5:{s:6:\"source\";s:32:\"5a38bca5e3fe9be3b01b450363f775b6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c8c3125831a155eee870afe6f004a37f\";a:5:{s:6:\"source\";s:32:\"c8c3125831a155eee870afe6f004a37f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0ef6e2fbcca43403e6a775b27b0b3be3\";a:5:{s:6:\"source\";s:32:\"0ef6e2fbcca43403e6a775b27b0b3be3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d2ca4d5e54332c481633cb242b62c93a\";a:5:{s:6:\"source\";s:32:\"d2ca4d5e54332c481633cb242b62c93a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"112e9164f43a8fb6b3bb47cb7ad64e00\";a:5:{s:6:\"source\";s:32:\"112e9164f43a8fb6b3bb47cb7ad64e00\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3a162e17bb2e69f3606ff6e4d5ddd7cf\";a:5:{s:6:\"source\";s:32:\"3a162e17bb2e69f3606ff6e4d5ddd7cf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b545e809a8c78a2cdaaba70d34623723\";a:5:{s:6:\"source\";s:32:\"b545e809a8c78a2cdaaba70d34623723\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4c29b27ca1c916167977a59f0b794234\";a:5:{s:6:\"source\";s:32:\"4c29b27ca1c916167977a59f0b794234\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"823f97f7e9e01f436c933c28842661d6\";a:5:{s:6:\"source\";s:32:\"823f97f7e9e01f436c933c28842661d6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a1aee95b31757d68d2df49bb2db6f4e4\";a:5:{s:6:\"source\";s:32:\"a1aee95b31757d68d2df49bb2db6f4e4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c28af12711320e2174cfd0fba8e1b302\";a:5:{s:6:\"source\";s:32:\"c28af12711320e2174cfd0fba8e1b302\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"45db8e113e246af04d4f2432ae8019db\";a:5:{s:6:\"source\";s:32:\"45db8e113e246af04d4f2432ae8019db\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d0a39fbd9944afbe2efd4513b620f7c2\";a:5:{s:6:\"source\";s:32:\"d0a39fbd9944afbe2efd4513b620f7c2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d70a5c346a1df5b2221ae0aaef85329a\";a:5:{s:6:\"source\";s:32:\"d70a5c346a1df5b2221ae0aaef85329a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"169835093e98b3e88cc718f3dec6818e\";a:5:{s:6:\"source\";s:32:\"169835093e98b3e88cc718f3dec6818e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"da13ede8882d13d39ab5fa00e57f2756\";a:5:{s:6:\"source\";s:32:\"da13ede8882d13d39ab5fa00e57f2756\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"42cbe9e6309c7da4c22955335844b0d5\";a:5:{s:6:\"source\";s:32:\"42cbe9e6309c7da4c22955335844b0d5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2d4a9121b72808bae6a2e9cf4b5c5788\";a:5:{s:6:\"source\";s:32:\"2d4a9121b72808bae6a2e9cf4b5c5788\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5195cc89feba8dc34a669a1120bbaedb\";a:5:{s:6:\"source\";s:32:\"5195cc89feba8dc34a669a1120bbaedb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2d0bf48a56313b7280a5d5c20c2b2531\";a:5:{s:6:\"source\";s:32:\"2d0bf48a56313b7280a5d5c20c2b2531\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bf4de0cedd777e6fd2a2afc9211bcb52\";a:5:{s:6:\"source\";s:32:\"bf4de0cedd777e6fd2a2afc9211bcb52\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b91acd0d2c31e5e4fd5f70f6163974b9\";a:5:{s:6:\"source\";s:32:\"b91acd0d2c31e5e4fd5f70f6163974b9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fb10c15e13b2f9b8f2e7580967af7156\";a:5:{s:6:\"source\";s:32:\"fb10c15e13b2f9b8f2e7580967af7156\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"336921ce7a39f93c05b3a5dbf4d7a4af\";a:5:{s:6:\"source\";s:32:\"336921ce7a39f93c05b3a5dbf4d7a4af\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d36d6446ca49ae662e9fdd8d06576a4\";a:5:{s:6:\"source\";s:32:\"4d36d6446ca49ae662e9fdd8d06576a4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c06598a739ea81f3af9491faf3e855d1\";a:5:{s:6:\"source\";s:32:\"c06598a739ea81f3af9491faf3e855d1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"408fbe08b899fc7fdf6255d9cea5efb1\";a:5:{s:6:\"source\";s:32:\"408fbe08b899fc7fdf6255d9cea5efb1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"258a2073f2beb00b48580ad8c51c40fb\";a:5:{s:6:\"source\";s:32:\"258a2073f2beb00b48580ad8c51c40fb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5f524acf159f91b031222a835ca786f1\";a:5:{s:6:\"source\";s:32:\"5f524acf159f91b031222a835ca786f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"93b3f2324143f0f1eacc44ea0f318401\";a:5:{s:6:\"source\";s:32:\"93b3f2324143f0f1eacc44ea0f318401\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b600d2c2bd08e48166c1e7a47590daa4\";a:5:{s:6:\"source\";s:32:\"b600d2c2bd08e48166c1e7a47590daa4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6cbe394d24e4706c4dca43debcf02d23\";a:5:{s:6:\"source\";s:32:\"6cbe394d24e4706c4dca43debcf02d23\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"75bbc1bbba6f3e610d308acc088af69f\";a:5:{s:6:\"source\";s:32:\"75bbc1bbba6f3e610d308acc088af69f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6390514a0185d99e15899ff783cc204c\";a:5:{s:6:\"source\";s:32:\"6390514a0185d99e15899ff783cc204c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f1841279183a040f3dde981747221a5\";a:5:{s:6:\"source\";s:32:\"7f1841279183a040f3dde981747221a5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ea966657f1d81dbc5bf9ff7bf8a8cbce\";a:5:{s:6:\"source\";s:32:\"ea966657f1d81dbc5bf9ff7bf8a8cbce\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"73729171c9102aacae37674aa6e49ece\";a:5:{s:6:\"source\";s:32:\"73729171c9102aacae37674aa6e49ece\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f1ea6ec3e38dd9c4430931b68b702ffe\";a:5:{s:6:\"source\";s:32:\"f1ea6ec3e38dd9c4430931b68b702ffe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9d6d85864ff0cd3835dad04f0900fc20\";a:5:{s:6:\"source\";s:32:\"9d6d85864ff0cd3835dad04f0900fc20\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"01661fab8454180b5e5205fbdb023c61\";a:5:{s:6:\"source\";s:32:\"01661fab8454180b5e5205fbdb023c61\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5b5b208a924ad307ad6fcd4af198fc9e\";a:5:{s:6:\"source\";s:32:\"5b5b208a924ad307ad6fcd4af198fc9e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f6bf48563a6e0d8f4e5542f27bf73720\";a:5:{s:6:\"source\";s:32:\"f6bf48563a6e0d8f4e5542f27bf73720\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c93ec110b827fcc59a12cc9541bf50da\";a:5:{s:6:\"source\";s:32:\"c93ec110b827fcc59a12cc9541bf50da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"171ee80847eb95d053bfac6e3aeaf115\";a:5:{s:6:\"source\";s:32:\"171ee80847eb95d053bfac6e3aeaf115\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"872be9356eea8dbf4029a59d5c671a2e\";a:5:{s:6:\"source\";s:32:\"872be9356eea8dbf4029a59d5c671a2e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f2ab3ee5870ec62024975840951b6868\";a:5:{s:6:\"source\";s:32:\"f2ab3ee5870ec62024975840951b6868\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7f429161740e1bd75dcc9cbfdb0e438d\";a:5:{s:6:\"source\";s:32:\"7f429161740e1bd75dcc9cbfdb0e438d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"125f3d8ed5ffc1ae07736d3c9c3e2d3f\";a:5:{s:6:\"source\";s:32:\"125f3d8ed5ffc1ae07736d3c9c3e2d3f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1b78f2cbe818c6de4c068cd3ec978558\";a:5:{s:6:\"source\";s:32:\"1b78f2cbe818c6de4c068cd3ec978558\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1271eb477f89c574572730cacc8d1add\";a:5:{s:6:\"source\";s:32:\"1271eb477f89c574572730cacc8d1add\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"eafa2c7bfd808b6e040a6bc55fb10798\";a:5:{s:6:\"source\";s:32:\"eafa2c7bfd808b6e040a6bc55fb10798\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"48d9f2d6586fe3b0d197adf1ea75cb8b\";a:5:{s:6:\"source\";s:32:\"48d9f2d6586fe3b0d197adf1ea75cb8b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9e06e6b9f50b24c8346462e0328ee1b2\";a:5:{s:6:\"source\";s:32:\"9e06e6b9f50b24c8346462e0328ee1b2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6ce4bee0a6a389029b67f499689a78fa\";a:5:{s:6:\"source\";s:32:\"6ce4bee0a6a389029b67f499689a78fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7a36b9c49bdf78fefacbd6673498a413\";a:5:{s:6:\"source\";s:32:\"7a36b9c49bdf78fefacbd6673498a413\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"226e23f914231a7981d63fe59e1fe747\";a:5:{s:6:\"source\";s:32:\"226e23f914231a7981d63fe59e1fe747\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ea3105d8399bfc41dd08566b59060dc6\";a:5:{s:6:\"source\";s:32:\"ea3105d8399bfc41dd08566b59060dc6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1a462bdde73ad4420920b43a7491e819\";a:5:{s:6:\"source\";s:32:\"1a462bdde73ad4420920b43a7491e819\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8a4819ccd233672054b9562e7ebb15c1\";a:5:{s:6:\"source\";s:32:\"8a4819ccd233672054b9562e7ebb15c1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0523d4f9fa01b2318d398ce3861624ca\";a:5:{s:6:\"source\";s:32:\"0523d4f9fa01b2318d398ce3861624ca\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"27b8bb6cbeac68441543fd15f20be148\";a:5:{s:6:\"source\";s:32:\"27b8bb6cbeac68441543fd15f20be148\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b255fddba3fb0160c1b9fdd03c119d18\";a:5:{s:6:\"source\";s:32:\"b255fddba3fb0160c1b9fdd03c119d18\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a120162cd97f430612c6a1505ce7029a\";a:5:{s:6:\"source\";s:32:\"a120162cd97f430612c6a1505ce7029a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c041109cd7ad70f6cfc230a4592792da\";a:5:{s:6:\"source\";s:32:\"c041109cd7ad70f6cfc230a4592792da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"60b2f157eb7aec726875b4e765876081\";a:5:{s:6:\"source\";s:32:\"60b2f157eb7aec726875b4e765876081\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8cbc34ad654a899936660fb853189417\";a:5:{s:6:\"source\";s:32:\"8cbc34ad654a899936660fb853189417\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d984560a50a7a210c2add7b2035d624f\";a:5:{s:6:\"source\";s:32:\"d984560a50a7a210c2add7b2035d624f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6b46d06b6e2db0d8594876d390e3998a\";a:5:{s:6:\"source\";s:32:\"6b46d06b6e2db0d8594876d390e3998a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"72efb1c0ed5a3fc6e9fc2c43cf30dd85\";a:5:{s:6:\"source\";s:32:\"72efb1c0ed5a3fc6e9fc2c43cf30dd85\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e5d8e3b2f01fbc5c5c06db0505ee8e6b\";a:5:{s:6:\"source\";s:32:\"e5d8e3b2f01fbc5c5c06db0505ee8e6b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"05a2c0cf9242502979df8e3725cd927d\";a:5:{s:6:\"source\";s:32:\"05a2c0cf9242502979df8e3725cd927d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"181e126ff0e32750c97d88b91ababcd0\";a:5:{s:6:\"source\";s:32:\"181e126ff0e32750c97d88b91ababcd0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"550fb7c8d1b838e477d86756849f71a3\";a:5:{s:6:\"source\";s:32:\"550fb7c8d1b838e477d86756849f71a3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"683a020dbb67117bb1e26cec67cfc2d0\";a:5:{s:6:\"source\";s:32:\"683a020dbb67117bb1e26cec67cfc2d0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"912712aa13daca601fd86f452550caa5\";a:5:{s:6:\"source\";s:32:\"912712aa13daca601fd86f452550caa5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f983ea673525e691111b8b368ba2bf1b\";a:5:{s:6:\"source\";s:32:\"f983ea673525e691111b8b368ba2bf1b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4fc81bb30c59e7cecc4a25de2af79c96\";a:5:{s:6:\"source\";s:32:\"4fc81bb30c59e7cecc4a25de2af79c96\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"abb1a04156b2ec9b2937ef2a61fb073f\";a:5:{s:6:\"source\";s:32:\"abb1a04156b2ec9b2937ef2a61fb073f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"509e8b7630fc49284b5226e71f8f2a91\";a:5:{s:6:\"source\";s:32:\"509e8b7630fc49284b5226e71f8f2a91\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3c5924621d3b491bc3c5d13cd4d004d0\";a:5:{s:6:\"source\";s:32:\"3c5924621d3b491bc3c5d13cd4d004d0\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ab7e2af14d8b11a56b9868d4f82319a4\";a:5:{s:6:\"source\";s:32:\"ab7e2af14d8b11a56b9868d4f82319a4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"416715b4f8091b2382be8d3c943342b6\";a:5:{s:6:\"source\";s:32:\"416715b4f8091b2382be8d3c943342b6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"57e8ea920d68099d7519a24e79c0c705\";a:5:{s:6:\"source\";s:32:\"57e8ea920d68099d7519a24e79c0c705\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8f783fe6b55b14617a3a202e4486415a\";a:5:{s:6:\"source\";s:32:\"8f783fe6b55b14617a3a202e4486415a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6df943ffb39b36bbb9d03461ff39a994\";a:5:{s:6:\"source\";s:32:\"6df943ffb39b36bbb9d03461ff39a994\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2e639a7eb1c831eff53737bca5933ca6\";a:5:{s:6:\"source\";s:32:\"2e639a7eb1c831eff53737bca5933ca6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1ed598e32b311325780f3d8de9baa612\";a:5:{s:6:\"source\";s:32:\"1ed598e32b311325780f3d8de9baa612\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"18e7b813d23a941eda6b173e3d55690c\";a:5:{s:6:\"source\";s:32:\"18e7b813d23a941eda6b173e3d55690c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"164a99ab090afb3da3b458c8b23f2641\";a:5:{s:6:\"source\";s:32:\"164a99ab090afb3da3b458c8b23f2641\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"062f2e89a19a24c8ba6d2f6326a0c388\";a:5:{s:6:\"source\";s:32:\"062f2e89a19a24c8ba6d2f6326a0c388\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"26e3157493bc77ddacf452857770572c\";a:5:{s:6:\"source\";s:32:\"26e3157493bc77ddacf452857770572c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"041f0e44d7b37ab6ddf565f23eb8d337\";a:5:{s:6:\"source\";s:32:\"041f0e44d7b37ab6ddf565f23eb8d337\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0b3ab910af977263053e452250837e94\";a:5:{s:6:\"source\";s:32:\"0b3ab910af977263053e452250837e94\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef5181cfd50c54d4833fc251ee0d9ac6\";a:5:{s:6:\"source\";s:32:\"ef5181cfd50c54d4833fc251ee0d9ac6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d558e63c2c157814f2b365f2116c8571\";a:5:{s:6:\"source\";s:32:\"d558e63c2c157814f2b365f2116c8571\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d000c124a09c9824f1effdfa69f0e751\";a:5:{s:6:\"source\";s:32:\"d000c124a09c9824f1effdfa69f0e751\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d17ea3baa702c9e82781f9a30cd6abc\";a:5:{s:6:\"source\";s:32:\"4d17ea3baa702c9e82781f9a30cd6abc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"80a39d68904d9e6e60544734b877854c\";a:5:{s:6:\"source\";s:32:\"80a39d68904d9e6e60544734b877854c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"78f5ef810b625dab460bc6946e94b1e4\";a:5:{s:6:\"source\";s:32:\"78f5ef810b625dab460bc6946e94b1e4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fc0cbc8c9c0ba9671362ea1569d4cc22\";a:5:{s:6:\"source\";s:32:\"fc0cbc8c9c0ba9671362ea1569d4cc22\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4b06631f28115e542496d91c747d46c6\";a:5:{s:6:\"source\";s:32:\"4b06631f28115e542496d91c747d46c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5cb3b78297055e68ddc633f4d0104f8b\";a:5:{s:6:\"source\";s:32:\"5cb3b78297055e68ddc633f4d0104f8b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a204d0acbd00d2d53753461880497d4b\";a:5:{s:6:\"source\";s:32:\"a204d0acbd00d2d53753461880497d4b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cb2539cfab1e3afd9a8d2ea50f8fb356\";a:5:{s:6:\"source\";s:32:\"cb2539cfab1e3afd9a8d2ea50f8fb356\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d3c84be1ec527926c16fec39ad31a03c\";a:5:{s:6:\"source\";s:32:\"d3c84be1ec527926c16fec39ad31a03c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a7662a10f894ca4cf7f906b80e281c02\";a:5:{s:6:\"source\";s:32:\"a7662a10f894ca4cf7f906b80e281c02\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"fdfc6b04877bd29e861486fbe31e14ce\";a:5:{s:6:\"source\";s:32:\"fdfc6b04877bd29e861486fbe31e14ce\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"271d6f7ea34d96f867e09a7ad06dae98\";a:5:{s:6:\"source\";s:32:\"271d6f7ea34d96f867e09a7ad06dae98\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a28ef76f0d1df0152338ea136ad8d32b\";a:5:{s:6:\"source\";s:32:\"a28ef76f0d1df0152338ea136ad8d32b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c0012498a2cf0a88b14e489c9ad50d57\";a:5:{s:6:\"source\";s:32:\"c0012498a2cf0a88b14e489c9ad50d57\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a0c07437f67aeb42074dd148a370f98b\";a:5:{s:6:\"source\";s:32:\"a0c07437f67aeb42074dd148a370f98b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bafe7333c7fbadc067826a319c70cd00\";a:5:{s:6:\"source\";s:32:\"bafe7333c7fbadc067826a319c70cd00\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8332b5b5edb4dd5c77a2610fbbfb320d\";a:5:{s:6:\"source\";s:32:\"8332b5b5edb4dd5c77a2610fbbfb320d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f46c3ba3df578daa162ca9eb0cf3bf4f\";a:5:{s:6:\"source\";s:32:\"f46c3ba3df578daa162ca9eb0cf3bf4f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4d35213613946732ae99c2c47424e756\";a:5:{s:6:\"source\";s:32:\"4d35213613946732ae99c2c47424e756\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"05932b339e007b2ca3625ee6c467e213\";a:5:{s:6:\"source\";s:32:\"05932b339e007b2ca3625ee6c467e213\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5580503823cb4af3a0eec40488855edf\";a:5:{s:6:\"source\";s:32:\"5580503823cb4af3a0eec40488855edf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"45292fd697bf43985946421ccca45fc5\";a:5:{s:6:\"source\";s:32:\"45292fd697bf43985946421ccca45fc5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ed5ee0bdbb9de1d7196345aad41a8ecc\";a:5:{s:6:\"source\";s:32:\"ed5ee0bdbb9de1d7196345aad41a8ecc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e25fa4dc1901cbb5f6a46dbbaeb2aee9\";a:5:{s:6:\"source\";s:32:\"e25fa4dc1901cbb5f6a46dbbaeb2aee9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f3e602f5798c2b8f30ba7cbf9c9f5168\";a:5:{s:6:\"source\";s:32:\"f3e602f5798c2b8f30ba7cbf9c9f5168\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a903daf83efc843f00f93b0d5184d408\";a:5:{s:6:\"source\";s:32:\"a903daf83efc843f00f93b0d5184d408\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"00f9b231db216acc782ce42321fdc324\";a:5:{s:6:\"source\";s:32:\"00f9b231db216acc782ce42321fdc324\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3a18880ee437ef44e26025ef2f0e5342\";a:5:{s:6:\"source\";s:32:\"3a18880ee437ef44e26025ef2f0e5342\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f8d8eb969a864a2353d14f83400b009a\";a:5:{s:6:\"source\";s:32:\"f8d8eb969a864a2353d14f83400b009a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1635826a9fec60ef165af954e5af6038\";a:5:{s:6:\"source\";s:32:\"1635826a9fec60ef165af954e5af6038\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff13dfd446c34f7ebb20a81bad99cb7a\";a:5:{s:6:\"source\";s:32:\"ff13dfd446c34f7ebb20a81bad99cb7a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"75f3d5545ceeddfbcf77d403f6859e74\";a:5:{s:6:\"source\";s:32:\"75f3d5545ceeddfbcf77d403f6859e74\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d23f9cdc417c01e72b6d65917b5182b1\";a:5:{s:6:\"source\";s:32:\"d23f9cdc417c01e72b6d65917b5182b1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3b952ee6ab15ca64a9388ddfa8dd6f1c\";a:5:{s:6:\"source\";s:32:\"3b952ee6ab15ca64a9388ddfa8dd6f1c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d75c3a6088f07aff3a2ce2dc5d682c11\";a:5:{s:6:\"source\";s:32:\"d75c3a6088f07aff3a2ce2dc5d682c11\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3a25413264c0e23e725438737d69fbd5\";a:5:{s:6:\"source\";s:32:\"3a25413264c0e23e725438737d69fbd5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8052ee92875c17944a374728dc85d1d3\";a:5:{s:6:\"source\";s:32:\"8052ee92875c17944a374728dc85d1d3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1820465944083e29c64261f273a57fdc\";a:5:{s:6:\"source\";s:32:\"1820465944083e29c64261f273a57fdc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a28215f75bdb5ce08fc8ac66a2b6736d\";a:5:{s:6:\"source\";s:32:\"a28215f75bdb5ce08fc8ac66a2b6736d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a7c7a7c442a5eacc441d613e8dee56d9\";a:5:{s:6:\"source\";s:32:\"a7c7a7c442a5eacc441d613e8dee56d9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a74c69dcf79f580c0950e096e8a89af3\";a:5:{s:6:\"source\";s:32:\"a74c69dcf79f580c0950e096e8a89af3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"458e214e1e45ca5dd4765d3a33234b68\";a:5:{s:6:\"source\";s:32:\"458e214e1e45ca5dd4765d3a33234b68\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f6e56371034df48fd2741a1a2ddba4c2\";a:5:{s:6:\"source\";s:32:\"f6e56371034df48fd2741a1a2ddba4c2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d5ef219fd9a568263fee2c107fdc90f7\";a:5:{s:6:\"source\";s:32:\"d5ef219fd9a568263fee2c107fdc90f7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7a812fb5900af0830580cd5db9fa4f62\";a:5:{s:6:\"source\";s:32:\"7a812fb5900af0830580cd5db9fa4f62\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e57a91c4db230bb6d54f85452bf20b80\";a:5:{s:6:\"source\";s:32:\"e57a91c4db230bb6d54f85452bf20b80\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a368a7cfdb05a5a8045562915115a49d\";a:5:{s:6:\"source\";s:32:\"a368a7cfdb05a5a8045562915115a49d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e5073e3118b6fb6e33d9475c11be012c\";a:5:{s:6:\"source\";s:32:\"e5073e3118b6fb6e33d9475c11be012c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"350f05fc76af2094bf890d7bc1443240\";a:5:{s:6:\"source\";s:32:\"350f05fc76af2094bf890d7bc1443240\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4606be195c853898b9cd30bdb6f5fe2f\";a:5:{s:6:\"source\";s:32:\"4606be195c853898b9cd30bdb6f5fe2f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b235fed2738b6da0d4cedc13b45add80\";a:5:{s:6:\"source\";s:32:\"b235fed2738b6da0d4cedc13b45add80\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7391dc1a3336707e60d00b488a8f1baa\";a:5:{s:6:\"source\";s:32:\"7391dc1a3336707e60d00b488a8f1baa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"76feb35870ace78772a63e9d01a0fefa\";a:5:{s:6:\"source\";s:32:\"76feb35870ace78772a63e9d01a0fefa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1199c148e07d4327a5f22a0a0789e353\";a:5:{s:6:\"source\";s:32:\"1199c148e07d4327a5f22a0a0789e353\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0b0acd176c9a254e29f25d68dcaa899e\";a:5:{s:6:\"source\";s:32:\"0b0acd176c9a254e29f25d68dcaa899e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2710bd766edefe789da7c936573f62b3\";a:5:{s:6:\"source\";s:32:\"2710bd766edefe789da7c936573f62b3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f2be2c5bb8d11ab7f88d306392655364\";a:5:{s:6:\"source\";s:32:\"f2be2c5bb8d11ab7f88d306392655364\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"026014e3d0a24dd44c538eab2531ecb8\";a:5:{s:6:\"source\";s:32:\"026014e3d0a24dd44c538eab2531ecb8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ff73d6cf21058d1e4b663957d36e10da\";a:5:{s:6:\"source\";s:32:\"ff73d6cf21058d1e4b663957d36e10da\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"73e2314b96c8f5e82e9a7bb364d2aeff\";a:5:{s:6:\"source\";s:32:\"73e2314b96c8f5e82e9a7bb364d2aeff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1746728119352a712a1d7dd41c92cf24\";a:5:{s:6:\"source\";s:32:\"1746728119352a712a1d7dd41c92cf24\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"73796b35c3f9269b34a2d1d9f22f7f6e\";a:5:{s:6:\"source\";s:32:\"73796b35c3f9269b34a2d1d9f22f7f6e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"219da14a2684b2e0a1cb4e176604691a\";a:5:{s:6:\"source\";s:32:\"219da14a2684b2e0a1cb4e176604691a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f2ddaec7ca4985a87f96e4a847084b68\";a:5:{s:6:\"source\";s:32:\"f2ddaec7ca4985a87f96e4a847084b68\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e4aa0fe09fb64bbe137d08eb4dbbdc6c\";a:5:{s:6:\"source\";s:32:\"e4aa0fe09fb64bbe137d08eb4dbbdc6c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e2240150d1b4d94ee6b3e3199a0a3f31\";a:5:{s:6:\"source\";s:32:\"e2240150d1b4d94ee6b3e3199a0a3f31\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"64919a9631142339412183c14f7da1ea\";a:5:{s:6:\"source\";s:32:\"64919a9631142339412183c14f7da1ea\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b65af2613bf8ca44846fa3a8136d5a9b\";a:5:{s:6:\"source\";s:32:\"b65af2613bf8ca44846fa3a8136d5a9b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6f9b3d7b7d2f55edd482b7fb876aad76\";a:5:{s:6:\"source\";s:32:\"6f9b3d7b7d2f55edd482b7fb876aad76\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ef83fed0beccac181b43b4ad861d93b5\";a:5:{s:6:\"source\";s:32:\"ef83fed0beccac181b43b4ad861d93b5\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3a36591bd6a09a7d73f503d4602e6f4f\";a:5:{s:6:\"source\";s:32:\"3a36591bd6a09a7d73f503d4602e6f4f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3e735697a7a1d61beaec6297fcc5ffa1\";a:5:{s:6:\"source\";s:32:\"3e735697a7a1d61beaec6297fcc5ffa1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c6d36e677c6d8c4a39a267ec5cb7759c\";a:5:{s:6:\"source\";s:32:\"c6d36e677c6d8c4a39a267ec5cb7759c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"261297bb2a532664170fd66c9bec3210\";a:5:{s:6:\"source\";s:32:\"261297bb2a532664170fd66c9bec3210\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a746b9b74bb03d815b6ab03ae9eb14dd\";a:5:{s:6:\"source\";s:32:\"a746b9b74bb03d815b6ab03ae9eb14dd\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"257442790f8b8a39d4b2cda0bf843a23\";a:5:{s:6:\"source\";s:32:\"257442790f8b8a39d4b2cda0bf843a23\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d99b9fb321d03210d6daeb24926d3a76\";a:5:{s:6:\"source\";s:32:\"d99b9fb321d03210d6daeb24926d3a76\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2f83955f9b8b347924027c971d82d3cb\";a:5:{s:6:\"source\";s:32:\"2f83955f9b8b347924027c971d82d3cb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"19b2c93304a3079e707565790a2fd18d\";a:5:{s:6:\"source\";s:32:\"19b2c93304a3079e707565790a2fd18d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a5e7b766207d8b699f597c1d94d1bf43\";a:5:{s:6:\"source\";s:32:\"a5e7b766207d8b699f597c1d94d1bf43\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"993e76324175c5df4ba3dd38a8d79cf4\";a:5:{s:6:\"source\";s:32:\"993e76324175c5df4ba3dd38a8d79cf4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2a67cf82cda9d0efc3982315492404bb\";a:5:{s:6:\"source\";s:32:\"2a67cf82cda9d0efc3982315492404bb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"44e20faf07fabbaae241ca56aa2a3358\";a:5:{s:6:\"source\";s:32:\"44e20faf07fabbaae241ca56aa2a3358\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"559fcb3b81ae1ff26c99ddc999538b6d\";a:5:{s:6:\"source\";s:32:\"559fcb3b81ae1ff26c99ddc999538b6d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9394458fdb640aec7dcb09ec38512f23\";a:5:{s:6:\"source\";s:32:\"9394458fdb640aec7dcb09ec38512f23\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4933460025d8bacf398f85f5cf5f5a46\";a:5:{s:6:\"source\";s:32:\"4933460025d8bacf398f85f5cf5f5a46\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"54fda9e90ed786dcc4ed09f9443207bf\";a:5:{s:6:\"source\";s:32:\"54fda9e90ed786dcc4ed09f9443207bf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c23842014fc40b47abffc1c61b90c639\";a:5:{s:6:\"source\";s:32:\"c23842014fc40b47abffc1c61b90c639\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6ed043562ff04935c9155f99810a0e60\";a:5:{s:6:\"source\";s:32:\"6ed043562ff04935c9155f99810a0e60\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"da84f408e9269701294ddc31e1a51eea\";a:5:{s:6:\"source\";s:32:\"da84f408e9269701294ddc31e1a51eea\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5d2ec1ba93692bd52e6b46ca577ce3ea\";a:5:{s:6:\"source\";s:32:\"5d2ec1ba93692bd52e6b46ca577ce3ea\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3a2de23b231dab6285f7c5fcc030198e\";a:5:{s:6:\"source\";s:32:\"3a2de23b231dab6285f7c5fcc030198e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"893138c7e4a1801d010bf630c24da4f2\";a:5:{s:6:\"source\";s:32:\"893138c7e4a1801d010bf630c24da4f2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d09e2db7730abdf964c6158c50d68f8e\";a:5:{s:6:\"source\";s:32:\"d09e2db7730abdf964c6158c50d68f8e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"95bec94ada9ff15bf7824ec142316979\";a:5:{s:6:\"source\";s:32:\"95bec94ada9ff15bf7824ec142316979\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3a1155c9d8e61cf655cbd5ffe3c952c9\";a:5:{s:6:\"source\";s:32:\"3a1155c9d8e61cf655cbd5ffe3c952c9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"837e2309f8d395a3f714dd48d84512fe\";a:5:{s:6:\"source\";s:32:\"837e2309f8d395a3f714dd48d84512fe\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"452ec3c83a91577687174cb947c92bed\";a:5:{s:6:\"source\";s:32:\"452ec3c83a91577687174cb947c92bed\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"680879ef7772f2acd3935de8723e4442\";a:5:{s:6:\"source\";s:32:\"680879ef7772f2acd3935de8723e4442\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c794d477f1a825e224f5b0869817b335\";a:5:{s:6:\"source\";s:32:\"c794d477f1a825e224f5b0869817b335\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"84f6171c2d3f48399d2502d3f89042ba\";a:5:{s:6:\"source\";s:32:\"84f6171c2d3f48399d2502d3f89042ba\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a67813d6eb7eec4113de731551c9f529\";a:5:{s:6:\"source\";s:32:\"a67813d6eb7eec4113de731551c9f529\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"573d97dca1d469f1717e2a81a1c62aff\";a:5:{s:6:\"source\";s:32:\"573d97dca1d469f1717e2a81a1c62aff\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ab2dd104a18dc0e3e50fc632732d0ac2\";a:5:{s:6:\"source\";s:32:\"ab2dd104a18dc0e3e50fc632732d0ac2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"bd8644d4097ea39ac62c086609ea9c8d\";a:5:{s:6:\"source\";s:32:\"bd8644d4097ea39ac62c086609ea9c8d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9f53683771a58a250fd0ac9bc86959f2\";a:5:{s:6:\"source\";s:32:\"9f53683771a58a250fd0ac9bc86959f2\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"342fd9d93e4902776b1c34107d004062\";a:5:{s:6:\"source\";s:32:\"342fd9d93e4902776b1c34107d004062\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"c6c85e88801982204032b4e38bcbbf85\";a:5:{s:6:\"source\";s:32:\"c6c85e88801982204032b4e38bcbbf85\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a132f673991ab1dc711df165e484d533\";a:5:{s:6:\"source\";s:32:\"a132f673991ab1dc711df165e484d533\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f83eca2b3aa2bb06200e063f3f11a6e1\";a:5:{s:6:\"source\";s:32:\"f83eca2b3aa2bb06200e063f3f11a6e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7e270f1698c42fee4169fc10a2e54d43\";a:5:{s:6:\"source\";s:32:\"7e270f1698c42fee4169fc10a2e54d43\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"641103e5a11ea6c46f426954581102a6\";a:5:{s:6:\"source\";s:32:\"641103e5a11ea6c46f426954581102a6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"51cd626474bbbfe502f01fb73eb60798\";a:5:{s:6:\"source\";s:32:\"51cd626474bbbfe502f01fb73eb60798\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1250fb23d9a75553167b3f0b199f943e\";a:5:{s:6:\"source\";s:32:\"1250fb23d9a75553167b3f0b199f943e\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"615482e8fa4e8e2987e2295d5c38db6a\";a:5:{s:6:\"source\";s:32:\"615482e8fa4e8e2987e2295d5c38db6a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"79273e04b434de44cd89bf6238f0bf14\";a:5:{s:6:\"source\";s:32:\"79273e04b434de44cd89bf6238f0bf14\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f6a5096b5072d1461968ee5be77cd3b4\";a:5:{s:6:\"source\";s:32:\"f6a5096b5072d1461968ee5be77cd3b4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0088a9dbd86b4af81d6f6ac7c10f30a9\";a:5:{s:6:\"source\";s:32:\"0088a9dbd86b4af81d6f6ac7c10f30a9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4274999c116be807d9005396727e17a7\";a:5:{s:6:\"source\";s:32:\"4274999c116be807d9005396727e17a7\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"8d2235999ae9c83e86a3bd0199876cf4\";a:5:{s:6:\"source\";s:32:\"8d2235999ae9c83e86a3bd0199876cf4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3894de40021064e5f9ca4c31e224a542\";a:5:{s:6:\"source\";s:32:\"3894de40021064e5f9ca4c31e224a542\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"5e85ea4adb3139c7f5361a2e4614f49c\";a:5:{s:6:\"source\";s:32:\"5e85ea4adb3139c7f5361a2e4614f49c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f76a6a57a3564a7db97cff759abd40fa\";a:5:{s:6:\"source\";s:32:\"f76a6a57a3564a7db97cff759abd40fa\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4e7f64ae80f2e37339f6591c1ac29e79\";a:5:{s:6:\"source\";s:32:\"4e7f64ae80f2e37339f6591c1ac29e79\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"666a88ff4a791309b67d974f3a25bcfc\";a:5:{s:6:\"source\";s:32:\"666a88ff4a791309b67d974f3a25bcfc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"11f9769ee5131e46b230077f90c2b46c\";a:5:{s:6:\"source\";s:32:\"11f9769ee5131e46b230077f90c2b46c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4c1f7ae20a0ba132cb6834827e23d023\";a:5:{s:6:\"source\";s:32:\"4c1f7ae20a0ba132cb6834827e23d023\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"37abfaa3ac00334d0e06194889339acf\";a:5:{s:6:\"source\";s:32:\"37abfaa3ac00334d0e06194889339acf\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"60fce8b4b05b6cfff0a8790a7f0f5b75\";a:5:{s:6:\"source\";s:32:\"60fce8b4b05b6cfff0a8790a7f0f5b75\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4ef29dc1be7b413d210f83559ded3ef4\";a:5:{s:6:\"source\";s:32:\"4ef29dc1be7b413d210f83559ded3ef4\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"b574e11ccbafdaf3fff13f47c3575108\";a:5:{s:6:\"source\";s:32:\"b574e11ccbafdaf3fff13f47c3575108\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d3233e58f8d01e7dbc2c250911f1e56d\";a:5:{s:6:\"source\";s:32:\"d3233e58f8d01e7dbc2c250911f1e56d\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aada0ab738e7122cf871668583ce069c\";a:5:{s:6:\"source\";s:32:\"aada0ab738e7122cf871668583ce069c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f9b1d823c260dc35f8afb90d04930c0b\";a:5:{s:6:\"source\";s:32:\"f9b1d823c260dc35f8afb90d04930c0b\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"be32ec94dd6af10cde0f8addbfe2c649\";a:5:{s:6:\"source\";s:32:\"be32ec94dd6af10cde0f8addbfe2c649\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0414ad6bcc71289127e02bc9568ceb03\";a:5:{s:6:\"source\";s:32:\"0414ad6bcc71289127e02bc9568ceb03\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0ccdafae832cf36f537b86fdbce8f4f1\";a:5:{s:6:\"source\";s:32:\"0ccdafae832cf36f537b86fdbce8f4f1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f222142546e6540cb9602a4cd674b708\";a:5:{s:6:\"source\";s:32:\"f222142546e6540cb9602a4cd674b708\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"9125b63847c9174918059f1edfeff7f3\";a:5:{s:6:\"source\";s:32:\"9125b63847c9174918059f1edfeff7f3\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"aff2f95fc973da5fd6be940ed0968083\";a:5:{s:6:\"source\";s:32:\"aff2f95fc973da5fd6be940ed0968083\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"7e0d8648c08149bfc5e5f2d6d405a21f\";a:5:{s:6:\"source\";s:32:\"7e0d8648c08149bfc5e5f2d6d405a21f\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"0cc81248266b16c5f714356adac46440\";a:5:{s:6:\"source\";s:32:\"0cc81248266b16c5f714356adac46440\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"d5181c542c0f8a91bdbac23e50eab7bb\";a:5:{s:6:\"source\";s:32:\"d5181c542c0f8a91bdbac23e50eab7bb\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"01a455547a6f8f935b1acab1e398ddd6\";a:5:{s:6:\"source\";s:32:\"01a455547a6f8f935b1acab1e398ddd6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a0920026553ff4c0775e7c76676dd7b9\";a:5:{s:6:\"source\";s:32:\"a0920026553ff4c0775e7c76676dd7b9\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"f99bacc14d1abd7e106df38c7006ad5c\";a:5:{s:6:\"source\";s:32:\"f99bacc14d1abd7e106df38c7006ad5c\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"a1640c3890b9fb9db868dc986c4688e1\";a:5:{s:6:\"source\";s:32:\"a1640c3890b9fb9db868dc986c4688e1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"81f7f22fea65b3739973735399c9546a\";a:5:{s:6:\"source\";s:32:\"81f7f22fea65b3739973735399c9546a\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"781dcf7553a3c7a896b78b55289be047\";a:5:{s:6:\"source\";s:32:\"781dcf7553a3c7a896b78b55289be047\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"385767340706cafa291b6f941e024f90\";a:5:{s:6:\"source\";s:32:\"385767340706cafa291b6f941e024f90\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"da7e1d56741acf3ad6d7f51961e5df45\";a:5:{s:6:\"source\";s:32:\"da7e1d56741acf3ad6d7f51961e5df45\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e183040fff63024ed5dd1552f334b2ec\";a:5:{s:6:\"source\";s:32:\"e183040fff63024ed5dd1552f334b2ec\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ca0ae085c7ad3e1f2d0947faabe100f8\";a:5:{s:6:\"source\";s:32:\"ca0ae085c7ad3e1f2d0947faabe100f8\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"2efa26d11e524ea098481d5c83bb97ec\";a:5:{s:6:\"source\";s:32:\"2efa26d11e524ea098481d5c83bb97ec\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"ea473fcc35a854f26a7ee1b06c688870\";a:5:{s:6:\"source\";s:32:\"ea473fcc35a854f26a7ee1b06c688870\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1e91fc0710e60ff84a1656c4a21111d1\";a:5:{s:6:\"source\";s:32:\"1e91fc0710e60ff84a1656c4a21111d1\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"6bae3257700e42be504096f0815cf823\";a:5:{s:6:\"source\";s:32:\"6bae3257700e42be504096f0815cf823\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"4cb8897eeb416916c722bef7a0303867\";a:5:{s:6:\"source\";s:32:\"4cb8897eeb416916c722bef7a0303867\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"e2b2042de3fb3bd60c00e85e086a3182\";a:5:{s:6:\"source\";s:32:\"e2b2042de3fb3bd60c00e85e086a3182\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"727795864a4e08e3edd49f437d60f349\";a:5:{s:6:\"source\";s:32:\"727795864a4e08e3edd49f437d60f349\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"3da86ea497b2286d8745fb9ebc2eddae\";a:5:{s:6:\"source\";s:32:\"3da86ea497b2286d8745fb9ebc2eddae\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"cd3f0d3cc48c4723f869256229720efc\";a:5:{s:6:\"source\";s:32:\"cd3f0d3cc48c4723f869256229720efc\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}s:32:\"1e45e4b3a72a35a0a050a813134db1c6\";a:5:{s:6:\"source\";s:32:\"1e45e4b3a72a35a0a050a813134db1c6\";s:11:\"destination\";b:0;s:6:\"map_by\";b:0;s:11:\"map_by_path\";b:0;s:12:\"map_by_title\";b:0;}}','no');
INSERT INTO `cuB_options` VALUES (3613,'flum_map_collection_5986','a:0:{}','no'),(3614,'flum_map_summary_5986','a:5:{s:6:\"source\";a:2:{s:7:\"success\";i:2446;s:4:\"fail\";i:3567;}s:11:\"destination\";a:2:{s:7:\"success\";i:261;s:4:\"fail\";i:0;}s:11:\"map_by_path\";i:0;s:12:\"map_by_title\";i:0;s:13:\"map_by_custom\";i:0;}','no'),(3615,'flum_map_stored_5986','1','no'),(3627,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":6,\"critical\":3}','yes'),(3703,'options_aliases_phones_2_alias','3','no'),(3704,'_options_aliases_phones_2_alias','field_59fwef239878231','no'),(3705,'options_aliases_phones_2_vanity_label','CALL','no'),(3706,'_options_aliases_phones_2_vanity_label','field_57239lksjdflksdf','no'),(3707,'options_aliases_phones_2_value','97450','no'),(3708,'_options_aliases_phones_2_value','field_59sdfjelwif48858','no'),(4156,'Tribe\\Project\\Site_Init\\DIVI_Before_Migration_Settings-schema','1','yes'),(4563,'enable_media_replace','a:4:{s:12:\"replace_type\";s:7:\"replace\";s:17:\"timestamp_replace\";i:2;s:12:\"new_location\";b:0;s:16:\"new_location_dir\";s:7:\"2022/02\";}','no'),(5035,'Tribe\\Project\\Site_Init\\All_In_One_SEO-schema','20','yes'),(5036,'action_scheduler_hybrid_store_demarkation','48567','yes'),(5037,'schema-ActionScheduler_StoreSchema','3.0.1639376019','yes'),(5038,'schema-ActionScheduler_LoggerSchema','2.0.1639376019','yes'),(5039,'widget_aioseo-breadcrumb-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(5040,'widget_aioseo-html-sitemap-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(5043,'aioseo_options','{\"internal\":[],\"webmasterTools\":{\"google\":\"ScncfkqfnkgA3msczh6NQg3J5O-vWrl_0zNbtW_XwJg\",\"bing\":\"\",\"yandex\":\"\",\"baidu\":\"\",\"pinterest\":\"\",\"microsoftClarityProjectId\":null,\"norton\":null,\"miscellaneousVerification\":null},\"breadcrumbs\":{\"enable\":true,\"separator\":\"&raquo;\",\"homepageLink\":true,\"homepageLabel\":\"Home\",\"breadcrumbPrefix\":null,\"archiveFormat\":\"Archives for #breadcrumb_archive_post_type_name\",\"searchResultFormat\":\"Search Results for \'#breadcrumb_search_string\'\",\"errorFormat404\":\"404 - Page Not Found\",\"showCurrentItem\":true,\"linkCurrentItem\":false,\"categoryFullHierarchy\":false,\"showBlogHome\":false},\"rssContent\":{\"before\":null,\"after\":\"&lt;p&gt;The post #post_link first appeared on #site_link.&lt;\\/p&gt;\"},\"advanced\":{\"truSeo\":true,\"headlineAnalyzer\":true,\"seoAnalysis\":true,\"dashboardWidgets\":false,\"announcements\":false,\"postTypes\":{\"all\":false,\"included\":[\"post\",\"page\",\"people\",\"landing-page\"]},\"taxonomies\":{\"all\":true,\"included\":[\"category\",\"post_tag\",\"product_cat\",\"product_tag\"]},\"uninstall\":false},\"sitemap\":{\"general\":{\"enable\":true,\"filename\":\"sitemap\",\"indexes\":false,\"linksPerIndex\":50000,\"postTypes\":{\"all\":false,\"included\":[\"post\",\"page\",\"people\"]},\"taxonomies\":{\"all\":false,\"included\":[]},\"author\":false,\"date\":false,\"additionalPages\":{\"enable\":false,\"pages\":[]},\"advancedSettings\":{\"enable\":true,\"excludeImages\":false,\"excludePosts\":[\"{\\\"value\\\":45970,\\\"type\\\":\\\"landing-page\\\",\\\"label\\\":\\\"Disclaimer\\\",\\\"link\\\":\\\"https:\\\\\\/\\\\\\/www.getmad.today\\\\\\/lp\\\\\\/disclaimer\\\\\\/\\\"}\",\"{\\\"value\\\":45971,\\\"type\\\":\\\"landing-page\\\",\\\"label\\\":\\\"Privacy Policy\\\",\\\"link\\\":\\\"https:\\\\\\/\\\\\\/www.getmad.today\\\\\\/lp\\\\\\/privacy\\\\\\/\\\"}\",\"{\\\"value\\\":45972,\\\"type\\\":\\\"landing-page\\\",\\\"label\\\":\\\"Thank You - Landing Page\\\",\\\"link\\\":\\\"https:\\\\\\/\\\\\\/www.getmad.today\\\\\\/lp\\\\\\/thank-you\\\\\\/\\\"}\",\"{\\\"value\\\":45930,\\\"type\\\":\\\"page\\\",\\\"label\\\":\\\"Thank You\\\",\\\"link\\\":\\\"https:\\\\\\/\\\\\\/3602675.findlaw5.flsitebuilder.com\\\\\\/thank-you\\\\\\/\\\"}\",\"{\\\"value\\\":46049,\\\"type\\\":\\\"page\\\",\\\"label\\\":\\\"All Pages List\\\",\\\"link\\\":\\\"https:\\\\\\/\\\\\\/www.getmad.today\\\\\\/?page_id=46049\\\"}\"],\"excludeTerms\":[],\"priority\":{\"homePage\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"postTypes\":{\"grouped\":true,\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"taxonomies\":{\"grouped\":true,\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"archive\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"author\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"}}}},\"rss\":{\"enable\":false,\"linksPerIndex\":50,\"postTypes\":{\"all\":true,\"included\":[\"post\",\"page\",\"product\"]}},\"html\":{\"enable\":true,\"pageUrl\":\"\",\"postTypes\":{\"all\":true,\"included\":[\"post\",\"page\",\"product\"]},\"taxonomies\":{\"all\":true,\"included\":[\"category\",\"post_tag\",\"product_cat\",\"product_tag\"]},\"sortOrder\":\"publish_date\",\"sortDirection\":\"asc\",\"publicationDate\":true,\"compactArchives\":false,\"advancedSettings\":{\"enable\":false,\"nofollowLinks\":false,\"excludePosts\":[],\"excludeTerms\":[]}}},\"social\":{\"profiles\":{\"sameUsername\":{\"enable\":false,\"username\":null,\"included\":[\"facebookPageUrl\",\"twitterUrl\",\"pinterestUrl\",\"instagramUrl\",\"youtubeUrl\",\"linkedinUrl\"]},\"urls\":{\"facebookPageUrl\":null,\"twitterUrl\":null,\"instagramUrl\":null,\"pinterestUrl\":null,\"youtubeUrl\":null,\"linkedinUrl\":null,\"tumblrUrl\":null,\"yelpPageUrl\":null,\"soundCloudUrl\":null,\"wikipediaUrl\":null,\"myspaceUrl\":null,\"googlePlacesUrl\":null},\"additionalUrls\":null},\"facebook\":{\"general\":{\"enable\":true,\"defaultImageSourcePosts\":\"default\",\"customFieldImagePosts\":null,\"defaultImagePosts\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/OgImage_New.png\",\"defaultImagePostsWidth\":\"\",\"defaultImagePostsHeight\":\"\",\"showAuthor\":false,\"siteName\":\"The Law Offices of Melissa A. Day, PLLC\"},\"homePage\":{\"image\":\"\",\"title\":\"\",\"description\":\"\",\"imageWidth\":\"\",\"imageHeight\":\"\",\"objectType\":\"article\"},\"advanced\":{\"enable\":true,\"adminId\":\"\",\"appId\":\"\",\"authorUrl\":\"\",\"generateArticleTags\":false,\"useKeywordsInTags\":true,\"useCategoriesInTags\":true,\"usePostTagsInTags\":true}},\"twitter\":{\"general\":{\"enable\":true,\"useOgData\":false,\"defaultCardType\":\"summary_large_image\",\"defaultImageSourcePosts\":\"default\",\"customFieldImagePosts\":null,\"defaultImagePosts\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/OgImage_New.png\",\"showAuthor\":false,\"additionalData\":false},\"homePage\":{\"image\":\"\",\"title\":\"\",\"description\":\"\",\"cardType\":\"summary_large_image\"}}},\"searchAppearance\":{\"global\":{\"separator\":\"|\",\"siteTitle\":\"#site_title #separator_sa #tagline\",\"metaDescription\":\"#tagline\",\"keywords\":null,\"schema\":{\"siteRepresents\":\"organization\",\"person\":null,\"organizationName\":\"The Law Offices of Melissa A. Day, PLLC\",\"organizationLogo\":\"\",\"personName\":null,\"personLogo\":null,\"phone\":null,\"contactType\":null,\"contactTypeManual\":null}},\"advanced\":{\"globalRobotsMeta\":{\"default\":false,\"noindex\":false,\"nofollow\":false,\"noindexPaginated\":true,\"nofollowPaginated\":true,\"noindexFeed\":true,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"sitelinks\":true,\"noIndexEmptyCat\":true,\"removeStopWords\":false,\"noPaginationForCanonical\":false,\"useKeywords\":false,\"keywordsLooking\":true,\"useCategoriesForMetaKeywords\":false,\"useTagsForMetaKeywords\":true,\"dynamicallyGenerateKeywords\":true,\"pagedFormat\":\"- Part #page_number\",\"runShortcodes\":true,\"crawlCleanup\":{\"enable\":false,\"feeds\":{\"global\":true,\"globalComments\":false,\"staticBlogPage\":true,\"authors\":true,\"postComments\":false,\"search\":false,\"attachments\":false,\"archives\":{\"all\":false,\"included\":[]},\"taxonomies\":{\"all\":false,\"included\":[\"category\"]},\"atom\":false,\"rdf\":false,\"paginated\":false},\"removeUnrecognizedQueryArgs\":true,\"allowedQueryArgs\":\"\\/^utm_*\\/\"}},\"archives\":{\"author\":{\"show\":false,\"title\":\"#author_name | #site_title\",\"metaDescription\":\"#author_bio\",\"advanced\":{\"robotsMeta\":{\"default\":false,\"noindex\":true,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true,\"keywords\":null}},\"date\":{\"show\":false,\"title\":\"#archive_date | #site_title\",\"metaDescription\":\"\",\"advanced\":{\"robotsMeta\":{\"default\":false,\"noindex\":true,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true,\"keywords\":null}},\"search\":{\"show\":false,\"title\":\"#search_term | #site_title\",\"metaDescription\":\"\",\"advanced\":{\"robotsMeta\":{\"default\":false,\"noindex\":true,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true,\"keywords\":null}}}},\"tools\":{\"robots\":{\"enable\":true,\"rules\":[],\"robotsDetected\":true},\"importExport\":{\"backup\":{\"lastTime\":null,\"data\":null}}},\"deprecated\":{\"webmasterTools\":{\"googleAnalytics\":{\"id\":\"\",\"advanced\":true,\"trackingDomain\":\"\",\"multipleDomains\":false,\"additionalDomains\":\"\",\"anonymizeIp\":false,\"displayAdvertiserTracking\":false,\"excludeUsers\":[\"\"],\"trackOutboundLinks\":false,\"enhancedLinkAttribution\":false,\"enhancedEcommerce\":false}},\"searchAppearance\":{\"global\":{\"descriptionFormat\":null,\"schema\":{\"enableSchemaMarkup\":false}},\"advanced\":{\"autogenerateDescriptions\":true,\"runShortcodesInDescription\":true,\"useContentForAutogeneratedDescriptions\":true,\"excludePosts\":[],\"excludeTerms\":[]}},\"sitemap\":{\"general\":{\"advancedSettings\":{\"dynamic\":true}}},\"tools\":{\"blocker\":{\"blockBots\":null,\"blockReferer\":null,\"track\":null,\"custom\":{\"enable\":null,\"bots\":\"Abonti\\naggregator\\nAhrefsBot\\nasterias\\nBDCbot\\nBLEXBot\\nBuiltBotTough\\nBullseye\\nBunnySlippers\\nca-crawler\\nCCBot\\nCegbfeieh\\nCheeseBot\\nCherryPicker\\nCopyRightCheck\\ncosmos\\nCrescent\\ndiscobot\\nDittoSpyder\\nDotBot\\nDownload Ninja\\nEasouSpider\\nEmailCollector\\nEmailSiphon\\nEmailWolf\\nEroCrawler\\nExtractorPro\\nFasterfox\\nFeedBooster\\nFoobot\\nGenieo\\ngrub-client\\nHarvest\\nhloader\\nhttplib\\nHTTrack\\nhumanlinks\\nieautodiscovery\\nInfoNaviRobot\\nIstellaBot\\nJava\\/1.\\nJennyBot\\nk2spider\\nKenjin Spider\\nKeyword Density\\/0.9\\nlarbin\\nLexiBot\\nlibWeb\\nlibwww\\nLinkextractorPro\\nlinko\\nLinkScan\\/8.1a Unix\\nLinkWalker\\nLNSpiderguy\\nlwp-trivial\\nmagpie\\nMata Hari\\nMaxPointCrawler\\nMegaIndex\\nMicrosoft URL Control\\nMIIxpc\\nMippin\\nMissigua Locator\\nMister PiX\\nMJ12bot\\nmoget\\nMSIECrawler\\nNetAnts\\nNICErsPRO\\nNiki-Bot\\nNPBot\\nNutch\\nOffline Explorer\\nOpenfind\\npanscient.com\\nPHP\\/5.{\\nProPowerBot\\/2.14\\nProWebWalker\\nPython-urllib\\nQueryN Metasearch\\nRepoMonkey\\nSISTRIX\\nsitecheck.Internetseer.com\\nSiteSnagger\\nSnapPreviewBot\\nSogou\\nSpankBot\\nspanner\\nspbot\\nSpinn3r\\nsuzuran\\nSzukacz\\/1.4\\nTeleport\\nTelesoft\\nThe Intraformant\\nTheNomad\\nTightTwatBot\\nTitan\\ntoCrawl\\/UrlDispatcher\\nTrue_Robot\\nturingos\\nTurnitinBot\\nUbiCrawler\\nUnisterBot\\nURLy Warning\\nVCI\\nWBSearchBot\\nWeb Downloader\\/6.9\\nWeb Image Collector\\nWebAuto\\nWebBandit\\nWebCopier\\nWebEnhancer\\nWebmasterWorldForumBot\\nWebReaper\\nWebSauger\\nWebsite Quester\\nWebster Pro\\nWebStripper\\nWebZip\\nWotbox\\nwsr-agent\\nWWW-Collector-E\\nXenu\\nZao\\nZeus\\nZyBORG\\ncoccoc\\nIncutio\\nlmspider\\nmemoryBot\\nserf\\nUnknown\\nuptime files\",\"referer\":\"semalt.com\\nkambasoft.com\\nsavetubevideo.com\\nbuttons-for-website.com\\nsharebutton.net\\nsoundfrost.org\\nsrecorder.com\\nsoftomix.com\\nsoftomix.net\\nmyprintscreen.com\\njoinandplay.me\\nfbfreegifts.com\\nopenmediasoft.com\\nzazagames.org\\nextener.org\\nopenfrost.com\\nopenfrost.net\\ngooglsucks.com\\nbest-seo-offer.com\\nbuttons-for-your-website.com\\nwww.Get-Free-Traffic-Now.com\\nbest-seo-solution.com\\nbuy-cheap-online.info\\nsite3.free-share-buttons.com\\nwebmaster-traffic.com\"}}}}}','yes'),(5044,'aioseo_options_pro','{\"internal\":[],\"breadcrumbs\":{\"advanced\":{\"taxonomySkipUnselected\":false,\"showPaged\":true,\"pagedFormat\":\"Page #breadcrumb_format_page_number\"}},\"advanced\":{\"adminBarMenu\":false,\"usageTracking\":true,\"autoUpdates\":\"none\"},\"sitemap\":{\"video\":{\"enable\":false,\"filename\":\"video-sitemap\",\"indexes\":true,\"linksPerIndex\":1000,\"postTypes\":{\"all\":true,\"included\":[\"post\",\"page\",\"attachment\"]},\"taxonomies\":{\"all\":true,\"included\":[\"product_cat\",\"product_tag\"]},\"additionalPages\":{\"enable\":false,\"pages\":[]},\"advancedSettings\":{\"enable\":false,\"excludePosts\":[],\"excludeTerms\":[],\"dynamic\":true,\"customFields\":false}},\"news\":{\"enable\":true,\"publicationName\":\"The Law Offices of Melissa A. Day, PLLC\",\"genre\":null,\"postTypes\":{\"all\":false,\"included\":[\"post\"]},\"additionalPages\":{\"enable\":false,\"pages\":[]},\"advancedSettings\":{\"enable\":false,\"excludePosts\":[],\"priority\":{\"homePage\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"postTypes\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"taxonomies\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"}}}}},\"social\":{\"facebook\":{\"general\":{\"defaultImageSourceTerms\":\"default\",\"customFieldImageTerms\":null,\"defaultImageTerms\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/OgImage_New.png\",\"defaultImageTermsWidth\":\"\",\"defaultImageTermsHeight\":\"\"}},\"twitter\":{\"general\":{\"defaultImageSourceTerms\":\"default\",\"customFieldImageTerms\":null,\"defaultImageTerms\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-contentthelomad.com/getmad.today\\/wp-content\\/uploads\\/2021\\/10\\/OgImage_New.png\"}}},\"searchAppearance\":{\"advanced\":{\"removeCatBase\":false}},\"deprecated\":{\"webmasterTools\":{\"googleAnalytics\":{\"trackOutboundForms\":false,\"trackEvents\":false,\"trackUrlChanges\":false,\"trackVisibility\":false,\"trackMediaQueries\":false,\"trackImpressions\":false,\"trackScrollbar\":false,\"trackSocial\":false,\"trackCleanUrl\":false,\"gtmContainerId\":null}},\"sitemap\":{\"video\":{\"advancedSettings\":{\"dynamic\":false}}}},\"general\":{\"licenseKey\":\"8T691609LC565611C\"},\"accessControl\":{\"administrator\":{\"useDefault\":false,\"dashboard\":false,\"generalSettings\":true,\"searchAppearanceSettings\":true,\"socialNetworksSettings\":true,\"sitemapSettings\":true,\"redirectsManage\":false,\"pageRedirectsManage\":false,\"redirectsSettings\":false,\"seoAnalysisSettings\":true,\"toolsSettings\":false,\"featureManagerSettings\":false,\"pageAnalysis\":true,\"pageGeneralSettings\":true,\"pageAdvancedSettings\":true,\"pageSchemaSettings\":false,\"pageSocialSettings\":true,\"localSeoSettings\":false,\"pageLocalSeoSettings\":false,\"linkAssistantSettings\":true,\"pageLinkAssistantSettings\":true,\"setupWizard\":false},\"editor\":{\"useDefault\":false,\"dashboard\":false,\"generalSettings\":false,\"searchAppearanceSettings\":false,\"socialNetworksSettings\":false,\"sitemapSettings\":false,\"redirectsManage\":false,\"pageRedirectsManage\":false,\"redirectsSettings\":false,\"seoAnalysisSettings\":false,\"toolsSettings\":false,\"featureManagerSettings\":false,\"pageAnalysis\":false,\"pageGeneralSettings\":false,\"pageAdvancedSettings\":false,\"pageSchemaSettings\":false,\"pageSocialSettings\":false,\"localSeoSettings\":false,\"pageLocalSeoSettings\":false,\"linkAssistantSettings\":false,\"pageLinkAssistantSettings\":false,\"setupWizard\":false},\"author\":{\"useDefault\":false,\"dashboard\":false,\"generalSettings\":false,\"searchAppearanceSettings\":false,\"socialNetworksSettings\":false,\"sitemapSettings\":false,\"redirectsManage\":false,\"pageRedirectsManage\":false,\"redirectsSettings\":false,\"seoAnalysisSettings\":false,\"toolsSettings\":false,\"featureManagerSettings\":false,\"pageAnalysis\":false,\"pageGeneralSettings\":false,\"pageAdvancedSettings\":false,\"pageSchemaSettings\":false,\"pageSocialSettings\":false,\"localSeoSettings\":false,\"pageLocalSeoSettings\":false,\"linkAssistantSettings\":false,\"pageLinkAssistantSettings\":false,\"setupWizard\":false},\"contributor\":{\"useDefault\":false,\"dashboard\":false,\"generalSettings\":false,\"searchAppearanceSettings\":false,\"socialNetworksSettings\":false,\"sitemapSettings\":false,\"redirectsManage\":false,\"pageRedirectsManage\":false,\"redirectsSettings\":false,\"seoAnalysisSettings\":false,\"toolsSettings\":false,\"featureManagerSettings\":false,\"pageAnalysis\":false,\"pageGeneralSettings\":false,\"pageAdvancedSettings\":false,\"pageSchemaSettings\":false,\"pageSocialSettings\":false,\"localSeoSettings\":false,\"pageLocalSeoSettings\":false,\"linkAssistantSettings\":false,\"pageLinkAssistantSettings\":false,\"setupWizard\":false},\"seoManager\":{\"useDefault\":true,\"dashboard\":true,\"generalSettings\":true,\"searchAppearanceSettings\":false,\"socialNetworksSettings\":false,\"sitemapSettings\":true,\"redirectsManage\":true,\"pageRedirectsManage\":true,\"redirectsSettings\":true,\"seoAnalysisSettings\":false,\"toolsSettings\":false,\"featureManagerSettings\":false,\"pageAnalysis\":true,\"pageGeneralSettings\":true,\"pageAdvancedSettings\":true,\"pageSchemaSettings\":true,\"pageSocialSettings\":true,\"localSeoSettings\":true,\"pageLocalSeoSettings\":true,\"linkAssistantSettings\":true,\"pageLinkAssistantSettings\":true,\"setupWizard\":true},\"seoEditor\":{\"useDefault\":true,\"dashboard\":false,\"generalSettings\":false,\"searchAppearanceSettings\":false,\"socialNetworksSettings\":false,\"sitemapSettings\":false,\"redirectsManage\":true,\"pageRedirectsManage\":true,\"redirectsSettings\":false,\"seoAnalysisSettings\":false,\"toolsSettings\":false,\"featureManagerSettings\":false,\"pageAnalysis\":true,\"pageGeneralSettings\":true,\"pageAdvancedSettings\":true,\"pageSchemaSettings\":true,\"pageSocialSettings\":true,\"localSeoSettings\":false,\"pageLocalSeoSettings\":true,\"linkAssistantSettings\":true,\"pageLinkAssistantSettings\":true,\"setupWizard\":false}},\"image\":{\"format\":{\"title\":\"#image_title #separator_sa #site_title\",\"altTag\":\"#alt_tag\"},\"stripPunctuation\":{\"title\":false,\"altTag\":false}},\"localBusiness\":{\"locations\":{\"general\":{\"multiple\":false,\"display\":null,\"singleLabel\":null,\"pluralLabel\":null,\"permalink\":null,\"categoryPermalink\":null,\"useCustomSlug\":false,\"customSlug\":null,\"useCustomCategorySlug\":false,\"customCategorySlug\":null,\"enhancedSearch\":false,\"enhancedSearchExcerpt\":false},\"business\":{\"name\":null,\"businessType\":\"LocalBusiness\",\"image\":null,\"areaServed\":null,\"urls\":{\"website\":\"https:\\/\\/thelomad.com/getmad.today\\/wp-content3602675.findlaw5.flsitebuilder.com\",\"aboutPage\":null,\"contactPage\":null},\"address\":{\"streetLine1\":null,\"streetLine2\":null,\"zipCode\":null,\"city\":null,\"state\":null,\"country\":null,\"addressFormat\":null},\"contact\":{\"email\":null,\"phone\":null,\"phoneFormatted\":null,\"fax\":null,\"faxFormatted\":null},\"ids\":{\"vat\":null,\"tax\":null,\"chamberOfCommerce\":null},\"payment\":{\"priceRange\":null,\"currenciesAccepted\":null,\"methods\":null}}},\"openingHours\":{\"show\":true,\"display\":null,\"alwaysOpen\":false,\"use24hFormat\":false,\"timezone\":null,\"labels\":{\"closed\":null,\"alwaysOpen\":null},\"days\":{\"monday\":{\"open24h\":false,\"closed\":false,\"openTime\":\"09:00\",\"closeTime\":\"17:00\"},\"tuesday\":{\"open24h\":false,\"closed\":false,\"openTime\":\"09:00\",\"closeTime\":\"17:00\"},\"wednesday\":{\"open24h\":false,\"closed\":false,\"openTime\":\"09:00\",\"closeTime\":\"17:00\"},\"thursday\":{\"open24h\":false,\"closed\":false,\"openTime\":\"09:00\",\"closeTime\":\"17:00\"},\"friday\":{\"open24h\":false,\"closed\":false,\"openTime\":\"09:00\",\"closeTime\":\"17:00\"},\"saturday\":{\"open24h\":false,\"closed\":false,\"openTime\":\"09:00\",\"closeTime\":\"17:00\"},\"sunday\":{\"open24h\":false,\"closed\":false,\"openTime\":\"09:00\",\"closeTime\":\"17:00\"}}},\"maps\":{\"apiKey\":null,\"apiKeyValid\":null,\"mapsEmbedApiEnabled\":false,\"mapOptions\":{\"center\":{\"lat\":47.6205063,\"lng\":-122.3492774},\"zoom\":16,\"mapTypeId\":\"roadmap\",\"streetViewControl\":false},\"customMarker\":null,\"placeId\":null}}}','yes'),(5045,'aioseo_options_v3','a:116:{s:17:\"aiosp_license_key\";s:17:\"8T691609LC565611C\";s:16:\"aiosp_home_title\";s:0:\"\";s:22:\"aiosp_home_description\";s:0:\"\";s:20:\"aiosp_togglekeywords\";s:0:\"\";s:19:\"aiosp_home_keywords\";s:0:\"\";s:26:\"aiosp_use_static_home_info\";s:1:\"1\";s:9:\"aiosp_can\";s:2:\"on\";s:30:\"aiosp_no_paged_canonical_links\";s:0:\"\";s:31:\"aiosp_customize_canonical_links\";s:2:\"on\";s:20:\"aiosp_rewrite_titles\";s:1:\"1\";s:20:\"aiosp_force_rewrites\";s:1:\"1\";s:24:\"aiosp_use_original_title\";s:1:\"0\";s:28:\"aiosp_home_page_title_format\";s:12:\"%page_title%\";s:23:\"aiosp_page_title_format\";s:12:\"%page_title%\";s:23:\"aiosp_post_title_format\";s:12:\"%post_title%\";s:27:\"aiosp_category_title_format\";s:31:\"%category_title% | %blog_title%\";s:26:\"aiosp_archive_title_format\";s:30:\"%archive_title% | %blog_title%\";s:23:\"aiosp_date_title_format\";s:21:\"%date% | %blog_title%\";s:25:\"aiosp_author_title_format\";s:23:\"%author% | %blog_title%\";s:22:\"aiosp_tag_title_format\";s:20:\"%tag% | %blog_title%\";s:25:\"aiosp_search_title_format\";s:23:\"%search% | %blog_title%\";s:24:\"aiosp_description_format\";s:13:\"%description%\";s:22:\"aiosp_404_title_format\";s:33:\"Nothing found for %request_words%\";s:18:\"aiosp_paged_format\";s:14:\" - Part %page%\";s:17:\"aiosp_cpostactive\";a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:6:\"people\";i:3;s:12:\"landing-page\";}s:15:\"aiosp_taxactive\";a:1:{i:0;s:8:\"category\";}s:18:\"aiosp_cpostnoindex\";a:11:{i:0;s:10:\"attachment\";i:1;s:12:\"oembed_cache\";i:2;s:12:\"user_request\";i:3;s:8:\"wp_block\";i:4;s:16:\"dwd_map_posttype\";i:5;s:7:\"project\";i:6;s:15:\"acf-field-group\";i:7;s:9:\"acf-field\";i:8;s:6:\"nf_sub\";i:9;s:12:\"landing-page\";i:10;s:16:\"wp_stream_alerts\";}s:19:\"aiosp_cpostnofollow\";s:0:\"\";s:21:\"aiosp_posttypecolumns\";a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:6:\"people\";i:3;s:12:\"landing-page\";}s:19:\"aiosp_google_verify\";s:43:\"ScncfkqfnkgA3msczh6NQg3J5O-vWrl_0zNbtW_XwJg\";s:17:\"aiosp_bing_verify\";s:0:\"\";s:22:\"aiosp_pinterest_verify\";s:0:\"\";s:22:\"aiosp_google_publisher\";s:0:\"\";s:28:\"aiosp_google_disable_profile\";s:2:\"on\";s:29:\"aiosp_google_sitelinks_search\";s:0:\"\";s:26:\"aiosp_google_set_site_name\";s:0:\"\";s:30:\"aiosp_google_specify_site_name\";s:0:\"\";s:28:\"aiosp_google_author_advanced\";s:1:\"0\";s:28:\"aiosp_google_author_location\";a:1:{i:0;s:3:\"all\";}s:29:\"aiosp_google_enable_publisher\";s:2:\"on\";s:30:\"aiosp_google_specify_publisher\";s:0:\"\";s:25:\"aiosp_google_analytics_id\";s:0:\"\";s:25:\"aiosp_ga_advanced_options\";s:2:\"on\";s:15:\"aiosp_ga_domain\";s:0:\"\";s:21:\"aiosp_ga_multi_domain\";s:0:\"\";s:21:\"aiosp_ga_addl_domains\";s:0:\"\";s:21:\"aiosp_ga_anonymize_ip\";s:0:\"\";s:28:\"aiosp_ga_display_advertising\";s:0:\"\";s:22:\"aiosp_ga_exclude_users\";s:0:\"\";s:29:\"aiosp_ga_track_outbound_links\";s:0:\"\";s:25:\"aiosp_ga_link_attribution\";s:0:\"\";s:27:\"aiosp_ga_enhanced_ecommerce\";s:0:\"\";s:20:\"aiosp_use_categories\";s:0:\"\";s:26:\"aiosp_use_tags_as_keywords\";s:2:\"on\";s:32:\"aiosp_dynamic_postspage_keywords\";s:2:\"on\";s:22:\"aiosp_category_noindex\";s:2:\"on\";s:26:\"aiosp_archive_date_noindex\";s:2:\"on\";s:28:\"aiosp_archive_author_noindex\";s:2:\"on\";s:18:\"aiosp_tags_noindex\";s:2:\"on\";s:20:\"aiosp_search_noindex\";s:2:\"on\";s:17:\"aiosp_404_noindex\";s:2:\"on\";s:17:\"aiosp_tax_noindex\";a:4:{i:0;s:17:\"divi_map_category\";i:1;s:16:\"project_category\";i:2;s:11:\"project_tag\";i:3;s:7:\"posttag\";}s:23:\"aiosp_paginated_noindex\";s:2:\"on\";s:24:\"aiosp_paginated_nofollow\";s:0:\"\";s:27:\"aiosp_generate_descriptions\";s:2:\"on\";s:18:\"aiosp_skip_excerpt\";s:2:\"on\";s:20:\"aiosp_run_shortcodes\";s:2:\"on\";s:33:\"aiosp_hide_paginated_descriptions\";s:2:\"on\";s:32:\"aiosp_dont_truncate_descriptions\";s:0:\"\";s:19:\"aiosp_schema_markup\";s:0:\"\";s:20:\"aiosp_unprotect_meta\";s:0:\"\";s:33:\"aiosp_redirect_attachement_parent\";s:2:\"on\";s:14:\"aiosp_ex_pages\";s:0:\"\";s:20:\"aiosp_post_meta_tags\";s:0:\"\";s:20:\"aiosp_page_meta_tags\";s:0:\"\";s:21:\"aiosp_front_meta_tags\";s:0:\"\";s:20:\"aiosp_home_meta_tags\";s:0:\"\";s:12:\"aiosp_do_log\";s:0:\"\";s:17:\"aiosp_showseonews\";s:0:\"\";s:15:\"aiosp_admin_bar\";s:0:\"\";s:23:\"aiosp_custom_menu_order\";s:0:\"\";s:29:\"aiosp_ga_track_outbound_forms\";s:0:\"\";s:21:\"aiosp_ga_track_events\";s:0:\"\";s:26:\"aiosp_ga_track_url_changes\";s:0:\"\";s:25:\"aiosp_ga_track_visibility\";s:0:\"\";s:26:\"aiosp_ga_track_media_query\";s:0:\"\";s:26:\"aiosp_ga_track_impressions\";s:0:\"\";s:23:\"aiosp_ga_track_scroller\";s:0:\"\";s:21:\"aiosp_ga_track_social\";s:0:\"\";s:24:\"aiosp_ga_track_clean_url\";s:0:\"\";s:19:\"last_active_version\";s:5:\"3.1.1\";s:21:\"version_feature_flags\";a:1:{s:18:\"term_meta_migrated\";s:3:\"yes\";}s:7:\"modules\";a:3:{s:29:\"aiosp_feature_manager_options\";a:8:{s:36:\"aiosp_feature_manager_enable_sitemap\";s:2:\"on\";s:38:\"aiosp_feature_manager_enable_opengraph\";s:2:\"on\";s:35:\"aiosp_feature_manager_enable_robots\";s:2:\"on\";s:40:\"aiosp_feature_manager_enable_file_editor\";s:0:\"\";s:46:\"aiosp_feature_manager_enable_importer_exporter\";s:0:\"\";s:39:\"aiosp_feature_manager_enable_bad_robots\";s:0:\"\";s:40:\"aiosp_feature_manager_enable_performance\";s:2:\"on\";s:42:\"aiosp_feature_manager_enable_video_sitemap\";s:0:\"\";}s:21:\"aiosp_sitemap_options\";a:47:{s:25:\"aiosp_sitemap_rss_sitemap\";s:0:\"\";s:24:\"aiosp_sitemap_daily_cron\";s:1:\"0\";s:21:\"aiosp_sitemap_indexes\";s:0:\"\";s:23:\"aiosp_sitemap_max_posts\";s:5:\"50000\";s:23:\"aiosp_sitemap_posttypes\";a:3:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:6:\"people\";}s:24:\"aiosp_sitemap_taxonomies\";s:0:\"\";s:21:\"aiosp_sitemap_archive\";s:0:\"\";s:20:\"aiosp_sitemap_author\";s:0:\"\";s:20:\"aiosp_sitemap_images\";s:0:\"\";s:21:\"aiosp_sitemap_gzipped\";s:2:\"on\";s:20:\"aiosp_sitemap_robots\";s:2:\"on\";s:21:\"aiosp_sitemap_rewrite\";s:2:\"On\";s:24:\"aiosp_sitemap_addl_pages\";a:0:{}s:29:\"aiosp_sitemap_excl_categories\";s:0:\"\";s:24:\"aiosp_sitemap_excl_pages\";s:0:\"\";s:27:\"aiosp_sitemap_prio_homepage\";s:2:\"no\";s:23:\"aiosp_sitemap_prio_post\";s:2:\"no\";s:36:\"aiosp_sitemap_prio_post_landing-page\";s:2:\"no\";s:30:\"aiosp_sitemap_prio_post_people\";s:2:\"no\";s:34:\"aiosp_sitemap_prio_post_attachment\";s:2:\"no\";s:28:\"aiosp_sitemap_prio_post_page\";s:2:\"no\";s:28:\"aiosp_sitemap_prio_post_post\";s:2:\"no\";s:29:\"aiosp_sitemap_prio_taxonomies\";s:2:\"no\";s:37:\"aiosp_sitemap_prio_taxonomies_posttag\";s:2:\"no\";s:41:\"aiosp_sitemap_prio_taxonomies_project_tag\";s:2:\"no\";s:46:\"aiosp_sitemap_prio_taxonomies_project_category\";s:2:\"no\";s:47:\"aiosp_sitemap_prio_taxonomies_divi_map_category\";s:2:\"no\";s:41:\"aiosp_sitemap_prio_taxonomies_post_format\";s:2:\"no\";s:38:\"aiosp_sitemap_prio_taxonomies_category\";s:2:\"no\";s:26:\"aiosp_sitemap_prio_archive\";s:2:\"no\";s:25:\"aiosp_sitemap_prio_author\";s:2:\"no\";s:27:\"aiosp_sitemap_freq_homepage\";s:2:\"no\";s:23:\"aiosp_sitemap_freq_post\";s:2:\"no\";s:36:\"aiosp_sitemap_freq_post_landing-page\";s:2:\"no\";s:30:\"aiosp_sitemap_freq_post_people\";s:2:\"no\";s:34:\"aiosp_sitemap_freq_post_attachment\";s:2:\"no\";s:28:\"aiosp_sitemap_freq_post_page\";s:2:\"no\";s:28:\"aiosp_sitemap_freq_post_post\";s:2:\"no\";s:29:\"aiosp_sitemap_freq_taxonomies\";s:2:\"no\";s:37:\"aiosp_sitemap_freq_taxonomies_posttag\";s:2:\"no\";s:41:\"aiosp_sitemap_freq_taxonomies_project_tag\";s:2:\"no\";s:46:\"aiosp_sitemap_freq_taxonomies_project_category\";s:2:\"no\";s:47:\"aiosp_sitemap_freq_taxonomies_divi_map_category\";s:2:\"no\";s:41:\"aiosp_sitemap_freq_taxonomies_post_format\";s:2:\"no\";s:38:\"aiosp_sitemap_freq_taxonomies_category\";s:2:\"no\";s:26:\"aiosp_sitemap_freq_archive\";s:2:\"no\";s:25:\"aiosp_sitemap_freq_author\";s:2:\"no\";}s:23:\"aiosp_opengraph_options\";a:64:{s:27:\"aiosp_opengraph_scan_header\";s:0:\"\";s:23:\"aiosp_opengraph_setmeta\";s:2:\"on\";s:19:\"aiosp_opengraph_key\";s:0:\"\";s:21:\"aiosp_opengraph_appid\";s:0:\"\";s:32:\"aiosp_opengraph_title_shortcodes\";s:2:\"on\";s:38:\"aiosp_opengraph_description_shortcodes\";s:2:\"on\";s:24:\"aiosp_opengraph_sitename\";s:39:\"The Law Offices of Melissa A. Day, PLLC\";s:25:\"aiosp_opengraph_hometitle\";s:0:\"\";s:27:\"aiosp_opengraph_description\";s:0:\"\";s:25:\"aiosp_opengraph_homeimage\";s:0:\"\";s:37:\"aiosp_opengraph_generate_descriptions\";s:2:\"on\";s:22:\"aiosp_opengraph_defimg\";s:0:\"\";s:24:\"aiosp_opengraph_fallback\";s:2:\"on\";s:20:\"aiosp_opengraph_dimg\";s:108:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/OgImage_New.png\";s:25:\"aiosp_opengraph_dimgwidth\";s:0:\"\";s:26:\"aiosp_opengraph_dimgheight\";s:0:\"\";s:24:\"aiosp_opengraph_meta_key\";s:0:\"\";s:21:\"aiosp_opengraph_image\";N;s:25:\"aiosp_opengraph_customimg\";N;s:26:\"aiosp_opengraph_imagewidth\";s:0:\"\";s:27:\"aiosp_opengraph_imageheight\";s:0:\"\";s:21:\"aiosp_opengraph_video\";N;s:26:\"aiosp_opengraph_videowidth\";s:0:\"\";s:27:\"aiosp_opengraph_videoheight\";s:0:\"\";s:23:\"aiosp_opengraph_defcard\";s:19:\"summary_large_image\";s:23:\"aiosp_opengraph_setcard\";N;s:28:\"aiosp_opengraph_twitter_site\";s:0:\"\";s:31:\"aiosp_opengraph_twitter_creator\";s:0:\"\";s:30:\"aiosp_opengraph_twitter_domain\";s:0:\"\";s:33:\"aiosp_opengraph_customimg_twitter\";N;s:24:\"aiosp_opengraph_gen_tags\";s:0:\"\";s:28:\"aiosp_opengraph_gen_keywords\";s:2:\"on\";s:30:\"aiosp_opengraph_gen_categories\";s:2:\"on\";s:29:\"aiosp_opengraph_gen_post_tags\";s:2:\"on\";s:21:\"aiosp_opengraph_types\";a:3:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:6:\"people\";}s:21:\"aiosp_opengraph_title\";s:0:\"\";s:20:\"aiosp_opengraph_desc\";s:0:\"\";s:24:\"aiosp_opengraph_category\";s:0:\"\";s:23:\"aiosp_opengraph_section\";s:0:\"\";s:19:\"aiosp_opengraph_tag\";s:0:\"\";s:34:\"aiosp_opengraph_facebook_publisher\";s:0:\"\";s:31:\"aiosp_opengraph_facebook_author\";s:0:\"\";s:29:\"aiosp_opengraph_profile_links\";s:0:\"\";s:29:\"aiosp_opengraph_person_or_org\";s:0:\"\";s:27:\"aiosp_opengraph_social_name\";s:0:\"\";s:35:\"aiosp_opengraph_post_fb_object_type\";s:7:\"article\";s:35:\"aiosp_opengraph_page_fb_object_type\";s:7:\"website\";s:41:\"aiosp_opengraph_attachment_fb_object_type\";s:7:\"article\";s:43:\"aiosp_opengraph_oembed_cache_fb_object_type\";s:7:\"article\";s:43:\"aiosp_opengraph_user_request_fb_object_type\";s:7:\"article\";s:39:\"aiosp_opengraph_wp_block_fb_object_type\";s:7:\"article\";s:47:\"aiosp_opengraph_dwd_map_posttype_fb_object_type\";s:7:\"article\";s:38:\"aiosp_opengraph_project_fb_object_type\";s:7:\"article\";s:46:\"aiosp_opengraph_acf-field-group_fb_object_type\";s:7:\"article\";s:40:\"aiosp_opengraph_acf-field_fb_object_type\";s:7:\"article\";s:37:\"aiosp_opengraph_nf_sub_fb_object_type\";s:7:\"article\";s:37:\"aiosp_opengraph_people_fb_object_type\";s:7:\"profile\";s:43:\"aiosp_opengraph_landing-page_fb_object_type\";s:7:\"article\";s:47:\"aiosp_opengraph_wp_stream_alerts_fb_object_type\";s:7:\"article\";s:47:\"aiosp_opengraph_et_theme_builder_fb_object_type\";s:7:\"article\";s:42:\"aiosp_opengraph_et_template_fb_object_type\";s:7:\"article\";s:47:\"aiosp_opengraph_et_header_layout_fb_object_type\";s:7:\"article\";s:45:\"aiosp_opengraph_et_body_layout_fb_object_type\";s:7:\"article\";s:47:\"aiosp_opengraph_et_footer_layout_fb_object_type\";s:7:\"article\";}}s:29:\"aiosp_attachment_title_format\";s:27:\"%post_title% | %blog_title%\";s:31:\"aiosp_oembed_cache_title_format\";s:27:\"%post_title% | %blog_title%\";s:31:\"aiosp_user_request_title_format\";s:27:\"%post_title% | %blog_title%\";s:27:\"aiosp_wp_block_title_format\";s:27:\"%post_title% | %blog_title%\";s:35:\"aiosp_dwd_map_posttype_title_format\";s:27:\"%post_title% | %blog_title%\";s:26:\"aiosp_project_title_format\";s:27:\"%post_title% | %blog_title%\";s:34:\"aiosp_acf-field-group_title_format\";s:27:\"%post_title% | %blog_title%\";s:28:\"aiosp_acf-field_title_format\";s:27:\"%post_title% | %blog_title%\";s:25:\"aiosp_nf_sub_title_format\";s:27:\"%post_title% | %blog_title%\";s:25:\"aiosp_people_title_format\";s:27:\"%post_title% | %blog_title%\";s:31:\"aiosp_landing-page_title_format\";s:27:\"%post_title% | %blog_title%\";s:35:\"aiosp_wp_stream_alerts_title_format\";s:27:\"%post_title% | %blog_title%\";s:40:\"aiosp_divi_map_category_tax_title_format\";s:31:\"%taxonomy_title% | %blog_title%\";s:39:\"aiosp_project_category_tax_title_format\";s:31:\"%taxonomy_title% | %blog_title%\";s:34:\"aiosp_project_tag_tax_title_format\";s:31:\"%taxonomy_title% | %blog_title%\";s:30:\"aiosp_posttag_tax_title_format\";s:31:\"%taxonomy_title% | %blog_title%\";s:19:\"aiosp_yandex_verify\";s:0:\"\";s:18:\"aiosp_baidu_verify\";s:0:\"\";s:35:\"aiosp_et_theme_builder_title_format\";s:27:\"%post_title% | %site_title%\";s:30:\"aiosp_et_template_title_format\";s:27:\"%post_title% | %site_title%\";s:35:\"aiosp_et_header_layout_title_format\";s:27:\"%post_title% | %site_title%\";s:33:\"aiosp_et_body_layout_title_format\";s:27:\"%post_title% | %site_title%\";s:35:\"aiosp_et_footer_layout_title_format\";s:27:\"%post_title% | %site_title%\";}','yes'),(5046,'aioseo_options_dynamic_localized','a:21:{s:37:\"searchAppearance_postTypes_post_title\";s:11:\"#post_title\";s:37:\"searchAppearance_postTypes_page_title\";s:11:\"#post_title\";s:43:\"searchAppearance_postTypes_attachment_title\";s:25:\"#post_title | #site_title\";s:42:\"searchAppearance_taxonomies_category_title\";s:29:\"#taxonomy_title | #site_title\";s:52:\"searchAppearance_taxonomies_category_metaDescription\";s:21:\"#taxonomy_description\";s:49:\"searchAppearance_taxonomies_layout_category_title\";s:41:\"#taxonomy_title #separator_sa #site_title\";s:59:\"searchAppearance_taxonomies_layout_category_metaDescription\";s:21:\"#taxonomy_description\";s:45:\"searchAppearance_taxonomies_layout_pack_title\";s:41:\"#taxonomy_title #separator_sa #site_title\";s:55:\"searchAppearance_taxonomies_layout_pack_metaDescription\";s:21:\"#taxonomy_description\";s:45:\"searchAppearance_taxonomies_layout_type_title\";s:41:\"#taxonomy_title #separator_sa #site_title\";s:55:\"searchAppearance_taxonomies_layout_type_metaDescription\";s:21:\"#taxonomy_description\";s:39:\"searchAppearance_taxonomies_scope_title\";s:41:\"#taxonomy_title #separator_sa #site_title\";s:49:\"searchAppearance_taxonomies_scope_metaDescription\";s:21:\"#taxonomy_description\";s:46:\"searchAppearance_taxonomies_module_width_title\";s:41:\"#taxonomy_title #separator_sa #site_title\";s:56:\"searchAppearance_taxonomies_module_width_metaDescription\";s:21:\"#taxonomy_description\";s:50:\"searchAppearance_taxonomies_project_category_title\";s:41:\"#taxonomy_title #separator_sa #site_title\";s:60:\"searchAppearance_taxonomies_project_category_metaDescription\";s:21:\"#taxonomy_description\";s:45:\"searchAppearance_taxonomies_project_tag_title\";s:41:\"#taxonomy_title #separator_sa #site_title\";s:55:\"searchAppearance_taxonomies_project_tag_metaDescription\";s:21:\"#taxonomy_description\";s:41:\"searchAppearance_taxonomies_posttag_title\";s:41:\"#taxonomy_title #separator_sa #site_title\";s:51:\"searchAppearance_taxonomies_posttag_metaDescription\";s:21:\"#taxonomy_description\";}','yes'),(5047,'aioseo_options_localized','a:1:{s:32:\"social_facebook_general_siteName\";s:39:\"The Law Offices of Melissa A. Day, PLLC\";}','yes'),(5048,'aioseo_dynamic_settings_backup','{}','yes'),(5051,'aioseo_options_dynamic','{\"sitemap\":{\"priority\":{\"postTypes\":{\"post\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"page\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"attachment\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"people\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"landing-page\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"}},\"taxonomies\":{\"category\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"layout_category\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"layout_pack\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"layout_type\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"scope\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"module_width\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"project_category\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"project_tag\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"posttag\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"}}}},\"social\":{\"facebook\":{\"general\":{\"postTypes\":{\"post\":{\"objectType\":\"article\"},\"page\":{\"objectType\":\"website\"},\"attachment\":{\"objectType\":\"article\"},\"people\":{\"objectType\":\"profile\"},\"landing-page\":{\"objectType\":\"article\"}},\"taxonomies\":{\"category\":{\"objectType\":\"article\"},\"layout_category\":{\"objectType\":\"article\"},\"layout_pack\":{\"objectType\":\"article\"},\"layout_type\":{\"objectType\":\"article\"},\"scope\":{\"objectType\":\"article\"},\"module_width\":{\"objectType\":\"article\"},\"project_category\":{\"objectType\":\"article\"},\"project_tag\":{\"objectType\":\"article\"},\"posttag\":{\"objectType\":\"article\"}}}}},\"searchAppearance\":{\"postTypes\":{\"post\":{\"show\":true,\"advanced\":{\"robotsMeta\":{\"default\":true,\"noindex\":false,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true,\"bulkEditing\":\"enabled\"},\"title\":\"#post_title\",\"metaDescription\":\"#post_excerpt\",\"schemaType\":\"Article\",\"webPageType\":\"WebPage\",\"articleType\":\"Article\",\"customFields\":null},\"page\":{\"show\":true,\"advanced\":{\"robotsMeta\":{\"default\":true,\"noindex\":false,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true,\"bulkEditing\":\"enabled\"},\"title\":\"#post_title\",\"metaDescription\":\"#post_excerpt\",\"schemaType\":\"WebPage\",\"webPageType\":\"WebPage\",\"articleType\":\"BlogPosting\",\"customFields\":null},\"attachment\":{\"show\":false,\"advanced\":{\"robotsMeta\":{\"default\":false,\"noindex\":true,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true,\"bulkEditing\":\"enabled\"},\"title\":\"#post_title | #site_title\",\"metaDescription\":\"#attachment_caption\",\"schemaType\":\"ItemPage\",\"webPageType\":\"ItemPage\",\"articleType\":\"BlogPosting\",\"customFields\":null,\"redirectAttachmentUrls\":\"attachment_parent\"},\"people\":{\"show\":true,\"advanced\":{\"robotsMeta\":{\"default\":true,\"noindex\":false,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true,\"bulkEditing\":\"enabled\"},\"title\":\"#post_title #separator_sa #site_title\",\"metaDescription\":\"#post_content\",\"schemaType\":\"WebPage\",\"webPageType\":\"WebPage\",\"articleType\":\"BlogPosting\",\"customFields\":null},\"landing-page\":{\"show\":false,\"advanced\":{\"robotsMeta\":{\"default\":false,\"noindex\":true,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true,\"bulkEditing\":\"enabled\"},\"title\":\"#post_title #separator_sa #site_title\",\"metaDescription\":\"#post_content\",\"schemaType\":\"WebPage\",\"webPageType\":\"WebPage\",\"articleType\":\"BlogPosting\",\"customFields\":null}},\"taxonomies\":{\"category\":{\"show\":false,\"advanced\":{\"robotsMeta\":{\"default\":false,\"noindex\":true,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true},\"title\":\"#taxonomy_title | #site_title\",\"metaDescription\":\"#taxonomy_description\"},\"layout_category\":{\"show\":true,\"advanced\":{\"robotsMeta\":{\"default\":true,\"noindex\":false,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true},\"title\":\"#taxonomy_title #separator_sa #site_title\",\"metaDescription\":\"#taxonomy_description\"},\"layout_pack\":{\"show\":true,\"advanced\":{\"robotsMeta\":{\"default\":true,\"noindex\":false,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true},\"title\":\"#taxonomy_title #separator_sa #site_title\",\"metaDescription\":\"#taxonomy_description\"},\"layout_type\":{\"show\":true,\"advanced\":{\"robotsMeta\":{\"default\":true,\"noindex\":false,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true},\"title\":\"#taxonomy_title #separator_sa #site_title\",\"metaDescription\":\"#taxonomy_description\"},\"scope\":{\"show\":true,\"advanced\":{\"robotsMeta\":{\"default\":true,\"noindex\":false,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true},\"title\":\"#taxonomy_title #separator_sa #site_title\",\"metaDescription\":\"#taxonomy_description\"},\"module_width\":{\"show\":true,\"advanced\":{\"robotsMeta\":{\"default\":true,\"noindex\":false,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true},\"title\":\"#taxonomy_title #separator_sa #site_title\",\"metaDescription\":\"#taxonomy_description\"},\"project_category\":{\"show\":false,\"advanced\":{\"robotsMeta\":{\"default\":false,\"noindex\":true,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true},\"title\":\"#taxonomy_title #separator_sa #site_title\",\"metaDescription\":\"#taxonomy_description\"},\"project_tag\":{\"show\":false,\"advanced\":{\"robotsMeta\":{\"default\":false,\"noindex\":true,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true},\"title\":\"#taxonomy_title #separator_sa #site_title\",\"metaDescription\":\"#taxonomy_description\"},\"posttag\":{\"show\":false,\"advanced\":{\"robotsMeta\":{\"default\":false,\"noindex\":true,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true},\"title\":\"#taxonomy_title #separator_sa #site_title\",\"metaDescription\":\"#taxonomy_description\"}},\"archives\":[]}}','yes'),(5052,'aioseo_options_dynamic_pro','{\"social\":{\"facebook\":{\"general\":{\"taxonomies\":[]}}},\"breadcrumbs\":{\"postTypes\":{\"post\":{\"useDefaultTemplate\":true,\"taxonomy\":\"\",\"showArchiveCrumb\":true,\"showTaxonomyCrumbs\":true,\"showHomeCrumb\":true,\"showPrefixCrumb\":true,\"showParentCrumbs\":true,\"template\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_post_title&quot;&gt;#breadcrumb_post_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\"},\"page\":{\"useDefaultTemplate\":true,\"taxonomy\":\"\",\"showArchiveCrumb\":true,\"showTaxonomyCrumbs\":true,\"showHomeCrumb\":true,\"showPrefixCrumb\":true,\"showParentCrumbs\":true,\"template\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_post_title&quot;&gt;#breadcrumb_post_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\",\"parentTemplate\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_post_title&quot;&gt;#breadcrumb_post_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\"},\"attachment\":{\"useDefaultTemplate\":true,\"taxonomy\":\"\",\"showArchiveCrumb\":true,\"showTaxonomyCrumbs\":true,\"showHomeCrumb\":true,\"showPrefixCrumb\":true,\"showParentCrumbs\":true,\"template\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_post_title&quot;&gt;#breadcrumb_post_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\"},\"people\":{\"useDefaultTemplate\":true,\"taxonomy\":\"\",\"showArchiveCrumb\":true,\"showTaxonomyCrumbs\":true,\"showHomeCrumb\":true,\"showPrefixCrumb\":true,\"showParentCrumbs\":true,\"template\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_post_title&quot;&gt;#breadcrumb_post_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\"},\"landing-page\":{\"useDefaultTemplate\":true,\"taxonomy\":\"\",\"showArchiveCrumb\":true,\"showTaxonomyCrumbs\":true,\"showHomeCrumb\":true,\"showPrefixCrumb\":true,\"showParentCrumbs\":true,\"template\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_post_title&quot;&gt;#breadcrumb_post_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\",\"parentTemplate\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_post_title&quot;&gt;#breadcrumb_post_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\"}},\"taxonomies\":{\"category\":{\"useDefaultTemplate\":true,\"showHomeCrumb\":true,\"showPrefixCrumb\":true,\"showParentCrumbs\":true,\"template\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_taxonomy_title&quot;&gt;#breadcrumb_taxonomy_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\",\"parentTemplate\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_taxonomy_title&quot;&gt;#breadcrumb_taxonomy_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\"},\"layout_category\":{\"useDefaultTemplate\":true,\"showHomeCrumb\":true,\"showPrefixCrumb\":true,\"showParentCrumbs\":true,\"template\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_taxonomy_title&quot;&gt;#breadcrumb_taxonomy_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\",\"parentTemplate\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_taxonomy_title&quot;&gt;#breadcrumb_taxonomy_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\"},\"layout_pack\":{\"useDefaultTemplate\":true,\"showHomeCrumb\":true,\"showPrefixCrumb\":true,\"showParentCrumbs\":true,\"template\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_taxonomy_title&quot;&gt;#breadcrumb_taxonomy_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\"},\"layout_type\":{\"useDefaultTemplate\":true,\"showHomeCrumb\":true,\"showPrefixCrumb\":true,\"showParentCrumbs\":true,\"template\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_taxonomy_title&quot;&gt;#breadcrumb_taxonomy_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\"},\"scope\":{\"useDefaultTemplate\":true,\"showHomeCrumb\":true,\"showPrefixCrumb\":true,\"showParentCrumbs\":true,\"template\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_taxonomy_title&quot;&gt;#breadcrumb_taxonomy_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\"},\"module_width\":{\"useDefaultTemplate\":true,\"showHomeCrumb\":true,\"showPrefixCrumb\":true,\"showParentCrumbs\":true,\"template\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_taxonomy_title&quot;&gt;#breadcrumb_taxonomy_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\"},\"project_category\":{\"useDefaultTemplate\":true,\"showHomeCrumb\":true,\"showPrefixCrumb\":true,\"showParentCrumbs\":true,\"template\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_taxonomy_title&quot;&gt;#breadcrumb_taxonomy_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\",\"parentTemplate\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_taxonomy_title&quot;&gt;#breadcrumb_taxonomy_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\"},\"project_tag\":{\"useDefaultTemplate\":true,\"showHomeCrumb\":true,\"showPrefixCrumb\":true,\"showParentCrumbs\":true,\"template\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_taxonomy_title&quot;&gt;#breadcrumb_taxonomy_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\"},\"posttag\":{\"useDefaultTemplate\":true,\"showHomeCrumb\":true,\"showPrefixCrumb\":true,\"showParentCrumbs\":true,\"template\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_taxonomy_title&quot;&gt;#breadcrumb_taxonomy_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\",\"parentTemplate\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_taxonomy_title&quot;&gt;#breadcrumb_taxonomy_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\"}},\"archives\":{\"postTypes\":[],\"date\":{\"useDefaultTemplate\":true,\"template\":{\"year\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_date_archive_year&quot;&gt;#breadcrumb_date_archive_year&lt;\\/a&gt;\\n&lt;\\/span&gt;\",\"month\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_date_archive_month&quot;&gt;#breadcrumb_date_archive_month&lt;\\/a&gt;\\n&lt;\\/span&gt;\",\"day\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_date_archive_day&quot;&gt;#breadcrumb_date_archive_day&lt;\\/a&gt;\\n&lt;\\/span&gt;\"},\"showHomeCrumb\":true,\"showPrefixCrumb\":true},\"search\":{\"useDefaultTemplate\":true,\"showHomeCrumb\":true,\"showPrefixCrumb\":true,\"template\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_search_result_format&quot;&gt;#breadcrumb_search_result_format&lt;\\/a&gt;\\n&lt;\\/span&gt;\"},\"notFound\":{\"useDefaultTemplate\":true,\"showHomeCrumb\":true,\"showPrefixCrumb\":true,\"template\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_404_error_format&quot;&gt;#breadcrumb_404_error_format&lt;\\/a&gt;\\n&lt;\\/span&gt;\"},\"author\":{\"useDefaultTemplate\":true,\"showHomeCrumb\":true,\"showPrefixCrumb\":true,\"template\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_author_display_name&quot;&gt;#breadcrumb_author_display_name&lt;\\/a&gt;\\n&lt;\\/span&gt;\"},\"blog\":{\"useDefaultTemplate\":true,\"showHomeCrumb\":true,\"showPrefixCrumb\":true,\"template\":\"&lt;span class=&quot;aioseo-breadcrumb&quot;&gt;\\n\\t&lt;a href=&quot;#breadcrumb_link&quot; title=&quot;#breadcrumb_blog_page_title&quot;&gt;#breadcrumb_blog_page_title&lt;\\/a&gt;\\n&lt;\\/span&gt;\"}}},\"accessControl\":{\"advanced-customer\":{\"useDefault\":false,\"dashboard\":false,\"generalSettings\":false,\"searchAppearanceSettings\":false,\"socialNetworksSettings\":false,\"sitemapSettings\":false,\"redirectsManage\":false,\"pageRedirectsManage\":false,\"redirectsSettings\":false,\"seoAnalysisSettings\":false,\"toolsSettings\":false,\"featureManagerSettings\":false,\"pageAnalysis\":false,\"pageGeneralSettings\":true,\"pageAdvancedSettings\":true,\"pageSchemaSettings\":false,\"pageSocialSettings\":true,\"localSeoSettings\":false,\"pageLocalSeoSettings\":false,\"linkAssistantSettings\":false,\"pageLinkAssistantSettings\":false,\"setupWizard\":false},\"copywriter-vendor\":{\"useDefault\":false,\"dashboard\":false,\"generalSettings\":false,\"searchAppearanceSettings\":false,\"socialNetworksSettings\":false,\"sitemapSettings\":false,\"redirectsManage\":false,\"pageRedirectsManage\":false,\"redirectsSettings\":false,\"seoAnalysisSettings\":false,\"toolsSettings\":false,\"featureManagerSettings\":false,\"pageAnalysis\":false,\"pageGeneralSettings\":true,\"pageAdvancedSettings\":true,\"pageSchemaSettings\":false,\"pageSocialSettings\":true,\"localSeoSettings\":false,\"pageLocalSeoSettings\":false,\"linkAssistantSettings\":false,\"pageLinkAssistantSettings\":false,\"setupWizard\":false},\"customer\":{\"useDefault\":false,\"dashboard\":false,\"generalSettings\":false,\"searchAppearanceSettings\":false,\"socialNetworksSettings\":false,\"sitemapSettings\":false,\"redirectsManage\":false,\"pageRedirectsManage\":false,\"redirectsSettings\":false,\"seoAnalysisSettings\":false,\"toolsSettings\":false,\"featureManagerSettings\":false,\"pageAnalysis\":false,\"pageGeneralSettings\":false,\"pageAdvancedSettings\":false,\"pageSchemaSettings\":false,\"pageSocialSettings\":false,\"localSeoSettings\":false,\"pageLocalSeoSettings\":false,\"linkAssistantSettings\":false,\"pageLinkAssistantSettings\":false,\"setupWizard\":false},\"design-vendor\":{\"useDefault\":false,\"dashboard\":false,\"generalSettings\":false,\"searchAppearanceSettings\":false,\"socialNetworksSettings\":false,\"sitemapSettings\":false,\"redirectsManage\":false,\"pageRedirectsManage\":false,\"redirectsSettings\":false,\"seoAnalysisSettings\":false,\"toolsSettings\":false,\"featureManagerSettings\":false,\"pageAnalysis\":false,\"pageGeneralSettings\":true,\"pageAdvancedSettings\":true,\"pageSchemaSettings\":false,\"pageSocialSettings\":true,\"localSeoSettings\":false,\"pageLocalSeoSettings\":false,\"linkAssistantSettings\":false,\"pageLinkAssistantSettings\":false,\"setupWizard\":false}}}','yes'),(5059,'action_scheduler_lock_async-request-runner','1661168171','yes'),(6892,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6894,'simple_sitemap_options','a:2:{s:26:\"new_features_numbered_icon\";s:5:\"false\";s:14:\"plugin_version\";s:5:\"3.5.7\";}','yes'),(7084,'wp_force_deactivated_plugins','a:0:{}','off'),(7162,'bsr_data','a:11:{s:13:\"select_tables\";a:2:{i:0;s:19:\"wp_1503150_postmeta\";i:1;s:16:\"wp_1503150_posts\";}s:16:\"case_insensitive\";s:3:\"off\";s:13:\"replace_guids\";s:3:\"off\";s:7:\"dry_run\";s:3:\"off\";s:10:\"search_for\";s:11:\"Kelsey Kunz\";s:12:\"replace_with\";s:14:\"Kelsey X. Kunz\";s:15:\"completed_pages\";i:2;s:9:\"is_import\";b:0;s:9:\"is_backup\";b:0;s:12:\"save_profile\";s:0:\"\";s:11:\"total_pages\";i:2;}','yes'),(12252,'jch-optimize_settings','a:68:{s:20:\"combine_files_enable\";s:1:\"1\";s:14:\"cache_lifetime\";s:4:\"1800\";s:17:\"html_minify_level\";s:1:\"0\";s:8:\"htaccess\";s:1:\"2\";s:9:\"try_catch\";s:1:\"1\";s:3:\"css\";s:1:\"1\";s:10:\"javascript\";s:1:\"1\";s:4:\"gzip\";s:1:\"1\";s:10:\"css_minify\";s:1:\"1\";s:9:\"js_minify\";s:1:\"1\";s:11:\"html_minify\";s:1:\"1\";s:20:\"includeAllExtensions\";s:1:\"1\";s:14:\"replaceImports\";s:1:\"1\";s:14:\"phpAndExternal\";s:1:\"1\";s:11:\"inlineStyle\";s:1:\"1\";s:13:\"inlineScripts\";s:1:\"1\";s:9:\"bottom_js\";s:1:\"1\";s:16:\"loadAsynchronous\";s:1:\"1\";s:11:\"url_exclude\";a:2:{i:0;s:11:\"sitemap.xsl\";i:1;s:7:\"et_fb=1\";}s:10:\"excludeCss\";a:2:{i:0;s:20:\"fonts.googleapis.com\";i:1;s:12:\"google-fonts\";}s:13:\"excludeStyles\";a:3:{i:0;s:22:\"divi-stop-stacking-row\";i:1;s:18:\"da11y-submenu-show\";i:2;s:34:\".mobile_nav.closed .et_mobile_menu\";}s:13:\"excludeJs_peo\";a:2:{i:0;s:46:\"3602675.findlaw5.flsitebuilder.com/tag-manager\";i:1;s:7:\"launch-\";}s:18:\"excludeScripts_peo\";a:2:{i:0;s:18:\"var FL=FL||{};FL={\";i:1;s:17:\"var FLDataLayer={\";}s:16:\"excludeAllStyles\";s:1:\"0\";s:17:\"excludeAllScripts\";s:1:\"0\";s:9:\"excludeJs\";a:2:{i:0;s:46:\"3602675.findlaw5.flsitebuilder.com/tag-manager\";i:1;s:7:\"launch-\";}s:14:\"excludeScripts\";a:2:{i:0;s:18:\"var FL=FL||{};FL={\";i:1;s:17:\"var FLDataLayer={\";}s:10:\"dontmoveJs\";a:2:{i:0;s:46:\"3602675.findlaw5.flsitebuilder.com/tag-manager\";i:1;s:7:\"launch-\";}s:15:\"dontmoveScripts\";a:2:{i:0;s:18:\"var FL=FL||{};FL={\";i:1;s:17:\"var FLDataLayer={\";}s:14:\"pro_downloadid\";s:0:\"\";s:12:\"order_plugin\";s:1:\"1\";s:5:\"debug\";s:1:\"0\";s:23:\"disable_logged_in_users\";s:1:\"0\";s:21:\"img_attributes_enable\";s:1:\"1\";s:12:\"cache_enable\";s:1:\"0\";s:18:\"pro_cache_platform\";s:1:\"0\";s:19:\"page_cache_lifetime\";s:4:\"1800\";s:25:\"pro_optimize_gfont_enable\";s:1:\"0\";s:26:\"optimizeCssDelivery_enable\";s:1:\"1\";s:19:\"optimizeCssDelivery\";s:3:\"600\";s:21:\"pro_remove_unused_css\";s:1:\"0\";s:10:\"csg_enable\";s:1:\"0\";s:13:\"csg_direction\";s:8:\"vertical\";s:15:\"csg_wrap_images\";s:1:\"0\";s:17:\"http2_push_enable\";s:1:\"0\";s:26:\"pro_http2_exclude_deferred\";s:1:\"1\";s:18:\"pro_http2_push_cdn\";s:1:\"0\";s:20:\"pro_http2_file_types\";a:4:{i:0;s:5:\"style\";i:1;s:6:\"script\";i:2;s:4:\"font\";i:3;s:5:\"image\";}s:15:\"lazyload_enable\";s:1:\"0\";s:19:\"pro_lazyload_iframe\";s:1:\"0\";s:21:\"pro_lazyload_bgimages\";s:1:\"0\";s:23:\"pro_lazyload_audiovideo\";s:1:\"0\";s:20:\"pro_lazyload_effects\";s:1:\"0\";s:17:\"lazyload_autosize\";s:1:\"0\";s:23:\"cookielessdomain_enable\";s:1:\"0\";s:18:\"pro_cdn_preconnect\";s:1:\"1\";s:10:\"cdn_scheme\";s:1:\"0\";s:16:\"cookielessdomain\";s:0:\"\";s:11:\"staticfiles\";a:10:{i:0;s:3:\"css\";i:1;s:3:\"png\";i:2;s:3:\"gif\";i:3;s:3:\"ico\";i:4;s:3:\"pdf\";i:5;s:2:\"js\";i:6;s:5:\"jpe?g\";i:7;s:3:\"bmp\";i:8;s:4:\"webp\";i:9;s:3:\"svg\";}s:22:\"pro_cookielessdomain_2\";s:0:\"\";s:17:\"pro_staticfiles_2\";a:10:{i:0;s:3:\"css\";i:1;s:3:\"png\";i:2;s:3:\"gif\";i:3;s:3:\"ico\";i:4;s:3:\"pdf\";i:5;s:2:\"js\";i:6;s:5:\"jpe?g\";i:7;s:3:\"bmp\";i:8;s:4:\"webp\";i:9;s:3:\"svg\";}s:22:\"pro_cookielessdomain_3\";s:0:\"\";s:17:\"pro_staticfiles_3\";a:10:{i:0;s:3:\"css\";i:1;s:3:\"png\";i:2;s:3:\"gif\";i:3;s:3:\"ico\";i:4;s:3:\"pdf\";i:5;s:2:\"js\";i:6;s:5:\"jpe?g\";i:7;s:3:\"bmp\";i:8;s:4:\"webp\";i:9;s:3:\"svg\";}s:16:\"ignore_optimized\";s:1:\"1\";s:19:\"pro_next_gen_images\";s:1:\"1\";s:17:\"hidden_containsgf\";s:0:\"\";s:17:\"hidden_api_secret\";s:8:\"11e603aa\";s:15:\"menuexcludedurl\";a:3:{i:0;s:7:\"et_fb=1\";i:1;s:11:\"sitemap.xsl\";i:2;s:9:\"/wp-admin\";}}','yes'),(12253,'disable_comment_version','2.3.5','yes'),(12254,'aioseo_index_now_options','{\"indexNow\":{\"apiKey\":\"e78bd3dc44b940878084506c39f57a9c\"}}','yes'),(12255,'Tribe\\Project\\Site_Init\\AIOSEO_Link_Assistant-schema','2','yes'),(12256,'Tribe\\Project\\Site_Init\\AIOSEO_Index_Now-schema','1','yes'),(12257,'aioseo_link_assistant_options_internal','{\"internal\":{\"lastActiveVersion\":\"1.0.2\",\"minimumLinkScanDate\":\"2022-04-04 05:16:19\",\"minimumSuggestionScanDate\":\"2022-04-04 05:16:19\",\"dismissedAlerts\":{\"suggestions\":false}}}','yes'),(12258,'aioseo_options_internal','{\"internal\":{\"validLicenseKey\":null,\"lastActiveVersion\":\"4.2.3.1\",\"migratedVersion\":null,\"siteAnalysis\":{\"connectToken\":null,\"score\":0,\"results\":null,\"competitors\":[]},\"headlineAnalysis\":{\"headlines\":[]},\"wizard\":null,\"category\":null,\"categoryOther\":null,\"deprecatedOptions\":[\"enableSchemaMarkup\"]},\"integrations\":{\"semrush\":{\"accessToken\":null,\"tokenType\":null,\"expires\":null,\"refreshToken\":null}},\"database\":{\"installedTables\":\"{\\\"wp_1503150_aioseo_posts\\\":[\\\"id\\\",\\\"post_id\\\",\\\"title\\\",\\\"description\\\",\\\"keywords\\\",\\\"keyphrases\\\",\\\"page_analysis\\\",\\\"canonical_url\\\",\\\"og_title\\\",\\\"og_description\\\",\\\"og_object_type\\\",\\\"og_image_type\\\",\\\"og_image_url\\\",\\\"og_image_width\\\",\\\"og_image_height\\\",\\\"og_image_custom_url\\\",\\\"og_image_custom_fields\\\",\\\"og_video\\\",\\\"og_custom_url\\\",\\\"og_article_section\\\",\\\"og_article_tags\\\",\\\"twitter_use_og\\\",\\\"twitter_card\\\",\\\"twitter_image_type\\\",\\\"twitter_image_url\\\",\\\"twitter_image_custom_url\\\",\\\"twitter_image_custom_fields\\\",\\\"twitter_title\\\",\\\"twitter_description\\\",\\\"seo_score\\\",\\\"schema_type\\\",\\\"schema_type_options\\\",\\\"pillar_content\\\",\\\"robots_default\\\",\\\"robots_noindex\\\",\\\"robots_noarchive\\\",\\\"robots_nosnippet\\\",\\\"robots_nofollow\\\",\\\"robots_noimageindex\\\",\\\"robots_noodp\\\",\\\"robots_notranslate\\\",\\\"robots_max_snippet\\\",\\\"robots_max_videopreview\\\",\\\"robots_max_imagepreview\\\",\\\"images\\\",\\\"image_scan_date\\\",\\\"priority\\\",\\\"frequency\\\",\\\"videos\\\",\\\"video_thumbnail\\\",\\\"video_scan_date\\\",\\\"link_scan_date\\\",\\\"link_suggestions_scan_date\\\",\\\"local_seo\\\",\\\"limit_modified_date\\\",\\\"options\\\",\\\"created\\\",\\\"updated\\\"],\\\"wp_1503150_actionscheduler_actions\\\":[],\\\"wp_1503150_actionscheduler_logs\\\":[],\\\"wp_1503150_actionscheduler_groups\\\":[],\\\"wp_1503150_actionscheduler_claims\\\":[],\\\"wp_1503150_aioseo_notifications\\\":[]}\"}}','yes'),(12259,'aioseo_options_internal_pro','{\"internal\":{\"activated\":0,\"firstActivated\":1659622924,\"installed\":0,\"license\":{\"expires\":1675296000,\"expired\":false,\"invalid\":false,\"disabled\":false,\"connectionError\":false,\"activationsError\":false,\"requestError\":false,\"lastChecked\":1661181373,\"level\":\"elite\",\"addons\":\"[\\\"aioseo-image-seo\\\",\\\"aioseo-video-sitemap\\\",\\\"aioseo-local-business\\\",\\\"aioseo-news-sitemap\\\",\\\"aioseo-redirects\\\",\\\"aioseo-link-assistant\\\",\\\"aioseo-index-now\\\",\\\"aioseo-rest-api\\\"]\"}}}','yes'),(13435,'action_scheduler_migration_status','complete','yes'),(14822,'Tribe\\Project\\Site_Init\\Accessibility_Enable_Aria_Mobile_Menu-schema','2','yes'),(17952,'Tribe\\Project\\Site_Init\\AIOSEO_Dashboard_Widgets_Hide-schema','1','yes'),(18126,'et_uploaded_fonts','a:1:{s:15:\"Metropolis Thin\";a:4:{s:9:\"font_file\";a:1:{s:3:\"otf\";s:85:\"/home/getmadto/public_html/lomad_test/wp-content/uploads/et-fonts/Metropolis-Thin.otf\";}s:8:\"font_url\";a:1:{s:3:\"otf\";s:113:\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/et-fonts/Metropolis-Thin.otf\";}s:6:\"styles\";s:35:\"100,200,300,400,500,600,700,800,900\";s:4:\"type\";s:10:\"sans-serif\";}}','yes'),(18632,'fs_accounts','a:5:{s:21:\"id_slug_type_path_map\";a:3:{i:3826;a:3:{s:4:\"slug\";s:11:\"prime-mover\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:27:\"prime-mover/prime-mover.php\";}i:7135;a:3:{s:4:\"slug\";s:15:\"addons-for-divi\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:35:\"addons-for-divi/addons-for-divi.php\";}i:4087;a:3:{s:4:\"slug\";s:14:\"simple-sitemap\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:33:\"simple-sitemap/simple-sitemap.php\";}}s:11:\"plugin_data\";a:3:{s:11:\"prime-mover\";a:15:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:27:\"prime-mover/prime-mover.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1752346758;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.5\";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:5:\"1.6.5\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:23:\"thelomad.com\";s:9:\"server_ip\";s:13:\"27.111.84.227\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1752347816;s:7:\"version\";s:5:\"1.6.5\";}s:15:\"prev_is_premium\";b:0;}s:15:\"addons-for-divi\";a:14:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:35:\"addons-for-divi/addons-for-divi.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1752346758;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.5\";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:5:\"3.5.0\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:23:\"thelomad.com\";s:9:\"server_ip\";s:13:\"27.111.84.227\";s:9:\"is_active\";b:0;s:9:\"timestamp\";i:1752347816;s:7:\"version\";s:5:\"3.5.0\";}}s:14:\"simple-sitemap\";a:15:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:33:\"simple-sitemap/simple-sitemap.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1752346758;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.5\";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:5:\"3.5.7\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:23:\"thelomad.com\";s:9:\"server_ip\";s:13:\"27.111.84.227\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1752347816;s:7:\"version\";s:5:\"3.5.7\";}s:15:\"prev_is_premium\";b:0;}}s:13:\"file_slug_map\";a:3:{s:27:\"prime-mover/prime-mover.php\";s:11:\"prime-mover\";s:35:\"addons-for-divi/addons-for-divi.php\";s:15:\"addons-for-divi\";s:33:\"simple-sitemap/simple-sitemap.php\";s:14:\"simple-sitemap\";}s:7:\"plugins\";a:3:{s:11:\"prime-mover\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:11:\"Prime Mover\";s:4:\"slug\";s:11:\"prime-mover\";s:12:\"premium_slug\";s:15:\"prime-mover-pro\";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:27:\"prime-mover/prime-mover.php\";s:7:\"version\";s:5:\"1.6.5\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:3:\"Pro\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_a69fd5401be20bf46608b1c38165b\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3826\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:15:\"addons-for-divi\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:10:\"DiviTorque\";s:4:\"slug\";s:15:\"addons-for-divi\";s:12:\"premium_slug\";s:23:\"addons-for-divi-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:35:\"addons-for-divi/addons-for-divi.php\";s:7:\"version\";s:5:\"3.5.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_c7283f055cecf2bc84f0c13a22b7c\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"7135\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:14:\"simple-sitemap\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:14:\"Simple Sitemap\";s:4:\"slug\";s:14:\"simple-sitemap\";s:12:\"premium_slug\";s:18:\"simple-sitemap-pro\";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:33:\"simple-sitemap/simple-sitemap.php\";s:7:\"version\";s:5:\"3.5.7\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:3:\"Pro\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_d7776ef9a819e02b17ef810b17551\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"4087\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"9dc586316d419f90af7d565623e556b3\";}','auto'),(18633,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:20:\"prime-mover/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.4.5\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1752347576;s:11:\"plugin_path\";s:27:\"prime-mover/prime-mover.php\";}}s:7:\"abspath\";s:27:\"/home/getmadto/public_html/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:27:\"prime-mover/prime-mover.php\";s:8:\"sdk_path\";s:20:\"prime-mover/freemius\";s:7:\"version\";s:5:\"2.4.5\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1752347576;}}','yes'),(18634,'fs_api_cache','a:1:{s:55:\"get:/v1/plugins/7135/addons.json?enriched=true&count=50\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":1:{s:7:\"plugins\";a:0:{}}s:7:\"created\";i:1741870843;s:9:\"timestamp\";i:1741957243;}}','off'),(18635,'fs_debug_mode','','yes'),(18636,'fs_gdpr','a:2:{s:2:\"u1\";a:2:{s:8:\"required\";b:0;s:18:\"show_opt_in_notice\";b:0;}s:2:\"u0\";a:1:{s:8:\"required\";b:0;}}','yes'),(18637,'active_plugins','a:27:{i:0;s:27:\"prime-mover/prime-mover.php\";i:1;s:29:\"jch-optimize/jch-optimize.php\";i:2;s:63:\"Migrate-Divi-Theme-Settings-1-1/Migrate_Divi_Theme_Settings.php\";i:3;s:35:\"addons-for-divi/addons-for-divi.php\";i:4;s:30:\"advanced-custom-fields/acf.php\";i:5;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:6;s:44:\"breadcrumbs-divi-module/divi-breadcrumbs.php\";i:7;s:33:\"classic-editor/classic-editor.php\";i:8;s:21:\"depicter/depicter.php\";i:9;s:43:\"disable-comments-rb/disable-comments-rb.php\";i:10;s:43:\"divi-blurb-extended/divi-blurb-extended.php\";i:12;s:33:\"ds-divi-rocket/ds-divi-rocket.php\";i:13;s:45:\"enable-media-replace/enable-media-replace.php\";i:14;s:55:\"filebird-document-library/filebird-document-library.php\";i:15;s:21:\"filebird/filebird.php\";i:16;s:22:\"font-awesome/index.php\";i:17;s:45:\"movabletype-importer/movabletype-importer.php\";i:18;s:41:\"ninja-forms-conditionals/conditionals.php\";i:19;s:37:\"ninja-forms-multi-part/multi-part.php\";i:20;s:39:\"ninja-forms-style/ninja-forms-style.php\";i:21;s:36:\"ninja-forms-uploads/file-uploads.php\";i:22;s:27:\"ninja-forms/ninja-forms.php\";i:23;s:61:\"quick-bulk-post-page-creator/quick-bulk-post-page-creator.php\";i:24;s:27:\"redirection/redirection.php\";i:25;s:45:\"simple-page-ordering/simple-page-ordering.php\";i:26;s:33:\"simple-sitemap/simple-sitemap.php\";i:27;s:17:\"stream/stream.php\";}','yes'),(18639,'user_count','4','no'),(18643,'wp_stream_db','3.9.1','no'),(18657,'et_account_status','active','no'),(18665,'initial_db_version','49752','yes'),(18666,'recovery_keys','a:0:{}','off'),(18686,'theme_mods_twentytwentytwo','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1661789384;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";a:8:{i:0;s:17:\"recent-comments-2\";i:1;s:8:\"search-2\";i:2;s:14:\"recent-posts-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"text-2\";i:6;s:10:\"nav_menu-2\";i:7;s:10:\"nav_menu-3\";}}}}','no'),(18687,'theme_mods_Divi','a:5:{s:18:\"custom_css_post_id\";i:49382;s:16:\"et_pb_css_synced\";s:3:\"yes\";s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:12;}s:13:\"et_pb_widgets\";a:2:{s:5:\"areas\";a:1:{s:19:\"et_pb_widget_area_1\";s:13:\"LOMAD Sidebar\";}s:6:\"number\";i:1;}}','yes'),(18697,'et_divi_builder_plugin','a:51:{s:30:\"et_flush_rewrite_rules_library\";s:0:\"\";s:21:\"et_pb_layouts_updated\";b:1;s:30:\"library_removed_legacy_layouts\";b:1;s:27:\"et_pb_clear_templates_cache\";b:1;s:40:\"divi_email_provider_credentials_migrated\";b:1;s:22:\"builder_global_presets\";O:8:\"stdClass\":0:{}s:29:\"custom_defaults_migrated_flag\";b:1;s:19:\"product_tour_status\";a:1:{i:1;s:3:\"off\";}s:29:\"_gf_enable_all_character_sets\";s:2:\"on\";s:23:\"_skip_font_subset_force\";b:1;s:32:\"et_fb_pref_settings_bar_location\";s:6:\"bottom\";s:28:\"et_fb_pref_builder_animation\";s:4:\"true\";s:41:\"et_fb_pref_builder_display_modal_settings\";s:5:\"false\";s:39:\"et_fb_pref_builder_enable_dummy_content\";s:4:\"true\";s:46:\"et_fb_pref_builder_enable_visual_theme_builder\";s:4:\"true\";s:21:\"et_fb_pref_event_mode\";s:5:\"hover\";s:28:\"et_fb_pref_limited_view_mode\";s:9:\"wireframe\";s:32:\"et_fb_pref_hide_disabled_modules\";s:5:\"false\";s:28:\"et_fb_pref_history_intervals\";i:1;s:29:\"et_fb_pref_page_creation_flow\";s:7:\"default\";s:42:\"et_fb_pref_quick_actions_always_start_with\";s:7:\"nothing\";s:44:\"et_fb_pref_quick_actions_show_recent_queries\";s:3:\"off\";s:39:\"et_fb_pref_quick_actions_recent_queries\";s:0:\"\";s:40:\"et_fb_pref_quick_actions_recent_category\";s:0:\"\";s:35:\"et_fb_pref_limited_modal_preference\";s:7:\"default\";s:30:\"et_fb_pref_modal_snap_location\";s:5:\"right\";s:21:\"et_fb_pref_modal_snap\";s:4:\"true\";s:27:\"et_fb_pref_modal_fullscreen\";s:5:\"false\";s:32:\"et_fb_pref_modal_dimension_width\";i:400;s:33:\"et_fb_pref_modal_dimension_height\";i:400;s:27:\"et_fb_pref_modal_position_x\";i:30;s:27:\"et_fb_pref_modal_position_y\";i:50;s:32:\"et_fb_pref_limited_toolbar_click\";s:5:\"false\";s:34:\"et_fb_pref_limited_toolbar_desktop\";s:4:\"true\";s:31:\"et_fb_pref_limited_toolbar_grid\";s:5:\"false\";s:32:\"et_fb_pref_limited_toolbar_hover\";s:5:\"false\";s:32:\"et_fb_pref_limited_toolbar_phone\";s:4:\"true\";s:33:\"et_fb_pref_limited_toolbar_tablet\";s:4:\"true\";s:36:\"et_fb_pref_limited_toolbar_wireframe\";s:4:\"true\";s:31:\"et_fb_pref_limited_toolbar_zoom\";s:4:\"true\";s:36:\"et_fb_pref_lv_modal_dimension_height\";i:0;s:35:\"et_fb_pref_lv_modal_dimension_width\";i:0;s:30:\"et_fb_pref_lv_modal_position_x\";i:0;s:30:\"et_fb_pref_lv_modal_position_y\";i:0;s:34:\"et_fb_pref_responsive_tablet_width\";i:768;s:35:\"et_fb_pref_responsive_tablet_height\";i:0;s:33:\"et_fb_pref_responsive_phone_width\";i:400;s:34:\"et_fb_pref_responsive_phone_height\";i:0;s:35:\"et_fb_pref_responsive_minimum_width\";i:320;s:35:\"et_fb_pref_responsive_maximum_width\";i:980;s:18:\"divi_color_palette\";s:63:\"#000000|#FFFFFF|#E02B20|#211865|#EDF000|#7CDA24|#0C71C3|#8300E9\";}','yes'),(18698,'_transient_et_updated_plugins_data','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1664288377;}','yes'),(18846,'et_pb_cache_notice','a:1:{s:6:\"4.18.0\";s:6:\"ignore\";}','yes'),(18847,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}','yes'),(18848,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}','yes'),(18849,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}','yes'),(18862,'et_pb_builder_plugin_status','activated','yes'),(18918,'mm_cache_settings','a:2:{s:4:\"page\";s:7:\"enabled\";s:7:\"browser\";s:7:\"enabled\";}','yes'),(18919,'epc_filetype_expirations','a:9:{s:9:\"image/jpg\";s:8:\"24 hours\";s:10:\"image/jpeg\";s:8:\"24 hours\";s:9:\"image/gif\";s:8:\"24 hours\";s:9:\"image/png\";s:8:\"24 hours\";s:8:\"text/css\";s:8:\"24 hours\";s:15:\"application/pdf\";s:6:\"1 week\";s:15:\"text/javascript\";s:8:\"24 hours\";s:9:\"text/html\";s:7:\"2 hours\";s:7:\"default\";s:8:\"24 hours\";}','yes'),(18920,'endurance_cache_level','2','yes'),(18921,'epc_skip_404_handling','','yes'),(18973,'rb_disable_comments','a:2:{s:17:\"remove_everywhere\";b:1;s:19:\"disabled_post_types\";a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:10:\"attachment\";i:3;s:7:\"project\";}}','yes'),(18974,'font-awesome-releases','a:2:{s:12:\"refreshed_at\";i:1662040035;s:4:\"data\";a:3:{s:16:\"latest_version_5\";s:6:\"5.15.4\";s:16:\"latest_version_6\";s:5:\"6.2.0\";s:8:\"releases\";a:50:{s:5:\"5.0.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:12:{s:11:\"css/all.css\";s:71:\"sha384-VVoO3UHXsmXwXvf1kJx2jV3b1LbOfTqKL46DdeLG8z4pImkQ4GAP9GMy+MxHMDYG\";s:14:\"css/brands.css\";s:71:\"sha384-JT52EiskN0hkvVxJA8d2wg8W/tLxrC02M4u5+YAezNnBlY/N2yy3X51pKC1QaPkw\";s:19:\"css/fontawesome.css\";s:71:\"sha384-7mC9VNNEUg5vt0kVQGblkna/29L8CpTJ5fkpo0nlmTbfCoDXyuK/gPO3wx8bglOz\";s:15:\"css/regular.css\";s:71:\"sha384-JZ2w5NHrKZS6hqVAVlhUO3eHPVzjDZqOpWBZZ6opcmMwVjN7uoagKSSftrq8F0pn\";s:13:\"css/solid.css\";s:71:\"sha384-TQW9cJIp+U8M7mByg5ZKUQoIxj0ac36aOpNzqQ04HpwyrJivS38EQsKHO2rR5eit\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-X1ZQAmDHBeo7eaAJwWMyyA3mva9mMK10CpRFvX8PejR0XIUjwvGDqr2TwJqwbH9S\";s:9:\"js/all.js\";s:71:\"sha384-2CD5KZ3lSO1FK9XJ2hsLsEPy5/TBISgKIk2NSEcS03GbEnWEfhzd0x6DBIkqgPN1\";s:12:\"js/brands.js\";s:71:\"sha384-i3UPn8g8uJGiS6R/++68nHyfYAnr/lE/biTuWYbya2dONccicnZZPlAH6P8EWf28\";s:17:\"js/fontawesome.js\";s:71:\"sha384-tqpP2rDLsdWkeBrG3Jachyp0yzl/pmhnsdV88ySUFZATuziAnHWsHRSS97l5D9jn\";s:13:\"js/regular.js\";s:71:\"sha384-hXqI+wajk6jJu2DXwf2oqBg6q5+HqXM5yz9smX94pDjiLzH81gAuVtjter66i1Ct\";s:11:\"js/solid.js\";s:71:\"sha384-kbPfTyGdGugnvSKEBJCd6+vYipOQ6a+2np5O4Ty3sW7tgI0MpwPyAh+QwUpMujV9\";s:14:\"js/v4-shims.js\";s:71:\"sha384-BRge2B8T+0rmvB/KszFfdQ0PDvPnhV2J80JMKrnq21Fq6tHeKFhSIrdoroXvk7eB\";}s:3:\"pro\";a:0:{}}}s:5:\"5.0.2\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:12:{s:11:\"css/all.css\";s:71:\"sha384-bJB2Wn8ZuuMwYA12t6nmPqVTqT64ruKTAWqdxs/Oal3vexA7RPAo3FtVU5hIil2E\";s:14:\"css/brands.css\";s:71:\"sha384-F8vNf2eNIHep58ofQztLhhWsZXaTzzfZRqFfWmh7Cup7LqrF0HCtB6UCAIIkZZYZ\";s:19:\"css/fontawesome.css\";s:71:\"sha384-CTTGZltCsihOiEwOCbT7p1lhij8kYk6lapCladmNzxj4yXj/AKp6q3+CRoNN3UCG\";s:15:\"css/regular.css\";s:71:\"sha384-GtLUznQ3nMgus15JP1pAE2UH9HAQi8gjQTNfIT+Gq6zFPeeq3y+Xtxt5HUBFF0YO\";s:13:\"css/solid.css\";s:71:\"sha384-WEKepgUDOaHRK2/r+qA7W/Srd+36IIOmBm/+wm9aSz6acYC0LkyM9UJElLVNy95T\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-sV6Qj6KRPF7HrXfo5NK0evVt+YbNxUuGZU2udYKDAxwxPVTuEE6lofcZJhRMK4WT\";s:9:\"js/all.js\";s:71:\"sha384-xiGKJ+4CP2p2WkTifyjHDeZVAg1zBrnJV8LU33N7J+5BWp1biPcSpEJJY7hFiRLn\";s:12:\"js/brands.js\";s:71:\"sha384-V+scQ15NnQuKVajRBsSery7bV87d0xDAoCs4pB8ZcwW74+zzW5CkgRmIFOYw8kKX\";s:17:\"js/fontawesome.js\";s:71:\"sha384-CxMnuVDquTXcsJnW1rAfSm4uzGr12HENF1oe+JRZm4jcQDerJ6VeA1XLvAso396r\";s:13:\"js/regular.js\";s:71:\"sha384-ihKlq3j4PocIYMPkNra+ieEVsLuFzj4rp1yjn3jq+La7r4G9kf9COpWfOI8SGapM\";s:11:\"js/solid.js\";s:71:\"sha384-KDEuZV2OBU0Q264kBX2Idu9gYr5z/fQrtvUsKfuKGEDkDxV0GBVN/qi3QoLZPmbJ\";s:14:\"js/v4-shims.js\";s:71:\"sha384-0nloDHslShcnKvH94Zv8nb0zPlzTFCzfZGx9YxR2ngUWs9HXXHVx1PUQw0u9/7LE\";}s:3:\"pro\";a:0:{}}}s:5:\"5.0.3\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:12:{s:11:\"css/all.css\";s:71:\"sha384-KFTzeUQSHjcfuC8qqdFm+laWVqpkucx/3uXo41hhKQzUEtbNnNSk8KEEBZ+2lEQy\";s:14:\"css/brands.css\";s:71:\"sha384-J6h7hpR0mfr79Ck/ZfDrhN14FnkbkLbd+mm0yTw5spSpK08yOK/AB9IRR/Dcg8EJ\";s:19:\"css/fontawesome.css\";s:71:\"sha384-l2oTZy4pLseT/J6oW0mwsjKPhjpTctOfU191uVonzezZiqw9PPcz4AMKsIAeyR4P\";s:15:\"css/regular.css\";s:71:\"sha384-cDXlx+8npD3wa2ahyeSZvsi9VlRrMmJVIB1rpK7Ftyq4cppWM9d2mBhrlOqYBljt\";s:13:\"css/solid.css\";s:71:\"sha384-ioYc/tyAAvPTKdlEWH/BDO/Fn0RGAWisNzyfZNt74mHfA6UPN2tzjD6Nm4ieQfBR\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-bnoXyQHIAXdkrtQTtvuajtPgmWqHQ8657dQ4vzySapygDMqzijBpEq96AwgX2u4N\";s:9:\"js/all.js\";s:71:\"sha384-4OPaVeLgwRHdGJplmRGxGcoGYwxBAdR8Qr9z/Av7blRYPlRIPtjTygdtpQlD1HHv\";s:12:\"js/brands.js\";s:71:\"sha384-68dqWCRgViK/UsBTW5vGfntS6GdBDT5D4KWUBXTf6IkF2NFFD+X/0QNs0FZaIELt\";s:17:\"js/fontawesome.js\";s:71:\"sha384-sBtO3o3oG61AtAKrg74kfk50JP0YHcRTwOXgTeUobbJJBgYiCcmtkh784fmHww23\";s:13:\"js/regular.js\";s:71:\"sha384-J0ggktpCvzBHSxd/a8EBQgQDIWBtASK5rhHMvGWuR/UyjuPgX0iCAcb3OlfhvlQz\";s:11:\"js/solid.js\";s:71:\"sha384-DX1/9hggbc1yKVl40n2dNF9OzLf9ZPwZm87WzIW+FinkgjSq18PXpUxOL4I0iS1+\";s:14:\"js/v4-shims.js\";s:71:\"sha384-kysXtDCmCTYxM55rHL+9xPu6+Inoi3ZzZHvcxkXs+iPj5nymJKlauQdXyzubyD0b\";}s:3:\"pro\";a:0:{}}}s:5:\"5.0.4\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:12:{s:11:\"css/all.css\";s:71:\"sha384-DmABxgPhJN5jlTwituIyzIUk6oqyzf3+XuP7q3VfcWA2unxgim7OSSZKKf0KSsnh\";s:14:\"css/brands.css\";s:71:\"sha384-1beec9tTZuu+KrTudmvRnGpK81r78DKCAXdphCvdG+PR+n/WCczsYPqTBTvYsM7z\";s:19:\"css/fontawesome.css\";s:71:\"sha384-xdTUmhbcetyLRVL4PAriRajOve+/5pjOiy5sJABnhXMcRMVc9HI9s2KmOCjjDK/P\";s:15:\"css/regular.css\";s:71:\"sha384-nM5tBytXTc1HDZ/A3My2gNT2TxLk/M/5yFi0QrOxaZjBi7QpKUfA2QqT+fcSxSlg\";s:13:\"css/solid.css\";s:71:\"sha384-g2aKxiZcFezoVOq4MsjaxuBbSxSlXD/NRQ5GaPLfvCtcTLgP3fYZKKAGxCM/wMfe\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-MCR8qGTbdyK+hklwz1eKgGiAjT57F5HEJMs/uHRAwZ6GI5602TyGI89FyrbUwiIc\";s:9:\"js/all.js\";s:71:\"sha384-nVi8MaibAtVMFZb4R1zHUW/DsTJpG/YwPknbGABVOgk5s6Vhopl6XQD/pTCG/DKB\";s:12:\"js/brands.js\";s:71:\"sha384-dl3ONr32uA3YqpqKWzhXLs5k1YbKOn3dwiMbEP1S/XQMa3LPRwvJrhW7+lomL/uc\";s:17:\"js/fontawesome.js\";s:71:\"sha384-l7FyBM+wFIWpfmy8RYkWgEu/Me6Hrz98ijLu4nP3PkGbTtTCvtHB5ktI8hLEgEG3\";s:13:\"js/regular.js\";s:71:\"sha384-lwwoO5Gg19TptbILrLBjV28EVJ9RW3tD3cGyjCRn3OY9IuLua/YRlE47btZIXfMv\";s:11:\"js/solid.js\";s:71:\"sha384-4KkAk2UXMS9Xl3FoAAN43VJxRZ/emjElCz60xUTegPOZlbPLZGylvor2v7wQ0JNb\";s:14:\"js/v4-shims.js\";s:71:\"sha384-yfrMPoFcXUzdvECrvYRYE7wlxouXxjRSge5x6BlPPOb38tW4n0e8EW79RGU7VY0R\";}s:3:\"pro\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-1RxicL8bcQJWgpr/clvtGVG7DVFJvDX/DVsJsbjKhXtdo8r5WVZQqB9AHTNPr08A\";s:14:\"css/brands.css\";s:71:\"sha384-sFwP5Zsnp6I4zQxUMPHvv8Bk16eEzU0YhaNbMCftDHPKDD+BR8WdXAHKL4xpipII\";s:19:\"css/fontawesome.css\";s:71:\"sha384-VFi8UvBDvM8muKO8ogMXi2j8vdJiu8hq1uxpX/NS8BsftBiJpheM5AuhFH1dvURx\";s:13:\"css/light.css\";s:71:\"sha384-4FGoKudkcpRXgx5UNFa5TxzaHUhnvCGFDeZKncEn9KJx/l07kcid3VbpwajrvrFW\";s:15:\"css/regular.css\";s:71:\"sha384-eyjlqgvgpHiWM0GoL4/hsTh22piTKmMTM+sfJYacddG2n9AEubqQB/w4CPJK1/1b\";s:13:\"css/solid.css\";s:71:\"sha384-TlWtvBj4TXNlpJC5Qq4aHel0R/dywVcP/6eOFC0qptQ71WWSxJCvuTajjGb1duS9\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-rHay3RzsgCtbjvDmBLThu6ESXlU4Al5STjlHSpNygnbeyt04OP1uKZVXB2Zy16+T\";s:9:\"js/all.js\";s:71:\"sha384-vV0064GQjt+TcoZxVPm/f6vyAivSNofFvOHKLWxcDl784Dzm9W4BBpoTvUG4vi5a\";s:12:\"js/brands.js\";s:71:\"sha384-/877azmwW/YhoBsPeM9dh61dNr5XGbuk24lyjPbFWyrPaZPyU2oxgOY6PE1OH4z4\";s:17:\"js/fontawesome.js\";s:71:\"sha384-7L9/YJQEf9kLPc6sdtoVIsuBNxCVi4OmHPcszcY685IJIcB52hgYoL1OiwTawJS/\";s:11:\"js/light.js\";s:71:\"sha384-iXxa9ExuZ0Fi2N2VO/buuWuAgYIUXNtOaJiKLa40Bjt43KJpzJdhg2TBHyBVqCPh\";s:13:\"js/regular.js\";s:71:\"sha384-YzSStfq1m16y1v5M97ViNRpiQUCVpagVVOkqlmww8otyjFkY6EXT4dShlKNuxRDu\";s:11:\"js/solid.js\";s:71:\"sha384-WJDZ/GI6pz1VoELs6i44T3f00fguksrLXIx3LXHdlaAzmOvX/mTK5j+qzHJdKejC\";s:14:\"js/v4-shims.js\";s:71:\"sha384-8XZ16R7aSGin4NRuv6gn5xfbsvad5H8LR41g48iduwkfZEqDgXlvUjkJKgxqZUiW\";}}}s:5:\"5.0.6\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:12:{s:11:\"css/all.css\";s:71:\"sha384-VY3F8aCQDLImi4L+tPX4XjtiJwXDwwyXNbkH7SHts0Jlo85t1R15MlXVBKLNx+dj\";s:14:\"css/brands.css\";s:71:\"sha384-rK0EPNdv8UCeRNPzX+96ARRlf9hZM+OukGceDTdbPH30DYcSI1x5QyBU7d2I2kHX\";s:19:\"css/fontawesome.css\";s:71:\"sha384-dbkYY2NmVwxaFrr4gq04oVh6w39ovmevsgD80Il1Od3hwpgREqyPb3XqbpaSwN4x\";s:15:\"css/regular.css\";s:71:\"sha384-HGbVnizaFNw8zW+vIol9xMwBFWdV7/k61278Zo1bnMy9dLmjv48D7rtpgYRTe5Pd\";s:13:\"css/solid.css\";s:71:\"sha384-GfC9nfESTZkjCPFbevBVig3FTd6wkjRRYMtj+qFgK8mMBvGIje2rrALgiBy6pwRL\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-U2b24h7gWqOYespg+vI5yiIn4ZYlTevT0N96xkGrw7ktP1gg9XwqEslsdTLJdlGg\";s:9:\"js/all.js\";s:71:\"sha384-0AJY8UERsBUKdWcyF3o2kisLKeIo6G4Tbd8Y6fbyw6qYmn4WBuqcvxokp8m2UzSD\";s:12:\"js/brands.js\";s:71:\"sha384-4iSpDug9fizYiQRPpPafdAh5NaF8yzNMjOvu3veWgaFm0iIo8y4vUi7f3Yyz5WP1\";s:17:\"js/fontawesome.js\";s:71:\"sha384-rttr/ldR2uHigckjTCjMDe47ySeFVaL3Q7xUkJZir56u8Z8h/XnHJXHocgyfb25F\";s:13:\"js/regular.js\";s:71:\"sha384-G375DXNEVfALvsggywPWDYrRxNOvXaCYt/kiq/GXmbaDW8/B0XtbC8iuLpXXm1jF\";s:11:\"js/solid.js\";s:71:\"sha384-U0ZJ7q5xbT8hEoRqj61HzpvsqNOQ8bsHY2VqSRPqGOzjHXmmV70Aw+DBC/PT00p4\";s:14:\"js/v4-shims.js\";s:71:\"sha384-L8zntmMOcCbOxXiL5Rjn6ubB7KunZiQ8U3bb9x6FFTGDEvVEESW9n+x49jm34K3W\";}s:3:\"pro\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-ldFHeX3xCFvM4uf7m0mCMIoCPVwM71jopwqLZRldf+ojynoGVSxDiphfScLukkwO\";s:14:\"css/brands.css\";s:71:\"sha384-Ks7IvHjmJ4FIFxhK4iNrtW0rAVo1DlCYpe/nDsK8CnU+yactd38YiNE1GT018WPg\";s:19:\"css/fontawesome.css\";s:71:\"sha384-sATKZbJwxaEIU3unIoL1VMbIyrNNh7PlgnaiWlicWXeRA7qdnzfFzMP9AaN2wfTU\";s:13:\"css/light.css\";s:71:\"sha384-YWWfxaKIDrbFXuVQnpxASJDHmFl2K5f2vDgrcROb+rYycoqcQVdMlfu3U38boTg/\";s:15:\"css/regular.css\";s:71:\"sha384-CydLcYoDSbudHX/6hygyQD4jBMPsv91d/RwdtH1qxI79KG8kII/OzxKDwsswywA4\";s:13:\"css/solid.css\";s:71:\"sha384-uBARwTxpZ7FB08kQlCOS/dUaN3TrGGcHthrXYIhZBpdq7YtUdVDM1sAUH9NIozMl\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-BptPo+4C0N+fnMTnfw7ddW/zYUJhuNEe7edve8UrMbs+fCpfDJvJcC/lpa5Nvaky\";s:9:\"js/all.js\";s:71:\"sha384-FrB6Se1Wkxlx66xA4rPuOoOolLyQt5B1uptDmtLJSIVRJDbNkmE3QOLipnMuAbUW\";s:12:\"js/brands.js\";s:71:\"sha384-G12tjfNd/W8L4IrE5+f13LUbpzVowwhNDv+WNecvxjbaGN9bbSY7epBOqUlRqXnq\";s:17:\"js/fontawesome.js\";s:71:\"sha384-Ln5PcCmuH8v+AF9nt+HkM2GfXjsn1CtVc0n+ciM8+oe3nwGyPCceDVva7bUjNfo0\";s:11:\"js/light.js\";s:71:\"sha384-jzS22FYPy68IBBet2IRM5aQDOXjg9X1g+drXIVonDtyqGFCtUA0YIdgHdvCCX/fD\";s:13:\"js/regular.js\";s:71:\"sha384-M8TFIPAJNl8UIC8OP6GFcIE0SHkGN4zjwwjz+BBTz60XhNegOrZmjNtTQNKifmXX\";s:11:\"js/solid.js\";s:71:\"sha384-R/e3QvpS9m8HcN9b9l6nNo678ekTXL31kFY/XtRHSjrihDX8A2DF8HaXhdlAtzMx\";s:14:\"js/v4-shims.js\";s:71:\"sha384-X9eLyweB0LOTEGCwMARo9+zibrXQYmBMSrhFk4ncpT/WYnPIcpTg0IgBFDgzuPwL\";}}}s:5:\"5.0.8\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:12:{s:11:\"css/all.css\";s:71:\"sha384-3AB7yXWz4OeoZcPbieVW64vVXEwADiYyAEhwilzWsLw+9FgqpyjjStpPnpBO8o8S\";s:14:\"css/brands.css\";s:71:\"sha384-IiIL1/ODJBRTrDTFk/pW8j0DUI5/z9m1KYsTm/RjZTNV8RHLGZXkUDwgRRbbQ+Jh\";s:19:\"css/fontawesome.css\";s:71:\"sha384-q3jl8XQu1OpdLgGFvNRnPdj5VIlCvgsDQTQB6owSOHWlAurxul7f+JpUOVdAiJ5P\";s:15:\"css/regular.css\";s:71:\"sha384-A/oR8MwZKeyJS+Y0tLZ16QIyje/AmPduwrvjeH6NLiLsp4cdE4uRJl8zobWXBm4u\";s:13:\"css/solid.css\";s:71:\"sha384-v2Tw72dyUXeU3y4aM2Y0tBJQkGfplr39mxZqlTBDUZAb9BGoC40+rdFCG0m10lXk\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-TGBI4yK0MJz2ga16RLBBt4xT4aoPMPmRYhfu1Kl5IJ0gsLyOBIKHEb49BtoO+lPS\";s:9:\"js/all.js\";s:71:\"sha384-SlE991lGASHoBfWbelyBPLsUlwY1GwNDJo3jSJO04KZ33K2bwfV9YBauFfnzvynJ\";s:12:\"js/brands.js\";s:71:\"sha384-sCI3dTBIJuqT6AwL++zH7qL8ZdKaHpxU43dDt9SyOzimtQ9eyRhkG3B7KMl6AO19\";s:17:\"js/fontawesome.js\";s:71:\"sha384-7ox8Q2yzO/uWircfojVuCQOZl+ZZBg2D2J5nkpLqzH1HY0C1dHlTKIbpRz/LG23c\";s:13:\"js/regular.js\";s:71:\"sha384-t7yHmUlwFrLxHXNLstawVRBMeSLcXTbQ5hsd0ifzwGtN7ZF7RZ8ppM7Ldinuoiif\";s:11:\"js/solid.js\";s:71:\"sha384-+Ga2s7YBbhOD6nie0DzrZpJes+b2K1xkpKxTFFcx59QmVPaSA8c7pycsNaFwUK6l\";s:14:\"js/v4-shims.js\";s:71:\"sha384-4CnzNxEP5RK316IYY2+W4hc05uJdfd+p9iNVeNG9Ws3Qxf5tKolysO9wu/8rloj2\";}s:3:\"pro\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-OGsxOZf8qnUumoWWSmTqXMPSNI9URpNYN35fXDb5Cv5jT6OR673ah1e5q+9xKTq6\";s:14:\"css/brands.css\";s:71:\"sha384-VRONz34zTLl4P+DLYyJ8kP8C3tB1PGtqL5p8nBAvHuoc1u32bR3RHixrjffD8Fly\";s:19:\"css/fontawesome.css\";s:71:\"sha384-+5VkSw5C1wIu2iUZEfX77QSYRb5fhjmEsRn8u4r9Ma8mvu/GvTag4LDSEAw7RjXl\";s:13:\"css/light.css\";s:71:\"sha384-shmfBA2CRxp88gq8NcvWbEN8KExYU4uvQUBEG36BStGZ5k91nGKE4wDvvWvuimbu\";s:15:\"css/regular.css\";s:71:\"sha384-0w6MzzKHIB9cUlfWSmSp1Pj6XqGGDseWSMz1Yppk3UOc1dhYhpFx1AuCkMBECEvC\";s:13:\"css/solid.css\";s:71:\"sha384-+iHwwKZGTdlVFbv4fsKmLkogfdKlp47zQGkSMDN3ANc8kXjyKudKvQwinI5VH+2C\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-b2wDmqWyAwmI2rS5ut5UweBS1V32L/k1+2Oo7eCaHdXOS/1bFwC8AKevTI6N28LN\";s:9:\"js/all.js\";s:71:\"sha384-816IUmmhAwCMonQiPZBO/PTgzgsjHtpb78rpsLzldhb4HZjFzBl06Z3eu4ZuwHTz\";s:12:\"js/brands.js\";s:71:\"sha384-gJijC/2qM/p3zm2wHECHX1OMLdzlu61sNp7YfmFQxo+OyT9hO1orX7MmnHhaoXQ4\";s:17:\"js/fontawesome.js\";s:71:\"sha384-Ht3fAeBiX/rVmKVyMwONAIIt0aRoPzZgq1FzdRgR9zFo+Kcd8YDwUbFlTItfaYW4\";s:11:\"js/light.js\";s:71:\"sha384-mfSnp84URDGC1t+cg63LgVKwEs63ulRUpjNneyDZMGMAE9ZKUNZ85rMBMHucGLYP\";s:13:\"js/regular.js\";s:71:\"sha384-SIp/+zr0hyfSVIQPkAwB/L1h4fph6T3CmU4mE7IFtGJlgwoCko0Bye/1J0sjyh4v\";s:11:\"js/solid.js\";s:71:\"sha384-jTxqWCb7UqRDQDd2Nkuh5BkHe9k+ElbFLa3NaJfid5kBK/+cVktzVRXrw0isFWxf\";s:14:\"js/v4-shims.js\";s:71:\"sha384-w/sFNq23wbOXJOUpFyISABLXk9tA4Z8r9hl80er2mobEwgS7VXXYDANaWyrCWe3/\";}}}s:5:\"5.0.9\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:12:{s:11:\"css/all.css\";s:71:\"sha384-5SOiIsAziJl6AWe0HWRKTXlfcSHKmYV4RBF18PPJ173Kzn7jzMyFuTtk8JA7QQG1\";s:14:\"css/brands.css\";s:71:\"sha384-ATC/oZittI09GYIoscTZKDdBr/kI3lCwzw3oBMnOYCPVNJ4i7elNlCxSgLfdfFbl\";s:19:\"css/fontawesome.css\";s:71:\"sha384-Lyz+8VfV0lv38W729WFAmn77iH5OSroyONnUva4+gYaQTic3iI2fnUKtDSpbVf0J\";s:15:\"css/regular.css\";s:71:\"sha384-seionXF7gEANg+LFxIOw3+igh1ZAWgHpNR8SvE64G/Zgmjd918dTL55e8hOy7P4T\";s:13:\"css/solid.css\";s:71:\"sha384-29Ax2Ao1SMo9Pz5CxU1KMYy+aRLHmOu6hJKgWiViCYpz3f9egAJNwjnKGgr+BXDN\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-Hl6tZnMfNiJHYyFxpmnRV8+pziARxY3X/4XWfFXldG7sdkkLv+Od2Gpc57P7C1g6\";s:9:\"js/all.js\";s:71:\"sha384-8iPTk2s/jMVj81dnzb/iFR2sdA7u06vHJyyLlAd4snFpCl/SnyUjRrbdJsw1pGIl\";s:12:\"js/brands.js\";s:71:\"sha384-qJKAzpOXfvmSjzbmsEtlYziSrpVjh5ROPNqb8UZ60myWy7rjTObnarseSKotmJIx\";s:17:\"js/fontawesome.js\";s:71:\"sha384-2IUdwouOFWauLdwTuAyHeMMRFfeyy4vqYNjodih+28v2ReC+8j+sLF9cK339k5hY\";s:13:\"js/regular.js\";s:71:\"sha384-BazKgf1FxrIbS1eyw7mhcLSSSD1IOsynTzzleWArWaBKoA8jItTB5QR+40+4tJT1\";s:11:\"js/solid.js\";s:71:\"sha384-P4tSluxIpPk9wNy8WSD8wJDvA8YZIkC6AQ+BfAFLXcUZIPQGu4Ifv4Kqq+i2XzrM\";s:14:\"js/v4-shims.js\";s:71:\"sha384-9f5gaI9TkuYhi5O/inzfdOXx2nkIhDsLtXqBNmtY6/c5PoqXfd0U2DAjqQVSCXQh\";}s:3:\"pro\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-L+XK540vkePe55E7PAfByfvW0XpsyYpsifTpgh/w8WvH6asVg/c2zqp0EfZfZTbF\";s:14:\"css/brands.css\";s:71:\"sha384-+LMmZxgyldhNCY6nei3oAWJjHbpbROtVb+f5Ux/nahA+Xjm3wcNdu7zyB39Yj38S\";s:19:\"css/fontawesome.css\";s:71:\"sha384-31qpW3hduWGiGey9tdI9rBBxiog5pxZbPiAlD6YKIgy0P2V1meprKhvpk+xJDkMw\";s:13:\"css/light.css\";s:71:\"sha384-wD8IB6DSQidXyIWfwBrsFwTaHTQDsgzyeqzhd1jNdBZHvGSa7KRGb6Q5sMlroCyk\";s:15:\"css/regular.css\";s:71:\"sha384-hJbmKHxbgrH79UtKxubo1UTe96bOL4Xfhjaqr0csD1UMPEPbeV+446QAC+IGxY+b\";s:13:\"css/solid.css\";s:71:\"sha384-k8v16DuQ4ZFtRfpTeqTW4tcHIj5tkvUNQm1QiLs90XiToLzyFeV+yxujHjSZ2wim\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-yVUvm1bVSmayKKt0YHPKotNQzlBvgNhEBbQ6U1d38bjpapXMVmE+SLXrpQ9td4Ij\";s:9:\"js/all.js\";s:71:\"sha384-DtPgXIYsUR6lLmJK14ZNUi11aAoezQtw4ut26Zwy9/6QXHH8W3+gjrRDT+lHiiW4\";s:12:\"js/brands.js\";s:71:\"sha384-yIJb2TJeTM04vupX+3lv0Qp9j0Pnk8Qm9UPYlXr3H0ROCHNNLoacpS++HWDabbzi\";s:17:\"js/fontawesome.js\";s:71:\"sha384-8QYlVHotqQzcAVhJny7MO9ZR0hASr6cRCpURV+EobTTAv5wftkn4i+U6UrMqoCis\";s:11:\"js/light.js\";s:71:\"sha384-06sraYAcw8BzUjsPn5z8Qi/QAA2/ZJl5GN3LGtRp7k+tZpu7kw+sRNXDDTU4RkOt\";s:13:\"js/regular.js\";s:71:\"sha384-C6h/8oKUfY6cVuGfFSu9uGIlFkaD1u1j+ByYGFTdFbOpHOHpw39lKxqEpRgLQg6A\";s:11:\"js/solid.js\";s:71:\"sha384-nISI3wKDp2gWn9L91zXOKXZ6JPt2mteGTnaJAMfeNgAoeLKl2AQsWLH69HMmBXHa\";s:14:\"js/v4-shims.js\";s:71:\"sha384-vuyo8HdrwozCl2DhHOJ40ytjEx9FGy0cqu8i5GHeIoSUm6MPgqCXAVoUIsudKfuE\";}}}s:6:\"5.0.10\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:12:{s:11:\"css/all.css\";s:71:\"sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg\";s:14:\"css/brands.css\";s:71:\"sha384-KtmfosZaF4BaDBojD9RXBSrq5pNEO79xGiggBxf8tsX+w2dBRpVW5o0BPto2Rb2F\";s:19:\"css/fontawesome.css\";s:71:\"sha384-8WwquHbb2jqa7gKWSoAwbJBV2Q+/rQRss9UXL5wlvXOZfSodONmVnifo/+5xJIWX\";s:15:\"css/regular.css\";s:71:\"sha384-R7FIq3bpFaYzR4ogOiz75MKHyuVK0iHja8gmH1DHlZSq4tT/78gKAa7nl4PJD7GP\";s:13:\"css/solid.css\";s:71:\"sha384-HTDlLIcgXajNzMJv5hiW5s2fwegQng6Hi+fN6t5VAcwO/9qbg2YEANIyKBlqLsiT\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-ucawWSvpdgQ67m4VQzI6qBOHIsGRoY2soJtCkkp15b6IaNCLgauWkbKR8SAuiDQ7\";s:9:\"js/all.js\";s:71:\"sha384-slN8GvtUJGnv6ca26v8EzVaR9DC58QEwsIk9q1QXdCU8Yu8ck/tL/5szYlBbqmS+\";s:12:\"js/brands.js\";s:71:\"sha384-6jhVhr5a+Z1nLr9h+fd7ocMEo847wnGFelCHddaOOACUeZNoQwFXTxh4ysXVam8u\";s:17:\"js/fontawesome.js\";s:71:\"sha384-M2FSA4xMm1G9m4CNXM49UcDHeWcDZNucAlz1WVHxohug0Uw1K+IpUhp/Wjg0y6qG\";s:13:\"js/regular.js\";s:71:\"sha384-JWLWlnwX0pRcCBsI3ZzOEyVDoUmngnFnbXR9VedCc3ko4R3xDG+KTMYmVciWbf4N\";s:11:\"js/solid.js\";s:71:\"sha384-Q7KAHqDd5trmfsv85beYZBsUmw0lsreFBQZfsEhzUtUn5HhpjVzwY0Aq4z8DY9sA\";s:14:\"js/v4-shims.js\";s:71:\"sha384-RLvgmog5EsZMMDnT3uJo6ScffPHTtMbhtV8pcT8kP5UJzlVRU1SP9Hccelk3zYZc\";}s:3:\"pro\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-KwxQKNj2D0XKEW5O/Y6haRH39PE/xry8SAoLbpbCMraqlX7kUP6KHOnrlrtvuJLR\";s:14:\"css/brands.css\";s:71:\"sha384-cyAsyPMdnj21FGg6BEGfZdZ99a/opKBeFa8z5VoHPsPj+tLRYSxkRlPWnGkCJGyA\";s:19:\"css/fontawesome.css\";s:71:\"sha384-HE+OCjOJOPZavEcVffA6E24sIfY2RwV4JRieXa/3N5iCY8vgnTwZemElENQ8ak/K\";s:13:\"css/light.css\";s:71:\"sha384-k/d3hya1Xwx/V3yLAr7/6ibFaFIaN+xeY1eIv42A1Bn2HgfB+/YjLscji1sHLOkb\";s:15:\"css/regular.css\";s:71:\"sha384-D4yOV+i5oKU6w8CiadBDVtSim/UXmlmQfrIdRsuKT3nYhiF/Tb6YLQtyF9l0vqQF\";s:13:\"css/solid.css\";s:71:\"sha384-WjYgBJXUWNFTzFd4wNJuzUZx28GSgjzXrPO4LJrng96HFrI/nLrG1R5NET65v1yR\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-S/uB02cfkgX8kd+j6f3gmw/PPTg8xSiE/w6d8dE852PzHXkGBYLrqpWFse9hInR2\";s:9:\"js/all.js\";s:71:\"sha384-+1nLPoB0gaUktsZJP+ycZectl3GX7wP8Xf2PE/JHrb7X1u7Emm+v7wJMbAcPr8Ge\";s:12:\"js/brands.js\";s:71:\"sha384-OwdVp9K/baqiXthTvRnYzMcsTaqwG19SfDkTRc/GBIhK9eYlWVVBEvLlueA0STAP\";s:17:\"js/fontawesome.js\";s:71:\"sha384-TxXqLyCP6HYGVtr9V1M1rQE7IMbBEZoDdOX+MFeYNbWNwopWKVQM8NyqtU2x+5t2\";s:11:\"js/light.js\";s:71:\"sha384-rv/n2A+UxOzR1qs4wrcOtJ7Ai5Hcn3QQ8tvEkOo5lCvqCD3xwpeO3KZP18JpSXr3\";s:13:\"js/regular.js\";s:71:\"sha384-QNGmoJVI8f07j7N4+DSn4Cdob1PTBJOR6jRGwUwqSPyL2HmvWaBPXuSXOcStGo9D\";s:11:\"js/solid.js\";s:71:\"sha384-m3J/Wb6KcNkFJIpCugSSJITG80sKhEA+16UCFdq1LnpMTOCXwwpeyrE1FmyqoArv\";s:14:\"js/v4-shims.js\";s:71:\"sha384-H+U1wWQdWbEtuQPJ4ZpMl8yWydI6xc/306L/NZkpGY8BGpeSpu39V20x03S3xcMw\";}}}s:6:\"5.0.12\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:12:{s:11:\"css/all.css\";s:71:\"sha384-G0fIWCsCzJIMAVNQPfjH08cyYaUtMwjJwqiRKxxE/rx96Uroj1BtIQ6MLJuheaO9\";s:14:\"css/brands.css\";s:71:\"sha384-Pln/erVatVEIIVh7sfyudOXs5oajCSHg7l5e2Me02e3TklmDuKEhQ8resTIwyI+w\";s:19:\"css/fontawesome.css\";s:71:\"sha384-rnr8fdrJ6oj4zli02To2U/e6t1qG8dvJ8yNZZPsKHcU7wFK3MGilejY5R/cUc5kf\";s:15:\"css/regular.css\";s:71:\"sha384-RGDxJbFQcd3/Rei8rYb+3xO3YREd0abxm8WfLkYj7j4HHo5ZVuNUGVx8H8GbpFTQ\";s:13:\"css/solid.css\";s:71:\"sha384-VxweGom9fDoUf7YfLTHgO0r70LVNHP5+Oi8dcR4hbEjS8UnpRtrwTx7LpHq/MWLI\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-N44Xrku5FaDiZLZ8lncIZLh+x9xiqk1r0NTlUJQ5xanSpdORyQHP4Zp2WQJ9GlpJ\";s:9:\"js/all.js\";s:71:\"sha384-Voup2lBiiyZYkRto2XWqbzxHXwzcm4A5RfdfG6466bu5LqjwwrjXCMBQBLMWh7qR\";s:12:\"js/brands.js\";s:71:\"sha384-BPIhZF7kZGuZzBS4SP/oIqzpxWuOUtsPLUTVGpGw+EtB1wKt1hv63jb2OCroS3EX\";s:17:\"js/fontawesome.js\";s:71:\"sha384-6AOxTjzzZLvbTJayrLOYweuPckqh0rrB4Sj+Js8Vzgr85/qm2e0DRqi+rBzyK52J\";s:13:\"js/regular.js\";s:71:\"sha384-6XNKyHeL6pEPXURVNSKQ0lUP80a5FHqN0oFqSSS8Qviyy2u0KmCMJlQ5iLiAAPBg\";s:11:\"js/solid.js\";s:71:\"sha384-652/z7yNdGONCCBu0u5h5uF9voJhBdgruAuIDVheEaQ7O/ZC9wyyV+yZsYb32Wy7\";s:14:\"js/v4-shims.js\";s:71:\"sha384-STc8Gazx86A+NmeBWQTqa5Ob1wGSRQZevexYiUkKdiqZhi5LSZ28XYAvgptHK5HH\";}s:3:\"pro\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-HX5QvHXoIsrUAY0tE/wG8+Wt1MwvaY28d9Zciqcj6Ob7Tw99tFPo4YUXcZw9l930\";s:14:\"css/brands.css\";s:71:\"sha384-M4owBK0KiG0Vz+G5z/8v8tBb1+w9ts66Z6xKkZEPgBwzISkrcNra4GxZcvJPyaGB\";s:19:\"css/fontawesome.css\";s:71:\"sha384-ZDxYpspDwfEsC0ZJDb74i/Rqjb1CnX3a69Dz9vXv4PvvlTEkgMI02TATTRNJoZ06\";s:13:\"css/light.css\";s:71:\"sha384-PWGGmWk9+xVydf1Gzso0ouaikBBKLu4nCY52q+tBUMq5iXmRhpgTuDkjbtxZ1rXT\";s:15:\"css/regular.css\";s:71:\"sha384-tYZB+BP2inzRg01pQhSlW4Tloc0ULXYGiBaf5kSB5Tb3+l84bJy+PKerqziKz3iv\";s:13:\"css/solid.css\";s:71:\"sha384-KY40QRrgoQAM9BPN+gm7JoK30M/P6QqKRCbXUS3uWbPfycyiVeEsPkGNMhcNL3DU\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-ubRAMbpAKC+ULwg5mkUQLFReIXq1yeiKIcfV7cYp+rEaeINfEglYX6JOte80PCDk\";s:9:\"js/all.js\";s:71:\"sha384-quzri7saio48xMf3ED3HiI5YaItt68Q+0J3qc9EIfk1jk3QqCJhS24l6CZpUGfEe\";s:12:\"js/brands.js\";s:71:\"sha384-QlvHmHtevrYI4s/vdiK6chTDouw2pRA5av6ZLVtENubkoCgSZz4ZaXVvplQ1FRPs\";s:17:\"js/fontawesome.js\";s:71:\"sha384-CUrLKzrygRugRUPtEJ1u4nV4Ec6GnuDMRDGaxfoFXLI+sraWS6rqGg2Sjfs6BTet\";s:11:\"js/light.js\";s:71:\"sha384-z7YlG414oqy0TO7qY/nGfC8zd1LL8JAX3iNQ3iLybUIziHzaMYqBwUvhizEwV0Fd\";s:13:\"js/regular.js\";s:71:\"sha384-p/qo0lifpToZ0ubNiv1WFzlmYJU+BOenvU+evARCvCqALvbpZuqmZQ207vmYD6QL\";s:11:\"js/solid.js\";s:71:\"sha384-y//1Knkpeyl2S568g2ECqUA4n3MKf+kpj1/sfjUQbR1WtBPONceBHrQVMiAqfjLH\";s:14:\"js/v4-shims.js\";s:71:\"sha384-6+8zJP76v3EziONR2vMd32iSU3qbdicAE8KNp+NWniM6mBmvN80NlY+sbvCO+w7M\";}}}s:6:\"5.0.13\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:12:{s:11:\"css/all.css\";s:71:\"sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp\";s:14:\"css/brands.css\";s:71:\"sha384-VGCZwiSnlHXYDojsRqeMn3IVvdzTx5JEuHgqZ3bYLCLUBV8rvihHApoA1Aso2TZA\";s:19:\"css/fontawesome.css\";s:71:\"sha384-GVa9GOgVQgOk+TNYXu7S/InPTfSDTtBalSgkgqQ7sCik56N9ztlkoTr2f/T44oKV\";s:15:\"css/regular.css\";s:71:\"sha384-EWu6DiBz01XlR6XGsVuabDMbDN6RT8cwNoY+3tIH+6pUCfaNldJYJQfQlbEIWLyA\";s:13:\"css/solid.css\";s:71:\"sha384-Rw5qeepMFvJVEZdSo1nDQD5B6wX0m7c5Z/pLNvjkB14W6Yki1hKbSEQaX9ffUbWe\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-LAtyQAMHxrIJzktG06ww5mJ0KQ+uCqQIJFjwj+ceCjUlZ2jkLwJZt1nBGw4KaFEZ\";s:9:\"js/all.js\";s:71:\"sha384-xymdQtn1n3lH2wcu0qhcdaOpQwyoarkgLVxC/wZ5q7h9gHtxICrpcaSUfygqZGOe\";s:12:\"js/brands.js\";s:71:\"sha384-G/XjSSGjG98ANkPn82CYar6ZFqo7iCeZwVZIbNWhAmvCF2l+9b5S21K4udM7TGNu\";s:17:\"js/fontawesome.js\";s:71:\"sha384-6OIrr52G08NpOFSZdxxz1xdNSndlD4vdcf/q2myIUVO0VsqaGHJsB0RaBE01VTOY\";s:13:\"js/regular.js\";s:71:\"sha384-IJ3h7bJ6KqiB70L7/+fc44fl+nKF5eOFkgM9l/zZii9xs7W2aJrwIlyHZiowN+Du\";s:11:\"js/solid.js\";s:71:\"sha384-tzzSw1/Vo+0N5UhStP3bvwWPq+uvzCMfrN1fEFe+xBmv1C/AtVX5K0uZtmcHitFZ\";s:14:\"js/v4-shims.js\";s:71:\"sha384-qqI1UsWtMEdkxgOhFCatSq+JwGYOQW+RSazfcjlyZFNGjfwT/T1iJ26+mp70qvXx\";}s:3:\"pro\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-oi8o31xSQq8S0RpBcb4FaLB8LJi9AT8oIdmS1QldR8Ui7KUQjNAnDlJjp55Ba8FG\";s:14:\"css/brands.css\";s:71:\"sha384-t3MQUMU0g3tY/0O/50ja6YVaEFYwPpOiPbrHk9p5DmYtkHJU2U1/ujNhYruOJwcj\";s:19:\"css/fontawesome.css\";s:71:\"sha384-LDuQaX4rOgqi4rbWCyWj3XVBlgDzuxGy/E6vWN6U7c25/eSJIwyKhy9WgZCHQWXz\";s:13:\"css/light.css\";s:71:\"sha384-d8NbeymhHpk+ydwT2rk4GxrRuC9pDL/3A6EIedSEYb+LE+KQ5QKgIWTjYwHj/NBs\";s:15:\"css/regular.css\";s:71:\"sha384-HLkkol/uuRVQDnHaAwidOxb1uCbd78FoGV/teF8vONYKRP9oPQcBZKFdi3LYDy/C\";s:13:\"css/solid.css\";s:71:\"sha384-drdlAcijFWubhOfj9OS/gy2Gs34hVhVT90FgJLzrldrLI+7E7lwBxmanEEhKTRTS\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-8YpCivPy+AkMdZ0uAvEP04Gs77AN/6mS5AmZqkCwniP51zSG8rCMaH06OYuC4iXd\";s:9:\"js/all.js\";s:71:\"sha384-d84LGg2pm9KhR4mCAs3N29GQ4OYNy+K+FBHX8WhimHpPm86c839++MDABegrZ3gn\";s:12:\"js/brands.js\";s:71:\"sha384-44Hl7UlQr9JXHFcZOp9qWHk2H1lrsAN/cG3GNgB2JqbciecuJ2/B9sjelOMttzBM\";s:17:\"js/fontawesome.js\";s:71:\"sha384-BUkEHIKZJ0ussRY3zYfFL7R0LpqWmucr9K38zMTJWdGQywTjmzbejVSNIHuNEhug\";s:11:\"js/light.js\";s:71:\"sha384-+iGqamqASU/OvBgGwlIHH6HSEgiluzJvTqcjJy8IN9QG9aUfd0z0pKpTlH7TpU7X\";s:13:\"js/regular.js\";s:71:\"sha384-1bAvs6o5Yb7MMzvTI3oq2qkreCQFDXb6KISLBhrHR+3sJ/mm7ZWfnQVRwScbPEmd\";s:11:\"js/solid.js\";s:71:\"sha384-CucLC75yxFXtBjA/DCHWMS14abAUhf5HmFRdHyKURqqLqi3OrLsyhCyqp83qjiOR\";s:14:\"js/v4-shims.js\";s:71:\"sha384-LDfu/SrM7ecLU6uUcXDDIg59Va/6VIXvEDzOZEiBJCh148mMGba7k3BUFp1fo79X\";}}}s:5:\"5.1.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt\";s:14:\"css/brands.css\";s:71:\"sha384-7xAnn7Zm3QC1jFjVc1A6v/toepoG3JXboQYzbM0jrPzou9OFXm/fY6Z/XiIebl/k\";s:19:\"css/fontawesome.css\";s:71:\"sha384-ozJwkrqb90Oa3ZNb+yKFW2lToAWYdTiF1vt8JiH5ptTGHTGcN7qdoR1F95e0kYyG\";s:15:\"css/regular.css\";s:71:\"sha384-avJt9MoJH2rB4PKRsJRHZv7yiFZn8LrnXuzvmZoD3fh1aL6aM6s0BBcnCvBe6XSD\";s:13:\"css/solid.css\";s:71:\"sha384-TbilV5Lbhlwdyc4RuIV/JhD8NR+BfMrvz4BL5QFa2we1hQu6wvREr3v6XSRfCTRp\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-5aLiCANDiVeIiNfzcW+kXWzWdC6riDYfxLS6ifvejaqYOiEufCh0zVLMkW4nr8iC\";s:16:\"css/v4-shims.css\";s:71:\"sha384-epK5t6ciulYxBQbRDZyYJFVuWey/zPlkBIbv6UujFdGiIwQCeWOyv5PVp2UQXbr2\";s:9:\"js/all.js\";s:71:\"sha384-3LK/3kTpDE/Pkp8gTNp2gR/2gOiwQ6QaO7Td0zV76UFJVhqLl4Vl3KL1We6q6wR9\";s:12:\"js/brands.js\";s:71:\"sha384-ZqDZAkGUHrXxm3bvcTCmQWz4lt7QGLxzlqauKOyLwg8U0wYcYPDIIVTbZZXjbfsM\";s:17:\"js/fontawesome.js\";s:71:\"sha384-juNb2Ils/YfoXkciRFz//Bi34FN+KKL2AN4R/COdBOMD9/sV/UsxI6++NqifNitM\";s:13:\"js/regular.js\";s:71:\"sha384-Y+AVd32cSTAMpwehrH10RiRmA28kvu879VbHTG58mUFhd+Uxl/bkAXsgcIesWn3a\";s:11:\"js/solid.js\";s:71:\"sha384-Z7p3uC4xXkxbK7/4keZjny0hTCWPXWfXl/mJ36+pW7ffAGnXzO7P+iCZ0mZv5Zt0\";s:14:\"js/v4-shims.js\";s:71:\"sha384-3qT9zZfeo1gcy2NmVv5dAhtOYkj91cMLXRkasOiRB/v+EU3G+LZUyk5uqZQdIPsV\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-87DrmpqHRiY8hPLIr7ByqhPIywuSsjuQAfMXAE0sMUpY3BM7nXjf+mLIUSvhDArs\";s:14:\"css/brands.css\";s:71:\"sha384-C1HxUFJBptCeaMsYCbPUw8fdL2Cblu3mJZilxrfujE+7QLr8BfuzBl5rPLNM61F6\";s:19:\"css/fontawesome.css\";s:71:\"sha384-PnWzJku7hTqk2JREATthkLpYeVVGcBbXG5yEzk7hD2HIr/VxffIDfNSR7p7u4HUy\";s:13:\"css/light.css\";s:71:\"sha384-ANTAgj8tbw0vj4HgQ4HsB886G2pH15LXbruHPCBcUcaPAtn66UMxh8HQcb1cH141\";s:15:\"css/regular.css\";s:71:\"sha384-6kuJOVhnZHzJdVIZJcWiMZVi/JwinbqLbVxIbR73nNqXnYJDQ5TGtf+3XyASO4Am\";s:13:\"css/solid.css\";s:71:\"sha384-rvfDcG9KDoxdTesRF/nZ/sj8CdQU+hy6JbNMwxUTqpoI2LaPK8ASQk6E4bgabrox\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-/h6SKuA/ysT91EgYEGm9B6Z6zlaxuvKeW/JB7FWdGwCFalafxmGzJE2a63hS1BLm\";s:16:\"css/v4-shims.css\";s:71:\"sha384-2RBBYH6GaI11IJzJ6V1eL7kXXON+epoQIt+HqpzQdBrtyT7gNwKPDxo2roxUbtW9\";s:9:\"js/all.js\";s:71:\"sha384-E5SpgaZcbSJx0Iabb3Jr2AfTRiFnrdOw1mhO19DzzrT9L+wCpDyHUG2q07aQdO6E\";s:12:\"js/brands.js\";s:71:\"sha384-QPbiRUBnwCr8JYNjjm7CB0QP9h4MLvWUZhsChFX6dLzRkY22/nAxVYqa5nUTd6PL\";s:17:\"js/fontawesome.js\";s:71:\"sha384-ckjcH5WkBMAwWPjTJiy7K2LaLp37yyCVKAs3DKjhPdo0lRCDIScolBzRsuaSu+bQ\";s:11:\"js/light.js\";s:71:\"sha384-77i21WTcIcnSPKxwR794RLUQitpNqm6K3Fxsjx8hgoc3ZZbPJu5orgvU/7xS3EFq\";s:13:\"js/regular.js\";s:71:\"sha384-S21AhcbZ5SXPXH+MH7JuToqmKYXviahLaD1s9yApRbu1JDiMjPBGQIw/3PCHKUio\";s:11:\"js/solid.js\";s:71:\"sha384-q6QALO/4RSDjqnloeDcGnkB0JdK3MykIi6dUW5YD66JHE3JFf8rwtV5AQdYHdE0X\";s:14:\"js/v4-shims.js\";s:71:\"sha384-9gfBAY6DS3wT0yuvYN1aaA1Q9R0fYQHliQWLChuYDWJJ0wQJpoNZrzlcqd4+qqny\";}}}s:5:\"5.1.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-O8whS3fhG2OnA5Kas0Y9l3cfpmYjapjI0E4theH4iuMD+pLhbf6JI0jIMfYcK3yZ\";s:14:\"css/brands.css\";s:71:\"sha384-SYNjKRRe+vDW0KSn/LrkhG++hqCLJg9ev1jIh8CHKuEA132pgAz+WofmKAhPpTR7\";s:19:\"css/fontawesome.css\";s:71:\"sha384-0b7ERybvrT5RZyD80ojw6KNKz6nIAlgOKXIcJ0CV7A6Iia8yt2y1bBfLBOwoc9fQ\";s:15:\"css/regular.css\";s:71:\"sha384-QNorH84/Id/CMkUkiFb5yTU3E/qqapnCVt6k5xh1PFIJ9hJ8VfovwwH/eMLQTjGS\";s:13:\"css/solid.css\";s:71:\"sha384-S2gVFTIn1tJ/Plf+40+RRAxBCiBU5oAMFUJxTXT3vOlxtXm7MGjVj62mDpbujs4C\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-EH3TEAKYd7R0QbCS4OFuYoEpaXITVg5c/gdZ/beEaAbRjMGVuVLLFjiIKOneCzGZ\";s:16:\"css/v4-shims.css\";s:71:\"sha384-LCsPWAjCFLDeFHB5Y0SBIOqgC5othK8pIZiJAdbJDiN10B2HXEm1mFNHtED8cViz\";s:9:\"js/all.js\";s:71:\"sha384-BtvRZcyfv4r0x/phJt9Y9HhnN5ur1Z+kZbKVgzVBAlQZX4jvAuImlIz+bG7TS00a\";s:12:\"js/brands.js\";s:71:\"sha384-0inRy4HkP0hJ038ZyfQ4vLl+F4POKbqnaUB6ewmU4dWP0ki8Q27A0VFiVRIpscvL\";s:17:\"js/fontawesome.js\";s:71:\"sha384-NY6PHjYLP2f+gL3uaVfqUZImmw71ArL9+Roi9o+I4+RBqArA2CfW1sJ1wkABFfPe\";s:13:\"js/regular.js\";s:71:\"sha384-sAzYCvbTTKFOxT4VHu+ZjHRMXjvfjT6TAqOng28g4jba88Peg5+hkoVIqQKGjmj1\";s:11:\"js/solid.js\";s:71:\"sha384-GXi56ipjsBwAe6v5X4xSrVNXGOmpdJYZEEh/0/GqJ3JTHsfDsF8v0YQvZCJYAiGu\";s:14:\"js/v4-shims.js\";s:71:\"sha384-T69Lzd4bE7W8/vVrxvfsx45/AAKf6QmKEg5zSl0v9aZwo/pTKseq81mxdpARTQpx\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-xyMU7RufUdPGVOZRrc2z2nRWVWBONzqa0NFctWglHmt5q5ukL22+lvHAqhqsIm3h\";s:14:\"css/brands.css\";s:71:\"sha384-E5dVkWQIVhVPtBz/KK2TS7EM9l1+5XiWFPX7l3+5ayHPwDguGsHqof3GQbk55AS3\";s:19:\"css/fontawesome.css\";s:71:\"sha384-bHoj6f1b1CQ6zapOREeYBO/JnDjeV1fLuKn3KHnbqAAnkLva11KY3m8YyKPVXYLF\";s:13:\"css/light.css\";s:71:\"sha384-EGKQAl6ZrGi/zGxZ4ykVhc/A3tFVeBiLnneETILtcxQnZpo7ejmb4BkNa3zSgo4K\";s:15:\"css/regular.css\";s:71:\"sha384-AKIrAHbICIQF+NEqtykrcdzMjExDiKLa9hOyUVsr4PlHtktH7xaD10vO98UnPjuE\";s:13:\"css/solid.css\";s:71:\"sha384-Ux3tEr1RmnxCht2XbPkWWBuotwMVXKOe0PkWN/nmiD5CSV6Tyjl+Kr0J0iX1yd0q\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-++BmJ9x4V05AhCNnLr/RjPTY4BAFuhZsESUqH5hiwZspBvy7F+DRGvSH8tGHw9P/\";s:16:\"css/v4-shims.css\";s:71:\"sha384-TUicmScQcYANFcc4OQKEX6V1Zek9o9t+dwW/2tZoXmSigBk9JqfHxZZFlSo+0oRl\";s:9:\"js/all.js\";s:71:\"sha384-cHcg4nvWPIGArJhEgL2F5e09Cn1GyPQpNYKbPatFCpDefCbezZjPA3PhLozKTZnv\";s:12:\"js/brands.js\";s:71:\"sha384-KCMfKsP/3VgeibBQRMu4bT+9041Hi2v9PIz9FLOPJBEvxCBklc4o7tRwwQu4FWsT\";s:17:\"js/fontawesome.js\";s:71:\"sha384-EWJRWU7LQt+ri8YtDjTr8adATyP7y8DwlpE8zruoUC4nHNjtWZMU+iPYK+tFaV3U\";s:11:\"js/light.js\";s:71:\"sha384-0rp6k6cJIuLV1ORowDSSKr4VbEqb664PQUWdBvhJyt6IfkshVb0r6UlOkX6yVdaI\";s:13:\"js/regular.js\";s:71:\"sha384-Mw6yr+W+X+ckaAUbsPUb2BcU3Af9aSjmPMIlMr2iplN0VQIpscDWy/VwY5w0sz9w\";s:11:\"js/solid.js\";s:71:\"sha384-PyvJtlnGBA/R+hfVbHbnzfeT8G/iTORqPhR5WKGTQXlfmLe5bV+d64NECHG4sIMa\";s:14:\"js/v4-shims.js\";s:71:\"sha384-rJQjFeDWQReL3KmIeV81jB594CgKx/MmXyAgiuu88Jo253P+PSMgWzivZQtR6N6J\";}}}s:5:\"5.2.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ\";s:14:\"css/brands.css\";s:71:\"sha384-nT8r1Kzllf71iZl81CdFzObMsaLOhqBU1JD2+XoAALbdtWaXDOlWOZTR4v1ktjPE\";s:19:\"css/fontawesome.css\";s:71:\"sha384-HbmWTHay9psM8qyzEKPc8odH4DsOuzdejtnr+OFtDmOcIVnhgReQ4GZBH7uwcjf6\";s:15:\"css/regular.css\";s:71:\"sha384-zkhEzh7td0PG30vxQk1D9liRKeizzot4eqkJ8gB3/I+mZ1rjgQk+BSt2F6rT2c+I\";s:13:\"css/solid.css\";s:71:\"sha384-wnAC7ln+XN0UKdcPvJvtqIH3jOjs9pnKnq9qX68ImXvOGz2JuFoEiCjT8jyZQX2z\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-jKeGgxY7zPT61fNXg6OMRDu8vsxOPRLMlgAIUHo1KVag4lyu5B03KsDLYOTMM4ld\";s:16:\"css/v4-shims.css\";s:71:\"sha384-W14o25dsDf2S/y9FS68rJKUyCoBGkLwr8owWTSTTHj4LOoHdrgSxw1cmNQMULiRb\";s:9:\"js/all.js\";s:71:\"sha384-4oV5EgaV02iISL2ban6c/RmotsABqE4yZxZLcYMAdG7FAPsyHYAPpywE9PJo+Khy\";s:12:\"js/brands.js\";s:71:\"sha384-4BRtleJgTYsMKIVuV1Z7lNE29r4MxwKR7u88TWG2GaXsmSljIykt/YDbmKndKGID\";s:17:\"js/fontawesome.js\";s:71:\"sha384-QcnrgQuRmocjIBY6ByWMmDvUg3HO4MSdVjY7ynJwZfvTDhVPPQOUI9TRzc6/7ZO1\";s:13:\"js/regular.js\";s:71:\"sha384-YdSTwqfKxyP06Jj3UzTeumv8M+Pme60+KND4oF+5r5VeUCvdkw7NhSzFYWbe00ba\";s:11:\"js/solid.js\";s:71:\"sha384-YmNA3b9AQuWW8KZguYfqJa/YhKNTwGVD5pQc1cN0ZAVRudFFtR17HR7rooNcVXe4\";s:14:\"js/v4-shims.js\";s:71:\"sha384-rn4uxZDX7xwNq5bkqSbpSQ3s4tK9evZrXAO1Gv9WTZK4p1+NFsJvOQmkos19ebn2\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-TXfwrfuHVznxCssTxWoPZjhcss/hp38gEOH8UPZG/JcXonvBQ6SlsIF49wUzsGno\";s:14:\"css/brands.css\";s:71:\"sha384-Ei2oxwH0wpwmp7KPdhYnajC5fWDdMENOjDw9OfzWvcFcOGn0Egy+L5AAculaqBbD\";s:19:\"css/fontawesome.css\";s:71:\"sha384-4eP+1rYQmuI3hxrmyE+GT/EIiNbF4R85ciN3jMpmIh+bU5Hz2IU7AdcVe+JS+AJz\";s:13:\"css/light.css\";s:71:\"sha384-pcDR01P1wNxsYZiEYdROCAYhU2u8VHOctLrYRonRFtkf/TGEQFWt0rqFbPGWlyn4\";s:15:\"css/regular.css\";s:71:\"sha384-g3XsWx0Sqi7JIjLKVnwUxEvqrxTMQPIf3PN+vTdWY2AhduP/rnj0rw89v0nbD4Ro\";s:13:\"css/solid.css\";s:71:\"sha384-B/E/KxBX31kY/5sew+X4c8e6ErosbqOOsA3t4k6VVmx8Hrz//v0tEUtXmUVx9X6Q\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-O6mvz45yC1vfdu/EgUxAoSGrP+sFtepMtj7eOQIW1G3WT9Sj5djActZC0hd/F42D\";s:16:\"css/v4-shims.css\";s:71:\"sha384-2QRS8Mv2zxkE2FAZ5/vfIJ7i0j+oF15LolHAhqFp9Tm4fQ2FEOzgPj4w/mWOTdnC\";s:9:\"js/all.js\";s:71:\"sha384-yBZ34R8uZDBb7pIwm+whKmsCiRDZXCW1vPPn/3Gz0xm4E95frfRNrOmAUfGbSGqN\";s:12:\"js/brands.js\";s:71:\"sha384-eg9wHuvEPj6+GlGomBRaMHLF0QfCnjdASWDKd84DMeM9phhyDaPFou/nHJBt0bz+\";s:17:\"js/fontawesome.js\";s:71:\"sha384-FQUuiJxt9F0hPc9IP3M5ndmqK53iBCGcy4ZSx8QirhYOIs8l7x+e1/zdswyZEigi\";s:11:\"js/light.js\";s:71:\"sha384-glAz6mCeiwAe/kHHHG/OvhrjA4+AH55ZfH8fwYp48YCY61POwUmOrH/oYOaF2Ujy\";s:13:\"js/regular.js\";s:71:\"sha384-8hKZY21U4J3r9N0GFl+24YnDkbRhs8y/nXT6BaZ+sOJDNmz+1DhFawE9UYL37XzB\";s:11:\"js/solid.js\";s:71:\"sha384-1j3ph9Rf+Aaz6rrizz6cdFxU9ZbUyvkbiwQ5+T/BY4I5mk37vUpTA8S9ZZOlfdWu\";s:14:\"js/v4-shims.js\";s:71:\"sha384-aoMjEUBUPf5GpXx1WJUeTZ/gBmGqQB1u8uUc2J5LW2xnQtJKkGulESZ+rkoj182s\";}}}s:5:\"5.3.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU\";s:14:\"css/brands.css\";s:71:\"sha384-rf1bqOAj3+pw6NqYrtaE1/4Se2NBwkIfeYbsFdtiR6TQz0acWiwJbv1IM/Nt/ite\";s:19:\"css/fontawesome.css\";s:71:\"sha384-1rquJLNOM3ijoueaaeS5m+McXPJCGdr5HcA03/VHXxcp2kX2sUrQDmFc3jR5i/C7\";s:15:\"css/regular.css\";s:71:\"sha384-ZlNfXjxAqKFWCwMwQFGhmMh3i89dWDnaFU2/VZg9CvsMGA7hXHQsPIqS+JIAmgEq\";s:13:\"css/solid.css\";s:71:\"sha384-VGP9aw4WtGH/uPAOseYxZ+Vz/vaTb1ehm1bwx92Fm8dTrE+3boLfF1SpAtB1z7HW\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-4K9ulTwOtsXr+7hczR7fImKfUZY5THwqvfxwPx1VUCEOt4qssi2Vm+kHY7NJQPoy\";s:16:\"css/v4-shims.css\";s:71:\"sha384-lmquXrF9qn7mMo6iRQ662vN44vTTVUBpcdtDFWPxD9uFPqC/aMn6pcQrTTupiv1A\";s:9:\"js/all.js\";s:71:\"sha384-kW+oWsYx3YpxvjtZjFXqazFpA7UP/MbiY4jvs+RWZo2+N94PFZ36T6TFkc9O3qoB\";s:12:\"js/brands.js\";s:71:\"sha384-2vdvXGQdnt+ze3ylY5ESeZ9TOxwxlOsldUzQBwtjvRpen1FwDT767SqyVbYrltjb\";s:17:\"js/fontawesome.js\";s:71:\"sha384-2OfHGv4zQZxcNK+oL8TR9pA+ADXtUODqGpIRy1zOgioC4X3+2vbOAp5Qv7uHM4Z8\";s:13:\"js/regular.js\";s:71:\"sha384-sqmLTIuB+bQgkyOcdJ/hAvXl51Z7qqdK/lcH/rt6sdvDKFincQWI+fVgcDZM6NMz\";s:11:\"js/solid.js\";s:71:\"sha384-GJiigN/ef2B3HMj0haY+eMmG4EIIrhWgGJ2Rv0IaWnNdWdbWPr1sRLkGz7xfjOFw\";s:14:\"js/v4-shims.js\";s:71:\"sha384-DtdEw3/pBQuSag11V3is/UZMjGkGMLDRBgk1UVAOvH6cYoqKjBmCEhePm13skjRV\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-9ralMzdK1QYsk4yBY680hmsb4/hJ98xK3w0TIaJ3ll4POWpWUYaA2bRjGGujGT8w\";s:14:\"css/brands.css\";s:71:\"sha384-AOiME8p6xSUbTO/93cbYmpOihKrqxrLjvkT2lOpIov+udKmjXXXFLfpKeqwTjNTC\";s:19:\"css/fontawesome.css\";s:71:\"sha384-Yz2UJoJEWBkb0TBzOd2kozX5/G4+z5WzWMMZz1Np2vwnFjF5FypnmBUBPH2gUa1F\";s:13:\"css/light.css\";s:71:\"sha384-9QuzjQIM/Un6pY9bKVJGLW8PauASO8Mf9y3QcsHhfZSXNyXGoXt/POh3VLeiv4mw\";s:15:\"css/regular.css\";s:71:\"sha384-pofSFWh/aTwxUvfNhg+LRpOXIFViguTD++4CNlmwgXOrQZj1EOJewBT+DmUVeyJN\";s:13:\"css/solid.css\";s:71:\"sha384-wJu5pIbEyJzi+kRgVKVQkPNKI104yNC+IAyK7XXEVGgPGe+LTEERIkpSZbc/wrOx\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-Hmg9TonawJaGH8ayFFnEBwvkx61BYLPAOV7b/YDGQEVIs1jh9pWQigAavMuD+Vc/\";s:16:\"css/v4-shims.css\";s:71:\"sha384-1YFoQoO5Em1oxLErpWpJuswiqPFVHl8HLDUaLjJGJH8+Nra/Y1D6uOZkEgfH5OZf\";s:9:\"js/all.js\";s:71:\"sha384-eAVkiER0fL/ySiqS7dXu8TLpoR8d9KRzIYtG0Tz7pi24qgQIIupp0fn2XA1H90fP\";s:12:\"js/brands.js\";s:71:\"sha384-am5AyalpQCEfbKe6FYiGZc2vX080nrcueZmrbkljxLdQDJ5q5Vu9QDROD/QefEp1\";s:17:\"js/fontawesome.js\";s:71:\"sha384-u3o36ga3mMU6/lK/zdiER4h7pPtAK7wBuN0DrZPH22v01RZL8bKZkULIjxcx2/X/\";s:11:\"js/light.js\";s:71:\"sha384-2R0W5LA7dXp3ze/WhvjXlUcDaHRhtGlKYxN9QMhGDdjmj2EI1bub5ysSwofJwGfI\";s:13:\"js/regular.js\";s:71:\"sha384-EbI+OvKb7noKOfu8MSi/vCbi0KWlM61MjHDmRk4/vwJkPsMIRcJggYLDGWv7VeYY\";s:11:\"js/solid.js\";s:71:\"sha384-U4vTrZsQ4ooEtzL162EZfTtCiJNTXOwGDBzV91//DI5L/h48ibzHBiHJmPLpx2hO\";s:14:\"js/v4-shims.js\";s:71:\"sha384-8e1r0+5VTqCqkg/9vG+cnipytzBkEh9fpESgVwBZAizMkWRfiaTkdhgdnhLGwuPd\";}}}s:5:\"5.4.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz\";s:14:\"css/brands.css\";s:71:\"sha384-Px1uYmw7+bCkOsNAiAV5nxGKJ0Ixn5nChyW8lCK1Li1ic9nbO5pC/iXaq27X5ENt\";s:19:\"css/fontawesome.css\";s:71:\"sha384-BzCy2fixOYd0HObpx3GMefNqdbA7Qjcc91RgYeDjrHTIEXqiF00jKvgQG0+zY/7I\";s:15:\"css/regular.css\";s:71:\"sha384-4e3mPOi7K1/4SAx8aMeZqaZ1Pm4l73ZnRRquHFWzPh2Pa4PMAgZm8/WNh6ydcygU\";s:13:\"css/solid.css\";s:71:\"sha384-osqezT+30O6N/vsMqwW8Ch6wKlMofqueuia2H7fePy42uC05rm1G+BUPSd2iBSJL\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-2MWWLQq91kFwloAny7gkgoeV33bD/cE3A9ZbB2rCN/YAAR/VEHVoDq6vRJJYTaxM\";s:16:\"css/v4-shims.css\";s:71:\"sha384-YIDcSvDDaIskj/WDlWwjrNdK194YAGWc1CScdo2tXl3IQVS1zS07xQaoAFlXCf1P\";s:9:\"js/all.js\";s:71:\"sha384-L469/ELG4Bg9sDQbl0hvjMq8pOcqFgkSpwhwnslzvVVGpDjYJ6wJJyYjvG3u8XW7\";s:12:\"js/brands.js\";s:71:\"sha384-lc/yFuYW3B0EW9B2QSpod2KeBxq6/ZizGwAW6mRLUe3kKUVlSBfDIVZKwKIz/DBg\";s:17:\"js/fontawesome.js\";s:71:\"sha384-ISRc+776vRkDOTSbmnyoZFmwHy7hw2UR3KJpb4YtcfOyqUqhLGou8j5YmYnvQQJ4\";s:13:\"js/regular.js\";s:71:\"sha384-SQqzt64aAzh3UJ9XghcA//GE8+NxAIRcuCrrekyDokXP6Bbt/FYAFlV6VSPrZKwH\";s:11:\"js/solid.js\";s:71:\"sha384-agDKwSYPuGlC0wD14lKXXwb94jlUkbkoSugquwmKRKWv/nDXe1kApDS/gqUlRQmZ\";s:14:\"js/v4-shims.js\";s:71:\"sha384-/s2EnwEz7C3ziRundAGzeOAoGYffu84oY4SOHjhI/2Wqk3Z0usUm9bjdduzhZ9+z\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-POYwD7xcktv3gUeZO5s/9nUbRJG/WOmV6jfEGikMJu77LGYO8Rfs2X7URG822aum\";s:14:\"css/brands.css\";s:71:\"sha384-rmUpvtaCngUop5CYz7WL1LnqkMweXskxP+1AXmkuMSbImsUuy82bUYS4A8Syd3Pf\";s:19:\"css/fontawesome.css\";s:71:\"sha384-PPeKwWhk5XZBVVq089DuhGmjaEVB1r+jdmx6jZrqzlef8ojhZXG+E/D6SP7uO1dk\";s:13:\"css/light.css\";s:71:\"sha384-DZAoxBcs4G15aUXLX4vKbO53ye8L8AB/zg07HOVhIMVclhx8rdWye0AJSQl51ehV\";s:15:\"css/regular.css\";s:71:\"sha384-xKPOvJDwdb/n5w2kh6cxds98Ae2d5N63xkIydEdoYeA2bxIKUmmyU9lZ9j58mLYS\";s:13:\"css/solid.css\";s:71:\"sha384-oT4lQmwnKx98HRnFgaGvgCdjtKOjep9CjfMdAOPtJU8Vy6NY3X34GfqL0H43ydJn\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-j2EtHJUHBAZF9vkmX0TSA/QqYMf0Npp9P2leJGZFDbLHbcI62HH8w7FRcUMNf8Q2\";s:16:\"css/v4-shims.css\";s:71:\"sha384-aaXKvb/d7l2hTm3ZDWCy5v4ct5zXIslt+70K4xalZPLu3ifrkYcG61m4u+DIQGEk\";s:9:\"js/all.js\";s:71:\"sha384-0+tugznPwCEvPiypW+OwmFjAQvRKlgI0ZZZW3nofNlLMmbYXbmNvfX/9up9XQSRs\";s:12:\"js/brands.js\";s:71:\"sha384-ShBqjf9lFG58e2NmhnbVlhAOPCWdzkPbBmAEcQ37Liu3TwOYxIizS7J1P3rRLJHm\";s:17:\"js/fontawesome.js\";s:71:\"sha384-8vKKeD0uIV/HXM5ym3RGB4O7rZ43fCdpiXqP047w7sEE3igcK0Y1U9ApEArcRBDJ\";s:11:\"js/light.js\";s:71:\"sha384-jlaccvPpizUbHU/8pYAsDEwhhBae8MUcYqHHsKkjFcFsEp3Y6LrVXh0GA84aAkTg\";s:13:\"js/regular.js\";s:71:\"sha384-MB7Bz/7e8sBWnZgblSLUfFOOi+V1PIkRG/Ex1NMeu0CovaXCzHyCMwAwOF+FAo1s\";s:11:\"js/solid.js\";s:71:\"sha384-KlTWIsOnBg7LJobQmLsv5fQ1qbx73K+o8/xhoUDoIba13SxF4bT5W2WgV3d8mZIw\";s:14:\"js/v4-shims.js\";s:71:\"sha384-e+EZ4XUeGXVd0FDmP/mFu7FFe+qVX738ayOS2AErNIPSLz5oZ3OgVa9zEyCds3HP\";}}}s:5:\"5.4.2\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-/rXc/GQVaYpyDdyxK+ecHPVYJSN9bmVFBvjA/9eOB+pb3F2w2N6fc5qB9Ew5yIns\";s:14:\"css/brands.css\";s:71:\"sha384-BCEeiNUiLzxxoeYaIu7jJqq0aVVz2O2Ig4WbWEmRQ2Dx/AAxNV1wMDBXyyrxw1Zd\";s:19:\"css/fontawesome.css\";s:71:\"sha384-HU5rcgG/yUrsDGWsVACclYdzdCcn5yU8V/3V84zSrPDHwZEdjykadlgI6RHrxGrJ\";s:15:\"css/regular.css\";s:71:\"sha384-OEIzojYBMrmz48aIjVQj7VG38613/sxpP58OW9h5zBYC7biGFlv9tyu5kWmaAYlF\";s:13:\"css/solid.css\";s:71:\"sha384-uKQOWcYZKOuKmpYpvT0xCFAs/wE157X5Ua3H5onoRAOCNkJAMX/6QF0iXGGQV9cP\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-+moUZLBX5mmeUnjaImkzlTo5cXyQWAvzbqQapNFd7+dGIaap0koo0rtfe8lHD38R\";s:16:\"css/v4-shims.css\";s:71:\"sha384-SlbnWxwEHTVYxDLrpIRrG2BpsTpWALbJ6Tx5Fq+XNHRBL7xI6xwhVpuUGrrbLBXe\";s:9:\"js/all.js\";s:71:\"sha384-wp96dIgDl5BLlOXb4VMinXPNiB32VYBSoXOoiARzSTXY+tsK8yDTYfvdTyqzdGGN\";s:12:\"js/brands.js\";s:71:\"sha384-i1RNpxOOEnRm63Ii3TuV0aM8bJ+6Pv6XHpRSJbN7QlIzZIsl7m36R0GhOTTGN3F9\";s:17:\"js/fontawesome.js\";s:71:\"sha384-n1qPouQQJ9VNZnZeNZWSDiclpIOJwZBS2bkD6rEX+DTmMXTKXBVCZw2cGbU/I17z\";s:13:\"js/regular.js\";s:71:\"sha384-Uj7q9rRb3eJNp0j1kXwOBgEWDGbAiJ7Dcuz4hLRQdtza6pawbo/Bmwgr58THzHyR\";s:11:\"js/solid.js\";s:71:\"sha384-OQNCj138epg9A13jaL9L/d5vMlK2jyPL4aOgi37KYt07aZARbv/eFGp/wnrCxkW5\";s:14:\"js/v4-shims.js\";s:71:\"sha384-fzYnAZZYxpOQTjc3Y1eP04DGdMLAy+PeiZ8+ICh4FDLkJR/NJiAgKgK2vEpGx3au\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-zhaLg9HKxTxDljOPXpWHGn91XMDH+sYAWRSgvzHes290/ISyrNicGrd6BInTnx3L\";s:14:\"css/brands.css\";s:71:\"sha384-RjTk1OTKX8K8S4QfwhFOfbNSbQxLFgN6jqDw05QuBDDEbc/x6xlPtkPSO4vA1TtI\";s:19:\"css/fontawesome.css\";s:71:\"sha384-XkH+Vmez3OoFo52K+SkBE61xZ7vKh9tF35gL9Yf8rD3RtKUqIQGoTJTsLdR5u8rt\";s:13:\"css/light.css\";s:71:\"sha384-n0uyPlhqrQyWPPzm6+B9xDeZKCD81RgGRsTO7PQt3McgMXSR9zjhGaD5cXHwk+D8\";s:15:\"css/regular.css\";s:71:\"sha384-+OdrK32QtByk1ipA7b4+uLddrcWs2bx3nn37Dl5h98PW1AYKIrRZKveBl6AcpgcD\";s:13:\"css/solid.css\";s:71:\"sha384-SYCdBxlsgGngJi9eiKt5Tk6UtOJs1Jq5eU3yZDZ+hOe0GKk/obXhHy50IYVVdJro\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-3f24zIRoR/ma/cnROK52rTVZpgCXKQ92/89RDq7GO7/9IxIl3VQV/tF6ecGgvUs8\";s:16:\"css/v4-shims.css\";s:71:\"sha384-ah4vMGE5UgKcCIB90FZl8BOcusXAVTm070n1UuOrNQA9QwkgnhqASrop/Oblr6wY\";s:9:\"js/all.js\";s:71:\"sha384-+lZy0zDh4RS9ZG6+Od6x6irKqoBH4NSy0m7IW8UGbzGZ/rupt9Cd9NdEb5S7+V9w\";s:12:\"js/brands.js\";s:71:\"sha384-LVdS6BqWBV1V0OyGzWK0HrGN4uDZbpO6hja1oVh86MhthieoER2crgKS/KsaiN8E\";s:17:\"js/fontawesome.js\";s:71:\"sha384-zMrS036pMtJ0Ukzo5x2YiTrYDGDaoeO8Yd0IHhI/PaEnfrY/nMHqvKME8C7dHhUE\";s:11:\"js/light.js\";s:71:\"sha384-hOiC7FL4572/E3aEEeWM6dF3ch/qFz59R91pAJqjYEKHBXN5u7e2oAYAgeSGF1VB\";s:13:\"js/regular.js\";s:71:\"sha384-f1yYCENdJ+9NE5J2T8weglyMCtTqRJOeGP9qaLwO43aYY0PVeuAfmsGgTegByFW6\";s:11:\"js/solid.js\";s:71:\"sha384-XlRgTEYU6HJ02+ZCuXW2/CgjnpV2+8FuQPTJSJ/+ZCQS5ZXRfIS5FHDRhMvOL++d\";s:14:\"js/v4-shims.js\";s:71:\"sha384-6TX+vqRZyQq+vB25wCb101/vY510EN37QZgs5f1dfG1+QYuIoQGdFFV8sx8W36AL\";}}}s:5:\"5.5.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU\";s:14:\"css/brands.css\";s:71:\"sha384-QT2Z8ljl3UupqMtQNmPyhSPO/d5qbrzWmFxJqmY7tqoTuT2YrQLEqzvVOP2cT5XW\";s:19:\"css/fontawesome.css\";s:71:\"sha384-u5J7JghGz0qUrmEsWzBQkfvc8nK3fUT7DCaQzNQ+q4oEXhGSx+P2OqjWsfIRB8QT\";s:15:\"css/regular.css\";s:71:\"sha384-z3ccjLyn+akM2DtvRQCXJwvT5bGZsspS4uptQKNXNg778nyzvdMqiGcqHVGiAUyY\";s:13:\"css/solid.css\";s:71:\"sha384-rdyFrfAIC05c5ph7BKz3l5NG5yEottvO/DQ0dCrwD8gzeQDjYBHNr1ucUpQuljos\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-NKdowA6EzI4CWz/dLjoC7dhVj+KczesQbwkbt6y3aRTi1JPZBy2uOocsmHmYvkux\";s:16:\"css/v4-shims.css\";s:71:\"sha384-TTjEZR8VsD+LjNa98drkrTRYhdUEaS3gAGE7PGnx2qkePR3fZtnVNoAfxPNyf+IQ\";s:9:\"js/all.js\";s:71:\"sha384-GqVMZRt5Gn7tB9D9q7ONtcp4gtHIUEW/yG7h98J7IpE3kpi+srfFyyB/04OV6pG0\";s:12:\"js/brands.js\";s:71:\"sha384-S2C955KPLo8/zc2J7kJTG38hvFV+SnzXM6hwfEUhGHw5wPo6uXbnbjSJgw3clO4G\";s:17:\"js/fontawesome.js\";s:71:\"sha384-bNOdVeWbABef8Lh4uZ8c3lJXVlHdf8W5hh1OpJ4dGyqIEhMmcnJrosjQ36Kniaqm\";s:13:\"js/regular.js\";s:71:\"sha384-XrvTJeiQ46fxxPrZP6fay5yejA2FV4G1XsS8E4Piz6Fz+7FaEFTw7A7GR972irVV\";s:11:\"js/solid.js\";s:71:\"sha384-Xgf/DMe1667bioB9X1UM5QX+EG6FolMT4K7G+6rqNZBSONbmPh/qZ62nBPfTx+xG\";s:14:\"js/v4-shims.js\";s:71:\"sha384-vBDTb50BKnwbvJZ5ZC5dsGJNQydTI7ZoAjCeJkdta6nSewwGXCnppKI5lrIQX4Qu\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-j8y0ITrvFafF4EkV1mPW0BKm6dp3c+J9Fky22Man50Ofxo2wNe5pT1oZejDH9/Dt\";s:14:\"css/brands.css\";s:71:\"sha384-t0iPfoyIjBoVR2Kw/65HArpRWQy0/xKBUmdEVTs5VYBb/yiPZxMY6egc9MROr/Og\";s:19:\"css/fontawesome.css\";s:71:\"sha384-srL3Qh9R/n855m4o5fegS//B2q0R1md7z6ndDYaPj8iEp0j0IuKdFVWMY0JosKPF\";s:13:\"css/light.css\";s:71:\"sha384-33RmjeesW9BZ4wR2Gm3n4iBXOvGTto4znqL2kZleiRanWDxM59IHIq5RsbRioqxb\";s:15:\"css/regular.css\";s:71:\"sha384-UPs+YiUhgn0/I0swkJmk3PSj3SWmzDrM+S0S09xLI/UUmHBU7ivRHryI3uVL6H+m\";s:13:\"css/solid.css\";s:71:\"sha384-YIyAArzQv8q6Av1kr9cwxHhFcfNBUaolJindR2XO8E3OLp6z3d8My3oWLd33ET7M\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-a2sfkqnB9p/zq6OT4QhuD80qQZ70fGDmo4JUNqP5E7NIICvgRNPjIBkQE/Qcl3SN\";s:16:\"css/v4-shims.css\";s:71:\"sha384-SNyDPad7e8WM4Nu7W/f1x3qsDrLxMCvXurQfwNdp418WWmkkTQuPBGYDZA6rSg0X\";s:9:\"js/all.js\";s:71:\"sha384-3yBLeJ4waqGSAf4A8pjZ13UF7GuhgbdKnBQvIp/TkWoXtQbtwjlIPNjkDRJ46UCn\";s:12:\"js/brands.js\";s:71:\"sha384-oMyy7aPCmlH4ZGEaKHW+zAoaKDWIFh6iqJ53lusMpn+Kp8SN5nJ2kzkP1qd0+icb\";s:17:\"js/fontawesome.js\";s:71:\"sha384-oPma1F1txBbqTG+1O7BEx0A/qFtD+R661ULJLmI9RDQ0PfbRP1tQU3vBIBbJIAxL\";s:11:\"js/light.js\";s:71:\"sha384-SVEn5VmGP1fxV9V5TOZOTwL9dCg50Yb0Xn4fbV9Ic/kp8we6kv4zPVcs9seU0675\";s:13:\"js/regular.js\";s:71:\"sha384-gbY/GPDSEaMQ9cjqWLbLcaxUCtCeExO9oUEZLrOQHfFLoV5ouwIrqF6mGnjyIOc2\";s:11:\"js/solid.js\";s:71:\"sha384-VxezC2Q+YoC+yUILib+HlmOsFiqNzYtQIXsHYY6ST7QZVfgBNs2giKE97ijGMgUH\";s:14:\"js/v4-shims.js\";s:71:\"sha384-8sPM0eSaqmdF9ruedfsxEZfxVcIp0cwhosrBhWl/Q4t1eQSMXl6tYenNe87MraQ6\";}}}s:5:\"5.6.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-aOkxzJ5uQz7WBObEZcHvV5JvRW3TUc2rNPA7pe3AwnsUohiw1Vj2Rgx2KSOkF5+h\";s:14:\"css/brands.css\";s:71:\"sha384-oT8S/zsbHtHRVSs2Weo00ensyC4I8kyMsMhqTD4XrWxyi8NHHxnS0Hy+QEtgeKUE\";s:19:\"css/fontawesome.css\";s:71:\"sha384-J4287OME5B0yzlP80TtfccOBwJJt6xiO2KS14V7z0mVCRwpz+71z7lwP4yoFbTnD\";s:15:\"css/regular.css\";s:71:\"sha384-yWI8JeRmJFie/rrEn4skBd/XXXfUWuc7wAhaj9q71PzjdYD3JslHSEU7BXCCcVyP\";s:13:\"css/solid.css\";s:71:\"sha384-COsgLGwf6vbsibKzWojSqhIjQND/Sa0RWQ5BHFrKOz5JrUObnh5GEBUH2oZwITuM\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-nHELFCUV8tffuhz6PkFYcEl6VCneIQgaHNbLkOHukzJs12+rUiKwsVmVhbqhEAq7\";s:16:\"css/v4-shims.css\";s:71:\"sha384-HiCW4rrGA9WlUM512GMhD+YfcMidwWluZzyu+X55gfVYgAPrlIkG5BnHyAl/VHJO\";s:9:\"js/all.js\";s:71:\"sha384-z9ZOvGHHo21RqN5De4rfJMoAxYpaVoiYhuJXPyVmSs8yn20IE3PmBM534CffwSJI\";s:12:\"js/brands.js\";s:71:\"sha384-GEA3+tbEaglIUriKygE2OQX9k7YrAMJ5oZF0mb8Xx7hUmTTWDuQDtPY4l13jl99w\";s:17:\"js/fontawesome.js\";s:71:\"sha384-tHFnt8QELQGC1IJzcTUX5zFEnn/FLVa0ADTmxRyeSmWukJ4umWnJbwiMTkw/bKEK\";s:13:\"js/regular.js\";s:71:\"sha384-gy4pB6yY1j4DPCG6rZcE6NX1Lnqz8ZJEfotVUvCN2EGwlUS3WUHxcn8rrEOYiyiS\";s:11:\"js/solid.js\";s:71:\"sha384-akyniW0Jfrt1Z7kvRmaF2fkq9vuVQAPEGN4qq7s17l9PG3zz7FThoWnfVxpvnUn9\";s:14:\"js/v4-shims.js\";s:71:\"sha384-08SAgv7bDUyzB5O71dehOCZ42IpryGqW/G+GdxeFmBfaB71QIZWe5ZXBFKYFTEu4\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-rTQdcTFdT69CgbBErourkScWQ6j5WQ4aAoCF0UyPhog3PNysM/xz/kqshWKP4NLA\";s:14:\"css/brands.css\";s:71:\"sha384-84OQfm1oTwjnXmujNUnQC09L4G7mglZspQwfSNPvf5V3zAA1sdvqbIigA9AWY5DB\";s:19:\"css/fontawesome.css\";s:71:\"sha384-NFsDS9VURN70zaqw67F1OtJ6MtdeCrHeGMD1KzqIv5ft0JiHgVtV7u+v09yR+iEZ\";s:13:\"css/light.css\";s:71:\"sha384-aofICWgqJQbZZCaWEU7H0ULLqXTBu/DAALblEYqLfQSjb2ASOw0tADOdJ5rmVDWL\";s:15:\"css/regular.css\";s:71:\"sha384-voao2F8iKUwwSMRhLJ982edrRSHOmc5v5rvQ/5aH5pvSAx1aoL6usygGSRz3jfHF\";s:13:\"css/solid.css\";s:71:\"sha384-RYuivM1ikcxEL+96Q/7B/CcvyswPRuOatldvqvk+Bm3hwVKZUjay1ohuPUyD9ZYk\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-NYMicmsVmKaI5/JVN8JamOLMuIrbzeu4Gc+cike3jcoDpaLfMtvWPJeNhnx8K8x0\";s:16:\"css/v4-shims.css\";s:71:\"sha384-L7wiz9NeFS+vFpG/jl0zBsE7EqrVfeNoaHhnvxlsfwihUr9FIbDnfQqv5r8o02wQ\";s:9:\"js/all.js\";s:71:\"sha384-rDdEqfkiaN9iEfS6XrBzTxL5wVFzBoMsyHmoAIl/T7VdxJvGYuM5bDlDOkmE6r3C\";s:12:\"js/brands.js\";s:71:\"sha384-TN18fDSDUbMxI3DK3z2G8Pl68N7jvVjWPBx8z0m7YhoWKnmGdKRJ6S90IcyeUXUy\";s:17:\"js/fontawesome.js\";s:71:\"sha384-Oa9P+sg4Q/5Yo0a/UoRAG8zLSexWLxLgbPb12tgvs/swrfePVf6IdrwoW2RGV2pU\";s:11:\"js/light.js\";s:71:\"sha384-6DMqAgIR8HN9OqBF3zfhQ4Tmh+KO9Sf0QAwxGkiaKO51dFGBBxBTmdOSneYESZZ0\";s:13:\"js/regular.js\";s:71:\"sha384-LvwwgOzFfwTikawPye02NmwONhyBLBbmu04J+IuLBS6HdNHX3JnRqY80mscKVLTH\";s:11:\"js/solid.js\";s:71:\"sha384-71d190zi1266uo3WuvCJ77V1YdXxDfm5GPMySGFKTMHsoHaxKhPe5XkKaH9iPLWC\";s:14:\"js/v4-shims.js\";s:71:\"sha384-Rr25noDuBAtBUFs9feRsF3EK8Pw5bWuhYxD7ztcDUJqR/eiCpNPGIeyO5Ago6pYW\";}}}s:5:\"5.6.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-gfdkjb5BdAXd+lj+gudLWI+BXq4IuLW5IT+brZEZsLFm++aCMlF1V92rMkPaX4PP\";s:14:\"css/brands.css\";s:71:\"sha384-whKHCkwP9f4MyD1vda26+XRyEg2zkyZezur14Kxc784RxUU1E7HvWVYj9EoJnUV7\";s:19:\"css/fontawesome.css\";s:71:\"sha384-WK8BzK0mpgOdhCxq86nInFqSWLzR5UAsNg0MGX9aDaIIrFWQ38dGdhwnNCAoXFxL\";s:15:\"css/regular.css\";s:71:\"sha384-l+NpTtA08hNNeMp0aMBg/cqPh507w3OvQSRoGnHcVoDCS9OtgxqgR7u8mLQv8poF\";s:13:\"css/solid.css\";s:71:\"sha384-aj0h5DVQ8jfwc8DA7JiM+Dysv7z+qYrFYZR+Qd/TwnmpDI6UaB3GJRRTdY8jYGS4\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-ir31wc9kqVZclsGL3U5IucynDpj1TeEzDCvxEWqw8QuxLFETRgirOiygjXdjId3z\";s:16:\"css/v4-shims.css\";s:71:\"sha384-s0z+GcIRRdtdjGfnyKRFh9Oaw3aasU/TFotdFmreqjf+a+Mks2Umj0CrlN0S9lqi\";s:9:\"js/all.js\";s:71:\"sha384-R5JkiUweZpJjELPWqttAYmYM1P3SNEJRM6ecTQF05pFFtxmCO+Y1CiUhvuDzgSVZ\";s:12:\"js/brands.js\";s:71:\"sha384-rsLJp1pKbmeEMVcdsNJfAWZ9FQP5CrQt6Vikj/usZcTgrD28FhqYqKJn5XIaoXjm\";s:17:\"js/fontawesome.js\";s:71:\"sha384-T6YzYwAGZAItTIkYlBzfwqa07o9R1AND3Lgt6Or6c5IdukY7tqShoryqwpKrpeIB\";s:13:\"js/regular.js\";s:71:\"sha384-+e+pqX41PD6VrFw9HZ3YKJHFT+SZoEMBmnMpLUpHrdd5BE46xHCrzap9c6kfTi9H\";s:11:\"js/solid.js\";s:71:\"sha384-8Lgyylu0vfTGCXDKe435hJgX8s96c19R+dvpH0NHKdX47GA7TmMj+BDiZZ76qqhT\";s:14:\"js/v4-shims.js\";s:71:\"sha384-LqOeBjW8oAuwB6xooSoyjAV+CcJLQGftH6m0Xoo+mhJ0TlEAVR9jBsAXXpeEJlyP\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-NJXGk7R+8gWGBdutmr+/d6XDokLwQhF1U3VA7FhvBDlOq7cNdI69z7NQdnXxcF7k\";s:14:\"css/brands.css\";s:71:\"sha384-2k7wpGHb3PA1OZUtSqAk+nIVo2wgBQdEoL1F/FnC+/HHi2bh3N9aSstY0Af72gka\";s:19:\"css/fontawesome.css\";s:71:\"sha384-GQK3B9PHv3SNzYUrdlEpL6CFKQlW/Co4va906SViL0F6U16Li47NXtvwWmFnetYk\";s:13:\"css/light.css\";s:71:\"sha384-QXb14MpvHKJr57ixwhGSXACaU/eGo/NwF/uWE97+C5QPdq8sLQhM1+WKDk6vando\";s:15:\"css/regular.css\";s:71:\"sha384-ThqFFlbk+2bnAn1zc61SL7r8sFUVUkFvtsT+jYr1Jy6xTlvdcqzcerrDGrHqWv6j\";s:13:\"css/solid.css\";s:71:\"sha384-pbj30780YbUh3WmbEAhOL8tHgoaU4xrdmAN+RewL6HsW9EOMIIE4+6rerMXTfJXq\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-fjim8BUuF/D2Y8Qyr4U5iLdeKqzyQe927qD4SIdbPDyX2iSN6xNGhoyd2jTiw+Sx\";s:16:\"css/v4-shims.css\";s:71:\"sha384-c2aTxrKw0nWEPlLqENAD5t3J3Ajs/o5LBudKFP44hexDYKKQTgRCAaECkBk+p3L9\";s:9:\"js/all.js\";s:71:\"sha384-ncMWtRMSOo+cLmfdaa6vmMGzBJKysBDF9tq5YK1MAnAjcyipdW2vgTS1jOntY4fs\";s:12:\"js/brands.js\";s:71:\"sha384-+4YdTIsot+hvYL7nKQ9cJs7OWaFvJ7ZTkVretfEoX8uDiTED9tumG/9RsRmlW3jX\";s:17:\"js/fontawesome.js\";s:71:\"sha384-Ya+lFT8MCnVaSXkMxO4FEUsv4BG1VrVAMY0PiCnmJ4Sq57zoarae8T2EgioHiaMA\";s:11:\"js/light.js\";s:71:\"sha384-hy7ipunNmCKP7KpzkasGow2eTRYx9IbxV0BvBqlWLWRu8mlWMNrj9y6qOLEnxIuF\";s:13:\"js/regular.js\";s:71:\"sha384-8VWoI12VOwcfxYszEUreYXR4Jh1+oxv+mfsVISgPJTsc2Ftw4RC+bO719C+PunjY\";s:11:\"js/solid.js\";s:71:\"sha384-Pl3KUQLNwa33i6dvnL77HMDxZPk93eoi1kB5xZ0eGKgTEt39iQkHdSM6/w53By9e\";s:14:\"js/v4-shims.js\";s:71:\"sha384-ts+GFi6rOAISeHC+EnLaj6AOSoosWr3TALIaYSeHCVsNHkGLlTtzdbMvolIe6tG7\";}}}s:5:\"5.6.3\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/\";s:14:\"css/brands.css\";s:71:\"sha384-1KLgFVb/gHrlDGLFPgMbeedi6tQBLcWvyNUN+YKXbD7ZFbjX6BLpMDf0PJ32XJfX\";s:19:\"css/fontawesome.css\";s:71:\"sha384-jLuaxTTBR42U2qJ/pm4JRouHkEDHkVqH0T1nyQXn1mZ7Snycpf6Rl25VBNthU4z0\";s:15:\"css/regular.css\";s:71:\"sha384-aubIA90W7NxJ+Ly4QHAqo1JBSwQ0jejV75iHhj59KRwVjLVHjuhS3LkDAoa/ltO4\";s:13:\"css/solid.css\";s:71:\"sha384-+0VIRx+yz1WBcCTXBkVQYIBVNEFH1eP6Zknm16roZCyeNg2maWEpk/l/KsyFKs7G\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-KHV7fADs212mr+U2tmuDnxozv2BzTX1qhxPoZ/lT2QcUFkjwat694MI3AzyiVJ+q\";s:16:\"css/v4-shims.css\";s:71:\"sha384-DrjN/yxBJAblffPf548CARk30Xz2Glal7YO5kqQ8c8GHgrAMXZN2ZDTGwV9xTDJF\";s:9:\"js/all.js\";s:71:\"sha384-EIHISlAOj4zgYieurP0SdoiBYfGJKkgWedPHH4jCzpCXLmzVsw1ouK59MuUtP4a1\";s:12:\"js/brands.js\";s:71:\"sha384-VLgz+MgaFCnsFLiBwE3ItNouuqbWV2ZnIqfsA6QRHksEAQfgbcoaQ4PP0ZeS0zS5\";s:17:\"js/fontawesome.js\";s:71:\"sha384-treYPdjUrP4rW5q82SnECO7TPVAz4bpas16yuE9F5o7CeBn2YYw1yr5oC8s8Mf8t\";s:13:\"js/regular.js\";s:71:\"sha384-V+AkgA1cZ+p3DRK63AHCaXvO68V7B5eHoxl7QVN21zftbkFn/sGAIVR7vmQL3Zhp\";s:11:\"js/solid.js\";s:71:\"sha384-F4BRNf3onawQt7LDHDJm/hwm3wBtbLIfGk1VSB/3nn3E+7Rox1YpYcKJMsmHBJIl\";s:14:\"js/v4-shims.js\";s:71:\"sha384-miy+FCz1uGOaEWy6IaOB4X2pp60+e6jaSECmnvz+qo7Os/Q1oflHUIrS0JdfNafk\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-LRlmVvLKVApDVGuspQFnRQJjkv0P7/YFrw84YYQtmYG4nK8c+M+NlmYDCv0rKWpG\";s:14:\"css/brands.css\";s:71:\"sha384-1KLgFVb/gHrlDGLFPgMbeedi6tQBLcWvyNUN+YKXbD7ZFbjX6BLpMDf0PJ32XJfX\";s:19:\"css/fontawesome.css\";s:71:\"sha384-toEUmnrGu+eq8XUD6ovsr/vFX+R3v9+FUGAnpef+uwGKMCeqZkcZfkXQ0Pls5WS7\";s:13:\"css/light.css\";s:71:\"sha384-ouQ4uivIto2ZdBS6+torZMbImJhWA6/m7/CAGY9z0FNDmoAF6uWAEnavvIsR1EBt\";s:15:\"css/regular.css\";s:71:\"sha384-IXqJGQI1K0IzdpdY2ASrRbDgPr1rUKzDAA90uL7iX1hPQf6Tkve9Z82TUVWm9aje\";s:13:\"css/solid.css\";s:71:\"sha384-5XPOduYq6F78ZOuHxFHpQJCD2l7aCHCf0+o8qKTD2VfqJTgPT3YkyuBGsDSrVsic\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-KHV7fADs212mr+U2tmuDnxozv2BzTX1qhxPoZ/lT2QcUFkjwat694MI3AzyiVJ+q\";s:16:\"css/v4-shims.css\";s:71:\"sha384-U1d6UqL28bnGVHunjKzlOZ8IatZ4il21uTor0FijL3224okgH54hOnOVB50CDK0M\";s:9:\"js/all.js\";s:71:\"sha384-4Gm0M5DjJ0zGaEtLu0ztNIoHWiuJ5rKiaVlpZKeNqXAW49eIIa2ymxb3C4c3uEXR\";s:12:\"js/brands.js\";s:71:\"sha384-VLgz+MgaFCnsFLiBwE3ItNouuqbWV2ZnIqfsA6QRHksEAQfgbcoaQ4PP0ZeS0zS5\";s:17:\"js/fontawesome.js\";s:71:\"sha384-treYPdjUrP4rW5q82SnECO7TPVAz4bpas16yuE9F5o7CeBn2YYw1yr5oC8s8Mf8t\";s:11:\"js/light.js\";s:71:\"sha384-E2rKHkorMllWJmt2GKXlwZ3+kPl6i3FrJ8ihFkf6F7F/AtGvuXY21bQC8mhz2Po+\";s:13:\"js/regular.js\";s:71:\"sha384-nX7teCj1FtQErhxXjr+JWXfe4EjU6KlgeVBHAzQ/L95eWzwx+W1+HuQGmxZT9VkS\";s:11:\"js/solid.js\";s:71:\"sha384-2ZaaAuh8tTVN1nHRrlXAX1tz8fGhZDgusJdBI5BBGycCq37AUonw8dHlPpx7iD6N\";s:14:\"js/v4-shims.js\";s:71:\"sha384-q8jijYZFNY4pjTA22Qe+33WWGmm0tpPPfMEdUxmXNoEkN5YeCMJYxGcl+XiCckQh\";}}}s:5:\"5.7.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ\";s:14:\"css/brands.css\";s:71:\"sha384-BKw0P+CQz9xmby+uplDwp82Py8x1xtYPK3ORn/ZSoe6Dk3ETP59WCDnX+fI1XCKK\";s:19:\"css/fontawesome.css\";s:71:\"sha384-4aon80D8rXCGx9ayDt85LbyUHeMWd3UiBaWliBlJ53yzm9hqN21A+o1pqoyK04h+\";s:15:\"css/regular.css\";s:71:\"sha384-IG162Tfx2WTn//TRUi9ahZHsz47lNKzYOp0b6Vv8qltVlPkub2yj9TVwzNck6GEF\";s:13:\"css/solid.css\";s:71:\"sha384-r/k8YTFqmlOaqRkZuSiE9trsrDXkh07mRaoGBMoDcmA58OHILZPsk29i2BsFng1B\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-3oHRxwaq4aKTY0NVNLfynvnb/U7E0MGiosKUE4cNMIDRezfXvssVlwQ+xsuBLbXf\";s:16:\"css/v4-shims.css\";s:71:\"sha384-DrjN/yxBJAblffPf548CARk30Xz2Glal7YO5kqQ8c8GHgrAMXZN2ZDTGwV9xTDJF\";s:9:\"js/all.js\";s:71:\"sha384-qD/MNBVMm3hVYCbRTSOW130+CWeRIKbpot9/gR1BHkd7sIct4QKhT1hOPd+2hO8K\";s:12:\"js/brands.js\";s:71:\"sha384-zJ8/qgGmKwL+kr/xmGA6s1oXK63ah5/1rHuILmZ44sO2Bbq1V3p3eRTkuGcivyhD\";s:17:\"js/fontawesome.js\";s:71:\"sha384-av0fZBtv517ppGAYKqqaiTvWEK6WXW7W0N1ocPSPI/wi+h8qlgWck2Hikm5cxH0E\";s:13:\"js/regular.js\";s:71:\"sha384-Gxfqh68NuE4s0o2renzieYkDYVbdJynynsdrB7UG9yEvgpS9TVM+c4bknWfQXUBg\";s:11:\"js/solid.js\";s:71:\"sha384-6FXzJ8R8IC4v/SKPI8oOcRrUkJU8uvFK6YJ4eDY11bJQz4lRw5/wGthflEOX8hjL\";s:14:\"js/v4-shims.js\";s:71:\"sha384-miy+FCz1uGOaEWy6IaOB4X2pp60+e6jaSECmnvz+qo7Os/Q1oflHUIrS0JdfNafk\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-6jHF7Z3XI3fF4XZixAuSu0gGKrXwoX/w3uFPxC56OtjChio7wtTGJWRW53Nhx6Ev\";s:14:\"css/brands.css\";s:71:\"sha384-BKw0P+CQz9xmby+uplDwp82Py8x1xtYPK3ORn/ZSoe6Dk3ETP59WCDnX+fI1XCKK\";s:19:\"css/fontawesome.css\";s:71:\"sha384-iD1qS/uJjE9q9kecNUe9R4FRvcinAvTcPClTz7NI8RI5gUsJ+eaeJeblG1Ex0ieh\";s:13:\"css/light.css\";s:71:\"sha384-puvvQVSC+mXL7INuI0i5Q7QkwwIyYIBJ7caGHiUXD7FndtoyNd78NxgvuBJAYI2m\";s:15:\"css/regular.css\";s:71:\"sha384-4Cp0kYV2i1JFDfp6MQAdlrauJM+WTabydjMk5iJ7A9D+TXIh5zQMd5KXydBCAUN4\";s:13:\"css/solid.css\";s:71:\"sha384-j+2fZ2qAg9GyYKkVpuwm+HLQVz6EYCaTqS3KKx8oectYXMgm4bRmohzCfEvi5j7J\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-3oHRxwaq4aKTY0NVNLfynvnb/U7E0MGiosKUE4cNMIDRezfXvssVlwQ+xsuBLbXf\";s:16:\"css/v4-shims.css\";s:71:\"sha384-U1d6UqL28bnGVHunjKzlOZ8IatZ4il21uTor0FijL3224okgH54hOnOVB50CDK0M\";s:9:\"js/all.js\";s:71:\"sha384-uyhTADGMAJuHgGNdH+rozTpOkfXUORTgjTmMBtxR8ISQjOs+IIWb8UBn9ixSd4xo\";s:12:\"js/brands.js\";s:71:\"sha384-zJ8/qgGmKwL+kr/xmGA6s1oXK63ah5/1rHuILmZ44sO2Bbq1V3p3eRTkuGcivyhD\";s:17:\"js/fontawesome.js\";s:71:\"sha384-av0fZBtv517ppGAYKqqaiTvWEK6WXW7W0N1ocPSPI/wi+h8qlgWck2Hikm5cxH0E\";s:11:\"js/light.js\";s:71:\"sha384-Vs12SjRkIvphC81scjUNowpLYnSOLOrSGxOwVe00oEvWto49wVgjd6BfdeCPcArI\";s:13:\"js/regular.js\";s:71:\"sha384-JZmzMsvgUATRcNmXpyJHLhiqsREsPN/GBj7O5ifVfRU1o4vBp2dsjawGzYzl0QVW\";s:11:\"js/solid.js\";s:71:\"sha384-OzCiQJ65BS/RiwFjTWyem+uRtZ4/LnrVVbwHTT8fR5Q9rYqAaavyOK51RDxkXQzm\";s:14:\"js/v4-shims.js\";s:71:\"sha384-q8jijYZFNY4pjTA22Qe+33WWGmm0tpPPfMEdUxmXNoEkN5YeCMJYxGcl+XiCckQh\";}}}s:5:\"5.7.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr\";s:14:\"css/brands.css\";s:71:\"sha384-BKw0P+CQz9xmby+uplDwp82Py8x1xtYPK3ORn/ZSoe6Dk3ETP59WCDnX+fI1XCKK\";s:19:\"css/fontawesome.css\";s:71:\"sha384-4aon80D8rXCGx9ayDt85LbyUHeMWd3UiBaWliBlJ53yzm9hqN21A+o1pqoyK04h+\";s:15:\"css/regular.css\";s:71:\"sha384-IG162Tfx2WTn//TRUi9ahZHsz47lNKzYOp0b6Vv8qltVlPkub2yj9TVwzNck6GEF\";s:13:\"css/solid.css\";s:71:\"sha384-r/k8YTFqmlOaqRkZuSiE9trsrDXkh07mRaoGBMoDcmA58OHILZPsk29i2BsFng1B\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-3oHRxwaq4aKTY0NVNLfynvnb/U7E0MGiosKUE4cNMIDRezfXvssVlwQ+xsuBLbXf\";s:16:\"css/v4-shims.css\";s:71:\"sha384-DrjN/yxBJAblffPf548CARk30Xz2Glal7YO5kqQ8c8GHgrAMXZN2ZDTGwV9xTDJF\";s:9:\"js/all.js\";s:71:\"sha384-eVEQC9zshBn0rFj4+TU78eNA19HMNigMviK/PU/FFjLXqa/GKPgX58rvt5Z8PLs7\";s:12:\"js/brands.js\";s:71:\"sha384-zJ8/qgGmKwL+kr/xmGA6s1oXK63ah5/1rHuILmZ44sO2Bbq1V3p3eRTkuGcivyhD\";s:17:\"js/fontawesome.js\";s:71:\"sha384-Qmms7kHsbqYnKkSwiePYzreT+ufFVSNBhfLOEp0sEEfEVdORDs/aEnGaJy/l4eoy\";s:13:\"js/regular.js\";s:71:\"sha384-Gxfqh68NuE4s0o2renzieYkDYVbdJynynsdrB7UG9yEvgpS9TVM+c4bknWfQXUBg\";s:11:\"js/solid.js\";s:71:\"sha384-6FXzJ8R8IC4v/SKPI8oOcRrUkJU8uvFK6YJ4eDY11bJQz4lRw5/wGthflEOX8hjL\";s:14:\"js/v4-shims.js\";s:71:\"sha384-miy+FCz1uGOaEWy6IaOB4X2pp60+e6jaSECmnvz+qo7Os/Q1oflHUIrS0JdfNafk\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-6jHF7Z3XI3fF4XZixAuSu0gGKrXwoX/w3uFPxC56OtjChio7wtTGJWRW53Nhx6Ev\";s:14:\"css/brands.css\";s:71:\"sha384-BKw0P+CQz9xmby+uplDwp82Py8x1xtYPK3ORn/ZSoe6Dk3ETP59WCDnX+fI1XCKK\";s:19:\"css/fontawesome.css\";s:71:\"sha384-iD1qS/uJjE9q9kecNUe9R4FRvcinAvTcPClTz7NI8RI5gUsJ+eaeJeblG1Ex0ieh\";s:13:\"css/light.css\";s:71:\"sha384-puvvQVSC+mXL7INuI0i5Q7QkwwIyYIBJ7caGHiUXD7FndtoyNd78NxgvuBJAYI2m\";s:15:\"css/regular.css\";s:71:\"sha384-4Cp0kYV2i1JFDfp6MQAdlrauJM+WTabydjMk5iJ7A9D+TXIh5zQMd5KXydBCAUN4\";s:13:\"css/solid.css\";s:71:\"sha384-j+2fZ2qAg9GyYKkVpuwm+HLQVz6EYCaTqS3KKx8oectYXMgm4bRmohzCfEvi5j7J\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-3oHRxwaq4aKTY0NVNLfynvnb/U7E0MGiosKUE4cNMIDRezfXvssVlwQ+xsuBLbXf\";s:16:\"css/v4-shims.css\";s:71:\"sha384-U1d6UqL28bnGVHunjKzlOZ8IatZ4il21uTor0FijL3224okgH54hOnOVB50CDK0M\";s:9:\"js/all.js\";s:71:\"sha384-5atZgfYD4MHp6kAnxjw4yM3binN4Yh5XXKAIO6m2kIB9CqdRUladdvTdffLnTK3N\";s:12:\"js/brands.js\";s:71:\"sha384-zJ8/qgGmKwL+kr/xmGA6s1oXK63ah5/1rHuILmZ44sO2Bbq1V3p3eRTkuGcivyhD\";s:17:\"js/fontawesome.js\";s:71:\"sha384-Qmms7kHsbqYnKkSwiePYzreT+ufFVSNBhfLOEp0sEEfEVdORDs/aEnGaJy/l4eoy\";s:11:\"js/light.js\";s:71:\"sha384-ua13CrU9gkzyOVxhPFl96iHgwnYTuTZ96YYiG08m1fYLvz8cVyHluzkzK9WcFLpT\";s:13:\"js/regular.js\";s:71:\"sha384-SdSeoV46BZSFmxvlUQwl3ImF6ton2ST4pPzYOmTTkFUm+UjdzORM0pTtF0sIHydx\";s:11:\"js/solid.js\";s:71:\"sha384-eLZVpmyzMTRsfwRGkcmyu0PXR5qqYDBCSh5PoYLdWFfDmMIibSuru0Blk+nq1Vfm\";s:14:\"js/v4-shims.js\";s:71:\"sha384-q8jijYZFNY4pjTA22Qe+33WWGmm0tpPPfMEdUxmXNoEkN5YeCMJYxGcl+XiCckQh\";}}}s:5:\"5.7.2\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr\";s:14:\"css/brands.css\";s:71:\"sha384-BKw0P+CQz9xmby+uplDwp82Py8x1xtYPK3ORn/ZSoe6Dk3ETP59WCDnX+fI1XCKK\";s:19:\"css/fontawesome.css\";s:71:\"sha384-4aon80D8rXCGx9ayDt85LbyUHeMWd3UiBaWliBlJ53yzm9hqN21A+o1pqoyK04h+\";s:15:\"css/regular.css\";s:71:\"sha384-IG162Tfx2WTn//TRUi9ahZHsz47lNKzYOp0b6Vv8qltVlPkub2yj9TVwzNck6GEF\";s:13:\"css/solid.css\";s:71:\"sha384-r/k8YTFqmlOaqRkZuSiE9trsrDXkh07mRaoGBMoDcmA58OHILZPsk29i2BsFng1B\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-3oHRxwaq4aKTY0NVNLfynvnb/U7E0MGiosKUE4cNMIDRezfXvssVlwQ+xsuBLbXf\";s:16:\"css/v4-shims.css\";s:71:\"sha384-DrjN/yxBJAblffPf548CARk30Xz2Glal7YO5kqQ8c8GHgrAMXZN2ZDTGwV9xTDJF\";s:9:\"js/all.js\";s:71:\"sha384-0pzryjIRos8mFBWMzSSZApWtPl/5++eIfzYmTgBBmXYdhvxPc+XcFEk+zJwDgWbP\";s:12:\"js/brands.js\";s:71:\"sha384-zJ8/qgGmKwL+kr/xmGA6s1oXK63ah5/1rHuILmZ44sO2Bbq1V3p3eRTkuGcivyhD\";s:17:\"js/fontawesome.js\";s:71:\"sha384-xl26xwG2NVtJDw2/96Lmg09++ZjrXPc89j0j7JHjLOdSwHDHPHiucUjfllW0Ywrq\";s:13:\"js/regular.js\";s:71:\"sha384-Gxfqh68NuE4s0o2renzieYkDYVbdJynynsdrB7UG9yEvgpS9TVM+c4bknWfQXUBg\";s:11:\"js/solid.js\";s:71:\"sha384-6FXzJ8R8IC4v/SKPI8oOcRrUkJU8uvFK6YJ4eDY11bJQz4lRw5/wGthflEOX8hjL\";s:14:\"js/v4-shims.js\";s:71:\"sha384-miy+FCz1uGOaEWy6IaOB4X2pp60+e6jaSECmnvz+qo7Os/Q1oflHUIrS0JdfNafk\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-6jHF7Z3XI3fF4XZixAuSu0gGKrXwoX/w3uFPxC56OtjChio7wtTGJWRW53Nhx6Ev\";s:14:\"css/brands.css\";s:71:\"sha384-BKw0P+CQz9xmby+uplDwp82Py8x1xtYPK3ORn/ZSoe6Dk3ETP59WCDnX+fI1XCKK\";s:19:\"css/fontawesome.css\";s:71:\"sha384-iD1qS/uJjE9q9kecNUe9R4FRvcinAvTcPClTz7NI8RI5gUsJ+eaeJeblG1Ex0ieh\";s:13:\"css/light.css\";s:71:\"sha384-puvvQVSC+mXL7INuI0i5Q7QkwwIyYIBJ7caGHiUXD7FndtoyNd78NxgvuBJAYI2m\";s:15:\"css/regular.css\";s:71:\"sha384-4Cp0kYV2i1JFDfp6MQAdlrauJM+WTabydjMk5iJ7A9D+TXIh5zQMd5KXydBCAUN4\";s:13:\"css/solid.css\";s:71:\"sha384-j+2fZ2qAg9GyYKkVpuwm+HLQVz6EYCaTqS3KKx8oectYXMgm4bRmohzCfEvi5j7J\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-3oHRxwaq4aKTY0NVNLfynvnb/U7E0MGiosKUE4cNMIDRezfXvssVlwQ+xsuBLbXf\";s:16:\"css/v4-shims.css\";s:71:\"sha384-U1d6UqL28bnGVHunjKzlOZ8IatZ4il21uTor0FijL3224okgH54hOnOVB50CDK0M\";s:9:\"js/all.js\";s:71:\"sha384-I3Hhe9TkmlsxzooTtbRzdeLbmkFQE9DVzX/19uTZfHk1zn/uWUyk+a+GyrHyseSq\";s:12:\"js/brands.js\";s:71:\"sha384-zJ8/qgGmKwL+kr/xmGA6s1oXK63ah5/1rHuILmZ44sO2Bbq1V3p3eRTkuGcivyhD\";s:17:\"js/fontawesome.js\";s:71:\"sha384-xl26xwG2NVtJDw2/96Lmg09++ZjrXPc89j0j7JHjLOdSwHDHPHiucUjfllW0Ywrq\";s:11:\"js/light.js\";s:71:\"sha384-ua13CrU9gkzyOVxhPFl96iHgwnYTuTZ96YYiG08m1fYLvz8cVyHluzkzK9WcFLpT\";s:13:\"js/regular.js\";s:71:\"sha384-SdSeoV46BZSFmxvlUQwl3ImF6ton2ST4pPzYOmTTkFUm+UjdzORM0pTtF0sIHydx\";s:11:\"js/solid.js\";s:71:\"sha384-eLZVpmyzMTRsfwRGkcmyu0PXR5qqYDBCSh5PoYLdWFfDmMIibSuru0Blk+nq1Vfm\";s:14:\"js/v4-shims.js\";s:71:\"sha384-q8jijYZFNY4pjTA22Qe+33WWGmm0tpPPfMEdUxmXNoEkN5YeCMJYxGcl+XiCckQh\";}}}s:5:\"5.8.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-Mmxa0mLqhmOeaE8vgOSbKacftZcsNYDjQzuCOm6D02luYSzBG8vpaOykv9lFQ51Y\";s:14:\"css/brands.css\";s:71:\"sha384-5G2m52y/zN053yjBCyNXXotYpL2r5k1wg9aakiM5OgK9kdcCB68EECUce5vZiz/8\";s:19:\"css/fontawesome.css\";s:71:\"sha384-Sbwc59I1SOoVoCGgBCwAe/M1j5a9cHixHv/7x9vOxORnT73jUaxyK0paobkk3JSt\";s:15:\"css/regular.css\";s:71:\"sha384-Vma7aWQBdmjVfr98uRd1HcA/r6wPYrlNrIvQBJhDCvZi3X9gVuHtqUKUYep/1KKk\";s:13:\"css/solid.css\";s:71:\"sha384-n4xPrkfCJ3FzmPwM/Nf1QQu7Qx6oDcsbMp+qPOxrJ5w0Tq19ZWd9ylcMWkzKEpwP\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-5ywFB7dcUP6RcAWMLvCE58MQE5YMXWSPjly1IqItdN0w0TqoJD+w68U7C3ShoZRk\";s:16:\"css/v4-shims.css\";s:71:\"sha384-IaQiZkMW7NRKIS04GeT98++WyQ6RNaEQlHoHoDrhU+hhCJE4EkfL7itJyj/vanQT\";s:9:\"js/all.js\";s:71:\"sha384-ukiibbYjFS/1dhODSWD+PrZ6+CGCgf8VbyUH7bQQNUulL+2r59uGYToovytTf4Xm\";s:12:\"js/brands.js\";s:71:\"sha384-Gt4maPu5ZO/PkTh32sKMYmmCLGuWtMkv5YBtFZpx4Tu+Of3kFZPYBw9iD/pi4L6s\";s:17:\"js/fontawesome.js\";s:71:\"sha384-TAztyRuTlqgZ97tz982rMo44MRC58wyCC0pqKZY3cKWJNkK00qMd3DhQ7R25jpCe\";s:13:\"js/regular.js\";s:71:\"sha384-IQnlolMpq26nEj6AOd6JOnY2jqCa69uFBqCGBCWSm4EFZYprebVtp3Z2xVLMElvs\";s:11:\"js/solid.js\";s:71:\"sha384-prcFDC6iTvvWsx2iSZtbDdeMVWWOtxcQXXagr9uPHwi42uae31Y3Q17eehHuC0JL\";s:14:\"js/v4-shims.js\";s:71:\"sha384-l9bFz0TmR1ecMQdb9mzBeiLLX3z0mqeK0Bsxhim3nnHB9PoA6o3FUumLH7K6W6/D\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-/pOR6TNYPdUaQQQRKQ4XHznZ4U2K/Lscb3u6jshUngC/31fLTuyX9FZb24gp4O3J\";s:14:\"css/brands.css\";s:71:\"sha384-OxPYtFc8yWHWBo2MFY4rHs5dKcTpNGuyft0hQ+K/vSUJA21jrxi+Py412o2wMvsL\";s:19:\"css/fontawesome.css\";s:71:\"sha384-/0C3VuTlEzBany89/Wf2OJLSGrduLCC28kuoGL/PCGJjGj01pVtiqOcgZZ9AtlET\";s:13:\"css/light.css\";s:71:\"sha384-YmipRqYc8Wly1koaxcpAPTnvJIqXBN4Ue5+l0drZn34sdM+UufP6v8D8/s9xxXOI\";s:15:\"css/regular.css\";s:71:\"sha384-iUhpWyroENmdb/oNEGUdCk4J+TfFOm/SNYi79nN/Hb1aQgjofylAAuRTUfpK2yP1\";s:13:\"css/solid.css\";s:71:\"sha384-maIT5Qg1FqlJhNYpN2IgLAb5XPLY8CqZ7tKBQyjHh+nx/7JXsI5bp+8JHnUgeuyw\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-BUeh/IoVXY+o863GdrQzogOOSo3ABFpxuc9xZhQVnsM2T2vKmrpHGZwaEqqX/SZs\";s:16:\"css/v4-shims.css\";s:71:\"sha384-lRITDKAHusCdCcsQiEA2IIoqExMRD36Tbn9CZj00L8klRpDyMeOoPSv6ubcNAHux\";s:9:\"js/all.js\";s:71:\"sha384-gUdv3ElxXd3gVdbCqjppYoQanRONrQDSdaZY3zn1KeASeS8YGy+T/JDaD2ohyarV\";s:12:\"js/brands.js\";s:71:\"sha384-XLy4uPbRNbMJUgEm6JLmHI784E68XjgSbheIn0fP/6GdZtCcsZmlXvceAGvhzKCh\";s:17:\"js/fontawesome.js\";s:71:\"sha384-aoV9M7ZLyivlmo8GKrkeWiOUQzBnYBpP6U8gW7WXfhssy+HtO87KzowcBokSiK3g\";s:11:\"js/light.js\";s:71:\"sha384-+itlrN2dvS1RqmWnkLQkDqzANbdKqtt6JyQfE/DXxFnhg/PXf0ufRBCSp0c6q81i\";s:13:\"js/regular.js\";s:71:\"sha384-GoKOHat5yLSUYiGMfLJkuCErUZrNlW+2FeFYuKOt7sUWbqvMQOqfB+mdpfCU/8Q4\";s:11:\"js/solid.js\";s:71:\"sha384-jOmpRjxTFmJAVhf7+H7o9joWtQWHRZLdr+B25WojM1yfhB9wFkDvQ3x0VDDn4aAI\";s:14:\"js/v4-shims.js\";s:71:\"sha384-gaNKDFtFZuAyZDkB8Wov1Vl24lMu5MD5MXLmUSu+4HzB8tTVwemJnhqN4Zuj27wd\";}}}s:5:\"5.8.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf\";s:14:\"css/brands.css\";s:71:\"sha384-n9+6/aSqa9lBidZMRCQHTHKJscPq6NW4pCQBiMmHdUCvPN8ZOg2zJJTkC7WIezWv\";s:19:\"css/fontawesome.css\";s:71:\"sha384-vd1e11sR28tEK9YANUtpIOdjGW14pS87bUBuOIoBILVWLFnS+MCX9T6MMf0VdPGq\";s:15:\"css/regular.css\";s:71:\"sha384-FKw7x8fCxuvzBwOJmhTJJsKzBl8dnN9e2R4+pXRfYoHivikuHkzWyhKWDSMcGNK8\";s:13:\"css/solid.css\";s:71:\"sha384-QokYePQSOwpBDuhlHOsX0ymF6R/vLk/UQVz3WHa6wygxI5oGTmDTv8wahFOSspdm\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-acBDV8BDMPEP50gJeFdMIg9yE8eOPuFdBV9r+2F492NUbKhURdQvglFkG0Q+0rlE\";s:16:\"css/v4-shims.css\";s:71:\"sha384-knhdgIEP1JBPHETtXGyUk1FXV22kd1ZAN8yyExweAKAfztV5+kSBjUff4pHDG38c\";s:9:\"js/all.js\";s:71:\"sha384-g5uSoOSBd7KkhAMlnQILrecXvzst9TdC09/VM+pjDTCM+1il8RHz5fKANTFFb+gQ\";s:12:\"js/brands.js\";s:71:\"sha384-rUOIFHM3HXni/WG5pzDhA1e2Js5nn4bWudTYujHbbI9ztBIxK54CL4ZNZWwcBQeD\";s:17:\"js/fontawesome.js\";s:71:\"sha384-EMmnH+Njn8umuoSMZ3Ae3bC9hDknHKOWL2e9WJD/cN6XLeAN7tr5ZQ0Hx5HDHtkS\";s:13:\"js/regular.js\";s:71:\"sha384-Uc9toywOA44owltk1MWl0lQZ+L0mBzJkLQcdif6+JtG9izvok9DLJtCZX57Uq3k2\";s:11:\"js/solid.js\";s:71:\"sha384-IA6YnujJIO+z1m4NKyAGvZ9Wmxrd4Px8WFqhFcgRmwLaJaiwijYgApVpo1MV8p77\";s:14:\"js/v4-shims.js\";s:71:\"sha384-DWlD0qU0+4WTFKXrFbt8wXq/1NHvOGT8vwllYM0W2gIeqgaCC3bZ0U464mDtbR70\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-Bx4pytHkyTDy3aJKjGkGoHPt3tvv6zlwwjc3iqN7ktaiEMLDPqLSZYts2OjKcBx1\";s:14:\"css/brands.css\";s:71:\"sha384-9Wenwezdk1eEhfcpps+Heco4zWw6KuZ2VlevoPomUwWYYZd3nBX0kZ1hBV2zSIKF\";s:19:\"css/fontawesome.css\";s:71:\"sha384-4HqGlagEHMyfaDQVabl1wx7GCtGw6hDl3sKJEhqQjOCrXrvizhaA2j4hK8Piewtr\";s:13:\"css/light.css\";s:71:\"sha384-3SMOAKCN8LYSMjkWz1ChDg4pHSLtD+LuKXaZoHxE1oyDneLR6Ebjm3XHMHO9fWu3\";s:15:\"css/regular.css\";s:71:\"sha384-ELBQxbOyxSZRtZPNO1mVgYkEzMOXFNmQY6CLV1nw+4IZoiHWeuwYTnABxPxxsuBE\";s:13:\"css/solid.css\";s:71:\"sha384-MkkthiFx7890Rev6vwUJO4gRT4yuH5tqMm/Wl4/n9/qptaBpiGcMyjfgq2K4h394\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-LnvOeE4ntog9dzgq63i0OoI6jKPp3p0y693Fh4Fd4eOyx/UsAw0kHXbLKqML1p9R\";s:16:\"css/v4-shims.css\";s:71:\"sha384-68zdIccmue/irEHOgRiyNsWTZAGftSb6RkEtUhgaD+8213AXnbThq7m3WsO+B02H\";s:9:\"js/all.js\";s:71:\"sha384-GBwm0s/0wYcqnK/JmrCoRqWYIWzFiGEucsfFqkB76Ouii5+d4R31vWHPQtfhv55b\";s:12:\"js/brands.js\";s:71:\"sha384-b4zU5X+9uCyU5wpeWBsEIFph6tTD8ERLbUs93uYGQGNqzbcfPDeY6c4jMhTAfBri\";s:17:\"js/fontawesome.js\";s:71:\"sha384-w6QYwIdCVqcYkHtaFutVu3VlDeu+pBFvlp7e0/tygMFwnWTl13KuVYfsp0ediPpA\";s:11:\"js/light.js\";s:71:\"sha384-avwGKnev1pyXYEbWxXSg9S4rpTsws+5vQpoj76SfcccEzOL162Ei8+z4a6AlaMeE\";s:13:\"js/regular.js\";s:71:\"sha384-lv9QOXVC8fPRX14JTtgPGx1JjQPfjnqnp+bTlEnrW2FRawdJ4V8oe4Yq4kdfgJIp\";s:11:\"js/solid.js\";s:71:\"sha384-sJjbbGVKgAaulHq0KZK5MsUx9YmPj+4G3oY2vmW12iBNEFkkhObBezK0ZhSXchIs\";s:14:\"js/v4-shims.js\";s:71:\"sha384-J8Vif9iMSqb5RK45yq6+dnrM1lTP1oQcIHtKpoH0irzUJD/1gCK0pQgIr0hO+hta\";}}}s:5:\"5.8.2\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay\";s:14:\"css/brands.css\";s:71:\"sha384-i2PyM6FMpVnxjRPi0KW/xIS7hkeSznkllv+Hx/MtYDaHA5VcF0yL3KVlvzp8bWjQ\";s:19:\"css/fontawesome.css\";s:71:\"sha384-sri+NftO+0hcisDKgr287Y/1LVnInHJ1l+XC7+FOabmTTIK0HnE2ID+xxvJ21c5J\";s:15:\"css/regular.css\";s:71:\"sha384-hCIN6p9+1T+YkCd3wWjB5yufpReULIPQ21XA/ncf3oZ631q2HEhdC7JgKqbk//4+\";s:13:\"css/solid.css\";s:71:\"sha384-ioUrHig76ITq4aEJ67dHzTvqjsAP/7IzgwE7lgJcg2r7BRNGYSK0LwSmROzYtgzs\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-PLvJTjM1QH/74H66d1I1vU8KYsjkbjSJn87gUIUsIO6Xjf8fRO8Hxdevr46EkV7M\";s:16:\"css/v4-shims.css\";s:71:\"sha384-XyBa62YmP9n5OJlz31oJcSVUqdJJ1dgQZriaAHtKZn/8Bu8KJ+PMJ/jjVGvhwvQi\";s:9:\"js/all.js\";s:71:\"sha384-DJ25uNYET2XCl5ZF++U8eNxPWqcKohUUBUpKGlNLMchM7q4Wjg2CUpjHLaL8yYPH\";s:12:\"js/brands.js\";s:71:\"sha384-GtvEzzhN52RvAD7CnSR7TcPw555abR8NK28tAqa/GgIDk59o0TsaK6FHglLstzCf\";s:17:\"js/fontawesome.js\";s:71:\"sha384-Ia7KZbX22R7DDSbxNmxHqPQ15ceNzg2U4h5A8dy3K47G2fV1k658BTxXjp7rdhXa\";s:13:\"js/regular.js\";s:71:\"sha384-iFYyWQkY/Zvsdq3IIxRJI2FBoXPj6g73ok7rIH3sZGulA7E5PvFqB5BOELomUuyh\";s:11:\"js/solid.js\";s:71:\"sha384-+2/MEhV42Ne5nONkjLVCZFGh5IaEQmfXyvGlsibBiATelTFbVGoLB1sqhczi0hlf\";s:14:\"js/v4-shims.js\";s:71:\"sha384-5i8QG9UXrCZePXfj1ac87dq22tNtGoJ22fmjXaJI8iIy072+ZKv1NZHbsTMfYvnV\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-xVVam1KS4+Qt2OrFa+VdRUoXygyKIuNWUUUBZYv+n27STsJ7oDOHJgfF0bNKLMJF\";s:14:\"css/brands.css\";s:71:\"sha384-BeZiOfMYSXjscewXEIJ0PDoBy27u+zVSTP5ZuW3kjEZKCn7pOB7v+oQVtAtHfY0v\";s:19:\"css/fontawesome.css\";s:71:\"sha384-fqilzf6i0kkOYm+DT4UC9pWzYf4/eFdJKroY1jZyE7n8eYLujyYM9VCucGf/LdVD\";s:13:\"css/light.css\";s:71:\"sha384-0WqtEOayxoyo7wgxUc5l2RvIbaWTyny0LrJbwsKhrKXUyopxvaNFLIoob4dXRwLO\";s:15:\"css/regular.css\";s:71:\"sha384-jyNdSTwsauV6/i9u6sKFOZBrxlr4QREAY295HsNy8laz4LYryhnPdz0ewFVERKfV\";s:13:\"css/solid.css\";s:71:\"sha384-dUUyoHgD2BplZp1AnRbRu0HPC5jscpJEJaJjqnBh7Y5PT1gW7cM6BQEgrcOsSa7e\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-+BcpgpzTfqttc/C2LUPzGXIGunaa/aIuSC/BPO2BBqqMbHNRCF7d3DU54LxbCzTS\";s:16:\"css/v4-shims.css\";s:71:\"sha384-TpRSvWoRbPKMMxDvVZgEa9wxoOZyawahRkC2P+ksDRxjPSvZjhEf5nU7pqSWBCQF\";s:9:\"js/all.js\";s:71:\"sha384-RLPiEwcAdrH2NjFcwJipJtlFoIN1xvqPYeeDX5yYtSNu+HTIkQCDvPQ9thsUnPUS\";s:12:\"js/brands.js\";s:71:\"sha384-NBtHk407eZGNubj82MbaKt5CrNLfhnYmCbpjSyDk/nWemMXE/mfvm3c1MPjfnWmU\";s:17:\"js/fontawesome.js\";s:71:\"sha384-b7K10RWf2Q3m26zPrKzM95th5yJnxEw+vpCzNITZFKV8UgxPgHb61bS0xFkKdV2I\";s:11:\"js/light.js\";s:71:\"sha384-BMiulaMo0kY9ExzwDFFjsXkU373Br7qSwYa/hdDlWEWEkE3flk4mBFvMwlpye3Aw\";s:13:\"js/regular.js\";s:71:\"sha384-uMEQdPXvyCTabszTyCxRRMDh/xIcRlT/fpq2DKkcjR6+lOqq2111EL0C1OiRVu1E\";s:11:\"js/solid.js\";s:71:\"sha384-9fQzIUDeLlrPRI2CT9AqVv6Yr0JgEY0+rr7ngyaatQAQrEHhCv5CvG8F8UFdgk7u\";s:14:\"js/v4-shims.js\";s:71:\"sha384-Ts0FauTmSRKZNl+Uw+WC04UuoVYd2gXlJ+OcUvb1NDrV2XmDcgCr8PPv5MY/7KZR\";}}}s:5:\"5.9.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-i1LQnF23gykqWXg6jxC2ZbCbUMxyw5gLZY6UiUS98LYV5unm8GWmfkIS6jqJfb4E\";s:14:\"css/brands.css\";s:71:\"sha384-vfTtNoEyqnxivzqkzc+mvlVeCWPGwMlIIkeTkt0mcUQNmFLyyXxY5SgZIkKQIXRK\";s:19:\"css/fontawesome.css\";s:71:\"sha384-NnhYAEceBbm5rQuNvCv6o4iIoPZlkaWfvuXVh4XkRNvHWKgu/Mk2nEjFZpPQdwiz\";s:15:\"css/regular.css\";s:71:\"sha384-5E/NXotaQSDJW8gq/9pxwQHSPRrb21suHuLPqOIlgob8QC8ltM13i6HLujrhWmBL\";s:13:\"css/solid.css\";s:71:\"sha384-ypqxM+6jj5ropInEPawU1UEhbuOuBkkz59KyIbbsTu4Sw62PfV3KUnQadMbIoAzq\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-Bfk4oyOug+rBqsciYilQ+iwazXsMTURz/M6Gfx7fb02KNeW5VHwt7aHTXWNU9B2W\";s:16:\"css/v4-shims.css\";s:71:\"sha384-zpflLcSaYRmTsnK2LTOdvChgML+Tt/4aE2szcblLVBXd8Jq/HGz6rhZqZ+4TkK75\";s:9:\"js/all.js\";s:71:\"sha384-7Gk1S6elg570RSJJxILsRiq8o0CO99g1zjfOISrqjFUCjxHDn3TmaWoWOqt6eswF\";s:12:\"js/brands.js\";s:71:\"sha384-CZZj1HZWqgh/CGR22Lnl6+fZC6IDR10ga+wECjipCR3zId+7ZxZP1JNI+YgdzyO/\";s:17:\"js/fontawesome.js\";s:71:\"sha384-RXRrB6R44g3RRohoKLAOK5MjNq4PVvz7iZErCckeyobGIJLpTP2qq6xjJFuKnfZu\";s:13:\"js/regular.js\";s:71:\"sha384-xrLv+W4OudHJZ6QDKuv+el28Wyr4OMO0qSQuBiPqhBsnSGKdGct/ElQm+2/fx/eS\";s:11:\"js/solid.js\";s:71:\"sha384-kDWpGOpzLEy85/cK1Df/ba6PkpDHAKUGOX4YHEt0sFzHdrTY1rGmT/gYHN3zCcF0\";s:14:\"js/v4-shims.js\";s:71:\"sha384-npD7syUhXOZUTbAzJEyIPGq/8gGAhBmei7JkUwUki9hAtz9oPkFJwx5f3vGb7SOi\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-vlOMx0hKjUCl4WzuhIhSNZSm2yQCaf0mOU1hEDK/iztH3gU4v5NMmJln9273A6Jz\";s:14:\"css/brands.css\";s:71:\"sha384-wRa49NRotGDh34aLO1Hjbu65qHSTF/ZNSBm7uTpMUa2EQ1Csq7Zlswm+FR9hcWtn\";s:19:\"css/fontawesome.css\";s:71:\"sha384-QSCxeayZXa6bvOhHReoQRGN7utvnOnY3JoBHGxM61JQQ1EXA7AT3m7dnlHXLhnCj\";s:13:\"css/light.css\";s:71:\"sha384-/ggAGHSQWxssDRflcj0aeAlGN2rNgsnWOLv1ZU5FEvjQWxP53glq5pNPjtfldVVN\";s:15:\"css/regular.css\";s:71:\"sha384-FrLF2uGffV1P93pQZme192v/cHRu1XlgjMreWAScHPPjBz/p9pNTx/bTV83x8peQ\";s:13:\"css/solid.css\";s:71:\"sha384-KyLwW4NRDhAz4RVatBCvFATniD3ze5rJvP1usxUFectdGgG8n+7OTcZug8s4bj5H\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-dwNK02s77FqYOBDJpF4ttbI23g2UUTrI9euJ+OQGonHAy4W1kCpAyV7ozLK24GWz\";s:16:\"css/v4-shims.css\";s:71:\"sha384-tlZ/hMWxtcO6JxnBPYGsa5Oiu1gmAqp/bY7s7G6m5OOCJvcNQ6Fo39YHu4Elr+Hf\";s:9:\"js/all.js\";s:71:\"sha384-nKdXFHC25mX+ztWymakpQ8nRykznAcZ+yHi9XETJ8CuVvvSGeg/0QCPhvDb41hUb\";s:12:\"js/brands.js\";s:71:\"sha384-4Md2NBtJT8CgVnGaoonPkhRdMvGcFRH/nATvRJ0+2VsJ5bjySPpBil+KbSC+9yFv\";s:17:\"js/fontawesome.js\";s:71:\"sha384-nFIVFc2+uHHcH70YEBnMC6UmUjVxcQ0rZJe7u58lz5aUDQRz0l3xFmVSdao7Ag/K\";s:11:\"js/light.js\";s:71:\"sha384-C6XejYBP1H4YOZVReSXSBion6LKXOt7htNgjRlcKQSsMnL+/Ok1vyvI5EQs1/H1e\";s:13:\"js/regular.js\";s:71:\"sha384-GlXg5Pw5UjuoWpx2tbE3LsctnmBsngO5u5c+nK1slAwSuwN86zPzez+sFxncM+Tc\";s:11:\"js/solid.js\";s:71:\"sha384-pAEZwWHMzeWUPLx+edoghTzc+LBoBSIWMNFPeZGDiFDP6WL4g+EHr7DhQMUpjSLZ\";s:14:\"js/v4-shims.js\";s:71:\"sha384-A2MQ6ZItVBjKp0Efdmi8Xze6uRApxGoHzuGImgZGk6JfuaQ9Vkcev6HtJSQzftWE\";}}}s:6:\"5.10.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-0c38nfCMzF8w8DBI+9nTWzApOpr1z0WuyswL4y6x/2ZTtmj/Ki5TedKeUcFusC/k\";s:14:\"css/brands.css\";s:71:\"sha384-19EzMRnOAF4Gg36FukRf0Bee26rnZC49Ld5mFG+8XiQ8ddeKQYj7Rnl12YxIoHe6\";s:19:\"css/fontawesome.css\";s:71:\"sha384-YYaKmJMZQbIhKGKC1QGjVKSQ3s9OlZitN6xQQEPksarSkM0WNkq5Kke0yehyNwyT\";s:15:\"css/regular.css\";s:71:\"sha384-OVGJJ0J6OIuVjxoE5rUQPFweGgzO0xT+HKN5IChh3LTrsWQKjHocfKq+nk/8DogN\";s:13:\"css/solid.css\";s:71:\"sha384-dHM1276IWlmmltsiRRg04ASaTBbgAqnnjneOemUaqff0rqTtVHw5qqKE5i0k4Qll\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-oBn2TNb41FLJEvg05fPEoAhWHErn7PR1FiyT6NjQkoPzDDg1n/e/GrwRgh34gDmQ\";s:16:\"css/v4-shims.css\";s:71:\"sha384-R4Ah6+FGj2TWi1SbbJo01aRwLwdNunBoW4ALQ4SdcDpyQpKoP0pTL3Ce0Hf0oMOh\";s:9:\"js/all.js\";s:71:\"sha384-BfzGEucsDAHnSR99xBvG8cNHx7h6sEbKJejtvqlMrN8nMi3gP2ds+sMAjWfWnZyn\";s:12:\"js/brands.js\";s:71:\"sha384-SgCx6DCTHwPNfTrT8PeDNKVR+bLsTKTVnBbtZYSLgfp4dd+KGa6j4/Jy96HTd0nw\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-yhpUSfH+AXwjqsle/7pS92NQZivmuHw41bqBfGxkaV4ftpRTE9Z6MNd2oh9x/BBm\";s:17:\"js/fontawesome.js\";s:71:\"sha384-LMbxIMq/Ra43sLL8MF9d0C8NDym6Cp7d2rtvvZUd5n4EuGE3GSYBmf6JV41EB7+y\";s:13:\"js/regular.js\";s:71:\"sha384-eX5P9jt8OdQQ4ME1Y4Q90r5k0qCw55F9jie73NYjcSEHIYYV+x3MW3XgqK7HDuOG\";s:11:\"js/solid.js\";s:71:\"sha384-WvtEEwvz7coGHFMqz/gUsacHkjubSgzLIieTORXey1KIpl+/r1Sk5owMdBxnGFHy\";s:14:\"js/v4-shims.js\";s:71:\"sha384-RT+uACaLSP2jOOLdRXKvxcgxA/WNa36UYkM14r9ODCgz51g7frfTdR+Jv3q46NW3\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p\";s:14:\"css/brands.css\";s:71:\"sha384-/BwiSb9M4ZqztN8bEG+VrC9ohWSBX3qEV95+/+gBJoE4+zG3KqcLj8ShUhBIALSm\";s:15:\"css/duotone.css\";s:71:\"sha384-R3QzTxyukP03CMqKFe0ssp5wUvBPEyy9ZspCB+Y01fEjhMwcXixTyeot+S40+AjZ\";s:19:\"css/fontawesome.css\";s:71:\"sha384-eHoocPgXsiuZh+Yy6+7DsKAerLXyJmu2Hadh4QYyt+8v86geixVYwFqUvMU8X90l\";s:13:\"css/light.css\";s:71:\"sha384-2CRj/5C4pwyS5v+q0KXxQ39b3qsKQNE6T+9FFaAOlps/XjJcK+M20aMUxuQtRLaZ\";s:15:\"css/regular.css\";s:71:\"sha384-pWItZRjB6NLzlrnwcL+2alve4CtHiaLj9W5ZwGPgy6dtMzCPsGv/qEcRvrbVkW5i\";s:13:\"css/solid.css\";s:71:\"sha384-Zbnz7QaugaSWTYmuSFTHGzMLxXAu2vzmqJhA/DS3bnaZGJaatH8apOWXfFaP6PMh\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-85qDq8Thytv8iDkEBcdksps8EZiX4DEo3vh6Ijk38Xi4RVm37Ttn+HU9rsXho2fN\";s:16:\"css/v4-shims.css\";s:71:\"sha384-y51MGgwaeLjbh5fbY1GJ6PypnEoMkGu8MoR1HRE/p/hHfiEE1G9bK/79bstJpyYk\";s:9:\"js/all.js\";s:71:\"sha384-G/ZR3ntz68JZrH4pfPJyRbjW+c0+ojii5f+GYiYwldYU69A+Ejat6yIfLSxljXxD\";s:12:\"js/brands.js\";s:71:\"sha384-8TDwqaS9Kr9a/3cVS6+XkvWUM1tz6XdS8s2urD5rXY1Cz22kPF77ZuG1gIWaz6kZ\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-JB1N15Wp6AIOL3sQ9Tm4a0kATlQy9/+/nLmU9B2wv4K4gGNAUFZEU7qDcxIPJLXy\";s:13:\"js/duotone.js\";s:71:\"sha384-PcDzzpTJzDDda2YUM4EY5ZqnZQ3DTIFtoaAn7t07N0UIY1HVyaxIHRzROmFBd48z\";s:17:\"js/fontawesome.js\";s:71:\"sha384-8YSeMunSTZdDZy7rZxfG3NqC3KnYaCKxTJMm9yoILgIoMpXeTKDrV8TeV9C5ItEc\";s:11:\"js/light.js\";s:71:\"sha384-sEc8iKGnMxm+Dm4AQabXbw0DKZU9FtFrWMppMOsxaUZsLL5pcpQs4aL/OfefTw7g\";s:13:\"js/regular.js\";s:71:\"sha384-wNQjNuGVt9TzLWqaxsZvH5uIDIxEkpSCeSPg6nF2ud6AK9jXY9yMFA6CbcZrr+cZ\";s:11:\"js/solid.js\";s:71:\"sha384-Vh+IVHoo4c4JXOfJBoUxIiEJf6bB443zoyGtwY8WbBmCU+7fAq9QX9JLtFcNSPZl\";s:14:\"js/v4-shims.js\";s:71:\"sha384-vzU1ar4oP9lOG/JJdj1q/+3aatI/ZbpyHIMelvsAi2Ee8gCiTIb/YhqRymLLZkje\";}}}s:6:\"5.10.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-wxqG4glGB3nlqX0bi23nmgwCSjWIW13BdLUEYC4VIMehfbcro/ATkyDsF/AbIOVe\";s:14:\"css/brands.css\";s:71:\"sha384-+B+cmd37r9agFUqHw5ABups/+o97SqA/Y6S5b3ly2q0ABacloQs0HZOQAX1NpJhF\";s:19:\"css/fontawesome.css\";s:71:\"sha384-jUGOH+gYMCfz2jbO6DW8vojES/a323h7dcoT6qI7Bvod9mew/wwTZryjccmaMOkf\";s:15:\"css/regular.css\";s:71:\"sha384-gr19od0wAxe2+mYHEXvS7Y1ppn+ESoAQzTYGPauVJYyAYYl0NBQaKveeQnzez2Rm\";s:13:\"css/solid.css\";s:71:\"sha384-VUnOJnDrNS0aVOhF6puq5SPJOP5oOvIO6n54m14E2/OHv6DU1gklJ4EImoD382c5\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-94OQehjHMl3lApC2tWmjwtxlB0oEtSE2zrTdf8uuWEaDEkkCxXK/w0vFs5J5WPU1\";s:16:\"css/v4-shims.css\";s:71:\"sha384-i1lF6V7EeiD7KOgGLtAvJiK1GAQx4ogzG6B9gpEaDuHSLZuM3sFtPZrI6H2Gzqs6\";s:9:\"js/all.js\";s:71:\"sha384-aC/bNmpJEYrEVX5KNHN+m0CmvycQX9wDnYv8X2gdXQjrbtDP5OcU5DRiXwL6bPwr\";s:12:\"js/brands.js\";s:71:\"sha384-BZIBcmKlroIkWe3e13MZbUHZdmagAU/8cnXo9mIW5p5wzf+/U5ULLQ8TVioSuCnC\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-A6TzAYakDQ9XwDY1hOPxAxI/3t6kol61Ed9hvHegEwcENzAE0vLojG6wItQDmclf\";s:17:\"js/fontawesome.js\";s:71:\"sha384-NXKh+ixIINN/JHIorH6fcTNwaAekBk2v7azch6cKmQm7wtb0yBt8ctqn1FAspAW5\";s:13:\"js/regular.js\";s:71:\"sha384-7Sk1mIxPYoZb2I3YK86sPsPMftKqv0aWP+dgX//x1mF1mSOYydXmX7DbtHN99bea\";s:11:\"js/solid.js\";s:71:\"sha384-dc4FEGpFyXnyL9DbieF6I8Xzipdt7GRHX6k8RM/ow6+IDISjPeeTwTiAkNzjv2OI\";s:14:\"js/v4-shims.js\";s:71:\"sha384-BtUWeH6hQDQGUZewQDmWRMisAxvs1LtqoVQgmbFptFnH1GpBw2b2vZenxfFmRtOS\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-y++enYq9sdV7msNmXr08kJdkX4zEI1gMjjkw0l9ttOepH7fMdhb7CePwuRQCfwCr\";s:14:\"css/brands.css\";s:71:\"sha384-9J78p9RP9gty/jk0TJPvYSzmYYCH4cRRkDMnZGxZNh1wdaXLvXzIk90EWrxjjqr9\";s:15:\"css/duotone.css\";s:71:\"sha384-Na50X0DRTNz+Sc+4XbFXONmaknKHBHw6gvRZ4coLQCl7ZLXziulq+4wvTZxkaM+U\";s:19:\"css/fontawesome.css\";s:71:\"sha384-OvQaO09Stu8nVnOdc+6B3WjpKg9dfBxoakdLxJKAYgsz62+DzBUCvWRxPl9LRVSq\";s:13:\"css/light.css\";s:71:\"sha384-CL557/BMzDSg/4ctPpKDphHJgLqpdJ5rvOklcaHzLHpX+qsgd4V/xao6Rya4xKMQ\";s:15:\"css/regular.css\";s:71:\"sha384-yLDdP4XFV3JqISKN0JaZ0kdyks9S+U2o9uBmNbmZh85yjdF/kpu+oY3/eXQcGHhT\";s:13:\"css/solid.css\";s:71:\"sha384-BrYpEWmuPyxLgVmvUGa111AoxZ3kKwiG4TVjjewWZV9vww+dTLWpmEffDSEg9Gf5\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-V8iByeksgr2la9ceLV1jNv7uWdzI3pYZLNzgYqWmQuQZa7khs4d6QC84YnMWoKxx\";s:16:\"css/v4-shims.css\";s:71:\"sha384-rql5zubvrhoXpo5buqgoiKryiT02OHCEtveKZrj4NX/C2Kuy7W2P7vl+RVzBUl9m\";s:9:\"js/all.js\";s:71:\"sha384-FW78RPcSpi13vjx77nPWQIrQbNSLkPBopb0qGzLCxD2x4Kr6FA8V05C/6cpgkKPL\";s:12:\"js/brands.js\";s:71:\"sha384-DGr5D3fYhGn4bylN+nFRaxvPt6s4FjV7B5EhOOFUKW0JKU2vco3q3xtgSZeeEYpw\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-++EkH6KNUkbsGzUhPmRa5yboy873FnCrHLPNWnvcfYOzCCShCQHtdQ3RQTt3WDsW\";s:13:\"js/duotone.js\";s:71:\"sha384-QwVJpiaupNLHQYsfQUftqzWXMT+SsU4AKnlvxDGzNjTq5xPXRbG/ohsvyIEyK2uf\";s:17:\"js/fontawesome.js\";s:71:\"sha384-v97MeHGTkmNphZhn+D7412xlPlc61o4jy6CouRwKfNltfXH68HcYhmQBr2j/J/Vp\";s:11:\"js/light.js\";s:71:\"sha384-TZInz5PvbxRzxSlGI1WYKmrrBBk/XTTZymO6w+smmSVD6RFpfZd+JtSye/viSFxA\";s:13:\"js/regular.js\";s:71:\"sha384-ZlV+aQMpcvCEqNPe9qTu/S6+eBL+DfRjOxr9wtsoZyGnJ/vwQk/U2SZhZ8tJqH5F\";s:11:\"js/solid.js\";s:71:\"sha384-WtnuXyp6MLUsHy3FAqJyL7aL0a/mdUjPwIs/Ub7FXJZufo/0qH9aFsTDY5Q6Bx3m\";s:14:\"js/v4-shims.js\";s:71:\"sha384-P9HMMmM/ObyzYMvKfF0Xf40MYwNdkI08AwhSyCsAVlmXZkJ9GaI0Z23pozRg8HAe\";}}}s:6:\"5.10.2\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-rtJEYb85SiYWgfpCr0jn174XgJTn4rptSOQsMroFBPQSGLdOC5IbubP6lJ35qoM9\";s:14:\"css/brands.css\";s:71:\"sha384-qVnmyLTtnGPGEN3HDG2MCEOXWH1Yk/i70lKRuV+gMCDQg+jblQlFGPf1mejWUyYG\";s:19:\"css/fontawesome.css\";s:71:\"sha384-hM7EQerc09E4O3zhtvF2iqcB4ZkEu9xkLQndhXdGGCEJ/sB4JK54SuKGmIC35UTf\";s:15:\"css/regular.css\";s:71:\"sha384-zuVEAfuEXYtKnHpmwmkhzwMdR2uek5gePU1XveESmScyRJHbncv8rLEAt+ofv7ze\";s:13:\"css/solid.css\";s:71:\"sha384-qPldrzmea0i8jhonuql0da/kQWeaXdQl+krGXcTQUdRUGHcXBfSrBbZLbyMcCWcF\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-G0mvrlfkz9DnjBCRmY8Wf7nC8wTxDsHE3pGAc7/4rDLh5+v9Z00qi/uyjjcDf1nf\";s:16:\"css/v4-shims.css\";s:71:\"sha384-updXts+unDswrMsYxLc5R+HfSmF8CuEIOe48Rj3DoVoPUIImOT1fs26H/tr/H9gC\";s:9:\"js/all.js\";s:71:\"sha384-QMu+Y+eu45Nfr9fmFOlw8EqjiUreChmoQ7k7C1pFNO8hEbGv9yzsszTmz+RzwyCh\";s:12:\"js/brands.js\";s:71:\"sha384-0kDL5YEgNJjL/kNToZYEds3evLmosarb6OU2eKqRYu6O28jcJc121tjUC40sG9VB\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-Hg1lNcVEsyCqBb1J4/U9X9IW2DEhAKIBfBIE0J0eiWGEX9LEpEULwcsqoAb6HDgG\";s:17:\"js/fontawesome.js\";s:71:\"sha384-5WtMZ7frOu4PgR22YgRSlercgEU28i5Zn39Svk6+2cg1MOigLDSsvXccsmJO2Wxp\";s:13:\"js/regular.js\";s:71:\"sha384-CYi/gunDGMYA12KV546MNRqsjbbWSyKgPjA9BwVMBQmIMhzVrjyUJwkV9uujzHLJ\";s:11:\"js/solid.js\";s:71:\"sha384-RbVpZhfPW/1SmcShwIOauawY5vJWxTCeEnmiUCiY2SbkrbKuSGTqJ9NnBUmcP95A\";s:14:\"js/v4-shims.js\";s:71:\"sha384-gDM1aRghQ5DRg+fSCROSYawrJhbAHqa6Teb2Br0qRJtb+vRJlyU4U4xnmN5cwJ9j\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-XxNLWSzCxOe/CFcHcAiJAZ7LarLmw3f4975gOO6QkxvULbGGNDoSOTzItGUG++Q+\";s:14:\"css/brands.css\";s:71:\"sha384-hIpb1kefRKjC/r6WxN0S6Nai7+AuherqCoHKD0HNdXkbzJkZcS4o62bJ7ODiBWAu\";s:15:\"css/duotone.css\";s:71:\"sha384-B6+5TXCEkY2Io8b+v2Ki0aEWnpCFgBYkOzXAHY3oQ4tr90JpQC1RErwFbvJ9CRt8\";s:19:\"css/fontawesome.css\";s:71:\"sha384-1sdMwbsd8X7Y+nVcEr/4D35smQEaEd6Qz+R00Y+NPUkG8MyRa97RrX5I4nqDt6X7\";s:13:\"css/light.css\";s:71:\"sha384-dlxpRYGi8Pjg49IqtrDIVZmCOQZ//oDKDkoqbn/IXrwwQDP4Uf0ys6+eH1z9sfhV\";s:15:\"css/regular.css\";s:71:\"sha384-hKM7KqUOh6F2PI59uEhofbDs/5qHHdJEULlmNWJEQcu3D/5/vl5zpwBrveC4GAbI\";s:13:\"css/solid.css\";s:71:\"sha384-FCdq+BRoY+lV7Zy7HKKQ4zoywYLRyasGk6IrmrXfmYs0xIgL0QrPeEPTu3T4Uqcc\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-+OTv1mrGtdzHGeAuFSVKpPvaMXNpUu+W+Xs4xYz2RgUlrBctmMyE3noRImN5j+ot\";s:16:\"css/v4-shims.css\";s:71:\"sha384-88Tda+TyAtJK9/cRRXAWdJjyE56Tg4ai2x7RoSEqSVodcInAoV0HNQ2ofaGCidyr\";s:9:\"js/all.js\";s:71:\"sha384-lowSFbzpSYKDOsvnpi2JVneSnkrbVjOTwcHOWpC+tj/YT1mxTDIB3ZqbtllmfUSC\";s:12:\"js/brands.js\";s:71:\"sha384-nyTyvpFz3BvQZucRUSSEDlyivN7GAC2Xhgl9M92o/rt/KfEZ7LkqusFXlCjM4DvC\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-eYjh/PZbsWw6lqYWtDM+NlcRs3pUkOk8r4mxv/x0xDjmYPXTxPKQ8ZNXxOnd0UCL\";s:13:\"js/duotone.js\";s:71:\"sha384-2j1n2yG+7lkO9CjnN1DSQOGJoDEaJPEr+TPmTer3pK/yD3bQ/Kk8bqJyS3LfCK26\";s:17:\"js/fontawesome.js\";s:71:\"sha384-sy0tjZ+ivgcg2wUVVEmLMO5wfntWOSyQaD7AQec0iXINci5JAP92T8sM4YldYQIA\";s:11:\"js/light.js\";s:71:\"sha384-vh/BsPXkl02OgBjk1HJkukipMWFU6vHADY4W3u9BXIrKjcRFw5Y5XikVLoLElHee\";s:13:\"js/regular.js\";s:71:\"sha384-p89srWlrnSOel/vi/SpBD/wyTTJhu+27jcfOazOCUnLTpcxG+NVuYs/okkO2JBox\";s:11:\"js/solid.js\";s:71:\"sha384-JzK2muq5DGAdfmBP1xyuFUAYGceTmP/Y84tZvRxkdtsjwuIcd8Hpf1D+5izeBUQP\";s:14:\"js/v4-shims.js\";s:71:\"sha384-z089sTZgTLfns4lyNCTpVbdQA6JAhOs6JXwRH4ig0M6EHPg+Lzp/hdcx2OHQn/v8\";}}}s:6:\"5.11.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-XLYVh3ZsmvjnjODXg/qvDYjcINmPLORACP+Tk6qA3jNLbStl84PzAeEz2Su02511\";s:14:\"css/brands.css\";s:71:\"sha384-ngkCSSyhFgmeG9/8GICGMwnX44Q70/NN2XuNgrpMHOAjXVjYwTvtQML/2+2EH5mm\";s:19:\"css/fontawesome.css\";s:71:\"sha384-saSWCOAroWA1DTfG19axC5l7ej+/lsLpGrQjthhULGGw0FKZqZmxdjRhWqjypqgH\";s:15:\"css/regular.css\";s:71:\"sha384-NJ6bXu66piTFdxVfLXmQuxcjGye4blIA4H2DybHqY1WFdYSxbKQo6W0G53caD7MY\";s:13:\"css/solid.css\";s:71:\"sha384-1Ln0i7HCe1LMHO25AgX/9s/3XzTLIMev2SYgQz8xSyXSa3775gIb15NIpJoDRYDg\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-utbeJwkEmotPPgnsjR2cFDH5mR1JrU1EX02CRdVYlT6MuuLA6/jK0M1UcDXBVNa1\";s:16:\"css/v4-shims.css\";s:71:\"sha384-QZ/09hWMymER1waFUW4M2iM55h3bf5FVf516rOAYf9G2mHSpAj+oo/6jrxhxiVq4\";s:9:\"js/all.js\";s:71:\"sha384-Zgm+jt84FBq52ezxzG1WPrUHXPTLraCVSuBDiGgz/mX0FZxgdkTZNephFvciYglv\";s:12:\"js/brands.js\";s:71:\"sha384-FYnxcuBilMBfd4M0z3ZhTEWrorBL6P6mqaDWsYN46z3iJszwg7yqVAft8mxPhWQf\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-nDF1UhY85TnH6TtkBtlcaTXQh2EGA+oy54oi//hchZ6BIO8n0yZOdEDcqy3Lj6SH\";s:17:\"js/fontawesome.js\";s:71:\"sha384-+4PGPfaOiBMXBdbxBpjj3c78flBTf1SoDBBbEHY2P8SuIKsjNJ59vjhjpMClcRVk\";s:13:\"js/regular.js\";s:71:\"sha384-sPFXZNRvY5NMeQlqaEJyF/3Lrrcqi+EowkFdHnHe2B5/GSLq+RN8eAfpDiFzWveB\";s:11:\"js/solid.js\";s:71:\"sha384-abaNJNBN26YUz3JKjkP/eHqZP+7EaMLIkyR/I4JNQXin7CWBKc81Tmgh2//K2gfd\";s:14:\"js/v4-shims.js\";s:71:\"sha384-uQinggJhGToi55IHZla+hhoeR3xafp4JLhuIZzag3QFHKDyLLolL8IuCRM2aLdxy\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-eRd7BE4pd4YyGL79iaO+/+GQtuNU464XOqRShZHNdRwR66wJIzi0UirzOFzuoMOo\";s:14:\"css/brands.css\";s:71:\"sha384-/DL+sGDGYNVXNSXzx8omqgYJuKJWhPfJC0j3sM06CPE7CKypUtyAtAburBBMbhWn\";s:15:\"css/duotone.css\";s:71:\"sha384-JrGJDz5LRxQ3s3dW4Av8oo0oPABX1FQPzGwpVizHFqVT7RXKd2suPslh8/k6EFvo\";s:19:\"css/fontawesome.css\";s:71:\"sha384-ASwVckljSlVqrp7J4fCNW1Zfqp4GBw13f/oq/bwtr1KNG1j5lzKrfTpvoivwJZpS\";s:13:\"css/light.css\";s:71:\"sha384-SE3odAKV/Li06jtOem3j03b4qHD5AfOLS3ip3Ie7HS0QtdLJuRozlFcEiBnKhIjj\";s:15:\"css/regular.css\";s:71:\"sha384-v0Phnxb9e1tIN8ABEpuqr9+U98eA2hbSnnxnIFWqTyvwFd4QjVV9NOCl19hLotTv\";s:13:\"css/solid.css\";s:71:\"sha384-23irw3gzc0cirSOm9k0vC4Cb8339DDxFatLW9p83F4RsFK/1HuRvePKAltYrdlBX\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-c8uzxHbCxkqcTDgRCHmj0nVIK7Z72qzR5ciNuZIQQKWVMb0Trzdh3g9EmdybHyb/\";s:16:\"css/v4-shims.css\";s:71:\"sha384-+/X59I6aJtu7U5st0yw42TmOgz2GTi80ici4b4Zr3fVKaib7AhAhXm17vhXVqNN6\";s:9:\"js/all.js\";s:71:\"sha384-jaxx6ehyna+t5i9JERhQruWpH3C/xGZQJz6/+xqO5C/eWWJ7ysIZIe9BAULfRy+f\";s:12:\"js/brands.js\";s:71:\"sha384-om6tKqxNyejPYGBkAEpF5czG8EOB93m9G17YUGoJgRtei7kJnA4P4+w73UfDPtLl\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-I8WM/bXtfWQr8u2t0OIaUfJNpTd6LnCbNnrQpaKQN4/Pdek5IOtrXdpcXpLwzCoc\";s:13:\"js/duotone.js\";s:71:\"sha384-tit+/K18O6+uMPCuvEcobuzvT7aFly7Raxqnszuar7OzNloVr2oIugu9S/T3MNgn\";s:17:\"js/fontawesome.js\";s:71:\"sha384-kAYceFs9TzH4f4HsWzAZvbE7yJRTcOUe2UeJVCdVV8AYbspSlxAIwUg7yGHrtSKe\";s:11:\"js/light.js\";s:71:\"sha384-zam67iVIo4OJbdPFYrgsf4Te4l96q61wYKpT72nLO78ICkwXk27OlsN4SQYHOlI6\";s:13:\"js/regular.js\";s:71:\"sha384-8QzBYxpPIH9HEZ96HhicnkJ8XYzELjI6YQabAc2ANT0wExEgzeKwnNdQM3B0YPzX\";s:11:\"js/solid.js\";s:71:\"sha384-vTIqr5UHlJnlDEDAZB19P3NuSQy0Ynbzj7w5ofBkLPpN1bb7N2uZ/z0GNZGCIFxW\";s:14:\"js/v4-shims.js\";s:71:\"sha384-56L2fWZDluSTJKVxfc7PF+HoFsBrcdkn/Wj79nB2pzTgaYmqLT5T2pn6PLbMvHHq\";}}}s:6:\"5.11.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-IT8OQ5/IfeLGe8ZMxjj3QQNqT0zhBJSiFCL3uolrGgKRuenIU+mMS94kck/AHZWu\";s:14:\"css/brands.css\";s:71:\"sha384-UMAQJEtrY4iFRXQIYIXWfTd0GPzHrhSPK1SJ3fEeGGgtkC3m5qhKESA0yOXahpmJ\";s:19:\"css/fontawesome.css\";s:71:\"sha384-8dpIy0am6bmWHK+abUbC1sgkCSD6WstSMjjNB7JVa+rprKurA6xisqNHg6DESJWW\";s:15:\"css/regular.css\";s:71:\"sha384-5JoPxivOfpG9KRKbjXkqhwpMZ7vvAATGi77NPd6sC2ruJrWa/hKqoLBIWC1n1N/U\";s:13:\"css/solid.css\";s:71:\"sha384-20Qlvv++Kgw8B9SXDkUX4JrITPco1UXcaB1mkymQFgx8cM9azG2Ig9Sy3khBpWip\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-jv39B+1DxC6iSROYUwIeI9RUDrl9ckXFPOOlys2dTXchRTodXzqX0lm6GUwN4iLA\";s:16:\"css/v4-shims.css\";s:71:\"sha384-iJU+Et4BsM2cUxdymLmM7B8IF6IkyAYIcJRKroT/XuA5+2bWL9u+KJ1ZItC4bcdo\";s:9:\"js/all.js\";s:71:\"sha384-4Uei2cJ8mOycRxb1dxppaomro+V4vHdGuT3NfYGpENdgukEOcOrNB43OdzBiHdpZ\";s:12:\"js/brands.js\";s:71:\"sha384-q5JjSRgEoLV9cBFXvjGX8xxIxWN+LcGaDFBxSid/9XwjhecfXMQK9Ak7bcPSFT0M\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-LqGhhRx8iThhBm6ytksB4x9veweiV+qNa2soZmn8V37E4Nohq1ccRoaSr4o8YAGQ\";s:17:\"js/fontawesome.js\";s:71:\"sha384-jwx8I0tSvPLf7ZV1KwBdmXpCHgduVujQNEzmHuLEiCYql63uV/C9TCtdBU7E5TL/\";s:13:\"js/regular.js\";s:71:\"sha384-W1XmDNwB/NY1P/H0BiR107pc9NC7aTrPvwXbrZewndT3nyrmFm/7IIc0AxxcHQ/N\";s:11:\"js/solid.js\";s:71:\"sha384-kDwQ866HvlesMeZEZYvoa7AceBir+K+jB/0PVVSs/1bX0JtTvAm3aFEgOCOCt3c3\";s:14:\"js/v4-shims.js\";s:71:\"sha384-gtnOUe72T7BrqVgxbkcbbwZGJLyyHFFtefPxPZ5t/rmQ7vMNXbxml7JJkSNfHmkV\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-sr3GDThhNP8BxHFoTK4zKFgOjcrT8vzaiLwnwU+yB31BCaNj3QMX6YVXcv8AeBAy\";s:14:\"css/brands.css\";s:71:\"sha384-4sG0FgVejJMQM47pqYyG+7afeARX2P0HYkQ8JCKf3ZqTcpJ3/SWefUFX8kdm8eYV\";s:15:\"css/duotone.css\";s:71:\"sha384-q4v2/qv2HhGIAcd04NDH2XuGq8Bzu+xNYUI3gcKFfWt09m/dgZlvUC0rQJ3KtGg/\";s:19:\"css/fontawesome.css\";s:71:\"sha384-O68Og25nY+MZZRUiP6gm7XPDuHsNC5DgKWEoxn6+3CFcGLRXuFihbGO/8c5Ned0i\";s:13:\"css/light.css\";s:71:\"sha384-Rg8mXhpzJH99uBsgdsCp9zXjkcsw/pm+s4Kgu/56eRQSd8SAszYc6hssH5MLusHl\";s:15:\"css/regular.css\";s:71:\"sha384-RjVm0cyaQYehIEaR5Tt+JDfgnUUtY7GP/N4rEglG6DxLUhzozRl6HTH5NfPQ0X1/\";s:13:\"css/solid.css\";s:71:\"sha384-/SNkE+jEmgiOubdXCmBU+e2fWH200um/crHWjo/Rni9rhQuxT4demqM/PAyc+tXU\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-9q0WPwNHncxttx1Sf3c/G9lszy6f82L4rYAYW+JF0PRBNvJ1mVyYivrsep7J+Fud\";s:16:\"css/v4-shims.css\";s:71:\"sha384-1oMR0RRrEohmWSZo0t/tezQF1gyGc/b73Bba+qyZLEGdTAPORCf4p+pQm/iycsgj\";s:9:\"js/all.js\";s:71:\"sha384-7DVhSuOn0R5KmazSuDzmwQHOIPfU4+n8x8AifcGCoSOGATBJh55ZY41LSL37PB6m\";s:12:\"js/brands.js\";s:71:\"sha384-QRf6gn0gPrg4U0aYZ5s/Sx7xXy9gplYMzh82CI51530v89R9s9xGG8ljaSqYflQU\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-jKcJk7TgESeW6RZgq9/e8kTr0jRQ/JvaM//YDKwhF9wyvXk8lQs27OQ6cgv3FXTt\";s:13:\"js/duotone.js\";s:71:\"sha384-CeUA4+L5GZZwc5CGnvQVaT/Yrv5HuRydWW/QDCiXZnuORKxut4zKDa2WUaCS7fvo\";s:17:\"js/fontawesome.js\";s:71:\"sha384-hvER25BD06AWxsJLW7cQmGKjQp9PSZttpMIo36kIq2TTPEhP4lIT3VMFul89Ym6d\";s:11:\"js/light.js\";s:71:\"sha384-qvh52W5+cWrTxhfM559wBnsSqplMQIEjQkHnAE8c6MViBcH1OKvI1u4IGR+26hZK\";s:13:\"js/regular.js\";s:71:\"sha384-owKa0I4sfD0ooTioBE3KJEbjcmAZi2LeCbkqHr7/vkUeG/U5OyCGxYlcz8axgnSe\";s:11:\"js/solid.js\";s:71:\"sha384-hNm7JVaYkbmX1gZWRwOXVFKJ3onp68grA2bFGmFSMCQueJbgNvKR+iItAjM/PiuT\";s:14:\"js/v4-shims.js\";s:71:\"sha384-1MuEmp8vgjvrraTYbqRjvuZbLs+vFg2oeN+87QTVYX2EAXM90T4bzBm7HIFFzAp7\";}}}s:6:\"5.11.2\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-KA6wR/X5RY4zFAHpv/CnoG2UW1uogYfdnP67Uv7eULvTveboZJg0qUpmJZb5VqzN\";s:14:\"css/brands.css\";s:71:\"sha384-tft2+pObMD7rYFMZlLUziw/8QrQeKHU4GYYvA5jVaggC74ZrYdTASheA2vckPcX5\";s:19:\"css/fontawesome.css\";s:71:\"sha384-+pqJl+lfXqeZZHwVRNTbv2+eicpo+1TR/AEzHYYDKfAits/WRK21xLOwzOxZzJEZ\";s:15:\"css/regular.css\";s:71:\"sha384-zgXo5aJZxI4cJSgWSRtbv7q4JB6PzrmOTAWiZt2CqN25ifeKsCuQZ/pUNoPgjcTb\";s:13:\"css/solid.css\";s:71:\"sha384-doPVn+s3XZuxfJLS7K1E+sUl25XMZtTVb3O46RyV3JDU2ehfc0Aks4z0ufFpA2WC\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-PCpLTPQTGcSAXFltutjYRSDJAXJItRY88oa9XgNyYJuwrgJGx+uNVmtGSDS2PPvL\";s:16:\"css/v4-shims.css\";s:71:\"sha384-/EdpJd7d6gGFiQ/vhh7iOjiZdf4+6K4al/XrX6FxxZwDSrAdWxAynr4p/EA/vyPQ\";s:9:\"js/all.js\";s:71:\"sha384-b3ua1l97aVGAPEIe48b4TC60WUQbQaGi2jqAWM90y0OZXZeyaTCWtBTKtjW2GXG1\";s:12:\"js/brands.js\";s:71:\"sha384-b2GpqFrJizV0BUEdbrITdOA5HnxnlrErt7MlEERWd6NSJ32rHeibEvyyCuA13OAS\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-b1XIrGvAvE1F4q9vHz2OmkU7bBKvxebE+Q/bW+d4lG90kACkPFm/ZQuS9tlTwVD+\";s:17:\"js/fontawesome.js\";s:71:\"sha384-EYYaHDhIRoBhd/Ir/1fPnxg9rZLk/55lKtlNT5KrIcONoCS2kjf7ZWzMoCLLACeo\";s:13:\"js/regular.js\";s:71:\"sha384-vIxiYcREJ+yKr8tRXG0gCdepcyuhCTkHwiTdG0qVTHSQvjO0pmllh1QAy93JYsE5\";s:11:\"js/solid.js\";s:71:\"sha384-Mf3ap7OwO+bjTkzM1RsrothLh38uKXvMWJ2TQPXGHqZcqfeI/cyCV+sfV0IDnBDq\";s:14:\"js/v4-shims.js\";s:71:\"sha384-G5fIV0dSzZ1nDQSh+B5u3TRX2UtPcd5UWyi2WS1fZIpJQ/JpJCdShAZ+wmILZ7Qd\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-zrnmn8R8KkWl12rAZFt4yKjxplaDaT7/EUkKm7AovijfrQItFWR7O/JJn4DAa/gx\";s:14:\"css/brands.css\";s:71:\"sha384-dd+UlUKIkNDLBFy2GZJRdMODxfdUjx/PanzxBbsXaRBkyjHzUeDX3mj6q53uL825\";s:15:\"css/duotone.css\";s:71:\"sha384-tHth4ugEmPOZTBSN4Hi2oYiHY6vpxIL8clasFZidKyR6Gm34+U6wx6A9eZHqTs2W\";s:19:\"css/fontawesome.css\";s:71:\"sha384-bQakmC+XBF+eCf93fSR/57kAeX91i0BDyXyj8My8/e/3Bcno5zhEGM02xNvpXV+2\";s:13:\"css/light.css\";s:71:\"sha384-yNf+8hATd/MoR/yfZG0nBBtjTfxZEM1rJos9BgjBaVuLcu711wcecTXBlfS91nfj\";s:15:\"css/regular.css\";s:71:\"sha384-H5RIR1XTDkiiLdUTNtbYvWKpNd2qsPBeGzpT5PD495znZL9JCA7119EMPNfCASw1\";s:13:\"css/solid.css\";s:71:\"sha384-LkNnzh6wVxsC0m3vcQ0T5L6csSYpgSYniG/AKJqWBsHT7PVpeO0QHkBw4dW1WfVu\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-Mh++Qzb28x/RVEo6SYO87IyopQpwhzveyGIVg/AfbCLCEHUINYcCy24fkArgPFNc\";s:16:\"css/v4-shims.css\";s:71:\"sha384-A1hDH1BUL9ZdoEFsPEJY4LRFhu70QJj+RaY50Zoqd568i+ONa9LHCI+uoWDT0Lut\";s:9:\"js/all.js\";s:71:\"sha384-S++1cFhwpxbtRScUliTyprAMK33gMHbukurY4rNyt9CxIniGm6PfioUsQPoAITQJ\";s:12:\"js/brands.js\";s:71:\"sha384-NuqRsJYX4n2gSY6iMRHPZJxtpR40C8Lc/CV66yyeP1Vu5W2QSuVyPxMRpRIGihE+\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-GLrjh9czojGY48hc8pYlf/3FRNEBu9OWvNAta7SMilmijx8+ciGGVZyD+VwV4FVP\";s:13:\"js/duotone.js\";s:71:\"sha384-uO8Ntsr5QW0kAl13UUiYRBDhu3foxlKI+jZjPBApRxFDX2tgO/GYiCXIYiGixOU5\";s:17:\"js/fontawesome.js\";s:71:\"sha384-FdPoPmNNPrerz9uF/cNSTyPmNCRf6b81QDEPk0JlXAaailLV3DT9yA8plMzyffNZ\";s:11:\"js/light.js\";s:71:\"sha384-zE0WHJZIhNaysmywEoQBm6THN0uK5wAyfKWoN6lJPGOlrMB8hf0Yt4/+bex9jZi2\";s:13:\"js/regular.js\";s:71:\"sha384-+3mzeMYwSyHPQfOsqYlwcE3OSC7aI/+DjyVLkBxqWP9O+JyoEtzidrSonbNKh1uy\";s:11:\"js/solid.js\";s:71:\"sha384-9I7yL3g1YvBlMZjZ0bWzPqP1m3Ic5t3EgFq/MqNm2r8FUxDVowt7dO4S1IFleLqZ\";s:14:\"js/v4-shims.js\";s:71:\"sha384-+Onl+wOd5BbZvaC8Q/mQUO3lZAqsUyD+xqhS57VlU7gIpqXBMcS9Tw94A9uMZRwX\";}}}s:6:\"5.12.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-REHJTs1r2ErKBuJB0fCK99gCYsVjwxHrSU0N7I1zl9vZbggVJXRMsv/sLlOAGb4M\";s:14:\"css/brands.css\";s:71:\"sha384-ouytoyjvzHVJu1m+KEtJ+2Ys+WFsXUlknprEuQAUs62XNn0shj9U2QeTwdJQmPR1\";s:19:\"css/fontawesome.css\";s:71:\"sha384-VoScp22LWX8GkkUAmdkkkj+rz+/r84lmCD6FALIryJxjwBSz6kE6oebSlamQx19e\";s:15:\"css/regular.css\";s:71:\"sha384-uUtN9GUP/RxDz5kko+qO6znqTP45OrABIxrrPhm8tax1s1huRxYCF7xDm+YunNDB\";s:13:\"css/solid.css\";s:71:\"sha384-9AfJF7pZ+RYk3wXpf8ge6fc3XhPaW3Xl57Qj/mSzPckn9Tu8zJ9qUipWq+/utX20\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-e3I5IwYfes9z/NL+oosxhrbsLa9R8TaEY+Krsm07Fcz7q/R+8nswvn20QsrR8tsb\";s:16:\"css/v4-shims.css\";s:71:\"sha384-AL44/7DEVqkvY9j8IjGLGZgFmHAjuHa+2RIWKxDliMNIfSs9g14/BRpYwHrWQgz6\";s:9:\"js/all.js\";s:71:\"sha384-S+e0w/GqyDFzOU88KBBRbedIB4IMF55OzWmROqS6nlDcXlEaV8PcFi4DHZYfDk4Y\";s:12:\"js/brands.js\";s:71:\"sha384-NLUhiMQCi+OH3uxQu0Ems+2GYt6KJ89f90f4kZlK0BoDB63kHZqAICPl7nQHppJy\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-PpGSW7GgJeChJyQc4XW1MIgUrRkMZudoPYOYAqGERZ+w8ammaWDBQvHM3Qp85XCV\";s:17:\"js/fontawesome.js\";s:71:\"sha384-aolToWrR1Hn3EFHDZtvTl0mtjuJJKLxSu/6b2tlr1g9dS+RLt6QVshweU+2e1v6V\";s:13:\"js/regular.js\";s:71:\"sha384-LCyqT0dvDekY5RP1UquYgUJARvp4tHVJocO5ICwoWSyVoSXrKpJrRrDYxj7+ukHO\";s:11:\"js/solid.js\";s:71:\"sha384-QsXs4eh2k/7mk3dvvNMhJJDjh8UQ++vWm4e7ULJ1UZTbOv3wQOzn+4ULg5iLW+Ph\";s:14:\"js/v4-shims.js\";s:71:\"sha384-NNQFVmb048Dmy0GH4ex0kGVcjxaPeY6JA1+ImM4Lsfr4HOD5CNMvCSoIfjeJJWX9\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-ekOryaXPbeCpWQNxMwSWVvQ0+1VrStoPJq54shlYhR8HzQgig1v5fas6YgOqLoKz\";s:14:\"css/brands.css\";s:71:\"sha384-z3CBOpMFSI4D+GXPvBsSW5vXhm4MEzWuC/CycHv+vsuzuztOzPpomZimFLeWNOgk\";s:15:\"css/duotone.css\";s:71:\"sha384-SnqCl1xqt09zXtBnCqJWrwMR2wbeWfxeAEB8e2QuoHdWNY1V5k0HrDi889EMHehh\";s:19:\"css/fontawesome.css\";s:71:\"sha384-CtsKDnRWWHDhjRZ5qgpCFCGpib2FU2SChFu0xRt81grgvXq1P+lbpROQoBLxlU4o\";s:13:\"css/light.css\";s:71:\"sha384-i+ivMdAc0+wLEnd+UdXLpYGNTbyn/0Rjz7EqmkqEOkfat5/2T+S63wn3WDk6h4Yh\";s:15:\"css/regular.css\";s:71:\"sha384-hCQzyeTkj8xmAEG5HT7Hx6t6DUkpTM34rr6FHL04J4AWtPtryU6EjsEDb+Gf17KD\";s:13:\"css/solid.css\";s:71:\"sha384-U9f9KTMQ1TBvUUFLpp6FgAy1M59lrF3q3rYTHPRVtT8OzY3xyyFUzKevJFYHEbhq\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-CpTDS+d/m1rbSfuYxoVJXNCmq6ovovJAD1qgFE+K1Vf5N/n5Nt5yEoZq1UovRsXR\";s:16:\"css/v4-shims.css\";s:71:\"sha384-w49b1IAwJTEsYuPUW2QuSzpWNnhksbL+b/1q2eGObJ2CVV/HO5ubRS4jyMLB4cGs\";s:9:\"js/all.js\";s:71:\"sha384-t1m5KR+UJYhp5D1IG6cS5MuYjxDyh/lIkrB1YUpSPfGxgR4r7pA2xW+KoAfcE5IZ\";s:12:\"js/brands.js\";s:71:\"sha384-L2A2TL70Fg2x6gHvF0zTdYDo163eb/op5YdWXAr/rWfprmIjt6Ib+mdHv60yzNh2\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-Tj7c3TfdpwGV2RqPFYgEbtUTrY+wJeAPDMsuUTvdrbMDWlP6gpUN6LNbXNf1C8BA\";s:13:\"js/duotone.js\";s:71:\"sha384-wAGnJyD+rhKARbazT5ohAk3YosShbJZGkuSG5lrKQOfQpG+7Q7o6ZmAvNqeJ7mFf\";s:17:\"js/fontawesome.js\";s:71:\"sha384-YdKgBdzRKP5F/uorpoOtlS1fRNfveZicpRkkQTn0pQdqGWQs6AMr7Jby3mA/G53+\";s:11:\"js/light.js\";s:71:\"sha384-VuS+lIluvKV9KjbEENEaZi4Ixed0QRYlUr6DI6+U1vj/rOfMP7wl84Z53+fMZXM5\";s:13:\"js/regular.js\";s:71:\"sha384-lS00sjHGt6pxefm2C7siOngllQ0WM3NoXEgwBb79KI3nh2iB5F/vkL7q09F/Z3tj\";s:11:\"js/solid.js\";s:71:\"sha384-ejND26kSb92qqj9cH70EMoR8jytCElYWiCB0v+JkXBz6+2ccBkNJkJZuMmrXY9L+\";s:14:\"js/v4-shims.js\";s:71:\"sha384-xCtgvUZSTFqAix3U6PrST0KLLMXPkzVPwXq3AbYkoKi81K4Ppryd5D8lUII1MeU+\";}}}s:6:\"5.12.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-v8BU367qNbs/aIZIxuivaU55N5GPF89WBerHoGA4QTcbUjYiLQtKdrfXnqAcXyTv\";s:14:\"css/brands.css\";s:71:\"sha384-+2AYGyI2bR10NExh4Lu/3NQmpNxck8EcRE7aATrMi9QQ9OAKQAQw1bcrlWkp0tdM\";s:19:\"css/fontawesome.css\";s:71:\"sha384-C1VkjHy10mh0wo7rz2xEDdqrfn5C+AJpaCpUyScFHzKb0mnAU3I//2RrdAE+LfQ6\";s:15:\"css/regular.css\";s:71:\"sha384-ZYhRqsbjqPY5BrYAS/7RLN0cbKU9T2MfB24Lb42Gyv2BHvW5sujo7gc5gXEReTq9\";s:13:\"css/solid.css\";s:71:\"sha384-yiUBjfJC2dVbhAEtVzEfH+R8ZQJ91V1C+Vtr1ZDTX+gUBZWrNyVrs/Nvc1fzi8GP\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-XBFwYq8dzGeC/rGkEgveavwuEU0D16mIKfWeCX6deYzhMUaa8GX4CgA5c/YHP2xo\";s:16:\"css/v4-shims.css\";s:71:\"sha384-C8a18+Gvny8XkjAdfto/vjAUdpGuPtl1Ix/K2BgKhFaVO6w4onVVHiEaN9h9XsvX\";s:9:\"js/all.js\";s:71:\"sha384-ZbbbT1gw3joYkKRqh0kWyRp32UAvdqkpbLedQJSlnI8iLQcFVxaGyrOgOJiDQTTR\";s:12:\"js/brands.js\";s:71:\"sha384-KASsDRWwlErb8dTf+e5TxRXMnbXrVlbPbn1hS5B/yS4vNsF7mHHO+Gw1bBDhcyOt\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-fHnSzPZE3xYvvXY0y51vln9J+Jd0eK4HughCkcA0NsBpmAGgU97n65RbDqUgnWf1\";s:17:\"js/fontawesome.js\";s:71:\"sha384-H4naMsxnUrIT8qihjWfwIKXi5biIYnqUsQ+vIJGZIKfA+7/O3FxgvMrdH77X+aID\";s:13:\"js/regular.js\";s:71:\"sha384-yUk5aOIIy62R2bRFbFq0+bo+ChWYs75cusETAJ1KYvEMRiEbQZmNU6u+PK60t536\";s:11:\"js/solid.js\";s:71:\"sha384-OSCcNUu98kEBVxq0vZaBr0wdmmd2ojuJwvWuSRKD0V10PWmvTetja8mxGfZm5PsV\";s:14:\"js/v4-shims.js\";s:71:\"sha384-/OZ1Lht4J1/FfstamqqFX1tF7PkDWDKbvat1bkWByC2KRJwGzm/H2bVuw8N4SD8y\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-TxKWSXbsweFt0o2WqfkfJRRNVaPdzXJ/YLqgStggBVRREXkwU7OKz+xXtqOU4u8+\";s:14:\"css/brands.css\";s:71:\"sha384-oRjDIXtfHT9YAjxHLAbf8PsJklTJN+dl7PmnAlOTYJhNAspi+/xgU4f12vi5xGzz\";s:15:\"css/duotone.css\";s:71:\"sha384-qrJ30c8jzW/3IOQRl4RddzzMsw3YIUWq5YhHW/8D8EJnS+5J13GpCGVEVI3ELc/W\";s:19:\"css/fontawesome.css\";s:71:\"sha384-k8n1hWo+b1vuRb6E3KATGC++lfNDnJTtJ6pS2BFF3tp/OshnO7uhzoOj/zJbGfwg\";s:13:\"css/light.css\";s:71:\"sha384-iUpVK/Fzq7teRSWAUmJsnlccV1OgC2fMpgreA8gxAm68UxbZPiMu3GP4IbKdKIUh\";s:15:\"css/regular.css\";s:71:\"sha384-QprxpKrx/cRYKXmWVkM97ert3857dCN6bbf6cRMELoa1+IYdsHoqweHwJksEfb0j\";s:13:\"css/solid.css\";s:71:\"sha384-uef1Ib3WhVuFbw7CZtyE+4IDCiKe1/bGU0vJ2naf8VQHKAeA67yU344LBk/H6nhx\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-GucW5chDMZnyGPL1yaIe1GOHu/X7ixbmNjinYEIVr8a4Q4ewZjgipeXJhVi1lsrd\";s:16:\"css/v4-shims.css\";s:71:\"sha384-58YCAaXf5eAJ+1vna1eEUPuU+Ez6EhIPG77PXmK7QciGJsDNAHt2D8ke3vDio+Hz\";s:9:\"js/all.js\";s:71:\"sha384-RiuSF/PBDHssKXqYfH16Hw3famw7Xg29hNO7Lg636dZXUg42q2UtNLPsGfihOxT9\";s:12:\"js/brands.js\";s:71:\"sha384-yrJPiY+1PdmFAwIfz5kqOJt6qBz7DmhXnjLZWLQ9FopoqnhHIBdOQk6hafYoSquV\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-bIg1sG9EStRr/9ohrrZJs0/uTEvUEEOO+NWuOAsIj3a1ZCHqvWUW6w975b4BSbqI\";s:13:\"js/duotone.js\";s:71:\"sha384-1EFXmt5rBEAK6aeEt/mZiYu0QhdFqz7oRm0Kc4xKyZ2IkrQYBc5F77PWXv3Jl4jY\";s:17:\"js/fontawesome.js\";s:71:\"sha384-P6BxA/EZmb6ypE1RKWOU6G8Ww/wI6w4R6uP6u9mkq3uaBehDQxHOLax3fLvDqkvt\";s:11:\"js/light.js\";s:71:\"sha384-08D3jBd9Co2q3IJB/9qnaukQ4ZhFWVLATRpNirJUQ+yQ/oUORDPfJ7Z2OWySf7/A\";s:13:\"js/regular.js\";s:71:\"sha384-zw99I3pdjnsTnY9W+2pz18pxMpOw12uAiVqYL4dZJOf0Lm8dio2v03Y0L2wzECI7\";s:11:\"js/solid.js\";s:71:\"sha384-Jr2b2cxzFQ84TxM+s7yh1jUu1f4FLCHQQDT3ZeBYZNQo+xvCw52PmB7GbC9yqSqA\";s:14:\"js/v4-shims.js\";s:71:\"sha384-sLzGuPzMXKEht2hBPBvC5ere217qvxFZ1AogesHLWdB5ojWBInm4wE4J+HV7PB6z\";}}}s:6:\"5.13.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-Bfad6CLCknfcloXFOyFnlgtENryhrpZCe29RTifKEixXQZ38WheV+i/6YWSzkz3V\";s:14:\"css/brands.css\";s:71:\"sha384-yZSrIKdp94pouX5Mo4J2MnZUIAuHlZhe3H2c4FRXeUcHvI2k0zNtPrBu8p3bjun5\";s:19:\"css/fontawesome.css\";s:71:\"sha384-syoT0d9IcMjfxtHzbJUlNIuL19vD9XQAdOzftC+llPALVSZdxUpVXE0niLOiw/mn\";s:15:\"css/regular.css\";s:71:\"sha384-rbtXN6sVGIr49U/9DEVUaY55JgfUhjDiDo3EC0wYxfjknaJamv0+cF3XvyaovFbC\";s:13:\"css/solid.css\";s:71:\"sha384-fZFUEa75TqnWs6kJuLABg1hDDArGv1sOKyoqc7RubztZ1lvSU7BS+rc5mwf1Is5a\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-zMDYkJEHc2iapAk7o9HXGGD5N2+GGhOFQPDdNTYvlcc0gBA5r7r5f0aSYeCvm0qn\";s:16:\"css/v4-shims.css\";s:71:\"sha384-/7iOrVBege33/9vHFYEtviVcxjUsNCqyeMnlW/Ms+PH8uRdFkKFmqf9CbVAN0Qef\";s:9:\"js/all.js\";s:71:\"sha384-ujbKXb9V3HdK7jcWL6kHL1c+2Lj4MR4Gkjl7UtwpSHg/ClpViddK9TI7yU53frPN\";s:12:\"js/brands.js\";s:71:\"sha384-c4QRk2vaIFBj+66H3IMCeLBpgmeNbFV8HqOs55qMib1v/dM3JXdodyctPNa9hTyl\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-sDmAMseQ6ZkNcFsP2c8NLyUmSqzUpn9PdoWqr/IP+mXZANSiuN9/09SKaEaMJ39l\";s:17:\"js/fontawesome.js\";s:71:\"sha384-/uNTArWag0fq+MOMnITxuc/uQTqh5NVc+1x0LO4xG//FFwUa8Xff8zrZXIpETdf9\";s:13:\"js/regular.js\";s:71:\"sha384-5FWE8IhPJgMtacw/tJgCapT/ag4ftBYmykFO3KUsozTQ9JKaQhH2oX7RZdCDyWxg\";s:11:\"js/solid.js\";s:71:\"sha384-dCJKkv4KgC8c4IlevkK2DC4yY+rQidnMOt91EmILDbdn8M6cdsjaUbf6awWnsCaZ\";s:14:\"js/v4-shims.js\";s:71:\"sha384-XrjUu+3vbvZoLzAa5lC50XIslajkadQ9kvvTTq0odZ+LCoNEGqomuCdORdHv6wZ6\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-IIED/eyOkM6ihtOiQsX2zizxFBphgnv1zbe1bKA+njdFzkr6cDNy16jfIKWu4FNH\";s:14:\"css/brands.css\";s:71:\"sha384-YJugi/aYht+lwnwrJEOZp+tAEQ+DxNy2WByHkJcz+0oxlJu8YMSeEwsvZubB8F/E\";s:15:\"css/duotone.css\";s:71:\"sha384-oRY9z8lvkaf2a1RyLPsz9ba5IbYiz1X/udoO3kZH3WM+gidZ+eELnojAqaBwvAmB\";s:19:\"css/fontawesome.css\";s:71:\"sha384-tSxOKkJ+YPQOZg1RZd01upxL2FeeFVkHtkL0+04oWgcm9jnvH+EQNLxhpaNYblG2\";s:13:\"css/light.css\";s:71:\"sha384-HLeT9I9TL5c2ujLOZhv6z58D+FdF5R//KTyhCOiYBp1ZX9ZEdaVKPxZmzPx/tMWY\";s:15:\"css/regular.css\";s:71:\"sha384-BPtrG4jSUTPogkW6mA5hAGjvJapJnnMa8tKHQOR9MnrINanXN/IGDInK/SngoAFb\";s:13:\"css/solid.css\";s:71:\"sha384-9mSry5MRUHIfL5zghm8hV6FRKJIMfpofq3NWCyo+Kko5c16y0um8WfF5lB2EGIHJ\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-9WuNcdGCglpaefA1oUecTWMQL/+LmrCJiJJM+pDHX+82lfkj1CKUYLc6DZJQ+1/s\";s:16:\"css/v4-shims.css\";s:71:\"sha384-/WH+7sthk7TduL5PHd16Jew3Hd7eKInsAclAq/MoZWeyR4bMgUj12MSN79PtHEjc\";s:9:\"js/all.js\";s:71:\"sha384-Z0e6PSokCQP510gixgZGPs+obVv8eogS/eS2+/7lLSMOfmLnWBgPQppPispQXGUM\";s:12:\"js/brands.js\";s:71:\"sha384-T90KA1rFqB4OFs7EjJ9EGjXJkOXPhELY4hLaFVnB0LaTNUFGn3QyzNJZh307KVVc\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-8g5Au/J6e7pPZjkCDisd8Jd9psYpdlosRUbac9lOdXAADXrNgc20T1Xc24eIy3I7\";s:13:\"js/duotone.js\";s:71:\"sha384-dkbWEvgccxMcr38iB9BWNiExUnolXcLY54hGUJkFUqThvx5XsvcEervgRgRWz5fl\";s:17:\"js/fontawesome.js\";s:71:\"sha384-bU46hq+Od2wfS4XGCT7Ab5XmYYYY8LURSiGsr4YLIrUWBPeImW/B+OkFEcHhOzuF\";s:11:\"js/light.js\";s:71:\"sha384-ipYj2yPBG2ozjlrUCd6AheWkvEpqcCQNY7yxX8wDoIJc5Lr1zVXAE4sKB3hVfjfT\";s:13:\"js/regular.js\";s:71:\"sha384-5CC2/v59nxbyM1595fgM84ERvZXK5WbpCnB9/dd1gTJc2LyitbiKhULkaiXZNj6V\";s:11:\"js/solid.js\";s:71:\"sha384-Imz7xdjp2/vTu6azMFMusPHfSLwcYmj5ZWzOXv3esrLD8IDP9AMA28bwpJZwaR1g\";s:14:\"js/v4-shims.js\";s:71:\"sha384-ZbnNry/TJ2Ald71QRyefS1elxArPz0oOfiNFxpfSO0Yb5lnnftVJMFbENL3j0hCf\";}}}s:6:\"5.13.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-xxzQGERXS00kBmZW/6qxqJPyxW3UR0BPsL4c8ILaIWXva5kFi7TxkIIaMiKtqV1Q\";s:14:\"css/brands.css\";s:71:\"sha384-pmyS4Hp0pc0tA0poF+AKYeURgyIgYLt12rD/6gLC98rTImbSYIe75vT2/3jK4zIh\";s:19:\"css/fontawesome.css\";s:71:\"sha384-O6duc3QftgMWW3awKiGYswymy288kVFZgGWC/4YCl48Y0codWJRgs8DA0N4dX/zx\";s:15:\"css/regular.css\";s:71:\"sha384-aDoEE1PtWF0YZqVk7el3O+QPApPko7v9/7VYyuzjhHWwJ3cmn0m7xE3/FkHSpPNT\";s:13:\"css/solid.css\";s:71:\"sha384-wG7JbYjXVhle8f17qIp6KJaO/5PsPzOrT76RgvdRGLHj0yXZZ3jg98yb0GNRv1+M\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-CFCaxC5Lp+1aYrNgJjxz8bNrgnzVPnSxma3pb+m90jym25B+q2vYd3JfLQR00SNn\";s:16:\"css/v4-shims.css\";s:71:\"sha384-KkCLkpBvvcSnFQn3PbNkSgmwKGj7ln8pQe/6BOAE0i+/fU9QYEx5CtwduPRyTNob\";s:9:\"js/all.js\";s:71:\"sha384-heKROmDHlJdBb+n64p+i+wLplNYUZPaZmp2HZ4J6KCqzmd33FJ8QClrOV3IdHZm5\";s:12:\"js/brands.js\";s:71:\"sha384-Ay9V1h0l5sywM7gJ5YvOc05QytfKqZAElRgqU5kPcIIUAUBqLOYwu9gnW6p5t/FN\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-xDU4X/EdF/mFSa0TktUKBTHd/td1gTc+xWNLKdYcvrAUZExjiWhDnrLM4lGkqzeH\";s:17:\"js/fontawesome.js\";s:71:\"sha384-4NJBLvz0eHSgtSVDb+VOLh4cxmVluIBqCaNw97NvJAo18r+qV9pze1g4YnhB/X6Y\";s:13:\"js/regular.js\";s:71:\"sha384-omrmE/gvA72r1j409JaSn3V6w5f7Mx7GZpjB8xqS4nLwGpT7Zj2obev62Y9QcCZr\";s:11:\"js/solid.js\";s:71:\"sha384-81RFXCmeESYg4G/uFGo6Tu/eeK3klw0oKItW3nPhi2BuryJcE4lkOkwWsW6jzoNz\";s:14:\"js/v4-shims.js\";s:71:\"sha384-CtI1i5e/58ZMUgZkT75wgboNZAbEXBNToPY17SfEmfyKvGuJW7DP418LdXkjI++F\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-B9BoFFAuBaCfqw6lxWBZrhg/z4NkwqdBci+E+Sc2XlK/Rz25RYn8Fetb+Aw5irxa\";s:14:\"css/brands.css\";s:71:\"sha384-e0CAD3LQqbxBCI1WW9pe35Vr+ogbg41axplGx9yY6Woaw6h+zHnB7v4sVuZjHDnK\";s:15:\"css/duotone.css\";s:71:\"sha384-jZslG/z2CMKpawOGi2BzAUH7QBRu5umkFNeP0Op1SZksaT8WGx5MuZazFfE/XR9h\";s:19:\"css/fontawesome.css\";s:71:\"sha384-eKHMjnfl7jrOmk1Fw4dpPDTetBHFOho47C/omrsmBVN2ii45aI8s97OUFVtGg1CR\";s:13:\"css/light.css\";s:71:\"sha384-N45G0WPo8CMcXE4y+hOnuWLp2TJxNbhk/YbM4GQEymB5fPGzOXVH+er/7Z15oBjl\";s:15:\"css/regular.css\";s:71:\"sha384-h1Eirl+AlKkBdUtIMW1hm36KarFrx3iEfjcnTYKeeUdZTOsT8hLDc0lnlNG2jPn5\";s:13:\"css/solid.css\";s:71:\"sha384-F78AVlY1oEzT5bXRSwVzraqWTcbpglP7ILEEE3rmu1gIfm/TUo5gpdN4YVfvp7Xj\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-ZFFudtU+0nvUFj6ogUZSspaq7QhLb6JJX6jSIu5UiZAbZMhnBJfNwZahptQ4MQ/i\";s:16:\"css/v4-shims.css\";s:71:\"sha384-He820UjOck3Qu+A0dH2+CmHOeYAYN0kqRW3s6hHC/Jzu8IXSeZF2pn+lgVpz4KuJ\";s:9:\"js/all.js\";s:71:\"sha384-RFburpZVVirucdjarLLIoBiT+LY5YuPB8XboZYWRuWpElr46csH7Ia2nsHfkfBZF\";s:12:\"js/brands.js\";s:71:\"sha384-bM9U2rf0yP/4jsztQkRVwJnqtVcLJzwAMaVgd4sfQYxxm0ru+TieQ4ZaxKW4vsyo\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-DuzRvwD99f8XqXEPIxkpB1F+Ik6c2AZMj6gWcEDwFUCAgtVSelRH9Dos4SMxw/+i\";s:13:\"js/duotone.js\";s:71:\"sha384-uABtWM9HIHso7RIYTkd4w0zB8IgL/hTcPNyYTVA62Qw0lK3umduLb+vIYtXCd6W8\";s:17:\"js/fontawesome.js\";s:71:\"sha384-Ta21ZAqXVyXVqLCnHENnO2ULnrJQzNdGFAbMR1nbZOSV7PcTcZVIWZJCCcRYy2Q4\";s:11:\"js/light.js\";s:71:\"sha384-+8Y6x3Roex77ZBdaQqtTN2QKu/TIOdzoswRYxryfW9ELmUxMTYLgzdz5nlA/3ndC\";s:13:\"js/regular.js\";s:71:\"sha384-sSHWg/dKYjGSJU6C17C2qGImASfPcJqy2BaW/iTzifkPJmzprIMH1tl4/tIbWq8M\";s:11:\"js/solid.js\";s:71:\"sha384-VBOdkc1roPM6EIGTBi2yraUNs04SZ9+TsLzF0vIecIKYf6oXYxAYgjzMpH8UdZYh\";s:14:\"js/v4-shims.js\";s:71:\"sha384-iwdWtJevtQK06+Bbqeb7Oo+osfnPQWsHQWR+5SeND0soWVUGjfyRC2XdttrYI2j+\";}}}s:6:\"5.14.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc\";s:14:\"css/brands.css\";s:71:\"sha384-MiOGyNsVTeSVUjE9q/52dpdZjrr7yQAjVRUs23Bir5NhrTq0YA0rny4u/qe4dxNj\";s:19:\"css/fontawesome.css\";s:71:\"sha384-PRy/NDAXVTUcXlWA3voA+JO/UMtzWgsYuwMxjuu6DfFPgzJpciUiPwgsvp48fl3p\";s:15:\"css/regular.css\";s:71:\"sha384-e46AbGhCSICtPh8xpc35ZioOrHg2PGsH1Bpy/vyr9AhEMVhttzxc+2GSMSP+Y60P\";s:13:\"css/solid.css\";s:71:\"sha384-TN9eFVoW87zV3Q7PfVXNZFuCwsmMwkuOTOUsyESfMS9uwDTf7yrxXH78rsXT3xf0\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-PB7dcmSOBXciTYYzTvxdvcCEy4k3woMwwVAtsIA3LUQyKW21C7UL9EcGtd6IRNLc\";s:16:\"css/v4-shims.css\";s:71:\"sha384-9aKO2QU3KETrRCCXFbhLK16iRd15nC+OYEmpVb54jY8/CEXz/GVRsnM73wcbYw+m\";s:9:\"js/all.js\";s:71:\"sha384-3Nqiqht3ZZEO8FKj7GR1upiI385J92VwWNLj+FqHxtLYxd9l+WYpeqSOrLh0T12c\";s:12:\"js/brands.js\";s:71:\"sha384-V7gsTxvUZaeC6NAsCa24o3WvPOXwSsUM8/SBgy+fxlzWL3xEGXHsAv2E3UO5zKcZ\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-uMs7U5rgbKM9mJ/p05oZ+z+8uK1lwLhl96KWxP5odG0wm26IfhzgKQ0ktZnc2PYP\";s:17:\"js/fontawesome.js\";s:71:\"sha384-DNo9bmYZCHLtp0n0l0XA2UsoRHX1nx38aRP+p9yoP5A8kVTfeWG3aySMOq5FD/v3\";s:13:\"js/regular.js\";s:71:\"sha384-zHXcIX0meH+eFgqCa9QdLtYfc+0p7KcF4fVB+gMVFjV6rzYv+LxSIuF5i2eGVDlt\";s:11:\"js/solid.js\";s:71:\"sha384-4RG3cEPIlCBy6VNzxM9ZoEwZW+65ed5JDOfaJAnQqwV6ha/jZDJTXjFmvjFM4bk4\";s:14:\"js/v4-shims.js\";s:71:\"sha384-g+ezV6Pq6549QkJkkz2wmW/wpazNaliTdSg/HX4bKsQ7S8cfyMOiyAfzfWPtlVR9\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-VhBcF/php0Z/P5ZxlxaEx1GwqTQVIBu4G4giRWxTKOCjTxsPFETUDdVL5B6vYvOt\";s:14:\"css/brands.css\";s:71:\"sha384-DkuHshSFBB5Ozmaoq36ICABPCsIIbamipzuH7NO0sxDIDrJloLD43yBzNLI3gxS6\";s:15:\"css/duotone.css\";s:71:\"sha384-QRFqAT1IRNAzMGALiXfanFtQEBoLDPPh1vnrMbxHa+UeJkCTHO3TpYXHQ+GK1pKg\";s:19:\"css/fontawesome.css\";s:71:\"sha384-CAxg0L30Vie2vI3AniQ4UA+pSswoJmr/MK5Dl5DP9YlE1nzJn4z5updw5S3i/Nsn\";s:13:\"css/light.css\";s:71:\"sha384-LmKkPHDqucxgmrtLKWrMGZc5nnHQYAdFkSzMtl1OcvTZn4pebmVziSZPtp27MA6u\";s:15:\"css/regular.css\";s:71:\"sha384-izRgjQadEFrlAsdFZjlQ4v6Ff2E0R02RwYZwdL8lrt398rQmLNOFYYNk9qQoqjDP\";s:13:\"css/solid.css\";s:71:\"sha384-qJugmlTDyF5CNuv00JB+04BCmCVi5C2ZZhsIVMX0wxWr7U3ZuOsmO+nOLtoTxeWG\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-EjLtrKO3gucE2cOzLw8A5aJpQ9oXEJTxlTkbLrrL4JR7xGLPI8B1fyK3ygNxeLxq\";s:16:\"css/v4-shims.css\";s:71:\"sha384-oydBLEZZlqJqf0OWwXyyj91mRqrL25j/VMAvTl0BA0iIMoJGDTSksMDnqkl+TWLA\";s:9:\"js/all.js\";s:71:\"sha384-8nFttujfhbCh3CZJ34J+BtLPrg9cGflbku3ZQUTUewA7mqA8TG5Uip4fzQRbERs0\";s:12:\"js/brands.js\";s:71:\"sha384-9112PiGcvkxlUNBecZ0rk0c6zEGUKlR/enlHdLy0Xu42kfHEbIKsFVBsmEn+6cEt\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-9rbnCwKDHzpLDHYvYRqRWcyLZc3anAu+oe1dRxPOk7RcqBzjAv7CYTvAQJGkUNXS\";s:13:\"js/duotone.js\";s:71:\"sha384-HFlrQxjzjMUAiYmFuUKrkp90VMEpD/dpb8unLEWH5QXnUs2xHw5zd8aiztrPBLbT\";s:17:\"js/fontawesome.js\";s:71:\"sha384-XULY2W1C7bGq9gruRvsk8Zyhq33b1/TgBBKzJ+8dzWkJm0kObgcry2qU+Qf+HOZw\";s:11:\"js/light.js\";s:71:\"sha384-a8Ul+Nmi3glFYXvks3ShdxGHyk09LsZ3+TIjDr2vj9lMx2F29TqTJm7U0EutxFdH\";s:13:\"js/regular.js\";s:71:\"sha384-B8V2/SCNt/naDJB0LkeljUBBYYhGFm/rUVnNsFYlutzbeSTTzVEqxRo8SN3tuHSl\";s:11:\"js/solid.js\";s:71:\"sha384-CjNAVlgtLE9uQuDgWphA+b5vXjcy5spSSezhnbGWUZl0VDkAxzeU8elFOdDs4qaU\";s:14:\"js/v4-shims.js\";s:71:\"sha384-kN/8Lc85No/I30OsF5JSmBzc0W1W0AvgBJGA1eEtVSfaiIeg8oPTJ8CerHqDREVn\";}}}s:6:\"5.15.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp\";s:14:\"css/brands.css\";s:71:\"sha384-/feuykTegPRR7MxelAQ+2VUMibQwKyO6okSsWiblZAJhUSTF9QAVR0QLk6YwNURa\";s:19:\"css/fontawesome.css\";s:71:\"sha384-ijEtygNrZDKunAWYDdV3wAZWvTHSrGhdUfImfngIba35nhQ03lSNgfTJAKaGFjk2\";s:15:\"css/regular.css\";s:71:\"sha384-APzfePYec2VC7jyJSpgbPrqGZ365g49SgeW+7abV1GaUnDwW7dQIYFc+EuAuIx0c\";s:13:\"css/solid.css\";s:71:\"sha384-yo370P8tRI3EbMVcDU+ziwsS/s62yNv3tgdMqDSsRSILohhnOrDNl142Df8wuHA+\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-wvKQCF3aHjf73vG90/oO/tFarRthMbxfbW1DeHM+eJJYWmiFLJ0DyCzE1aSFHazB\";s:16:\"css/v4-shims.css\";s:71:\"sha384-WCuYjm/u5NsK4s/NfnJeHuMj6zzN2HFyjhBu/SnZJj7eZ6+ds4zqIM3wYgL59Clf\";s:9:\"js/all.js\";s:71:\"sha384-9/D4ECZvKMVEJ9Bhr3ZnUAF+Ahlagp1cyPC7h5yDlZdXs4DQ/vRftzfd+2uFUuqS\";s:12:\"js/brands.js\";s:71:\"sha384-GUtlu2Qit8cdodM5DbKnbDIWFJA8nWCVEwETZXY2xvKV1TFLtD/AL+bCOsPyh05M\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-sefi04js7ZytQojQsuOy097ewgefakplyIWjkCI75Wz1IxHB/9NAAinmgLG3uDt/\";s:17:\"js/fontawesome.js\";s:71:\"sha384-v0OPwyxrMWxEgAVlmUqvjeEr48Eh/SOZ2DRtVYJCx1ZNDfWBfNMWUjwUwBCJgfO4\";s:13:\"js/regular.js\";s:71:\"sha384-i9Vys31h0tPXNeAe12HKp4zkBi0S3LAH4OGYRSWKSrdnPYTS4pQgCc/HakrenJBh\";s:11:\"js/solid.js\";s:71:\"sha384-oKbh94nlFq571cjny1jaIBlQwzTJW4KYExGYjslYSoG/J/w68zUI+KHPRveXB6EY\";s:14:\"js/v4-shims.js\";s:71:\"sha384-IEHK9LKBXJdi7Y/gik7R6VYPuwx8hMiwQuaOh7BQUQ9rKmWr2N04KYFdmt5Xi0qG\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-9ZfPnbegQSumzaE7mks2IYgHoayLtuto3AS6ieArECeaR8nCfliJVuLh/GaQ1gyM\";s:14:\"css/brands.css\";s:71:\"sha384-YgEKO0tR8hhGPO9Dv3YGK+GstKp44//D72dbOA0oTX+7myWawnkifErid6FIpP9W\";s:15:\"css/duotone.css\";s:71:\"sha384-bXXzjCj9fg9FACS6tpRWhBsNqQ7j7swH/U3MKTJrZuRbF3ktmj9g/lie7L3CNSTd\";s:19:\"css/fontawesome.css\";s:71:\"sha384-RFOcGND+1HYm6OyEAF5WKkoZnwv/cXQpCX6KduKC1vAKAoohkNYWNPhkx4fsH9Fn\";s:13:\"css/light.css\";s:71:\"sha384-yWmEVLm9kM0L2w+XPDQQUv6tARNHEYPPwdDplMiVced5iOVoiUIToRveagZ56DVa\";s:15:\"css/regular.css\";s:71:\"sha384-pvlGSUiPzTZa8YsqGs23BENlf3D4ddnLRdl2q5R1ekGw7nnWJZ0AK74DUr0mzLTH\";s:13:\"css/solid.css\";s:71:\"sha384-LRz1HmzqffP7wO7piC0QSObi89cOdpFP7qMIx/UZ+qK2TdoDBdl+LidxFVnYu23p\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-mFHdQxElacASluqApikB6+SUGnAOWouxc19KqW5eZGoZ+b4A/Cj6pMUCGn6g1uZ+\";s:16:\"css/v4-shims.css\";s:71:\"sha384-r35xeRHwDKxzFjeApFdZuwo9D/nV4p0BPL4BxIVmsyKQGWWBaxG59Gr/9x7IfVog\";s:9:\"js/all.js\";s:71:\"sha384-Vipr9QSlUeD/qnhkau6GBnZnUmVkbaRZ0PgB1KjvWa1UoNBKnuzg1TgbJJn2a12T\";s:12:\"js/brands.js\";s:71:\"sha384-rdZ4AVYAMfVJRjRJzozK2JY6LOdLxKdUkHuegulAuMdllLH7M9AllgBLuYmBe+zm\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-qgGl/EYa0JYIveAO7M9W/hshMqlMyo0G/QHio/5D5r1ZbZxAoqcTTReeL4gRrL4m\";s:13:\"js/duotone.js\";s:71:\"sha384-4qqOVq7ZvSMSgZij30G8q1kOs7pBiAWrSVKqWRv32l99D/qqXlMpFQK8wLSfeQEZ\";s:17:\"js/fontawesome.js\";s:71:\"sha384-whiLNjPVOuBfSNjL/tLtRWANHP97vxmZ5OoUK496MOTzH07UdmxDLsnSBgvvjLNf\";s:11:\"js/light.js\";s:71:\"sha384-AEYbWLXnCyDCeopMCsF+A4qHLchpzJ4wMnZiE74Bcp6qLWwXIJCWY0ASqAf0qYrf\";s:13:\"js/regular.js\";s:71:\"sha384-wM50oZlS/21q6M6tlw0EWan+0yFpuRC/PrPeimdGxjCjfx45F0x3NZggS5uFp5uv\";s:11:\"js/solid.js\";s:71:\"sha384-PezVa2U3+0USHwNA7bgvfA+uSS1IPVdTat51a5IgvNGHUJjcvsj+TheZ6X30JybM\";s:14:\"js/v4-shims.js\";s:71:\"sha384-MafE1kr6MZ6PhxNeH0/kvg7f5ramk1tE+y/dBi4C6WgxaKU4mNGRxPNxcEZ5maAx\";}}}s:6:\"5.15.2\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-vSIIfh2YWi9wW0r9iZe7RJPrKwp6bG+s9QZMoITbCckVJqGCCRhc+ccxNcdpHuYu\";s:14:\"css/brands.css\";s:71:\"sha384-RTi1U6SIW2G3kUi5NslKQjA34F8CsQCVduJO50jqtxhR2KY++LR7KZS2886EwXrk\";s:19:\"css/fontawesome.css\";s:71:\"sha384-Hx1dya9ptAdKu2hLNR5C2Cwgm+wCfwD0VMGE6jk5OUxxa9I58YfxOCwEtRog+3wk\";s:15:\"css/regular.css\";s:71:\"sha384-GMkIgTgosuQEt2PEwBHI7MMRsrQplN2sT/7bzPOIxG+Hn37iTlZXFb37m6uE+iHj\";s:13:\"css/solid.css\";s:71:\"sha384-6qO6EOFIDfvv6uzAzozX/BvMu/qkIIHxWYOVMjpVjX+NtPuNyd3YiOEflKIIV2ka\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-6iJDq4HKs21oqDV0KkGhh5uve3aJBXwTX0ACa8Fp5Sx7fcZtIumvT+GSzqSEsceV\";s:16:\"css/v4-shims.css\";s:71:\"sha384-1CjXmylX8++C7CVZORGA9EwcbYDfZV2D4Kl1pTm3hp2I/usHDafIrgBJNuRTDQ4f\";s:9:\"js/all.js\";s:71:\"sha384-vuFJ2JiSdUpXLKGK+tDteQZBqNlMwAjhZ3TvPaDfN9QmbPb7Q8qUpbSNapQev3YF\";s:12:\"js/brands.js\";s:71:\"sha384-CFHIjJ6e4s9fugmZkgMS+xAN9t3pMb8WzxVLSL61rvRx/NfBorLHHVF+7/xxhpll\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-SY45zU2Pf71PV9B/kvEgK9jzpEbe14MiprEwrg1VcbXdBcjXbNTPwoXfp6A+ntJG\";s:17:\"js/fontawesome.js\";s:71:\"sha384-PIP1h/CVyNo59Pr+vM6s86Zkm82HEv890eKMTpB5eqJZFZQwZuMwf73Sy5SzVrK8\";s:13:\"js/regular.js\";s:71:\"sha384-ghS5pTGfZccQRYN4cnBH4kBWGY/ePY4j4VKfFliJmM6ZYomFMIo462PxXa2RGqWR\";s:11:\"js/solid.js\";s:71:\"sha384-rKdfCFMYG2O/K+5WQDPmcKngEtAvqyIxYkazidXjp48yEiCcl//F6lxZ9cZ8MhM+\";s:14:\"js/v4-shims.js\";s:71:\"sha384-VxtQ3wW8qt0QTDld0MGEB9IMEOyCOtvOXC7I0JU3T01V6NR+C6MP5HxC+tGNkhdV\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-yJpxAFV0Ip/w63YkZfDWDTU6re/Oc3ZiVqMa97pi8uPt92y0wzeK3UFM2yQRhEom\";s:14:\"css/brands.css\";s:71:\"sha384-rsNdgxJGzM0RuTegPn4p1eHXocyvt3ZbnTifPXmOewdRLCOqzP22d/M+WxbRiwSN\";s:15:\"css/duotone.css\";s:71:\"sha384-E4/odus3ylondNThYB3uIGSZpewOhvhh0QD8x2p7S0ot6p/JcbVd//lr7cMEUIBc\";s:19:\"css/fontawesome.css\";s:71:\"sha384-RZW433tEsVW3OLEaC2n31z0V1DmyQdjrwNKMRLBjyZQ7r4RU0PxYhkvjKCsZMCO3\";s:13:\"css/light.css\";s:71:\"sha384-oJib4m7hS3ZSiUXjFvObb+ZFf2AGOBOUX+MFk3CuBZwz8LQSe3d3EgZHHJBkJGXT\";s:15:\"css/regular.css\";s:71:\"sha384-ffFT2jJN64hGajTqkZsA2KE2SDBO2Gcmb0wr10fRLpKNDWYcl3M3KsLuzQHg5QAh\";s:13:\"css/solid.css\";s:71:\"sha384-PfqDBw8PmSrNcYq7F4SvYoZekYP2x84SYAyG41rncZdySTjSS9eWEE7ynvJRElQY\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-MeQL8xjLhct6yZa8AXEQOD0yWeV925K9YrlcgspMC+IdCbI3q1b8B7VX8NS6N3lS\";s:16:\"css/v4-shims.css\";s:71:\"sha384-vfegZgYJmcP2K/VrhAwtTtU1OgvF83Y8zoQ524YvQFIGowI3tr8C6wvpWUsSLUZA\";s:9:\"js/all.js\";s:71:\"sha384-ZbBwfM248+qoG5GJvuV2PmK9gvlW3dXpgC/jeIn45pWWroL3v+5K1ZAth+gs165y\";s:12:\"js/brands.js\";s:71:\"sha384-K53M8ZRlon+Wd3MVzcIEU1NZXEh4h98NnLM8WZ/7E98pbg0J1q17tKGgr45c5qCs\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-whZrbu3lLf9+EK7QxSHsdpAWM0drsjefOTFm3zfcUhZSInAwLaIrdOd2Qd8MKDMW\";s:13:\"js/duotone.js\";s:71:\"sha384-nTarcZNLMStpbHz1QpoaqVDyKoUrzncdV+zZ040hkinCtVKl8gTXSiyUM4h0K48M\";s:17:\"js/fontawesome.js\";s:71:\"sha384-dy2wSTcBbCGnFNjThZw/FfuNbPeoGoOSWgX7HmvH3PKcJ0Se3w3CZnalamfRuLpE\";s:11:\"js/light.js\";s:71:\"sha384-gL1IbgNyLHskDPg9uinrWBfxmDsla3neHzcEAIjbzQTx6W69Jvs9S/fRBXUt6FbW\";s:13:\"js/regular.js\";s:71:\"sha384-9JMXUFvwOD5rSQZs74FEC4SsybjccRbbwK7iiQiriFSd4sPr7pB7/ghp1KZH7tCr\";s:11:\"js/solid.js\";s:71:\"sha384-oVJ5+ellTPbci7MOrfl59xerw0M0RnQEGG0jx/JlNyOpkvrXHaZUCfKJUs08+gVi\";s:14:\"js/v4-shims.js\";s:71:\"sha384-ht5Q/pi1VU6byhn9MctthIZ2kSBqK5GhhR9gnTzPM+BJlAyCymRS3xx74c9twxdh\";}}}s:6:\"5.15.3\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk\";s:14:\"css/brands.css\";s:71:\"sha384-V5Z1KgRRJyY878qCx7+zUeTDm0FgjoYrbmSortFqRPGz+Ue6XDe4uIiMqB3tB/wd\";s:19:\"css/fontawesome.css\";s:71:\"sha384-wESLQ85D6gbsF459vf1CiZ2+rr+CsxRY0RpiF1tLlQpDnAgg6rwdsUF1+Ics2bni\";s:15:\"css/regular.css\";s:71:\"sha384-Dn9L7vwedvmbdep+J8U5Zbrp+ES46dt8pm8ZMUu9iOR9isC4+Y/KP1h4StrDd/F+\";s:13:\"css/solid.css\";s:71:\"sha384-LA8Ug4T/nhVkyhrSmSirsoAo9iDrBk8E7U80aSPeD+w3vO8PzOJIS6agGcbIwwX0\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-C4KLoR3asMHYArL0nLQXEaFZIFfRMiV0Ul0DvsMfSMZ+YLJwFu0Rpxix+EZwqxOy\";s:16:\"css/v4-shims.css\";s:71:\"sha384-C2B+KlPW+WkR0Ld9loR1x3cXp7asA0iGVodhCoJ4hwrWm/d9qKS59BGisq+2Y0/D\";s:9:\"js/all.js\";s:71:\"sha384-haqrlim99xjfMxRP6EWtafs0sB1WKcMdynwZleuUSwJR0mDeRYbhtY+KPMr+JL6f\";s:12:\"js/brands.js\";s:71:\"sha384-oEE/PrsvhwsuT1MjC4sgnz39CQ84HoPt8jwH0RLyJDdDOKulN+UEbm9IgJW0aTu5\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-OwOgf6Oss8Oh+cy6VnIGLlcyMhaaOPN+3gyLv2UyvjybuPrTNNgJljGYEAqSglUM\";s:17:\"js/fontawesome.js\";s:71:\"sha384-hD97VKS04Rv8VYShf782apVZOVP6bVH/ubzrWXIIbKOwnD6gsDIcB29K03FL1A9J\";s:13:\"js/regular.js\";s:71:\"sha384-bPKzNk+f6IzEi89cU+jf3bwWzJQqo+U1/QYUijuD7XD9WO3MSrrAVVEglIOCo6VD\";s:11:\"js/solid.js\";s:71:\"sha384-9xA4r2/2cctd+IZZKLvI1hmeHZ5Yp8xXkS6J8inDtdyZCqhEHVcTGmSUCbNED5Ae\";s:14:\"js/v4-shims.js\";s:71:\"sha384-oJX16kNznlRQV8hvYpOXlQKGc8xQj+HgmxViFoFiQgx0jZ4QKELTQecpcx905Pkg\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-iKbFRxucmOHIcpWdX9NTZ5WETOPm0Goy0WmfyNcl52qSYtc2Buk0NCe6jU1sWWNB\";s:14:\"css/brands.css\";s:71:\"sha384-GTxp/8UKFkexlguDtPsFi90d++F9f26nZCM99OSQo69514FK7Of5mgM9Efhs5O9L\";s:15:\"css/duotone.css\";s:71:\"sha384-nuPd13VLdsw5iBtqelv9tQ6l6+CteSUrmoT5enzHVJodx7WdNUYXNwgVpA7bgsXn\";s:19:\"css/fontawesome.css\";s:71:\"sha384-DHjwMcq12OEB4DQ+qulZDDroaXZqm7h9V6AjiP/RuUF8NhxUa8x6UWdv1AeZS+90\";s:13:\"css/light.css\";s:71:\"sha384-IvEgf1JJYgCtB5fP9nmT3uC7DY96POpmhUjo/98B8FMju1w295nj5yGBfwgD3MYj\";s:15:\"css/regular.css\";s:71:\"sha384-Z3GHSXKByZgv1Ri9CiFq0jYUQ982JHZOOg4awUHcuVBjTxwNd+PVQO1/PSwChyzK\";s:13:\"css/solid.css\";s:71:\"sha384-Ymp/JSUSR6EuZ4KjxcliW8lJ7wkYBR6oasX7EMi6SG0QBPmNUDAEG9rd7Ogy0Ca/\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-n/+zO4Fk1/R4EL7q+xf44zBEgvFziVgA7BUNwfjcGjHq/X6U0v25ESHqN/l5Wprm\";s:16:\"css/v4-shims.css\";s:71:\"sha384-yV4xIIsecn1iqxJy3IC5YyRSLwtkkFuOvfPvj1hGH5NLLej9Cum4hPOUL2uQYfQ6\";s:9:\"js/all.js\";s:71:\"sha384-OF9QwbqmlzSPpIxe2GYS8lkGFyaFfrgUPD2J3qj8zGVps17Y/x8EK2U8PEl6UrpH\";s:12:\"js/brands.js\";s:71:\"sha384-5u0zCiPDAEBQPvGxnai1VRZiSs9yQmyspSLrg0Fc7ru5CeddU1cef/24itMCpcWb\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-W0jz7GGBNDbeSyOhqqJrtOVDFLX4Qlqm/5K4RqM9ZpPIZL6tmDCMkEIheypFOiSK\";s:13:\"js/duotone.js\";s:71:\"sha384-rutYU6OuFfIS5MmBE4wrpMhP633bNlRHqn/SFpcetMTKr+rsBxnoTd80mkHI7wum\";s:17:\"js/fontawesome.js\";s:71:\"sha384-hwdDrjZFQbBwoFcHZZ/6e61XHiwY9csS0Wxi8i5jUgTurxmYITntaGLFYCssX7By\";s:11:\"js/light.js\";s:71:\"sha384-soVEahH07bOeX1Nlhdi4VQ+yvDpIGN9A/qbzm/PgfDrpvh7AaCTyMkQNk1spjHbf\";s:13:\"js/regular.js\";s:71:\"sha384-GR++czVV+1briVrgT0SHxwKuKqqXqfkRb2NxZ8O4rad/c/iKIn85PDSaZQ3cjiAZ\";s:11:\"js/solid.js\";s:71:\"sha384-JwTquvZ50ZD4wvDw99MHsjx621x02jCoiXBKy103wTwDMBbDLmhRcCV4v9mq5CV4\";s:14:\"js/v4-shims.js\";s:71:\"sha384-xczhE4W0SRyRFalFfxUKqclGdqLDVnc/F118WebJIQ/QyS3XKXIHXTieQKG1rG/+\";}}}s:6:\"5.15.4\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm\";s:14:\"css/brands.css\";s:71:\"sha384-S5yUroXKhsCryF2hYGm7i8RQ/ThL96qmmWD+lF5AZTdOdsxChQktVW+cKP/s4eav\";s:19:\"css/fontawesome.css\";s:71:\"sha384-jLKHWM3JRmfMU0A5x5AkjWkw/EYfGUAGagvnfryNV3F9VqM98XiIH7VBGVoxVSc7\";s:15:\"css/regular.css\";s:71:\"sha384-e7wK18mMVsIpE/BDLrCQ99c7gROAxr9czDzslePcAHgCLGCRidxq1mrNCLVF2oaj\";s:13:\"css/solid.css\";s:71:\"sha384-Tv5i09RULyHKMwX0E8wJUqSOaXlyu3SQxORObAI08iUwIalMmN5L6AvlPX2LMoSE\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-meSUsKN46Q06zfndZ6zDskLd5vJrCPwgb2izpfSMfWpQLijQApceQWIsbpLy2lAF\";s:16:\"css/v4-shims.css\";s:71:\"sha384-Vq76wejb3QJM4nDatBa5rUOve+9gkegsjCebvV/9fvXlGWo4HCMR4cJZjjcF6Viv\";s:9:\"js/all.js\";s:71:\"sha384-rOA1PnstxnOBLzCLMcre8ybwbTmemjzdNlILg8O7z1lUkLXozs4DHonlDtnE7fpc\";s:12:\"js/brands.js\";s:71:\"sha384-xf4z6gHzXeY6YwFJm8AKcD9SSq8TsfF4+UJj1JxzwQHk+VNATxkknGEzmdtYV0w1\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-b4+d5l6vwWgdPDCbk4SG+VPRplFp3JtWehGqKvfat/MWON5/PSWvf0l89dpfUDUG\";s:17:\"js/fontawesome.js\";s:71:\"sha384-dPBGbj4Uoy1OOpM4+aRGfAOc0W37JkROT+3uynUgTHZCHZNMHfGXsmmvYTffZjYO\";s:13:\"js/regular.js\";s:71:\"sha384-EEuk6Tk/hsJ0IJMUp+btTmHLuWPGGIm8I3xmxRawuWaY1xqWEm3EKVdnHNlYX+6t\";s:11:\"js/solid.js\";s:71:\"sha384-/BxOvRagtVDn9dJ+JGCtcofNXgQO/CCCVKdMfL115s3gOgQxWaX/tSq5V8dRgsbc\";s:14:\"js/v4-shims.js\";s:71:\"sha384-bx00wqJq+zY9QLCMa/zViZPu1f0GJ3VXwF4GSw3GbfjwO28QCFr4qadCrNmJQ/9N\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-rqn26AG5Pj86AF4SO72RK5fyefcQ/x32DNQfChxWvbXIyXFePlEktwD18fEz+kQU\";s:14:\"css/brands.css\";s:71:\"sha384-Q9/9nfR6hUHbM3NjqxA59j5l/9c23JjwDDuPsV5SKplBvgLpFDtJmukyC2oCwp28\";s:15:\"css/duotone.css\";s:71:\"sha384-Zi3Yce9z7/mhFiZHlM/DEBTnheymZyqrjMoWYPP8xtNCl+LtJKnaJ0vaGnPfqc/i\";s:19:\"css/fontawesome.css\";s:71:\"sha384-ig3RKyui4sECvuz+WE8EmFYy7sjRvEvy82mmhfV7ljRieb+0f8eEZKxHv2KC0+io\";s:13:\"css/light.css\";s:71:\"sha384-zCLzLBaV9kpBZtwZ72K00PI4UjqXZhrzMeVtYGOOHqL2N5PXSVw2MtJjaWTKYDHW\";s:15:\"css/regular.css\";s:71:\"sha384-sDvgA98ePLM7diZOYxIrDEITlUxoFxdt0CPuqjdLr/w62pPuOc73uFoigWEnVpDa\";s:13:\"css/solid.css\";s:71:\"sha384-2aj01VFITmYatwqdIKc7PHVmhLqFnnkVCilBk0Uj/fGoczNJXKvV45XlyHr/HU9g\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-cHJCnE8H1fC+puOpWCd6OSOmJ1q8KxWtIm/JUpb9705KggGjyKbMzryJWJDw2OPb\";s:16:\"css/v4-shims.css\";s:71:\"sha384-sKQhO4q55X7e4nIIO+wnutVfpIITv8+QJG6hE15hThUjV3ssIxUGT4VAoAGYmOU5\";s:9:\"js/all.js\";s:71:\"sha384-8nTbev/iV1sg3ESYOAkRPRDMDa5s0sknqroAe9z4DiM+WDr1i/VKi5xLWsn87Car\";s:12:\"js/brands.js\";s:71:\"sha384-MwpSaMFXAxVGLfxKR0S/SL1BvfRLmlowKeqIE/yF7uW5ax+r1fqRs12asOCkF9Jf\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-my7QwPFkgZPqsrDx/vNCyAMQw86Ee5ZUeCUBA7CF0l9rWFcxoH+h+NdSGyYBh2pq\";s:13:\"js/duotone.js\";s:71:\"sha384-AFpIAPhppteteZyLTXU8oPEbmuNz5WwwWSVAKJxuEn51LibO/iPZ+fC5DzmLJzoo\";s:17:\"js/fontawesome.js\";s:71:\"sha384-RTs6cAeLGZoCPlBxXNxYfQnVIrvTagXGxIhrXFjWgp4i4E5urdGFLlkfbsk1Nd+L\";s:11:\"js/light.js\";s:71:\"sha384-6EhWHErkaXt19GTK7f+5rRc16ekdzvItcFycGZi1GS/AycADXj7L2tkZ9z2O71ot\";s:13:\"js/regular.js\";s:71:\"sha384-WWzdx7E114gkDQnLVS/7s5WUTa5KQUqY5D8LGqBB7y132sxhUbrIHfqde9aenKnJ\";s:11:\"js/solid.js\";s:71:\"sha384-DfpPYefTs8qX3aeMuUJxalewnmVXDDtxcIJFo+Bz1qrNTaoEwMIaZkfoWx404GvG\";s:14:\"js/v4-shims.js\";s:71:\"sha384-9lueRrgA8PnJBSmeS0/jHPFpZZ/hC/7n/XNQhCroAsZSoTtaEj6Q+ewHcpgFPqFw\";}}}s:11:\"6.0.0-beta1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-QTEmscQJYWW3qGP+JMq44fmHSM1SbRIn3hxdZ0RBhX7yzbDOmdhCzVDY/nCs7Yfh\";s:14:\"css/brands.css\";s:71:\"sha384-YxspAfDWGMmVGaoWFDjr/ceg8QdLKNj76+YDQ3iXiX1d64PMg/rVRUQMIcd7loDR\";s:19:\"css/fontawesome.css\";s:71:\"sha384-Y63uHbYQVeMm+hkTj/YJpPSWvwA7maoOgWIcH/L/Zil8zxKQNclQIgNioLyE+zQT\";s:15:\"css/regular.css\";s:71:\"sha384-3+YTU1oGJl/DJPoU+JvGaD8K0waHM6gIPSWeabncnJ1y/LzxnMdPNvXxvbJtzkH4\";s:13:\"css/solid.css\";s:71:\"sha384-SVoL9P0p4yDjJ7K7qukXf8FBr4TcwUEZpvnQv80juxlb+QtrhT0zH3Gidw6aACkN\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-bhQY/O7CPf/LJ1fFQ19Hb4zwFDg7vUCZT9GLZM4RVTzxhZCINjHGSM7VaB36hnHe\";s:16:\"css/v4-shims.css\";s:71:\"sha384-4q5P4wLQvP0vMZgsfSOPe2qSqfL+Y76J/5hi9QW1QqtZ0qdgSrcFRIv5MgSNtFX4\";s:9:\"js/all.js\";s:71:\"sha384-s6zGSTvDy4KZ4ncPlsj+2l4ATGBt+gXsKFfd4lR4QKFl2RgB4iOoqZzDkRqndbvR\";s:12:\"js/brands.js\";s:71:\"sha384-gksSOJLGNOMoFqSuS5Ki/PIhYoVzeS8bWP7Gg6b/6gY3FXNGW3ZwRY12rkFGpvz9\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-JsmVGsnClQ/8mX7vDm+8UJ9XHlqIuwxPIKrIkpXt4mJZiaeCzg/uXxY3OjB7MajC\";s:17:\"js/fontawesome.js\";s:71:\"sha384-PkZHTzZps6BUB70Jc6Ujwh17lPpgjVJlG98uCR+Dg+bsDNAHk7UbcsVq9pUY0QM5\";s:13:\"js/regular.js\";s:71:\"sha384-i/4zUQF6PMLPil02YpE9smRx7XTQ0/bwaSlMl4QZRk0yFj0PCJqkv231+5hjbcsq\";s:11:\"js/solid.js\";s:71:\"sha384-ufQzc6WFPbylIrm5F6yJOtKS4KCrT6hoEuGPNEMv+9Y2ZVmEC0Jt5Tqf25Q2hOa8\";s:14:\"js/v4-shims.js\";s:71:\"sha384-3dTEd1SkEJhxEBZpeAOJF+PzflHEdVc87NLQ1dQd1UFpZNiygckU0Ku29kJavA2Q\";}s:3:\"pro\";a:0:{}}}s:11:\"6.0.0-beta2\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-H8oq+jCbb0QVbhroj1DucOj59MYLAHR4vQPc0ClgJJzMS/YL7OcRJfM/ehkfKqhU\";s:14:\"css/brands.css\";s:71:\"sha384-9RVmH5wLHK5upannGNFElXHKDeCRaoz+RuosjPpGqwUmn2+p5J5IBUd0P726kTk3\";s:19:\"css/fontawesome.css\";s:71:\"sha384-m+NmQ9JGB4PGDECPUaU3EyjsUk6jyyMoM53D/n//nHSADtoSKusJc/BF/ZffIvI0\";s:15:\"css/regular.css\";s:71:\"sha384-mwb6xqj3Cg9cBoRZDNp2p4Sv49gYTCgHVLVwbErL3sJCA+RJ3Xhwq19ezzyT1KqX\";s:13:\"css/solid.css\";s:71:\"sha384-sBOgtFigRpSU/zNyZLGNKX6O+VrUJzHdITsX3+nGRutcAaSdRMmnc8LOJk8XzoDM\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-/ShrxWgDzY0RmtJK6gusdzSMS1yYysWIr6y1FFEG9B7naj2HqXMNxatmNRgmRDCx\";s:16:\"css/v4-shims.css\";s:71:\"sha384-wA6dLShvXgKngeGUYrFpv9/zgLLUtPxBL9y1OD9u5uQmeT3wWxvZVue3BO4xo4f0\";s:9:\"js/all.js\";s:71:\"sha384-vwquPQ7YyWL/EWINiNcgCpPP9Wbx44bLyI1NbrUJmEacQGGGWUzpERymaTAjvS9H\";s:12:\"js/brands.js\";s:71:\"sha384-X5eSej258z73rxsuRybt1adaWo6MobuyduuEYgYhbJMavb1jXYBhCqd1ZwRC9/7W\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-MOke50TwkELSa34Yzu6DEGxTlT3Wdn5DynHvqLANi/pFPBZxRDnFhJnD6mE/GuoP\";s:17:\"js/fontawesome.js\";s:71:\"sha384-vo5XH3GmQrg9pkTZYURBhzEXm7Xslw9fD0z49HVMvdquMGvwTiUKJP4he5iFSPot\";s:13:\"js/regular.js\";s:71:\"sha384-UDm7R3v5rW8y32ssB0WDalZIS8AztwsdQERaPBHTRLStI7Bfr/fhWLuXr5nYZG8M\";s:11:\"js/solid.js\";s:71:\"sha384-f199SbfL8tgeze5wETQ87SF+anBX6Dmf9bWZSBvW02HFz602Fqhv1u1iCnKgdbls\";s:14:\"js/v4-shims.js\";s:71:\"sha384-Teg5BVlogMJp4To5SNk5eS6Ct/+y3KN9D/UWWXr4e2JhUbT1rgnLDWGXp/TG/0a/\";}s:3:\"pro\";a:0:{}}}s:11:\"6.0.0-beta3\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:16:{s:11:\"css/all.css\";s:71:\"sha384-5e2ESR8Ycmos6g3gAKr1Jvwye8sW4U1u/cAKulfVJnkakCcMqhOudbtPnvJ+nbv7\";s:14:\"css/brands.css\";s:71:\"sha384-Lzg1sLP4sLS8KyVySlmRH4QzbOnIzlp/h2MYRTDkxMPKwaD+zxathmN655nRjRSG\";s:19:\"css/fontawesome.css\";s:71:\"sha384-RAtjHVFRUZs4Tif4stxk4r1UN31mhO2m2ii67jtwlyWDXls6IDZ6/N2bHxt3bA48\";s:15:\"css/regular.css\";s:71:\"sha384-TvfVCWnd24+5zZ+qmyScSguhYpT7YtOajZ0b4IVLn3+T3dFYzXkgu/EE/Nrf2km5\";s:13:\"css/solid.css\";s:71:\"sha384-4veAyGk1Tas2qyx7CD/29iLDa8aarX6vdaWWVPD7K/m8FdvH9ae9yFNbWOxmP1hZ\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-MLxC4sgXwbw5k1vFBDb68XNAF7UdJ7e1ibhu+ySJnAakTpweYCcq7jCcQpd5nJjU\";s:20:\"css/v4-font-face.css\";s:71:\"sha384-LJQ43yQLnfgXK8pn645vHWEmSJrVqisZaieRPj7NGV7cCzlL/B67BDv8gMRBS53i\";s:16:\"css/v4-shims.css\";s:71:\"sha384-zCIuCI9fw3QOcUPL5/7JfB3Qw6sjEimma+57eLWmHPHyVgqGmX5XLwGi3Ak5fLzQ\";s:20:\"css/v5-font-face.css\";s:71:\"sha384-W7b35mq2oJvzl9StEqMDWhapHEgwLh3/iohOpz2RopU0+3/eOmb8eubYCz0OwUcj\";s:9:\"js/all.js\";s:71:\"sha384-6e7nA5mhBVXnMIAtGPETl10C7oipDhu2IN/lyxyjAJG+KzNtRLqrqFJN5wJ+6/qU\";s:12:\"js/brands.js\";s:71:\"sha384-zY1eKUaz/NWcOf6xnU5eePxV3anVtTTAlu33RytBcT9jGz8dstwzZbVpp2l609NT\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-rN+BHnX2WMsUD7VYL6PykWIyqG6SyEu6IdhgM42fLyWqC7JlY2k76ufmZvMFU43a\";s:17:\"js/fontawesome.js\";s:71:\"sha384-W1qlouWJA+8MQIORaSCnwNHhaPuAMwQGosDEwU/g4kkawDb4WwLy3ZWVpa/KtRXb\";s:13:\"js/regular.js\";s:71:\"sha384-Axuj5+DJ+mQA38QqwpWCujH6bCefx3brdTdN+ffhy6oxdqSvs1evxn4iX828SSe6\";s:11:\"js/solid.js\";s:71:\"sha384-9d1SM0Z1PczSHlc0bwe5j/n1kjp14H06SgMcxbmNkp6ZSQa6CqneEHKQkfVGPcR7\";s:14:\"js/v4-shims.js\";s:71:\"sha384-ZkRpffzN60bZU7hfI/zFR3Nv603593UFKpz6QAm3FUAUqGa60uzGmuEGLB5BZNsY\";}s:3:\"pro\";a:0:{}}}s:5:\"6.0.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:16:{s:11:\"css/all.css\";s:71:\"sha384-3B6NwesSXE7YJlcLI9RpRqGf2p/EgVH8BgoKTaUrmKNDkHPStTQ3EyoYjCGXaOTS\";s:14:\"css/brands.css\";s:71:\"sha384-Adcde+txsvO9VVaHmK9GsiU0ps9W6rwF+IlMCjHpCeU5j18z8lenKNx6AV7OuQKy\";s:19:\"css/fontawesome.css\";s:71:\"sha384-caIQK8zI/KcZVq2HWogTcGbcxd9c0Alp2SDcy0eOHIjipClzJQ8HEkSNcoXtKq+w\";s:15:\"css/regular.css\";s:71:\"sha384-CAcRRHVEmhGr2UjS0hlffWvnfewfvVqvDJP03d3f3NctPBCvDfPMY6L8r4to10MT\";s:13:\"css/solid.css\";s:71:\"sha384-zW4IamLJkgRrzYFdEixnM4hbhScK8Q/B0aYHqhGxQf6jrj1pxNaEzS7n65YVdFsW\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-+FYTcfgXTek/jHYrY62q/wv2/QxcumMqXHB/9ZHrAwFBiACe0XD+xXBvrlpG93Qd\";s:20:\"css/v4-font-face.css\";s:71:\"sha384-K7jXM/Fd0TzcNoMz1bK2/PRaJLYkgynKTlUyKXatOFEovvEO1Zownee30wS0rxq4\";s:16:\"css/v4-shims.css\";s:71:\"sha384-Mo3tUbn02WJ1eXNOTbemz64sjSQx9PEUk4o3BJbDNrfhSAfbPobKWeqYpV3xkTBC\";s:20:\"css/v5-font-face.css\";s:71:\"sha384-iYWocEeLglluGxouLD/E0jzilCIbE6LTAKof7ZPB7/YSAogAA6bLTJyo2T98POzn\";s:9:\"js/all.js\";s:71:\"sha384-l+HksIGR+lyuyBo1+1zCBSRt6v4yklWu7RbG0Cv+jDLDD9WFcEIwZLHioVB4Wkau\";s:12:\"js/brands.js\";s:71:\"sha384-ZCobqGyWQ2Qg///QRAi+jqRlO/9aWmMHd6tb0emtG9QBX9t77I71IHg19T90mlfk\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-5v1FR2qOT+wEONoibSzBiWIvpXEOyyRuvOtNOfwijR3h4K7tg12vL4TNx4iSsQWX\";s:17:\"js/fontawesome.js\";s:71:\"sha384-pULjvYk4ZbCHxvgkOUhY3s6wbSkRp/9WHqh+NdM+FkmDQsdJeg2XyOHSEQ0AZlr4\";s:13:\"js/regular.js\";s:71:\"sha384-7XHlSs/t85udVElMnHlVDct1GXjA01UIyQLQRbYc3bxChziaGT776dBUgqd/o82r\";s:11:\"js/solid.js\";s:71:\"sha384-IWq2srnodX6Z+US+NFdwALHXDvdogKkBx7sUMzfypASSeqsNzF+gAS48WnkPcYbf\";s:14:\"js/v4-shims.js\";s:71:\"sha384-ybkuz/OxDnyDU81HhdheMi5FjVHdKkPPnnfX2H5pClfR9x+aAMkenwEbVe0AdPt9\";}s:3:\"pro\";a:0:{}}}s:5:\"6.1.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:16:{s:11:\"css/all.css\";s:71:\"sha384-eLT4eRYPHTmTsFGFAzjcCWX+wHfUInVWNm9YnwpiatljsZOwXtwV2Hh6sHM6zZD9\";s:14:\"css/brands.css\";s:71:\"sha384-E8UvjEv9HnIyjcD0D2Nfr/M7y5wA7GK+DoLhh5Sbfd0MtCSpdREBn8Wc/SdeaBDA\";s:19:\"css/fontawesome.css\";s:71:\"sha384-RLM8Rxp/DcBfCfSI3bGwwoMMxxy34D2e58WAqXmmdnh0WYlAQ8jeOB3A1ed5KUSm\";s:15:\"css/regular.css\";s:71:\"sha384-luZMTbX5lx1yPkwYfjdCtbXx2AL3j1H+ffZ1LJSuxepC2TKyGzv3zkgftThS/BDN\";s:13:\"css/solid.css\";s:71:\"sha384-ltWlpN+Dl8XfKEnC9oW+dDRF8Z7jsYkxQ/WMRoJ2VHH5G2nQZ4if2NWwmV0ybzZ7\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-gLJsqV+iGZdsakTXDecPQLbmHTTUB6vIJ2ukjLJTPa+YXsdHu5alOSYZZTagrVSG\";s:20:\"css/v4-font-face.css\";s:71:\"sha384-WTcUA4jr+YtMif40YOsaoMazuo9cigaWqC7Vrj6PjPzPt/VegPK08OEyRvvIauzD\";s:16:\"css/v4-shims.css\";s:71:\"sha384-k1PPow2i4/GbflsJCusORB91wBmXUDdw6pOkXu2vQWXIsmLbIL0t/aA7FroyJf1r\";s:20:\"css/v5-font-face.css\";s:71:\"sha384-SXOfPW9HC6/r4BP4QoUVZNVol9D+ncClNpAseJsRONb9L1F7QgV6ltEXcLnYJv9H\";s:9:\"js/all.js\";s:71:\"sha384-vLLEq/Un/eZFmXAu4Xxf8F00RSSMzPcI7iDiT6hpB4zFpezCEGhb5daeR8PLyrLI\";s:12:\"js/brands.js\";s:71:\"sha384-cNUzI2P088AN66Vx9jSolJDKuj/ZWgTtbwYleQo9MedrXul9DrmthXUDN2iFVk9u\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-te3/sj8uC87v52yVrB6zr3Fm5m0AyGLAHYUIx853+yLbLffUUfXrdztSp/yFACrc\";s:17:\"js/fontawesome.js\";s:71:\"sha384-n82ItqkVbr/bDMKi4caJ2ZLCgihjr3y0aF69FTVAfwQmyFRVucR9QvBKz7DliBNY\";s:13:\"js/regular.js\";s:71:\"sha384-/wcH7fFePVuXUD0zgIUKgQwvWV21321nbGpvX01SjmZ01yE/n68/Wp8rBxpsKI/+\";s:11:\"js/solid.js\";s:71:\"sha384-A4ZBrBkKFVj3yXr0kIOFHs3vCQDJSHAU9OiRxm9X42e+amWJl68HpDCbONxiMp12\";s:14:\"js/v4-shims.js\";s:71:\"sha384-WqC1w5exlfB7/5UiHTZp/YAnoS9Ovlzh55EwGjzaMxZZtL1omDGlh7KehDlpgKUr\";}s:3:\"pro\";a:0:{}}}s:5:\"6.1.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:16:{s:11:\"css/all.css\";s:71:\"sha384-/frq1SRXYH/bSyou/HUp/hib7RVN1TawQYja658FEOodR/FQBKVqT9Ol+Oz3Olq5\";s:14:\"css/brands.css\";s:71:\"sha384-GjGxypaJovIS9KvmJ0F1G5aXPEfMvk9dMgnwAAw7UOfX7zTQZMapUiXX/+8HlctD\";s:19:\"css/fontawesome.css\";s:71:\"sha384-zIaWifL2YFF1qaDiAo0JFgsmasocJ/rqu7LKYH8CoBEXqGbb9eO+Xi3s6fQhgFWM\";s:15:\"css/regular.css\";s:71:\"sha384-i84Ve3MkmiZYhWmYDjLPpHYYvg36qy5F11ipncNWsQMTrwZ8nGSSX3Q2QnmwEGdR\";s:13:\"css/solid.css\";s:71:\"sha384-DhmF1FmzR9+RBLmbsAts3Sp+i6cZMWQwNTRsew7pO/e4gvzqmzcpAzhDIwllPonQ\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-ET/prSuhSJFD66MbC3j2l1MrZtW8jdamNc+wmMcmh804U+5Isyo29kVkPjr+4+9P\";s:20:\"css/v4-font-face.css\";s:71:\"sha384-DPkhMKJRq9+6LzxVlr0poYa5+EQVr/onntse7iwk6coJonLqzoCBzSKF6ccKoXRm\";s:16:\"css/v4-shims.css\";s:71:\"sha384-4Jczmr1SlicmtiAiHGxwWtSzLJAS97HzJsKGqfC0JtZktLrPXIux1u6GJNVRRqiN\";s:20:\"css/v5-font-face.css\";s:71:\"sha384-QmV/KObe6h/Mb8GC5urJmE9hmFaZDtdnqpCUz9P9nDHFgMeDXyI6IARqnuDRkYu1\";s:9:\"js/all.js\";s:71:\"sha384-xBXmu0dk1bEoiwd71wOonQLyH+VpgR1XcDH3rtxrLww5ajNTuMvBdL5SOiFZnNdp\";s:12:\"js/brands.js\";s:71:\"sha384-jUDsa+5FKZnKIWUpGkvYZHGEx5UxPEu6XJtEMH9ZGXZZkUNVWX1vs+a51vHKs3EY\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-SgqpzfPaFrGdMcCtSUb4dAD1aDr5a93AfPBL+tk14acF93aGDvasqDcPFbHe24pS\";s:17:\"js/fontawesome.js\";s:71:\"sha384-9zErGp+biBilRrlpD1l3ExnaqXc8QLITlNpGtb4OL6W1JChl0wwmDNs4U/0UA8L8\";s:13:\"js/regular.js\";s:71:\"sha384-5ZhDHsI9yoa8E6DaGJCLj2Lgi8w4KE42IQi4jvmqYVCaza4Iqi8/hSniWspK7fUs\";s:11:\"js/solid.js\";s:71:\"sha384-KPytPVc+hwHwX9HXl4tA7SWJ0Sob6StzjVRoxC4Q4U0JgXujpuVrkBxR0Hsf8A25\";s:14:\"js/v4-shims.js\";s:71:\"sha384-lUDzd+x9AFWWpLYlM0ZCD+x586cN20gzVDrjHh8HUz22j1QwqTKQGkmd64bfBeZi\";}s:3:\"pro\";a:0:{}}}s:5:\"6.1.2\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:16:{s:11:\"css/all.css\";s:71:\"sha384-fZCoUih8XsaUZnNDOiLqnby1tMJ0sE7oBbNk2Xxf5x8Z4SvNQ9j83vFMa/erbVrV\";s:14:\"css/brands.css\";s:71:\"sha384-bSSRmv/7zc8N//nlEscKMJrVdXnmDX0i3KY5/Z25DbCimvRgRrefGMGQORqrdfD+\";s:19:\"css/fontawesome.css\";s:71:\"sha384-X8QTME3FCg1DLb58++lPvsjbQoCT9bp3MsUU3grbIny/3ZwUJkRNO8NPW6zqzuW9\";s:15:\"css/regular.css\";s:71:\"sha384-VkONnoon0mCxG87ODS8tYdngkEsiD8Sd23d3b4KRiZfPqB9YD9hlTNWSc1pkWUct\";s:13:\"css/solid.css\";s:71:\"sha384-0BumEd2qDQ2SCps2Pnnhegpr+si0PveDhbdhKgLYwY9x611h8s22Zh8td+W7jeys\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-GCDsQfUYx2ESsVn+lTf9CyU+PGOUBXnknizovQ4IJxE5loN0RHLpN+vRHxwybMFN\";s:20:\"css/v4-font-face.css\";s:71:\"sha384-E84k0fsWgsf0UqlJxsjgvjalIakzDn/aoXROK5S9mgTazm9ZOb/8zZ0qyqkdKDD7\";s:16:\"css/v4-shims.css\";s:71:\"sha384-iW7MVRJO9Fj06GFbRcMqdZBcVQhjBWlVXUjtY7XCppA+DZUoHBQ7B8VB+EjXUkPV\";s:20:\"css/v5-font-face.css\";s:71:\"sha384-C2uLsOCgtzzsIRkD2hyqhqJnsO6tKm8ec1erAE0iUqF9rveCxghE19k8tc41ksjq\";s:9:\"js/all.js\";s:71:\"sha384-11X1bEJVFeFtn94r1jlvSC7tlJkV2VJctorjswdLzqOJ6ZvYBSZQkaQVXG0R4Flt\";s:12:\"js/brands.js\";s:71:\"sha384-U5yq7AQDGZ6J9YLnrFCX7Qb4jl4/ARIio5SQIZcB5bLjDxI9j3Z3rg1jows2sbu3\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-vGTTZfVQhZ4yWSot55BXgm/SDH+MsKEeG2GFPNoKnoFJmosfJzkaPyMucBkV94KT\";s:17:\"js/fontawesome.js\";s:71:\"sha384-hAYe7Q//ZOaw3fT5VW5hCn+guWuzOj8+KjXlS95ZxcRnVX+SxyugquCJURnqC7UK\";s:13:\"js/regular.js\";s:71:\"sha384-60G9FrRhST1TC039tICDDsfkkIa1Smg8kwF6wa9wYEpDqGrd5kQtp9JCsfWW7GCA\";s:11:\"js/solid.js\";s:71:\"sha384-tc7MH1B8eIPGWXxQScItgwJcDhnfKKXr7R39oJJCo9oQ5QssIq6fJM9HvdSHlmUE\";s:14:\"js/v4-shims.js\";s:71:\"sha384-JwJ3z2CNw6j4LN4k+tA6GEN2OQSUzcSBpWIsEqlngCZqnfxDsQUe5SURjhpXLhvY\";}s:3:\"pro\";a:0:{}}}s:5:\"6.2.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:16:{s:11:\"css/all.css\";s:71:\"sha384-SOnAn/m2fVJCwnbEYgD4xzrPtvsXdElhOVvR8ND1YjB5nhGNwwf7nBQlhfAwHAZC\";s:14:\"css/brands.css\";s:71:\"sha384-aPlaxY3ZTSh7uDmsF2W7hsMfri06sIyTmCDnY7ERd0fdq3Sf5bUKYZMvomNxUaXn\";s:19:\"css/fontawesome.css\";s:71:\"sha384-z4tVnCr80ZcL0iufVdGQSUzNvJsKjEtqYZjiQrrYKlpGow+btDHDfQWkFjoaz/Zr\";s:15:\"css/regular.css\";s:71:\"sha384-wn3adrQUGPbU211xcXhUrH0E0l+tYlkc3uXQ8WiBvnHj6ZU9E1vKwzjRaCKUenlU\";s:13:\"css/solid.css\";s:71:\"sha384-0mfI7+kSnb5u0q8irmrfJVv1jYIBfeR+8BsSsgUDjP4HCYuQ+kLshHc4xpHeBqrp\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-lvs3gozt+olLidIy5GkpdCk5cvS3LPkq49a9KDlN1Xh1bkPTNGeTL6SJCX6gqyYx\";s:20:\"css/v4-font-face.css\";s:71:\"sha384-RSx4BCEB9OLjPKMTvFSenXMC8VTsramvoyHB5iSB1VvRvjZ+nendH6WKbigGUl31\";s:16:\"css/v4-shims.css\";s:71:\"sha384-MAgG0MNwzSXBbmOw4KK9yjMrRaUNSCk3WoZPkzVC1rmhXzerY4gqk/BLNYtdOFCO\";s:20:\"css/v5-font-face.css\";s:71:\"sha384-RS0a4x4GGXTod9x2HdKnveb/E8M6PuU4d/ZQVzhS+333QRA/Ozo84SeOKdLTZ2yN\";s:9:\"js/all.js\";s:71:\"sha384-W5zCdxUh9KjkijDohSc4bFCIfbZKNYcz/hdWjfRL1whrEJO6YBXMaZcAZU5YWJNW\";s:12:\"js/brands.js\";s:71:\"sha384-09m3HDo5mYd2JdkpussYgOLApaYuUblFkHtmeNGHcQv5bXjDeCFdH2iVYjUT8dQ/\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-lbmBDViH+2PwoLg/9cPkkkTMdiyjpcY/jpRNab/Tt0ZmaSdv+85nXkEXaCe/kFp0\";s:17:\"js/fontawesome.js\";s:71:\"sha384-KZ1LJTCtJ2KL1x2pH7hR3CElXzG3s0P624sTHaiTFoSKBMBlwu0mrvkjm8jKox6f\";s:13:\"js/regular.js\";s:71:\"sha384-9P5qtFxImyObPMiImjKy+Kc+r+0+br3QTmRpQSswRkuWxTlb1Jsn7wG/i1i5xJjp\";s:11:\"js/solid.js\";s:71:\"sha384-H6YBpm4VRWLTfp0nRZIrLoT2zc1rWaEEYxYC+HyWXxSKY+AUn5evalgkgT0EpMDN\";s:14:\"js/v4-shims.js\";s:71:\"sha384-FirTqNsw+MidIWcJQan+CwXPSApCil9UBGO7gSOrDvmnzlApH42azPyb5gSH12vT\";}s:3:\"pro\";a:0:{}}}}}}','no'),(18975,'font-awesome','a:8:{s:6:\"usePro\";b:0;s:6:\"compat\";b:1;s:10:\"technology\";s:7:\"webfont\";s:14:\"pseudoElements\";b:1;s:8:\"kitToken\";N;s:8:\"apiToken\";b:0;s:11:\"dataVersion\";i:4;s:7:\"version\";s:5:\"6.1.2\";}','yes'),(18976,'font-awesome-conflict-detection','a:2:{s:20:\"detectConflictsUntil\";i:0;s:19:\"unregisteredClients\";a:0:{}}','yes'),(20204,'prime_mover_validated_backups_option','a:1:{i:1;a:1:{s:40:\"8631266be5fd4aba41d1a6b7132259335a93cffc\";a:3:{s:38:\"thelawofFf8xIK001ZH9BTRblogid_1.wprime\";a:6:{s:8:\"filesize\";s:6:\"327.6M\";s:8:\"filepath\";s:124:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/prime-mover-export-files/1/thelawofFf8xIK001ZH9BTRblogid_1.wprime\";s:12:\"filesize_raw\";i:343526400;s:13:\"include_users\";s:3:\"Yes\";s:10:\"site_title\";s:39:\"The Law Offices of Melissa A. Day, PLLC\";s:4:\"date\";i:1661947485;}s:38:\"thelawofI9MSWXij4z2jlIkblogid_1.wprime\";a:6:{s:8:\"filesize\";s:6:\"408.8M\";s:8:\"filepath\";s:124:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/prime-mover-export-files/1/thelawofI9MSWXij4z2jlIkblogid_1.wprime\";s:12:\"filesize_raw\";i:428707840;s:13:\"include_users\";s:3:\"Yes\";s:10:\"site_title\";s:39:\"The Law Offices of Melissa A. Day, PLLC\";s:4:\"date\";i:1663701687;}s:38:\"thelawofFJcu38txmJ274UZblogid_1.wprime\";a:6:{s:8:\"filesize\";s:6:\"486.7M\";s:8:\"filepath\";s:124:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/prime-mover-export-files/1/thelawofFJcu38txmJ274UZblogid_1.wprime\";s:12:\"filesize_raw\";i:510352384;s:13:\"include_users\";s:3:\"Yes\";s:10:\"site_title\";s:39:\"The Law Offices of Melissa A. Day, PLLC\";s:4:\"date\";i:1663938377;}}}}','yes'),(20208,'prime_mover_backup_sites','a:1:{i:0;i:1;}','yes'),(20311,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:24:\"mdoldan@madwcdefense.com\";s:7:\"version\";s:5:\"6.8.1\";s:9:\"timestamp\";i:1746035144;}','off'),(20969,'_mm_refresh_token','63091b6c-0f80-41e9-ab24-39170a141f2b','yes'),(21388,'_transient_ninja_forms_styles_form_2_styles','','yes'),(21389,'_transient_ninja_forms_styles_form_2_field_styles','<style>\n\n        /* FIELDS STYLES */\n    \n        .nf-form-content .nf-field-container #nf-field-19-wrap .nf-field-element .ninja-forms-field {\n                                    background-color:#ffffff;\n                    }\n    </style>','yes'),(21411,'nf_sub_expiration','a:0:{}','yes'),(21416,'_transient_ninja_forms_styles_form_6_styles','','yes'),(21417,'_transient_ninja_forms_styles_form_6_field_styles','','yes'),(21829,'et_server_domain_token','eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpc3MiOiJodHRwczpcL1wvd3d3LmVsZWdhbnR0aGVtZXMuY29tIiwiaWF0IjoxNjYyNzI3Nzk0LCJ1c2VybmFtZSI6Im1hZHdjZGVmZW5zZSIsInN0YXR1cyI6ImFjdGl2ZSIsIm1heF9pdGVtcyI6IjUwIiwibWF4X3RyYXNoX2l0ZW1zIjoiNTAiLCJkb21haW4iOiJsb21hZC10ZXN0LmdldG1hZC50b2RheSIsIm5hbWUiOiJNZWxpc3NhIERheSIsImVtYWlsIjoiYm9va2tlZXBpbmdAbWFkd2NkZWZlbnNlLmNvbSIsIm1heF9ieXRlcyI6MH0.uRZbN7q7hylL2xSTNZkD3GXhHwt9PnaFe3G9fvnaWwjs7oVD1L3hohpw_Df3-pdjFYrciZVTwnPm7QGf56Wsx77s6otgjr4jD-hbLshXulye8Ma5zP4evTgFmYem_K0VOB8zm3pK4VelNDjyeIidZI5FVqyKRhlYYfSuzWSGt_nM575utDgZE3yyk7U4nx0Tn1tHgUFlXQx2RzlKWlBVOesGkl1hglLtLtspciOQ0-zPwKTRVTgOk0alUwyH-U3HERFuWcmHo7L11M5KpXdNkK5jVkhcT6gFNSSQCIkT3EgmQ9eThMfAUb-yYblA4aDtKEhdlyM3e4UK0IFsB1RNUbua9yNAtfK_b1lGah1PTwTUP6j6mO-QOeBkhxaUYHjzbbiN_XLUfPv3MX5W2_6PMJ8tDtTHzA8L9DLEo0LHzFU4N-0v3kgUYNdsTMb6PwGD4bX_CgON6t6EY_HZBbf5LF1vCwD_ZUuRVrAl4cWm62RiNWccIRakEtr5RRTnXc6laiSWGMAm7043WZi1Y8Bw4JRKDT5cupvoVGtM6rhGIJQZSJRujqoKwbHx0w4V3qvexYgXDcGt-S7w0496I1VsX55-Rnjght--kPKgCoFtIjtz4ePbvwqQMLQyFMKW_Qe5fo1mgS0tXfVPo62n7OU568c68pp9TPJ1Gp7whT-ZP4U','yes'),(21830,'et_cloud_refresh_token','a:1:{i:1;a:0:{}}','no'),(22083,'_transient_dirsize_cache','a:3811:{s:47:\"/home/getmadto/public_html/getmad.today/cgi-bin\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-ff\";i:241;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-71/jchoptimizecache-10\";i:105842;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-71/jchoptimizecache-db\";i:596;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-71/jchoptimizecache-14\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-71/jchoptimizecache-77\";i:6772;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-71\";i:113210;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-5d/jchoptimizecache-5f\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-5d\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-4b\";i:121;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c9/jchoptimizecache-f0\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c9\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b1/jchoptimizecache-37\";i:19337;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b1/jchoptimizecache-65\";i:98240;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b1\";i:117577;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ea/jchoptimizecache-d4\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ea/jchoptimizecache-e0\";i:426992;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ea\";i:426992;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-d0/jchoptimizecache-2e\";i:2359;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-d0\";i:2359;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-a7\";i:399;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-69/jchoptimizecache-90\";i:7985;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-69/jchoptimizecache-4e\";i:8222;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-69/jchoptimizecache-cc\";i:7822;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-69/jchoptimizecache-21\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-69\";i:24029;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-17/jchoptimizecache-dd\";i:111675;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-17\";i:111675;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-da\";i:774;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-a5\";i:70;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-67\";i:1171;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ab/jchoptimizecache-14\";i:572;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ab\";i:572;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-25\";i:626;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-da/jchoptimizecache-34\";i:2679;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-da/jchoptimizecache-e7\";i:509;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-da/jchoptimizecache-b8\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-da\";i:3188;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-f0\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-63/jchoptimizecache-41\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-63\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-7f\";i:1045;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-22/jchoptimizecache-b3\";i:492274;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-22/jchoptimizecache-03\";i:2708;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-22/jchoptimizecache-1a\";i:485818;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-22\";i:980800;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-03\";i:35;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-a2\";i:241;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-08\";i:35;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-97\";i:122;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-7e\";i:121;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-8d/jchoptimizecache-19\";i:122760;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-8d/jchoptimizecache-01\";i:493017;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-8d/jchoptimizecache-9c\";i:2076;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-8d/jchoptimizecache-76\";i:54720;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-8d\";i:672573;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-e5/jchoptimizecache-5e\";i:486148;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-e5/jchoptimizecache-12\";i:6677;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-e5/jchoptimizecache-1b\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-e5\";i:492825;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-aa/jchoptimizecache-c7\";i:111675;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-aa\";i:111675;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-d7/jchoptimizecache-83\";i:54720;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-d7\";i:54720;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-50/jchoptimizecache-e7\";i:1538248;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-50/jchoptimizecache-95\";i:16;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-50\";i:1538264;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-15/jchoptimizecache-e6\";i:9186;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-15\";i:9186;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-c4\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-23\";i:640;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-80/jchoptimizecache-88\";i:184;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-80/jchoptimizecache-5e\";i:105842;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-80/jchoptimizecache-c0\";i:337;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-80\";i:106363;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-c0\";i:672;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-41\";i:274;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-d7\";i:122;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-8b/jchoptimizecache-09\";i:59278;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-8b/jchoptimizecache-14\";i:427045;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-8b\";i:486323;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-fa/jchoptimizecache-fa\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-fa\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-53/jchoptimizecache-37\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-53\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-43\";i:283;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-e0\";i:35;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-d8\";i:121;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-90/jchoptimizecache-bb\";i:11951;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-90\";i:11951;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-69\";i:1360;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-45/jchoptimizecache-80\";i:8536;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-45/jchoptimizecache-83\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-45/jchoptimizecache-0e\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-45\";i:8536;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-b1\";i:773;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-d6\";i:464;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-79\";i:518;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-6d/jchoptimizecache-ad\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-6d/jchoptimizecache-93\";i:22869;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-6d\";i:22869;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-0b/jchoptimizecache-2d\";i:1394;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-0b\";i:1394;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-9a\";i:309;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-a1\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-26/jchoptimizecache-1e\";i:493090;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-26\";i:493090;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-15\";i:273;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-39/jchoptimizecache-a1\";i:492313;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-39/jchoptimizecache-12\";i:670028;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-39/jchoptimizecache-96\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-39/jchoptimizecache-05\";i:81505;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-39\";i:1243846;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-f6\";i:555;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-7c/jchoptimizecache-28\";i:6393;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-7c\";i:6393;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-bb\";i:127;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-60/jchoptimizecache-cc\";i:491890;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-60/jchoptimizecache-37\";i:678870;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-60\";i:1170760;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-3b\";i:156;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-ca\";i:653;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-56\";i:35;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c1/jchoptimizecache-9a\";i:2896;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c1/jchoptimizecache-af\";i:105842;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c1\";i:108738;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-d0\";i:274;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-4e/jchoptimizecache-a8\";i:122760;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-4e/jchoptimizecache-93\";i:111675;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-4e\";i:234435;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-b4\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-5e/jchoptimizecache-0a\";i:158;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-5e/jchoptimizecache-00\";i:492297;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-5e/jchoptimizecache-d6\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-5e\";i:492455;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-85\";i:154;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-48/jchoptimizecache-41\";i:81807;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-48/jchoptimizecache-3f\";i:27489;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-48\";i:109296;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-87/jchoptimizecache-f3\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-87\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-cc\";i:584;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-70/jchoptimizecache-91\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-70\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-9e\";i:464;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-04\";i:705;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-82\";i:1314;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-25/jchoptimizecache-e0\";i:122760;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-25/jchoptimizecache-fc\";i:1700;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-25\";i:124460;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-7b\";i:35;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-fd\";i:157;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-92/jchoptimizecache-5c\";i:22832;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-92\";i:22832;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-95\";i:310;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-ae\";i:499;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-dd\";i:154;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-9e/jchoptimizecache-30\";i:17091;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-9e/jchoptimizecache-00\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-9e\";i:17091;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a1/jchoptimizecache-e9\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a1/jchoptimizecache-c2\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a1\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-2a\";i:710;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-bf/jchoptimizecache-57\";i:96416;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-bf/jchoptimizecache-cf\";i:492370;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-bf\";i:588786;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-f5/jchoptimizecache-62\";i:673091;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-f5/jchoptimizecache-ae\";i:105842;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-f5\";i:778933;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-6a\";i:711;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-d5/jchoptimizecache-39\";i:1538248;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-d5/jchoptimizecache-5b\";i:820;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-d5/jchoptimizecache-05\";i:105842;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-d5\";i:1644910;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-fd/jchoptimizecache-39\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-fd/jchoptimizecache-68\";i:81505;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-fd/jchoptimizecache-43\";i:111675;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-fd\";i:193180;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-0b\";i:156;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-cf\";i:121;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-0a/jchoptimizecache-91\";i:121721;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-0a/jchoptimizecache-bf\";i:1467;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-0a\";i:123188;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-32\";i:1218;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a8/jchoptimizecache-5e\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a8/jchoptimizecache-38\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a8\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-2a/jchoptimizecache-08\";i:158176;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-2a/jchoptimizecache-db\";i:111675;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-2a\";i:269851;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-10\";i:274;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-a4\";i:191;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-8b\";i:363;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-4e\";i:243;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-99\";i:122;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-e2\";i:1388;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-62/jchoptimizecache-b9\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-62\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-34/jchoptimizecache-60\";i:81099;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-34\";i:81099;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-40/jchoptimizecache-28\";i:780;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-40\";i:780;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-07\";i:471;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-8e/jchoptimizecache-71\";i:157549;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-8e\";i:157549;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-64/jchoptimizecache-59\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-64\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c0/jchoptimizecache-8a\";i:122772;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c0/jchoptimizecache-72\";i:96416;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c0/jchoptimizecache-e4\";i:19589;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c0\";i:238777;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-c5\";i:35;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-8e\";i:156;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-4b/jchoptimizecache-77\";i:121721;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-4b\";i:121721;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-80\";i:773;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-3e\";i:497;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-16/jchoptimizecache-bd\";i:59278;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-16\";i:59278;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-1b\";i:241;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-3e/jchoptimizecache-b1\";i:1696;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-3e/jchoptimizecache-70\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-3e\";i:1696;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-3b/jchoptimizecache-08\";i:1104;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-3b/jchoptimizecache-1d\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-3b\";i:1104;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-3a/jchoptimizecache-ea\";i:88614;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-3a/jchoptimizecache-57\";i:17594;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-3a/jchoptimizecache-2d\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-3a\";i:106208;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-44/jchoptimizecache-9f\";i:26521;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-44\";i:26521;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-98\";i:127;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-aa\";i:122;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-08/jchoptimizecache-c1\";i:81807;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-08\";i:81807;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a5/jchoptimizecache-16\";i:678833;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a5/jchoptimizecache-55\";i:81099;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a5\";i:759932;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-32/jchoptimizecache-70\";i:426988;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-32/jchoptimizecache-cb\";i:4640;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-32/jchoptimizecache-3c\";i:5699;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-32\";i:437327;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b3/jchoptimizecache-a8\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b3/jchoptimizecache-e7\";i:217;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b3\";i:217;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-ad\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-a0\";i:35;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-a6\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-16\";i:121;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-51/jchoptimizecache-b8\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-51/jchoptimizecache-73\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-51\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-37\";i:154;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a7/jchoptimizecache-6f\";i:139;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a7\";i:139;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-71\";i:197;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-4a/jchoptimizecache-9a\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-4a\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-75\";i:35;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-68/jchoptimizecache-0c\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-68\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-5c\";i:241;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-ee\";i:274;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-cb/jchoptimizecache-4d\";i:818544;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-cb/jchoptimizecache-f1\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-cb\";i:818544;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ad/jchoptimizecache-55\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ad\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-65\";i:840;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ca/jchoptimizecache-f6\";i:1488;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ca/jchoptimizecache-59\";i:1538248;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ca\";i:1539736;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-47/jchoptimizecache-72\";i:485753;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-47\";i:485753;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-09\";i:431;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-dc/jchoptimizecache-aa\";i:105842;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-dc/jchoptimizecache-d4\";i:147;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-dc/jchoptimizecache-2d\";i:7282;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-dc\";i:113271;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-e8/jchoptimizecache-cf\";i:670372;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-e8\";i:670372;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-41/jchoptimizecache-be\";i:37368;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-41\";i:37368;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-c1\";i:499;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-22\";i:431;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-59\";i:35;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-04/jchoptimizecache-63\";i:8503;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-04/jchoptimizecache-44\";i:3625;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-04\";i:12128;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-ed\";i:274;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-d5\";i:226;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-0c/jchoptimizecache-c6\";i:122772;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-0c\";i:122772;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-03/jchoptimizecache-cf\";i:81099;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-03\";i:81099;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-0e\";i:309;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-c8\";i:276;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b7/jchoptimizecache-a5\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b7\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-cc/jchoptimizecache-2a\";i:1694;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-cc/jchoptimizecache-f3\";i:39096;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-cc\";i:40790;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-27/jchoptimizecache-17\";i:177;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-27/jchoptimizecache-60\";i:3129;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-27\";i:3306;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ff/jchoptimizecache-c1\";i:670335;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ff\";i:670335;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-c3\";i:780;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-0c\";i:121;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-67/jchoptimizecache-04\";i:6155;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-67/jchoptimizecache-d2\";i:179;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-67/jchoptimizecache-95\";i:37698;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-67\";i:44032;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c4/jchoptimizecache-dc\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c4/jchoptimizecache-fe\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c4\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-2e/jchoptimizecache-57\";i:9576;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-2e/jchoptimizecache-16\";i:426642;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-2e/jchoptimizecache-84\";i:10394;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-2e\";i:446612;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-20\";i:35;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-17\";i:122;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-1c\";i:35;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b4/jchoptimizecache-58\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b4\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-09/jchoptimizecache-4a\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-09/jchoptimizecache-cc\";i:119822;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-09/jchoptimizecache-24\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-09\";i:119822;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-10/jchoptimizecache-25\";i:1000;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-10\";i:1000;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-13\";i:309;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-7f/jchoptimizecache-ba\";i:704;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-7f/jchoptimizecache-9c\";i:22869;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-7f\";i:23573;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-d2/jchoptimizecache-53\";i:5699;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-d2/jchoptimizecache-7d\";i:5699;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-d2\";i:11398;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c5/jchoptimizecache-ff\";i:15;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c5/jchoptimizecache-d3\";i:492317;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c5\";i:492332;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-f6/jchoptimizecache-9d\";i:3692;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-f6/jchoptimizecache-12\";i:79504;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-f6\";i:83196;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-92\";i:154;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-47\";i:121;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-26\";i:35;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ce/jchoptimizecache-0b\";i:491967;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ce/jchoptimizecache-39\";i:703;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ce\";i:492670;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-61/jchoptimizecache-2a\";i:1132190;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-61/jchoptimizecache-62\";i:124381;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-61\";i:1256571;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a0/jchoptimizecache-0f\";i:491890;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a0\";i:491890;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-8c/jchoptimizecache-aa\";i:21424;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-8c\";i:21424;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b6/jchoptimizecache-d9\";i:122760;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b6/jchoptimizecache-61\";i:5759;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b6/jchoptimizecache-cd\";i:10912;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b6\";i:139431;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-46/jchoptimizecache-ff\";i:268;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-46\";i:268;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-48\";i:309;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-fa\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-8f\";i:464;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-2b\";i:35;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b2/jchoptimizecache-4a\";i:85592;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b2/jchoptimizecache-e9\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b2/jchoptimizecache-35\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b2\";i:85592;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-82/jchoptimizecache-4e\";i:468261;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-82/jchoptimizecache-18\";i:102445;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-82/jchoptimizecache-7d\";i:7115;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-82/jchoptimizecache-29\";i:1266;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-82\";i:579087;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-5c/jchoptimizecache-eb\";i:426992;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-5c\";i:426992;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-3a\";i:277;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-ab\";i:241;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-8a\";i:121;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-9c\";i:35;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-e0/jchoptimizecache-16\";i:105842;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-e0/jchoptimizecache-6a\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-e0\";i:105842;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-db/jchoptimizecache-40\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-db/jchoptimizecache-d2\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-db\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-96\";i:35;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-19/jchoptimizecache-6e\";i:5200;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-19/jchoptimizecache-fb\";i:11318;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-19\";i:16518;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-8a/jchoptimizecache-06\";i:122772;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-8a\";i:122772;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-12/jchoptimizecache-91\";i:2473;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-12/jchoptimizecache-34\";i:570;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-12\";i:3043;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-f4\";i:362;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-9a/jchoptimizecache-f9\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-9a/jchoptimizecache-7b\";i:60121;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-9a\";i:60121;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-36\";i:398;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c6/jchoptimizecache-ab\";i:426972;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c6/jchoptimizecache-54\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c6/jchoptimizecache-0d\";i:678852;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c6/jchoptimizecache-00\";i:37718;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c6\";i:1143542;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-0d/jchoptimizecache-4b\";i:2247;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-0d\";i:2247;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-27\";i:401;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-40\";i:309;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-14/jchoptimizecache-3e\";i:596;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-14/jchoptimizecache-61\";i:2420;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-14/jchoptimizecache-e2\";i:2736;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-14/jchoptimizecache-b5\";i:1187310;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-14\";i:1193062;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a4/jchoptimizecache-8e\";i:1187310;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a4/jchoptimizecache-9c\";i:492297;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a4/jchoptimizecache-79\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a4\";i:1679607;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-14\";i:781;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-cb\";i:127;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-46\";i:310;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-7a/jchoptimizecache-f4\";i:670032;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-7a\";i:670032;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-60\";i:70;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-af\";i:241;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-49/jchoptimizecache-f5\";i:79504;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-49/jchoptimizecache-d3\";i:649;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-49/jchoptimizecache-93\";i:122772;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-49\";i:202925;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-07/jchoptimizecache-f1\";i:274130;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-07/jchoptimizecache-af\";i:678870;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-07/jchoptimizecache-1c\";i:29769;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-07\";i:982769;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-37/jchoptimizecache-66\";i:37718;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-37\";i:37718;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-5b/jchoptimizecache-7d\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-5b\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-e4\";i:121;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-b9\";i:277;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a3/jchoptimizecache-90\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a3/jchoptimizecache-3d\";i:122772;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a3/jchoptimizecache-8c\";i:673;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a3\";i:123445;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-75/jchoptimizecache-39\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-75/jchoptimizecache-cc\";i:81099;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-75/jchoptimizecache-0d\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-75/jchoptimizecache-14\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-75\";i:81099;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-5f/jchoptimizecache-90\";i:604;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-5f/jchoptimizecache-89\";i:310;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-5f/jchoptimizecache-b3\";i:492317;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-5f/jchoptimizecache-77\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-5f\";i:493231;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-50\";i:522;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-7a\";i:273;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-06\";i:274;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-f8/jchoptimizecache-6f\";i:486160;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-f8\";i:486160;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-a3\";i:586;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-8f/jchoptimizecache-39\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-8f/jchoptimizecache-61\";i:438;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-8f/jchoptimizecache-2b\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-8f\";i:438;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-fc/jchoptimizecache-52\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-fc/jchoptimizecache-42\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-fc/jchoptimizecache-06\";i:845556;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-fc\";i:845556;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-02/jchoptimizecache-d1\";i:17594;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-02/jchoptimizecache-3a\";i:468261;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-02/jchoptimizecache-02\";i:177;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-02\";i:486032;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ed/jchoptimizecache-6c\";i:17093;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ed/jchoptimizecache-70\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ed\";i:17093;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-0a\";i:396;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-fc\";i:280;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-13/jchoptimizecache-01\";i:444;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-13\";i:444;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-86\";i:310;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-86/jchoptimizecache-13\";i:1671;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-86\";i:1671;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-35/jchoptimizecache-32\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-35\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-bf\";i:276;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ae/jchoptimizecache-bf\";i:81099;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ae/jchoptimizecache-cc\";i:10855;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ae\";i:91954;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ee/jchoptimizecache-b6\";i:59144;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ee\";i:59144;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b9/jchoptimizecache-17\";i:122760;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b9/jchoptimizecache-20\";i:79504;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-b9\";i:202264;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-7e/jchoptimizecache-ef\";i:54720;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-7e\";i:54720;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-bd/jchoptimizecache-4e\";i:24073;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-bd/jchoptimizecache-70\";i:59278;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-bd\";i:83351;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-44\";i:274;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-42\";i:241;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-85/jchoptimizecache-f2\";i:37675;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-85\";i:37675;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-39\";i:311;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-65/jchoptimizecache-71\";i:11458;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-65\";i:11458;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ba/jchoptimizecache-68\";i:105842;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-ba\";i:105842;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-5e\";i:771;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a6/jchoptimizecache-c9\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a6\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-36/jchoptimizecache-1a\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-36/jchoptimizecache-a4\";i:81099;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-36/jchoptimizecache-f4\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-36/jchoptimizecache-af\";i:426972;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-36/jchoptimizecache-11\";i:111675;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-36\";i:619746;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-ba\";i:35;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-59/jchoptimizecache-af\";i:81099;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-59\";i:81099;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-61\";i:400;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-dd/jchoptimizecache-6d\";i:37771;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-dd/jchoptimizecache-4f\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-dd\";i:37771;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-45\";i:464;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-96/jchoptimizecache-05\";i:472557;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-96\";i:472557;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-cf/jchoptimizecache-91\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-cf/jchoptimizecache-60\";i:54720;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-cf\";i:54720;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-bd\";i:430;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-cd/jchoptimizecache-9b\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-cd/jchoptimizecache-db\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-cd/jchoptimizecache-f0\";i:111675;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-cd\";i:111675;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-84\";i:121;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-4c/jchoptimizecache-52\";i:22851;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-4c\";i:22851;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-94/jchoptimizecache-31\";i:37714;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-94/jchoptimizecache-2e\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-94/jchoptimizecache-93\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-94/jchoptimizecache-cf\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-94/jchoptimizecache-94\";i:111675;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-94\";i:149389;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-f5\";i:70;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-34\";i:35;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-f4/jchoptimizecache-82\";i:670372;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-f4/jchoptimizecache-bb\";i:111675;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-f4\";i:782047;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-a8\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-7c\";i:464;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-e1/jchoptimizecache-be\";i:88614;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-e1/jchoptimizecache-3e\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-e1\";i:88614;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-2e\";i:1334;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-f0/jchoptimizecache-89\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-f0\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-72/jchoptimizecache-ab\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-72\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-5f\";i:963;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-7d/jchoptimizecache-cf\";i:54720;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-7d/jchoptimizecache-c2\";i:59278;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-7d/jchoptimizecache-20\";i:4300;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-7d/jchoptimizecache-de\";i:13269;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-7d\";i:131567;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-30/jchoptimizecache-4a\";i:8001;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-30\";i:8001;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-6d\";i:155;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-e2/jchoptimizecache-50\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-e2/jchoptimizecache-92\";i:122760;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-e2/jchoptimizecache-b3\";i:426949;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-e2/jchoptimizecache-ad\";i:5082;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-e2/jchoptimizecache-09\";i:828860;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-e2\";i:1383651;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-7d\";i:1391;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-af/jchoptimizecache-d7\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-af/jchoptimizecache-9a\";i:760;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-af\";i:760;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-9c/jchoptimizecache-ea\";i:105842;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-9c\";i:105842;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-dc\";i:780;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-21/jchoptimizecache-d5\";i:1866;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-21/jchoptimizecache-e4\";i:6811;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-21\";i:8677;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-43/jchoptimizecache-36\";i:10003;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-43\";i:10003;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-00\";i:35;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-23/jchoptimizecache-b4\";i:20382;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-23/jchoptimizecache-7a\";i:54720;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-23\";i:75102;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-56/jchoptimizecache-69\";i:81099;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-56/jchoptimizecache-a8\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-56\";i:81099;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-e8\";i:241;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-30\";i:464;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-49\";i:741;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-b7\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-73/jchoptimizecache-c8\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-73\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-11/jchoptimizecache-44\";i:19058;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-11/jchoptimizecache-c3\";i:158;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-11\";i:19216;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c2/jchoptimizecache-ef\";i:54720;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c2\";i:54720;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-de\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-11\";i:436;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-b2\";i:464;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-20/jchoptimizecache-5c\";i:105842;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-20\";i:105842;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-19\";i:773;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-0d\";i:861;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-76\";i:274;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-ea\";i:241;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-d2\";i:157;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-84/jchoptimizecache-2d\";i:111675;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-84\";i:111675;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-90\";i:241;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-7b/jchoptimizecache-1e\";i:492297;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-7b\";i:492297;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-8d\";i:707;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-02\";i:826;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c3/jchoptimizecache-8b\";i:105842;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c3/jchoptimizecache-90\";i:1696;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c3/jchoptimizecache-cf\";i:216731;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c3/jchoptimizecache-72\";i:54720;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c3/jchoptimizecache-3f\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c3\";i:378989;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-2f/jchoptimizecache-e8\";i:81807;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-2f/jchoptimizecache-85\";i:1091;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-2f\";i:82898;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-79/jchoptimizecache-d1\";i:426565;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-79/jchoptimizecache-63\";i:54720;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-79/jchoptimizecache-0f\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-79/jchoptimizecache-0e\";i:237;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-79\";i:481522;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-b3\";i:399;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-de/jchoptimizecache-de\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-de\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-95/jchoptimizecache-4a\";i:2949;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-95\";i:2949;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-00/jchoptimizecache-61\";i:558;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-00\";i:558;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-94\";i:275;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-c2\";i:241;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-2f\";i:344;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-97/jchoptimizecache-b0\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-97/jchoptimizecache-be\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-97/jchoptimizecache-76\";i:1694;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-97\";i:1694;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c8/jchoptimizecache-04\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c8/jchoptimizecache-a9\";i:820;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c8/jchoptimizecache-bd\";i:486221;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-c8\";i:487041;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a2/jchoptimizecache-8b\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a2/jchoptimizecache-fb\";i:426972;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-a2\";i:426972;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-f8\";i:241;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-b6\";i:741;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-ce\";i:309;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-c9\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-42/jchoptimizecache-26\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-42/jchoptimizecache-76\";i:486125;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-42\";i:486125;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-98/jchoptimizecache-8c\";i:173;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-98\";i:173;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-e4/jchoptimizecache-7f\";i:111675;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-e4\";i:111675;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-c6\";i:430;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-e1\";i:310;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-d8/jchoptimizecache-8d\";i:54720;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-d8\";i:54720;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-cd\";i:121;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-12\";i:578;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-76/jchoptimizecache-0f\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-76/jchoptimizecache-d4\";i:352;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-76\";i:352;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-99/jchoptimizecache-55\";i:111675;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-99\";i:111675;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-d6/jchoptimizecache-53\";i:1482;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-d6\";i:1482;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-6a/jchoptimizecache-d1\";i:122760;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-6a/jchoptimizecache-87\";i:182;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-6a/jchoptimizecache-9a\";i:0;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-6a\";i:122942;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-1c/jchoptimizecache-7f\";i:81099;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-1c\";i:81099;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-2b/jchoptimizecache-63\";i:820;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-2b\";i:820;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-4c\";i:35;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-21\";i:1148;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-bb/jchoptimizecache-7c\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-bb/jchoptimizecache-e4\";i:0;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-bb/jchoptimizecache-bb\";i:315;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-bb\";i:315;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-e5\";i:705;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-1b/jchoptimizecache-e2\";i:670372;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-1b\";i:670372;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-db\";i:0;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizetags-8c\";i:589;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-06/jchoptimizecache-79\";i:39921;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-06\";i:39921;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-0e/jchoptimizecache-06\";i:89615;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize/jchoptimizecache-0e\";i:89615;s:69:\"/home/getmadto/public_html/getmad.today/wp-content/cache/jch-optimize\";i:42409476;s:56:\"/home/getmadto/public_html/getmad.today/wp-content/cache\";i:42409476;s:61:\"/home/getmadto/public_html/getmad.today/wp-content/mu-plugins\";i:66257;s:68:\"/home/getmadto/public_html/getmad.today/wp-content/et-cache/notfound\";i:113187;s:61:\"/home/getmadto/public_html/getmad.today/wp-content/et-cache/6\";i:105918;s:65:\"/home/getmadto/public_html/getmad.today/wp-content/et-cache/en_US\";i:12414339;s:59:\"/home/getmadto/public_html/getmad.today/wp-content/et-cache\";i:12641831;s:58:\"/home/getmadto/public_html/getmad.today/wp-content/upgrade\";i:0;s:50:\"/home/getmadto/public_html/getmad.today/wp-content\";i:55117592;s:66:\"/home/getmadto/public_html/getmad.today/.well-known/pki-validation\";i:0;s:51:\"/home/getmadto/public_html/getmad.today/.well-known\";i:0;s:62:\"/home/getmadto/public_html/getmad.today/wp-includes/php-compat\";i:1203;s:90:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/namespaced/Core/Poly1305\";i:112;s:90:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/namespaced/Core/ChaCha20\";i:224;s:95:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge\";i:602;s:92:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/namespaced/Core/Curve25519\";i:820;s:81:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/namespaced/Core\";i:2444;s:76:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/namespaced\";i:2698;s:83:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/src/Core/Poly1305\";i:12912;s:83:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/src/Core/ChaCha20\";i:5264;s:87:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/src/Core/SecretStream\";i:3624;s:81:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/src/Core/Base64\";i:22135;s:88:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/src/Core/Curve25519/Ge\";i:7881;s:85:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/src/Core/Curve25519\";i:121645;s:74:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/src/Core\";i:452672;s:75:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/src/PHP52\";i:4116;s:85:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/src/Core32/Poly1305\";i:15965;s:85:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/src/Core32/ChaCha20\";i:6407;s:89:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/src/Core32/SecretStream\";i:3656;s:90:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/src/Core32/Curve25519/Ge\";i:8177;s:87:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/src/Core32/Curve25519\";i:122690;s:76:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/src/Core32\";i:436924;s:69:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/src\";i:1204643;s:69:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat/lib\";i:84845;s:65:\"/home/getmadto/public_html/getmad.today/wp-includes/sodium_compat\";i:1298275;s:58:\"/home/getmadto/public_html/getmad.today/wp-includes/assets\";i:11605;s:56:\"/home/getmadto/public_html/getmad.today/wp-includes/pomo\";i:53510;s:55:\"/home/getmadto/public_html/getmad.today/wp-includes/IXR\";i:33914;s:65:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/search\";i:17006;s:68:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/pullquote\";i:18862;s:64:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/table\";i:30710;s:67:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/archives\";i:6812;s:70:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/query-title\";i:1027;s:72:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/template-part\";i:8133;s:71:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/post-excerpt\";i:7543;s:83:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/query-pagination-numbers\";i:4670;s:64:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/embed\";i:19754;s:71:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/post-content\";i:439;s:69:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/categories\";i:7362;s:74:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/latest-comments\";i:7625;s:71:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/social-links\";i:56664;s:63:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/html\";i:6703;s:80:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/post-author-biography\";i:881;s:84:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/query-pagination-previous\";i:873;s:65:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/spacer\";i:10019;s:66:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/pattern\";i:324;s:68:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/tag-cloud\";i:5886;s:77:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/post-comments-form\";i:15260;s:75:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/query-no-results\";i:483;s:64:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/group\";i:15315;s:79:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/post-navigation-link\";i:920;s:65:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/avatar\";i:7577;s:76:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/comment-edit-link\";i:995;s:73:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/comments-title\";i:4520;s:75:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/term-description\";i:728;s:66:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/missing\";i:564;s:83:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/comments-pagination-next\";i:870;s:71:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/comment-date\";i:959;s:86:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/comments-pagination-numbers\";i:4253;s:75:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/comment-template\";i:4411;s:67:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/loginout\";i:510;s:77:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/navigation-submenu\";i:8840;s:64:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/video\";i:22069;s:78:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/post-featured-image\";i:23813;s:71:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/preformatted\";i:4338;s:63:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/more\";i:6746;s:78:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/comments-query-loop\";i:3955;s:77:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/comment-reply-link\";i:837;s:64:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/block\";i:4929;s:64:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/audio\";i:12016;s:72:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/legacy-widget\";i:501;s:69:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/post-terms\";i:4087;s:66:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/heading\";i:4933;s:74:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/comment-content\";i:4213;s:65:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/column\";i:880;s:64:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/query\";i:8879;s:64:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/quote\";i:11894;s:63:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/list\";i:4797;s:68:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/read-more\";i:5292;s:67:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/freeform\";i:42245;s:69:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/media-text\";i:19937;s:67:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/calendar\";i:5144;s:64:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/verse\";i:4425;s:68:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/site-logo\";i:20569;s:68:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/home-link\";i:714;s:69:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/navigation\";i:133558;s:87:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/comments-pagination-previous\";i:882;s:74:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/navigation-link\";i:17439;s:71:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/latest-posts\";i:16573;s:63:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/code\";i:7942;s:69:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/post-title\";i:4622;s:69:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/site-title\";i:4627;s:67:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/nextpage\";i:6021;s:68:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/page-list\";i:12661;s:71:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/widget-group\";i:319;s:68:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/separator\";i:14141;s:65:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/button\";i:21550;s:68:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/paragraph\";i:10449;s:71:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/site-tagline\";i:4317;s:72:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/post-template\";i:12873;s:70:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/post-author\";i:5670;s:66:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/columns\";i:14308;s:75:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/query-pagination\";i:13862;s:72:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/post-comments\";i:17063;s:62:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/rss\";i:11940;s:66:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/buttons\";i:15823;s:78:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/comments-pagination\";i:14298;s:66:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/gallery\";i:84238;s:63:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/file\";i:15738;s:68:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/shortcode\";i:8171;s:80:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/query-pagination-next\";i:861;s:64:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/image\";i:29712;s:78:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/comment-author-name\";i:1032;s:71:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/text-columns\";i:8990;s:64:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/cover\";i:82890;s:68:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/post-date\";i:950;s:70:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks/social-link\";i:5172;s:58:\"/home/getmadto/public_html/getmad.today/wp-includes/blocks\";i:1368177;s:57:\"/home/getmadto/public_html/getmad.today/wp-includes/fonts\";i:289826;s:74:\"/home/getmadto/public_html/getmad.today/wp-includes/SimplePie/Content/Type\";i:8015;s:69:\"/home/getmadto/public_html/getmad.today/wp-includes/SimplePie/Content\";i:8015;s:67:\"/home/getmadto/public_html/getmad.today/wp-includes/SimplePie/Parse\";i:20551;s:67:\"/home/getmadto/public_html/getmad.today/wp-includes/SimplePie/Cache\";i:39607;s:65:\"/home/getmadto/public_html/getmad.today/wp-includes/SimplePie/Net\";i:7493;s:66:\"/home/getmadto/public_html/getmad.today/wp-includes/SimplePie/HTTP\";i:11487;s:73:\"/home/getmadto/public_html/getmad.today/wp-includes/SimplePie/Decode/HTML\";i:17241;s:68:\"/home/getmadto/public_html/getmad.today/wp-includes/SimplePie/Decode\";i:17241;s:77:\"/home/getmadto/public_html/getmad.today/wp-includes/SimplePie/XML/Declaration\";i:7098;s:65:\"/home/getmadto/public_html/getmad.today/wp-includes/SimplePie/XML\";i:7098;s:61:\"/home/getmadto/public_html/getmad.today/wp-includes/SimplePie\";i:458625;s:66:\"/home/getmadto/public_html/getmad.today/wp-includes/block-supports\";i:65329;s:66:\"/home/getmadto/public_html/getmad.today/wp-includes/block-patterns\";i:8843;s:67:\"/home/getmadto/public_html/getmad.today/wp-includes/rest-api/search\";i:15180;s:67:\"/home/getmadto/public_html/getmad.today/wp-includes/rest-api/fields\";i:22314;s:70:\"/home/getmadto/public_html/getmad.today/wp-includes/rest-api/endpoints\";i:719276;s:60:\"/home/getmadto/public_html/getmad.today/wp-includes/rest-api\";i:842532;s:65:\"/home/getmadto/public_html/getmad.today/wp-includes/Requests/Auth\";i:1939;s:70:\"/home/getmadto/public_html/getmad.today/wp-includes/Requests/Transport\";i:30090;s:68:\"/home/getmadto/public_html/getmad.today/wp-includes/Requests/Utility\";i:3310;s:66:\"/home/getmadto/public_html/getmad.today/wp-includes/Requests/Proxy\";i:3488;s:80:\"/home/getmadto/public_html/getmad.today/wp-includes/Requests/Exception/Transport\";i:919;s:75:\"/home/getmadto/public_html/getmad.today/wp-includes/Requests/Exception/HTTP\";i:14365;s:70:\"/home/getmadto/public_html/getmad.today/wp-includes/Requests/Exception\";i:16778;s:67:\"/home/getmadto/public_html/getmad.today/wp-includes/Requests/Cookie\";i:3865;s:69:\"/home/getmadto/public_html/getmad.today/wp-includes/Requests/Response\";i:2135;s:60:\"/home/getmadto/public_html/getmad.today/wp-includes/Requests\";i:139225;s:59:\"/home/getmadto/public_html/getmad.today/wp-includes/js/crop\";i:20004;s:68:\"/home/getmadto/public_html/getmad.today/wp-includes/js/imgareaselect\";i:49024;s:77:\"/home/getmadto/public_html/getmad.today/wp-includes/js/mediaelement/renderers\";i:18880;s:67:\"/home/getmadto/public_html/getmad.today/wp-includes/js/mediaelement\";i:719403;s:64:\"/home/getmadto/public_html/getmad.today/wp-includes/js/jquery/ui\";i:807133;s:61:\"/home/getmadto/public_html/getmad.today/wp-includes/js/jquery\";i:1321204;s:63:\"/home/getmadto/public_html/getmad.today/wp-includes/js/thickbox\";i:31185;s:63:\"/home/getmadto/public_html/getmad.today/wp-includes/js/plupload\";i:490126;s:65:\"/home/getmadto/public_html/getmad.today/wp-includes/js/codemirror\";i:1287141;s:76:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/themes/inlite\";i:452642;s:76:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/themes/modern\";i:446221;s:69:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/themes\";i:898863;s:78:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/charmap\";i:31811;s:82:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/wpeditimage\";i:37713;s:76:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/media\";i:57914;s:80:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/textcolor\";i:16237;s:80:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/wpdialogs\";i:3761;s:80:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/wpgallery\";i:4806;s:77:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/wpview\";i:8994;s:76:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/lists\";i:97383;s:83:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/wpautoresize\";i:8332;s:80:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/wordpress\";i:50609;s:76:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/paste\";i:113193;s:84:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/wptextpattern\";i:11923;s:81:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/fullscreen\";i:7779;s:77:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/wplink\";i:26476;s:79:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/tabfocus\";i:5336;s:85:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/directionality\";i:2749;s:82:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/colorpicker\";i:4910;s:83:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/compat3x/css\";i:8179;s:79:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/compat3x\";i:21758;s:78:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/wpemoji\";i:5099;s:73:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/hr\";i:1347;s:76:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/image\";i:55874;s:75:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins/link\";i:32949;s:70:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/plugins\";i:606953;s:82:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/skins/lightgray/img\";i:2856;s:84:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/skins/lightgray/fonts\";i:155760;s:78:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/skins/lightgray\";i:210254;s:85:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/skins/wordpress/images\";i:14207;s:78:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/skins/wordpress\";i:22831;s:68:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/skins\";i:233085;s:68:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/langs\";i:15529;s:68:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce/utils\";i:18822;s:62:\"/home/getmadto/public_html/getmad.today/wp-includes/js/tinymce\";i:2853635;s:60:\"/home/getmadto/public_html/getmad.today/wp-includes/js/jcrop\";i:24976;s:66:\"/home/getmadto/public_html/getmad.today/wp-includes/js/dist/vendor\";i:2361964;s:71:\"/home/getmadto/public_html/getmad.today/wp-includes/js/dist/development\";i:178306;s:59:\"/home/getmadto/public_html/getmad.today/wp-includes/js/dist\";i:14923004;s:64:\"/home/getmadto/public_html/getmad.today/wp-includes/js/swfupload\";i:8715;s:54:\"/home/getmadto/public_html/getmad.today/wp-includes/js\";i:24135210;s:61:\"/home/getmadto/public_html/getmad.today/wp-includes/PHPMailer\";i:226303;s:55:\"/home/getmadto/public_html/getmad.today/wp-includes/ID3\";i:1143654;s:70:\"/home/getmadto/public_html/getmad.today/wp-includes/sitemaps/providers\";i:16471;s:60:\"/home/getmadto/public_html/getmad.today/wp-includes/sitemaps\";i:46403;s:64:\"/home/getmadto/public_html/getmad.today/wp-includes/theme-compat\";i:15442;s:65:\"/home/getmadto/public_html/getmad.today/wp-includes/random_compat\";i:43330;s:59:\"/home/getmadto/public_html/getmad.today/wp-includes/widgets\";i:157313;s:64:\"/home/getmadto/public_html/getmad.today/wp-includes/certificates\";i:233231;s:68:\"/home/getmadto/public_html/getmad.today/wp-includes/Text/Diff/Engine\";i:31662;s:70:\"/home/getmadto/public_html/getmad.today/wp-includes/Text/Diff/Renderer\";i:5535;s:61:\"/home/getmadto/public_html/getmad.today/wp-includes/Text/Diff\";i:44010;s:56:\"/home/getmadto/public_html/getmad.today/wp-includes/Text\";i:56929;s:64:\"/home/getmadto/public_html/getmad.today/wp-includes/images/media\";i:2419;s:66:\"/home/getmadto/public_html/getmad.today/wp-includes/images/crystal\";i:15541;s:66:\"/home/getmadto/public_html/getmad.today/wp-includes/images/smilies\";i:10082;s:62:\"/home/getmadto/public_html/getmad.today/wp-includes/images/wlw\";i:4413;s:58:\"/home/getmadto/public_html/getmad.today/wp-includes/images\";i:103747;s:61:\"/home/getmadto/public_html/getmad.today/wp-includes/customize\";i:173478;s:67:\"/home/getmadto/public_html/getmad.today/wp-includes/css/dist/editor\";i:91556;s:71:\"/home/getmadto/public_html/getmad.today/wp-includes/css/dist/components\";i:462356;s:73:\"/home/getmadto/public_html/getmad.today/wp-includes/css/dist/block-editor\";i:531331;s:64:\"/home/getmadto/public_html/getmad.today/wp-includes/css/dist/nux\";i:14748;s:73:\"/home/getmadto/public_html/getmad.today/wp-includes/css/dist/edit-widgets\";i:108787;s:75:\"/home/getmadto/public_html/getmad.today/wp-includes/css/dist/format-library\";i:10926;s:76:\"/home/getmadto/public_html/getmad.today/wp-includes/css/dist/block-directory\";i:17844;s:78:\"/home/getmadto/public_html/getmad.today/wp-includes/css/dist/customize-widgets\";i:27716;s:81:\"/home/getmadto/public_html/getmad.today/wp-includes/css/dist/list-reusable-blocks\";i:21928;s:70:\"/home/getmadto/public_html/getmad.today/wp-includes/css/dist/edit-post\";i:210007;s:74:\"/home/getmadto/public_html/getmad.today/wp-includes/css/dist/block-library\";i:696498;s:70:\"/home/getmadto/public_html/getmad.today/wp-includes/css/dist/edit-site\";i:211045;s:68:\"/home/getmadto/public_html/getmad.today/wp-includes/css/dist/widgets\";i:27172;s:76:\"/home/getmadto/public_html/getmad.today/wp-includes/css/dist/reusable-blocks\";i:5178;s:60:\"/home/getmadto/public_html/getmad.today/wp-includes/css/dist\";i:2437092;s:55:\"/home/getmadto/public_html/getmad.today/wp-includes/css\";i:3083615;s:51:\"/home/getmadto/public_html/getmad.today/wp-includes\";i:40583369;s:57:\"/home/getmadto/public_html/getmad.today/wp-admin/includes\";i:2903403;s:59:\"/home/getmadto/public_html/getmad.today/wp-admin/js/widgets\";i:139404;s:51:\"/home/getmadto/public_html/getmad.today/wp-admin/js\";i:1906208;s:53:\"/home/getmadto/public_html/getmad.today/wp-admin/user\";i:3418;s:54:\"/home/getmadto/public_html/getmad.today/wp-admin/maint\";i:7260;s:55:\"/home/getmadto/public_html/getmad.today/wp-admin/images\";i:390372;s:65:\"/home/getmadto/public_html/getmad.today/wp-admin/css/colors/light\";i:78840;s:69:\"/home/getmadto/public_html/getmad.today/wp-admin/css/colors/ectoplasm\";i:78210;s:66:\"/home/getmadto/public_html/getmad.today/wp-admin/css/colors/modern\";i:78738;s:65:\"/home/getmadto/public_html/getmad.today/wp-admin/css/colors/ocean\";i:75697;s:66:\"/home/getmadto/public_html/getmad.today/wp-admin/css/colors/coffee\";i:76468;s:68:\"/home/getmadto/public_html/getmad.today/wp-admin/css/colors/midnight\";i:79043;s:64:\"/home/getmadto/public_html/getmad.today/wp-admin/css/colors/blue\";i:78246;s:67:\"/home/getmadto/public_html/getmad.today/wp-admin/css/colors/sunrise\";i:78983;s:59:\"/home/getmadto/public_html/getmad.today/wp-admin/css/colors\";i:647862;s:52:\"/home/getmadto/public_html/getmad.today/wp-admin/css\";i:2512039;s:56:\"/home/getmadto/public_html/getmad.today/wp-admin/network\";i:124247;s:48:\"/home/getmadto/public_html/getmad.today/wp-admin\";i:8731608;s:39:\"/home/getmadto/public_html/getmad.today\";i:104610831;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/js\";i:19797;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/01-settings\";i:11555;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/02-tools\";i:6930;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/search\";i:5410;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/pullquote\";i:4215;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/table\";i:2937;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-comments\";i:815;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/html\";i:223;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/spacer\";i:227;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/group\";i:3040;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/utilities\";i:7640;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/video\";i:324;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/preformatted\";i:189;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/audio\";i:113;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/heading\";i:2977;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/quote\";i:5726;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/list\";i:1063;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/media-text\";i:1389;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/verse\";i:127;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/legacy\";i:1192;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/tag-clould\";i:201;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/navigation\";i:3141;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-posts\";i:8536;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/code\";i:537;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/separator\";i:2204;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/button\";i:5491;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/paragraph\";i:497;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/query-loop\";i:358;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/columns\";i:3506;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/rss\";i:5502;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/gallery\";i:801;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/file\";i:673;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/social-icons\";i:615;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/image\";i:1914;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks/cover\";i:4533;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/05-blocks\";i:78638;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/03-generic\";i:15944;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/04-elements\";i:12312;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/07-utilities\";i:13466;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass/06-components\";i:36750;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/sass\";i:183883;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/images\";i:2128437;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets/css\";i:302051;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/assets\";i:2634168;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/template-parts/excerpt\";i:4682;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/template-parts/header\";i:4222;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/template-parts/content\";i:6459;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/template-parts/footer\";i:307;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/template-parts/post\";i:1148;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/template-parts\";i:16818;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/classes\";i:76656;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone/inc\";i:63907;s:73:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentyone\";i:3670425;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/page-templates\";i:394;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/assets/fonts\";i:324705;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/assets/js/dev/vendors\";i:38817;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/assets/js/dev\";i:81339;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/assets/js/vendors\";i:27018;s:75:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/assets/js\";i:175139;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/assets/images\";i:16307;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/assets/css/compatibility\";i:199153;s:76:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/assets/css\";i:968838;s:72:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/assets\";i:1484989;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/woocommerce/checkout\";i:2227;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/woocommerce/cart/header-widget\";i:5620;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/woocommerce/cart\";i:16547;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/woocommerce/single-product/tabs\";i:2547;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/woocommerce/single-product\";i:5899;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/woocommerce\";i:28749;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/template-parts/header/widgets\";i:1167;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/template-parts/header\";i:4934;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/template-parts/pre-footer\";i:2464;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/template-parts/hero\";i:4262;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/template-parts/content\";i:9343;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/template-parts/preloader\";i:682;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/template-parts/footer/copyright\";i:739;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/template-parts/footer\";i:1284;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/template-parts/misc\";i:798;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/template-parts/topbar\";i:726;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/template-parts/entry/format\";i:8108;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/template-parts/entry\";i:21114;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/template-parts\";i:47481;s:75:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/languages\";i:109068;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/compatibility/woocommerce\";i:63829;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/compatibility/socialsnap\";i:3571;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/compatibility\";i:106474;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/utilities\";i:7945;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/admin/assets/js/libs\";i:242425;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/admin/assets/js/dev\";i:4409;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/admin/assets/js\";i:249275;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/admin/assets/css\";i:104354;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/admin/assets\";i:353629;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/admin/metabox\";i:19923;s:75:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/admin\";i:407863;s:74:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/core\";i:50453;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/assets/js/dev\";i:108037;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/assets/js\";i:187928;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/assets/images\";i:19572;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/assets/css\";i:76619;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/assets\";i:284119;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/controls/spacing\";i:16825;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/controls/text\";i:2337;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/controls/design-options\";i:41350;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/controls/checkbox-group\";i:12942;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/controls/color\";i:33841;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/controls/background\";i:23855;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/controls/alignment\";i:20291;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/controls/heading\";i:9836;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/controls/textarea\";i:2527;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/controls/select\";i:11429;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/controls/sortable\";i:9155;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/controls/toggle\";i:7841;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/controls/typography\";i:42926;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/controls/range\";i:28491;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/controls/button\";i:5935;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/controls/info\";i:3883;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/controls/radio-image\";i:7062;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/controls/widget\";i:33931;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/controls\";i:319979;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/widgets\";i:22846;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer/settings\";i:180234;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc/customizer\";i:849108;s:69:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra/inc\";i:1720584;s:65:\"/home/getmadto/public_html/getmad.today/wp-content/themes/sinatra\";i:3572763;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/module-customizer\";i:14381;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/compat\";i:8707;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/scripts/stores\";i:58884;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/scripts/ext\";i:408347;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/scripts/utils\";i:19996;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/scripts\";i:981707;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/api/rest\";i:7776;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/api\";i:18979;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/styles/images\";i:47225;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/styles\";i:416027;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/img\";i:7212;s:115:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/scripts/src\";i:1420;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/scripts\";i:3469;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/themes/inlite\";i:131875;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/themes/modern\";i:130746;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/themes/mobile\";i:164139;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/themes\";i:426760;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce-skin/img\";i:2856;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts\";i:131989;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce-skin\";i:211353;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/charmap\";i:8601;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/media\";i:16576;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/table\";i:118578;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/textcolor\";i:4927;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/help/img\";i:13208;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/help\";i:21387;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/contextmenu\";i:1824;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/toc\";i:2941;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/importcss\";i:3131;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/bbcode\";i:2850;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/wpview\";i:2635;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/anchor\";i:1446;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/lists\";i:26968;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/spellchecker\";i:10308;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/print\";i:465;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/insertdatetime\";i:2633;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/pagebreak\";i:1436;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/advlist\";i:2226;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/paste\";i:30837;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/nonbreaking\";i:1012;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/fullscreen\";i:2184;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/fullpage\";i:7168;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/legacyoutput\";i:3402;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/tabfocus\";i:1614;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/directionality\";i:857;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/visualchars\";i:5321;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/colorpicker\";i:1349;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/visualblocks/css\";i:5473;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/visualblocks\";i:7164;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/textpattern\";i:7405;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/searchreplace\";i:7352;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/preview\";i:2044;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/template\";i:5191;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/code\";i:1024;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/codesample/css\";i:2334;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/codesample\";i:21684;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/imagetools\";i:32354;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autoresize\";i:2074;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/noneditable\";i:1540;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/hr\";i:428;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/wordcount\";i:12035;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autosave\";i:2856;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img\";i:5390;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/emoticons\";i:6461;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autolink\";i:2127;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/save\";i:1426;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/image\";i:15852;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/link\";i:8940;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins\";i:420633;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/skins/lightgray/img\";i:2856;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts\";i:160384;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/skins/lightgray\";i:243046;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/skins\";i:243046;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/langs\";i:151;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors\";i:1667770;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/css/block-editor\";i:149124;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/css/mediaelement-images\";i:28464;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/css\";i:281831;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets/backports\";i:21913;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/assets\";i:1982195;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/i18n\";i:54791;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/post/type\";i:4141;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/post/query\";i:759;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/post/taxonomy\";i:4132;s:115:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/post\";i:9032;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder\";i:299170;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder/build\";i:8830240;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/frontend-builder\";i:11358413;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/ajax-data\";i:12544;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/icon-manager\";i:351127;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/woocommerce/placeholder\";i:4168;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/checkout\";i:13532;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/global\";i:7453;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/cart\";i:14160;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/woocommerce/templates\";i:35145;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/woocommerce\";i:39313;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/dynamic-assets/assets/js\";i:426429;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/dynamic-assets/assets/css\";i:1528363;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/dynamic-assets/assets\";i:1954792;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/dynamic-assets\";i:2054171;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/background-masks/pattern\";i:122429;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/background-masks/mask\";i:1901192;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/background-masks\";i:2073244;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/global-presets\";i:31219;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/gutenberg/blocks\";i:31579;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/gutenberg/utils\";i:14266;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/gutenberg\";i:69763;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/content-retriever/retrievers\";i:3345;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/content-retriever\";i:4301;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature/display-conditions\";i:19954;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/feature\";i:4955028;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/languages\";i:10844095;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/templates\";i:3008;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/tests/codeception/wpunit\";i:897;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/tests/codeception\";i:897;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/tests\";i:897;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/plugin-compat/scripts\";i:1878;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/plugin-compat\";i:142945;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/theme-compat\";i:937;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/module/field/attribute/composite/type\";i:1806;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/module/field/attribute/composite\";i:2433;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/module/field/attribute\";i:2433;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/module/field/template/border\";i:3026;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/module/field/template\";i:7109;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/module/field/display-conditions\";i:62119;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/module/field\";i:310587;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/module/type\";i:32305;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/module/woocommerce\";i:491577;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/module/helpers/motion\";i:11631;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/module/helpers\";i:341389;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/module/settings/migration\";i:240997;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/module/settings\";i:255073;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/module\";i:2858462;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/post/type\";i:6606;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/post/query\";i:1785;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/post/taxonomy\";i:8231;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/post\";i:19748;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder/images\";i:420543;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/builder\";i:34165201;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/functions\";i:24937;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes/widgets\";i:30020;s:71:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/includes\";i:34242466;s:65:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/js\";i:1467371;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/components/data\";i:42355;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/components/cache\";i:8577;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/components/mu-plugins\";i:4814;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/components/api/spam\";i:17558;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/components/api/social\";i:814;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/components/api/email\";i:182551;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/components/api\";i:230816;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/components/post\";i:15440;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/components/lib\";i:29861;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/components\";i:739769;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/admin/fonts/fontawesome\";i:2946412;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/admin/fonts/modules/base\";i:36396;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/admin/fonts/modules/all\";i:578518;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/admin/fonts/modules/social\";i:62947;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/admin/fonts/modules\";i:677861;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/admin/fonts\";i:3797176;s:76:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/admin/js\";i:145043;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/admin/images/svg\";i:13931;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/admin/images/epanel\";i:22958;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/admin/images\";i:55743;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/admin/css\";i:84742;s:73:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/admin\";i:4082704;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core/json-data\";i:128711;s:67:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/core\";i:5042920;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/et-pagebuilder\";i:10666;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/psd\";i:57197;s:72:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/epanel/js\";i:43128;s:76:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/epanel/images\";i:92754;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/epanel/shortcodes/js\";i:17705;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/epanel/shortcodes/images\";i:18431;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/epanel/shortcodes/css\";i:39931;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/epanel/shortcodes\";i:120166;s:73:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/epanel/css\";i:42385;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/epanel/google-fonts/images\";i:131966;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/epanel/google-fonts\";i:144106;s:69:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/epanel\";i:554577;s:67:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/lang\";i:2127241;s:69:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/images\";i:2434;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/cloud/i18n/library\";i:18455;s:73:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/cloud/i18n\";i:37816;s:74:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/cloud/fonts\";i:4828;s:75:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/cloud/images\";i:455;s:74:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/cloud/build\";i:1151461;s:68:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/cloud\";i:1207038;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/css/tinymce-skin/img\";i:2856;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/css/tinymce-skin/fonts\";i:131989;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/css/tinymce-skin\";i:211353;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/css/dynamic-assets\";i:194307;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/css\";i:450415;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/common/scripts\";i:137960;s:69:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi/common\";i:139896;s:62:\"/home/getmadto/public_html/getmad.today/wp-content/themes/Divi\";i:51551934;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentytwo/assets/videos\";i:468755;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans\";i:301601;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentytwo/assets/fonts/inter\";i:809786;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro\";i:1409152;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex\";i:423403;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentytwo/assets/fonts\";i:4348514;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentytwo/assets/images\";i:1453963;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentytwo/assets\";i:6271232;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentytwo/styles\";i:11351;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentytwo/templates\";i:13966;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentytwo/inc/patterns\";i:157180;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentytwo/inc\";i:161123;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentytwo/parts\";i:2724;s:73:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwentytwo\";i:6643877;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwenty/assets/fonts/inter\";i:460724;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwenty/assets/fonts\";i:460724;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwenty/assets/js\";i:42008;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwenty/assets/images\";i:48358;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwenty/assets/css\";i:114276;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwenty/assets\";i:665366;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwenty/template-parts\";i:22933;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwenty/templates\";i:678;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwenty/classes\";i:102533;s:74:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwenty/inc\";i:56320;s:70:\"/home/getmadto/public_html/getmad.today/wp-content/themes/twentytwenty\";i:1775141;s:57:\"/home/getmadto/public_html/getmad.today/wp-content/themes\";i:67214168;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/font-awesome/includes\";i:204908;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/font-awesome/compat-js/build\";i:1439568;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/font-awesome/compat-js\";i:1439568;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/font-awesome/admin/views\";i:89;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/font-awesome/admin/build\";i:1314488;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/font-awesome/admin\";i:1314605;s:71:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/font-awesome\";i:3025023;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/enable-media-replace/img\";i:112415;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/enable-media-replace/js\";i:13102;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/enable-media-replace/languages\";i:72307;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/enable-media-replace/scss\";i:23070;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/enable-media-replace/classes/external\";i:8752;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/enable-media-replace/classes\";i:82088;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/enable-media-replace/views\";i:25957;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/enable-media-replace/build/shortpixel/log/src\";i:14699;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/enable-media-replace/build/shortpixel/log\";i:15097;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/enable-media-replace/build/shortpixel/notices/src/css\";i:1102;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/enable-media-replace/build/shortpixel/notices/src\";i:17830;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/enable-media-replace/build/shortpixel/notices\";i:18480;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/enable-media-replace/build/shortpixel\";i:36848;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/enable-media-replace/build\";i:36848;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/enable-media-replace/css\";i:47824;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/enable-media-replace\";i:461936;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/movabletype-importer/languages\";i:4380;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/movabletype-importer\";i:22941;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/archiver\";i:30176;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/interfaces\";i:4204;s:76:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/menus\";i:89175;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/scripts\";i:22056;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/engines/prime-mover-panel/res/img\";i:2378;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/engines/prime-mover-panel/res/js\";i:48954;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/engines/prime-mover-panel/res/css/text-security\";i:504756;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/engines/prime-mover-panel/res/css\";i:507274;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/engines/prime-mover-panel/res\";i:558606;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/engines/prime-mover-panel/utilities\";i:62485;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/engines/prime-mover-panel/app\";i:118738;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/engines/prime-mover-panel/advance\";i:31359;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/engines/prime-mover-panel/vendor/composer\";i:26275;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/engines/prime-mover-panel/vendor\";i:26453;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/engines/prime-mover-panel\";i:805642;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/engines\";i:805642;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/compatibility\";i:146086;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/global\";i:15931;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/res/img\";i:3747;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/res/js/zip-library\";i:187512;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/res/js\";i:502291;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/res/css/fonts\";i:9403;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/res/css\";i:27156;s:74:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/res\";i:533194;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/utilities\";i:557566;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/assets/img\";i:56369;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/assets/js\";i:10689;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/assets/css/admin\";i:49683;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/assets/css\";i:52870;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/assets\";i:120015;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/includes/managers\";i:95908;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/includes/sdk/Exceptions\";i:3169;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/includes/sdk\";i:48619;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/includes/debug\";i:2948;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/includes/supplements\";i:2700;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/includes/entities\";i:46965;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/includes/customizer\";i:7924;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/includes\";i:1553125;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/languages\";i:1024918;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/templates/debug\";i:14061;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/templates/partials\";i:4970;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/templates/js\";i:4460;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/templates/plugin-info\";i:7012;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/templates/forms/deactivation\";i:22317;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/templates/forms\";i:153474;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/templates/account/partials\";i:46690;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/templates/account\";i:61841;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius/templates\";i:468572;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/freemius\";i:3238472;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/dependency-checks\";i:32693;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/languages\";i:245129;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/classes\";i:752300;s:76:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/users\";i:63756;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/vendor/composer\";i:59361;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/vendor\";i:59539;s:74:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/cli\";i:59032;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/build/ifsnop/mysqldump-php/src/Ifsnop/Mysqldump\";i:74979;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/build/ifsnop/mysqldump-php/src/Ifsnop\";i:74979;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/build/ifsnop/mysqldump-php/src\";i:74979;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/build/ifsnop/mysqldump-php\";i:74979;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/build/ifsnop\";i:74979;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/build/splitbrain/php-archive/src\";i:77676;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/build/splitbrain/php-archive\";i:77676;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/build/splitbrain\";i:77676;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/build/wp-cli/wp-config-transformer/src\";i:11747;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/build/wp-cli/wp-config-transformer\";i:11747;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/build/wp-cli\";i:11747;s:76:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/build\";i:164402;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover/streams\";i:42508;s:70:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/prime-mover\";i:6949234;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/assets\";i:2605;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/cache/html\";i:0;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/cache/js\";i:13686244;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/cache/css\";i:18495796;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/cache\";i:32182093;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/sprites\";i:44;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/assets2\";i:468;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/jquery-ui/images\";i:36998;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/jquery-ui\";i:103892;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/assets3\";i:994;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/js\";i:8952;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/filetree/images\";i:30038;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/filetree\";i:49793;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/lazysizes\";i:34103;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/core/icons\";i:57812;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/core/js\";i:10732;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/core/images\";i:656;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/core/css\";i:5364;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/core\";i:74564;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/bootstrap/js\";i:2487608;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/bootstrap/css\";i:369228;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/bootstrap\";i:2856836;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/images\";i:49067;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/chosen-js\";i:181804;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/css\";i:4339;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media/css-element-queries\";i:12235;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/media\";i:35561833;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/languages\";i:149843;s:76:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/logs\";i:44;s:75:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/tmp\";i:44;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Service\";i:18327;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Platform\";i:25858;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Core/Service\";i:29932;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Core/Model\";i:4450;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Core/Html/Callbacks\";i:26023;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Core/Html\";i:115851;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Core/PageCache\";i:27377;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Core/Css/Callbacks\";i:30164;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Core/Css/Sprite/Handler\";i:11420;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Core/Css/Sprite\";i:44593;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Core/Css\";i:98029;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Core/Interfaces\";i:13090;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Core/Admin/Ajax\";i:8920;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Core/Admin\";i:58063;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Core/Plugin\";i:4904;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Core\";i:427857;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Log\";i:991;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Model\";i:9299;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Html/Renderer\";i:27406;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Html\";i:66603;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/View\";i:7538;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Controller\";i:22100;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src/Plugin\";i:23321;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/src\";i:605213;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/tmpl\";i:39370;s:150:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/container-interop/container-interop/src/Interop/Container/Exception\";i:737;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/container-interop/container-interop/src/Interop/Container\";i:1109;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/container-interop/container-interop/src/Interop\";i:1109;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/container-interop/container-interop/src\";i:1109;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/container-interop/container-interop\";i:2193;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/container-interop\";i:2193;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/composer/ca-bundle/res\";i:215352;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/composer/ca-bundle/src\";i:17402;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/composer/ca-bundle\";i:233806;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/composer\";i:661171;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/symfony/polyfill-mbstring/Resources/unidata\";i:52093;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/symfony/polyfill-mbstring/Resources\";i:52093;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/symfony/polyfill-mbstring\";i:101020;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/symfony\";i:101020;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/webmozart/assert/src\";i:172132;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/webmozart/assert\";i:173216;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/webmozart\";i:173216;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/psr/log/Psr/Log\";i:11604;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/psr/log/Psr\";i:11604;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/psr/log\";i:12689;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/psr/http-factory/src\";i:4947;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/psr/http-factory\";i:6011;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/psr/http-message/src\";i:46469;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/psr/http-message\";i:47554;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/psr/http-client/src\";i:1949;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/psr/http-client\";i:3034;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/psr/container/src\";i:1362;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/psr/container\";i:2507;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/psr\";i:71795;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/view/src\";i:5565;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/view\";i:24083;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/renderer/src\";i:17867;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/renderer\";i:45011;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/uri/src\";i:21543;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/uri\";i:40225;s:115:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/string/src/phputf8/native\";i:16515;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/string/src/phputf8/utils\";i:53586;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/string/src/phputf8/mbstring\";i:4072;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/string/src/phputf8\";i:122173;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/string/src\";i:159292;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/string\";i:178029;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/input/src\";i:17560;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/input\";i:35376;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/utilities/src\";i:35769;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/utilities\";i:54287;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/http/src/Transport\";i:28989;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/http/src/Exception\";i:1950;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/http/src\";i:49953;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/http\";i:67769;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/filesystem/src/Support\";i:1642;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/filesystem/src/Stream\";i:6193;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/filesystem/src/Exception\";i:1079;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/filesystem/src/Clients\";i:48499;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/filesystem/src\";i:164267;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/filesystem/meta/language/en-GB\";i:722;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/filesystem/meta/language\";i:722;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/filesystem/meta\";i:722;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/filesystem\";i:182805;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/controller/src\";i:2906;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/controller\";i:20722;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/di/src/Exception\";i:2008;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/di/src\";i:30511;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/di\";i:49080;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/model/src\";i:3537;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/model\";i:21353;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/registry/src/Format\";i:22479;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/registry/src\";i:46671;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/registry\";i:65189;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/filter/src\";i:39697;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla/filter\";i:58266;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/joomla\";i:842195;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/codealfa/minify/src\";i:24388;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/codealfa/minify\";i:59581;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/codealfa/regextokenizer/src/Debug\";i:1707;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/codealfa/regextokenizer/src\";i:8919;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/codealfa/regextokenizer\";i:8919;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/codealfa\";i:68500;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/illuminate/view/Concerns\";i:21711;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/illuminate/view/Compilers/Concerns\";i:32716;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/illuminate/view/Compilers\";i:67748;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/illuminate/view/Engines\";i:6328;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/illuminate/view/Middleware\";i:1458;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/illuminate/view\";i:153079;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/illuminate/events\";i:23224;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/illuminate/support/Traits\";i:32727;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/illuminate/support\";i:254345;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/illuminate/filesystem\";i:48030;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/illuminate/container\";i:47508;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/illuminate/contracts/Support\";i:4187;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/illuminate/contracts/Container\";i:5312;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/illuminate/contracts/Events\";i:1814;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/illuminate/contracts/View\";i:2805;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/illuminate/contracts\";i:14118;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/illuminate\";i:540304;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-servicemanager/src/Initializer\";i:586;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-servicemanager/src/Proxy\";i:2113;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-servicemanager/src/Factory\";i:4234;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-servicemanager/src/Exception\";i:7637;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-servicemanager/src/AbstractFactory\";i:10770;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-servicemanager/src/Tool\";i:21448;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-servicemanager/src\";i:100925;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-servicemanager\";i:137298;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-cache/src/Service\";i:15151;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-cache/src/Storage/Adapter\";i:54428;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-cache/src/Storage/Plugin\";i:26115;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-cache/src/Storage\";i:110714;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-cache/src/Exception\";i:1622;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-cache/src/Pattern\";i:43680;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-cache/src\";i:173929;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-cache\";i:218293;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-paginator/src/Adapter/Service\";i:7786;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-paginator/src/Adapter/Exception\";i:1385;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-paginator/src/Adapter\";i:20865;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-paginator/src/ScrollingStyle\";i:4889;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-paginator/src/Exception\";i:578;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-paginator/src\";i:74573;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-paginator\";i:91256;s:156:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem/Exception\";i:2271;s:146:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem\";i:16108;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src\";i:75753;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/benchmark\";i:687;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem\";i:76440;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-diactoros/src/functions\";i:19253;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-diactoros/src/Exception\";i:7468;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-diactoros/src\";i:58684;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-diactoros\";i:58684;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-serializer/src/Adapter\";i:63202;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-serializer/src/Exception\";i:1130;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-serializer/src\";i:77693;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-serializer\";i:77693;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-log/src/Filter\";i:11617;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-log/src/Processor\";i:6564;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-log/src/Exception\";i:594;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-log/src/Formatter\";i:23320;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-log/src/Writer/ChromePhp\";i:1547;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-log/src/Writer/FirePhp\";i:2681;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-log/src/Writer/Factory\";i:4543;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-log/src/Writer\";i:70015;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-log/src\";i:172010;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-log\";i:172010;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-eventmanager/src/Filter\";i:3900;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-eventmanager/src/Exception\";i:889;s:115:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-eventmanager/src\";i:51946;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-eventmanager\";i:51946;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-zendframework-bridge/config\";i:23649;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-zendframework-bridge/src\";i:22783;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-zendframework-bridge\";i:59288;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-json/src/Exception\";i:669;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-json/src\";i:51377;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-json\";i:51377;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-stdlib/src/StringWrapper\";i:27094;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-stdlib/src/ArrayUtils\";i:857;s:115:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-stdlib/src/Guard\";i:3031;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-stdlib/src/Exception\";i:1395;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-stdlib/src\";i:120272;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas/laminas-stdlib\";i:140921;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor/laminas\";i:1135206;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib/vendor\";i:3607265;s:75:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize/lib\";i:4251848;s:71:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jch-optimize\";i:40021068;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/disable-comments-rb/assets/images\";i:469225;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/disable-comments-rb/assets\";i:469225;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/disable-comments-rb/languages\";i:13945;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/disable-comments-rb\";i:516881;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/assets/img\";i:36553;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/assets/js/jstree\";i:444517;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/assets/js\";i:472993;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/assets/dist/fonts\";i:28395;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/assets/dist/js\";i:559106;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/assets/dist/css\";i:264402;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/assets/dist\";i:851903;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/assets/css\";i:4279;s:74:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/assets\";i:1365728;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/includes/Support/ACF\";i:3745;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/includes/Support\";i:24306;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/includes/Page\";i:4134;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/includes/Recommended/assets/js\";i:6491;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/includes/Recommended/assets\";i:6491;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/includes/Recommended/views\";i:9737;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/includes/Recommended\";i:36049;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/includes/Classes\";i:34491;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/includes/Model\";i:8154;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/includes/Controller/Attachment\";i:285;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/includes/Controller\";i:41464;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/includes/Blocks\";i:2854;s:76:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/includes\";i:169149;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/i18n/languages\";i:769320;s:72:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/i18n\";i:769320;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/blocks/filebird-gallery/dist\";i:19092;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/blocks/filebird-gallery\";i:19092;s:74:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/blocks\";i:19092;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/views/pages/settings\";i:92574;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/views/pages\";i:95231;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/views/particle\";i:190;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/views/notices\";i:1398;s:73:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird/views\";i:96819;s:67:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird\";i:2448225;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/assets/js/min\";i:234291;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/assets/js/front-end/controllers\";i:6981;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/assets/js/front-end/views\";i:6612;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/assets/js/front-end/models\";i:6577;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/assets/js/front-end\";i:20849;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/assets/js/builder/controllers\";i:41688;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/assets/js/builder/views\";i:19167;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/assets/js/builder/models\";i:7565;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/assets/js/builder\";i:68935;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/assets/js/lib\";i:15168;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/assets/js\";i:339243;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/assets/scss/front-end\";i:5407;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/assets/scss/admin\";i:2640;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/assets/scss\";i:8047;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/assets/css\";i:32396;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/assets\";i:379686;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/includes/Templates\";i:5514;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/includes/Config\";i:2377;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/includes/Admin\";i:718;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/includes\";i:8609;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/deprecated/includes/display/processing\";i:9061;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/deprecated/includes/display/form\";i:9690;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/deprecated/includes/display\";i:38365;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/deprecated/includes/fields\";i:4654;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/deprecated/includes/admin\";i:17701;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/deprecated/includes/deprecated\";i:43165;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/deprecated/includes\";i:109236;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/deprecated/js/min\";i:26400;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/deprecated/js/dev\";i:46973;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/deprecated/js\";i:73373;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/deprecated/lang\";i:9686;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/deprecated/css\";i:3394;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/deprecated\";i:200284;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part/lib\";i:11514;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-multi-part\";i:625375;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/assets/inc/select2/4\";i:582442;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/assets/inc/select2/3\";i:268765;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/assets/inc/select2\";i:851207;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/assets/inc/timepicker\";i:130956;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/assets/inc/color-picker-alpha\";i:27318;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/assets/inc/datepicker/images\";i:11397;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/assets/inc/datepicker\";i:61331;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/assets/inc\";i:1070812;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/assets/images\";i:17845;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/assets/build/js\";i:1428139;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/assets/build/css\";i:505492;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/assets/build\";i:1933631;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/assets\";i:3022288;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/includes/locations\";i:49186;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/includes/fields\";i:304932;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/includes/api\";i:127105;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/includes/rest-api\";i:31741;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/includes/admin/tools\";i:16942;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/includes/admin/views\";i:31844;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/includes/admin\";i:112394;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/includes/ajax\";i:22895;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/includes/legacy\";i:1777;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/includes/walkers\";i:5692;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/includes/forms\";i:76109;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/includes\";i:996199;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields/lang\";i:5058787;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/advanced-custom-fields\";i:9137658;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/includes/register-hooks\";i:4407;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/includes/admin/network-fields\";i:7818;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/includes/admin/settings-fields\";i:39984;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/includes/admin\";i:65674;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/includes\";i:104607;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/data/json\";i:46418;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/data\";i:46447;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/public/js\";i:12142;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/public/images/wpel-icons\";i:10871;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/public/images\";i:453537;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/public/css/font\";i:16319;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/public/css\";i:29327;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/public\";i:495035;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/libs/wprun\";i:15222;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/libs/fwp/component-bases\";i:13334;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/libs/fwp/filter-hooks\";i:3152;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/libs/fwp\";i:34783;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/libs\";i:50034;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/templates/settings-page/help-tabs\";i:1514;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/templates/settings-page/tab-contents\";i:4050;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/templates/settings-page\";i:13902;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/templates/partials/tab-contents\";i:8554;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/templates/partials\";i:10419;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/templates/network-page/help-tabs\";i:390;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/templates/network-page/tab-contents\";i:1020;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/templates/network-page\";i:3639;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/templates\";i:28622;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/wf-flyout/icons\";i:45866;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links/wf-flyout\";i:57476;s:76:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/wp-external-links\";i:802805;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/compat\";i:8707;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/scripts/stores\";i:58884;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/scripts/frontend\";i:582289;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/scripts/ext\";i:409586;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/scripts/utils\";i:19996;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/scripts\";i:1565235;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/api/rest\";i:7776;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/api\";i:18979;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/styles/images\";i:47225;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/styles\";i:2045923;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/img\";i:7212;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/scripts\";i:2049;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/themes/inlite\";i:131875;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/themes/modern\";i:130746;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/themes/mobile\";i:164139;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/themes\";i:426760;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/tinymce-skin/img\";i:2856;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts\";i:131989;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/tinymce-skin\";i:211353;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/charmap\";i:8601;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/media\";i:16576;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/table\";i:118578;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/textcolor\";i:4927;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/help/img\";i:13208;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/help\";i:21387;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/contextmenu\";i:1824;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/toc\";i:2941;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/importcss\";i:3131;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/bbcode\";i:2850;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/wpview\";i:2635;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/anchor\";i:1446;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/lists\";i:26968;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/spellchecker\";i:10308;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/print\";i:465;s:143:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/insertdatetime\";i:2633;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/pagebreak\";i:1436;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/advlist\";i:2226;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/paste\";i:30837;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/nonbreaking\";i:1012;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/fullscreen\";i:2184;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/fullpage\";i:7168;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/legacyoutput\";i:3402;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/tabfocus\";i:1614;s:143:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/directionality\";i:857;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/visualchars\";i:5321;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/colorpicker\";i:1349;s:145:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/visualblocks/css\";i:5473;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/visualblocks\";i:7164;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/textpattern\";i:7405;s:142:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/searchreplace\";i:7352;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/preview\";i:2044;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/template\";i:5191;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/code\";i:1024;s:143:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/codesample/css\";i:2334;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/codesample\";i:21684;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/imagetools\";i:32354;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/autoresize\";i:2074;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/noneditable\";i:1540;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/hr\";i:428;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/wordcount\";i:12035;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/autosave\";i:2856;s:142:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img\";i:5390;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/emoticons\";i:6461;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/autolink\";i:2127;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/save\";i:1426;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/image\";i:15852;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins/link\";i:8940;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/plugins\";i:420633;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/skins/lightgray/img\";i:2856;s:142:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts\";i:160384;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/skins/lightgray\";i:243046;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/skins\";i:243046;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors/langs\";i:151;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/vendors\";i:1667770;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/css/block-editor\";i:139838;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/css/mediaelement-images\";i:28464;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/css\";i:369971;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets/backports\";i:21913;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/assets\";i:2068915;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/i18n\";i:54791;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/theme-builder/post/type\";i:4141;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/theme-builder/post/query\";i:759;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/theme-builder/post/taxonomy\";i:4132;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/theme-builder/post\";i:9032;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/theme-builder\";i:299170;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder/build\";i:8742089;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/frontend-builder\";i:11356982;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/ajax-data\";i:12544;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/icon-manager\";i:351127;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/woocommerce/placeholder\";i:4168;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/woocommerce/templates/checkout\";i:13532;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/woocommerce/templates/global\";i:7453;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/woocommerce/templates/cart\";i:14160;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/woocommerce/templates\";i:35145;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/woocommerce\";i:39313;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/dynamic-assets/assets/js\";i:426429;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/dynamic-assets/assets/css\";i:1699194;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/dynamic-assets/assets\";i:2125623;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/dynamic-assets\";i:2225002;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/background-masks/pattern\";i:122429;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/background-masks/mask\";i:1901192;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/background-masks\";i:2073244;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/global-presets\";i:31219;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/gutenberg/blocks\";i:31579;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/gutenberg/utils\";i:14266;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/gutenberg\";i:69763;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/content-retriever/retrievers\";i:3345;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/content-retriever\";i:4301;s:115:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature/display-conditions\";i:19954;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/feature\";i:5125859;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/languages\";i:10844095;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/templates\";i:3008;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/tests/codeception/wpunit\";i:897;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/tests/codeception\";i:897;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/tests\";i:897;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/plugin-compat/scripts\";i:1878;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/plugin-compat\";i:142945;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/theme-compat\";i:937;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/module/field/attribute/composite/type\";i:1806;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/module/field/attribute/composite\";i:2433;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/module/field/attribute\";i:2433;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/module/field/template/border\";i:3026;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/module/field/template\";i:7109;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/module/field/display-conditions\";i:62119;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/module/field\";i:310587;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/module/type\";i:32305;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/module/woocommerce\";i:491577;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/module/helpers/motion\";i:11631;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/module/helpers\";i:341389;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/module/settings/migration\";i:240997;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/module/settings\";i:255073;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/module\";i:2858462;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/post/type\";i:6606;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/post/query\";i:1785;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/post/taxonomy\";i:8231;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/post\";i:19748;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder/images\";i:420543;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes/builder\";i:36548025;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/includes\";i:36548877;s:74:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/js\";i:805969;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/components/data\";i:42355;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/components/cache\";i:8577;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/components/mu-plugins\";i:4814;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/components/api/spam\";i:17558;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/components/api/social\";i:814;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/components/api/email\";i:182551;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/components/api\";i:230816;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/components/post\";i:15440;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/components/lib\";i:29861;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/components\";i:739769;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/admin/fonts/fontawesome\";i:2946412;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/admin/fonts/modules/base\";i:36396;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/admin/fonts/modules/all\";i:578518;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/admin/fonts/modules/social\";i:62947;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/admin/fonts/modules\";i:677861;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/admin/fonts\";i:3797176;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/admin/js\";i:145043;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/admin/images/svg\";i:13931;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/admin/images/epanel\";i:22958;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/admin/images\";i:55743;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/admin/css\";i:84742;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/admin\";i:4082704;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core/json-data\";i:128711;s:76:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/core\";i:5042920;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/theme-compat/js\";i:6888;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/theme-compat/css\";i:31295;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/theme-compat\";i:103508;s:76:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/lang\";i:244630;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/images\";i:23515;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/cloud/i18n/library\";i:18455;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/cloud/i18n\";i:37816;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/cloud/fonts\";i:4828;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/cloud/images\";i:455;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/cloud/build\";i:1126803;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/cloud\";i:1182380;s:75:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/css\";i:1705186;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/common/scripts\";i:137960;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/common\";i:139896;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/includes\";i:30602;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/themes/inlite\";i:131875;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/themes/modern\";i:130746;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/themes/mobile\";i:164139;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/themes\";i:426760;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/tinymce-skin/img\";i:2856;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/tinymce-skin/fonts\";i:131989;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/tinymce-skin\";i:211353;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/charmap\";i:8601;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/media\";i:16576;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/table\";i:118578;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/textcolor\";i:4927;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/help/img\";i:13208;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/help\";i:21387;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/contextmenu\";i:1824;s:115:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/toc\";i:2941;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/importcss\";i:3131;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/bbcode\";i:2850;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/wpview\";i:2635;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/anchor\";i:1446;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/lists\";i:26968;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/spellchecker\";i:10308;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/print\";i:465;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/insertdatetime\";i:2633;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/pagebreak\";i:1436;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/advlist\";i:2226;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/paste\";i:30837;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/nonbreaking\";i:1012;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/fullscreen\";i:2184;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/fullpage\";i:7168;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/legacyoutput\";i:3402;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/tabfocus\";i:1614;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/directionality\";i:857;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/visualchars\";i:5321;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/colorpicker\";i:1349;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/visualblocks/css\";i:5473;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/visualblocks\";i:7164;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/textpattern\";i:7405;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/searchreplace\";i:7352;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/preview\";i:2044;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/template\";i:5191;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/code\";i:1024;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/codesample/css\";i:2334;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/codesample\";i:21684;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/imagetools\";i:32354;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/autoresize\";i:2074;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/noneditable\";i:1540;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/hr\";i:428;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/wordcount\";i:12035;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/autosave\";i:2856;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/emoticons/img\";i:5390;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/emoticons\";i:6461;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/autolink\";i:2127;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/save\";i:1426;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/image\";i:15852;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins/link\";i:8940;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/plugins\";i:420633;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/skins/lightgray/img\";i:2856;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/skins/lightgray/fonts\";i:160384;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/skins/lightgray\";i:243046;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/skins\";i:243046;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce/langs\";i:151;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js/tinymce\";i:1667642;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce/js\";i:1667642;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js/tinymce\";i:1767665;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/js\";i:1786808;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/css/fonts\";i:157831;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard/css\";i:185612;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder/dashboard\";i:2070563;s:71:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-builder\";i:48625639;s:76:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/classic-editor/js\";i:624;s:73:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/classic-editor\";i:61880;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/assets/js/checkout\";i:3554;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/assets/js/subscribe\";i:2742;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/assets/js/block\";i:27379;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/assets/js\";i:80090;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/assets/images/woocommerce-banners\";i:53216;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/assets/images/admin-dashboard-widget\";i:131994;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/assets/images\";i:611588;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/assets/css\";i:29326;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/assets\";i:721004;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Modules/Blog/Models\";i:2955;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Modules/Blog\";i:2955;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Modules/WooCommerce/Models\";i:3383;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Modules/WooCommerce/Emails\";i:967;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Modules/WooCommerce\";i:4350;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Modules/Contacts/Handlers\";i:76407;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Modules/Contacts/Exceptions\";i:560;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Modules/Contacts/Models\";i:6217;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Modules/Contacts/Processors\";i:2574;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Modules/Contacts/Services\";i:8626;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Modules/Contacts/Managers\";i:820;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Modules/Contacts\";i:95204;s:115:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Modules/Api/Models\";i:815;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Modules/Api/Processes\";i:1966;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Modules/Api\";i:2781;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Modules\";i:112603;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Integrations\";i:3748;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/blocks/subscribe/deprecated\";i:5296;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/blocks/subscribe\";i:33682;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/blocks\";i:34466;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Exceptions\";i:230;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Models\";i:9647;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/views/admin-feedback-notice\";i:2569;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/views/admin-dashboard-widget\";i:8441;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/views\";i:59193;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Helpers\";i:18825;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Constants\";i:162;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Managers\";i:150978;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src/Clients\";i:3681;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/src\";i:397105;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/defuse/php-encryption/src/Exception\";i:594;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/defuse/php-encryption/src\";i:85915;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/defuse/php-encryption/docs/classes\";i:44946;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/defuse/php-encryption/docs\";i:72597;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/defuse/php-encryption/dist\";i:8509;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/defuse/php-encryption/bin\";i:298;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/defuse/php-encryption\";i:174782;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/defuse\";i:174782;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/composer\";i:58797;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/firebase/php-jwt/src\";i:29864;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/firebase/php-jwt\";i:42900;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/firebase\";i:42900;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/paragonie/random_compat/other\";i:1633;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/paragonie/random_compat/dist\";i:703;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/paragonie/random_compat/lib\";i:1327;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/paragonie/random_compat\";i:6592;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/paragonie\";i:6592;s:145:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/mindscape/raygun4php/src/Raygun4php/Exception\";i:1036;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/mindscape/raygun4php/src/Raygun4php\";i:322381;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/mindscape/raygun4php/src\";i:322381;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/mindscape/raygun4php/tests\";i:4853;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/mindscape/raygun4php\";i:350944;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/mindscape\";i:350944;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/bin\";i:298;s:143:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/a5hleyrich/wp-background-processing/classes\";i:13645;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/a5hleyrich/wp-background-processing\";i:35335;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor/a5hleyrich\";i:35335;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact/vendor\";i:669826;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/creative-mail-by-constant-contact\";i:1856589;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/shared/images\";i:144777;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/shared\";i:168292;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/api/assets/js\";i:4059;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/api/assets/images\";i:105790;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/api/assets/css\";i:5738;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/api/assets\";i:115587;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/api/templates/settings\";i:8663;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/api/templates\";i:8663;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/api/classes/modules\";i:5988;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/api/classes\";i:19572;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/api\";i:143822;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/assets/img\";i:24038;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/assets/js\";i:10689;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/assets/css/admin\";i:49683;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/assets/css\";i:52870;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/assets\";i:87684;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/includes/managers\";i:95908;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/includes/sdk/Exceptions\";i:3169;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/includes/sdk\";i:48619;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/includes/debug\";i:2948;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/includes/supplements\";i:2700;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/includes/entities\";i:46965;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/includes/customizer\";i:7924;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/includes\";i:1552851;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/languages\";i:916442;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/templates/debug\";i:14061;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/templates/partials\";i:4970;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/templates/js\";i:4460;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/templates/plugin-info\";i:7012;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/templates/forms/deactivation\";i:22317;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/templates/forms\";i:153474;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/templates/account/partials\";i:46690;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/templates/account\";i:61841;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius/templates\";i:468572;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/freemius\";i:3097391;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/lib/assets/js\";i:1440;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/lib/assets/misc\";i:2235;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/lib/assets/images/icons\";i:14442;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/lib/assets/images/new-features\";i:61247;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/lib/assets/images\";i:139211;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/lib/assets/css\";i:13374;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/lib/assets\";i:156260;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/lib/block_assets/js\";i:788419;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/lib/block_assets\";i:788419;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/lib/src/blocks/simple-sitemap-group\";i:4330;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/lib/src/blocks/_components\";i:12126;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/lib/src/blocks/simple-sitemap\";i:7034;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/lib/src/blocks\";i:36812;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/lib/src\";i:36812;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/lib/languages\";i:1190;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/lib/classes/shortcodes\";i:18668;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/lib/classes/plugin-admin-pages\";i:55417;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/lib/classes\";i:111442;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap/lib\";i:1094123;s:73:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-sitemap\";i:4524811;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird-document-library/assets\";i:326399;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird-document-library/includes\";i:6598;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird-document-library/blocks/assets/icons\";i:16769;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird-document-library/blocks/assets\";i:16769;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird-document-library/blocks/dist\";i:71925;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird-document-library/blocks\";i:88694;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird-document-library/languages\";i:4251;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/filebird-document-library\";i:432333;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/assets/js/min\";i:250788;s:115:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/assets/js/front-end/controllers\";i:11545;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/assets/js/front-end/models\";i:10590;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/assets/js/front-end\";i:23013;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/assets/js/builder/controllers\";i:40645;s:115:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/assets/js/builder/views/actions\";i:3061;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/assets/js/builder/views/advanced\";i:8705;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/assets/js/builder/views\";i:12199;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/assets/js/builder/models\";i:3474;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/assets/js/builder\";i:57232;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/assets/js/lib\";i:15168;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/assets/js\";i:346201;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/assets/scss/admin\";i:2749;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/assets/scss\";i:2749;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/assets/css\";i:6872;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/assets\";i:355822;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/includes/Triggers\";i:2425;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/includes/Comparators\";i:2772;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/includes/Integrations\";i:2586;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/includes/Templates\";i:24464;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/includes/Config\";i:10647;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/includes/Admin\";i:763;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/includes\";i:58552;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/deprecated/includes/display\";i:17050;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/deprecated/includes/admin/upgrades\";i:709;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/deprecated/includes/admin\";i:41350;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/deprecated/includes/deprecated\";i:22179;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/deprecated/includes\";i:82511;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/deprecated/js/min\";i:27384;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/deprecated/js/dev\";i:43983;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/deprecated/js\";i:71367;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/deprecated/classes\";i:5036;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/deprecated/lang\";i:7876;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/deprecated/css\";i:980;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/deprecated\";i:174501;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals/lib\";i:12211;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-conditionals\";i:772205;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/redirection/actions\";i:5490;s:74:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/redirection/api\";i:58395;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/redirection/database/schema\";i:22541;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/redirection/database\";i:39225;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/redirection/matches\";i:21000;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/redirection/modules\";i:17008;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/redirection/models/log\";i:18095;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/redirection/models/url\";i:25973;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/redirection/models/redirect\";i:41568;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/redirection/models\";i:161011;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/redirection/images\";i:5548;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/redirection/locale/json\";i:1245168;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/redirection/locale\";i:4615332;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/redirection/fileio\";i:15579;s:70:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/redirection\";i:5826729;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-blurb-extended/includes/modules/BlurbExtended/layouts\";i:28850;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-blurb-extended/includes/modules/BlurbExtended\";i:91291;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-blurb-extended/includes/modules/AdvancedFlipBox/layouts\";i:23893;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-blurb-extended/includes/modules/AdvancedFlipBox\";i:139765;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-blurb-extended/includes/modules\";i:231056;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-blurb-extended/includes\";i:252198;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-blurb-extended/scripts\";i:81753;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-blurb-extended/styles\";i:95049;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-blurb-extended/languages\";i:37450;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/divi-blurb-extended\";i:489346;s:72:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/assets\";i:231176;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/includes/feeds\";i:5441;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/includes/lib\";i:54724;s:74:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/includes\";i:68349;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/ui/stream-icons/font\";i:4709;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/ui/stream-icons\";i:25998;s:71:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/ui/js\";i:72982;s:72:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/ui/css\";i:56651;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/ui/lib/select2/js/i18n\";i:41817;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/ui/lib/select2/js\";i:487252;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/ui/lib/select2/css\";i:32800;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/ui/lib/select2\";i:520052;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/ui/lib/timeago/locales\";i:32305;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/ui/lib/timeago\";i:39325;s:72:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/ui/lib\";i:559377;s:68:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/ui\";i:715008;s:75:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/languages\";i:92835;s:73:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/classes\";i:278693;s:75:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/exporters\";i:2161;s:76:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/connectors\";i:340303;s:75:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/alerts/js\";i:2881;s:72:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream/alerts\";i:57652;s:65:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/stream\";i:1860347;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/styles/assets/js\";i:1305;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/styles/assets/css\";i:451;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/styles/assets\";i:1756;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/styles/includes/Templates/PluginSettings\";i:4600;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/styles/includes/Templates\";i:6717;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/styles/includes/Config\";i:38373;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/styles/includes/Admin/Views\";i:1658;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/styles/includes/Admin\";i:9625;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/styles/includes\";i:54715;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/styles\";i:98480;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/includes/display\";i:11022;s:151:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/includes/admin/pages/ninja-forms-style/tabs/datepicker-settings\";i:4671;s:146:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/includes/admin/pages/ninja-forms-style/tabs/theme-settings\";i:2938;s:160:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/includes/admin/pages/ninja-forms-style/tabs/field-type-settings/sidebars\";i:2210;s:151:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/includes/admin/pages/ninja-forms-style/tabs/field-type-settings\";i:31976;s:146:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/includes/admin/pages/ninja-forms-style/tabs/error-settings\";i:3978;s:146:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/includes/admin/pages/ninja-forms-style/tabs/field-settings\";i:2512;s:150:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/includes/admin/pages/ninja-forms-style/tabs/multipart-settings\";i:8417;s:145:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/includes/admin/pages/ninja-forms-style/tabs/form-settings\";i:4292;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/includes/admin/pages/ninja-forms-style/tabs\";i:58784;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/includes/admin/pages/ninja-forms-style\";i:58784;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/includes/admin/pages/ninja-forms-impexp/tabs/style\";i:3611;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/includes/admin/pages/ninja-forms-impexp/tabs\";i:3611;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/includes/admin/pages/ninja-forms-impexp\";i:3611;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/includes/admin/pages/ninja-forms/tabs/form-layout\";i:26254;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/includes/admin/pages/ninja-forms/tabs\";i:26254;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/includes/admin/pages/ninja-forms\";i:26254;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/includes/admin/pages\";i:88649;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/includes/admin\";i:110114;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/includes\";i:123119;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/js/min\";i:12511;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/js/dev\";i:22086;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/js\";i:34597;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/lang\";i:36102;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated/css\";i:7614;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/deprecated\";i:205525;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/layouts/assets/js/min\";i:244027;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/layouts/assets/js/front-end/controllers\";i:3280;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/layouts/assets/js/front-end/views\";i:1448;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/layouts/assets/js/front-end/models\";i:5258;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/layouts/assets/js/front-end\";i:10404;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/layouts/assets/js/builder/controllers\";i:63016;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/layouts/assets/js/builder/views\";i:16683;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/layouts/assets/js/builder/models\";i:8480;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/layouts/assets/js/builder\";i:88721;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/layouts/assets/js/lib\";i:34984;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/layouts/assets/js\";i:378136;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/layouts/assets/scss/front-end\";i:922;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/layouts/assets/scss/admin\";i:4712;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/layouts/assets/scss\";i:5634;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/layouts/assets/css\";i:13994;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/layouts/assets\";i:397764;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/layouts\";i:409636;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style/lib\";i:11319;s:76:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-style\";i:738265;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/better-search-replace/assets/img\";i:23401;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/better-search-replace/assets/svg\";i:14390;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/better-search-replace/assets/js\";i:13012;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/better-search-replace/assets/css/images\";i:35041;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/better-search-replace/assets/css\";i:103741;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/better-search-replace/assets\";i:154570;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/better-search-replace/includes\";i:44412;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/better-search-replace/languages\";i:43939;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/better-search-replace/templates\";i:13581;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/better-search-replace\";i:302197;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-page-ordering/assets/js/src\";i:4720;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-page-ordering/assets/js\";i:7661;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-page-ordering/assets/css/scss\";i:613;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-page-ordering/assets/css\";i:1989;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-page-ordering/assets\";i:9650;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/simple-page-ordering\";i:41924;s:70:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/sal\";i:122293;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/dialogue\";i:1226;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/revue\";i:7657;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/story\";i:15717;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/conversation\";i:1301;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/calendly\";i:8040;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/recurring-payments\";i:383;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/donations\";i:7255;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/tiled-gallery\";i:5589;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/eventbrite\";i:8021;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/videopress\";i:1032;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/simple-payments\";i:2971;s:115:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/send-a-message/whatsapp-button\";i:1007;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/send-a-message\";i:2037;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/markdown\";i:522;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/recipe\";i:3513;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/opentable\";i:6446;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/podcast-player/templates\";i:6737;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/podcast-player\";i:16278;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/payments-intro\";i:586;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/mailchimp\";i:8411;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/gif\";i:2346;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/pinterest\";i:8867;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/business-hours\";i:4448;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/social-previews\";i:519;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/rating-star\";i:7186;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/amazon\";i:955;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/anchor-fm\";i:5523;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/repeat-visitor\";i:1592;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/premium-content/subscriber-view\";i:1852;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/premium-content/login-button\";i:1881;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/subscription-service\";i:33876;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc\";i:39070;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/premium-content/logged-out-view\";i:2177;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/premium-content/buttons\";i:1116;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/premium-content\";i:49807;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/google-calendar\";i:2266;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/map\";i:6423;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/slideshow\";i:6603;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/button\";i:8070;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/wordads\";i:3533;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/contact-info\";i:4842;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/image-compare\";i:2360;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/subscriptions\";i:1282;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks/instagram-gallery\";i:4568;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/blocks\";i:218175;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/extended-blocks/core-audio\";i:530;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/extended-blocks/core-video\";i:530;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/extended-blocks/core-cover\";i:530;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/extended-blocks/premium-content-container\";i:605;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/extended-blocks\";i:2195;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/plugins/payments\";i:611;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/plugins/post-publish-qr-post-panel\";i:601;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/plugins/publicize\";i:511;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions/plugins\";i:1723;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/extensions\";i:222093;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/json-endpoints/jetpack\";i:221558;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/json-endpoints\";i:886187;s:70:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/src\";i:7384;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/3rd-party/debug-bar\";i:7110;s:76:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/3rd-party\";i:67423;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/jetpack-autoloader\";i:51772;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/composer\";i:244227;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src\";i:460;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy\";i:331;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/automattic/jetpack-connection\";i:791;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/automattic/jetpack-roles/src\";i:145;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/automattic/jetpack-roles\";i:145;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/automattic/jetpack-plans/src\";i:11009;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/automattic/jetpack-plans\";i:32615;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/automattic/jetpack-backup/src\";i:156;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/automattic/jetpack-backup\";i:156;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src\";i:597;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/automattic/jetpack-sync\";i:597;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/automattic\";i:34304;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/wikimedia/aho-corasick/bench\";i:3460;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/wikimedia/aho-corasick/src\";i:9749;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/wikimedia/aho-corasick\";i:26294;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/wikimedia\";i:26294;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/build\";i:3282;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text\";i:235325;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter\";i:235325;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib\";i:235325;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php\";i:248528;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor/nojimage\";i:248528;s:73:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/vendor\";i:605899;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/views/admin\";i:6647;s:72:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/views\";i:6647;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/related-posts/rtl\";i:4565;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/related-posts\";i:102585;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/wpcom-block-editor\";i:21182;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/carousel\";i:371220;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/google-analytics/classes\";i:35990;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/google-analytics\";i:40411;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/sharedaddy/images\";i:93298;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/sharedaddy\";i:340039;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/infinite-scroll/themes\";i:37066;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/infinite-scroll\";i:140726;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/rtl\";i:2456;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/partials\";i:4593;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates\";i:8424;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery\";i:52484;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/tiled-gallery/math\";i:3433;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/tiled-gallery\";i:66562;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/videopress/js\";i:34692;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/videopress/css\";i:5715;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/videopress\";i:188734;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/calypsoify/gutenberg-styles\";i:2753;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/calypsoify\";i:55704;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/theme-tools/compat\";i:129624;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/theme-tools/js\";i:210;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/theme-tools/responsive-videos\";i:2561;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/theme-tools/site-logo/js\";i:768;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc\";i:18314;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/theme-tools/site-logo\";i:19082;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/theme-tools/content-options\";i:48456;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/theme-tools/social-menu\";i:67536;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/theme-tools\";i:328218;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/photon\";i:1760;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/protect\";i:69793;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/simple-payments\";i:32680;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors\";i:202208;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/custom-css/custom-css/js\";i:151910;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/custom-css/custom-css/css/rtl\";i:6145;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/custom-css/custom-css/css\";i:31714;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/custom-css/custom-css\";i:387493;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/custom-css/csstidy\";i:168846;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/custom-css\";i:661885;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/comment-likes\";i:2001;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/wpcom-tos\";i:928;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/markdown\";i:30368;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/stats\";i:18582;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/scan\";i:13178;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/contact-form/js\";i:48490;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/contact-form/images\";i:5464;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/contact-form/css\";i:114045;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/contact-form\";i:391388;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/custom-post-types/comics/rtl\";i:820;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/custom-post-types/comics\";i:9498;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/custom-post-types/js\";i:5446;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/custom-post-types/css\";i:10649;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/custom-post-types\";i:166520;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/woocommerce-analytics/classes\";i:19753;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/woocommerce-analytics\";i:22236;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/rtl\";i:2485;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions\";i:28642;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widget-visibility\";i:72464;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/plugin-search\";i:56576;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/gravatar\";i:47;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/likes\";i:46447;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/photon-cdn\";i:28536;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/masterbar/admin-color-schemes\";i:5355;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/masterbar/wp-posts-list\";i:5219;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/masterbar/admin-menu\";i:168350;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/masterbar/inline-help\";i:6271;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/masterbar/masterbar\";i:53331;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/masterbar/nudges/additional-css/js\";i:1207;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/masterbar/nudges/additional-css/css\";i:262;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/masterbar/nudges/additional-css\";i:8404;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/masterbar/nudges\";i:10155;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/masterbar/profile-edit\";i:10109;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/masterbar\";i:258790;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/sitemaps\";i:141566;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/cloudflare-analytics\";i:1216;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/memberships\";i:14351;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/geo-location\";i:12611;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/authors\";i:432;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/simple-payments\";i:27874;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/eu-cookie-law\";i:17170;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/top-posts\";i:1696;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/image-widget\";i:210;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/milestone\";i:29111;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/migrate-to-core\";i:14298;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget\";i:32856;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/facebook-likebox\";i:48;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/flickr\";i:4068;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/instagram\";i:968;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/my-community\";i:655;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/goodreads/css/rtl\";i:1080;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/goodreads/css\";i:2094;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/goodreads\";i:2094;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/contact-info\";i:1786;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/google-translate\";i:846;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/gallery/js\";i:6887;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/gallery/templates\";i:3361;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/gallery/css/rtl\";i:262;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/gallery/css\";i:981;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/gallery\";i:11229;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/social-media-icons\";i:1221;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets/social-icons\";i:7282;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/widgets\";i:458162;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/comments\";i:42083;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/sso\";i:29783;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/publicize\";i:105885;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/verification-tools\";i:4812;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/wordads/php/networks\";i:77;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/wordads/php\";i:30058;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/wordads/js\";i:10615;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/wordads/css\";i:1508;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/wordads\";i:67697;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/shortcodes/img\";i:16498;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/shortcodes/js\";i:135066;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/shortcodes/images\";i:9815;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/shortcodes/css\";i:25038;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/shortcodes\";i:507292;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/subscriptions\";i:41794;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/post-by-email\";i:11971;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/seo-tools\";i:23625;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules/site-icon\";i:1277;s:74:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/modules\";i:5389851;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-password-checker/src\";i:33863;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-password-checker\";i:57842;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-publicize/src\";i:136404;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-publicize\";i:161368;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/js\";i:4297;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/webhooks\";i:5992;s:115:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src\";i:249379;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/legacy\";i:84428;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/dist\";i:2191;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection\";i:388188;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-abtest/src\";i:2932;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-abtest\";i:32777;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-roles/src\";i:1863;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-roles\";i:27371;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-blocks/src\";i:9091;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-blocks\";i:34500;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-constants/src\";i:3414;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-constants\";i:29502;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/compatibility\";i:1648;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/initializers\";i:6417;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/customberg\";i:4399;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search\";i:25036;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/classic-search\";i:55429;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/wpes\";i:28864;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/customizer/customize-controls\";i:8440;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/customizer\";i:16120;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/widgets/js\";i:13173;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/widgets/css\";i:3413;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/widgets\";i:55041;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard\";i:12385;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src\";i:274354;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/customberg\";i:251413;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/instant-search\";i:223561;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/dashboard\";i:247340;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build\";i:722314;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search\";i:1034244;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/src/fonts/jetpack\";i:5362;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/src/fonts\";i:5362;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/src/css\";i:438;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/src\";i:12475;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui\";i:36507;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/src\";i:3683;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/build/images\";i:80641;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/build\";i:243263;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui\";i:278780;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-waf/src\";i:65563;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-waf\";i:92668;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/initializers\";i:3299;s:153:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/components/global-notices/test\";i:528;s:154:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/components/global-notices/store\";i:2275;s:148:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/components/global-notices\";i:5520;s:150:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/components/form-toggle/test\";i:808;s:145:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/components/form-toggle\";i:6485;s:143:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/components/card/test\";i:326;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/components/card\";i:5249;s:148:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/components/module-control\";i:6423;s:145:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/components/notice/test\";i:900;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/components/notice\";i:8880;s:145:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/components/button/test\";i:700;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/components/button\";i:5555;s:143:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/components/dashboard\";i:3386;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/components\";i:41498;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/store/selectors\";i:1753;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/store/actions/test\";i:1195;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/store/actions\";i:3535;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/store/reducer/test\";i:1691;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/store/reducer\";i:2879;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/store\";i:10045;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/scss/functions\";i:1882;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/scss\";i:29561;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard\";i:88258;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src\";i:97128;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/tools\";i:2920;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/build/dashboard\";i:142581;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/build\";i:142581;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads\";i:266991;s:115:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-videopress/src\";i:8866;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-videopress\";i:30516;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-logo/src\";i:5152;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-logo\";i:30743;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-config/src\";i:9182;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-config\";i:34939;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/src/js\";i:2281;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/src\";i:32494;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/build\";i:6135;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets\";i:71170;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-redirect/src\";i:2602;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-redirect\";i:29261;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/src/js/components/icons\";i:6918;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/src/js/components/masthead\";i:11604;s:148:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/src/js/components/review-request/stories\";i:487;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/src/js/components/review-request\";i:3002;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/src/js/components\";i:50340;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/src/js/selectors\";i:1027;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/src/js/reducers\";i:785;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/src/js/hooks/assets\";i:62000;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/src/js/hooks\";i:66031;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/src/js\";i:119031;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/src\";i:160982;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/build/images\";i:6382;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/build\";i:161945;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup\";i:356086;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-error/src\";i:271;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-error\";i:25177;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-plugins-installer/src\";i:10394;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-plugins-installer\";i:32921;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-status/src\";i:40467;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-status\";i:69776;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-a8c-mc-stats/src\";i:4366;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-a8c-mc-stats\";i:29109;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-google-fonts-provider/src/introspectors\";i:3738;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-google-fonts-provider/src\";i:16286;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-google-fonts-provider\";i:39007;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/src/js\";i:5972;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/src/images\";i:42;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/src\";i:22510;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/dist\";i:20495;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images\";i:75029;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/src/_inc\";i:1869;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/src\";i:51674;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/build\";i:67904;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis\";i:150666;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-partner/src\";i:15907;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-partner\";i:43328;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/legacy\";i:21556;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/lib/tracks\";i:1321;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/lib\";i:89628;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat\";i:137824;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-licensing/src\";i:19843;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-licensing\";i:48168;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules\";i:333821;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/replicastore\";i:40026;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src\";i:670154;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync\";i:720607;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/src/js\";i:8065;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/src\";i:45617;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/build\";i:19796;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm\";i:103939;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products\";i:63099;s:115:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src\";i:87978;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/images\";i:1134103;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build\";i:1408250;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack\";i:1540165;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-device-detection/src\";i:58802;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-device-detection\";i:84666;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor/automattic\";i:6093835;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/jetpack_vendor\";i:6096715;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/images/recommendations\";i:2949724;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/images/products\";i:832002;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/images/apps\";i:13814;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/images/plans\";i:8815;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/images/rss\";i:31391;s:73:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/images\";i:5236852;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/dialogue\";i:5366;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/revue\";i:3064;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/story\";i:78234;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/calendly\";i:1819;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/recurring-payments\";i:4016;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/donations\";i:26637;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/tiled-gallery\";i:29934;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/eventbrite\";i:2758;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/videopress\";i:1825;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/send-a-message\";i:10369;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/recipe\";i:6712;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/opentable\";i:4732;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/podcast-player\";i:105719;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/mailchimp\";i:8774;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/gif\";i:2430;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/business-hours\";i:1906;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/rating-star\";i:4013;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/repeat-visitor\";i:3423;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/editor-assets\";i:801961;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/premium-content\";i:3219;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/google-calendar\";i:2019;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/map\";i:32160;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/slideshow\";i:35558;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/images\";i:1037796;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/button\";i:1295;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/contact-info\";i:1293;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/image-compare\";i:19202;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/subscriptions\";i:15865;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks/instagram-gallery\";i:6011;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/blocks\";i:7943839;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/fonts/automatticons\";i:49737;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/fonts/jetpack\";i:5362;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/fonts\";i:55099;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/social-logos\";i:79323;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/genericons/genericons/rtl\";i:28350;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/genericons/genericons\";i:192146;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/genericons\";i:222446;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/related-posts\";i:6105;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/carousel\";i:125109;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/sharedaddy\";i:16000;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/infinite-scroll\";i:13161;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/tiled-gallery/tiled-gallery\";i:3240;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/tiled-gallery\";i:3240;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/videopress/js/test\";i:73359;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/videopress/js\";i:89495;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/videopress\";i:89495;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/photon\";i:769;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js\";i:7977;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/custom-css/custom-css\";i:7977;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/custom-css\";i:7977;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/comment-likes\";i:637;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/scan\";i:747;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/contact-form/js\";i:26584;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/contact-form\";i:26584;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/custom-post-types/comics\";i:2186;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/custom-post-types/js\";i:3472;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/custom-post-types\";i:5658;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/widget-visibility/editor\";i:18546;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/widget-visibility/widget-conditions\";i:4952;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/widget-visibility\";i:23498;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/likes\";i:7745;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/light\";i:11829;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/powder-snow\";i:33979;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/ectoplasm\";i:11652;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/aquatic\";i:33954;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/modern\";i:11679;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/sakura\";i:34012;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/fresh\";i:11806;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/classic-blue\";i:33967;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/classic-dark\";i:33941;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/ocean\";i:11654;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/coffee\";i:11679;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/midnight\";i:11651;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/blue\";i:11681;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/sunset\";i:33955;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/sunrise\";i:11680;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/contrast\";i:33882;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/nightfall\";i:33955;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/classic-bright\";i:33583;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors\";i:410539;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes\";i:410539;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/admin-menu\";i:2321;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/masterbar\";i:4518;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/nudges/additional-css/js\";i:746;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/nudges/additional-css\";i:746;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar/nudges\";i:746;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/masterbar\";i:418124;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/widgets/simple-payments\";i:8607;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/widgets/eu-cookie-law\";i:2464;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/widgets/milestone\";i:1268;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/widgets/contact-info\";i:903;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/widgets/google-translate\";i:880;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/widgets/gallery/js\";i:2775;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/widgets/gallery\";i:2775;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/widgets/social-icons\";i:2421;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/widgets\";i:22440;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/images\";i:399455;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/wordads/js\";i:4704;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/wordads\";i:4704;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/shortcodes/js\";i:51255;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build/shortcodes\";i:51255;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/build\";i:2666384;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/lib/debugger\";i:85148;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/lib/markdown\";i:104618;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-fields\";i:23980;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints\";i:113568;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/lib/core-api\";i:224451;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/lib/admin-pages\";i:80136;s:75:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc/lib\";i:964993;s:71:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/_inc\";i:11970649;s:70:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack/css\";i:584736;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/jetpack\";i:32474096;s:115:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor_prefixed/psr/log/Psr/Log/Test\";i:9670;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor_prefixed/psr/log/Psr/Log\";i:21666;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor_prefixed/psr/log/Psr\";i:21666;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor_prefixed/psr/log\";i:23368;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor_prefixed/psr\";i:23368;s:145:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed\";i:3556;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor_prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdp\";i:1426;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor_prefixed/monolog/monolog/src/Monolog/Handler/Slack\";i:8301;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor_prefixed/monolog/monolog/src/Monolog/Handler/Curl\";i:1459;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor_prefixed/monolog/monolog/src/Monolog/Handler\";i:237756;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor_prefixed/monolog/monolog/src/Monolog/Processor\";i:18057;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor_prefixed/monolog/monolog/src/Monolog/Formatter\";i:49549;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor_prefixed/monolog/monolog/src/Monolog\";i:352388;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor_prefixed/monolog/monolog/src\";i:352388;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor_prefixed/monolog/monolog\";i:356186;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor_prefixed/monolog\";i:356186;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor_prefixed\";i:379554;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Utils\";i:182197;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Options\";i:62365;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Meta\";i:48870;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Main\";i:70935;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/ImportExport/SeoPress\";i:37254;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/ImportExport/RankMath\";i:39764;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/ImportExport/YoastSeo\";i:38314;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/ImportExport\";i:129857;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Social\";i:40753;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Integrations\";i:5753;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Core\";i:2387;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Help\";i:1673;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Traits/Helpers\";i:132811;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Traits\";i:175559;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Standalone/PageBuilders\";i:12851;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Standalone/Blocks\";i:1622;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Standalone\";i:77568;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Sitemap/Image\";i:14762;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Sitemap/Html\";i:39102;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Sitemap\";i:158331;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Models\";i:41137;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Breadcrumbs\";i:42182;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Tools\";i:38229;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Migration\";i:113926;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Api\";i:92430;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Schema/Graphs/Traits\";i:4598;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Schema/Graphs\";i:26229;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Schema\";i:47744;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Views/admin/terms\";i:344;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Views/admin/posts\";i:418;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Views/admin\";i:12991;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Views/sitemap/html\";i:7643;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Views/sitemap/xsl/partials\";i:5707;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Views/sitemap/xsl/templates\";i:5592;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Views/sitemap/xsl\";i:26121;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Views/sitemap/xml\";i:4927;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Views/sitemap\";i:38691;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Views/parts\";i:1324;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Views/main\";i:6775;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Views\";i:59781;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Admin/Notices\";i:39495;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common/Admin\";i:120114;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Common\";i:1525776;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/init\";i:11654;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Lite/Utils\";i:716;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Lite/Options\";i:1784;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Lite/Main\";i:2573;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Lite/Traits\";i:2715;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Lite/Api\";i:1853;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Lite/Views\";i:51655;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Lite/Admin/Notices\";i:2502;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Lite/Admin\";i:19028;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app/Lite\";i:80324;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/app\";i:1630710;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/languages\";i:1219763;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/woocommerce/action-scheduler/classes/data-stores\";i:90102;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/woocommerce/action-scheduler/classes/abstracts\";i:75715;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/woocommerce/action-scheduler/classes/schema\";i:7503;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/woocommerce/action-scheduler/classes/actions\";i:2769;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/woocommerce/action-scheduler/classes/WP_CLI\";i:19518;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/woocommerce/action-scheduler/classes/migration\";i:25683;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/woocommerce/action-scheduler/classes/schedules\";i:10729;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/woocommerce/action-scheduler/classes\";i:309808;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/woocommerce/action-scheduler/deprecated\";i:13295;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/woocommerce/action-scheduler/lib/cron-expression\";i:33205;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/woocommerce/action-scheduler/lib\";i:37013;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/woocommerce/action-scheduler\";i:421451;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/woocommerce\";i:421451;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/composer\";i:82731;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/jwhennessey/phpinsight/examples\";i:754;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/jwhennessey/phpinsight/lib/PHPInsight/data\";i:551034;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/jwhennessey/phpinsight/lib/PHPInsight/dictionaries\";i:370305;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/jwhennessey/phpinsight/lib/PHPInsight\";i:932739;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/jwhennessey/phpinsight/lib\";i:932829;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/jwhennessey/phpinsight\";i:935754;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor/jwhennessey\";i:935754;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/vendor\";i:1440114;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/dist/Lite/assets/link-format\";i:78526;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/dist/Lite/assets/svg\";i:6794;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/dist/Lite/assets/js\";i:6094523;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/dist/Lite/assets/images\";i:446320;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/dist/Lite/assets/css\";i:936988;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/dist/Lite/assets\";i:10471924;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/dist/Lite\";i:10611603;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack/dist\";i:10611603;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/all-in-one-seo-pack\";i:15356605;s:115:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/breadcrumbs-divi-module/includes/modules/DiviBreadcrumbs\";i:7593;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/breadcrumbs-divi-module/includes/modules\";i:7593;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/breadcrumbs-divi-module/includes\";i:8756;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/breadcrumbs-divi-module/scripts\";i:4741;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/breadcrumbs-divi-module/styles\";i:1481;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/breadcrumbs-divi-module/languages\";i:0;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/breadcrumbs-divi-module\";i:70156;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/static/languages\";i:38691;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/static/images\";i:137090;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/static\";i:556883;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/languages\";i:55258;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/composer\";i:103621;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/doctrine/inflector/docs/en\";i:6555;s:115:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/doctrine/inflector/docs\";i:6555;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/doctrine/inflector/lib/Doctrine/Common/Inflector\";i:9896;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/doctrine/inflector/lib/Doctrine/Common\";i:9896;s:147:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/English\";i:19173;s:147:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Spanish\";i:3871;s:155:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/NorwegianBokmal\";i:2978;s:147:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Turkish\";i:3028;s:146:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/French\";i:3716;s:150:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Portuguese\";i:7749;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules\";i:46331;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/doctrine/inflector/lib/Doctrine/Inflector\";i:65721;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/doctrine/inflector/lib/Doctrine\";i:75617;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/doctrine/inflector/lib\";i:75617;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/doctrine/inflector\";i:83545;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/doctrine\";i:83545;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/wp-forge/fluent/includes\";i:3808;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/wp-forge/fluent\";i:3808;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/wp-forge/helpers/includes\";i:25199;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/wp-forge/helpers\";i:25199;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/wp-forge/wp-update-handler/includes\";i:15933;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/wp-forge/wp-update-handler\";i:15933;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/wp-forge/wp-options/includes\";i:2644;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/wp-forge/wp-options\";i:2644;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/wp-forge\";i:47584;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/pimple/pimple/src/Pimple/Tests/Fixtures\";i:5725;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/pimple/pimple/src/Pimple/Tests/Psr11\";i:6945;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/pimple/pimple/src/Pimple/Tests\";i:35726;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/pimple/pimple/src/Pimple/Psr11\";i:4140;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/pimple/pimple/src/Pimple/Exception\";i:6494;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/pimple/pimple/src/Pimple\";i:59577;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/pimple/pimple/src\";i:59577;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/pimple/pimple\";i:73450;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/pimple\";i:73450;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/psr/container/src\";i:1388;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/psr/container\";i:2533;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/psr\";i:2533;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/mustache/mustache/src/Mustache/Loader\";i:16516;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/mustache/mustache/src/Mustache/Cache\";i:7050;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/mustache/mustache/src/Mustache/Exception\";i:5036;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/mustache/mustache/src/Mustache/Source\";i:1936;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/mustache/mustache/src/Mustache/Logger\";i:8751;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/mustache/mustache/src/Mustache\";i:136927;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/mustache/mustache/src\";i:136927;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/mustache/mustache/vendor/spec\";i:0;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/mustache/mustache/vendor/yaml\";i:0;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/mustache/mustache/vendor\";i:0;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/mustache/mustache/bin\";i:5435;s:109:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/mustache/mustache\";i:143448;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/mustache\";i:143448;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/endurance/wp-module-data/src/API\";i:6424;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/endurance/wp-module-data/src/Helpers\";i:14207;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/endurance/wp-module-data/src/Listeners\";i:17129;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/endurance/wp-module-data/src\";i:54491;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/endurance/wp-module-data\";i:73951;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/endurance\";i:73951;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/wpscholar/collection\";i:17148;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/wpscholar/url\";i:7253;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/wpscholar\";i:24401;s:147:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost/endurance-wp-module-business-reviews/assets/js\";i:2710;s:151:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost/endurance-wp-module-business-reviews/assets/images\";i:310733;s:148:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost/endurance-wp-module-business-reviews/assets/css\";i:2424;s:144:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost/endurance-wp-module-business-reviews/assets\";i:315867;s:143:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost/endurance-wp-module-business-reviews/views\";i:2209;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost/endurance-wp-module-business-reviews\";i:326010;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost/endurance-wp-module-loader/includes\";i:21448;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost/endurance-wp-module-loader\";i:42357;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost/endurance-wp-module-sso\";i:22339;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost/endurance-wp-plugin-updater\";i:6661;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost/bluehost-wp-customer-data/includes\";i:12878;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost/bluehost-wp-customer-data\";i:31918;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost/wp-module-secure-passwords/assets/js\";i:4010;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost/wp-module-secure-passwords/assets/css\";i:659;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost/wp-module-secure-passwords/assets\";i:4669;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost/wp-module-secure-passwords/includes\";i:14172;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost/wp-module-secure-passwords\";i:30280;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost/endurance-wp-module-gutenframe/assets\";i:9034;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost/endurance-wp-module-gutenframe/src\";i:3808;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost/endurance-wp-module-gutenframe\";i:13895;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/bluehost\";i:473460;s:153:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-marketplace/components/marketplaceItem\";i:4478;s:149:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-marketplace/components/marketplace\";i:4775;s:153:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-marketplace/components/marketplaceList\";i:2831;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-marketplace/components\";i:12084;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-marketplace/includes\";i:2872;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-marketplace\";i:15499;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-loader/includes\";i:8174;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-loader\";i:26504;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-data/src/API\";i:6494;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-data/src/Helpers\";i:11377;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-data/src/Listeners\";i:17183;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-data/src\";i:54179;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-data\";i:73599;s:147:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-onboarding/includes/TaskManagers\";i:9705;s:153:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-onboarding/includes/Mustache/Templates\";i:6730;s:143:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-onboarding/includes/Mustache\";i:7297;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-onboarding/includes/Tasks\";i:3608;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-onboarding/includes/Models\";i:2239;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-onboarding/includes/Data\";i:25369;s:143:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-onboarding/includes/Services\";i:13856;s:149:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-onboarding/includes/RestApi/Themes\";i:24218;s:142:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-onboarding/includes/RestApi\";i:53700;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-onboarding/includes\";i:128242;s:144:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-onboarding/build/0.0.9/images\";i:74963;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-onboarding/build/0.0.9\";i:462619;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-onboarding/build\";i:462619;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-onboarding\";i:611139;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/container/includes\";i:11383;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/container\";i:11383;s:142:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-ecommerce/includes/Partials\";i:4102;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-ecommerce/includes/Data\";i:1902;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-ecommerce/includes/RestApi\";i:3003;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-ecommerce/includes\";i:13584;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-ecommerce/languages\";i:12472;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-ecommerce\";i:27208;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-sso/includes\";i:8993;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs/wp-module-sso\";i:28069;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/newfold-labs\";i:793401;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/wp-cli/wp-config-transformer/src\";i:10739;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/wp-cli/wp-config-transformer\";i:12488;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor/wp-cli\";i:12488;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/vendor\";i:1832309;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/inc/compat\";i:19595;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/inc/Tours\";i:20558;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/inc/CTB/js\";i:8297;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/inc/CTB\";i:13913;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/inc/admin\";i:11360;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/inc/pages\";i:17448;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/inc/DefaultContent\";i:20892;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/inc/Notifications/js\";i:7987;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/inc/Notifications\";i:25732;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/inc/cli\";i:43177;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/inc/upgrades\";i:3420;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/inc/RestApi\";i:32488;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/inc\";i:295784;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/build/fonts\";i:5320;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/build/images\";i:54804;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/build\";i:5175997;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin/lib\";i:11889;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/bluehost-wordpress-plugin\";i:7933620;s:72:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/akismet/views\";i:35572;s:75:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/akismet/_inc/img\";i:5956;s:71:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/akismet/_inc\";i:42088;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/akismet\";i:270868;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/assets/img/promotions\";i:44640;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/assets/img/add-ons\";i:697694;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/assets/img\";i:783469;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/assets/fonts\";i:838395;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/assets/js/min\";i:3040364;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/assets/js/lib\";i:1079609;s:80:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/assets/js\";i:4147361;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/assets/css\";i:669141;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/assets\";i:6438366;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Actions\";i:47826;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Updates\";i:93673;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Routes\";i:32484;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Handlers\";i:54152;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Integrations/EDD\";i:28293;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Integrations\";i:34375;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Factories\";i:2613;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/MergeTags\";i:43573;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Entities\";i:27548;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Contracts\";i:6473;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Display\";i:43920;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Database/Models\";i:61035;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Database/Migrations\";i:18315;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Database\";i:184962;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Templates\";i:550202;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Libraries/BackgroundProcessing/classes\";i:13886;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Libraries/BackgroundProcessing\";i:14491;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Libraries/EOS\";i:25962;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Libraries/Whip\";i:2868;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Libraries/Session\";i:17294;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Libraries\";i:60615;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Adapters\";i:5084;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Fields\";i:98185;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Config\";i:221030;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Abstracts\";i:106366;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/WPCLI\";i:2640;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/AJAX/Requests\";i:605;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/AJAX/REST\";i:17522;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/AJAX/Processes\";i:771;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/AJAX/Controllers\";i:52561;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/AJAX\";i:71459;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Exports/Interfaces\";i:7451;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Exports\";i:62320;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Telemetry\";i:1837;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Admin/Menus\";i:116887;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Admin/Metaboxes\";i:7709;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Admin/Processes\";i:64738;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Admin/CPT\";i:25042;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes/Admin\";i:253123;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/includes\";i:2060750;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/blocks/views/includes/Authentication\";i:3598;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/blocks/views/includes/DataBuilder\";i:7163;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/blocks/views/includes\";i:10761;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/blocks/views\";i:10761;s:82:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/blocks/form\";i:149;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/blocks\";i:24137;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/src/components/tests/__snapshots__\";i:6179;s:91:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/src/components/tests\";i:19237;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/src/components\";i:44070;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/src/params\";i:1660;s:74:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/src\";i:49605;s:79:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/services\";i:17133;s:86:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/vendor/composer\";i:36369;s:77:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/vendor\";i:36796;s:75:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/lang\";i:9119165;s:76:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/build\";i:635828;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/lib/StepProcessing\";i:9931;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/lib/Legacy\";i:91280;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/lib/Conversion\";i:4871;s:74:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms/lib\";i:134449;s:70:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms\";i:18687864;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/quick-bulk-post-page-creator/includes\";i:18956;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/quick-bulk-post-page-creator/templates\";i:608;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/quick-bulk-post-page-creator\";i:46801;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/assets/js/front-end/controllers\";i:11734;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/assets/js/front-end\";i:11734;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/assets/js/builder/controllers\";i:7296;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/assets/js/builder\";i:7296;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/assets/js/lib\";i:74575;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/assets/js\";i:93605;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/assets/css\";i:1111;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/assets\";i:94716;s:95:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/display\";i:2868;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/fields\";i:12336;s:115:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/integrations/pdfsubmissions\";i:1928;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/integrations/layoutstyles\";i:3250;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/integrations/zapier\";i:1038;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/integrations/ninjaforms\";i:18615;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/integrations/saveprogress\";i:1026;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/integrations/postcreation\";i:1724;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/integrations\";i:27581;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/config\";i:8930;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/database/migrations\";i:1353;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/database/models\";i:2171;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/database\";i:3784;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/admin/menus\";i:4102;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/admin/controllers\";i:15606;s:93:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/admin\";i:36740;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/ajax/controllers\";i:15007;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/ajax\";i:15007;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/templates\";i:14853;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/external/abstracts\";i:18337;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/external/services/dropbox\";i:8031;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/external/services/s3\";i:11641;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/external/services/googledrive\";i:11800;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/external/services\";i:31472;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes/external\";i:64280;s:87:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/includes\";i:199807;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/polevaultweb/wp-dropbox-api/src\";i:5333;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/polevaultweb/wp-dropbox-api\";i:5333;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/polevaultweb/wp-oauth2/src\";i:13941;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/polevaultweb/wp-oauth2\";i:13941;s:103:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/polevaultweb\";i:19274;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/mtdowling/jmespath.php/src\";i:73971;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/mtdowling/jmespath.php/bin\";i:4369;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/mtdowling/jmespath.php\";i:82373;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/mtdowling\";i:82373;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/phpseclib/phpseclib/phpseclib/File/ASN1\";i:882;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/phpseclib/phpseclib/phpseclib/File\";i:245684;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/phpseclib/phpseclib/phpseclib/Math\";i:125486;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/phpseclib/phpseclib/phpseclib/System/SSH/Agent\";i:5919;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/phpseclib/phpseclib/phpseclib/System/SSH\";i:14679;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/phpseclib/phpseclib/phpseclib/System\";i:14679;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/phpseclib/phpseclib/phpseclib/Crypt\";i:455577;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/phpseclib/phpseclib/phpseclib/Net/SFTP\";i:22171;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/phpseclib/phpseclib/phpseclib/Net\";i:346552;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/phpseclib/phpseclib/phpseclib\";i:1188507;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/phpseclib/phpseclib\";i:1189668;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/phpseclib\";i:1189668;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/composer/installers/src/Composer/Installers\";i:74104;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/composer/installers/src/Composer\";i:74104;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/composer/installers/src\";i:74594;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/composer/installers\";i:74594;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/composer\";i:358957;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/deliciousbrains/wp-background-processing/classes\";i:15902;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/deliciousbrains/wp-background-processing\";i:31796;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/deliciousbrains\";i:31796;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/firebase/php-jwt/src\";i:14441;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/firebase/php-jwt\";i:14441;s:99:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/firebase\";i:14441;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/symfony/polyfill-mbstring/Resources/unidata\";i:40345;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/symfony/polyfill-mbstring/Resources\";i:40345;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/symfony/polyfill-mbstring\";i:73754;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/symfony\";i:73754;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/guzzlehttp/psr7/src\";i:141822;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/guzzlehttp/psr7\";i:141822;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/guzzlehttp/promises/src\";i:42651;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/guzzlehttp/promises\";i:42651;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/guzzlehttp/guzzle/src/Handler\";i:56174;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/guzzlehttp/guzzle/src/Exception\";i:8232;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/guzzlehttp/guzzle/src/Cookie\";i:26455;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/guzzlehttp/guzzle/src\";i:188819;s:108:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/guzzlehttp/guzzle\";i:189206;s:101:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/guzzlehttp\";i:373679;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/psr/log/Psr/Log/Test\";i:9034;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/psr/log/Psr/Log\";i:20522;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/psr/log/Psr\";i:20522;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/psr/log\";i:20522;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/psr/cache/src\";i:8641;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/psr/cache\";i:8641;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/psr/http-message/src\";i:46470;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/psr/http-message\";i:46470;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/psr\";i:75633;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/ralouphie/getallheaders/src\";i:1615;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/ralouphie/getallheaders\";i:1615;s:100:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/ralouphie\";i:1615;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/Handler/GuzzleV5\";i:7437;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/Handler/GuzzleV6\";i:2264;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/Handler\";i:9701;s:147:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/codestar-connections/2019-12-01\";i:4365;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/codestar-connections\";i:4365;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/iotevents-data/2018-10-23\";i:9989;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/iotevents-data\";i:9989;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/outposts/2019-12-03\";i:8280;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/outposts\";i:8280;s:147:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ec2-instance-connect/2018-04-02\";i:2804;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ec2-instance-connect\";i:2804;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/opsworkscm/2016-11-01\";i:22491;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/opsworkscm\";i:22491;s:143:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/alexaforbusiness/2017-11-09\";i:95670;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/alexaforbusiness\";i:95670;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/detective/2018-10-26\";i:10306;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/detective\";i:10306;s:143:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mediapackage-vod/2018-11-07\";i:25744;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mediapackage-vod\";i:25744;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/signer/2017-08-25\";i:19430;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/signer\";i:19430;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/accessanalyzer/2019-11-01\";i:24568;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/accessanalyzer\";i:24568;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/sns/2010-03-31\";i:34050;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/sns\";i:34050;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/xray/2016-04-12\";i:32878;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/xray\";i:32878;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/redshift/2012-12-01\";i:133214;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/redshift\";i:133214;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloud9/2017-09-23\";i:13140;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloud9\";i:13140;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/rekognition/2016-06-27\";i:65696;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/rekognition\";i:65696;s:150:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/apigatewaymanagementapi/2018-11-29\";i:3674;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/apigatewaymanagementapi\";i:3674;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/savingsplans/2019-06-28\";i:18992;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/savingsplans\";i:18992;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/monitoring/2010-08-01\";i:43319;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/monitoring\";i:43319;s:150:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/entitlement.marketplace/2017-01-11\";i:3256;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/entitlement.marketplace\";i:3256;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mediaconvert/2017-08-29\";i:151713;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mediaconvert\";i:151713;s:145:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/iot1click-projects/2018-05-14\";i:19422;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/iot1click-projects\";i:19422;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/kendra/2019-02-03\";i:39264;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/kendra\";i:39264;s:144:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/elastictranscoder/2012-09-25\";i:37265;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/elastictranscoder\";i:37265;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/batch/2016-08-10\";i:26873;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/batch\";i:26873;s:143:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/servicediscovery/2017-03-14\";i:25328;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/servicediscovery\";i:25328;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/quicksight/2018-04-01\";i:123960;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/quicksight\";i:123960;s:144:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/iot1click-devices/2018-05-14\";i:15726;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/iot1click-devices\";i:15726;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/robomaker/2018-06-29\";i:54152;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/robomaker\";i:54152;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/dlm/2018-01-12\";i:14990;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/dlm\";i:14990;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/discovery/2015-11-01\";i:34577;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/discovery\";i:34577;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/iot/2015-05-28\";i:269556;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/iot\";i:269556;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/appsync/2017-07-25\";i:49889;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/appsync\";i:49889;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ssm/2014-11-06\";i:225823;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ssm\";i:225823;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudfront/2016-09-07\";i:62177;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudfront/2016-11-25\";i:64069;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudfront/2016-09-29\";i:62280;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudfront/2018-06-18\";i:94398;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudfront/2016-08-01\";i:60201;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudfront/2018-11-05\";i:96281;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudfront/2017-03-25\";i:65550;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudfront/2015-07-27\";i:59507;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudfront/2019-03-26\";i:96839;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudfront/2016-08-20\";i:61169;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudfront/2016-01-28\";i:52336;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudfront/2017-10-30\";i:94357;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudfront\";i:869164;s:142:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/license-manager/2018-08-01\";i:23590;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/license-manager\";i:23590;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/appstream/2016-12-01\";i:56535;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/appstream\";i:56535;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/pi/2018-02-27\";i:6006;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/pi\";i:6006;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/elasticache/2015-02-02\";i:89888;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/elasticache\";i:89888;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/codestar/2017-04-19\";i:23225;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/codestar\";i:23225;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/appmesh/2018-10-01\";i:30244;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/appmesh/2019-01-25\";i:51209;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/appmesh\";i:81453;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ds/2015-04-16\";i:71395;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ds\";i:71395;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/sqs/2012-11-05\";i:23875;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/sqs\";i:23875;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/medialive/2017-10-14\";i:189441;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/medialive\";i:189441;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/lightsail/2016-11-28\";i:126850;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/lightsail\";i:126850;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/docdb/2014-10-31\";i:66031;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/docdb\";i:66031;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/inspector/2016-02-16\";i:56187;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/inspector\";i:56187;s:145:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/iotsecuretunneling/2018-10-05\";i:8082;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/iotsecuretunneling\";i:8082;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/acm/2015-12-08\";i:20899;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/acm\";i:20899;s:150:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/kinesis-video-signaling/2019-12-04\";i:4656;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/kinesis-video-signaling\";i:4656;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/worklink/2018-09-25\";i:32938;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/worklink\";i:32938;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/rds-data/2018-08-01\";i:12510;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/rds-data\";i:12510;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/workspaces/2015-04-08\";i:48190;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/workspaces\";i:48190;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/states/2016-11-23\";i:33161;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/states\";i:33161;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/translate/2017-07-01\";i:9441;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/translate\";i:9441;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/es/2015-01-01\";i:40992;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/es\";i:40992;s:144:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/runtime.sagemaker/2017-05-13\";i:3759;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/runtime.sagemaker\";i:3759;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/datapipeline/2012-10-29\";i:22983;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/datapipeline\";i:22983;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/devicefarm/2015-06-23\";i:85663;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/devicefarm\";i:85663;s:147:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/application-insights/2018-11-25\";i:27498;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/application-insights\";i:27498;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/wafv2/2019-07-29\";i:50434;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/wafv2\";i:50434;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/pinpoint/2016-12-01\";i:175977;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/pinpoint\";i:175977;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ecr/2015-09-21\";i:41579;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ecr\";i:41579;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/schemas/2019-12-02\";i:42359;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/schemas\";i:42359;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/importexport/2010-06-01\";i:14059;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/importexport\";i:14059;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/glue/2017-03-31\";i:153957;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/glue\";i:153957;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mediastore/2017-09-01\";i:15744;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mediastore\";i:15744;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/route53/2013-04-01\";i:85336;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/route53\";i:85336;s:146:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/kinesis-video-media/2017-09-30\";i:3798;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/kinesis-video-media\";i:3798;s:145:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/personalize-events/2018-03-22\";i:1984;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/personalize-events\";i:1984;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/codecommit/2015-04-13\";i:150723;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/codecommit\";i:150723;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/glacier/2012-06-01\";i:43462;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/glacier\";i:43462;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/groundstation/2019-05-23\";i:32032;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/groundstation\";i:32032;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/sesv2/2019-09-27\";i:60892;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/sesv2\";i:60892;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/codebuild/2016-10-06\";i:42885;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/codebuild\";i:42885;s:147:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/elasticloadbalancing/2012-06-01\";i:40213;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/elasticloadbalancing\";i:40213;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cognito-idp/2016-04-18\";i:141001;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cognito-idp\";i:141001;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/sms/2016-10-24\";i:35816;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/sms\";i:35816;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mq/2017-11-27\";i:47077;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mq\";i:47077;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/neptune/2014-10-31\";i:92862;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/neptune\";i:92862;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mobile/2017-07-01\";i:12986;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mobile\";i:12986;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/config/2014-11-12\";i:113795;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/config\";i:113795;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/health/2016-08-04\";i:21488;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/health\";i:21488;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/storagegateway/2013-06-30\";i:76719;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/storagegateway\";i:76719;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/s3control/2018-08-20\";i:27878;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/s3control\";i:27878;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/workdocs/2016-05-01\";i:68165;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/workdocs\";i:68165;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/comprehend/2017-11-27\";i:67667;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/comprehend\";i:67667;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/iotevents/2018-07-27\";i:26046;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/iotevents\";i:26046;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/firehose/2015-08-04\";i:37927;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/firehose\";i:37927;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/greengrass/2017-06-07\";i:93771;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/greengrass\";i:93771;s:148:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/sagemaker-a2i-runtime/2019-11-07\";i:8724;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/sagemaker-a2i-runtime\";i:8724;s:142:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/route53resolver/2018-04-01\";i:27960;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/route53resolver\";i:27960;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/lex-models/2017-04-19\";i:54166;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/lex-models\";i:54166;s:147:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/metering.marketplace/2016-01-14\";i:7851;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/metering.marketplace\";i:7851;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/forecast/2018-06-26\";i:33845;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/forecast\";i:33845;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/service-quotas/2019-06-24\";i:24203;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/service-quotas\";i:24203;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/organizations/2016-11-28\";i:60583;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/organizations\";i:60583;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/appconfig/2019-10-09\";i:31899;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/appconfig\";i:31899;s:143:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/elasticbeanstalk/2010-12-01\";i:63660;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/elasticbeanstalk\";i:63660;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/events/2015-10-07\";i:32334;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/events\";i:32334;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/eventbridge/2015-10-07\";i:32342;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/eventbridge\";i:32342;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/frauddetector/2019-11-15\";i:35796;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/frauddetector\";i:35796;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/opsworks/2013-02-18\";i:74080;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/opsworks\";i:74080;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/email/2010-12-01\";i:75982;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/email\";i:75982;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/data.iot/2015-05-28\";i:6025;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/data.iot\";i:6025;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/fms/2018-01-01\";i:16778;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/fms\";i:16778;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudsearch/2013-01-01\";i:34665;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudsearch\";i:34665;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ecs/2014-11-13\";i:77995;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ecs\";i:77995;s:146:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/personalize-runtime/2018-05-22\";i:3373;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/personalize-runtime\";i:3373;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/support/2013-04-15\";i:19917;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/support\";i:19917;s:142:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/resource-groups/2017-11-27\";i:16367;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/resource-groups\";i:16367;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/transcribe/2017-10-26\";i:17988;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/transcribe\";i:17988;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/kinesis/2013-12-02\";i:33164;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/kinesis\";i:33164;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/s3/2006-03-01\";i:152205;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/s3\";i:152205;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/apigatewayv2/2018-11-29\";i:127476;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/apigatewayv2\";i:127476;s:145:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/kinesisanalyticsv2/2018-05-23\";i:58621;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/kinesisanalyticsv2\";i:58621;s:144:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/elastic-inference/2017-07-25\";i:3697;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/elastic-inference\";i:3697;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/textract/2018-06-27\";i:14664;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/textract\";i:14664;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/sts/2011-06-15\";i:14575;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/sts\";i:14575;s:144:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/comprehendmedical/2018-10-30\";i:21434;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/comprehendmedical\";i:21434;s:143:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/kinesisanalytics/2015-08-14\";i:36976;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/kinesisanalytics\";i:36976;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/kms/2014-11-01\";i:52225;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/kms\";i:52225;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/macie/2017-12-19\";i:8542;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/macie\";i:8542;s:144:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/globalaccelerator/2018-08-08\";i:19899;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/globalaccelerator\";i:19899;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/polly/2016-06-10\";i:18303;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/polly\";i:18303;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/lakeformation/2017-03-31\";i:16769;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/lakeformation\";i:16769;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/lambda/2015-03-31\";i:74311;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/lambda\";i:74311;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/personalize/2018-05-22\";i:45587;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/personalize\";i:45587;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/iotthingsgraph/2018-09-06\";i:38721;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/iotthingsgraph\";i:38721;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/networkmanager/2019-07-05\";i:37521;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/networkmanager\";i:37521;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/guardduty/2017-11-28\";i:66684;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/guardduty\";i:66684;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/backup/2018-11-15\";i:54987;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/backup\";i:54987;s:146:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/workmailmessageflow/2019-05-01\";i:1727;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/workmailmessageflow\";i:1727;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cognito-sync/2014-06-30\";i:36507;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cognito-sync\";i:36507;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cur/2017-01-06\";i:6348;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cur\";i:6348;s:155:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/kinesis-video-archived-media/2017-09-30\";i:10054;s:144:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/kinesis-video-archived-media\";i:10054;s:150:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/application-autoscaling/2016-02-06\";i:21687;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/application-autoscaling\";i:21687;s:144:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/compute-optimizer/2019-11-01\";i:15207;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/compute-optimizer\";i:15207;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/workmail/2017-10-01\";i:37590;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/workmail\";i:37590;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/athena/2017-05-18\";i:22951;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/athena\";i:22951;s:144:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/managedblockchain/2018-09-24\";i:30957;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/managedblockchain\";i:30957;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/iot-jobs-data/2017-09-29\";i:8808;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/iot-jobs-data\";i:8808;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/connect/2017-08-08\";i:45415;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/connect\";i:45415;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/acm-pca/2017-08-22\";i:26571;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/acm-pca\";i:26571;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/directconnect/2012-10-25\";i:55661;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/directconnect\";i:55661;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/sagemaker/2017-07-24\";i:228945;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/sagemaker\";i:228945;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/apigateway/2015-07-09\";i:121573;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/apigateway\";i:121573;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/sms-voice/2018-09-05\";i:11972;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/sms-voice\";i:11972;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mediapackage/2017-10-12\";i:43092;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mediapackage\";i:43092;s:144:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/elasticfilesystem/2015-02-01\";i:21543;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/elasticfilesystem\";i:21543;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/waf/2015-08-24\";i:83604;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/waf\";i:83604;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/budgets/2016-10-20\";i:18704;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/budgets\";i:18704;s:144:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudsearchdomain/2013-01-01\";i:7589;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudsearchdomain\";i:7589;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/transfer/2018-11-05\";i:20947;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/transfer\";i:20947;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ram/2018-01-04\";i:35362;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ram\";i:35362;s:142:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mturk-requester/2017-01-17\";i:40659;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mturk-requester\";i:40659;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/securityhub/2018-10-26\";i:58219;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/securityhub\";i:58219;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/chime/2018-05-01\";i:108990;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/chime\";i:108990;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/dataexchange/2017-07-25\";i:33245;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/dataexchange\";i:33245;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/codedeploy/2014-10-06\";i:82840;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/codedeploy\";i:82840;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudhsm/2014-05-30\";i:18939;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudhsm\";i:18939;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mediaconnect/2018-11-14\";i:30425;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mediaconnect\";i:30425;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/fsx/2018-03-01\";i:32026;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/fsx\";i:32026;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/sso-oidc/2019-06-10\";i:7609;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/sso-oidc\";i:7609;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/sso/2019-06-10\";i:6683;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/sso\";i:6683;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/codepipeline/2015-07-09\";i:54807;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/codepipeline\";i:54807;s:142:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mediastore-data/2017-09-01\";i:8478;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mediastore-data\";i:8478;s:143:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/streams.dynamodb/2012-08-10\";i:9149;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/streams.dynamodb\";i:9149;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/dynamodb/2011-12-05\";i:20840;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/dynamodb/2012-08-10\";i:83023;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/dynamodb\";i:103863;s:144:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/autoscaling-plans/2018-01-06\";i:16665;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/autoscaling-plans\";i:16665;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/forecastquery/2018-06-26\";i:3382;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/forecastquery\";i:3382;s:145:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/connectparticipant/2018-09-07\";i:8697;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/connectparticipant\";i:8697;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/route53domains/2014-05-15\";i:27697;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/route53domains\";i:27697;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/qldb-session/2019-07-11\";i:5718;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/qldb-session\";i:5718;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mediatailor/2018-04-23\";i:9326;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mediatailor\";i:9326;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/autoscaling/2011-01-01\";i:67079;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/autoscaling\";i:67079;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudtrail/2013-11-01\";i:29465;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudtrail\";i:29465;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/dms/2016-01-01\";i:69586;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/dms\";i:69586;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ebs/2019-11-02\";i:6391;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ebs\";i:6391;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/iam/2010-05-08\";i:141650;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/iam\";i:141650;s:146:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/migrationhub-config/2019-06-30\";i:4947;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/migrationhub-config\";i:4947;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/kafka/2018-11-14\";i:36764;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/kafka\";i:36764;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/shield/2016-06-02\";i:20187;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/shield\";i:20187;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/waf-regional/2016-11-28\";i:86805;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/waf-regional\";i:86805;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/kinesisvideo/2017-09-30\";i:22856;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/kinesisvideo\";i:22856;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/logs/2014-03-28\";i:40791;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/logs\";i:40791;s:142:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/machinelearning/2014-12-12\";i:46361;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/machinelearning\";i:46361;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/pinpoint-email/2018-07-26\";i:52409;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/pinpoint-email\";i:52409;s:143:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cognito-identity/2014-06-30\";i:25679;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cognito-identity\";i:25679;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/serverlessrepo/2017-09-08\";i:34922;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/serverlessrepo\";i:34922;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/clouddirectory/2016-05-10\";i:109663;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/clouddirectory/2017-01-11\";i:111966;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/clouddirectory\";i:221629;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ec2/2015-10-01\";i:276672;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ec2/2016-09-15\";i:290102;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ec2/2016-11-15\";i:621467;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ec2/2016-04-01\";i:281229;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ec2\";i:1469470;s:149:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/codestar-notifications/2019-10-15\";i:16423;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/codestar-notifications\";i:16423;s:155:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/marketplacecommerceanalytics/2015-07-01\";i:5317;s:144:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/marketplacecommerceanalytics\";i:5317;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudformation/2010-05-15\";i:85875;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudformation\";i:85875;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/secretsmanager/2017-10-17\";i:23282;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/secretsmanager\";i:23282;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/imagebuilder/2019-12-02\";i:64751;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/imagebuilder\";i:64751;s:137:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudhsmv2/2017-04-28\";i:17083;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/cloudhsmv2\";i:17083;s:149:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/elasticloadbalancingv2/2015-12-01\";i:58254;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/elasticloadbalancingv2\";i:58254;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/gamelift/2015-10-01\";i:91326;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/gamelift\";i:91326;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mgh/2017-05-31\";i:21949;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/mgh\";i:21949;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/amplify/2017-07-25\";i:51623;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/amplify\";i:51623;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/qldb/2019-01-02\";i:17051;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/qldb\";i:17051;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/servicecatalog/2015-12-10\";i:102030;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/servicecatalog\";i:102030;s:144:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/codeguru-reviewer/2019-09-19\";i:8198;s:133:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/codeguru-reviewer\";i:8198;s:143:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/elasticmapreduce/2009-03-31\";i:56031;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/elasticmapreduce\";i:56031;s:151:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/resourcegroupstaggingapi/2017-01-26\";i:12560;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/resourcegroupstaggingapi\";i:12560;s:134:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/pricing/2017-10-15\";i:5409;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/pricing\";i:5409;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/dax/2017-04-19\";i:27189;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/dax\";i:27189;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/rds/2014-09-01\";i:80729;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/rds/2014-10-31\";i:202333;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/rds\";i:283062;s:129:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ce/2017-10-25\";i:45449;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/ce\";i:45449;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/snowball/2016-06-30\";i:22133;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/snowball\";i:22133;s:146:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/marketplace-catalog/2018-09-17\";i:12445;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/marketplace-catalog\";i:12445;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/runtime.lex/2016-11-28\";i:15656;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/runtime.lex\";i:15656;s:139:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/iotanalytics/2017-11-27\";i:51221;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/iotanalytics\";i:51221;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/eks/2017-11-01\";i:33600;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/eks\";i:33600;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/swf/2012-01-25\";i:72980;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/swf\";i:72980;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/datasync/2018-11-09\";i:30504;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/datasync\";i:30504;s:143:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/codeguruprofiler/2019-07-18\";i:14644;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data/codeguruprofiler\";i:14644;s:115:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/data\";i:12499138;s:119:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/Endpoint\";i:17197;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/Multipart\";i:17154;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/ClientSideMonitoring/Exception\";i:382;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/ClientSideMonitoring\";i:34647;s:140:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/S3/RegionalEndpoint/Exception\";i:380;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/S3/RegionalEndpoint\";i:8172;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/S3/UseArnRegion/Exception\";i:371;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/S3/UseArnRegion\";i:4833;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/S3/Crypto\";i:24919;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/S3/Exception\";i:4942;s:113:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/S3\";i:235096;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/Api/Parser/Exception\";i:1422;s:121:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/Api/Parser\";i:36239;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/Api/Serializer\";i:24912;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/Api/ErrorParser\";i:9687;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/Api\";i:113654;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/Crypto/Cipher\";i:5418;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/Crypto\";i:40945;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/Exception\";i:12246;s:122:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/Credentials\";i:43907;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/Arn/S3\";i:675;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/Arn/Exception\";i:165;s:114:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/Arn\";i:9720;s:138:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/EndpointDiscovery/Exception\";i:374;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/EndpointDiscovery\";i:25640;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src/Signature\";i:22069;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php/src\";i:13306502;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws/aws-sdk-php\";i:13307601;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/aws\";i:13307601;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/monolog/monolog/src/Monolog/Handler/FingersCrossed\";i:3397;s:136:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/monolog/monolog/src/Monolog/Handler/SyslogUdp\";i:1425;s:132:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/monolog/monolog/src/Monolog/Handler/Slack\";i:8082;s:131:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/monolog/monolog/src/Monolog/Handler/Curl\";i:1458;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/monolog/monolog/src/Monolog/Handler\";i:229076;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/monolog/monolog/src/Monolog/Processor\";i:17471;s:128:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/monolog/monolog/src/Monolog/Formatter\";i:47860;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/monolog/monolog/src/Monolog\";i:339702;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/monolog/monolog/src\";i:339702;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/monolog/monolog\";i:339702;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/monolog\";i:339702;s:94:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/bin\";i:3285;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/auth/src/HttpHandler\";i:7631;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/auth/src/Subscriber\";i:11513;s:112:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/auth/src/Cache\";i:14057;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/auth/src/Middleware\";i:11954;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/auth/src/Credentials\";i:37814;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/auth/src\";i:163935;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/auth\";i:176423;s:151:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/apiclient-services/src/Google/Service/Oauth2/Resource\";i:3397;s:142:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/apiclient-services/src/Google/Service/Oauth2\";i:11552;s:150:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/apiclient-services/src/Google/Service/Drive/Resource\";i:56376;s:141:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/apiclient-services/src/Google/Service/Drive\";i:164943;s:158:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/apiclient-services/src/Google/Service/DriveActivity/Resource\";i:1550;s:149:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/apiclient-services/src/Google/Service/DriveActivity\";i:82496;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/apiclient-services/src/Google/Service\";i:287001;s:127:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/apiclient-services/src/Google\";i:287001;s:120:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/apiclient-services/src\";i:287001;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/apiclient-services\";i:287428;s:124:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/apiclient/src/Google/Utils\";i:10617;s:126:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/apiclient/src/Google/Service\";i:12314;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/apiclient/src/Google/AccessToken\";i:10549;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/apiclient/src/Google/Task\";i:9064;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/apiclient/src/Google/AuthHandler\";i:7005;s:123:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/apiclient/src/Google/Http\";i:23646;s:118:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/apiclient/src/Google\";i:124422;s:111:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/apiclient/src\";i:124422;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google/apiclient\";i:124422;s:97:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist/google\";i:588273;s:90:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/vendor-dist\";i:16460349;s:88:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/languages\";i:173031;s:117:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/includes/display/processing\";i:36454;s:106:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/includes/display\";i:38440;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/includes/fields\";i:18734;s:159:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/includes/admin/pages/ninja-forms-uploads/tabs/browse-uploads/sidebars\";i:5627;s:150:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/includes/admin/pages/ninja-forms-uploads/tabs/browse-uploads\";i:16616;s:153:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/includes/admin/pages/ninja-forms-uploads/tabs/external-settings\";i:3349;s:151:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/includes/admin/pages/ninja-forms-uploads/tabs/upload-settings\";i:6885;s:135:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/includes/admin/pages/ninja-forms-uploads/tabs\";i:26850;s:130:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/includes/admin/pages/ninja-forms-uploads\";i:26850;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/includes/admin/pages\";i:26850;s:104:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/includes/admin\";i:33624;s:107:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/includes/external\";i:14125;s:125:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/includes/lib/dropbox/OAuth/Consumer\";i:243815;s:116:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/includes/lib/dropbox/OAuth\";i:243815;s:110:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/includes/lib/dropbox\";i:271576;s:105:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/includes/lib/s3\";i:93485;s:102:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/includes/lib\";i:365061;s:98:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/includes\";i:483259;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/js/min\";i:6555;s:96:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/js/dev\";i:2772;s:92:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated/js\";i:9327;s:89:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads/deprecated\";i:498621;s:78:\"/home/getmadto/public_html/getmad.today/wp-content/plugins/ninja-forms-uploads\";i:17449388;s:58:\"/home/getmadto/public_html/getmad.today/wp-content/plugins\";i:221832837;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2021/03\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2021/06\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2021/02\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2021/08\";i:36719105;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2021/12\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2021/05\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2021/04\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2021/10\";i:18658186;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2021/09\";i:21970132;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2021/01\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2021/07\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2021/11\";i:40038606;s:63:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2021\";i:117386029;s:84:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/prime-mover-tmp-downloads\";i:67;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2022/03\";i:9642218;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2022/06\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2022/02\";i:6305388;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2022/08\";i:26677545;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2022/05\";i:592658;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2022/04\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2022/09\";i:24216;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2022/01\";i:22883674;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2022/07\";i:1433218;s:63:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2022\";i:67558917;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2019/08\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2019/12\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2019/10\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2019/09\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2019/07\";i:354670;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2019/11\";i:0;s:63:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2019\";i:354670;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2018/05\";i:45538;s:63:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2018\";i:45538;s:85:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/prime-mover-export-files/1\";i:343526400;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/prime-mover-export-files\";i:343526477;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2016/04\";i:700370;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2016/10\";i:5298005;s:63:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2016\";i:5998375;s:83:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/prime-mover-import-files\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2014/11\";i:731294;s:63:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2014\";i:731294;s:67:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/et-fonts\";i:22920;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2013/03\";i:141197;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2013/08\";i:1781169;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2013/04\";i:117637;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2013/01\";i:446029;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2013/07\";i:893878;s:63:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2013\";i:3379910;s:81:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/prime-mover-lock-files\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2020/03\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2020/06\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2020/02\";i:25808;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2020/08\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2020/12\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2020/05\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2020/04\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2020/10\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2020/09\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2020/01\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2020/07\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2020/11\";i:0;s:63:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2020\";i:25808;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2015/08\";i:295329;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2015/09\";i:4740898;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2015/07\";i:36297;s:63:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2015\";i:5072524;s:70:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/ninja-forms\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/et_temp\";i:0;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2017/06\";i:4856263;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2017/02\";i:35129;s:66:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2017/01\";i:75393;s:63:\"/home/getmadto/public_html/getmad.today/wp-content/uploads/2017\";i:4966785;s:58:\"/home/getmadto/public_html/getmad.today/wp-content/uploads\";i:549069314;}','yes'),(22111,'edd_sl_c8b99c88daab56b5b4a42018a1e8d4c5','a:2:{s:7:\"timeout\";i:1664306798;s:5:\"value\";s:31742:\"{\"new_version\":\"3.1\",\"stable_version\":\"3.1\",\"name\":\"Conditional Logic\",\"slug\":\"conditionals\",\"url\":\"https:\\/\\/ninjaforms.com\\/extensions\\/conditional-logic\\/?changelog=1\",\"last_updated\":\"2022-08-25 1:11:36\",\"homepage\":\"https:\\/\\/ninjaforms.com\\/extensions\\/conditional-logic\\/\",\"package\":\"https:\\/\\/ninjaforms.com\\/edd-sl\\/package_download\\/MTY2NDM2Nzk5ODplMjM0YzgyNzYxNGJiOTdjMGY5OGJlYzBhZTM3NTVmNzoyNTc6OTQyZjZiYWQ2ZDIyOTc3NjQ0ZGEyMDc5MGUyMDc5ZTI6aHR0cHNALy9sb21hZC10ZXN0LmdldG1hZC50b2RheTow\",\"download_link\":\"https:\\/\\/ninjaforms.com\\/edd-sl\\/package_download\\/MTY2NDM2Nzk5ODplMjM0YzgyNzYxNGJiOTdjMGY5OGJlYzBhZTM3NTVmNzoyNTc6OTQyZjZiYWQ2ZDIyOTc3NjQ0ZGEyMDc5MGUyMDc5ZTI6aHR0cHNALy9sb21hZC10ZXN0LmdldG1hZC50b2RheTow\",\"sections\":{\"description\":\"<p>Create forms that change as they\'re filled out! Show and hide fields. Modify lists. Send email to different recipients conditionally, and much more!<\\/p>\\n\",\"changelog\":\"<p>3.1 (21 April 2021)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Conditions can now compare date fields. This allows users to create conditions that trigger when someone selects or enters a specific date or range.<\\/li>\\n<\\/ul>\\n<p>3.0.28 (4 August 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Resolved an issue that was preventing file uploads from being saved properly upon submission.<\\/li>\\n<li>Conditions should no longer lose reference to fields that have been renamed in the form builder.<\\/li>\\n<\\/ul>\\n<p>3.0.27 (23 July 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Resolved an issue that was causing conditions on actions to be ignored.<\\/li>\\n<\\/ul>\\n<p>3.0.26.2 (21 July 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Resolved an issue with the plugin auto-updater.<\\/li>\\n<\\/ul>\\n<p>3.0.26.1 (20 July 2020)<br \\/>\\n<em>Security:<\\/em><\\/p>\\n<ul>\\n<li>Patched a data spoofing vulnerability that allowed required fields to be bypassed.<\\/li>\\n<\\/ul>\\n<p>3.0.26 (25 September 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Resolved an issue that sometimes prevented actions from firing, even when they had no attached conditions.<\\/li>\\n<li>Forms with a Stripe or PayPal action should now properly complete once returning from the payment screen.<\\/li>\\n<\\/ul>\\n<p>3.0.25 (16 September 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Hidden fields should now properly evaluate against empty.<\\/li>\\n<li>Recaptcha fields that are hidden will now properly render once shown.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Fields can now be conditionally set as required.<\\/li>\\n<\\/ul>\\n<p>3.0.24 (23 January 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Conditions based on calculations should now be properly triggered on form load.<\\/li>\\n<li>Resolved an issue that was sometimes causing actions to always fire, regardless of conditions.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Several incompatible field types have been removed from the list of fields that conditions can be based on.<\\/li>\\n<li>Inverse statements will no longer be created by default on new do statements.<\\/li>\\n<\\/ul>\\n<p>3.0.23 (11 January 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Action processing will now ignore incomplete conditional statements, which previously prevented the action from firing.<\\/li>\\n<\\/ul>\\n<p>3.0.22 (14 June 2018)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Fields now display admin labels (if they exist) instead of labels in condition blocks.<\\/li>\\n<\\/ul>\\n<p>3.0.21 (3 May 2018)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Equals conditions based on calculations should now work properly.<\\/li>\\n<\\/ul>\\n<p>3.0.20 (19 April 2018)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Duplicating a field should no longer cause conditional logic to lose track of it as a conditional trigger.<\\/li>\\n<\\/ul>\\n<p>3.0.19 (26 March 2018)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Conditions based on the selection of single checkbox fields should now function properly.<\\/li>\\n<\\/ul>\\n<p>3.0.18 (24 February 2018)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Checkbox values can now be updated via conditional logic again.<\\/li>\\n<\\/ul>\\n<p>3.0.17 (22 August 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Actions that use the greaterthan and lessthan comparators should work properly.<\\/li>\\n<li>Incorrectly setup conditions should no longer cause form display to crash.<\\/li>\\n<\\/ul>\\n<p>3.0.16 (02 August 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Action conditions should now properly support calculations.<\\/li>\\n<li>Fixed a bug that could cause calculations to fail when using Conditional Logic.<\\/li>\\n<\\/ul>\\n<p>3.0.15 (27 June 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>When setting up conditions, fields should now appear in alphabetical order within the field list.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Conditional Logic should now work properly with the Save Progress add-on.<\\/li>\\n<\\/ul>\\n<p>3.0.14 (31 May 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Tabbing through a checkbox list that has conditions will no longer trigger those conditions incorrectly.<\\/li>\\n<\\/ul>\\n<p>3.0.13 (02 May 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a fatal error with PHP version 7.1 and higher.<\\/li>\\n<\\/ul>\\n<p>3.0.12 (11 April 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Actions like Stripe can now be conditionally ran.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that caused some conditions to evaluate improperly.<\\/li>\\n<\\/ul>\\n<p>3.0.11 (19 January 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Textbox fields can now be compared to an empty string.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Help text should render properly for conditionally shown\\/hidden fields.<\\/li>\\n<\\/ul>\\n<p>3.0.10 (09 December 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause the condition drawer to fail to open if a field was deleted.<\\/li>\\n<li>Conditional Logic shouldn\'t prevent or enable actions that are otherwise disabled.<\\/li>\\n<\\/ul>\\n<p>3.0.9 (15 November 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with list field options incorrectly triggering conditions based on partial matches.<\\/li>\\n<li>Fixed a bug with missing field values causing the form to not submit properly.<\\/li>\\n<li>Fixed a bug with false-positives when tabbing through a checkbox field.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Use the form cache for getting field data.<\\/li>\\n<li>Corrected processing for different data structures.<\\/li>\\n<li>Added a check for manually disabled actions, so as to not re-enable with conditions.<\\/li>\\n<\\/ul>\\n<p>3.0.8 (25 October 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>The \\\"any\\\" operator in actions should work properly in all cases.<\\/li>\\n<li>Fixed a bug that caused fatal errors when conditions weren\'t configured properly.<\\/li>\\n<\\/ul>\\n<p>3.0.7 (13 October 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Creating conditions can now properly be based upon calculations.<\\/li>\\n<li>Fixed a bug with radio lists and the select option trigger.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>When building conditions, fields should now show up with their admin label if one is set.<\\/li>\\n<\\/ul>\\n<p>3.0.6 (03 October 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Required fields should no longer attempt to valide upon show.<\\/li>\\n<li>Country fields can now be used in conditions.<\\/li>\\n<li>Fixed a couple of conversion issues with older form imports.<\\/li>\\n<li>Conditionally shown\\/hidden fields should all show properly in submission data.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Conditions can now be created using &gt; and &lt; with textboxes and textareas.<\\/li>\\n<\\/ul>\\n<p>3.0.5 (28 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>File Uploads should now show in Conditional Logic conditions.<\\/li>\\n<\\/ul>\\n<p>3.0.4 (22 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause the builder to crash when fields were removed if there was a condition based upon that field.<\\/li>\\n<\\/ul>\\n<p>3.0.3 (11 September 2016)<\\/p>\\n<ul>\\n<li>Bugs:*<\\/li>\\n<li>Fixed a bug that caused the condition edit drawer to fail to open.<\\/li>\\n<\\/ul>\\n<p>3.0.2 (09 September 2016)<\\/p>\\n<ul>\\n<li>Fixed a bug with conversion.<\\/li>\\n<\\/ul>\\n<p>3.0.1 (06 September 2016)<\\/p>\\n<ul>\\n<li>Updated with Ninja Forms v3.x compatibility<\\/li>\\n<\\/ul>\\n<p>3.0 (06 September 2016)<\\/p>\\n<ul>\\n<li>Updated with Ninja Forms v3.x compatibility<\\/li>\\n<li>Deprecated Ninja Forms v2.9.x compatible code<\\/li>\\n<\\/ul>\\n<p>1.4.0 (13 April 2016)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Update for compatibility with WordPress 4.5 ( specifically the underscore.js update ).<\\/li>\\n<\\/ul>\\n<p>1.3.9 (26 May 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Changed values should now reset to defaults when using the \\\"clear form\\\" setting.<\\/li>\\n<\\/ul>\\n<p>1.3.8 (12 May 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Array elements should now work properly with the \\\"Contains\\\" action conditionals.<\\/li>\\n<li>Fixed a PHP Notice.<\\/li>\\n<li>Decimals should now be compared properly.<\\/li>\\n<li>Fixed a bug that could cause a PHP error if asp style tags are enabled in PHP.<\\/li>\\n<\\/ul>\\n<p>1.3.7 (18 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause conditional field data to submit improperly.<\\/li>\\n<\\/ul>\\n<p>1.3.6 (17 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause JavaScript to load older versions of files.<\\/li>\\n<\\/ul>\\n<p>1.3.5 (4 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause conditionally hidden calculations to fail.<\\/li>\\n<li>List options should work properly in version 2.9 of Ninja Forms.<\\/li>\\n<\\/ul>\\n<p>1.3.4 (3 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could prevent new conditions from being added.<\\/li>\\n<\\/ul>\\n<p>1.3.3 (27 February 2015)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Preparing for the release of Ninja Forms version 2.9.<\\/li>\\n<\\/ul>\\n<p>1.3.1 (17 November 2014)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixing bad domain\\/translation issues.<\\/li>\\n<li>Fixed a bug with checkbox lists and notification conditions.<\\/li>\\n<li>Duplicating a page with conditions using multi-part forms should now properly duplicate those conditions.<\\/li>\\n<li>Fixed several issues related to i18n.<\\/li>\\n<\\/ul>\\n<p>1.3 (28 October 2014)<br \\/>\\n<em>Features:<\\/em><\\/p>\\n<ul>\\n<li>Conditional Logic now supports conditional notifications.<\\/li>\\n<li>Only show, display, or send a notification when a user submits specific form data.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Custom conditional triggers can be added for notifications.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that caused conditionals based upon other conditional fields to work improperly.<\\/li>\\n<li>Conditionally hidden totals should now be properly removed from the all fields table.<\\/li>\\n<\\/ul>\\n<p>1.2.7 (24 July 2014)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Compatibility with Ninja Forms 2.7.<\\/li>\\n<\\/ul>\\n<p>1.2.6<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented some users from getting automatic updates.<\\/li>\\n<\\/ul>\\n<p>1.2.5<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause conditions not to work in some AJAX setups.<\\/li>\\n<\\/ul>\\n<p>1.2.4<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Conditionals should now not be applied when editing a form in the wp-admin.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with the change value setting.<\\/li>\\n<\\/ul>\\n<p>1.2.3<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented the \'add_value\' and \'change_value\' actions from working properly in some instances.<\\/li>\\n<\\/ul>\\n<p>1.2.2<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with required fields that were conditionally hidden.<\\/li>\\n<li>Removed console logs that were causing problems in IE9.<\\/li>\\n<li>Fixed a bug that caused the Add Value setting not to work properly.<\\/li>\\n<\\/ul>\\n<p>1.2.1<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed several bugs that related to pre-populating conditional fields with multi-part forms.<\\/li>\\n<\\/ul>\\n<p>1.2<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added support for the new Ninja Forms loading system. This should significantly improve loading speed for forms that use conditionals.<\\/li>\\n<\\/ul>\\n<p>1.1.1<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could prevent conditionals from working properly with required fields.<\\/li>\\n<li>Fixed a bug that could cause conditional logic to break when labels contained long strings of HTML.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Updating the JS so that when an element is shown\\/hidden, a jQuery event is fired after the show\\/hide is complete.<\\/li>\\n<li>Removed old licensing file.<\\/li>\\n<\\/ul>\\n<p>1.1<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that caused the \\\"Change Value\\\" conditional action to fail in some cases.<\\/li>\\n<li>Fixed a bug that prevented conditionals from working properly with hidden fields.<\\/li>\\n<li>Fixed several PHP Notices.<\\/li>\\n<\\/ul>\\n<p>1.0.10<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented calculations from working properly when a field that the calculation was based upon was hidden with conditional logic.<\\/li>\\n<\\/ul>\\n<p>1.0.9<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a \\\"visible\\\" data attribute.<\\/li>\\n<li>Moved functions from Ninja Forms core to this extension.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed several bugs related to using calculation fields and conditionals.<\\/li>\\n<\\/ul>\\n<p>1.0.8<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed the license and auto-update system to the one available in Ninja Forms 2.2.47.<\\/li>\\n<\\/ul>\\n<p>1.0.7<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed references to wpninjas.com to ninjaforms.com.<\\/li>\\n<\\/ul>\\n<p>1.0.6<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented conditionals from working properly in some installs.<\\/li>\\n<\\/ul>\\n<p>1.0.5<\\/p>\\n<ul>\\n<li>Fixed a bug that caused Conditionals to break calculation fields if they were hidden.<\\/li>\\n<\\/ul>\\n<p>1.0.4<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Updates for compatibility with WordPress 3.6<\\/li>\\n<\\/ul>\\n<p>1.0.3<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented conditionals from working properly with calculation fields.<\\/li>\\n<\\/ul>\\n<p>1.0.2<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that caused conditionals with multiple criteria to fail when connected with the \\\"All\\\" parameter.<\\/li>\\n<\\/ul>\\n<p>1.0.1<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>The Conditionals Extension can now be used with the Multi-Part Extension to show or hide entire pages.<\\/li>\\n<\\/ul>\\n<p>1.0<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that was causing dropdown list fields to work improperly with Conditional Logic.<\\/li>\\n<\\/ul>\\n<p>0.9<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented conditionals from working properly with multi-checkbox lists and multi-radio button lists.<\\/li>\\n<\\/ul>\\n<p>0.8<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed the display JS slightly to be more efficient.<\\/li>\\n<\\/ul>\\n<p>0.7<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Conditional fields should now behave as expected when editing user submissions.<\\/li>\\n<\\/ul>\\n<p>0.6<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented conditionals from working properly with checkbox and radio list types.<\\/li>\\n<\\/ul>\\n<p>0.5<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Moved a JS function from ninja-forms-conditionals-admin.js to the ninja-forms-admin.js.<\\/li>\\n<\\/ul>\\n<p>0.4<\\/p>\\n<ul>\\n<li>Fixed a bug that prevented multiple forms with conditionals from being placed on the same page.<\\/li>\\n<\\/ul>\\n<p>0.3<\\/p>\\n<ul>\\n<li>Various bug fixes including:<\\/li>\\n<li>Adding multiple forms with conditions to a single page will now work normally.<\\/li>\\n<\\/ul>\\n<p>0.2<\\/p>\\n<ul>\\n<li>Various bug fixes.<\\/li>\\n<li>Changed the way that javascript and css files are loaded in extensions.<\\/li>\\n<\\/ul>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":{\"1x\":\"https:\\/\\/ninjaforms.com\\/wp-content\\/uploads\\/edd\\/2012\\/10\\/conditional-logic.png\",\"2x\":\"https:\\/\\/ninjaforms.com\\/wp-content\\/uploads\\/edd\\/2012\\/10\\/conditional-logic.png\"},\"php_requires\":\"\",\"description\":[\"<p>Create forms that change as they\'re filled out! Show and hide fields. Modify lists. Send email to different recipients conditionally, and much more!<\\/p>\\n\"],\"changelog\":[\"<p>3.1 (21 April 2021)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Conditions can now compare date fields. This allows users to create conditions that trigger when someone selects or enters a specific date or range.<\\/li>\\n<\\/ul>\\n<p>3.0.28 (4 August 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Resolved an issue that was preventing file uploads from being saved properly upon submission.<\\/li>\\n<li>Conditions should no longer lose reference to fields that have been renamed in the form builder.<\\/li>\\n<\\/ul>\\n<p>3.0.27 (23 July 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Resolved an issue that was causing conditions on actions to be ignored.<\\/li>\\n<\\/ul>\\n<p>3.0.26.2 (21 July 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Resolved an issue with the plugin auto-updater.<\\/li>\\n<\\/ul>\\n<p>3.0.26.1 (20 July 2020)<br \\/>\\n<em>Security:<\\/em><\\/p>\\n<ul>\\n<li>Patched a data spoofing vulnerability that allowed required fields to be bypassed.<\\/li>\\n<\\/ul>\\n<p>3.0.26 (25 September 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Resolved an issue that sometimes prevented actions from firing, even when they had no attached conditions.<\\/li>\\n<li>Forms with a Stripe or PayPal action should now properly complete once returning from the payment screen.<\\/li>\\n<\\/ul>\\n<p>3.0.25 (16 September 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Hidden fields should now properly evaluate against empty.<\\/li>\\n<li>Recaptcha fields that are hidden will now properly render once shown.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Fields can now be conditionally set as required.<\\/li>\\n<\\/ul>\\n<p>3.0.24 (23 January 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Conditions based on calculations should now be properly triggered on form load.<\\/li>\\n<li>Resolved an issue that was sometimes causing actions to always fire, regardless of conditions.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Several incompatible field types have been removed from the list of fields that conditions can be based on.<\\/li>\\n<li>Inverse statements will no longer be created by default on new do statements.<\\/li>\\n<\\/ul>\\n<p>3.0.23 (11 January 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Action processing will now ignore incomplete conditional statements, which previously prevented the action from firing.<\\/li>\\n<\\/ul>\\n<p>3.0.22 (14 June 2018)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Fields now display admin labels (if they exist) instead of labels in condition blocks.<\\/li>\\n<\\/ul>\\n<p>3.0.21 (3 May 2018)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Equals conditions based on calculations should now work properly.<\\/li>\\n<\\/ul>\\n<p>3.0.20 (19 April 2018)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Duplicating a field should no longer cause conditional logic to lose track of it as a conditional trigger.<\\/li>\\n<\\/ul>\\n<p>3.0.19 (26 March 2018)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Conditions based on the selection of single checkbox fields should now function properly.<\\/li>\\n<\\/ul>\\n<p>3.0.18 (24 February 2018)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Checkbox values can now be updated via conditional logic again.<\\/li>\\n<\\/ul>\\n<p>3.0.17 (22 August 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Actions that use the greaterthan and lessthan comparators should work properly.<\\/li>\\n<li>Incorrectly setup conditions should no longer cause form display to crash.<\\/li>\\n<\\/ul>\\n<p>3.0.16 (02 August 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Action conditions should now properly support calculations.<\\/li>\\n<li>Fixed a bug that could cause calculations to fail when using Conditional Logic.<\\/li>\\n<\\/ul>\\n<p>3.0.15 (27 June 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>When setting up conditions, fields should now appear in alphabetical order within the field list.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Conditional Logic should now work properly with the Save Progress add-on.<\\/li>\\n<\\/ul>\\n<p>3.0.14 (31 May 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Tabbing through a checkbox list that has conditions will no longer trigger those conditions incorrectly.<\\/li>\\n<\\/ul>\\n<p>3.0.13 (02 May 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a fatal error with PHP version 7.1 and higher.<\\/li>\\n<\\/ul>\\n<p>3.0.12 (11 April 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Actions like Stripe can now be conditionally ran.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that caused some conditions to evaluate improperly.<\\/li>\\n<\\/ul>\\n<p>3.0.11 (19 January 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Textbox fields can now be compared to an empty string.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Help text should render properly for conditionally shown\\/hidden fields.<\\/li>\\n<\\/ul>\\n<p>3.0.10 (09 December 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause the condition drawer to fail to open if a field was deleted.<\\/li>\\n<li>Conditional Logic shouldn\'t prevent or enable actions that are otherwise disabled.<\\/li>\\n<\\/ul>\\n<p>3.0.9 (15 November 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with list field options incorrectly triggering conditions based on partial matches.<\\/li>\\n<li>Fixed a bug with missing field values causing the form to not submit properly.<\\/li>\\n<li>Fixed a bug with false-positives when tabbing through a checkbox field.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Use the form cache for getting field data.<\\/li>\\n<li>Corrected processing for different data structures.<\\/li>\\n<li>Added a check for manually disabled actions, so as to not re-enable with conditions.<\\/li>\\n<\\/ul>\\n<p>3.0.8 (25 October 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>The \\\"any\\\" operator in actions should work properly in all cases.<\\/li>\\n<li>Fixed a bug that caused fatal errors when conditions weren\'t configured properly.<\\/li>\\n<\\/ul>\\n<p>3.0.7 (13 October 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Creating conditions can now properly be based upon calculations.<\\/li>\\n<li>Fixed a bug with radio lists and the select option trigger.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>When building conditions, fields should now show up with their admin label if one is set.<\\/li>\\n<\\/ul>\\n<p>3.0.6 (03 October 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Required fields should no longer attempt to valide upon show.<\\/li>\\n<li>Country fields can now be used in conditions.<\\/li>\\n<li>Fixed a couple of conversion issues with older form imports.<\\/li>\\n<li>Conditionally shown\\/hidden fields should all show properly in submission data.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Conditions can now be created using &gt; and &lt; with textboxes and textareas.<\\/li>\\n<\\/ul>\\n<p>3.0.5 (28 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>File Uploads should now show in Conditional Logic conditions.<\\/li>\\n<\\/ul>\\n<p>3.0.4 (22 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause the builder to crash when fields were removed if there was a condition based upon that field.<\\/li>\\n<\\/ul>\\n<p>3.0.3 (11 September 2016)<\\/p>\\n<ul>\\n<li>Bugs:*<\\/li>\\n<li>Fixed a bug that caused the condition edit drawer to fail to open.<\\/li>\\n<\\/ul>\\n<p>3.0.2 (09 September 2016)<\\/p>\\n<ul>\\n<li>Fixed a bug with conversion.<\\/li>\\n<\\/ul>\\n<p>3.0.1 (06 September 2016)<\\/p>\\n<ul>\\n<li>Updated with Ninja Forms v3.x compatibility<\\/li>\\n<\\/ul>\\n<p>3.0 (06 September 2016)<\\/p>\\n<ul>\\n<li>Updated with Ninja Forms v3.x compatibility<\\/li>\\n<li>Deprecated Ninja Forms v2.9.x compatible code<\\/li>\\n<\\/ul>\\n<p>1.4.0 (13 April 2016)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Update for compatibility with WordPress 4.5 ( specifically the underscore.js update ).<\\/li>\\n<\\/ul>\\n<p>1.3.9 (26 May 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Changed values should now reset to defaults when using the \\\"clear form\\\" setting.<\\/li>\\n<\\/ul>\\n<p>1.3.8 (12 May 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Array elements should now work properly with the \\\"Contains\\\" action conditionals.<\\/li>\\n<li>Fixed a PHP Notice.<\\/li>\\n<li>Decimals should now be compared properly.<\\/li>\\n<li>Fixed a bug that could cause a PHP error if asp style tags are enabled in PHP.<\\/li>\\n<\\/ul>\\n<p>1.3.7 (18 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause conditional field data to submit improperly.<\\/li>\\n<\\/ul>\\n<p>1.3.6 (17 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause JavaScript to load older versions of files.<\\/li>\\n<\\/ul>\\n<p>1.3.5 (4 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause conditionally hidden calculations to fail.<\\/li>\\n<li>List options should work properly in version 2.9 of Ninja Forms.<\\/li>\\n<\\/ul>\\n<p>1.3.4 (3 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could prevent new conditions from being added.<\\/li>\\n<\\/ul>\\n<p>1.3.3 (27 February 2015)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Preparing for the release of Ninja Forms version 2.9.<\\/li>\\n<\\/ul>\\n<p>1.3.1 (17 November 2014)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixing bad domain\\/translation issues.<\\/li>\\n<li>Fixed a bug with checkbox lists and notification conditions.<\\/li>\\n<li>Duplicating a page with conditions using multi-part forms should now properly duplicate those conditions.<\\/li>\\n<li>Fixed several issues related to i18n.<\\/li>\\n<\\/ul>\\n<p>1.3 (28 October 2014)<br \\/>\\n<em>Features:<\\/em><\\/p>\\n<ul>\\n<li>Conditional Logic now supports conditional notifications.<\\/li>\\n<li>Only show, display, or send a notification when a user submits specific form data.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Custom conditional triggers can be added for notifications.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that caused conditionals based upon other conditional fields to work improperly.<\\/li>\\n<li>Conditionally hidden totals should now be properly removed from the all fields table.<\\/li>\\n<\\/ul>\\n<p>1.2.7 (24 July 2014)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Compatibility with Ninja Forms 2.7.<\\/li>\\n<\\/ul>\\n<p>1.2.6<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented some users from getting automatic updates.<\\/li>\\n<\\/ul>\\n<p>1.2.5<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause conditions not to work in some AJAX setups.<\\/li>\\n<\\/ul>\\n<p>1.2.4<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Conditionals should now not be applied when editing a form in the wp-admin.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with the change value setting.<\\/li>\\n<\\/ul>\\n<p>1.2.3<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented the \'add_value\' and \'change_value\' actions from working properly in some instances.<\\/li>\\n<\\/ul>\\n<p>1.2.2<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with required fields that were conditionally hidden.<\\/li>\\n<li>Removed console logs that were causing problems in IE9.<\\/li>\\n<li>Fixed a bug that caused the Add Value setting not to work properly.<\\/li>\\n<\\/ul>\\n<p>1.2.1<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed several bugs that related to pre-populating conditional fields with multi-part forms.<\\/li>\\n<\\/ul>\\n<p>1.2<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added support for the new Ninja Forms loading system. This should significantly improve loading speed for forms that use conditionals.<\\/li>\\n<\\/ul>\\n<p>1.1.1<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could prevent conditionals from working properly with required fields.<\\/li>\\n<li>Fixed a bug that could cause conditional logic to break when labels contained long strings of HTML.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Updating the JS so that when an element is shown\\/hidden, a jQuery event is fired after the show\\/hide is complete.<\\/li>\\n<li>Removed old licensing file.<\\/li>\\n<\\/ul>\\n<p>1.1<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that caused the \\\"Change Value\\\" conditional action to fail in some cases.<\\/li>\\n<li>Fixed a bug that prevented conditionals from working properly with hidden fields.<\\/li>\\n<li>Fixed several PHP Notices.<\\/li>\\n<\\/ul>\\n<p>1.0.10<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented calculations from working properly when a field that the calculation was based upon was hidden with conditional logic.<\\/li>\\n<\\/ul>\\n<p>1.0.9<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a \\\"visible\\\" data attribute.<\\/li>\\n<li>Moved functions from Ninja Forms core to this extension.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed several bugs related to using calculation fields and conditionals.<\\/li>\\n<\\/ul>\\n<p>1.0.8<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed the license and auto-update system to the one available in Ninja Forms 2.2.47.<\\/li>\\n<\\/ul>\\n<p>1.0.7<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed references to wpninjas.com to ninjaforms.com.<\\/li>\\n<\\/ul>\\n<p>1.0.6<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented conditionals from working properly in some installs.<\\/li>\\n<\\/ul>\\n<p>1.0.5<\\/p>\\n<ul>\\n<li>Fixed a bug that caused Conditionals to break calculation fields if they were hidden.<\\/li>\\n<\\/ul>\\n<p>1.0.4<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Updates for compatibility with WordPress 3.6<\\/li>\\n<\\/ul>\\n<p>1.0.3<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented conditionals from working properly with calculation fields.<\\/li>\\n<\\/ul>\\n<p>1.0.2<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that caused conditionals with multiple criteria to fail when connected with the \\\"All\\\" parameter.<\\/li>\\n<\\/ul>\\n<p>1.0.1<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>The Conditionals Extension can now be used with the Multi-Part Extension to show or hide entire pages.<\\/li>\\n<\\/ul>\\n<p>1.0<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that was causing dropdown list fields to work improperly with Conditional Logic.<\\/li>\\n<\\/ul>\\n<p>0.9<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented conditionals from working properly with multi-checkbox lists and multi-radio button lists.<\\/li>\\n<\\/ul>\\n<p>0.8<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed the display JS slightly to be more efficient.<\\/li>\\n<\\/ul>\\n<p>0.7<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Conditional fields should now behave as expected when editing user submissions.<\\/li>\\n<\\/ul>\\n<p>0.6<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented conditionals from working properly with checkbox and radio list types.<\\/li>\\n<\\/ul>\\n<p>0.5<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Moved a JS function from ninja-forms-conditionals-admin.js to the ninja-forms-admin.js.<\\/li>\\n<\\/ul>\\n<p>0.4<\\/p>\\n<ul>\\n<li>Fixed a bug that prevented multiple forms with conditionals from being placed on the same page.<\\/li>\\n<\\/ul>\\n<p>0.3<\\/p>\\n<ul>\\n<li>Various bug fixes including:<\\/li>\\n<li>Adding multiple forms with conditions to a single page will now work normally.<\\/li>\\n<\\/ul>\\n<p>0.2<\\/p>\\n<ul>\\n<li>Various bug fixes.<\\/li>\\n<li>Changed the way that javascript and css files are loaded in extensions.<\\/li>\\n<\\/ul>\\n\"]}\";}','no'),(22112,'edd_sl_e833f75ab6b1decacd11ad1411279a27','a:2:{s:7:\"timeout\";i:1664306799;s:5:\"value\";s:28154:\"{\"new_version\":\"3.0.26\",\"stable_version\":\"3.0.26\",\"name\":\"Multi Step Forms\",\"slug\":\"multi-part\",\"url\":\"https:\\/\\/ninjaforms.com\\/extensions\\/multi-step-forms\\/?changelog=1\",\"last_updated\":\"2022-04-26 11:41:39\",\"homepage\":\"https:\\/\\/ninjaforms.com\\/extensions\\/multi-step-forms\\/\",\"package\":\"https:\\/\\/ninjaforms.com\\/edd-sl\\/package_download\\/MTY2NDM2Nzk5ODplMjM0YzgyNzYxNGJiOTdjMGY5OGJlYzBhZTM3NTVmNzoyODU6ZGZjYTllNDk0YWQyOTNkZTZiNjRhZTdiMjk3MzE0ODE6aHR0cHNALy9sb21hZC10ZXN0LmdldG1hZC50b2RheTow\",\"download_link\":\"https:\\/\\/ninjaforms.com\\/edd-sl\\/package_download\\/MTY2NDM2Nzk5ODplMjM0YzgyNzYxNGJiOTdjMGY5OGJlYzBhZTM3NTVmNzoyODU6ZGZjYTllNDk0YWQyOTNkZTZiNjRhZTdiMjk3MzE0ODE6aHR0cHNALy9sb21hZC10ZXN0LmdldG1hZC50b2RheTow\",\"sections\":{\"description\":\"<p>Give submissions a boost on any longer form by making it a multi-page form. Drag and drop fields between pages, add breadcrumb navigation, a progress bar, and loads more!<\\/p>\\n\",\"changelog\":\"<p>3.0.26 (2 April 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Resolved an issue that was sometimes causing an undefined index notice on activation.<\\/li>\\n<\\/ul>\\n<p>3.0.25 (23 January 2019)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Showing or hiding a part with conditional logic will no longer automatically add a reverse statement.<\\/li>\\n<\\/ul>\\n<p>3.0.24 (24 August 2018)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Required field validation should no longer prevent navigation to the previous part.<\\/li>\\n<\\/ul>\\n<p>3.0.23 (23 May 2018)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Part duplication should no longer be available in situations where it can cause data corruption.<\\/li>\\n<\\/ul>\\n<p>3.0.22 (7 November 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>When a part is deleted all fields associated with that part are now removed.<\\/li>\\n<li>Part order will now be consistent in form imports and exports.<\\/li>\\n<li>Google reCaptcha will now render on any form part.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Updated the opinionated styles for the progress bar.<\\/li>\\n<\\/ul>\\n<p>3.0.21 (15 September 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with field duplication when Layout &amp; Styles is also installed.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed the priority of admin enqueued scripts for loading order compared to Layout &amp; Styles.<\\/li>\\n<\\/ul>\\n<p>3.0.20 (22 August 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Duplicating a part should no longer cause fields to incorrectly duplicate.<\\/li>\\n<li>Removed a PHP warning that might be displayed on the front-end.<\\/li>\\n<li>Importing forms with incomplete Layout &amp; Styles data should no longer crash import.<\\/li>\\n<\\/ul>\\n<p>3.0.19 (02 August 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause conditions setup with Conditional Logic to fail on forms that have multiple parts.<\\/li>\\n<\\/ul>\\n<p>3.0.18 (21 June 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that caused duplicating fields and parts to fail.<\\/li>\\n<\\/ul>\\n<p>3.0.17 (31 May 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Duplicating fields should now work on forms that have multiple parts.<\\/li>\\n<\\/ul>\\n<p>3.0.16 (23 May 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Help text should now work on parts beyond the first.<\\/li>\\n<\\/ul>\\n<p>3.0.15 (17 March 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Re-enabled the duplicate part functionality. It should now function properly.<\\/li>\\n<\\/ul>\\n<p>3.0.14 (09 March 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause the all_fields merge tag to be empty.<\\/li>\\n<\\/ul>\\n<p>3.0.13 (07 March 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Temporarily removed the \\\"Duplicate Part\\\" feature while we work out some bugs with how it operates.<\\/li>\\n<\\/ul>\\n<p>3.0.12 (02 Februrary 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a possible PHP warning.<\\/li>\\n<\\/ul>\\n<p>3.0.11 (26 January 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a filter for Ninja Forms version 3.0.25 that allows Multi-Part Forms to correctly order fields in submissions.<\\/li>\\n<\\/ul>\\n<p>3.0.10 (19 January 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Google Recaptcha fields should now work properly with Multi-Part forms.<\\/li>\\n<\\/ul>\\n<p>3.0.9 (15 December 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with Conditional Logic that caused conditionally shown\\/hidden parts to throw a JS error.<\\/li>\\n<\\/ul>\\n<p>3.0.8 (21 November 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with re-ordering of fields when also using Layouts &amp; Styles.<\\/li>\\n<\\/ul>\\n<p>3.0.7 (15 November 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that can cause forms to crash on servers that have ASP-like tags turned on.<\\/li>\\n<\\/ul>\\n<p>3.0.6 (03 November 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that caused duplicating fields to create multiple duplicates.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added label settings for Previous and Next buttons.<\\/li>\\n<\\/ul>\\n<p>3.0.5 (26 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with converting from the RC of Ninja Forms.<\\/li>\\n<\\/ul>\\n<p>3.0.4 (12 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug in Layout &amp; Styles conversion.<\\/li>\\n<\\/ul>\\n<p>3.0.3 (09 September 2016)<\\/p>\\n<ul>\\n<li>Fixed a bug with conversion.<\\/li>\\n<\\/ul>\\n<p>3.0.2 (06 September 2016)<\\/p>\\n<ul>\\n<li>Updated with Ninja Forms v3.x compatibility licensing.<\\/li>\\n<\\/ul>\\n<p>3.0.1 (06 September 2016)<\\/p>\\n<ul>\\n<li>Updated with Ninja Forms v3.x compatibility<\\/li>\\n<\\/ul>\\n<p>3.0.0 (06 September 2016)<\\/p>\\n<ul>\\n<li>Updated with Ninja Forms v3.x compatibility<\\/li>\\n<li>Deprecated Ninja Forms v2.9.x compatible code<\\/li>\\n<\\/ul>\\n<p>1.3.5 (08 September 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause the animated spinner to fail to show when building a form.<\\/li>\\n<\\/ul>\\n<p>1.3.4 (17 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>When our JS changes, users browsers shouldn\'t keep old copies in the cache.<\\/li>\\n<\\/ul>\\n<p>1.3.3 (4 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause saving a new form to fail.<\\/li>\\n<\\/ul>\\n<p>1.3.2 (4 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause issues when adding a field type and then deactivating an extension that added it.<\\/li>\\n<\\/ul>\\n<p>1.3.1 (27 February 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed several minor bugs with version 2.9 of Ninja Forms.<\\/li>\\n<li>Creating a new multi-part form should now work with older versions of Ninja Forms as well.<\\/li>\\n<\\/ul>\\n<p>1.3 (4 February 2015)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Preparing for the release of Ninja Forms 2.9.<\\/li>\\n<\\/ul>\\n<p>1.2.8 (17 November 2014)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Next and Previous button text can now be changed in the Forms-&gt;Settings-&gt;Labels tab.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed several bugs that prevented translations from working properly.<\\/li>\\n<li>Added several strings that weren\'t translatable previously to the .po and .pot files.<\\/li>\\n<\\/ul>\\n<p>1.2.7 (16 September 2014)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Compatibility with Ninja Forms 2.8.<\\/li>\\n<\\/ul>\\n<p>1.2.6 (24 July 2014)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Compatibility with Ninja Forms 2.7.<\\/li>\\n<\\/ul>\\n<p>1.2.5<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Multi-part forms should now work properly with the Stripe extension in all implementations.<\\/li>\\n<\\/ul>\\n<p>1.2.4<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed the name of the \\\"Confirmation Page\\\" to \\\"Review Page\\\" to make the option\'s purpose more clear.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug on the review page that caused hidden fields to sometimes be shown as textboxes that could be manipulated.<\\/li>\\n<\\/ul>\\n<p>1.2.3<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with page titles that prevented them from displaying properly on conditional pages.<\\/li>\\n<li>Fixed a bug that caused forms with several pages to have scrolling issues in the admin.<\\/li>\\n<\\/ul>\\n<p>1.2.2<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with confirmation pages and the conditional logic extension.<\\/li>\\n<li>Fixed a bug that could cause php errors without the conditional logic extension present.<\\/li>\\n<\\/ul>\\n<p>1.2.1<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with confirmation pages that could prevent them from working properly.<\\/li>\\n<\\/ul>\\n<p>1.2<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added support for the new Ninja Forms loading system. This should significantly improve loading speed for forms that use multi-part forms.<\\/li>\\n<\\/ul>\\n<p>1.1.1<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed translation issues by adding a default language folder, fixing several bad text domains, and adding a proper translation loader.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a jQuery event for \\u2018mp_change_page\\u2019 that fires after the page has successfully changed.<\\/li>\\n<li>Added some CSS for WP 3.8 compatability.<\\/li>\\n<li>Admin scripts should now load the min or dev versions based on the NINJA_FORMS_JS_DEBUG constant.<\\/li>\\n<li>Removed old licensing file.<\\/li>\\n<\\/ul>\\n<p>1.1<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause Multi-Part Javascript to run, even if the form wasn\'t a Multi-Part form.<\\/li>\\n<li>Fixed a bug that could cause initial page load to be incorrect with a Multi-Part form.<\\/li>\\n<\\/ul>\\n<p>1.0.14<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a class to the page title on each multi-part page so that it can be styled with Layout &amp; Styles.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed bugs that could prevent the previous and next buttons from displaying correctly.<\\/li>\\n<\\/ul>\\n<p>1.0.13<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed the license and auto-update system to the one available in Ninja Forms 2.2.47.<\\/li>\\n<\\/ul>\\n<p>1.0.12<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause Multi-Part forms to work incorrectly with the Save Progress extension.<\\/li>\\n<li>Fixed a bug that prevented form settings from being carried from Multi-Part page to Multi-Part page.<\\/li>\\n<\\/ul>\\n<p>1.0.11<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented conditional logic from being properly applied to pages within a multi-part form.<\\/li>\\n<\\/ul>\\n<p>1.0.10<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Updated references to wpninjas.com with the new ninjaforms.com.<\\/li>\\n<\\/ul>\\n<p>1.0.9<br \\/>\\n<em>Features:<\\/em><\\/p>\\n<ul>\\n<li>When creating a multi-part form, page numbers can now be dragged and dropped to re-arrange the pages of your form.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Minor bug-fixes.<\\/li>\\n<\\/ul>\\n<p>1.0.8<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed the Javascript methods used in order to be compatible with Ninja Forms 2.2.37.<\\/li>\\n<\\/ul>\\n<p>1.0.7<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Updates for compatibility with WordPress 3.6<\\/li>\\n<\\/ul>\\n<p>1.0.6<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed some minor visual bugs.<\\/li>\\n<\\/ul>\\n<p>1.0.5<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a php warning caused by a function running even if Multi-Part forms weren\'t enabled.<\\/li>\\n<li>Fixed a bug that was causing breadcrumb navigation to have the incorrect classes applied.<\\/li>\\n<\\/ul>\\n<p>1.0.4<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that caused the new, shorter field length to show incorrectly when the settings were saved.<\\/li>\\n<\\/ul>\\n<p>1.0.3<br \\/>\\n<em>Features:<\\/em><\\/p>\\n<ul>\\n<li>Multi-Part Forms will now allow you to hide or show an entire page when used in conjunction with the Conditionals extension.<\\/li>\\n<li>A new \\\"Confirmation Page\\\" option has been added. If this is selected, the user will be presented with a page showing all of their entered data, separated by page.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed the way that MP forms CSS is laid out to make it compatiable with version 2.2.18 of Ninja Forms.<\\/li>\\n<\\/ul>\\n<p>1.0.2<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with Multi-Part Forms and AJAX submissions that might affect some users.<\\/li>\\n<\\/ul>\\n<p>1.0.1<br \\/>\\n<em>Features:<\\/em><\\/p>\\n<ul>\\n<li>Updated Multi-Part Forms so that the extension works with AJAX submissions.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>The ID of the DIV that wraps the navigation elements has been changed to ninja_forms_mp_nav_wrap from ninja-forms-mp-nav-wrap.<\\/li>\\n<li>A class of \'ninja-forms-mp-nav-wrap\' has been placed on the DIV that wraps the navigation elements.<\\/li>\\n<\\/ul>\\n<p>1.0<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented multi-part from working properly with post creation.<\\/li>\\n<\\/ul>\\n<p>0.9<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented two multi-part forms from working properly on the same page.<\\/li>\\n<\\/ul>\\n<p>0.8<\\/p>\\n<ul>\\n<li>Field values that are emailed should now appear in the proper order.<\\/li>\\n<\\/ul>\\n<p>0.7<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a prev\\/next wrapper, adjust default styling for breadcrumbs and progress-bar.<\\/li>\\n<\\/ul>\\n<p>0.6<\\/p>\\n<ul>\\n<li>Fixed a bug that prevented the Multi-Part extension from interacted properly with the Save Progress extension.<\\/li>\\n<\\/ul>\\n<p>0.5<\\/p>\\n<ul>\\n<li>Fixed a bug that was preventing required fields from being properly checked.<\\/li>\\n<li>Fixed a bug with breadcrumb navigation that prevented the page with the first error from reloading if a user skipped to the end of a form and submitted.<\\/li>\\n<li>Fixed a bug that was preventing a form from properly being changed into a Multi-Part form.<\\/li>\\n<\\/ul>\\n<p>0.4<\\/p>\\n<ul>\\n<li>Fixed a bug that caused design elements, especially text fields, from showing on multi-part forms.<\\/li>\\n<\\/ul>\\n<p>0.3<\\/p>\\n<ul>\\n<li>Various bug fixes including:<\\/li>\\n<li>A bug which prevented all fields from being emailed to the administrator.<\\/li>\\n<\\/ul>\\n<p>0.2<\\/p>\\n<ul>\\n<li>Various bug fixes.<\\/li>\\n<li>Changed the way that javascript and css files are loaded in extensions.<\\/li>\\n<\\/ul>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":{\"1x\":\"https:\\/\\/ninjaforms.com\\/wp-content\\/uploads\\/edd\\/2020\\/08\\/multi-step-forms-128x128.png\",\"2x\":\"https:\\/\\/ninjaforms.com\\/wp-content\\/uploads\\/edd\\/2020\\/08\\/multi-step-forms-256x256.png\"},\"php_requires\":\"\",\"description\":[\"<p>Give submissions a boost on any longer form by making it a multi-page form. Drag and drop fields between pages, add breadcrumb navigation, a progress bar, and loads more!<\\/p>\\n\"],\"changelog\":[\"<p>3.0.26 (2 April 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Resolved an issue that was sometimes causing an undefined index notice on activation.<\\/li>\\n<\\/ul>\\n<p>3.0.25 (23 January 2019)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Showing or hiding a part with conditional logic will no longer automatically add a reverse statement.<\\/li>\\n<\\/ul>\\n<p>3.0.24 (24 August 2018)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Required field validation should no longer prevent navigation to the previous part.<\\/li>\\n<\\/ul>\\n<p>3.0.23 (23 May 2018)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Part duplication should no longer be available in situations where it can cause data corruption.<\\/li>\\n<\\/ul>\\n<p>3.0.22 (7 November 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>When a part is deleted all fields associated with that part are now removed.<\\/li>\\n<li>Part order will now be consistent in form imports and exports.<\\/li>\\n<li>Google reCaptcha will now render on any form part.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Updated the opinionated styles for the progress bar.<\\/li>\\n<\\/ul>\\n<p>3.0.21 (15 September 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with field duplication when Layout &amp; Styles is also installed.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed the priority of admin enqueued scripts for loading order compared to Layout &amp; Styles.<\\/li>\\n<\\/ul>\\n<p>3.0.20 (22 August 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Duplicating a part should no longer cause fields to incorrectly duplicate.<\\/li>\\n<li>Removed a PHP warning that might be displayed on the front-end.<\\/li>\\n<li>Importing forms with incomplete Layout &amp; Styles data should no longer crash import.<\\/li>\\n<\\/ul>\\n<p>3.0.19 (02 August 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause conditions setup with Conditional Logic to fail on forms that have multiple parts.<\\/li>\\n<\\/ul>\\n<p>3.0.18 (21 June 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that caused duplicating fields and parts to fail.<\\/li>\\n<\\/ul>\\n<p>3.0.17 (31 May 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Duplicating fields should now work on forms that have multiple parts.<\\/li>\\n<\\/ul>\\n<p>3.0.16 (23 May 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Help text should now work on parts beyond the first.<\\/li>\\n<\\/ul>\\n<p>3.0.15 (17 March 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Re-enabled the duplicate part functionality. It should now function properly.<\\/li>\\n<\\/ul>\\n<p>3.0.14 (09 March 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause the all_fields merge tag to be empty.<\\/li>\\n<\\/ul>\\n<p>3.0.13 (07 March 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Temporarily removed the \\\"Duplicate Part\\\" feature while we work out some bugs with how it operates.<\\/li>\\n<\\/ul>\\n<p>3.0.12 (02 Februrary 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a possible PHP warning.<\\/li>\\n<\\/ul>\\n<p>3.0.11 (26 January 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a filter for Ninja Forms version 3.0.25 that allows Multi-Part Forms to correctly order fields in submissions.<\\/li>\\n<\\/ul>\\n<p>3.0.10 (19 January 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Google Recaptcha fields should now work properly with Multi-Part forms.<\\/li>\\n<\\/ul>\\n<p>3.0.9 (15 December 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with Conditional Logic that caused conditionally shown\\/hidden parts to throw a JS error.<\\/li>\\n<\\/ul>\\n<p>3.0.8 (21 November 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with re-ordering of fields when also using Layouts &amp; Styles.<\\/li>\\n<\\/ul>\\n<p>3.0.7 (15 November 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that can cause forms to crash on servers that have ASP-like tags turned on.<\\/li>\\n<\\/ul>\\n<p>3.0.6 (03 November 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that caused duplicating fields to create multiple duplicates.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added label settings for Previous and Next buttons.<\\/li>\\n<\\/ul>\\n<p>3.0.5 (26 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with converting from the RC of Ninja Forms.<\\/li>\\n<\\/ul>\\n<p>3.0.4 (12 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug in Layout &amp; Styles conversion.<\\/li>\\n<\\/ul>\\n<p>3.0.3 (09 September 2016)<\\/p>\\n<ul>\\n<li>Fixed a bug with conversion.<\\/li>\\n<\\/ul>\\n<p>3.0.2 (06 September 2016)<\\/p>\\n<ul>\\n<li>Updated with Ninja Forms v3.x compatibility licensing.<\\/li>\\n<\\/ul>\\n<p>3.0.1 (06 September 2016)<\\/p>\\n<ul>\\n<li>Updated with Ninja Forms v3.x compatibility<\\/li>\\n<\\/ul>\\n<p>3.0.0 (06 September 2016)<\\/p>\\n<ul>\\n<li>Updated with Ninja Forms v3.x compatibility<\\/li>\\n<li>Deprecated Ninja Forms v2.9.x compatible code<\\/li>\\n<\\/ul>\\n<p>1.3.5 (08 September 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause the animated spinner to fail to show when building a form.<\\/li>\\n<\\/ul>\\n<p>1.3.4 (17 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>When our JS changes, users browsers shouldn\'t keep old copies in the cache.<\\/li>\\n<\\/ul>\\n<p>1.3.3 (4 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause saving a new form to fail.<\\/li>\\n<\\/ul>\\n<p>1.3.2 (4 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause issues when adding a field type and then deactivating an extension that added it.<\\/li>\\n<\\/ul>\\n<p>1.3.1 (27 February 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed several minor bugs with version 2.9 of Ninja Forms.<\\/li>\\n<li>Creating a new multi-part form should now work with older versions of Ninja Forms as well.<\\/li>\\n<\\/ul>\\n<p>1.3 (4 February 2015)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Preparing for the release of Ninja Forms 2.9.<\\/li>\\n<\\/ul>\\n<p>1.2.8 (17 November 2014)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Next and Previous button text can now be changed in the Forms-&gt;Settings-&gt;Labels tab.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed several bugs that prevented translations from working properly.<\\/li>\\n<li>Added several strings that weren\'t translatable previously to the .po and .pot files.<\\/li>\\n<\\/ul>\\n<p>1.2.7 (16 September 2014)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Compatibility with Ninja Forms 2.8.<\\/li>\\n<\\/ul>\\n<p>1.2.6 (24 July 2014)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Compatibility with Ninja Forms 2.7.<\\/li>\\n<\\/ul>\\n<p>1.2.5<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Multi-part forms should now work properly with the Stripe extension in all implementations.<\\/li>\\n<\\/ul>\\n<p>1.2.4<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed the name of the \\\"Confirmation Page\\\" to \\\"Review Page\\\" to make the option\'s purpose more clear.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug on the review page that caused hidden fields to sometimes be shown as textboxes that could be manipulated.<\\/li>\\n<\\/ul>\\n<p>1.2.3<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with page titles that prevented them from displaying properly on conditional pages.<\\/li>\\n<li>Fixed a bug that caused forms with several pages to have scrolling issues in the admin.<\\/li>\\n<\\/ul>\\n<p>1.2.2<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with confirmation pages and the conditional logic extension.<\\/li>\\n<li>Fixed a bug that could cause php errors without the conditional logic extension present.<\\/li>\\n<\\/ul>\\n<p>1.2.1<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with confirmation pages that could prevent them from working properly.<\\/li>\\n<\\/ul>\\n<p>1.2<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added support for the new Ninja Forms loading system. This should significantly improve loading speed for forms that use multi-part forms.<\\/li>\\n<\\/ul>\\n<p>1.1.1<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed translation issues by adding a default language folder, fixing several bad text domains, and adding a proper translation loader.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a jQuery event for \\u2018mp_change_page\\u2019 that fires after the page has successfully changed.<\\/li>\\n<li>Added some CSS for WP 3.8 compatability.<\\/li>\\n<li>Admin scripts should now load the min or dev versions based on the NINJA_FORMS_JS_DEBUG constant.<\\/li>\\n<li>Removed old licensing file.<\\/li>\\n<\\/ul>\\n<p>1.1<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause Multi-Part Javascript to run, even if the form wasn\'t a Multi-Part form.<\\/li>\\n<li>Fixed a bug that could cause initial page load to be incorrect with a Multi-Part form.<\\/li>\\n<\\/ul>\\n<p>1.0.14<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a class to the page title on each multi-part page so that it can be styled with Layout &amp; Styles.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed bugs that could prevent the previous and next buttons from displaying correctly.<\\/li>\\n<\\/ul>\\n<p>1.0.13<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed the license and auto-update system to the one available in Ninja Forms 2.2.47.<\\/li>\\n<\\/ul>\\n<p>1.0.12<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause Multi-Part forms to work incorrectly with the Save Progress extension.<\\/li>\\n<li>Fixed a bug that prevented form settings from being carried from Multi-Part page to Multi-Part page.<\\/li>\\n<\\/ul>\\n<p>1.0.11<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented conditional logic from being properly applied to pages within a multi-part form.<\\/li>\\n<\\/ul>\\n<p>1.0.10<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Updated references to wpninjas.com with the new ninjaforms.com.<\\/li>\\n<\\/ul>\\n<p>1.0.9<br \\/>\\n<em>Features:<\\/em><\\/p>\\n<ul>\\n<li>When creating a multi-part form, page numbers can now be dragged and dropped to re-arrange the pages of your form.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Minor bug-fixes.<\\/li>\\n<\\/ul>\\n<p>1.0.8<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed the Javascript methods used in order to be compatible with Ninja Forms 2.2.37.<\\/li>\\n<\\/ul>\\n<p>1.0.7<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Updates for compatibility with WordPress 3.6<\\/li>\\n<\\/ul>\\n<p>1.0.6<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed some minor visual bugs.<\\/li>\\n<\\/ul>\\n<p>1.0.5<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a php warning caused by a function running even if Multi-Part forms weren\'t enabled.<\\/li>\\n<li>Fixed a bug that was causing breadcrumb navigation to have the incorrect classes applied.<\\/li>\\n<\\/ul>\\n<p>1.0.4<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that caused the new, shorter field length to show incorrectly when the settings were saved.<\\/li>\\n<\\/ul>\\n<p>1.0.3<br \\/>\\n<em>Features:<\\/em><\\/p>\\n<ul>\\n<li>Multi-Part Forms will now allow you to hide or show an entire page when used in conjunction with the Conditionals extension.<\\/li>\\n<li>A new \\\"Confirmation Page\\\" option has been added. If this is selected, the user will be presented with a page showing all of their entered data, separated by page.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed the way that MP forms CSS is laid out to make it compatiable with version 2.2.18 of Ninja Forms.<\\/li>\\n<\\/ul>\\n<p>1.0.2<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with Multi-Part Forms and AJAX submissions that might affect some users.<\\/li>\\n<\\/ul>\\n<p>1.0.1<br \\/>\\n<em>Features:<\\/em><\\/p>\\n<ul>\\n<li>Updated Multi-Part Forms so that the extension works with AJAX submissions.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>The ID of the DIV that wraps the navigation elements has been changed to ninja_forms_mp_nav_wrap from ninja-forms-mp-nav-wrap.<\\/li>\\n<li>A class of \'ninja-forms-mp-nav-wrap\' has been placed on the DIV that wraps the navigation elements.<\\/li>\\n<\\/ul>\\n<p>1.0<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented multi-part from working properly with post creation.<\\/li>\\n<\\/ul>\\n<p>0.9<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented two multi-part forms from working properly on the same page.<\\/li>\\n<\\/ul>\\n<p>0.8<\\/p>\\n<ul>\\n<li>Field values that are emailed should now appear in the proper order.<\\/li>\\n<\\/ul>\\n<p>0.7<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a prev\\/next wrapper, adjust default styling for breadcrumbs and progress-bar.<\\/li>\\n<\\/ul>\\n<p>0.6<\\/p>\\n<ul>\\n<li>Fixed a bug that prevented the Multi-Part extension from interacted properly with the Save Progress extension.<\\/li>\\n<\\/ul>\\n<p>0.5<\\/p>\\n<ul>\\n<li>Fixed a bug that was preventing required fields from being properly checked.<\\/li>\\n<li>Fixed a bug with breadcrumb navigation that prevented the page with the first error from reloading if a user skipped to the end of a form and submitted.<\\/li>\\n<li>Fixed a bug that was preventing a form from properly being changed into a Multi-Part form.<\\/li>\\n<\\/ul>\\n<p>0.4<\\/p>\\n<ul>\\n<li>Fixed a bug that caused design elements, especially text fields, from showing on multi-part forms.<\\/li>\\n<\\/ul>\\n<p>0.3<\\/p>\\n<ul>\\n<li>Various bug fixes including:<\\/li>\\n<li>A bug which prevented all fields from being emailed to the administrator.<\\/li>\\n<\\/ul>\\n<p>0.2<\\/p>\\n<ul>\\n<li>Various bug fixes.<\\/li>\\n<li>Changed the way that javascript and css files are loaded in extensions.<\\/li>\\n<\\/ul>\\n\"]}\";}','no'),(22113,'edd_sl_7a6429fc89b380be7ffc1d35e6ee6a41','a:2:{s:7:\"timeout\";i:1664306799;s:5:\"value\";s:22616:\"{\"new_version\":\"3.0.29\",\"stable_version\":\"3.0.29\",\"name\":\"Layout and Styles\",\"slug\":\"ninja-forms-style\",\"url\":\"https:\\/\\/ninjaforms.com\\/extensions\\/layout-styles\\/?changelog=1\",\"last_updated\":\"2022-09-16 10:46:41\",\"homepage\":\"https:\\/\\/ninjaforms.com\\/extensions\\/layout-styles\\/\",\"package\":\"https:\\/\\/ninjaforms.com\\/edd-sl\\/package_download\\/MTY2NDM2Nzk5OTplY2NiNmMyODRlODk4YWY1NzE4NTI1OGUyZGMzNjhmYzoxMDA5Nzo5NmFjZjViN2JjZDc0NTlhZGFhNTEzNDE2Y2ZiYTg1NzpodHRwc0AvL2xvbWFkLXRlc3QuZ2V0bWFkLnRvZGF5OjA=\",\"download_link\":\"https:\\/\\/ninjaforms.com\\/edd-sl\\/package_download\\/MTY2NDM2Nzk5OTplY2NiNmMyODRlODk4YWY1NzE4NTI1OGUyZGMzNjhmYzoxMDA5Nzo5NmFjZjViN2JjZDc0NTlhZGFhNTEzNDE2Y2ZiYTg1NzpodHRwc0AvL2xvbWFkLXRlc3QuZ2V0bWFkLnRvZGF5OjA=\",\"sections\":{\"description\":\"<p>Edit form styles. Create two column forms. Multi column forms. Easily adjust form layout. You don\'t need a designer, just Layout and Styles!<\\/p>\\n\",\"changelog\":\"<p>3.0.29 (15 February 2021)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Resolved an issue that caused fields being dragged into a repeatable fieldset to visually duplicate in the form builder.<\\/li>\\n<\\/ul>\\n<p>3.0.28 (9 October 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Styles should now be honored on all forms when there are multiple copies of the same form on a page.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added support for styling file upload fields.<\\/li>\\n<\\/ul>\\n<p>3.0.27 (12 June 2019)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Cleaned up a few older scripts that were slowing things down in the form builder. Drag and drop should now be more performant.<\\/li>\\n<\\/ul>\\n<p>3.0.26 (4 April 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Resolved an issue that was flooding error logs with warnings in php 7.3.<\\/li>\\n<\\/ul>\\n<p>3.0.25 (19 September 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with Required Fields not being properly validated on submission.<\\/li>\\n<\\/ul>\\n<p>3.0.24 (15 September 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Reverts unnecessary changes, where the compatibility issue with Multi-Part is solved in Multi-Part.<\\/li>\\n<\\/ul>\\n<p>3.0.23 (14 September 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Re-release with missing files.<\\/li>\\n<\\/ul>\\n<p>3.0.22 (13 September 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with PHP Warning messages in the generated CSS output.<\\/li>\\n<li>Fixed a bug with field duplication.<\\/li>\\n<\\/ul>\\n<p>3.0.21 (02 August 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that caused calculations to fail when using Layout &amp; Styles, Multi-Part Forms, and Conditional Logic.<\\/li>\\n<\\/ul>\\n<p>3.0.20 (21 June 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a button to \\\"remove all styles\\\" from the plugin-wide styling section.<\\/li>\\n<\\/ul>\\n<p>3.0.19 (02 May 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added Multi-Part Forms plugin styles if the Multi-Part Forms add-on is active.<\\/li>\\n<\\/ul>\\n<p>3.0.18 (11 April 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Forms should now import with proper field orders in all installations.<\\/li>\\n<\\/ul>\\n<p>3.0.17 (17 March 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Completed a deep-dive of all plugin-wide styling settings. They should all work properly now.<\\/li>\\n<\\/ul>\\n<p>3.0.16 (07 March 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause the builder to crash without warning in some instances.<\\/li>\\n<\\/ul>\\n<p>3.0.15 (02 Februrary 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a PHP warning about unset variables.<\\/li>\\n<\\/ul>\\n<p>3.0.14 (26 January 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a filter for Ninja Forms version 3.0.25 that allows Layout &amp; Styles to correctly order fields in submissions.<\\/li>\\n<\\/ul>\\n<p>3.0.13 (19 January 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Saved fields can now be properly dragged onto rows and dividers.<\\/li>\\n<\\/ul>\\n<p>3.0.12 (21 November 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Field styles should apply properly on the front-end in all cases.<\\/li>\\n<\\/ul>\\n<p>3.0.11 (26 October 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that was introduced in version 3.0.10 that caused rows with empty columns to be removed.<\\/li>\\n<li>Sometimes column widths were totalling over 100%. This caused fields to wrap around to a new row.<\\/li>\\n<\\/ul>\\n<p>3.0.10 (17 October 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Corrupt data should no longer cause Layouts to crash the builder with an \\\"undefined ParentNode\\\" error.<\\/li>\\n<\\/ul>\\n<p>3.0.9 (12 October 2016)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added better error handling for missing field types. This should prevent some JS errors from being thrown on display.<\\/li>\\n<\\/ul>\\n<p>3.0.8 (28 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that caused field order to randomise when sorting fields between cells and rows.<\\/li>\\n<li>Fixed a bug with template imports that caused templates to fail.<\\/li>\\n<li>Added version number to script inclusion to help prevent caching issues.<\\/li>\\n<li>Fixed a bug with hover styles not being applied to submit buttons.<\\/li>\\n<\\/ul>\\n<p>3.0.7 (26 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with conversion from the RC of Ninja Forms.<\\/li>\\n<\\/ul>\\n<p>3.0.6 (11 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with conversion and invalid form layouts.<\\/li>\\n<\\/ul>\\n<p>3.0.5 (09 September 2016)<\\/p>\\n<ul>\\n<li>Fixed a bug with conversion.<\\/li>\\n<\\/ul>\\n<p>3.0.4 (08 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with applying plugin wide styles.<\\/li>\\n<\\/ul>\\n<p>3.0.3 (06 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Compatibility with Multi-Part Forms v3.0.<\\/li>\\n<\\/ul>\\n<p>3.0.2 (06 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Improved conversion efficiency.<\\/li>\\n<li>Compatibility with Multi-Part Forms v3.0.<\\/li>\\n<\\/ul>\\n<p>3.0.1 (27 July 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could break form conversion in Ninja Forms.<\\/li>\\n<\\/ul>\\n<p>3.0.0<\\/p>\\n<ul>\\n<li>Updated with Ninja Forms v3.x compatibility<\\/li>\\n<li>Deprecated Ninja Forms v2.9.x compatible code<\\/li>\\n<\\/ul>\\n<p>1.2.7 (12 May 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause column layouts to fail even when they are correct.<\\/li>\\n<\\/ul>\\n<p>1.2.6 (17 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed an issue with browser caching that could cause older versions of JavaScript files to load.<\\/li>\\n<\\/ul>\\n<p>1.2.5 (4 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that removed the Multi-Part Styles section if that extension was also activated.<\\/li>\\n<\\/ul>\\n<p>1.2.4 (3 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause a fatal error if Ninja Forms core was deactivated.<\\/li>\\n<\\/ul>\\n<p>1.2.3 (4 February 2015)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Preparing for compatibility with Ninja Forms version 2.9.<\\/li>\\n<\\/ul>\\n<p>1.2.2 (24 November 2014)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could prevent field layouts from saving properly.<\\/li>\\n<\\/ul>\\n<p>1.2.1 (17 November 2014)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Adding a warning for a common invalid column layout error.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with default styling.<\\/li>\\n<li>Updated support for i18n.<\\/li>\\n<\\/ul>\\n<p>1.2<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented the new options from showing up.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added rating-specific styles on a per-field basis.<\\/li>\\n<li>Added individual styling to rating fields.<\\/li>\\n<li>Converting Layout and Styles over to the new Ninja Forms loading class.<\\/li>\\n<li>Added per form title styling.<\\/li>\\n<\\/ul>\\n<p>1.1.1<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented multi-part pages from being added on the Layout and Styles tab.<\\/li>\\n<li>Fixed some CSS specificity errors with textboxes and textareas.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Admin scripts should now load the min or dev versions based on the NINJA_FORMS_JS_DEBUG constant.<\\/li>\\n<li>Added display selector.<\\/li>\\n<li>Adjusted what\'s advanced and what\'s basic.<\\/li>\\n<li>Limited some selectors from Default Field Styles.<\\/li>\\n<li>Moved styles to be output before form and not after.<\\/li>\\n<\\/ul>\\n<p>1.1<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause multi-part forms to behave incorrectly when styled.<\\/li>\\n<li>Adjusted a CSS selector that could cause styles from not applying properly.<\\/li>\\n<\\/ul>\\n<p>1.0.9<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a fairly major bug with Layout &amp; Styles and Multi-Part forms that could cause multi-columned pages to behave incorrectly.<\\/li>\\n<\\/ul>\\n<p>1.0.8<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added additional styles for core such as an error selector fix, form title, button and hover. Also added styles for MP Page Titles, and pre \\/ next hovers.<\\/li>\\n<\\/ul>\\n<p>1.0.7<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed the license and auto-update system to the one available in Ninja Forms 2.2.47.<\\/li>\\n<\\/ul>\\n<p>1.0.6<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented previous and next button in multi-part forms to be styles.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>improved i18n compatibility.<\\/li>\\n<\\/ul>\\n<p>1.0.5<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed references to wpninjas.com to the new ninjaforms.com.<\\/li>\\n<\\/ul>\\n<p>1.0.4<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented the per form hover state styles being applied to submit buttons.<\\/li>\\n<\\/ul>\\n<p>1.0.3<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented List fields from working properly on the Default Field Styles tab.<\\/li>\\n<\\/ul>\\n<p>1.0.2<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Updates for compatibility with WordPress 3.6<\\/li>\\n<\\/ul>\\n<p>1.0.1<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a visual bug with the placement of the Form Settings metabox.<\\/li>\\n<\\/ul>\\n<p>1.0<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that was preventing the \\\"Field Type Settings\\\" tab from working properly.<\\/li>\\n<\\/ul>\\n<p>0.9<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>The selector used for the \\\"next\\\" and \\\"previous\\\" buttons in Multi-Part Forms has been changed.<\\/li>\\n<li>Added \\\"Page\\\" styles for use with AJAX submissions and Multi-Part Forms.<\\/li>\\n<\\/ul>\\n<p>0.8<br \\/>\\n<em>Features:<\\/em><\\/p>\\n<ul>\\n<li>Added new AJAX submissions and Multi-Part Forms styling options.<\\/li>\\n<\\/ul>\\n<p>0.7<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a filter to the fields array that is output on the layout editing screen.<\\/li>\\n<\\/ul>\\n<p>0.6<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause the \\\"Error Message Styles\\\" from saving properly.<\\/li>\\n<\\/ul>\\n<p>0.5<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>The admin JS file should now include properly on sites using versions of WordPress before 3.5.<\\/li>\\n<\\/ul>\\n<p>0.4<br \\/>\\n<em>Features:<\\/em><\\/p>\\n<ul>\\n<li>Added styling options for Multi-Part Forms elements.<\\/li>\\n<\\/ul>\\n<p>0.3<\\/p>\\n<ul>\\n<li>Fixed a bug in the minified JS.<\\/li>\\n<\\/ul>\\n<p>0.2<\\/p>\\n<ul>\\n<li>Fixed a bug that prevented some users from activating their installations.<\\/li>\\n<\\/ul>\\n<p>0.1<\\/p>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":{\"1x\":\"https:\\/\\/ninjaforms.com\\/wp-content\\/uploads\\/edd\\/2013\\/01\\/layout-styles.png\",\"2x\":\"https:\\/\\/ninjaforms.com\\/wp-content\\/uploads\\/edd\\/2013\\/01\\/layout-styles.png\"},\"php_requires\":\"\",\"description\":[\"<p>Edit form styles. Create two column forms. Multi column forms. Easily adjust form layout. You don\'t need a designer, just Layout and Styles!<\\/p>\\n\"],\"changelog\":[\"<p>3.0.29 (15 February 2021)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Resolved an issue that caused fields being dragged into a repeatable fieldset to visually duplicate in the form builder.<\\/li>\\n<\\/ul>\\n<p>3.0.28 (9 October 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Styles should now be honored on all forms when there are multiple copies of the same form on a page.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added support for styling file upload fields.<\\/li>\\n<\\/ul>\\n<p>3.0.27 (12 June 2019)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Cleaned up a few older scripts that were slowing things down in the form builder. Drag and drop should now be more performant.<\\/li>\\n<\\/ul>\\n<p>3.0.26 (4 April 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Resolved an issue that was flooding error logs with warnings in php 7.3.<\\/li>\\n<\\/ul>\\n<p>3.0.25 (19 September 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with Required Fields not being properly validated on submission.<\\/li>\\n<\\/ul>\\n<p>3.0.24 (15 September 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Reverts unnecessary changes, where the compatibility issue with Multi-Part is solved in Multi-Part.<\\/li>\\n<\\/ul>\\n<p>3.0.23 (14 September 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Re-release with missing files.<\\/li>\\n<\\/ul>\\n<p>3.0.22 (13 September 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with PHP Warning messages in the generated CSS output.<\\/li>\\n<li>Fixed a bug with field duplication.<\\/li>\\n<\\/ul>\\n<p>3.0.21 (02 August 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that caused calculations to fail when using Layout &amp; Styles, Multi-Part Forms, and Conditional Logic.<\\/li>\\n<\\/ul>\\n<p>3.0.20 (21 June 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a button to \\\"remove all styles\\\" from the plugin-wide styling section.<\\/li>\\n<\\/ul>\\n<p>3.0.19 (02 May 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added Multi-Part Forms plugin styles if the Multi-Part Forms add-on is active.<\\/li>\\n<\\/ul>\\n<p>3.0.18 (11 April 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Forms should now import with proper field orders in all installations.<\\/li>\\n<\\/ul>\\n<p>3.0.17 (17 March 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Completed a deep-dive of all plugin-wide styling settings. They should all work properly now.<\\/li>\\n<\\/ul>\\n<p>3.0.16 (07 March 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause the builder to crash without warning in some instances.<\\/li>\\n<\\/ul>\\n<p>3.0.15 (02 Februrary 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a PHP warning about unset variables.<\\/li>\\n<\\/ul>\\n<p>3.0.14 (26 January 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a filter for Ninja Forms version 3.0.25 that allows Layout &amp; Styles to correctly order fields in submissions.<\\/li>\\n<\\/ul>\\n<p>3.0.13 (19 January 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Saved fields can now be properly dragged onto rows and dividers.<\\/li>\\n<\\/ul>\\n<p>3.0.12 (21 November 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Field styles should apply properly on the front-end in all cases.<\\/li>\\n<\\/ul>\\n<p>3.0.11 (26 October 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that was introduced in version 3.0.10 that caused rows with empty columns to be removed.<\\/li>\\n<li>Sometimes column widths were totalling over 100%. This caused fields to wrap around to a new row.<\\/li>\\n<\\/ul>\\n<p>3.0.10 (17 October 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Corrupt data should no longer cause Layouts to crash the builder with an \\\"undefined ParentNode\\\" error.<\\/li>\\n<\\/ul>\\n<p>3.0.9 (12 October 2016)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added better error handling for missing field types. This should prevent some JS errors from being thrown on display.<\\/li>\\n<\\/ul>\\n<p>3.0.8 (28 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that caused field order to randomise when sorting fields between cells and rows.<\\/li>\\n<li>Fixed a bug with template imports that caused templates to fail.<\\/li>\\n<li>Added version number to script inclusion to help prevent caching issues.<\\/li>\\n<li>Fixed a bug with hover styles not being applied to submit buttons.<\\/li>\\n<\\/ul>\\n<p>3.0.7 (26 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with conversion from the RC of Ninja Forms.<\\/li>\\n<\\/ul>\\n<p>3.0.6 (11 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with conversion and invalid form layouts.<\\/li>\\n<\\/ul>\\n<p>3.0.5 (09 September 2016)<\\/p>\\n<ul>\\n<li>Fixed a bug with conversion.<\\/li>\\n<\\/ul>\\n<p>3.0.4 (08 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with applying plugin wide styles.<\\/li>\\n<\\/ul>\\n<p>3.0.3 (06 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Compatibility with Multi-Part Forms v3.0.<\\/li>\\n<\\/ul>\\n<p>3.0.2 (06 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Improved conversion efficiency.<\\/li>\\n<li>Compatibility with Multi-Part Forms v3.0.<\\/li>\\n<\\/ul>\\n<p>3.0.1 (27 July 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could break form conversion in Ninja Forms.<\\/li>\\n<\\/ul>\\n<p>3.0.0<\\/p>\\n<ul>\\n<li>Updated with Ninja Forms v3.x compatibility<\\/li>\\n<li>Deprecated Ninja Forms v2.9.x compatible code<\\/li>\\n<\\/ul>\\n<p>1.2.7 (12 May 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause column layouts to fail even when they are correct.<\\/li>\\n<\\/ul>\\n<p>1.2.6 (17 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed an issue with browser caching that could cause older versions of JavaScript files to load.<\\/li>\\n<\\/ul>\\n<p>1.2.5 (4 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that removed the Multi-Part Styles section if that extension was also activated.<\\/li>\\n<\\/ul>\\n<p>1.2.4 (3 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause a fatal error if Ninja Forms core was deactivated.<\\/li>\\n<\\/ul>\\n<p>1.2.3 (4 February 2015)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Preparing for compatibility with Ninja Forms version 2.9.<\\/li>\\n<\\/ul>\\n<p>1.2.2 (24 November 2014)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could prevent field layouts from saving properly.<\\/li>\\n<\\/ul>\\n<p>1.2.1 (17 November 2014)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Adding a warning for a common invalid column layout error.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with default styling.<\\/li>\\n<li>Updated support for i18n.<\\/li>\\n<\\/ul>\\n<p>1.2<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented the new options from showing up.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added rating-specific styles on a per-field basis.<\\/li>\\n<li>Added individual styling to rating fields.<\\/li>\\n<li>Converting Layout and Styles over to the new Ninja Forms loading class.<\\/li>\\n<li>Added per form title styling.<\\/li>\\n<\\/ul>\\n<p>1.1.1<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented multi-part pages from being added on the Layout and Styles tab.<\\/li>\\n<li>Fixed some CSS specificity errors with textboxes and textareas.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Admin scripts should now load the min or dev versions based on the NINJA_FORMS_JS_DEBUG constant.<\\/li>\\n<li>Added display selector.<\\/li>\\n<li>Adjusted what\'s advanced and what\'s basic.<\\/li>\\n<li>Limited some selectors from Default Field Styles.<\\/li>\\n<li>Moved styles to be output before form and not after.<\\/li>\\n<\\/ul>\\n<p>1.1<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause multi-part forms to behave incorrectly when styled.<\\/li>\\n<li>Adjusted a CSS selector that could cause styles from not applying properly.<\\/li>\\n<\\/ul>\\n<p>1.0.9<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a fairly major bug with Layout &amp; Styles and Multi-Part forms that could cause multi-columned pages to behave incorrectly.<\\/li>\\n<\\/ul>\\n<p>1.0.8<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added additional styles for core such as an error selector fix, form title, button and hover. Also added styles for MP Page Titles, and pre \\/ next hovers.<\\/li>\\n<\\/ul>\\n<p>1.0.7<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed the license and auto-update system to the one available in Ninja Forms 2.2.47.<\\/li>\\n<\\/ul>\\n<p>1.0.6<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented previous and next button in multi-part forms to be styles.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>improved i18n compatibility.<\\/li>\\n<\\/ul>\\n<p>1.0.5<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed references to wpninjas.com to the new ninjaforms.com.<\\/li>\\n<\\/ul>\\n<p>1.0.4<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented the per form hover state styles being applied to submit buttons.<\\/li>\\n<\\/ul>\\n<p>1.0.3<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented List fields from working properly on the Default Field Styles tab.<\\/li>\\n<\\/ul>\\n<p>1.0.2<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Updates for compatibility with WordPress 3.6<\\/li>\\n<\\/ul>\\n<p>1.0.1<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a visual bug with the placement of the Form Settings metabox.<\\/li>\\n<\\/ul>\\n<p>1.0<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that was preventing the \\\"Field Type Settings\\\" tab from working properly.<\\/li>\\n<\\/ul>\\n<p>0.9<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>The selector used for the \\\"next\\\" and \\\"previous\\\" buttons in Multi-Part Forms has been changed.<\\/li>\\n<li>Added \\\"Page\\\" styles for use with AJAX submissions and Multi-Part Forms.<\\/li>\\n<\\/ul>\\n<p>0.8<br \\/>\\n<em>Features:<\\/em><\\/p>\\n<ul>\\n<li>Added new AJAX submissions and Multi-Part Forms styling options.<\\/li>\\n<\\/ul>\\n<p>0.7<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a filter to the fields array that is output on the layout editing screen.<\\/li>\\n<\\/ul>\\n<p>0.6<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause the \\\"Error Message Styles\\\" from saving properly.<\\/li>\\n<\\/ul>\\n<p>0.5<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>The admin JS file should now include properly on sites using versions of WordPress before 3.5.<\\/li>\\n<\\/ul>\\n<p>0.4<br \\/>\\n<em>Features:<\\/em><\\/p>\\n<ul>\\n<li>Added styling options for Multi-Part Forms elements.<\\/li>\\n<\\/ul>\\n<p>0.3<\\/p>\\n<ul>\\n<li>Fixed a bug in the minified JS.<\\/li>\\n<\\/ul>\\n<p>0.2<\\/p>\\n<ul>\\n<li>Fixed a bug that prevented some users from activating their installations.<\\/li>\\n<\\/ul>\\n<p>0.1<\\/p>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\n\"]}\";}','no'),(22114,'edd_sl_2e87c470ed627b0d0bd8353b36c04965','a:2:{s:7:\"timeout\";i:1664306799;s:5:\"value\";s:55257:\"{\"new_version\":\"3.3.14\",\"stable_version\":\"3.3.14\",\"name\":\"File Uploads\",\"slug\":\"file-uploads\",\"url\":\"https:\\/\\/ninjaforms.com\\/extensions\\/file-uploads\\/?changelog=1\",\"last_updated\":\"2022-08-30 11:03:05\",\"homepage\":\"https:\\/\\/ninjaforms.com\\/extensions\\/file-uploads\\/\",\"package\":\"https:\\/\\/ninjaforms.com\\/edd-sl\\/package_download\\/MTY2NDM2Nzk5OTplMjM0YzgyNzYxNGJiOTdjMGY5OGJlYzBhZTM3NTVmNzoyODc6YWQ0MTFmODUxZDljZmExMGRmYzk1YmY0YmUwYTFjMmE6aHR0cHNALy9sb21hZC10ZXN0LmdldG1hZC50b2RheTow\",\"download_link\":\"https:\\/\\/ninjaforms.com\\/edd-sl\\/package_download\\/MTY2NDM2Nzk5OTplMjM0YzgyNzYxNGJiOTdjMGY5OGJlYzBhZTM3NTVmNzoyODc6YWQ0MTFmODUxZDljZmExMGRmYzk1YmY0YmUwYTFjMmE6aHR0cHNALy9sb21hZC10ZXN0LmdldG1hZC50b2RheTow\",\"sections\":{\"description\":\"<p>Create a file upload form for WordPress! Control file type & size, set custom directories, upload to WordPress, Google Drive, & more!<\\/p>\\n\",\"changelog\":\"<p>3.3.14 (7 March 2022)<br \\/>\\n<em>Bug Fixes:<\\/em><\\/p>\\n<ul>\\n<li>Fix PHP 8 error in which curly braces are no longer supported<\\/li>\\n<\\/ul>\\n<p>3.3.13 (30 November 2021)<br \\/>\\n<em>Bugs Fixes:<\\/em><\\/p>\\n<ul>\\n<li>Escape filename to prevent XSS. Credit: Nuno Correia (Blaze Security) for responsibly reporting issue<\\/li>\\n<li>Fix \'required parameter follows optional\' error<\\/li>\\n<\\/ul>\\n<p><em>Other Enhancements<\\/em><\\/p>\\n<ul>\\n<li>Automate plugin build<\\/li>\\n<\\/ul>\\n<p>3.3.12 (1 Aug 2021)<br \\/>\\n<em>New:<\\/em><\\/p>\\n<ul>\\n<li>French translations added<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>File Upload fields not working in Repeater Fieldsets<\\/li>\\n<li>Some string translations not loaded correctly<\\/li>\\n<li>File saved to media library even if save to server is turned off<\\/li>\\n<\\/ul>\\n<p>3.3.11 (24 Mar 2021)<br \\/>\\n<em>New:<\\/em><\\/p>\\n<ul>\\n<li>Tested up to WordPress 5.7<\\/li>\\n<li>Compatibility with PHP 8<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>PHP notices when using PHP 8<\\/li>\\n<li>Cyrillic characters are removed from file names when uploading to Google Drive<\\/li>\\n<\\/ul>\\n<p>3.3.10 (27 Oct 2020)<br \\/>\\n<em>New:<\\/em><\\/p>\\n<ul>\\n<li>Advanced setting in the External File Upload action to upload files in the background<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fix fatal error \'Uncaught NF_FU_VENDORGoogle_Service_Exception\' when Google Drive connection is changed when background uploading a large file<\\/li>\\n<li>Fix images not appearing when using the embed mergetag in PDFs<\\/li>\\n<li>Fix files with cyrillic characters in the filename being uploaded as unnamed-file<\\/li>\\n<\\/ul>\\n<p>3.3.9 (6 Oct 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fix uploads taking a long time when renaming file directories<\\/li>\\n<li>Fix File Upload mergetags not available in PDFs created at form submission time<\\/li>\\n<li>Fix cancel button not using label defined in field display settings<\\/li>\\n<\\/ul>\\n<p>3.3.8 (7 Sept 2020)<br \\/>\\n<em>New:<\\/em><\\/p>\\n<ul>\\n<li>Compatibility with the PDF Submissions addon<\\/li>\\n<\\/ul>\\n<p>3.3.7 (10 Aug 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fix background upload jobs duplicating files when multiple file upload fields on a form<\\/li>\\n<\\/ul>\\n<p>3.3.6 (4 Aug 2020)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Tested on WordPress 5.5<\\/li>\\n<li>Default Amazon S3 ACL set to private<\\/li>\\n<li>Filter \'ninja_forms_uploads_default_region\' added for the default region for S3 clients<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fix uploading of any size file in the background to external services<\\/li>\\n<li>Fix background uploading not working if memory_limit defined in Gigabytes<\\/li>\\n<\\/ul>\\n<p>3.3.5 (25 June 2020)<br \\/>\\n<em>New:<\\/em><\\/p>\\n<ul>\\n<li>Setting to make the URLs to files upload to external service providers accessible to non-logged in users<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Updated jQuery File Upload library to v10.30.1.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fix Google Drive file preview URL not working<\\/li>\\n<li>Fix cancel button doesn\'t show to allow clearing upload errors<\\/li>\\n<li>Fix files with non UTF8 characters not reloaded when using the Save Progress addon<\\/li>\\n<\\/ul>\\n<p>3.3.4 (10 June 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fix mergetags variations not rendering the correct value<\\/li>\\n<li>Fix external file url redirecting to site admin home if the service is no longer connected<\\/li>\\n<\\/ul>\\n<p>3.3.3 (26 May 2020)<br \\/>\\n<em>New:<\\/em><\\/p>\\n<ul>\\n<li>Button to cancel a file upload, or clear an error after a failed upload<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>File upload links being stripped from emails and success messages<\\/li>\\n<li>Fatal error when uploading multiple files to Google Drive and renaming the file names<\\/li>\\n<li>Required field validation error shows when the \'Select Files\' button clicked<\\/li>\\n<li>Missing file upload when submitting a form that had previously been saved with the Save Progress addon<\\/li>\\n<li>Multiple file upload URLs appearing as one large broken link in emails<\\/li>\\n<li>PHP notices about mergetag values when saving a form<\\/li>\\n<li>Browse uploads table losing form filter when paginating or sorting<\\/li>\\n<\\/ul>\\n<p>3.3.2 (23 March 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Some large files corrupted when uploading to Dropbox<\\/li>\\n<li>Error not displayed when uploading a file larger than the maximum defined in settings<\\/li>\\n<li>Fix PHP Notice: Undefined variable: mime_types_whitelist<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added new filter \'ninja_forms_uploads_tmp_dir\' to change the temp directory for uploads<\\/li>\\n<li>Added external service $slug parameter to the filter \'ninja_forms_uploads_should_background_upload\'<\\/li>\\n<\\/ul>\\n<p>3.3.1 (9 March 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Security flaw which could allow files with blacklisted file extensions to be uploaded<\\/li>\\n<\\/ul>\\n<p>3.3.0 (2 March 2020)<br \\/>\\n<em>New:<\\/em><\\/p>\\n<ul>\\n<li>Files larger than the server maximum upload size can now be uploaded<\\/li>\\n<li>Large files uploaded to external services in the background, no longer holding up form submission<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Uploads and External settings page can\'t be saved due to missing nonce<\\/li>\\n<li>File uploaded to multiple external services being uploaded with the incorrect timestamp filename prefix<\\/li>\\n<\\/ul>\\n<p>3.2.6 (21 January 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Unknown upload error when the same form appears twice on a page<\\/li>\\n<\\/ul>\\n<p>3.2.5 (16 January 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fatal error: Cannot redeclare pcntl_signal() on some install<\\/li>\\n<\\/ul>\\n<p>3.2.4 (9 January 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Select File button not working on Internet Explorer 11 still<\\/li>\\n<\\/ul>\\n<p>3.2.3 (8 January 2020)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added new filter \'ninja_forms_uploads_s3_acl\' to change the Amazon S3 ACL to \'private\' when uploading to buckets that are set as private<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Drag and dropping files when using multiple File Upload fields results in uploads to all fields<\\/li>\\n<li>Google Drive connection getting disconnected incorrectly for some users<\\/li>\\n<li>Select File button not working on Internet Explorer 11<\\/li>\\n<li>Fatal errors on installs using PHP less than 7.1<\\/li>\\n<li>Translatable string containing file size data could not be translated<\\/li>\\n<\\/ul>\\n<p>3.2.2 (28 November 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fatal error on some installs running plugins with the Google API SDK<\\/li>\\n<\\/ul>\\n<p>3.2.1 (25 November 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fatal error Uncaught Error: Call to undefined method ComposerAutoloadClassLoader::setClassMapAuthoritative()<\\/li>\\n<li>Fatal error intermittently after connecting to Google Drive<\\/li>\\n<li>Google Drive account disconnect when issue connecting to API<\\/li>\\n<\\/ul>\\n<p>3.2.0 (5 November 2019)<br \\/>\\n<em>New:<\\/em><\\/p>\\n<ul>\\n<li>You can now use mergetags in the \'Rename Uploaded File\' field setting<\\/li>\\n<li>Different mergetags for File Upload fields can now be selected, eg. {field:my_field_key:link}<\\/li>\\n<li>New mergetag for the filename of the file, eg. {field:my_field_key:filename}<\\/li>\\n<li>New mergetags for when the file has been added to the media library, eg. {field:my_field_key:attachment_url}, {field:my_field_key:attachment_embed}<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Ability to set Amazon key and secret and other settings as constants: \'NF_FU_AMAZON_S3_ACCESS_KEY\' and \'NF_FU_AMAZON_S3_SECRET_KEY\'<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Nonce error when submitting a form on a page that has been cached<\\/li>\\n<li>Fatal error caused when running UpdraftPlus or BackupBuddy plugin<\\/li>\\n<\\/ul>\\n<p>3.1.2 (17 October 2019)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Use the external service name not the slug in the uploads browser table<\\/li>\\n<li>Make the external service \'Connect\' button stand out from the \'Disconnect\' button<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fatal error caused when running the EDD Amazon S3 plugin<\\/li>\\n<li>Mergetag output blank when running the Conditional Logic plugin<\\/li>\\n<\\/ul>\\n<p>3.1.1 (10 October 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fatal error when uploading to Dropbox on installs with legacy Dropbox API tokens<\\/li>\\n<li>Fatal error due to memory exhaustion on some installs due to large Google SDK<\\/li>\\n<\\/ul>\\n<p>3.1.0 (8 October 2019)<br \\/>\\n<em>New:<\\/em><\\/p>\\n<ul>\\n<li>Google Drive support<\\/li>\\n<li>Full integration with Layout &amp; Styles addon<\\/li>\\n<li>Adds support for File Upload field to the realistic form builder<\\/li>\\n<li>New minimum file size field setting<\\/li>\\n<li>Add \'View Submission\' link for each upload in the \'Browse Uploads\' screen<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixes mergetag string literal sent to actions when there are no files uploaded<\\/li>\\n<li>Fixes Undefined index: type PHP notice due to mergetag code<\\/li>\\n<li>Fixes links showing in submission table and \'Browse Uploads\' screen for files that didn\'t exist<\\/li>\\n<\\/ul>\\n<p>3.0.27 (1 July 2019)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>New filter: \'ninja_forms_upload_mime_types_whitelist\' to amend the mime types global upload whitelist<\\/li>\\n<li>New filter: \'ninja_forms_upload_check_mime_types_whitelist\' to stop checking the global mime types whitelist<\\/li>\\n<li>New translation pack for Polish, props <a href=\\\"https:\\/\\/github.com\\/DreadsSupp\\\">DreadsSupp<\\/a><\\/li>\\n<\\/ul>\\n<p>3.0.26 (15 May 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixes \'No field ID supplied\' error message when post_max_size PHP config value is lower than upload_max_filesize.<\\/li>\\n<\\/ul>\\n<p>3.0.25 (8 May 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Nonce errors should no longer occur when multiple instances of the same form exist on a page.<\\/li>\\n<\\/ul>\\n<p>3.0.24 (22 April 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixes the bypassing of a required file upload field if a previously uploaded file is deleted.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Updated jQuery File Upload library to v9.30.0.<\\/li>\\n<\\/ul>\\n<p>3.0.23 (11 April 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Critical security flaws which could allow file extensions to be changed and files to be traversed (Props <a href=\\\"https:\\/\\/www.onvio.nl\\\">Jasper Weijts, Onvio<\\/a>)<\\/li>\\n<\\/ul>\\n<p>3.0.22 (30 November 2018)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Attachment ID mergetag variation to be used when saving file upload to the media library, eg. {field:file_upload_22:attachment_id}<\\/li>\\n<\\/ul>\\n<p>3.0.21 (29 November 2018)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Form cannot be submitted if there was an error uploading a file, even after deleting it<\\/li>\\n<li>PHP Warning: count(): Parameter must be an array or an object that implements Countable<\\/li>\\n<\\/ul>\\n<p>3.0.20 (11 October 2018)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Critical security flaw which could allow file extensions to be changed and files to be executed (Props <a href=\\\"https:\\/\\/www.warpnet.nl\\/\\\">Frank Spierings from Warpnet<\\/a>)<\\/li>\\n<li>Non UTF8 characters in the %filename% tag<\\/li>\\n<li>Embed mergetag variant not working if install was without Conditional Logic addon<\\/li>\\n<li>Animate CSS class clashing with other theme and plugin styles<\\/li>\\n<\\/ul>\\n<p>3.0.19 (26 April 2018)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Compatibility with form templates in Ninja Forms 3.2.23<\\/li>\\n<li>Use file extension whitelist to restrict the file upload select box<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>upload_max_filesize php.ini config defined in units other than MB not working<\\/li>\\n<li>Dropbox connection removed if site cannot access Dropbox temporarily<\\/li>\\n<\\/ul>\\n<p>3.0.18 (27 March 2018)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Compatibility with Auto complete support in Ninja Forms 3.2.17<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fatal error when Amazon Web Services plugin installed but not activated<\\/li>\\n<li>Timeout when adding new forms on certain installs<\\/li>\\n<\\/ul>\\n<p>3.0.17 (18 November 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Dropbox connection redirect 404ing on some installs<\\/li>\\n<li>Only the first \'Select Files\' button text is used for multiple fields<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Filter added for the cron time when deleting the temp file<\\/li>\\n<li>Filter added for the default \'Select Files\' button text<\\/li>\\n<\\/ul>\\n<p>3.0.16 (13 October 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that was preventing uploads from being re-saved when using the Save Progress add-on.<\\/li>\\n<\\/ul>\\n<p>3.0.15 (1 Aug 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fix external URLs not sent to Zapier when using Zapier addon<\\/li>\\n<li>Fix field max upload size bigger than server limit<\\/li>\\n<\\/ul>\\n<p>3.0.14 (11 Aug 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fix Dropbox file uploaded with full server path when having no custom upload path<\\/li>\\n<\\/ul>\\n<p>3.0.13 (10 Aug 2017)<br \\/>\\n<em>Features:<\\/em><\\/p>\\n<ul>\\n<li>German translation file, thanks @christophrado!<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added original filename to ninja_forms_uploads_[external service]_filename filter<\\/li>\\n<li>Added more information to the help bubble for file renames to describe creating directories<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fix isset weirdness when checking for old NF format of file value<\\/li>\\n<li>Fix method not exists when creating table if using older version of NF core.<\\/li>\\n<li>Fix custom upload path not replacing %field_ shortcodes<\\/li>\\n<li>Fix custom upload path not working for external (Dropbox\\/S3) file paths<\\/li>\\n<li>Fix %formtitle% not being replaced in field rename if no custom upload path<\\/li>\\n<\\/ul>\\n<p>3.0.12 (28 July 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Dropbox uploads failing when custom path defined<\\/li>\\n<\\/ul>\\n<p>3.0.11 (25 July 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>File Uploads table not created on fresh installation<\\/li>\\n<li>jQuery File Upload JavaScript files clashed with Calendarize plugin<\\/li>\\n<\\/ul>\\n<p>3.0.10 (12 July 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>File Uploads should work properly with non-standard WordPress databse prefixes.<\\/li>\\n<\\/ul>\\n<p>3.0.9 (06 July 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>File Uploads should now work properly with Multi-Part Forms.<\\/li>\\n<li>Fixed a bug with non-English characters and file name encoding.<\\/li>\\n<\\/ul>\\n<p>3.0.8 ( 26 June 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Supports Dropbox API v2<\\/li>\\n<li>Custom name of file now supports changing path with field specific data<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>File appeared even if upload failed<\\/li>\\n<\\/ul>\\n<p>3.0.7 ( 5 June 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Amazon S3 uploads unable to use bucket in newer regions<\\/li>\\n<li>File not deleted from server when File Upload deleted in admin<\\/li>\\n<li>All File Uploads fields on form used the same nonce<\\/li>\\n<li>NF 2.9 submissions not displaying in admin<\\/li>\\n<li>File Upload field CSS too generic causing clashes with themes<\\/li>\\n<li>PHP notice on uploads table when submission from non-logged in user<\\/li>\\n<li>All Fields mergetag not using external URL<\\/li>\\n<li>Missing mergetag variations used for Post Creation<\\/li>\\n<li>Similar file extensions allowed even when not on file type whitelist for field<\\/li>\\n<\\/ul>\\n<p>3.0.6 (12 April 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed the description text for custom file upload paths.<\\/li>\\n<li>Fixed PHP warnings related to uploading a file to a remote server.<\\/li>\\n<li>Links to uploaded files should now always show properly.<\\/li>\\n<li>Fixed a bug that could cause unexpected output when displaying a form.<\\/li>\\n<\\/ul>\\n<p>3.0.5 (07 December 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause file upload fields to fail with Ninja Forms versions &gt; 3.0.17.<\\/li>\\n<\\/ul>\\n<p>3.0.4 (3 November 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with the Max File Upload Size setting.<\\/li>\\n<li>Whitelisting file types should now work as explained in the help text.<\\/li>\\n<li>File names can now be based upon the values of other fields using merge tags.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added missing help text to the admin.<\\/li>\\n<\\/ul>\\n<p>3.0.3 (28 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>File Uploads should now show in Conditional Logic conditions.<\\/li>\\n<\\/ul>\\n<p>3.0.2 (09 September 2016)<\\/p>\\n<ul>\\n<li>Update to 3.0.2<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed SQL format that breaks dbdelta.<\\/li>\\n<li>Fixed Dropbox case sensitive issues.<\\/li>\\n<li>Fixed Multiple file selection bug.<\\/li>\\n<li>Fixed a bug with uploading .jpg files.<\\/li>\\n<\\/ul>\\n<p>3.0.1 (06 September 2016)<\\/p>\\n<ul>\\n<li>Updated with Ninja Forms v3.x compatibility<\\/li>\\n<\\/ul>\\n<p>3.0 (06 September 2016)<\\/p>\\n<ul>\\n<li>Updated with Ninja Forms v3.x compatibility<\\/li>\\n<li>Deprecated Ninja Forms v2.9.x compatible code<\\/li>\\n<\\/ul>\\n<p>1.4.9 (09 May 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug where duplicate file names could cause the extension to be changed. Credit to \\\"fruh of citadelo\\\" for reporting the security vulnerability.<\\/li>\\n<\\/ul>\\n<p>1.4.8 (29 March 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with Dropbox that could cause uploading to Dropbox to fail.<\\/li>\\n<\\/ul>\\n<p>1.4.7 (20 September 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug related to buckets in Amazon S3.<\\/li>\\n<li>Improved how URLs are handled when saving submissions.<\\/li>\\n<\\/ul>\\n<p>1.4.6 (24 August 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed an issue with connecting to Amazon accounts.<\\/li>\\n<li>Fixed several PHP notices that appeared on the uploads settings page.<\\/li>\\n<\\/ul>\\n<p>1.4.5 (12 May 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Featured images in the Post Creation extension should now function properly.<\\/li>\\n<li>Save Progress extension tables should now show File Upload fields properly.<\\/li>\\n<\\/ul>\\n<p>1.4.4 (26 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Multiple file uploads should work properly with external services.<\\/li>\\n<li>Fixed several PHP notices.<\\/li>\\n<\\/ul>\\n<p>1.4.3 (12 January 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause Dropbox to disconnect.<\\/li>\\n<li>Fixed a bug with multi-file uploads that could cause the wrong URL to be stored in the file uploads table.<\\/li>\\n<li>Fixed a PHP notice.<\\/li>\\n<\\/ul>\\n<p>1.4.2 (9 December 2014)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with PHP v5.6 and Dropbox uploads.<\\/li>\\n<li>Fixed a bug that caused file renaming to work incorrectly.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a new upload location of none, where files get removed after upload.<\\/li>\\n<\\/ul>\\n<p>1.4.1 (17 November 2014)<br \\/>\\n<em>Bugs<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug caused by a bad commit in the previous version.<\\/li>\\n<\\/ul>\\n<p>1.4 (17 November 2014)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed two PHP notices.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added filter for filename $file_name = apply_filters( \'nf_fu_filename\' , $filename );<\\/li>\\n<li>The maximum file upload size can now not exceed the server PHP setting for max file uploads.<\\/li>\\n<\\/ul>\\n<p>1.3.8 (15 September 2014 )<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>File Uploads should now be compatible with Ninja Forms version 2.8 and the new notification system.<\\/li>\\n<li>Performance should be noticeably increased.<\\/li>\\n<\\/ul>\\n<p>1.3.7 (12 August 2014 )<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with viewing files in the edit sub page.<\\/li>\\n<\\/ul>\\n<p>1.3.6 (12 August 2014)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixing a bug with file exports and version 2.7+ of Ninja Forms.<\\/li>\\n<li>Fixed translation issues.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added new .pot file.<\\/li>\\n<\\/ul>\\n<p>1.3.5 (24 July 2014)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Compatibility with Ninja Forms 2.7.<\\/li>\\n<\\/ul>\\n<p>1.3.4<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Making sure the external upload doesn\'t fire if there is no file uploaded<\\/li>\\n<\\/ul>\\n<p>1.3.3<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with Dropbox that could cause file uploads to be sluggish.<\\/li>\\n<li>is_dir() and mkdir() warnings should be cleared up.<\\/li>\\n<li>Multi-file upload fields should now clear correctly when a form is submitted.<\\/li>\\n<\\/ul>\\n<p>1.3.2<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause the plugin not to activate on some systems.<\\/li>\\n<\\/ul>\\n<p>1.3.1<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>The extension should now properly activate on all PHP versions.<\\/li>\\n<\\/ul>\\n<p>1.3<br \\/>\\n<em>Features:<\\/em><\\/p>\\n<ul>\\n<li>You can now store uploaded files in Dropbox or Amazon S3! Simply select the storage location on a per-upload-field basis.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a PHP notice.<\\/li>\\n<li>Fixed a bug that could cause some installations to lose the ninja-forms\\/tmp\\/ directory.<\\/li>\\n<\\/ul>\\n<p>1.2<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented required file uploads from being validated when using AJAX submissions.<\\/li>\\n<li>Fixed some php notices.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added support for the new Ninja Forms loading class.<\\/li>\\n<li>Editing a submission from the wp-admin that includes a file will now show a link to that file instead of just the filename.<\\/li>\\n<\\/ul>\\n<p>1.1<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>The format of date searching in the Browse Files tab will now be based upon the date format in Plugin Settings. i.e. you can now search dd\\/mm\\/yyyy.<\\/li>\\n<li>Added the option to name a directory\\/file with %userid%.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that caused file upload fields to load multiple instances or open with pre-filled, incorrect data.<\\/li>\\n<\\/ul>\\n<p>1.0.11<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a filter so that when a user uploads a file, they don\'t see the directory to which it was uploaded in their email.<\\/li>\\n<\\/ul>\\n<p>1.0.10<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed the license and auto-update system to the one available in Ninja Forms 2.2.47.<\\/li>\\n<\\/ul>\\n<p>1.0.9<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause files to be added to the media library twice when used with the Post Creation extension.<\\/li>\\n<\\/ul>\\n<p>1.0.8<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed references to wpninjas.com to the new ninjaforms.com.<\\/li>\\n<\\/ul>\\n<p>1.0.7<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented files from being emailed as attachments in multi-part forms.<\\/li>\\n<\\/ul>\\n<p>1.0.6<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Updates for compatibility with WordPress 3.6<\\/li>\\n<\\/ul>\\n<p>1.0.5<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented Uploads from working properly with AJAX forms.<\\/li>\\n<li>Fixed a bug that prevented Uploads from working properly when they were set to required.<\\/li>\\n<\\/ul>\\n<p>1.0.4<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a filter so that File Uploads will work properly with the confirmation page option of Multi-Part Forms.<\\/li>\\n<\\/ul>\\n<p>1.0.3<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed the way that file uploads with duplicate names are handled. In previous versions, the new file would simply replace the older file with the same name; now, if a file already exists with the same name as an upload, the upload is renamed with a sequential number. e.g. my-file.jpg -&gt; my-file-001.jpg -&gt; my-file-002.jpg -&gt; etc.<\\/li>\\n<li>Added an option to add files to the WordPress Media Library. On each file upload field, you\'ll find this new option.<\\/li>\\n<li>Added three new file renaming options: %displayname%, %firstname%, %lastname%. Each of these will be replaced with the appropriate user information.<\\/li>\\n<li>Added a new filter named: ninja_forms_uploads_dir. This filter can be used to modify the location Ninja Forms uploads files.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause some files from uploading properly.<\\/li>\\n<\\/ul>\\n<p>1.0.2<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a new option to the [ninja_forms_field id=] shortcode. You can now use [ninja_forms_field id=2 method=url]. This will return just the url of the file. For example, you can now do something like this: .<\\/li>\\n<\\/ul>\\n<p>1.0.1<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Modified the way that the pre-processing is handled for more effeciency.<\\/li>\\n<\\/ul>\\n<p>1.0<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented files from being replaced on the backend.<\\/li>\\n<\\/ul>\\n<p>0.9<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented files from being replaced when editing user submissions.<\\/li>\\n<\\/ul>\\n<p>0.8<br \\/>\\n<em>Features:<\\/em><\\/p>\\n<ul>\\n<li>Added the ability to search for file uploads by User ID, User email, or User login.<\\/li>\\n<\\/ul>\\n<p>0.7<\\/p>\\n<ul>\\n<li>Updated code formatting.<\\/li>\\n<\\/ul>\\n<p>0.6<\\/p>\\n<ul>\\n<li>Fixed a bug that was causing the new [ninja_forms_field id=3] shortcode to fail when used in conjunction with the Uploads Extension.<\\/li>\\n<\\/ul>\\n<p>0.5<\\/p>\\n<ul>\\n<li>Changed the upload directory to the built-in WordPress uploads directory. This should help limit the cases of users not being able to upload files because of directory restrictions. Old files have not been moved over because it would be impossible to correctly fix links to new locations.<\\/li>\\n<li>Fixed a bug that was causing some users to lose their upload record when they deactivated and reactivated the plugin.<\\/li>\\n<li>Errors should now show properly for files that are over the file size limit set in the plugin settings.<\\/li>\\n<\\/ul>\\n<p>0.4<\\/p>\\n<ul>\\n<li>Various bug fixes including:<\\/li>\\n<li>A bug that prevented files from being moved to the proper directory.<\\/li>\\n<li>A bug that prevented the \\\"update file\\\" link from working on pages that already had a file uploaded.<\\/li>\\n<li>A bug that prevented the \\\"featured image\\\" functionality from working properly.<\\/li>\\n<li>Added a new setting to the upload settings page for file upload URLs.<\\/li>\\n<\\/ul>\\n<p>0.3<\\/p>\\n<ul>\\n<li>Various bug fixes.<\\/li>\\n<\\/ul>\\n<p>0.2<\\/p>\\n<ul>\\n<li>Various bug fixes.<\\/li>\\n<li>Changed the way that javascript and css files are loaded in extensions.<\\/li>\\n<\\/ul>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":{\"1x\":\"https:\\/\\/ninjaforms.com\\/wp-content\\/uploads\\/edd\\/2012\\/10\\/file-uploads1.png\",\"2x\":\"https:\\/\\/ninjaforms.com\\/wp-content\\/uploads\\/edd\\/2012\\/10\\/file-uploads1.png\"},\"php_requires\":\"7.2\",\"description\":[\"<p>Create a file upload form for WordPress! Control file type & size, set custom directories, upload to WordPress, Google Drive, & more!<\\/p>\\n\"],\"changelog\":[\"<p>3.3.14 (7 March 2022)<br \\/>\\n<em>Bug Fixes:<\\/em><\\/p>\\n<ul>\\n<li>Fix PHP 8 error in which curly braces are no longer supported<\\/li>\\n<\\/ul>\\n<p>3.3.13 (30 November 2021)<br \\/>\\n<em>Bugs Fixes:<\\/em><\\/p>\\n<ul>\\n<li>Escape filename to prevent XSS. Credit: Nuno Correia (Blaze Security) for responsibly reporting issue<\\/li>\\n<li>Fix \'required parameter follows optional\' error<\\/li>\\n<\\/ul>\\n<p><em>Other Enhancements<\\/em><\\/p>\\n<ul>\\n<li>Automate plugin build<\\/li>\\n<\\/ul>\\n<p>3.3.12 (1 Aug 2021)<br \\/>\\n<em>New:<\\/em><\\/p>\\n<ul>\\n<li>French translations added<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>File Upload fields not working in Repeater Fieldsets<\\/li>\\n<li>Some string translations not loaded correctly<\\/li>\\n<li>File saved to media library even if save to server is turned off<\\/li>\\n<\\/ul>\\n<p>3.3.11 (24 Mar 2021)<br \\/>\\n<em>New:<\\/em><\\/p>\\n<ul>\\n<li>Tested up to WordPress 5.7<\\/li>\\n<li>Compatibility with PHP 8<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>PHP notices when using PHP 8<\\/li>\\n<li>Cyrillic characters are removed from file names when uploading to Google Drive<\\/li>\\n<\\/ul>\\n<p>3.3.10 (27 Oct 2020)<br \\/>\\n<em>New:<\\/em><\\/p>\\n<ul>\\n<li>Advanced setting in the External File Upload action to upload files in the background<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fix fatal error \'Uncaught NF_FU_VENDORGoogle_Service_Exception\' when Google Drive connection is changed when background uploading a large file<\\/li>\\n<li>Fix images not appearing when using the embed mergetag in PDFs<\\/li>\\n<li>Fix files with cyrillic characters in the filename being uploaded as unnamed-file<\\/li>\\n<\\/ul>\\n<p>3.3.9 (6 Oct 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fix uploads taking a long time when renaming file directories<\\/li>\\n<li>Fix File Upload mergetags not available in PDFs created at form submission time<\\/li>\\n<li>Fix cancel button not using label defined in field display settings<\\/li>\\n<\\/ul>\\n<p>3.3.8 (7 Sept 2020)<br \\/>\\n<em>New:<\\/em><\\/p>\\n<ul>\\n<li>Compatibility with the PDF Submissions addon<\\/li>\\n<\\/ul>\\n<p>3.3.7 (10 Aug 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fix background upload jobs duplicating files when multiple file upload fields on a form<\\/li>\\n<\\/ul>\\n<p>3.3.6 (4 Aug 2020)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Tested on WordPress 5.5<\\/li>\\n<li>Default Amazon S3 ACL set to private<\\/li>\\n<li>Filter \'ninja_forms_uploads_default_region\' added for the default region for S3 clients<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fix uploading of any size file in the background to external services<\\/li>\\n<li>Fix background uploading not working if memory_limit defined in Gigabytes<\\/li>\\n<\\/ul>\\n<p>3.3.5 (25 June 2020)<br \\/>\\n<em>New:<\\/em><\\/p>\\n<ul>\\n<li>Setting to make the URLs to files upload to external service providers accessible to non-logged in users<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Updated jQuery File Upload library to v10.30.1.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fix Google Drive file preview URL not working<\\/li>\\n<li>Fix cancel button doesn\'t show to allow clearing upload errors<\\/li>\\n<li>Fix files with non UTF8 characters not reloaded when using the Save Progress addon<\\/li>\\n<\\/ul>\\n<p>3.3.4 (10 June 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fix mergetags variations not rendering the correct value<\\/li>\\n<li>Fix external file url redirecting to site admin home if the service is no longer connected<\\/li>\\n<\\/ul>\\n<p>3.3.3 (26 May 2020)<br \\/>\\n<em>New:<\\/em><\\/p>\\n<ul>\\n<li>Button to cancel a file upload, or clear an error after a failed upload<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>File upload links being stripped from emails and success messages<\\/li>\\n<li>Fatal error when uploading multiple files to Google Drive and renaming the file names<\\/li>\\n<li>Required field validation error shows when the \'Select Files\' button clicked<\\/li>\\n<li>Missing file upload when submitting a form that had previously been saved with the Save Progress addon<\\/li>\\n<li>Multiple file upload URLs appearing as one large broken link in emails<\\/li>\\n<li>PHP notices about mergetag values when saving a form<\\/li>\\n<li>Browse uploads table losing form filter when paginating or sorting<\\/li>\\n<\\/ul>\\n<p>3.3.2 (23 March 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Some large files corrupted when uploading to Dropbox<\\/li>\\n<li>Error not displayed when uploading a file larger than the maximum defined in settings<\\/li>\\n<li>Fix PHP Notice: Undefined variable: mime_types_whitelist<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added new filter \'ninja_forms_uploads_tmp_dir\' to change the temp directory for uploads<\\/li>\\n<li>Added external service $slug parameter to the filter \'ninja_forms_uploads_should_background_upload\'<\\/li>\\n<\\/ul>\\n<p>3.3.1 (9 March 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Security flaw which could allow files with blacklisted file extensions to be uploaded<\\/li>\\n<\\/ul>\\n<p>3.3.0 (2 March 2020)<br \\/>\\n<em>New:<\\/em><\\/p>\\n<ul>\\n<li>Files larger than the server maximum upload size can now be uploaded<\\/li>\\n<li>Large files uploaded to external services in the background, no longer holding up form submission<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Uploads and External settings page can\'t be saved due to missing nonce<\\/li>\\n<li>File uploaded to multiple external services being uploaded with the incorrect timestamp filename prefix<\\/li>\\n<\\/ul>\\n<p>3.2.6 (21 January 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Unknown upload error when the same form appears twice on a page<\\/li>\\n<\\/ul>\\n<p>3.2.5 (16 January 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fatal error: Cannot redeclare pcntl_signal() on some install<\\/li>\\n<\\/ul>\\n<p>3.2.4 (9 January 2020)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Select File button not working on Internet Explorer 11 still<\\/li>\\n<\\/ul>\\n<p>3.2.3 (8 January 2020)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added new filter \'ninja_forms_uploads_s3_acl\' to change the Amazon S3 ACL to \'private\' when uploading to buckets that are set as private<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Drag and dropping files when using multiple File Upload fields results in uploads to all fields<\\/li>\\n<li>Google Drive connection getting disconnected incorrectly for some users<\\/li>\\n<li>Select File button not working on Internet Explorer 11<\\/li>\\n<li>Fatal errors on installs using PHP less than 7.1<\\/li>\\n<li>Translatable string containing file size data could not be translated<\\/li>\\n<\\/ul>\\n<p>3.2.2 (28 November 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fatal error on some installs running plugins with the Google API SDK<\\/li>\\n<\\/ul>\\n<p>3.2.1 (25 November 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fatal error Uncaught Error: Call to undefined method ComposerAutoloadClassLoader::setClassMapAuthoritative()<\\/li>\\n<li>Fatal error intermittently after connecting to Google Drive<\\/li>\\n<li>Google Drive account disconnect when issue connecting to API<\\/li>\\n<\\/ul>\\n<p>3.2.0 (5 November 2019)<br \\/>\\n<em>New:<\\/em><\\/p>\\n<ul>\\n<li>You can now use mergetags in the \'Rename Uploaded File\' field setting<\\/li>\\n<li>Different mergetags for File Upload fields can now be selected, eg. {field:my_field_key:link}<\\/li>\\n<li>New mergetag for the filename of the file, eg. {field:my_field_key:filename}<\\/li>\\n<li>New mergetags for when the file has been added to the media library, eg. {field:my_field_key:attachment_url}, {field:my_field_key:attachment_embed}<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Ability to set Amazon key and secret and other settings as constants: \'NF_FU_AMAZON_S3_ACCESS_KEY\' and \'NF_FU_AMAZON_S3_SECRET_KEY\'<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Nonce error when submitting a form on a page that has been cached<\\/li>\\n<li>Fatal error caused when running UpdraftPlus or BackupBuddy plugin<\\/li>\\n<\\/ul>\\n<p>3.1.2 (17 October 2019)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Use the external service name not the slug in the uploads browser table<\\/li>\\n<li>Make the external service \'Connect\' button stand out from the \'Disconnect\' button<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fatal error caused when running the EDD Amazon S3 plugin<\\/li>\\n<li>Mergetag output blank when running the Conditional Logic plugin<\\/li>\\n<\\/ul>\\n<p>3.1.1 (10 October 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fatal error when uploading to Dropbox on installs with legacy Dropbox API tokens<\\/li>\\n<li>Fatal error due to memory exhaustion on some installs due to large Google SDK<\\/li>\\n<\\/ul>\\n<p>3.1.0 (8 October 2019)<br \\/>\\n<em>New:<\\/em><\\/p>\\n<ul>\\n<li>Google Drive support<\\/li>\\n<li>Full integration with Layout &amp; Styles addon<\\/li>\\n<li>Adds support for File Upload field to the realistic form builder<\\/li>\\n<li>New minimum file size field setting<\\/li>\\n<li>Add \'View Submission\' link for each upload in the \'Browse Uploads\' screen<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixes mergetag string literal sent to actions when there are no files uploaded<\\/li>\\n<li>Fixes Undefined index: type PHP notice due to mergetag code<\\/li>\\n<li>Fixes links showing in submission table and \'Browse Uploads\' screen for files that didn\'t exist<\\/li>\\n<\\/ul>\\n<p>3.0.27 (1 July 2019)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>New filter: \'ninja_forms_upload_mime_types_whitelist\' to amend the mime types global upload whitelist<\\/li>\\n<li>New filter: \'ninja_forms_upload_check_mime_types_whitelist\' to stop checking the global mime types whitelist<\\/li>\\n<li>New translation pack for Polish, props <a href=\\\"https:\\/\\/github.com\\/DreadsSupp\\\">DreadsSupp<\\/a><\\/li>\\n<\\/ul>\\n<p>3.0.26 (15 May 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixes \'No field ID supplied\' error message when post_max_size PHP config value is lower than upload_max_filesize.<\\/li>\\n<\\/ul>\\n<p>3.0.25 (8 May 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Nonce errors should no longer occur when multiple instances of the same form exist on a page.<\\/li>\\n<\\/ul>\\n<p>3.0.24 (22 April 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixes the bypassing of a required file upload field if a previously uploaded file is deleted.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Updated jQuery File Upload library to v9.30.0.<\\/li>\\n<\\/ul>\\n<p>3.0.23 (11 April 2019)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Critical security flaws which could allow file extensions to be changed and files to be traversed (Props <a href=\\\"https:\\/\\/www.onvio.nl\\\">Jasper Weijts, Onvio<\\/a>)<\\/li>\\n<\\/ul>\\n<p>3.0.22 (30 November 2018)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Attachment ID mergetag variation to be used when saving file upload to the media library, eg. {field:file_upload_22:attachment_id}<\\/li>\\n<\\/ul>\\n<p>3.0.21 (29 November 2018)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Form cannot be submitted if there was an error uploading a file, even after deleting it<\\/li>\\n<li>PHP Warning: count(): Parameter must be an array or an object that implements Countable<\\/li>\\n<\\/ul>\\n<p>3.0.20 (11 October 2018)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Critical security flaw which could allow file extensions to be changed and files to be executed (Props <a href=\\\"https:\\/\\/www.warpnet.nl\\/\\\">Frank Spierings from Warpnet<\\/a>)<\\/li>\\n<li>Non UTF8 characters in the %filename% tag<\\/li>\\n<li>Embed mergetag variant not working if install was without Conditional Logic addon<\\/li>\\n<li>Animate CSS class clashing with other theme and plugin styles<\\/li>\\n<\\/ul>\\n<p>3.0.19 (26 April 2018)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Compatibility with form templates in Ninja Forms 3.2.23<\\/li>\\n<li>Use file extension whitelist to restrict the file upload select box<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>upload_max_filesize php.ini config defined in units other than MB not working<\\/li>\\n<li>Dropbox connection removed if site cannot access Dropbox temporarily<\\/li>\\n<\\/ul>\\n<p>3.0.18 (27 March 2018)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Compatibility with Auto complete support in Ninja Forms 3.2.17<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fatal error when Amazon Web Services plugin installed but not activated<\\/li>\\n<li>Timeout when adding new forms on certain installs<\\/li>\\n<\\/ul>\\n<p>3.0.17 (18 November 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Dropbox connection redirect 404ing on some installs<\\/li>\\n<li>Only the first \'Select Files\' button text is used for multiple fields<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Filter added for the cron time when deleting the temp file<\\/li>\\n<li>Filter added for the default \'Select Files\' button text<\\/li>\\n<\\/ul>\\n<p>3.0.16 (13 October 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that was preventing uploads from being re-saved when using the Save Progress add-on.<\\/li>\\n<\\/ul>\\n<p>3.0.15 (1 Aug 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fix external URLs not sent to Zapier when using Zapier addon<\\/li>\\n<li>Fix field max upload size bigger than server limit<\\/li>\\n<\\/ul>\\n<p>3.0.14 (11 Aug 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fix Dropbox file uploaded with full server path when having no custom upload path<\\/li>\\n<\\/ul>\\n<p>3.0.13 (10 Aug 2017)<br \\/>\\n<em>Features:<\\/em><\\/p>\\n<ul>\\n<li>German translation file, thanks @christophrado!<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added original filename to ninja_forms_uploads_[external service]_filename filter<\\/li>\\n<li>Added more information to the help bubble for file renames to describe creating directories<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fix isset weirdness when checking for old NF format of file value<\\/li>\\n<li>Fix method not exists when creating table if using older version of NF core.<\\/li>\\n<li>Fix custom upload path not replacing %field_ shortcodes<\\/li>\\n<li>Fix custom upload path not working for external (Dropbox\\/S3) file paths<\\/li>\\n<li>Fix %formtitle% not being replaced in field rename if no custom upload path<\\/li>\\n<\\/ul>\\n<p>3.0.12 (28 July 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Dropbox uploads failing when custom path defined<\\/li>\\n<\\/ul>\\n<p>3.0.11 (25 July 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>File Uploads table not created on fresh installation<\\/li>\\n<li>jQuery File Upload JavaScript files clashed with Calendarize plugin<\\/li>\\n<\\/ul>\\n<p>3.0.10 (12 July 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>File Uploads should work properly with non-standard WordPress databse prefixes.<\\/li>\\n<\\/ul>\\n<p>3.0.9 (06 July 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>File Uploads should now work properly with Multi-Part Forms.<\\/li>\\n<li>Fixed a bug with non-English characters and file name encoding.<\\/li>\\n<\\/ul>\\n<p>3.0.8 ( 26 June 2017)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Supports Dropbox API v2<\\/li>\\n<li>Custom name of file now supports changing path with field specific data<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>File appeared even if upload failed<\\/li>\\n<\\/ul>\\n<p>3.0.7 ( 5 June 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Amazon S3 uploads unable to use bucket in newer regions<\\/li>\\n<li>File not deleted from server when File Upload deleted in admin<\\/li>\\n<li>All File Uploads fields on form used the same nonce<\\/li>\\n<li>NF 2.9 submissions not displaying in admin<\\/li>\\n<li>File Upload field CSS too generic causing clashes with themes<\\/li>\\n<li>PHP notice on uploads table when submission from non-logged in user<\\/li>\\n<li>All Fields mergetag not using external URL<\\/li>\\n<li>Missing mergetag variations used for Post Creation<\\/li>\\n<li>Similar file extensions allowed even when not on file type whitelist for field<\\/li>\\n<\\/ul>\\n<p>3.0.6 (12 April 2017)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed the description text for custom file upload paths.<\\/li>\\n<li>Fixed PHP warnings related to uploading a file to a remote server.<\\/li>\\n<li>Links to uploaded files should now always show properly.<\\/li>\\n<li>Fixed a bug that could cause unexpected output when displaying a form.<\\/li>\\n<\\/ul>\\n<p>3.0.5 (07 December 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause file upload fields to fail with Ninja Forms versions &gt; 3.0.17.<\\/li>\\n<\\/ul>\\n<p>3.0.4 (3 November 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with the Max File Upload Size setting.<\\/li>\\n<li>Whitelisting file types should now work as explained in the help text.<\\/li>\\n<li>File names can now be based upon the values of other fields using merge tags.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added missing help text to the admin.<\\/li>\\n<\\/ul>\\n<p>3.0.3 (28 September 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>File Uploads should now show in Conditional Logic conditions.<\\/li>\\n<\\/ul>\\n<p>3.0.2 (09 September 2016)<\\/p>\\n<ul>\\n<li>Update to 3.0.2<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed SQL format that breaks dbdelta.<\\/li>\\n<li>Fixed Dropbox case sensitive issues.<\\/li>\\n<li>Fixed Multiple file selection bug.<\\/li>\\n<li>Fixed a bug with uploading .jpg files.<\\/li>\\n<\\/ul>\\n<p>3.0.1 (06 September 2016)<\\/p>\\n<ul>\\n<li>Updated with Ninja Forms v3.x compatibility<\\/li>\\n<\\/ul>\\n<p>3.0 (06 September 2016)<\\/p>\\n<ul>\\n<li>Updated with Ninja Forms v3.x compatibility<\\/li>\\n<li>Deprecated Ninja Forms v2.9.x compatible code<\\/li>\\n<\\/ul>\\n<p>1.4.9 (09 May 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug where duplicate file names could cause the extension to be changed. Credit to \\\"fruh of citadelo\\\" for reporting the security vulnerability.<\\/li>\\n<\\/ul>\\n<p>1.4.8 (29 March 2016)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with Dropbox that could cause uploading to Dropbox to fail.<\\/li>\\n<\\/ul>\\n<p>1.4.7 (20 September 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug related to buckets in Amazon S3.<\\/li>\\n<li>Improved how URLs are handled when saving submissions.<\\/li>\\n<\\/ul>\\n<p>1.4.6 (24 August 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed an issue with connecting to Amazon accounts.<\\/li>\\n<li>Fixed several PHP notices that appeared on the uploads settings page.<\\/li>\\n<\\/ul>\\n<p>1.4.5 (12 May 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Featured images in the Post Creation extension should now function properly.<\\/li>\\n<li>Save Progress extension tables should now show File Upload fields properly.<\\/li>\\n<\\/ul>\\n<p>1.4.4 (26 March 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Multiple file uploads should work properly with external services.<\\/li>\\n<li>Fixed several PHP notices.<\\/li>\\n<\\/ul>\\n<p>1.4.3 (12 January 2015)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause Dropbox to disconnect.<\\/li>\\n<li>Fixed a bug with multi-file uploads that could cause the wrong URL to be stored in the file uploads table.<\\/li>\\n<li>Fixed a PHP notice.<\\/li>\\n<\\/ul>\\n<p>1.4.2 (9 December 2014)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with PHP v5.6 and Dropbox uploads.<\\/li>\\n<li>Fixed a bug that caused file renaming to work incorrectly.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a new upload location of none, where files get removed after upload.<\\/li>\\n<\\/ul>\\n<p>1.4.1 (17 November 2014)<br \\/>\\n<em>Bugs<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug caused by a bad commit in the previous version.<\\/li>\\n<\\/ul>\\n<p>1.4 (17 November 2014)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed two PHP notices.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added filter for filename $file_name = apply_filters( \'nf_fu_filename\' , $filename );<\\/li>\\n<li>The maximum file upload size can now not exceed the server PHP setting for max file uploads.<\\/li>\\n<\\/ul>\\n<p>1.3.8 (15 September 2014 )<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>File Uploads should now be compatible with Ninja Forms version 2.8 and the new notification system.<\\/li>\\n<li>Performance should be noticeably increased.<\\/li>\\n<\\/ul>\\n<p>1.3.7 (12 August 2014 )<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with viewing files in the edit sub page.<\\/li>\\n<\\/ul>\\n<p>1.3.6 (12 August 2014)<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixing a bug with file exports and version 2.7+ of Ninja Forms.<\\/li>\\n<li>Fixed translation issues.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added new .pot file.<\\/li>\\n<\\/ul>\\n<p>1.3.5 (24 July 2014)<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Compatibility with Ninja Forms 2.7.<\\/li>\\n<\\/ul>\\n<p>1.3.4<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Making sure the external upload doesn\'t fire if there is no file uploaded<\\/li>\\n<\\/ul>\\n<p>1.3.3<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug with Dropbox that could cause file uploads to be sluggish.<\\/li>\\n<li>is_dir() and mkdir() warnings should be cleared up.<\\/li>\\n<li>Multi-file upload fields should now clear correctly when a form is submitted.<\\/li>\\n<\\/ul>\\n<p>1.3.2<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause the plugin not to activate on some systems.<\\/li>\\n<\\/ul>\\n<p>1.3.1<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>The extension should now properly activate on all PHP versions.<\\/li>\\n<\\/ul>\\n<p>1.3<br \\/>\\n<em>Features:<\\/em><\\/p>\\n<ul>\\n<li>You can now store uploaded files in Dropbox or Amazon S3! Simply select the storage location on a per-upload-field basis.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a PHP notice.<\\/li>\\n<li>Fixed a bug that could cause some installations to lose the ninja-forms\\/tmp\\/ directory.<\\/li>\\n<\\/ul>\\n<p>1.2<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented required file uploads from being validated when using AJAX submissions.<\\/li>\\n<li>Fixed some php notices.<\\/li>\\n<\\/ul>\\n<p><em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added support for the new Ninja Forms loading class.<\\/li>\\n<li>Editing a submission from the wp-admin that includes a file will now show a link to that file instead of just the filename.<\\/li>\\n<\\/ul>\\n<p>1.1<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>The format of date searching in the Browse Files tab will now be based upon the date format in Plugin Settings. i.e. you can now search dd\\/mm\\/yyyy.<\\/li>\\n<li>Added the option to name a directory\\/file with %userid%.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that caused file upload fields to load multiple instances or open with pre-filled, incorrect data.<\\/li>\\n<\\/ul>\\n<p>1.0.11<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a filter so that when a user uploads a file, they don\'t see the directory to which it was uploaded in their email.<\\/li>\\n<\\/ul>\\n<p>1.0.10<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed the license and auto-update system to the one available in Ninja Forms 2.2.47.<\\/li>\\n<\\/ul>\\n<p>1.0.9<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause files to be added to the media library twice when used with the Post Creation extension.<\\/li>\\n<\\/ul>\\n<p>1.0.8<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed references to wpninjas.com to the new ninjaforms.com.<\\/li>\\n<\\/ul>\\n<p>1.0.7<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented files from being emailed as attachments in multi-part forms.<\\/li>\\n<\\/ul>\\n<p>1.0.6<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Updates for compatibility with WordPress 3.6<\\/li>\\n<\\/ul>\\n<p>1.0.5<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented Uploads from working properly with AJAX forms.<\\/li>\\n<li>Fixed a bug that prevented Uploads from working properly when they were set to required.<\\/li>\\n<\\/ul>\\n<p>1.0.4<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a filter so that File Uploads will work properly with the confirmation page option of Multi-Part Forms.<\\/li>\\n<\\/ul>\\n<p>1.0.3<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Changed the way that file uploads with duplicate names are handled. In previous versions, the new file would simply replace the older file with the same name; now, if a file already exists with the same name as an upload, the upload is renamed with a sequential number. e.g. my-file.jpg -&gt; my-file-001.jpg -&gt; my-file-002.jpg -&gt; etc.<\\/li>\\n<li>Added an option to add files to the WordPress Media Library. On each file upload field, you\'ll find this new option.<\\/li>\\n<li>Added three new file renaming options: %displayname%, %firstname%, %lastname%. Each of these will be replaced with the appropriate user information.<\\/li>\\n<li>Added a new filter named: ninja_forms_uploads_dir. This filter can be used to modify the location Ninja Forms uploads files.<\\/li>\\n<\\/ul>\\n<p><em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that could cause some files from uploading properly.<\\/li>\\n<\\/ul>\\n<p>1.0.2<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Added a new option to the [ninja_forms_field id=] shortcode. You can now use [ninja_forms_field id=2 method=url]. This will return just the url of the file. For example, you can now do something like this: .<\\/li>\\n<\\/ul>\\n<p>1.0.1<br \\/>\\n<em>Changes:<\\/em><\\/p>\\n<ul>\\n<li>Modified the way that the pre-processing is handled for more effeciency.<\\/li>\\n<\\/ul>\\n<p>1.0<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented files from being replaced on the backend.<\\/li>\\n<\\/ul>\\n<p>0.9<br \\/>\\n<em>Bugs:<\\/em><\\/p>\\n<ul>\\n<li>Fixed a bug that prevented files from being replaced when editing user submissions.<\\/li>\\n<\\/ul>\\n<p>0.8<br \\/>\\n<em>Features:<\\/em><\\/p>\\n<ul>\\n<li>Added the ability to search for file uploads by User ID, User email, or User login.<\\/li>\\n<\\/ul>\\n<p>0.7<\\/p>\\n<ul>\\n<li>Updated code formatting.<\\/li>\\n<\\/ul>\\n<p>0.6<\\/p>\\n<ul>\\n<li>Fixed a bug that was causing the new [ninja_forms_field id=3] shortcode to fail when used in conjunction with the Uploads Extension.<\\/li>\\n<\\/ul>\\n<p>0.5<\\/p>\\n<ul>\\n<li>Changed the upload directory to the built-in WordPress uploads directory. This should help limit the cases of users not being able to upload files because of directory restrictions. Old files have not been moved over because it would be impossible to correctly fix links to new locations.<\\/li>\\n<li>Fixed a bug that was causing some users to lose their upload record when they deactivated and reactivated the plugin.<\\/li>\\n<li>Errors should now show properly for files that are over the file size limit set in the plugin settings.<\\/li>\\n<\\/ul>\\n<p>0.4<\\/p>\\n<ul>\\n<li>Various bug fixes including:<\\/li>\\n<li>A bug that prevented files from being moved to the proper directory.<\\/li>\\n<li>A bug that prevented the \\\"update file\\\" link from working on pages that already had a file uploaded.<\\/li>\\n<li>A bug that prevented the \\\"featured image\\\" functionality from working properly.<\\/li>\\n<li>Added a new setting to the upload settings page for file upload URLs.<\\/li>\\n<\\/ul>\\n<p>0.3<\\/p>\\n<ul>\\n<li>Various bug fixes.<\\/li>\\n<\\/ul>\\n<p>0.2<\\/p>\\n<ul>\\n<li>Various bug fixes.<\\/li>\\n<li>Changed the way that javascript and css files are loaded in extensions.<\\/li>\\n<\\/ul>\\n\"]}\";}','no'),(22139,'divitorque_version','3.5.0','yes'),(22143,'brainaddons_settings','a:1:{s:10:\"login_page\";i:50566;}','yes'),(22144,'divi_torque_activation_date','1662747472','yes'),(22145,'divi_torque_version','3.5.0','yes'),(22582,'ba_display_conditions','a:0:{}','yes'),(22616,'depicter_version_initial','1.2.0','yes'),(22617,'depicter_client_key','b21lIjoiaHR0cHM6XC9cL2xvbWFkLXRlc3QuZ2V0bWFkLnRvZGF5IiwidWlkIjoiIn0H2XdYzPVT1G8GlGh9fUpOw7nHzOLBJ5TRsR3B_Dw0GKaXN56Kk','yes'),(22620,'depicter_db_version','0.2.0','yes'),(22621,'depicter_capabilities_added','1','yes'),(22628,'depicter_version_previous','0','yes'),(22629,'depicter_version','1.2.0','yes'),(22630,'depicter_last_document_migration','202203091150','yes'),(22631,'depicter_imported_assets','a:8:{s:13:\"@Fd2X@HoSi292\";i:50700;s:13:\"@Fd2X@HoSi294\";i:50701;s:13:\"@Fd2X@HoSi295\";i:50702;s:13:\"@Fd2X@HoSi293\";i:50703;s:16:\"@UnSiEKy2OTRPXdw\";i:50712;s:16:\"@UnSiYjVa-F9P9kk\";i:50713;s:16:\"@UnSiVCFxt2yT1eQ\";i:50714;s:16:\"@UnSi0FRJ2SCuY4k\";i:50715;}','yes'),(23382,'_transient_ninja_forms_styles_form_7_styles','<style>\n\n        /* FORM STYLES */\n    \n        #nf-form-7-cont .nf-response-msg {\n                                    background-color:#d8d8d8A6;\n                                            color:#211865;\n                                            font-size:22px;\n                                                    font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;                    }\n    </style>','yes'),(23383,'_transient_ninja_forms_styles_form_7_field_styles','<style>\n\n        /* FIELDS STYLES */\n    \n        .nf-form-content .nf-field-container #nf-field-49-wrap {\n                                    width:315px;\n                            }\n        .nf-form-content .nf-field-container #nf-field-49-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-50-wrap {\n                                    width:315px;\n                            }\n        .nf-form-content .nf-field-container #nf-field-50-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-51-wrap {\n                                    width:315px;\n                            }\n        .nf-form-content .nf-field-container #nf-field-51-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-52-wrap {\n                                    width:315px;\n                            }\n        .nf-form-content .nf-field-container #nf-field-52-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-53-wrap {\n                                    width:315px;\n                            }\n        .nf-form-content .nf-field-container #nf-field-53-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-53-wrap .nf-field-element li .nf-element {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-55-wrap {\n                                    width:315px;\n                            }\n        .nf-form-content .nf-field-container #nf-field-55-wrap .nf-field-element li {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-55-wrap .nf-field-element li .nf-element {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-56-wrap {\n                                    width:315px;\n                            }\n        .nf-form-content .nf-field-container #nf-field-56-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:12.5pt;\n                                            padding:7.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-57-wrap {\n                    }\n        .nf-form-content .nf-field-container #nf-field-58-wrap {\n                                    width:315px;\n                            }\n        .nf-form-content .nf-field-container #nf-field-59-wrap {\n                    }\n    </style>','yes'),(24138,'divi_rocket_license_status','valid','yes'),(24139,'divi_rocket_license_key','D237eb7144f0622a46abbbe351f0f6aa','yes'),(24140,'ds-divi-rocket-revisions','0','yes'),(24141,'divi_rocket_lazy_on','1','yes'),(24142,'divi_rocket_footer_credit','0','yes'),(24145,'DiviRocket_rev_custom_css','13','yes'),(24169,'DiviRocket_rev_post','14','yes'),(24172,'DiviRocket_rev_page','336','yes'),(24182,'DiviRocket_rev_et_pb_layout','18','yes'),(24184,'DiviRocket_rev_revision','448','yes'),(24494,'a2979e62e2f0710679847b1496742ed3','a:2:{s:7:\"timeout\";i:1664296167;s:5:\"value\";s:33766:\"{\"new_version\":\"1.0.48\",\"stable_version\":\"1.0.48\",\"name\":\"Divi Rocket\",\"slug\":\"ds-divi-rocket\",\"url\":\"https:\\/\\/wpzone.co\\/product\\/divi-rocket\\/?changelog=1\",\"last_updated\":\"2022-01-11 16:09:44\",\"homepage\":\"https:\\/\\/wpzone.co\\/product\\/divi-rocket\\/\",\"package\":\"https:\\/\\/wpzone.co\\/edd-sl\\/package_download\\/MTY2NDU0MDk2NzpEMjM3ZWI3MTQ0ZjA2MjJhNDZhYmJiZTM1MWYwZjZhYTo2NTM0MDU6NjA0MmYwMWYxNGM5OGJkMDE0YzAwZTUxMWIxYzU1OWU6aHR0cHNALy9sb21hZC10ZXN0LmdldG1hZC50b2RheTow\",\"download_link\":\"https:\\/\\/wpzone.co\\/edd-sl\\/package_download\\/MTY2NDU0MDk2NzpEMjM3ZWI3MTQ0ZjA2MjJhNDZhYmJiZTM1MWYwZjZhYTo2NTM0MDU6NjA0MmYwMWYxNGM5OGJkMDE0YzAwZTUxMWIxYzU1OWU6aHR0cHNALy9sb21hZC10ZXN0LmdldG1hZC50b2RheTow\",\"sections\":{\"description\":\"<p>Divi Rocket is the most powerful caching plugin specifically designed for the Divi Theme \\u2013 built by Divi Users, for Divi Users.<\\/p>\\n\",\"changelog\":\"<p><em>Note: In addition to the changes listed here, there may be other minor fixes and improvements that are not noted. For more information about this product, visit the <a href=\\\"https:\\/\\/wpzone.co\\/product\\/divi-rocket\\/\\\" target=\\\"_blank\\\">Divi Rocket product page<\\/a>.<\\/em><\\/p>\\n<p><strong>Version 1.0.48 Oct 29, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix issue when saving plugin settings, related to previous release<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.47 Oct 28, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Add Miscellaneous tab &gt; Defer Video Loading Behind Overlay setting to help optimize pages that use the Video module with an overlay set<\\/li>\\n<li>Add additional information to debug mode<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.46 Oct 21, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Some or all cached content styling may be missing due to post feature cache in Divi 4.10 (disable post feature cache for cached posts\\/pages\\/products)<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.45 Oct 15, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Viewing older entries in the blog module may not work when server-side caching is enabled<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.44 Oct 7, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Potential fatal error related to empty scripts and\\/or styles queue<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.43 Sep 30, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Lazy load was active for POST requests (may result in duplicate content or other issues when a form is submitted, etc.)<\\/li>\\n<li>Fix: The System Specifications tab incorrectly recommended enabling the Static CSS setting<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.42 Sep 29, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Google Fonts may not work under Divi 4.10<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.41 Sep 8, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Disable critical CSS when server-side caching is enabled for the current main content (may fix some styling issues when used with Divi 4.10)<\\/li>\\n<li>Fix fatal error on content lazy loading<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.40 Aug 25, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Replace built-in module loader with support for Divi 4.10&#039;s new module loader (fix: dynamic modules such as contact forms cause a fatal error on cached load)<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.39 Aug 23, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Additional Divi 4.10 compatibility - fix styling issues due to missing critical CSS<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.38 Aug 20, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Divi 4.10 compatibility<\\/li>\\n<li>Disable caching for Table Maker shortcodes<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.37  Aug 6, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Lazy loading may break on pages\\/posts\\/products containing the Number Counter module<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.36 July 30, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Some responsive styling may be missing in some cases<\\/li>\\n<li>Fix: Options passed to post cacher (internally) were not being applied<\\/li>\\n<li>Fix: When updating a theme builder layout, there may be styling issues until the cache is cleared<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.35 June 24, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Lazy loading may initialize content multiple times, possibly resulting in duplicate actions such as multiple emails being sent when a contact form is submitted<\\/li>\\n<li>Fix: Using a shortcode from Shortcodes for Divi in a Divi module loaded via the Post Content module can break styling for that content<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.34 June 3, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: There may be styling issues when the Post Content module is used in the theme builder with Divi Rocket server caching active<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.33 May 25, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Add AGS Info tag to the plugin header<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.32 April 23, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Compatibility: Implemented compatibility with the Embed Any Document plugin and the content lazy loading functionality of Divi Rocket (requires WordPress 5.5+)<\\/li>\\n<li>Fix: A PHP notice may be generated during cache generation for some modules<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.31 March 5, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Global modules do not update in content when they are updated outside of that content<\\/li>\\n<li>Fix: When using the theme builder to define a custom body layout for a WooCommerce product, the default WooCommerce product page may be shown in addition to the custom layout if server caching is disabled in Divi Rocket<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.30 January 22, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: The gzip compression feature may not be compatible with certain third-party plugins built on the Nextend framework, such as Smart Slider 3<\\/li>\\n<li>Fix: The server caching feature is not compatible with the Themify - WooCommerce Product Filter plugin<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.29 December 10, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Order class names may be incorrect for some cached content, resulting in display and\\/or lazy loading issues<\\/li>\\n<li>Fix: The order of certain wrapping elements may be incorrect when the theme builder is in use, possibly resulting in styling issues<\\/li>\\n<li>Fix: The output may have a duplicate closing &lt;\\/div&gt; tag when the theme builder is in use<\\/li>\\n<li>Fix: Some module(s) such as Pricing Tables may have styling and\\/or other issues if one or more settings fields contains dynamic content<\\/li>\\n<li>Fix: Some module(s) such as Pricing Tables may display placeholder text instead of the expected content when shortcodes are used in the module content. (Note: In the case of Pricing Tables and possibly other - modules, shortcodes may be used in content even if they are not explicitly added by the user.) This may occur only when the module is not loaded from cache, or every time the module is loaded.<\\/li>\\n<li>Fix: Scroll effects were not working in cached content. (Note: Scroll effects are not supported in content that is lazy loaded after the initial page load, if lazy load is enabled.)<\\/li>\\n<li>Fix: Sticky elements were not working cached content. (Note: Sticky elements are not supported in content that is lazy loaded after the initial page load, if lazy load is enabled.)<\\/li>\\n<li>Fix: On some modules, certain box shadow styles may not work in cached content. (Note: These combinations of modules and box shadow styles are not supported in content that is lazy loaded after the initial page load, if lazy load is enabled.)<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.28 November 30, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: There may be styling issues when Divi Rocket is active but server-side caching is not enabled<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.27 November 20, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: There may be styling issues when Divi Rocket is active but server-side caching is not enabled.<\\/li>\\n<li>Miscellaneous minor changes<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.26 November 17, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix (2): Missing wrapping elements may cause styling problems in some cases<\\/li>\\n<li>Miscellaneous improvement(s)<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.25 November 13, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Missing wrapping elements may cause styling problems in some cases<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.24 November 12, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Shop module pagination was broken on Divi Rocket cached pages<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.23 November 5, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Improved compatibility with the Divi Bars plugin<\\/li>\\n<li>Improved compatibility with various other plugins that render Divi content in non-default places, such as Page Builder Everywhere, Divi Mega Pro, Divi Overlays, and possibly others<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.22 October 26, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Cached output for a certain kind of content contains unwanted &quot; characters<\\/li>\\n<li>Security fix: Disable direct access to header-extra and footer-extra cache files<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.21 October 1, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Admin menu item not visible when license key is not activated<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.20 September 28, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Styling missing for content in post content module<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.19 September 13, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Styling may be missing from content in the Post Content module when used in theme builder layouts<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.18 August 3, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Add additional debugging functionality<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.17 May 25, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Some parts of the &lt;html&gt; tag may be output twice<\\/li>\\n<li>Fix: Some CSS may be output after the closing tag<\\/li>\\n<li>Fix: Potential styling issue resulting from incorrect module order classes in cached content<\\/li>\\n<li>Fix: Some content on archive pages may be cached even though this is not currently supported<\\/li>\\n<li>Miscellaneous fix(es)<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.16 May 5, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Certain content may not load correctly if the containing section has an ID set and lazy loading is enabled<\\/li>\\n<li>Fix: Theme builder content styling may be missing on non-Divi posts, pages, and products<\\/li>\\n<li>Fix: Hide the default comments area when a comments module is present (per default Divi behavior)<\\/li>\\n<li>Fix: Global content may be rendered twice<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.15 April 8, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: incorrect rendering of some global modules<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.14 April 3, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: PHP notice related to Gzip Compression option<\\/li>\\n<li>Fix: Error related to a missing method<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.13 January 24,, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: WooCommerce products with non-Divi content may have duplicated product descriptions<\\/li>\\n<li>Fix: In some cases when the Divi theme builder is in use, a small amount of code may be shown to the user and\\/or there may be other problems which go away the cache is cleared<\\/li>\\n<li>Fix: Divi theme builder footer styling is not applied sometimes<\\/li>\\n<li>Fix: Syntax error referencing &#039;::&#039; in certain versions of PHP<\\/li>\\n<li>Enable optimization of InnoDB database tables (except with MySQL &lt; 5.7)<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.12 January 22, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Divi modules may not be styled correctly when server caching is active due to a problem with stylesheet ordering<\\/li>\\n<li>Fix: Styling issue in Divi Rocket settings page<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.11 January 9, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Certain JavaScript and CSS content may be output outside the closing html tag in some instances<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.10 January 8, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Missing module styling in certain cases on subsequent loads after the first load without a cached copy of the content<\\/li>\\n<\\/ul>\\n<p><strong>Change to potentially avoid issues with the Divi Rocket update functionality<\\/strong><\\/p>\\n<p><strong>Version 1.0.9 January 3, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: The Blog module and other post-based modules and\\/or shortcodes did not filter out content with certain non-public statuses (e.g. draft, future\\/scheduled) when being regenerated in the cache on an individual module basis (not on cache regeneration for the entire page, post, or product), resulting in this non-public content being displayed to site visitors<\\/li>\\n<li>Fix: Lazy loading may result in an infinite loop in the frontend JavaScript and may disrupt page scrolling<\\/li>\\n<li>Fix: Divi&#039;s static CSS file feature was not being fully disabled in certain instances where it should have been<\\/li>\\n<li>Fix: CSS output inline in Divi builder content by Divi Rocket server caching was causing problems with styling that relied on element order (due to the addition of an extra style element); this inline CSS is now being output to the head element or the footer instead<\\/li>\\n<li>Fix: Certain module scripts and\\/or styles were missing in some cases when the theme builder was in use<\\/li>\\n<li>Fix: A PHP notice was being output during cache generation (when such output was enabled, typically in debug mode)<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.8 December 30, 2019<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Unable to add module in the visual builder with Divi Rocket activated (and possibly other issues resulting from server caching page templates in contexts where caching is disabled or not supported)<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.7 December 26, 2019<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Global modules missing from server cached content<\\/li>\\n<li>Fix: Changes to global library items may not be reflected in server cached content until the cache is cleared<\\/li>\\n<li>Fix: Server caching compatibility issue with Theme Builder in recent version(s) of Divi (may cause styling and\\/or other issues on page)<\\/li>\\n<li>Fix: Google Fonts used in Divi modules were not being loaded when server caching is enabled<\\/li>\\n<li>Fix: Loading animation may be shown indefinitely when lazy loading is enabled and the page, post, or product has fewer sections than the number of initial sections<\\/li>\\n<li>Fix: Server caching incompatibility with certain third-party Divi module(s), such as Smart Slider 3<\\/li>\\n<li>Fix: Fatal PHP error when server caching is enabled and certain third-party module(s) are used in the content<\\/li>\\n<li>Fix: Server caching incompatibility with certain third-party module(s) (such as Typewriter for Divi) caused by module scripts being output before other scripts in the footer<\\/li>\\n<li>Add setting to disable server caching for non-logged-in users in the Server Caching tab of Divi Rocket settings<\\/li>\\n<li>Improve handling of non-existent modules in content by the server caching engine (for example, when the plugin used to create the module is deactivated)<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.6 December 19, 2019<\\/strong><\\/p>\\n<ul>\\n<li>Add compatibility with Jetpack&#039;s image lazy loading feature<\\/li>\\n<li>Fix: Browser caching header was not sent for WEBP format images, TrueType fonts, or OpenType fonts<\\/li>\\n<li>Fix warning messages when trying to cache a theme builder section that is not in use<\\/li>\\n<li>Fix warning messages on 404 page<\\/li>\\n<li>Fix error related to certain types of non-Divi shortcodes<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.5 December 10, 2019<\\/strong><\\/p>\\n<ul>\\n<li>Fix: lazy loading breaks if section(s) are missing (such as due to being hidden)<\\/li>\\n<li>Add support for WP and Divi Icons Pro (1.1.4+)<\\/li>\\n<li>Fixes to improve compatibility with older versions of Divi 3<\\/li>\\n<li>Improve handling of references to non-existent modules in certain cases<\\/li>\\n<li>Fix\\/improve compatibility with Divi Library global layouts<\\/li>\\n<li>Fix: custom CSS in Divi page\\/post settings was not being output<\\/li>\\n<li>Fix: missing builder content wrapper elements on cached loads in certain situations<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.4 December 9, 2019<\\/strong><\\/p>\\n<ul>\\n<li>Fix: missing module styling after initial load when server side caching is enabled and lazy loading is not<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.3 December 6, 2019<\\/strong><\\/p>\\n<ul>\\n<li>Fixes conflict with certain versions of PHP that may cause sites to crash<\\/li>\\n<li>Various bug fixes and improvements<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.2 December 4, 2019<\\/strong><\\/p>\\n<ul>\\n<li>version release fix<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.1 December 4, 2019<\\/strong><\\/p>\\n<ul>\\n<li>ix: Static CSS File Generation option was not fully disabled in Divi when Divi Rocket server caching in use<\\/li>\\n<li>Fix: Certain Divi Builder content was still visible after being set to hidden on all devices<\\/li>\\n<\\/ul>\\n<p><em>Note: In addition to the changes listed here, there may be other minor fixes and improvements that are not noted. For more information about this product, visit the <a href=\\\"https:\\/\\/wpzone.co\\/product\\/divi-rocket\\/\\\" target=\\\"_blank\\\">Divi Rocket product page<\\/a>.<\\/em><\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":\"a:2:{s:2:\\\"1x\\\";s:83:\\\"https:\\/\\/wpzone.co\\/wp-content\\/uploads\\/2019\\/11\\/divi_rocket_featured_image-128x128.png\\\";s:2:\\\"2x\\\";s:83:\\\"https:\\/\\/wpzone.co\\/wp-content\\/uploads\\/2019\\/11\\/divi_rocket_featured_image-256x256.png\\\";}\",\"description\":[\"<p>Divi Rocket is the most powerful caching plugin specifically designed for the Divi Theme \\u2013 built by Divi Users, for Divi Users.<\\/p>\\n\"],\"changelog\":[\"<p><em>Note: In addition to the changes listed here, there may be other minor fixes and improvements that are not noted. For more information about this product, visit the <a href=\\\"https:\\/\\/wpzone.co\\/product\\/divi-rocket\\/\\\" target=\\\"_blank\\\">Divi Rocket product page<\\/a>.<\\/em><\\/p>\\n<p><strong>Version 1.0.48 Oct 29, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix issue when saving plugin settings, related to previous release<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.47 Oct 28, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Add Miscellaneous tab &gt; Defer Video Loading Behind Overlay setting to help optimize pages that use the Video module with an overlay set<\\/li>\\n<li>Add additional information to debug mode<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.46 Oct 21, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Some or all cached content styling may be missing due to post feature cache in Divi 4.10 (disable post feature cache for cached posts\\/pages\\/products)<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.45 Oct 15, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Viewing older entries in the blog module may not work when server-side caching is enabled<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.44 Oct 7, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Potential fatal error related to empty scripts and\\/or styles queue<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.43 Sep 30, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Lazy load was active for POST requests (may result in duplicate content or other issues when a form is submitted, etc.)<\\/li>\\n<li>Fix: The System Specifications tab incorrectly recommended enabling the Static CSS setting<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.42 Sep 29, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Google Fonts may not work under Divi 4.10<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.41 Sep 8, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Disable critical CSS when server-side caching is enabled for the current main content (may fix some styling issues when used with Divi 4.10)<\\/li>\\n<li>Fix fatal error on content lazy loading<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.40 Aug 25, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Replace built-in module loader with support for Divi 4.10&#039;s new module loader (fix: dynamic modules such as contact forms cause a fatal error on cached load)<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.39 Aug 23, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Additional Divi 4.10 compatibility - fix styling issues due to missing critical CSS<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.38 Aug 20, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Divi 4.10 compatibility<\\/li>\\n<li>Disable caching for Table Maker shortcodes<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.37  Aug 6, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Lazy loading may break on pages\\/posts\\/products containing the Number Counter module<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.36 July 30, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Some responsive styling may be missing in some cases<\\/li>\\n<li>Fix: Options passed to post cacher (internally) were not being applied<\\/li>\\n<li>Fix: When updating a theme builder layout, there may be styling issues until the cache is cleared<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.35 June 24, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Lazy loading may initialize content multiple times, possibly resulting in duplicate actions such as multiple emails being sent when a contact form is submitted<\\/li>\\n<li>Fix: Using a shortcode from Shortcodes for Divi in a Divi module loaded via the Post Content module can break styling for that content<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.34 June 3, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: There may be styling issues when the Post Content module is used in the theme builder with Divi Rocket server caching active<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.33 May 25, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Add AGS Info tag to the plugin header<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.32 April 23, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Compatibility: Implemented compatibility with the Embed Any Document plugin and the content lazy loading functionality of Divi Rocket (requires WordPress 5.5+)<\\/li>\\n<li>Fix: A PHP notice may be generated during cache generation for some modules<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.31 March 5, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Global modules do not update in content when they are updated outside of that content<\\/li>\\n<li>Fix: When using the theme builder to define a custom body layout for a WooCommerce product, the default WooCommerce product page may be shown in addition to the custom layout if server caching is disabled in Divi Rocket<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.30 January 22, 2021<\\/strong><\\/p>\\n<ul>\\n<li>Fix: The gzip compression feature may not be compatible with certain third-party plugins built on the Nextend framework, such as Smart Slider 3<\\/li>\\n<li>Fix: The server caching feature is not compatible with the Themify - WooCommerce Product Filter plugin<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.29 December 10, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Order class names may be incorrect for some cached content, resulting in display and\\/or lazy loading issues<\\/li>\\n<li>Fix: The order of certain wrapping elements may be incorrect when the theme builder is in use, possibly resulting in styling issues<\\/li>\\n<li>Fix: The output may have a duplicate closing &lt;\\/div&gt; tag when the theme builder is in use<\\/li>\\n<li>Fix: Some module(s) such as Pricing Tables may have styling and\\/or other issues if one or more settings fields contains dynamic content<\\/li>\\n<li>Fix: Some module(s) such as Pricing Tables may display placeholder text instead of the expected content when shortcodes are used in the module content. (Note: In the case of Pricing Tables and possibly other - modules, shortcodes may be used in content even if they are not explicitly added by the user.) This may occur only when the module is not loaded from cache, or every time the module is loaded.<\\/li>\\n<li>Fix: Scroll effects were not working in cached content. (Note: Scroll effects are not supported in content that is lazy loaded after the initial page load, if lazy load is enabled.)<\\/li>\\n<li>Fix: Sticky elements were not working cached content. (Note: Sticky elements are not supported in content that is lazy loaded after the initial page load, if lazy load is enabled.)<\\/li>\\n<li>Fix: On some modules, certain box shadow styles may not work in cached content. (Note: These combinations of modules and box shadow styles are not supported in content that is lazy loaded after the initial page load, if lazy load is enabled.)<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.28 November 30, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: There may be styling issues when Divi Rocket is active but server-side caching is not enabled<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.27 November 20, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: There may be styling issues when Divi Rocket is active but server-side caching is not enabled.<\\/li>\\n<li>Miscellaneous minor changes<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.26 November 17, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix (2): Missing wrapping elements may cause styling problems in some cases<\\/li>\\n<li>Miscellaneous improvement(s)<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.25 November 13, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Missing wrapping elements may cause styling problems in some cases<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.24 November 12, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Shop module pagination was broken on Divi Rocket cached pages<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.23 November 5, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Improved compatibility with the Divi Bars plugin<\\/li>\\n<li>Improved compatibility with various other plugins that render Divi content in non-default places, such as Page Builder Everywhere, Divi Mega Pro, Divi Overlays, and possibly others<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.22 October 26, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Cached output for a certain kind of content contains unwanted &quot; characters<\\/li>\\n<li>Security fix: Disable direct access to header-extra and footer-extra cache files<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.21 October 1, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Admin menu item not visible when license key is not activated<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.20 September 28, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Styling missing for content in post content module<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.19 September 13, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Styling may be missing from content in the Post Content module when used in theme builder layouts<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.18 August 3, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Add additional debugging functionality<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.17 May 25, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Some parts of the &lt;html&gt; tag may be output twice<\\/li>\\n<li>Fix: Some CSS may be output after the closing tag<\\/li>\\n<li>Fix: Potential styling issue resulting from incorrect module order classes in cached content<\\/li>\\n<li>Fix: Some content on archive pages may be cached even though this is not currently supported<\\/li>\\n<li>Miscellaneous fix(es)<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.16 May 5, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Certain content may not load correctly if the containing section has an ID set and lazy loading is enabled<\\/li>\\n<li>Fix: Theme builder content styling may be missing on non-Divi posts, pages, and products<\\/li>\\n<li>Fix: Hide the default comments area when a comments module is present (per default Divi behavior)<\\/li>\\n<li>Fix: Global content may be rendered twice<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.15 April 8, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: incorrect rendering of some global modules<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.14 April 3, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: PHP notice related to Gzip Compression option<\\/li>\\n<li>Fix: Error related to a missing method<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.13 January 24,, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: WooCommerce products with non-Divi content may have duplicated product descriptions<\\/li>\\n<li>Fix: In some cases when the Divi theme builder is in use, a small amount of code may be shown to the user and\\/or there may be other problems which go away the cache is cleared<\\/li>\\n<li>Fix: Divi theme builder footer styling is not applied sometimes<\\/li>\\n<li>Fix: Syntax error referencing &#039;::&#039; in certain versions of PHP<\\/li>\\n<li>Enable optimization of InnoDB database tables (except with MySQL &lt; 5.7)<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.12 January 22, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Divi modules may not be styled correctly when server caching is active due to a problem with stylesheet ordering<\\/li>\\n<li>Fix: Styling issue in Divi Rocket settings page<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.11 January 9, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Certain JavaScript and CSS content may be output outside the closing html tag in some instances<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.10 January 8, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Missing module styling in certain cases on subsequent loads after the first load without a cached copy of the content<\\/li>\\n<\\/ul>\\n<p><strong>Change to potentially avoid issues with the Divi Rocket update functionality<\\/strong><\\/p>\\n<p><strong>Version 1.0.9 January 3, 2020<\\/strong><\\/p>\\n<ul>\\n<li>Fix: The Blog module and other post-based modules and\\/or shortcodes did not filter out content with certain non-public statuses (e.g. draft, future\\/scheduled) when being regenerated in the cache on an individual module basis (not on cache regeneration for the entire page, post, or product), resulting in this non-public content being displayed to site visitors<\\/li>\\n<li>Fix: Lazy loading may result in an infinite loop in the frontend JavaScript and may disrupt page scrolling<\\/li>\\n<li>Fix: Divi&#039;s static CSS file feature was not being fully disabled in certain instances where it should have been<\\/li>\\n<li>Fix: CSS output inline in Divi builder content by Divi Rocket server caching was causing problems with styling that relied on element order (due to the addition of an extra style element); this inline CSS is now being output to the head element or the footer instead<\\/li>\\n<li>Fix: Certain module scripts and\\/or styles were missing in some cases when the theme builder was in use<\\/li>\\n<li>Fix: A PHP notice was being output during cache generation (when such output was enabled, typically in debug mode)<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.8 December 30, 2019<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Unable to add module in the visual builder with Divi Rocket activated (and possibly other issues resulting from server caching page templates in contexts where caching is disabled or not supported)<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.7 December 26, 2019<\\/strong><\\/p>\\n<ul>\\n<li>Fix: Global modules missing from server cached content<\\/li>\\n<li>Fix: Changes to global library items may not be reflected in server cached content until the cache is cleared<\\/li>\\n<li>Fix: Server caching compatibility issue with Theme Builder in recent version(s) of Divi (may cause styling and\\/or other issues on page)<\\/li>\\n<li>Fix: Google Fonts used in Divi modules were not being loaded when server caching is enabled<\\/li>\\n<li>Fix: Loading animation may be shown indefinitely when lazy loading is enabled and the page, post, or product has fewer sections than the number of initial sections<\\/li>\\n<li>Fix: Server caching incompatibility with certain third-party Divi module(s), such as Smart Slider 3<\\/li>\\n<li>Fix: Fatal PHP error when server caching is enabled and certain third-party module(s) are used in the content<\\/li>\\n<li>Fix: Server caching incompatibility with certain third-party module(s) (such as Typewriter for Divi) caused by module scripts being output before other scripts in the footer<\\/li>\\n<li>Add setting to disable server caching for non-logged-in users in the Server Caching tab of Divi Rocket settings<\\/li>\\n<li>Improve handling of non-existent modules in content by the server caching engine (for example, when the plugin used to create the module is deactivated)<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.6 December 19, 2019<\\/strong><\\/p>\\n<ul>\\n<li>Add compatibility with Jetpack&#039;s image lazy loading feature<\\/li>\\n<li>Fix: Browser caching header was not sent for WEBP format images, TrueType fonts, or OpenType fonts<\\/li>\\n<li>Fix warning messages when trying to cache a theme builder section that is not in use<\\/li>\\n<li>Fix warning messages on 404 page<\\/li>\\n<li>Fix error related to certain types of non-Divi shortcodes<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.5 December 10, 2019<\\/strong><\\/p>\\n<ul>\\n<li>Fix: lazy loading breaks if section(s) are missing (such as due to being hidden)<\\/li>\\n<li>Add support for WP and Divi Icons Pro (1.1.4+)<\\/li>\\n<li>Fixes to improve compatibility with older versions of Divi 3<\\/li>\\n<li>Improve handling of references to non-existent modules in certain cases<\\/li>\\n<li>Fix\\/improve compatibility with Divi Library global layouts<\\/li>\\n<li>Fix: custom CSS in Divi page\\/post settings was not being output<\\/li>\\n<li>Fix: missing builder content wrapper elements on cached loads in certain situations<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.4 December 9, 2019<\\/strong><\\/p>\\n<ul>\\n<li>Fix: missing module styling after initial load when server side caching is enabled and lazy loading is not<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.3 December 6, 2019<\\/strong><\\/p>\\n<ul>\\n<li>Fixes conflict with certain versions of PHP that may cause sites to crash<\\/li>\\n<li>Various bug fixes and improvements<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.2 December 4, 2019<\\/strong><\\/p>\\n<ul>\\n<li>version release fix<\\/li>\\n<\\/ul>\\n<p><strong>Version 1.0.1 December 4, 2019<\\/strong><\\/p>\\n<ul>\\n<li>ix: Static CSS File Generation option was not fully disabled in Divi when Divi Rocket server caching in use<\\/li>\\n<li>Fix: Certain Divi Builder content was still visible after being set to hidden on all devices<\\/li>\\n<\\/ul>\\n<p><em>Note: In addition to the changes listed here, there may be other minor fixes and improvements that are not noted. For more information about this product, visit the <a href=\\\"https:\\/\\/wpzone.co\\/product\\/divi-rocket\\/\\\" target=\\\"_blank\\\">Divi Rocket product page<\\/a>.<\\/em><\\/p>\\n\"]}\";}','yes'),(24519,'ai1wm_secret_key','UwsuMpMruReY','yes'),(24526,'_site_transient_ai1wm_last_check_for_updates','1752344062','off'),(24527,'ai1wm_updater','a:0:{}','yes'),(24528,'ai1wm_status','a:2:{s:4:\"type\";s:8:\"download\";s:7:\"message\";s:353:\"<a href=\"https://thelomad.com/getmad.today/wp-content/ai1wm-backups/thelomad.com/getmad.today-20220916-180351-dx7w0l.wpress\" class=\"ai1wm-button-green ai1wm-emphasize ai1wm-button-download\" title=\"thelomad.com/getmad.today\" download=\"thelomad.com/getmad.today-20220916-180351-dx7w0l.wpress\"><span>Download thelomad.com/getmad.today</span><em>Size: 916 MB</em></a>\";}','yes'),(24620,'DiviRocket_rev_et_header_layout','190','yes'),(24621,'DiviRocket_rev_et_footer_layout','133','yes'),(24624,'DiviRocket_rev_et_theme_builder','17','yes'),(24625,'DiviRocket_rev_et_template','63','yes'),(25014,'_transient_ninja_forms_styles_form_5_styles','<style>\n\n        /* FORM STYLES */\n    \n        #nf-form-5-cont {\n                                            width: 100%!important                    }\n        #nf-form-5-cont .nf-row:nth-child(odd) {\n                                    background-color:00FFFFFF;\n                    }\n        #nf-form-5-cont .nf-response-msg {\n                                    background-color:#d8d8d8A6;\n                                            color:#211865;\n                                            font-size:22px;\n                                                    font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\nmargin: auto;\nwidth: 50%;\nmargin-left: 350px;\npadding: 27px\n                    }\n    </style>','yes'),(25015,'_transient_ninja_forms_styles_form_5_field_styles','<style>\n\n        /* FIELDS STYLES */\n    \n        .nf-form-content .nf-field-container #nf-field-35-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:12pt;\n                                            padding:8.5px;\n                                                    width: 440px                    }\n        .nf-form-content .nf-field-container #nf-field-36-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:12pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-39-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:12pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-37-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:12.5pt;\n                                            padding:7.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-40-wrap .nf-field-element .ninja-forms-field {\n                                            body {\n  color: #ffffff;\n}                    }\n        .nf-form-content .nf-field-container #nf-field-47-wrap {\n                                            lm-ignore-checkbox1                    }\n        .nf-form-content .nf-field-container #nf-field-47-wrap .nf-field-label label {\n                                            lm-ignore-checkbox2                    }\n        .nf-form-content .nf-field-container #nf-field-47-wrap .nf-field-element .ninja-forms-field {\n                                    background-color:#ffffff;\n                                            border-style:solid;\n                                            border-color:#000000;\n                                                    lm-ignore-checkbox3                    }\n        .nf-form-content .nf-field-container #nf-field-47-wrap .nf-field-element li {\n                                            lm-ignore-checkbox4                    }\n        .nf-form-content .nf-field-container #nf-field-47-wrap .nf-field-element li label {\n                                            lm-ignore-checkbox4                    }\n        .nf-form-content .nf-field-container #nf-field-47-wrap .nf-field-element li .nf-element {\n                                    font-size:12.5pt;\n                                            padding:5px;\n                                                    lm-ignore-checkbox5                    }\n        .nf-form-content .nf-field-container #nf-field-38-wrap .nf-field-element .ninja-forms-field {\n                                            background: #fff !important;\ncolor: #211865 !important;\nfont-size: 17px !important;\nfont-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\npadding: 15px 25px !important;\ntext-transform: uppercase !important;\nfont-weight: 400 !important;\nfloat:right !important;                    }\n        .nf-form-content .nf-field-container #nf-field-38-wrap .nf-field-element .ninja-forms-field:hover {\n                                    background-color:#211865;\n                                            color:#ffffff;\n                                                    \n                    }\n    </style>','yes'),(25053,'DiviRocket_rev_et_body_layout','175','yes'),(25715,'_transient_ninja_forms_styles_form_8_styles','<style>\n\n        /* FORM STYLES */\n    \n        #nf-form-8-cont {\n                                            width: 50%!important                    }\n        #nf-form-8-cont .nf-row:nth-child(odd) {\n                                    background-color:00FFFFFF;\n                    }\n        #nf-form-8-cont .nf-response-msg {\n                                    background-color:#d8d8d8A6;\n                                            color:#211865;\n                                            font-size:22px;\n                                                    font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\nmargin: auto;\nwidth: 50%;\nmargin-left: 350px;\npadding: 27px\n                    }\n    </style>','yes'),(25716,'_transient_ninja_forms_styles_form_8_field_styles','<style>\n\n        /* FIELDS STYLES */\n    \n        .nf-form-content .nf-field-container #nf-field-60-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:12pt;\n                                            padding:8.5px;\n                            }\n        .nf-form-content .nf-field-container #nf-field-61-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:12pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-64-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:12pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-62-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:12.5pt;\n                                            padding:7.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-65-wrap .nf-field-element .ninja-forms-field {\n                                            body {\n  color: #ffffff;\n}                    }\n        .nf-form-content .nf-field-container #nf-field-66-wrap {\n                                            lm-ignore-checkbox1                    }\n        .nf-form-content .nf-field-container #nf-field-66-wrap .nf-field-label label {\n                                            lm-ignore-checkbox2                    }\n        .nf-form-content .nf-field-container #nf-field-66-wrap .nf-field-element .ninja-forms-field {\n                                    background-color:#ffffff;\n                                            border-style:solid;\n                                            border-color:#000000;\n                                                    lm-ignore-checkbox3                    }\n        .nf-form-content .nf-field-container #nf-field-66-wrap .nf-field-element li {\n                                            lm-ignore-checkbox4                    }\n        .nf-form-content .nf-field-container #nf-field-66-wrap .nf-field-element li label {\n                                            lm-ignore-checkbox4                    }\n        .nf-form-content .nf-field-container #nf-field-66-wrap .nf-field-element li .nf-element {\n                                    font-size:12.5pt;\n                                            padding:5px;\n                                                    lm-ignore-checkbox5                    }\n        .nf-form-content .nf-field-container #nf-field-63-wrap .nf-field-element .ninja-forms-field {\n                                            background: #fff !important;\ncolor: #211865 !important;\nfont-size: 17px !important;\nfont-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\npadding: 15px 25px !important;\ntext-transform: uppercase !important;\nfont-weight: 400 !important;\nfloat:right !important;                    }\n        .nf-form-content .nf-field-container #nf-field-63-wrap .nf-field-element .ninja-forms-field:hover {\n                                    background-color:#211865;\n                                            color:#ffffff;\n                                                    \n                    }\n    </style>','yes'),(25908,'_transient_ninja_forms_styles_form_1_styles','<style>\n\n        /* FORM STYLES */\n    \n        #nf-form-1-cont .nf-response-msg {\n                                    background-color:#d8d8d8A6;\n                                            color:#211865;\n                                            font-size:22px;\n                                                    font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\nmargin: auto;\nwidth: 50%;\nmargin-left: 350px;\npadding: 27px\n                    }\n    </style>','yes'),(25909,'_transient_ninja_forms_styles_form_1_field_styles','<style>\n\n        /* FIELDS STYLES */\n    \n        .nf-form-content .nf-field-container #nf-field-2-wrap {\n                                    width:560px;\n                                                    margin-left: 255px;                    }\n        .nf-form-content .nf-field-container #nf-field-2-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-3-wrap {\n                                    width:560px;\n                                                    margin-left: 255px;                    }\n        .nf-form-content .nf-field-container #nf-field-3-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-4-wrap {\n                                    width:560px;\n                                                    margin-left: 255px;                    }\n        .nf-form-content .nf-field-container #nf-field-4-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-5-wrap {\n                                    width:560px;\n                                                    margin-left: 255px;                    }\n        .nf-form-content .nf-field-container #nf-field-5-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-6-wrap {\n                                    width:560px;\n                                                    margin-left: 255px;                    }\n        .nf-form-content .nf-field-container #nf-field-6-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-6-wrap .nf-field-element li .nf-element {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-8-wrap {\n                                    width:560px;\n                                                    margin-left: 255px;                    }\n        .nf-form-content .nf-field-container #nf-field-8-wrap .nf-field-element li {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-8-wrap .nf-field-element li .nf-element {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-10-wrap {\n                                    width:560px;\n                                                    margin-left: 255px;                    }\n        .nf-form-content .nf-field-container #nf-field-10-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:12.5pt;\n                                            padding:7.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-11-wrap {\n                                            margin-left: 255px;                    }\n        .nf-form-content .nf-field-container #nf-field-12-wrap {\n                                    width:560px;\n                                                    margin-left: 255px;                    }\n        .nf-form-content .nf-field-container #nf-field-13-wrap {\n                                            margin-left: 255px;                    }\n    </style>','yes'),(25922,'layout_category_children','a:1:{i:5;a:1:{i:0;i:6;}}','yes'),(26539,'thelawofFf8xIK001ZH9BTRblogid_1wprime_1','a:6:{s:6:\"blogid\";i:1;s:4:\"hash\";s:64:\"d3e236cae8433a7e5b5462bc326f70a07bcd67ab6c76d8daf3f5f48f4c56eb4d\";s:13:\"export_option\";s:20:\"complete_export_mode\";s:10:\"site_title\";s:39:\"The Law Offices of Melissa A. Day, PLLC\";s:18:\"creation_timestamp\";i:1661947485;s:13:\"include_users\";b:1;}','yes'),(26540,'d3e236cae8433a7e5b5462bc326f70a07bcd67ab6c76d8daf3f5f48f4c56eb4d','1/thelawofFf8xIK001ZH9BTRblogid_1.wprime','yes'),(26541,'thelawofI9MSWXij4z2jlIkblogid_1wprime_1','a:6:{s:6:\"blogid\";i:1;s:4:\"hash\";s:64:\"60184b834f95ad620259ceba936af888de33386870e1929f40ee6a7a276332ca\";s:13:\"export_option\";s:20:\"complete_export_mode\";s:10:\"site_title\";s:39:\"The Law Offices of Melissa A. Day, PLLC\";s:18:\"creation_timestamp\";i:1663701687;s:13:\"include_users\";b:1;}','yes'),(26542,'60184b834f95ad620259ceba936af888de33386870e1929f40ee6a7a276332ca','1/thelawofI9MSWXij4z2jlIkblogid_1.wprime','yes'),(26543,'thelawofFJcu38txmJ274UZblogid_1wprime_1','a:6:{s:6:\"blogid\";i:1;s:4:\"hash\";s:64:\"1943761d7f2ad18991f9c7b372023df5d0f9af23924033b770e48217f7166c43\";s:13:\"export_option\";s:20:\"complete_export_mode\";s:10:\"site_title\";s:39:\"The Law Offices of Melissa A. Day, PLLC\";s:18:\"creation_timestamp\";i:1663938377;s:13:\"include_users\";b:1;}','yes'),(26544,'1943761d7f2ad18991f9c7b372023df5d0f9af23924033b770e48217f7166c43','1/thelawofFJcu38txmJ274UZblogid_1.wprime','yes'),(26545,'a853877ece69ded1b91677d4e3670102555a41c2ae1f2b023c5c4ce4e099288f','1/thelawofczJ2zyUH8jDQgunblogid_1.wprime','yes'),(26547,'thelawofczJ2zyUH8jDQgunblogid_1wprime_1','a:6:{s:6:\"blogid\";i:1;s:4:\"hash\";s:64:\"a853877ece69ded1b91677d4e3670102555a41c2ae1f2b023c5c4ce4e099288f\";s:13:\"export_option\";s:20:\"complete_export_mode\";s:10:\"site_title\";s:39:\"The Law Offices of Melissa A. Day, PLLC\";s:18:\"creation_timestamp\";i:1664288511;s:13:\"include_users\";b:1;}','yes'),(40829,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.8.1\";s:5:\"files\";a:536:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:21:\"button/editor-rtl.css\";i:29;s:25:\"button/editor-rtl.min.css\";i:30;s:17:\"button/editor.css\";i:31;s:21:\"button/editor.min.css\";i:32;s:20:\"button/style-rtl.css\";i:33;s:24:\"button/style-rtl.min.css\";i:34;s:16:\"button/style.css\";i:35;s:20:\"button/style.min.css\";i:36;s:22:\"buttons/editor-rtl.css\";i:37;s:26:\"buttons/editor-rtl.min.css\";i:38;s:18:\"buttons/editor.css\";i:39;s:22:\"buttons/editor.min.css\";i:40;s:21:\"buttons/style-rtl.css\";i:41;s:25:\"buttons/style-rtl.min.css\";i:42;s:17:\"buttons/style.css\";i:43;s:21:\"buttons/style.min.css\";i:44;s:22:\"calendar/style-rtl.css\";i:45;s:26:\"calendar/style-rtl.min.css\";i:46;s:18:\"calendar/style.css\";i:47;s:22:\"calendar/style.min.css\";i:48;s:25:\"categories/editor-rtl.css\";i:49;s:29:\"categories/editor-rtl.min.css\";i:50;s:21:\"categories/editor.css\";i:51;s:25:\"categories/editor.min.css\";i:52;s:24:\"categories/style-rtl.css\";i:53;s:28:\"categories/style-rtl.min.css\";i:54;s:20:\"categories/style.css\";i:55;s:24:\"categories/style.min.css\";i:56;s:19:\"code/editor-rtl.css\";i:57;s:23:\"code/editor-rtl.min.css\";i:58;s:15:\"code/editor.css\";i:59;s:19:\"code/editor.min.css\";i:60;s:18:\"code/style-rtl.css\";i:61;s:22:\"code/style-rtl.min.css\";i:62;s:14:\"code/style.css\";i:63;s:18:\"code/style.min.css\";i:64;s:18:\"code/theme-rtl.css\";i:65;s:22:\"code/theme-rtl.min.css\";i:66;s:14:\"code/theme.css\";i:67;s:18:\"code/theme.min.css\";i:68;s:22:\"columns/editor-rtl.css\";i:69;s:26:\"columns/editor-rtl.min.css\";i:70;s:18:\"columns/editor.css\";i:71;s:22:\"columns/editor.min.css\";i:72;s:21:\"columns/style-rtl.css\";i:73;s:25:\"columns/style-rtl.min.css\";i:74;s:17:\"columns/style.css\";i:75;s:21:\"columns/style.min.css\";i:76;s:33:\"comment-author-name/style-rtl.css\";i:77;s:37:\"comment-author-name/style-rtl.min.css\";i:78;s:29:\"comment-author-name/style.css\";i:79;s:33:\"comment-author-name/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:26:\"comment-date/style-rtl.css\";i:85;s:30:\"comment-date/style-rtl.min.css\";i:86;s:22:\"comment-date/style.css\";i:87;s:26:\"comment-date/style.min.css\";i:88;s:31:\"comment-edit-link/style-rtl.css\";i:89;s:35:\"comment-edit-link/style-rtl.min.css\";i:90;s:27:\"comment-edit-link/style.css\";i:91;s:31:\"comment-edit-link/style.min.css\";i:92;s:32:\"comment-reply-link/style-rtl.css\";i:93;s:36:\"comment-reply-link/style-rtl.min.css\";i:94;s:28:\"comment-reply-link/style.css\";i:95;s:32:\"comment-reply-link/style.min.css\";i:96;s:30:\"comment-template/style-rtl.css\";i:97;s:34:\"comment-template/style-rtl.min.css\";i:98;s:26:\"comment-template/style.css\";i:99;s:30:\"comment-template/style.min.css\";i:100;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:101;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:102;s:38:\"comments-pagination-numbers/editor.css\";i:103;s:42:\"comments-pagination-numbers/editor.min.css\";i:104;s:34:\"comments-pagination/editor-rtl.css\";i:105;s:38:\"comments-pagination/editor-rtl.min.css\";i:106;s:30:\"comments-pagination/editor.css\";i:107;s:34:\"comments-pagination/editor.min.css\";i:108;s:33:\"comments-pagination/style-rtl.css\";i:109;s:37:\"comments-pagination/style-rtl.min.css\";i:110;s:29:\"comments-pagination/style.css\";i:111;s:33:\"comments-pagination/style.min.css\";i:112;s:29:\"comments-title/editor-rtl.css\";i:113;s:33:\"comments-title/editor-rtl.min.css\";i:114;s:25:\"comments-title/editor.css\";i:115;s:29:\"comments-title/editor.min.css\";i:116;s:23:\"comments/editor-rtl.css\";i:117;s:27:\"comments/editor-rtl.min.css\";i:118;s:19:\"comments/editor.css\";i:119;s:23:\"comments/editor.min.css\";i:120;s:22:\"comments/style-rtl.css\";i:121;s:26:\"comments/style-rtl.min.css\";i:122;s:18:\"comments/style.css\";i:123;s:22:\"comments/style.min.css\";i:124;s:20:\"cover/editor-rtl.css\";i:125;s:24:\"cover/editor-rtl.min.css\";i:126;s:16:\"cover/editor.css\";i:127;s:20:\"cover/editor.min.css\";i:128;s:19:\"cover/style-rtl.css\";i:129;s:23:\"cover/style-rtl.min.css\";i:130;s:15:\"cover/style.css\";i:131;s:19:\"cover/style.min.css\";i:132;s:22:\"details/editor-rtl.css\";i:133;s:26:\"details/editor-rtl.min.css\";i:134;s:18:\"details/editor.css\";i:135;s:22:\"details/editor.min.css\";i:136;s:21:\"details/style-rtl.css\";i:137;s:25:\"details/style-rtl.min.css\";i:138;s:17:\"details/style.css\";i:139;s:21:\"details/style.min.css\";i:140;s:20:\"embed/editor-rtl.css\";i:141;s:24:\"embed/editor-rtl.min.css\";i:142;s:16:\"embed/editor.css\";i:143;s:20:\"embed/editor.min.css\";i:144;s:19:\"embed/style-rtl.css\";i:145;s:23:\"embed/style-rtl.min.css\";i:146;s:15:\"embed/style.css\";i:147;s:19:\"embed/style.min.css\";i:148;s:19:\"embed/theme-rtl.css\";i:149;s:23:\"embed/theme-rtl.min.css\";i:150;s:15:\"embed/theme.css\";i:151;s:19:\"embed/theme.min.css\";i:152;s:19:\"file/editor-rtl.css\";i:153;s:23:\"file/editor-rtl.min.css\";i:154;s:15:\"file/editor.css\";i:155;s:19:\"file/editor.min.css\";i:156;s:18:\"file/style-rtl.css\";i:157;s:22:\"file/style-rtl.min.css\";i:158;s:14:\"file/style.css\";i:159;s:18:\"file/style.min.css\";i:160;s:23:\"footnotes/style-rtl.css\";i:161;s:27:\"footnotes/style-rtl.min.css\";i:162;s:19:\"footnotes/style.css\";i:163;s:23:\"footnotes/style.min.css\";i:164;s:23:\"freeform/editor-rtl.css\";i:165;s:27:\"freeform/editor-rtl.min.css\";i:166;s:19:\"freeform/editor.css\";i:167;s:23:\"freeform/editor.min.css\";i:168;s:22:\"gallery/editor-rtl.css\";i:169;s:26:\"gallery/editor-rtl.min.css\";i:170;s:18:\"gallery/editor.css\";i:171;s:22:\"gallery/editor.min.css\";i:172;s:21:\"gallery/style-rtl.css\";i:173;s:25:\"gallery/style-rtl.min.css\";i:174;s:17:\"gallery/style.css\";i:175;s:21:\"gallery/style.min.css\";i:176;s:21:\"gallery/theme-rtl.css\";i:177;s:25:\"gallery/theme-rtl.min.css\";i:178;s:17:\"gallery/theme.css\";i:179;s:21:\"gallery/theme.min.css\";i:180;s:20:\"group/editor-rtl.css\";i:181;s:24:\"group/editor-rtl.min.css\";i:182;s:16:\"group/editor.css\";i:183;s:20:\"group/editor.min.css\";i:184;s:19:\"group/style-rtl.css\";i:185;s:23:\"group/style-rtl.min.css\";i:186;s:15:\"group/style.css\";i:187;s:19:\"group/style.min.css\";i:188;s:19:\"group/theme-rtl.css\";i:189;s:23:\"group/theme-rtl.min.css\";i:190;s:15:\"group/theme.css\";i:191;s:19:\"group/theme.min.css\";i:192;s:21:\"heading/style-rtl.css\";i:193;s:25:\"heading/style-rtl.min.css\";i:194;s:17:\"heading/style.css\";i:195;s:21:\"heading/style.min.css\";i:196;s:19:\"html/editor-rtl.css\";i:197;s:23:\"html/editor-rtl.min.css\";i:198;s:15:\"html/editor.css\";i:199;s:19:\"html/editor.min.css\";i:200;s:20:\"image/editor-rtl.css\";i:201;s:24:\"image/editor-rtl.min.css\";i:202;s:16:\"image/editor.css\";i:203;s:20:\"image/editor.min.css\";i:204;s:19:\"image/style-rtl.css\";i:205;s:23:\"image/style-rtl.min.css\";i:206;s:15:\"image/style.css\";i:207;s:19:\"image/style.min.css\";i:208;s:19:\"image/theme-rtl.css\";i:209;s:23:\"image/theme-rtl.min.css\";i:210;s:15:\"image/theme.css\";i:211;s:19:\"image/theme.min.css\";i:212;s:29:\"latest-comments/style-rtl.css\";i:213;s:33:\"latest-comments/style-rtl.min.css\";i:214;s:25:\"latest-comments/style.css\";i:215;s:29:\"latest-comments/style.min.css\";i:216;s:27:\"latest-posts/editor-rtl.css\";i:217;s:31:\"latest-posts/editor-rtl.min.css\";i:218;s:23:\"latest-posts/editor.css\";i:219;s:27:\"latest-posts/editor.min.css\";i:220;s:26:\"latest-posts/style-rtl.css\";i:221;s:30:\"latest-posts/style-rtl.min.css\";i:222;s:22:\"latest-posts/style.css\";i:223;s:26:\"latest-posts/style.min.css\";i:224;s:18:\"list/style-rtl.css\";i:225;s:22:\"list/style-rtl.min.css\";i:226;s:14:\"list/style.css\";i:227;s:18:\"list/style.min.css\";i:228;s:22:\"loginout/style-rtl.css\";i:229;s:26:\"loginout/style-rtl.min.css\";i:230;s:18:\"loginout/style.css\";i:231;s:22:\"loginout/style.min.css\";i:232;s:25:\"media-text/editor-rtl.css\";i:233;s:29:\"media-text/editor-rtl.min.css\";i:234;s:21:\"media-text/editor.css\";i:235;s:25:\"media-text/editor.min.css\";i:236;s:24:\"media-text/style-rtl.css\";i:237;s:28:\"media-text/style-rtl.min.css\";i:238;s:20:\"media-text/style.css\";i:239;s:24:\"media-text/style.min.css\";i:240;s:19:\"more/editor-rtl.css\";i:241;s:23:\"more/editor-rtl.min.css\";i:242;s:15:\"more/editor.css\";i:243;s:19:\"more/editor.min.css\";i:244;s:30:\"navigation-link/editor-rtl.css\";i:245;s:34:\"navigation-link/editor-rtl.min.css\";i:246;s:26:\"navigation-link/editor.css\";i:247;s:30:\"navigation-link/editor.min.css\";i:248;s:29:\"navigation-link/style-rtl.css\";i:249;s:33:\"navigation-link/style-rtl.min.css\";i:250;s:25:\"navigation-link/style.css\";i:251;s:29:\"navigation-link/style.min.css\";i:252;s:33:\"navigation-submenu/editor-rtl.css\";i:253;s:37:\"navigation-submenu/editor-rtl.min.css\";i:254;s:29:\"navigation-submenu/editor.css\";i:255;s:33:\"navigation-submenu/editor.min.css\";i:256;s:25:\"navigation/editor-rtl.css\";i:257;s:29:\"navigation/editor-rtl.min.css\";i:258;s:21:\"navigation/editor.css\";i:259;s:25:\"navigation/editor.min.css\";i:260;s:24:\"navigation/style-rtl.css\";i:261;s:28:\"navigation/style-rtl.min.css\";i:262;s:20:\"navigation/style.css\";i:263;s:24:\"navigation/style.min.css\";i:264;s:23:\"nextpage/editor-rtl.css\";i:265;s:27:\"nextpage/editor-rtl.min.css\";i:266;s:19:\"nextpage/editor.css\";i:267;s:23:\"nextpage/editor.min.css\";i:268;s:24:\"page-list/editor-rtl.css\";i:269;s:28:\"page-list/editor-rtl.min.css\";i:270;s:20:\"page-list/editor.css\";i:271;s:24:\"page-list/editor.min.css\";i:272;s:23:\"page-list/style-rtl.css\";i:273;s:27:\"page-list/style-rtl.min.css\";i:274;s:19:\"page-list/style.css\";i:275;s:23:\"page-list/style.min.css\";i:276;s:24:\"paragraph/editor-rtl.css\";i:277;s:28:\"paragraph/editor-rtl.min.css\";i:278;s:20:\"paragraph/editor.css\";i:279;s:24:\"paragraph/editor.min.css\";i:280;s:23:\"paragraph/style-rtl.css\";i:281;s:27:\"paragraph/style-rtl.min.css\";i:282;s:19:\"paragraph/style.css\";i:283;s:23:\"paragraph/style.min.css\";i:284;s:35:\"post-author-biography/style-rtl.css\";i:285;s:39:\"post-author-biography/style-rtl.min.css\";i:286;s:31:\"post-author-biography/style.css\";i:287;s:35:\"post-author-biography/style.min.css\";i:288;s:30:\"post-author-name/style-rtl.css\";i:289;s:34:\"post-author-name/style-rtl.min.css\";i:290;s:26:\"post-author-name/style.css\";i:291;s:30:\"post-author-name/style.min.css\";i:292;s:26:\"post-author/editor-rtl.css\";i:293;s:30:\"post-author/editor-rtl.min.css\";i:294;s:22:\"post-author/editor.css\";i:295;s:26:\"post-author/editor.min.css\";i:296;s:25:\"post-author/style-rtl.css\";i:297;s:29:\"post-author/style-rtl.min.css\";i:298;s:21:\"post-author/style.css\";i:299;s:25:\"post-author/style.min.css\";i:300;s:33:\"post-comments-form/editor-rtl.css\";i:301;s:37:\"post-comments-form/editor-rtl.min.css\";i:302;s:29:\"post-comments-form/editor.css\";i:303;s:33:\"post-comments-form/editor.min.css\";i:304;s:32:\"post-comments-form/style-rtl.css\";i:305;s:36:\"post-comments-form/style-rtl.min.css\";i:306;s:28:\"post-comments-form/style.css\";i:307;s:32:\"post-comments-form/style.min.css\";i:308;s:26:\"post-content/style-rtl.css\";i:309;s:30:\"post-content/style-rtl.min.css\";i:310;s:22:\"post-content/style.css\";i:311;s:26:\"post-content/style.min.css\";i:312;s:23:\"post-date/style-rtl.css\";i:313;s:27:\"post-date/style-rtl.min.css\";i:314;s:19:\"post-date/style.css\";i:315;s:23:\"post-date/style.min.css\";i:316;s:27:\"post-excerpt/editor-rtl.css\";i:317;s:31:\"post-excerpt/editor-rtl.min.css\";i:318;s:23:\"post-excerpt/editor.css\";i:319;s:27:\"post-excerpt/editor.min.css\";i:320;s:26:\"post-excerpt/style-rtl.css\";i:321;s:30:\"post-excerpt/style-rtl.min.css\";i:322;s:22:\"post-excerpt/style.css\";i:323;s:26:\"post-excerpt/style.min.css\";i:324;s:34:\"post-featured-image/editor-rtl.css\";i:325;s:38:\"post-featured-image/editor-rtl.min.css\";i:326;s:30:\"post-featured-image/editor.css\";i:327;s:34:\"post-featured-image/editor.min.css\";i:328;s:33:\"post-featured-image/style-rtl.css\";i:329;s:37:\"post-featured-image/style-rtl.min.css\";i:330;s:29:\"post-featured-image/style.css\";i:331;s:33:\"post-featured-image/style.min.css\";i:332;s:34:\"post-navigation-link/style-rtl.css\";i:333;s:38:\"post-navigation-link/style-rtl.min.css\";i:334;s:30:\"post-navigation-link/style.css\";i:335;s:34:\"post-navigation-link/style.min.css\";i:336;s:27:\"post-template/style-rtl.css\";i:337;s:31:\"post-template/style-rtl.min.css\";i:338;s:23:\"post-template/style.css\";i:339;s:27:\"post-template/style.min.css\";i:340;s:24:\"post-terms/style-rtl.css\";i:341;s:28:\"post-terms/style-rtl.min.css\";i:342;s:20:\"post-terms/style.css\";i:343;s:24:\"post-terms/style.min.css\";i:344;s:24:\"post-title/style-rtl.css\";i:345;s:28:\"post-title/style-rtl.min.css\";i:346;s:20:\"post-title/style.css\";i:347;s:24:\"post-title/style.min.css\";i:348;s:26:\"preformatted/style-rtl.css\";i:349;s:30:\"preformatted/style-rtl.min.css\";i:350;s:22:\"preformatted/style.css\";i:351;s:26:\"preformatted/style.min.css\";i:352;s:24:\"pullquote/editor-rtl.css\";i:353;s:28:\"pullquote/editor-rtl.min.css\";i:354;s:20:\"pullquote/editor.css\";i:355;s:24:\"pullquote/editor.min.css\";i:356;s:23:\"pullquote/style-rtl.css\";i:357;s:27:\"pullquote/style-rtl.min.css\";i:358;s:19:\"pullquote/style.css\";i:359;s:23:\"pullquote/style.min.css\";i:360;s:23:\"pullquote/theme-rtl.css\";i:361;s:27:\"pullquote/theme-rtl.min.css\";i:362;s:19:\"pullquote/theme.css\";i:363;s:23:\"pullquote/theme.min.css\";i:364;s:39:\"query-pagination-numbers/editor-rtl.css\";i:365;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:366;s:35:\"query-pagination-numbers/editor.css\";i:367;s:39:\"query-pagination-numbers/editor.min.css\";i:368;s:31:\"query-pagination/editor-rtl.css\";i:369;s:35:\"query-pagination/editor-rtl.min.css\";i:370;s:27:\"query-pagination/editor.css\";i:371;s:31:\"query-pagination/editor.min.css\";i:372;s:30:\"query-pagination/style-rtl.css\";i:373;s:34:\"query-pagination/style-rtl.min.css\";i:374;s:26:\"query-pagination/style.css\";i:375;s:30:\"query-pagination/style.min.css\";i:376;s:25:\"query-title/style-rtl.css\";i:377;s:29:\"query-title/style-rtl.min.css\";i:378;s:21:\"query-title/style.css\";i:379;s:25:\"query-title/style.min.css\";i:380;s:25:\"query-total/style-rtl.css\";i:381;s:29:\"query-total/style-rtl.min.css\";i:382;s:21:\"query-total/style.css\";i:383;s:25:\"query-total/style.min.css\";i:384;s:20:\"query/editor-rtl.css\";i:385;s:24:\"query/editor-rtl.min.css\";i:386;s:16:\"query/editor.css\";i:387;s:20:\"query/editor.min.css\";i:388;s:19:\"quote/style-rtl.css\";i:389;s:23:\"quote/style-rtl.min.css\";i:390;s:15:\"quote/style.css\";i:391;s:19:\"quote/style.min.css\";i:392;s:19:\"quote/theme-rtl.css\";i:393;s:23:\"quote/theme-rtl.min.css\";i:394;s:15:\"quote/theme.css\";i:395;s:19:\"quote/theme.min.css\";i:396;s:23:\"read-more/style-rtl.css\";i:397;s:27:\"read-more/style-rtl.min.css\";i:398;s:19:\"read-more/style.css\";i:399;s:23:\"read-more/style.min.css\";i:400;s:18:\"rss/editor-rtl.css\";i:401;s:22:\"rss/editor-rtl.min.css\";i:402;s:14:\"rss/editor.css\";i:403;s:18:\"rss/editor.min.css\";i:404;s:17:\"rss/style-rtl.css\";i:405;s:21:\"rss/style-rtl.min.css\";i:406;s:13:\"rss/style.css\";i:407;s:17:\"rss/style.min.css\";i:408;s:21:\"search/editor-rtl.css\";i:409;s:25:\"search/editor-rtl.min.css\";i:410;s:17:\"search/editor.css\";i:411;s:21:\"search/editor.min.css\";i:412;s:20:\"search/style-rtl.css\";i:413;s:24:\"search/style-rtl.min.css\";i:414;s:16:\"search/style.css\";i:415;s:20:\"search/style.min.css\";i:416;s:20:\"search/theme-rtl.css\";i:417;s:24:\"search/theme-rtl.min.css\";i:418;s:16:\"search/theme.css\";i:419;s:20:\"search/theme.min.css\";i:420;s:24:\"separator/editor-rtl.css\";i:421;s:28:\"separator/editor-rtl.min.css\";i:422;s:20:\"separator/editor.css\";i:423;s:24:\"separator/editor.min.css\";i:424;s:23:\"separator/style-rtl.css\";i:425;s:27:\"separator/style-rtl.min.css\";i:426;s:19:\"separator/style.css\";i:427;s:23:\"separator/style.min.css\";i:428;s:23:\"separator/theme-rtl.css\";i:429;s:27:\"separator/theme-rtl.min.css\";i:430;s:19:\"separator/theme.css\";i:431;s:23:\"separator/theme.min.css\";i:432;s:24:\"shortcode/editor-rtl.css\";i:433;s:28:\"shortcode/editor-rtl.min.css\";i:434;s:20:\"shortcode/editor.css\";i:435;s:24:\"shortcode/editor.min.css\";i:436;s:24:\"site-logo/editor-rtl.css\";i:437;s:28:\"site-logo/editor-rtl.min.css\";i:438;s:20:\"site-logo/editor.css\";i:439;s:24:\"site-logo/editor.min.css\";i:440;s:23:\"site-logo/style-rtl.css\";i:441;s:27:\"site-logo/style-rtl.min.css\";i:442;s:19:\"site-logo/style.css\";i:443;s:23:\"site-logo/style.min.css\";i:444;s:27:\"site-tagline/editor-rtl.css\";i:445;s:31:\"site-tagline/editor-rtl.min.css\";i:446;s:23:\"site-tagline/editor.css\";i:447;s:27:\"site-tagline/editor.min.css\";i:448;s:26:\"site-tagline/style-rtl.css\";i:449;s:30:\"site-tagline/style-rtl.min.css\";i:450;s:22:\"site-tagline/style.css\";i:451;s:26:\"site-tagline/style.min.css\";i:452;s:25:\"site-title/editor-rtl.css\";i:453;s:29:\"site-title/editor-rtl.min.css\";i:454;s:21:\"site-title/editor.css\";i:455;s:25:\"site-title/editor.min.css\";i:456;s:24:\"site-title/style-rtl.css\";i:457;s:28:\"site-title/style-rtl.min.css\";i:458;s:20:\"site-title/style.css\";i:459;s:24:\"site-title/style.min.css\";i:460;s:26:\"social-link/editor-rtl.css\";i:461;s:30:\"social-link/editor-rtl.min.css\";i:462;s:22:\"social-link/editor.css\";i:463;s:26:\"social-link/editor.min.css\";i:464;s:27:\"social-links/editor-rtl.css\";i:465;s:31:\"social-links/editor-rtl.min.css\";i:466;s:23:\"social-links/editor.css\";i:467;s:27:\"social-links/editor.min.css\";i:468;s:26:\"social-links/style-rtl.css\";i:469;s:30:\"social-links/style-rtl.min.css\";i:470;s:22:\"social-links/style.css\";i:471;s:26:\"social-links/style.min.css\";i:472;s:21:\"spacer/editor-rtl.css\";i:473;s:25:\"spacer/editor-rtl.min.css\";i:474;s:17:\"spacer/editor.css\";i:475;s:21:\"spacer/editor.min.css\";i:476;s:20:\"spacer/style-rtl.css\";i:477;s:24:\"spacer/style-rtl.min.css\";i:478;s:16:\"spacer/style.css\";i:479;s:20:\"spacer/style.min.css\";i:480;s:20:\"table/editor-rtl.css\";i:481;s:24:\"table/editor-rtl.min.css\";i:482;s:16:\"table/editor.css\";i:483;s:20:\"table/editor.min.css\";i:484;s:19:\"table/style-rtl.css\";i:485;s:23:\"table/style-rtl.min.css\";i:486;s:15:\"table/style.css\";i:487;s:19:\"table/style.min.css\";i:488;s:19:\"table/theme-rtl.css\";i:489;s:23:\"table/theme-rtl.min.css\";i:490;s:15:\"table/theme.css\";i:491;s:19:\"table/theme.min.css\";i:492;s:24:\"tag-cloud/editor-rtl.css\";i:493;s:28:\"tag-cloud/editor-rtl.min.css\";i:494;s:20:\"tag-cloud/editor.css\";i:495;s:24:\"tag-cloud/editor.min.css\";i:496;s:23:\"tag-cloud/style-rtl.css\";i:497;s:27:\"tag-cloud/style-rtl.min.css\";i:498;s:19:\"tag-cloud/style.css\";i:499;s:23:\"tag-cloud/style.min.css\";i:500;s:28:\"template-part/editor-rtl.css\";i:501;s:32:\"template-part/editor-rtl.min.css\";i:502;s:24:\"template-part/editor.css\";i:503;s:28:\"template-part/editor.min.css\";i:504;s:27:\"template-part/theme-rtl.css\";i:505;s:31:\"template-part/theme-rtl.min.css\";i:506;s:23:\"template-part/theme.css\";i:507;s:27:\"template-part/theme.min.css\";i:508;s:30:\"term-description/style-rtl.css\";i:509;s:34:\"term-description/style-rtl.min.css\";i:510;s:26:\"term-description/style.css\";i:511;s:30:\"term-description/style.min.css\";i:512;s:27:\"text-columns/editor-rtl.css\";i:513;s:31:\"text-columns/editor-rtl.min.css\";i:514;s:23:\"text-columns/editor.css\";i:515;s:27:\"text-columns/editor.min.css\";i:516;s:26:\"text-columns/style-rtl.css\";i:517;s:30:\"text-columns/style-rtl.min.css\";i:518;s:22:\"text-columns/style.css\";i:519;s:26:\"text-columns/style.min.css\";i:520;s:19:\"verse/style-rtl.css\";i:521;s:23:\"verse/style-rtl.min.css\";i:522;s:15:\"verse/style.css\";i:523;s:19:\"verse/style.min.css\";i:524;s:20:\"video/editor-rtl.css\";i:525;s:24:\"video/editor-rtl.min.css\";i:526;s:16:\"video/editor.css\";i:527;s:20:\"video/editor.min.css\";i:528;s:19:\"video/style-rtl.css\";i:529;s:23:\"video/style-rtl.min.css\";i:530;s:15:\"video/style.css\";i:531;s:19:\"video/style.min.css\";i:532;s:19:\"video/theme-rtl.css\";i:533;s:23:\"video/theme-rtl.min.css\";i:534;s:15:\"video/theme.css\";i:535;s:19:\"video/theme.min.css\";}}','yes'),(45976,'wp_attachment_pages_enabled','1','yes'),(65729,'_site_transient_timeout_font-awesome-last-used-release','1756409974','off'),(65730,'_site_transient_font-awesome-last-used-release','a:5:{s:7:\"version\";s:5:\"6.1.2\";s:7:\"use_pro\";b:0;s:7:\"use_svg\";b:0;s:17:\"use_compatibility\";b:1;s:9:\"resources\";a:2:{s:3:\"all\";O:32:\"FortAwesome\\FontAwesome_Resource\":2:{s:9:\"\0*\0source\";s:55:\"https://use.fontawesome.com/releases/v6.1.2/css/all.css\";s:16:\"\0*\0integrity_key\";s:71:\"sha384-fZCoUih8XsaUZnNDOiLqnby1tMJ0sE7oBbNk2Xxf5x8Z4SvNQ9j83vFMa/erbVrV\";}s:8:\"v4-shims\";O:32:\"FortAwesome\\FontAwesome_Resource\":2:{s:9:\"\0*\0source\";s:60:\"https://use.fontawesome.com/releases/v6.1.2/css/v4-shims.css\";s:16:\"\0*\0integrity_key\";s:71:\"sha384-iW7MVRJO9Fj06GFbRcMqdZBcVQhjBWlVXUjtY7XCppA+DZUoHBQ7B8VB+EjXUkPV\";}}}','off'),(73338,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"8b8ae2c7f7525e416fc72984fb937962\";s:6:\"blocks\";a:5:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:12:\"core/columns\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}','on'),(80452,'_transient_ninja_forms_styles_form_1_1_styles','<style>\n\n        /* FORM STYLES */\n    \n        #nf-form-1_1-cont .nf-response-msg {\n                                    background-color:#d8d8d8A6;\n                                            color:#211865;\n                                            font-size:22px;\n                                                    font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\nmargin: auto;\nwidth: 50%;\nmargin-left: 350px;\npadding: 27px\n                    }\n    </style>','on'),(80453,'_transient_ninja_forms_styles_form_1_1_field_styles','<style>\n\n        /* FIELDS STYLES */\n    \n        .nf-form-content .nf-field-container #nf-field-2_1-wrap {\n                                    width:560px;\n                                                    margin-left: 255px;                    }\n        .nf-form-content .nf-field-container #nf-field-2_1-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-3_1-wrap {\n                                    width:560px;\n                                                    margin-left: 255px;                    }\n        .nf-form-content .nf-field-container #nf-field-3_1-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-4_1-wrap {\n                                    width:560px;\n                                                    margin-left: 255px;                    }\n        .nf-form-content .nf-field-container #nf-field-4_1-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-5_1-wrap {\n                                    width:560px;\n                                                    margin-left: 255px;                    }\n        .nf-form-content .nf-field-container #nf-field-5_1-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-6_1-wrap {\n                                    width:560px;\n                                                    margin-left: 255px;                    }\n        .nf-form-content .nf-field-container #nf-field-6_1-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-6_1-wrap .nf-field-element li .nf-element {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-8_1-wrap {\n                                    width:560px;\n                                                    margin-left: 255px;                    }\n        .nf-form-content .nf-field-container #nf-field-8_1-wrap .nf-field-element li {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-8_1-wrap .nf-field-element li .nf-element {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-10_1-wrap {\n                                    width:560px;\n                                                    margin-left: 255px;                    }\n        .nf-form-content .nf-field-container #nf-field-10_1-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:12.5pt;\n                                            padding:7.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-11_1-wrap {\n                                            margin-left: 255px;                    }\n        .nf-form-content .nf-field-container #nf-field-12_1-wrap {\n                                    width:560px;\n                                                    margin-left: 255px;                    }\n        .nf-form-content .nf-field-container #nf-field-13_1-wrap {\n                                            margin-left: 255px;                    }\n    </style>','on'),(80454,'_transient_ninja_forms_styles_form_7_1_styles','<style>\n\n        /* FORM STYLES */\n    \n        #nf-form-7_1-cont .nf-response-msg {\n                                    background-color:#d8d8d8A6;\n                                            color:#211865;\n                                            font-size:22px;\n                                                    font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;                    }\n    </style>','on'),(80455,'_transient_ninja_forms_styles_form_7_1_field_styles','<style>\n\n        /* FIELDS STYLES */\n    \n        .nf-form-content .nf-field-container #nf-field-49_1-wrap {\n                                    width:315px;\n                            }\n        .nf-form-content .nf-field-container #nf-field-49_1-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-50_1-wrap {\n                                    width:315px;\n                            }\n        .nf-form-content .nf-field-container #nf-field-50_1-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-51_1-wrap {\n                                    width:315px;\n                            }\n        .nf-form-content .nf-field-container #nf-field-51_1-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-52_1-wrap {\n                                    width:315px;\n                            }\n        .nf-form-content .nf-field-container #nf-field-52_1-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-53_1-wrap {\n                                    width:315px;\n                            }\n        .nf-form-content .nf-field-container #nf-field-53_1-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-53_1-wrap .nf-field-element li .nf-element {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-55_1-wrap {\n                                    width:315px;\n                            }\n        .nf-form-content .nf-field-container #nf-field-55_1-wrap .nf-field-element li {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-55_1-wrap .nf-field-element li .nf-element {\n                                    font-size:15pt;\n                                            padding:8.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-56_1-wrap {\n                                    width:315px;\n                            }\n        .nf-form-content .nf-field-container #nf-field-56_1-wrap .nf-field-element .ninja-forms-field {\n                                    font-size:12.5pt;\n                                            padding:7.5px;\n                    }\n        .nf-form-content .nf-field-container #nf-field-57_1-wrap {\n                    }\n        .nf-form-content .nf-field-container #nf-field-58_1-wrap {\n                                    width:315px;\n                            }\n        .nf-form-content .nf-field-container #nf-field-59_1-wrap {\n                    }\n    </style>','on'),(82119,'can_compress_scripts','0','on'),(82121,'new_admin_email','bookkeeping@madwcdefense.com','auto'),(82122,'adminhash','a:2:{s:4:\"hash\";s:32:\"13159c7788e3ee98dcd152768916a813\";s:8:\"newemail\";s:28:\"bookkeeping@madwcdefense.com\";}','off'),(85228,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.8.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.8.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.8.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.8.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.1\";s:7:\"version\";s:5:\"6.8.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1752344062;s:15:\"version_checked\";s:5:\"6.8.1\";s:12:\"translations\";a:0:{}}','off'),(90691,'_et_builder_da_feature_cache','a:2:{i:0;s:39:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\"}\";i:1;a:8:{s:8:\"notfound\";a:2:{s:29:\"_et_dynamic_cached_shortcodes\";a:9:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:3;s:10:\"et_pb_text\";i:4;s:11:\"et_pb_image\";i:5;s:10:\"et_pb_menu\";i:6;s:12:\"et_pb_button\";i:7;s:25:\"et_pb_social_media_follow\";i:8;s:33:\"et_pb_social_media_follow_network\";}s:29:\"_et_dynamic_cached_attributes\";a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}}s:8:\"author/1\";a:1:{s:29:\"_et_dynamic_cached_shortcodes\";a:0:{}}s:0:\"\";a:2:{s:29:\"_et_dynamic_cached_shortcodes\";a:9:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:3;s:10:\"et_pb_text\";i:4;s:11:\"et_pb_image\";i:5;s:10:\"et_pb_menu\";i:6;s:12:\"et_pb_button\";i:7;s:25:\"et_pb_social_media_follow\";i:8;s:33:\"et_pb_social_media_follow_network\";}s:29:\"_et_dynamic_cached_attributes\";a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}}s:20:\"taxonomy/category/13\";a:2:{s:29:\"_et_dynamic_cached_shortcodes\";a:12:{i:0;s:33:\"et_pb_social_media_follow_network\";i:1;s:13:\"et_pb_section\";i:2;s:9:\"et_pb_row\";i:3;s:12:\"et_pb_column\";i:4;s:15:\"et_pb_accordion\";i:5;s:12:\"et_pb_button\";i:6;s:11:\"et_pb_image\";i:7;s:10:\"et_pb_menu\";i:8;s:16:\"et_pb_post_title\";i:9;s:12:\"et_pb_search\";i:10;s:25:\"et_pb_social_media_follow\";i:11;s:10:\"et_pb_text\";}s:29:\"_et_dynamic_cached_attributes\";a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}}s:20:\"taxonomy/category/14\";a:2:{s:29:\"_et_dynamic_cached_shortcodes\";a:12:{i:0;s:33:\"et_pb_social_media_follow_network\";i:1;s:13:\"et_pb_section\";i:2;s:9:\"et_pb_row\";i:3;s:12:\"et_pb_column\";i:4;s:15:\"et_pb_accordion\";i:5;s:12:\"et_pb_button\";i:6;s:11:\"et_pb_image\";i:7;s:10:\"et_pb_menu\";i:8;s:16:\"et_pb_post_title\";i:9;s:12:\"et_pb_search\";i:10;s:25:\"et_pb_social_media_follow\";i:11;s:10:\"et_pb_text\";}s:29:\"_et_dynamic_cached_attributes\";a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}}s:20:\"taxonomy/category/15\";a:2:{s:29:\"_et_dynamic_cached_shortcodes\";a:12:{i:0;s:33:\"et_pb_social_media_follow_network\";i:1;s:13:\"et_pb_section\";i:2;s:9:\"et_pb_row\";i:3;s:12:\"et_pb_column\";i:4;s:15:\"et_pb_accordion\";i:5;s:12:\"et_pb_button\";i:6;s:11:\"et_pb_image\";i:7;s:10:\"et_pb_menu\";i:8;s:16:\"et_pb_post_title\";i:9;s:12:\"et_pb_search\";i:10;s:25:\"et_pb_social_media_follow\";i:11;s:10:\"et_pb_text\";}s:29:\"_et_dynamic_cached_attributes\";a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}}s:9:\"author/25\";a:2:{s:29:\"_et_dynamic_cached_shortcodes\";a:12:{i:0;s:33:\"et_pb_social_media_follow_network\";i:1;s:13:\"et_pb_section\";i:2;s:9:\"et_pb_row\";i:3;s:12:\"et_pb_column\";i:4;s:15:\"et_pb_accordion\";i:5;s:12:\"et_pb_button\";i:6;s:11:\"et_pb_image\";i:7;s:10:\"et_pb_menu\";i:8;s:16:\"et_pb_post_title\";i:9;s:12:\"et_pb_search\";i:10;s:25:\"et_pb_social_media_follow\";i:11;s:10:\"et_pb_text\";}s:29:\"_et_dynamic_cached_attributes\";a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}}s:19:\"taxonomy/category/4\";a:2:{s:29:\"_et_dynamic_cached_shortcodes\";a:12:{i:0;s:33:\"et_pb_social_media_follow_network\";i:1;s:13:\"et_pb_section\";i:2;s:9:\"et_pb_row\";i:3;s:12:\"et_pb_column\";i:4;s:15:\"et_pb_accordion\";i:5;s:12:\"et_pb_button\";i:6;s:11:\"et_pb_image\";i:7;s:10:\"et_pb_menu\";i:8;s:16:\"et_pb_post_title\";i:9;s:12:\"et_pb_search\";i:10;s:25:\"et_pb_social_media_follow\";i:11;s:10:\"et_pb_text\";}s:29:\"_et_dynamic_cached_attributes\";a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}}}}','auto'),(91006,'_transient_timeout_et_check_mod_pagespeed','1752430453','off'),(91007,'_transient_et_check_mod_pagespeed','','off'),(91008,'_transient_timeout__et_builder_gf_feature_cache','1752430453','off'),(91009,'_transient__et_builder_gf_feature_cache','1','off'),(91010,'_site_transient_timeout_theme_roots','1752345854','off'),(91011,'_site_transient_theme_roots','a:8:{s:4:\"Divi\";s:7:\"/themes\";s:7:\"sinatra\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','off'),(91012,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1752948854','off'),(91013,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}','off'),(91015,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1752344063;s:7:\"checked\";a:8:{s:4:\"Divi\";s:6:\"4.18.0\";s:7:\"sinatra\";s:5:\"1.2.1\";s:12:\"twentytwenty\";s:3:\"2.0\";s:16:\"twentytwentyfive\";s:3:\"1.0\";s:16:\"twentytwentyfour\";s:3:\"1.0\";s:15:\"twentytwentyone\";s:3:\"1.6\";s:17:\"twentytwentythree\";s:3:\"1.0\";s:15:\"twentytwentytwo\";s:3:\"1.2\";}s:8:\"response\";a:8:{s:7:\"sinatra\";a:6:{s:5:\"theme\";s:7:\"sinatra\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:37:\"https://wordpress.org/themes/sinatra/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/sinatra.1.3.zip\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.9\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.9.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.2.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.5\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.5.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip\";s:8:\"requires\";s:3:\"6.1\";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:\"2.0\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.2.0.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}s:4:\"Divi\";a:4:{s:11:\"new_version\";s:6:\"4.27.4\";s:5:\"theme\";s:4:\"Divi\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";s:7:\"package\";s:149:\"https://www.elegantthemes.com/api/api_downloads.php?api_update=1&theme=Divi&api_key=2204d58dc5443b1322f821343754f84d0ed6374e&username=joseph.wilebski\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','off'),(91016,'_site_transient_et_update_themes','O:8:\"stdClass\":3:{s:7:\"checked\";a:8:{s:4:\"Divi\";s:6:\"4.18.0\";s:7:\"sinatra\";s:5:\"1.2.1\";s:12:\"twentytwenty\";s:3:\"2.0\";s:16:\"twentytwentyfive\";s:3:\"1.0\";s:16:\"twentytwentyfour\";s:3:\"1.0\";s:15:\"twentytwentyone\";s:3:\"1.6\";s:17:\"twentytwentythree\";s:3:\"1.0\";s:15:\"twentytwentytwo\";s:3:\"1.2\";}s:8:\"response\";a:1:{s:4:\"Divi\";a:4:{s:11:\"new_version\";s:6:\"4.27.4\";s:5:\"theme\";s:4:\"Divi\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";s:7:\"package\";s:149:\"https://www.elegantthemes.com/api/api_downloads.php?api_update=1&theme=Divi&api_key=2204d58dc5443b1322f821343754f84d0ed6374e&username=joseph.wilebski\";}}s:12:\"last_checked\";i:1752344063;}','off'),(91017,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1752344064;s:8:\"response\";a:25:{s:30:\"advanced-custom-fields/acf.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:36:\"w.org/plugins/advanced-custom-fields\";s:4:\"slug\";s:22:\"advanced-custom-fields\";s:6:\"plugin\";s:30:\"advanced-custom-fields/acf.php\";s:11:\"new_version\";s:5:\"6.4.2\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/advanced-custom-fields/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/advanced-custom-fields.6.4.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:67:\"https://ps.w.org/advanced-custom-fields/assets/icon.svg?rev=3207824\";s:3:\"svg\";s:67:\"https://ps.w.org/advanced-custom-fields/assets/icon.svg?rev=3207824\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=3207824\";s:2:\"1x\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=3207824\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"5.4\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":13:{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.96\";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.96.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=3264554\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=3264554\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"5.3\";s:16:\"requires_plugins\";a:0:{}}s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:33:\"w.org/plugins/all-in-one-seo-pack\";s:4:\"slug\";s:19:\"all-in-one-seo-pack\";s:6:\"plugin\";s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";s:11:\"new_version\";s:7:\"4.8.4.1\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/all-in-one-seo-pack/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.8.4.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:64:\"https://ps.w.org/all-in-one-seo-pack/assets/icon.svg?rev=2443290\";s:3:\"svg\";s:64:\"https://ps.w.org/all-in-one-seo-pack/assets/icon.svg?rev=2443290\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/all-in-one-seo-pack/assets/banner-1544x500.png?rev=3310686\";s:2:\"1x\";s:74:\"https://ps.w.org/all-in-one-seo-pack/assets/banner-772x250.png?rev=3310686\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.4\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.1\";s:16:\"requires_plugins\";a:0:{}}s:47:\"better-search-replace/better-search-replace.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:35:\"w.org/plugins/better-search-replace\";s:4:\"slug\";s:21:\"better-search-replace\";s:6:\"plugin\";s:47:\"better-search-replace/better-search-replace.php\";s:11:\"new_version\";s:6:\"1.4.10\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/better-search-replace/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/better-search-replace.1.4.10.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/better-search-replace/assets/icon-256x256.png?rev=2706527\";s:2:\"1x\";s:74:\"https://ps.w.org/better-search-replace/assets/icon-128x128.png?rev=2706527\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/better-search-replace/assets/banner-1544x500.png?rev=2706527\";s:2:\"1x\";s:76:\"https://ps.w.org/better-search-replace/assets/banner-772x250.jpg?rev=2706527\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:44:\"breadcrumbs-divi-module/divi-breadcrumbs.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:37:\"w.org/plugins/breadcrumbs-divi-module\";s:4:\"slug\";s:23:\"breadcrumbs-divi-module\";s:6:\"plugin\";s:44:\"breadcrumbs-divi-module/divi-breadcrumbs.php\";s:11:\"new_version\";s:5:\"1.2.3\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/breadcrumbs-divi-module/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/breadcrumbs-divi-module.1.2.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/breadcrumbs-divi-module/assets/icon-256x256.png?rev=2300238\";s:2:\"1x\";s:76:\"https://ps.w.org/breadcrumbs-divi-module/assets/icon-256x256.png?rev=2300238\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:78:\"https://ps.w.org/breadcrumbs-divi-module/assets/banner-772x250.png?rev=2300238\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.7\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";s:5:\"5.2.4\";s:16:\"requires_plugins\";a:0:{}}s:58:\"creative-mail-by-constant-contact/creative-mail-plugin.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:47:\"w.org/plugins/creative-mail-by-constant-contact\";s:4:\"slug\";s:33:\"creative-mail-by-constant-contact\";s:6:\"plugin\";s:58:\"creative-mail-by-constant-contact/creative-mail-plugin.php\";s:11:\"new_version\";s:5:\"1.6.9\";s:3:\"url\";s:64:\"https://wordpress.org/plugins/creative-mail-by-constant-contact/\";s:7:\"package\";s:82:\"https://downloads.wordpress.org/plugin/creative-mail-by-constant-contact.1.6.9.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:78:\"https://ps.w.org/creative-mail-by-constant-contact/assets/icon.svg?rev=2341439\";s:3:\"svg\";s:78:\"https://ps.w.org/creative-mail-by-constant-contact/assets/icon.svg?rev=2341439\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:89:\"https://ps.w.org/creative-mail-by-constant-contact/assets/banner-1544x500.png?rev=2821536\";s:2:\"1x\";s:88:\"https://ps.w.org/creative-mail-by-constant-contact/assets/banner-772x250.png?rev=2821536\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:5:\"6.5.5\";s:12:\"requires_php\";s:3:\"7.3\";s:16:\"requires_plugins\";a:0:{}}s:21:\"depicter/depicter.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:22:\"w.org/plugins/depicter\";s:4:\"slug\";s:8:\"depicter\";s:6:\"plugin\";s:21:\"depicter/depicter.php\";s:11:\"new_version\";s:5:\"4.0.4\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/depicter/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/depicter.4.0.4.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/depicter/assets/icon-128x128.gif?rev=3304240\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/depicter/assets/banner-1544x500.jpg?rev=3304240\";s:2:\"1x\";s:63:\"https://ps.w.org/depicter/assets/banner-772x250.jpg?rev=3304240\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:5:\"7.4.0\";s:16:\"requires_plugins\";a:0:{}}s:43:\"disable-comments-rb/disable-comments-rb.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:33:\"w.org/plugins/disable-comments-rb\";s:4:\"slug\";s:19:\"disable-comments-rb\";s:6:\"plugin\";s:43:\"disable-comments-rb/disable-comments-rb.php\";s:11:\"new_version\";s:6:\"1.0.24\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/disable-comments-rb/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/disable-comments-rb.1.0.24.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/disable-comments-rb/assets/icon-256x256.png?rev=1911683\";s:2:\"1x\";s:72:\"https://ps.w.org/disable-comments-rb/assets/icon-128x128.png?rev=1911683\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/disable-comments-rb/assets/banner-1544x500.png?rev=1911683\";s:2:\"1x\";s:74:\"https://ps.w.org/disable-comments-rb/assets/banner-772x250.png?rev=1911683\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.1\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:35:\"addons-for-divi/addons-for-divi.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:29:\"w.org/plugins/addons-for-divi\";s:4:\"slug\";s:15:\"addons-for-divi\";s:6:\"plugin\";s:35:\"addons-for-divi/addons-for-divi.php\";s:11:\"new_version\";s:5:\"4.2.1\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/addons-for-divi/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/addons-for-divi.4.2.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:60:\"https://ps.w.org/addons-for-divi/assets/icon.svg?rev=3195181\";s:3:\"svg\";s:60:\"https://ps.w.org/addons-for-divi/assets/icon.svg?rev=3195181\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/addons-for-divi/assets/banner-1544x500.png?rev=3088441\";s:2:\"1x\";s:70:\"https://ps.w.org/addons-for-divi/assets/banner-772x250.png?rev=3088441\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:45:\"enable-media-replace/enable-media-replace.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:34:\"w.org/plugins/enable-media-replace\";s:4:\"slug\";s:20:\"enable-media-replace\";s:6:\"plugin\";s:45:\"enable-media-replace/enable-media-replace.php\";s:11:\"new_version\";s:5:\"4.1.6\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/enable-media-replace/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/enable-media-replace.4.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/enable-media-replace/assets/icon-256x256.png?rev=1940728\";s:2:\"1x\";s:73:\"https://ps.w.org/enable-media-replace/assets/icon-128x128.png?rev=1940728\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/enable-media-replace/assets/banner-1544x500.png?rev=2322194\";s:2:\"1x\";s:75:\"https://ps.w.org/enable-media-replace/assets/banner-772x250.png?rev=2322194\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"4.9.7\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:55:\"filebird-document-library/filebird-document-library.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:39:\"w.org/plugins/filebird-document-library\";s:4:\"slug\";s:25:\"filebird-document-library\";s:6:\"plugin\";s:55:\"filebird-document-library/filebird-document-library.php\";s:11:\"new_version\";s:5:\"3.0.3\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/filebird-document-library/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/filebird-document-library.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/filebird-document-library/assets/icon-256x256.png?rev=2749407\";s:2:\"1x\";s:78:\"https://ps.w.org/filebird-document-library/assets/icon-256x256.png?rev=2749407\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/filebird-document-library/assets/banner-1544x500.png?rev=2749407\";s:2:\"1x\";s:80:\"https://ps.w.org/filebird-document-library/assets/banner-772x250.png?rev=2749407\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:1:{i:0;s:8:\"filebird\";}}s:21:\"filebird/filebird.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:22:\"w.org/plugins/filebird\";s:4:\"slug\";s:8:\"filebird\";s:6:\"plugin\";s:21:\"filebird/filebird.php\";s:11:\"new_version\";s:5:\"6.4.7\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/filebird/\";s:7:\"package\";s:51:\"https://downloads.wordpress.org/plugin/filebird.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/filebird/assets/icon-128x128.gif?rev=2299145\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/filebird/assets/banner-1544x500.png?rev=2350008\";s:2:\"1x\";s:63:\"https://ps.w.org/filebird/assets/banner-772x250.png?rev=2350008\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:22:\"font-awesome/index.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:26:\"w.org/plugins/font-awesome\";s:4:\"slug\";s:12:\"font-awesome\";s:6:\"plugin\";s:22:\"font-awesome/index.php\";s:11:\"new_version\";s:5:\"5.0.2\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/font-awesome/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/font-awesome.5.0.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/font-awesome/assets/icon-256x256.png?rev=1991998\";s:2:\"1x\";s:65:\"https://ps.w.org/font-awesome/assets/icon-128x128.png?rev=1991998\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/font-awesome/assets/banner-1544x500.png?rev=1991998\";s:2:\"1x\";s:67:\"https://ps.w.org/font-awesome/assets/banner-772x250.png?rev=1991993\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:30:\"_jch-optimize/jch-optimize.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:26:\"w.org/plugins/jch-optimize\";s:4:\"slug\";s:12:\"jch-optimize\";s:6:\"plugin\";s:30:\"_jch-optimize/jch-optimize.php\";s:11:\"new_version\";s:5:\"5.0.0\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/jch-optimize/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/jch-optimize.5.0.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/jch-optimize/assets/icon-128x128.png?rev=1135491\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/jch-optimize/assets/banner-1544x500.png?rev=1338986\";s:2:\"1x\";s:67:\"https://ps.w.org/jch-optimize/assets/banner-772x250.png?rev=1338986\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"8.0\";s:16:\"requires_plugins\";a:0:{}}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:4:\"14.8\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/jetpack.14.8.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=2653649\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=2653649\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.7\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:45:\"movabletype-importer/movabletype-importer.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:34:\"w.org/plugins/movabletype-importer\";s:4:\"slug\";s:20:\"movabletype-importer\";s:6:\"plugin\";s:45:\"movabletype-importer/movabletype-importer.php\";s:11:\"new_version\";s:5:\"0.6.3\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/movabletype-importer/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/movabletype-importer.0.6.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:65:\"https://ps.w.org/movabletype-importer/assets/icon.svg?rev=2828581\";s:3:\"svg\";s:65:\"https://ps.w.org/movabletype-importer/assets/icon.svg?rev=2828581\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:74:\"https://ps.w.org/movabletype-importer/assets/banner-772x250.png?rev=547670\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:27:\"ninja-forms/ninja-forms.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:25:\"w.org/plugins/ninja-forms\";s:4:\"slug\";s:11:\"ninja-forms\";s:6:\"plugin\";s:27:\"ninja-forms/ninja-forms.php\";s:11:\"new_version\";s:6:\"3.10.4\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/ninja-forms/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/ninja-forms.3.10.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/ninja-forms/assets/icon-256x256.png?rev=1649747\";s:2:\"1x\";s:64:\"https://ps.w.org/ninja-forms/assets/icon-128x128.png?rev=1649747\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/ninja-forms/assets/banner-1544x500.png?rev=2069024\";s:2:\"1x\";s:66:\"https://ps.w.org/ninja-forms/assets/banner-772x250.png?rev=2069024\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:27:\"prime-mover/prime-mover.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:25:\"w.org/plugins/prime-mover\";s:4:\"slug\";s:11:\"prime-mover\";s:6:\"plugin\";s:27:\"prime-mover/prime-mover.php\";s:11:\"new_version\";s:5:\"2.0.7\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/prime-mover/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/prime-mover.2.0.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/prime-mover/assets/icon-256x256.png?rev=2114612\";s:2:\"1x\";s:64:\"https://ps.w.org/prime-mover/assets/icon-128x128.png?rev=2114612\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/prime-mover/assets/banner-1544x500.png?rev=2314164\";s:2:\"1x\";s:66:\"https://ps.w.org/prime-mover/assets/banner-772x250.png?rev=2314164\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"4.9.8\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:27:\"redirection/redirection.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:25:\"w.org/plugins/redirection\";s:4:\"slug\";s:11:\"redirection\";s:6:\"plugin\";s:27:\"redirection/redirection.php\";s:11:\"new_version\";s:5:\"5.5.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redirection/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/redirection.5.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/redirection/assets/icon-256x256.jpg?rev=983639\";s:2:\"1x\";s:63:\"https://ps.w.org/redirection/assets/icon-128x128.jpg?rev=983640\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/redirection/assets/banner-1544x500.jpg?rev=983641\";s:2:\"1x\";s:65:\"https://ps.w.org/redirection/assets/banner-772x250.jpg?rev=983642\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.4\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.0\";s:16:\"requires_plugins\";a:0:{}}s:45:\"simple-page-ordering/simple-page-ordering.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:34:\"w.org/plugins/simple-page-ordering\";s:4:\"slug\";s:20:\"simple-page-ordering\";s:6:\"plugin\";s:45:\"simple-page-ordering/simple-page-ordering.php\";s:11:\"new_version\";s:5:\"2.7.4\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/simple-page-ordering/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/simple-page-ordering.2.7.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/simple-page-ordering/assets/icon-256x256.png?rev=2716033\";s:2:\"1x\";s:73:\"https://ps.w.org/simple-page-ordering/assets/icon-128x128.png?rev=2716033\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/simple-page-ordering/assets/banner-1544x500.png?rev=2716033\";s:2:\"1x\";s:75:\"https://ps.w.org/simple-page-ordering/assets/banner-772x250.png?rev=2716033\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:84:\"<p>This release bumps the minimum required version of WordPress from 6.5 to 6.6.</p>\";}s:33:\"simple-sitemap/simple-sitemap.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/simple-sitemap\";s:4:\"slug\";s:14:\"simple-sitemap\";s:6:\"plugin\";s:33:\"simple-sitemap/simple-sitemap.php\";s:11:\"new_version\";s:5:\"3.6.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/simple-sitemap/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/simple-sitemap.3.6.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/simple-sitemap/assets/icon.svg?rev=1411764\";s:3:\"svg\";s:59:\"https://ps.w.org/simple-sitemap/assets/icon.svg?rev=1411764\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/simple-sitemap/assets/banner-1544x500.png?rev=1413087\";s:2:\"1x\";s:69:\"https://ps.w.org/simple-sitemap/assets/banner-772x250.png?rev=1413087\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:17:\"stream/stream.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:20:\"w.org/plugins/stream\";s:4:\"slug\";s:6:\"stream\";s:6:\"plugin\";s:17:\"stream/stream.php\";s:11:\"new_version\";s:5:\"4.1.1\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/stream/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/stream.4.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:51:\"https://ps.w.org/stream/assets/icon.svg?rev=3128015\";s:3:\"svg\";s:51:\"https://ps.w.org/stream/assets/icon.svg?rev=3128015\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/stream/assets/banner-1544x500.png?rev=3128015\";s:2:\"1x\";s:61:\"https://ps.w.org/stream/assets/banner-772x250.png?rev=3128015\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:39:\"wp-external-links/wp-external-links.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:31:\"w.org/plugins/wp-external-links\";s:4:\"slug\";s:17:\"wp-external-links\";s:6:\"plugin\";s:39:\"wp-external-links/wp-external-links.php\";s:11:\"new_version\";s:4:\"2.63\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/wp-external-links/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wp-external-links.2.63.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/wp-external-links/assets/icon-256x256.png?rev=2103983\";s:2:\"1x\";s:70:\"https://ps.w.org/wp-external-links/assets/icon-128x128.png?rev=2103983\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wp-external-links/assets/banner-1544x500.png?rev=2103983\";s:2:\"1x\";s:72:\"https://ps.w.org/wp-external-links/assets/banner-772x250.png?rev=2103983\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.2\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:61:\"quick-bulk-post-page-creator/quick-bulk-post-page-creator.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:42:\"w.org/plugins/quick-bulk-post-page-creator\";s:4:\"slug\";s:28:\"quick-bulk-post-page-creator\";s:6:\"plugin\";s:61:\"quick-bulk-post-page-creator/quick-bulk-post-page-creator.php\";s:11:\"new_version\";s:5:\"1.0.4\";s:3:\"url\";s:59:\"https://wordpress.org/plugins/quick-bulk-post-page-creator/\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/plugin/quick-bulk-post-page-creator.1.0.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/quick-bulk-post-page-creator/assets/icon-256x256.png?rev=1218583\";s:2:\"1x\";s:81:\"https://ps.w.org/quick-bulk-post-page-creator/assets/icon-128x128.png?rev=1218583\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:84:\"https://ps.w.org/quick-bulk-post-page-creator/assets/banner-1544x500.png?rev=1218583\";s:2:\"1x\";s:83:\"https://ps.w.org/quick-bulk-post-page-creator/assets/banner-772x250.png?rev=1218583\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";}}s:7:\"checked\";a:35:{s:30:\"advanced-custom-fields/acf.php\";s:6:\"5.12.3\";s:19:\"akismet/akismet.php\";s:3:\"5.0\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.64\";s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";s:5:\"4.2.4\";s:47:\"better-search-replace/better-search-replace.php\";s:5:\"1.4.1\";s:55:\"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php\";s:6:\"2.12.4\";s:44:\"breadcrumbs-divi-module/divi-breadcrumbs.php\";s:5:\"1.2.1\";s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.2\";s:58:\"creative-mail-by-constant-contact/creative-mail-plugin.php\";s:5:\"1.5.3\";s:21:\"depicter/depicter.php\";s:5:\"1.2.0\";s:43:\"disable-comments-rb/disable-comments-rb.php\";s:6:\"1.0.19\";s:43:\"divi-blurb-extended/divi-blurb-extended.php\";s:5:\"2.2.7\";s:29:\"divi-builder/divi-builder.php\";s:6:\"4.18.0\";s:33:\"ds-divi-rocket/ds-divi-rocket.php\";s:6:\"1.0.48\";s:35:\"addons-for-divi/addons-for-divi.php\";s:5:\"3.5.0\";s:45:\"enable-media-replace/enable-media-replace.php\";s:5:\"3.6.3\";s:55:\"filebird-document-library/filebird-document-library.php\";s:5:\"1.0.0\";s:21:\"filebird/filebird.php\";s:5:\"5.0.5\";s:22:\"font-awesome/index.php\";s:5:\"4.2.0\";s:30:\"_jch-optimize/jch-optimize.php\";s:5:\"3.1.0\";s:19:\"jetpack/jetpack.php\";s:6:\"11.2.2\";s:63:\"Migrate-Divi-Theme-Settings-1-1/Migrate_Divi_Theme_Settings.php\";s:3:\"1.0\";s:45:\"movabletype-importer/movabletype-importer.php\";s:3:\"0.4\";s:27:\"ninja-forms/ninja-forms.php\";s:6:\"3.6.12\";s:41:\"ninja-forms-conditionals/conditionals.php\";s:3:\"3.1\";s:36:\"ninja-forms-uploads/file-uploads.php\";s:6:\"3.3.14\";s:39:\"ninja-forms-style/ninja-forms-style.php\";s:6:\"3.0.29\";s:37:\"ninja-forms-multi-part/multi-part.php\";s:6:\"3.0.26\";s:27:\"prime-mover/prime-mover.php\";s:5:\"1.6.5\";s:61:\"quick-bulk-post-page-creator/quick-bulk-post-page-creator.php\";s:5:\"1.0.4\";s:27:\"redirection/redirection.php\";s:5:\"5.3.2\";s:45:\"simple-page-ordering/simple-page-ordering.php\";s:5:\"2.4.1\";s:33:\"simple-sitemap/simple-sitemap.php\";s:5:\"3.5.7\";s:17:\"stream/stream.php\";s:5:\"3.9.1\";s:39:\"wp-external-links/wp-external-links.php\";s:4:\"2.55\";}}','off'),(91018,'_site_transient_et_update_all_plugins','O:8:\"stdClass\":3:{s:7:\"checked\";a:35:{s:30:\"advanced-custom-fields/acf.php\";s:6:\"5.12.3\";s:19:\"akismet/akismet.php\";s:3:\"5.0\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.64\";s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";s:5:\"4.2.4\";s:47:\"better-search-replace/better-search-replace.php\";s:5:\"1.4.1\";s:55:\"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php\";s:6:\"2.12.4\";s:44:\"breadcrumbs-divi-module/divi-breadcrumbs.php\";s:5:\"1.2.1\";s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.2\";s:58:\"creative-mail-by-constant-contact/creative-mail-plugin.php\";s:5:\"1.5.3\";s:21:\"depicter/depicter.php\";s:5:\"1.2.0\";s:43:\"disable-comments-rb/disable-comments-rb.php\";s:6:\"1.0.19\";s:43:\"divi-blurb-extended/divi-blurb-extended.php\";s:5:\"2.2.7\";s:29:\"divi-builder/divi-builder.php\";s:6:\"4.18.0\";s:33:\"ds-divi-rocket/ds-divi-rocket.php\";s:6:\"1.0.48\";s:35:\"addons-for-divi/addons-for-divi.php\";s:5:\"3.5.0\";s:45:\"enable-media-replace/enable-media-replace.php\";s:5:\"3.6.3\";s:55:\"filebird-document-library/filebird-document-library.php\";s:5:\"1.0.0\";s:21:\"filebird/filebird.php\";s:5:\"5.0.5\";s:22:\"font-awesome/index.php\";s:5:\"4.2.0\";s:30:\"_jch-optimize/jch-optimize.php\";s:5:\"3.1.0\";s:19:\"jetpack/jetpack.php\";s:6:\"11.2.2\";s:63:\"Migrate-Divi-Theme-Settings-1-1/Migrate_Divi_Theme_Settings.php\";s:3:\"1.0\";s:45:\"movabletype-importer/movabletype-importer.php\";s:3:\"0.4\";s:27:\"ninja-forms/ninja-forms.php\";s:6:\"3.6.12\";s:41:\"ninja-forms-conditionals/conditionals.php\";s:3:\"3.1\";s:36:\"ninja-forms-uploads/file-uploads.php\";s:6:\"3.3.14\";s:39:\"ninja-forms-style/ninja-forms-style.php\";s:6:\"3.0.29\";s:37:\"ninja-forms-multi-part/multi-part.php\";s:6:\"3.0.26\";s:27:\"prime-mover/prime-mover.php\";s:5:\"1.6.5\";s:61:\"quick-bulk-post-page-creator/quick-bulk-post-page-creator.php\";s:5:\"1.0.4\";s:27:\"redirection/redirection.php\";s:5:\"5.3.2\";s:45:\"simple-page-ordering/simple-page-ordering.php\";s:5:\"2.4.1\";s:33:\"simple-sitemap/simple-sitemap.php\";s:5:\"3.5.7\";s:17:\"stream/stream.php\";s:5:\"3.9.1\";s:39:\"wp-external-links/wp-external-links.php\";s:4:\"2.55\";}s:8:\"response\";a:1:{s:29:\"divi-builder/divi-builder.php\";O:8:\"stdClass\":7:{s:11:\"new_version\";s:6:\"4.27.4\";s:6:\"plugin\";s:29:\"divi-builder/divi-builder.php\";s:4:\"slug\";s:12:\"divi-builder\";s:6:\"tested\";s:5:\"5.3.2\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://www.elegantthemes.com/images/plugins/2x/divi-builder.png\";s:2:\"1x\";s:64:\"https://www.elegantthemes.com/images/plugins/1x/divi-builder.png\";}s:3:\"url\";s:60:\"https://www.elegantthemes.com/api/changelog/divi-builder.txt\";s:7:\"package\";s:157:\"https://www.elegantthemes.com/api/api_downloads.php?api_update=1&theme=divi-builder&api_key=2204d58dc5443b1322f821343754f84d0ed6374e&username=joseph.wilebski\";}}s:12:\"last_checked\";i:1752344064;}','off'),(91019,'_site_transient_timeout_wp_theme_files_patterns-0d17c0188f58514834e6fddd8aa27e2b','1752345921','off'),(91020,'_site_transient_wp_theme_files_patterns-0d17c0188f58514834e6fddd8aa27e2b','a:2:{s:7:\"version\";b:0;s:8:\"patterns\";a:0:{}}','off'),(91023,'_site_transient_timeout_wp_theme_files_patterns-39fd3ce00b7f1ea3da0ed77425b53a3e','1752346032','off'),(91024,'_site_transient_wp_theme_files_patterns-39fd3ce00b7f1ea3da0ed77425b53a3e','a:2:{s:7:\"version\";b:0;s:8:\"patterns\";a:0:{}}','off'),(91025,'_transient_timeout_depicter__s_client_registered','1752430645','off'),(91026,'_transient_depicter__s_client_registered','1','off'),(91027,'_site_transient_timeout_wp_theme_files_patterns-9178afc9c1b6ed5726ae987f0295beb2','1752346123','off'),(91028,'_site_transient_wp_theme_files_patterns-9178afc9c1b6ed5726ae987f0295beb2','a:2:{s:7:\"version\";b:0;s:8:\"patterns\";a:0:{}}','off'),(91029,'_transient_timeout_et_core_path','1752433977','off'),(91030,'_transient_et_core_path','/home/getmadto/public_html/wp-content/themes/Divi/core','off'),(91031,'_transient_timeout_et_core_version','1752433977','off'),(91032,'_transient_et_core_version','4.18.0','off'),(91033,'_site_transient_timeout_wp_theme_files_patterns-110bbc1d54f37cb62dceef0243707bd9','1752347901','off'),(91034,'_site_transient_wp_theme_files_patterns-110bbc1d54f37cb62dceef0243707bd9','a:2:{s:7:\"version\";s:6:\"4.18.0\";s:8:\"patterns\";a:0:{}}','off'),(91037,'_site_transient_timeout_wp_theme_files_patterns-e0d64fffd4513358fd3682412791a270','1752349377','off'),(91038,'_site_transient_wp_theme_files_patterns-e0d64fffd4513358fd3682412791a270','a:2:{s:7:\"version\";s:6:\"4.18.0\";s:8:\"patterns\";a:0:{}}','off'),(91039,'_site_transient_timeout_wp_theme_files_patterns-d0d58331d0c6e1424ad6ac7c34158bc4','1752349614','off'),(91040,'_site_transient_wp_theme_files_patterns-d0d58331d0c6e1424ad6ac7c34158bc4','a:2:{s:7:\"version\";b:0;s:8:\"patterns\";a:0:{}}','off'),(91043,'_site_transient_timeout_wp_theme_files_patterns-cb39b3dd9d553e1a820a096332460e22','1752349640','off'),(91044,'_site_transient_wp_theme_files_patterns-cb39b3dd9d553e1a820a096332460e22','a:2:{s:7:\"version\";b:0;s:8:\"patterns\";a:0:{}}','off'),(91045,'_site_transient_timeout_wp_theme_files_patterns-3c686f80305bc14c6cc6a1c39b8b430f','1752350050','off'),(91046,'_site_transient_wp_theme_files_patterns-3c686f80305bc14c6cc6a1c39b8b430f','a:2:{s:7:\"version\";b:0;s:8:\"patterns\";a:0:{}}','off');
/*!40000 ALTER TABLE `cuB_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_postmeta`
--

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

--
-- Dumping data for table `cuB_postmeta`
--

LOCK TABLES `cuB_postmeta` WRITE;
/*!40000 ALTER TABLE `cuB_postmeta` DISABLE KEYS */;
INSERT INTO `cuB_postmeta` VALUES (3,6,'current_word_count','5992'),(4,6,'_edit_lock','1663937787:1'),(5,6,'_edit_last','1'),(6,6,'_wp_page_template','default'),(7,6,'meta-mhmm-header','default'),(8,6,'meta-mhmm-style','default'),(9,6,'du-meta-custom-footer','default'),(10,6,'_et_pb_page_layout','et_right_sidebar'),(11,6,'_et_pb_side_nav','off'),(12,6,'_et_pb_use_builder','on'),(13,6,'_et_builder_version','VB|Divi|4.18.0'),(14,6,'_et_pb_first_image',''),(15,6,'_et_pb_truncate_post',''),(17,6,'_et_pb_old_content',''),(18,6,'_et_pb_enable_shortcode_tracking',''),(19,6,'_et_pb_custom_css',''),(20,6,'type',''),(21,6,'source_url',''),(22,6,'target_word_count',''),(23,6,'target_sections',''),(24,6,'content_type','new'),(25,6,'subtitle',''),(26,6,'_subtitle','field_page_subtitle_subtitle'),(29,6,'pagegoals','goal4'),(30,6,'pagelanguage','english'),(31,6,'pagetype','home'),(35,6,'_et_pb_built_for_post_type','page'),(36,6,'_et_pb_ab_subjects',''),(37,6,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"6\" /]'),(42,6,'_et_pb_show_page_creation','off'),(129,45904,'_et_pb_built_for_post_type','page'),(130,45904,'_et_pb_ab_subjects',''),(131,45904,'_et_pb_enable_shortcode_tracking',''),(132,45904,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"45904\" /]'),(133,45904,'_et_pb_custom_css',''),(134,45904,'_et_pb_first_image',''),(135,45904,'_et_pb_truncate_post',''),(136,45904,'_et_builder_version','VB|Divi|3.21'),(137,45904,'_et_pb_show_page_creation','off'),(138,45904,'_aioseop_opengraph_settings','a:0:{}'),(139,45904,'meta-mhmm-header','default'),(140,45904,'meta-mhmm-style','default'),(141,45904,'_et_pb_use_builder','on'),(142,45904,'_et_pb_old_content',''),(143,45905,'_et_pb_built_for_post_type','page'),(144,45905,'_et_pb_ab_subjects',''),(145,45905,'_et_pb_enable_shortcode_tracking',''),(146,45905,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"45868\" /]'),(147,45905,'_et_pb_custom_css',''),(148,45905,'_et_pb_first_image',''),(149,45905,'_et_pb_truncate_post',''),(150,45905,'_et_builder_version','VB|Divi|3.21'),(151,45905,'_et_pb_show_page_creation','off'),(152,45905,'_aioseop_opengraph_settings','s:1:\"1\";'),(153,45905,'meta-mhmm-header','default'),(154,45905,'meta-mhmm-style','default'),(155,45905,'_et_pb_use_builder','on'),(156,45905,'_et_pb_old_content',''),(157,45906,'_et_pb_built_for_post_type','page'),(158,45906,'meta-mhmm-header','default'),(159,45906,'meta-mhmm-style','default'),(160,45906,'_et_pb_page_layout','et_right_sidebar'),(161,45906,'_et_pb_side_nav','off'),(162,45906,'_et_pb_use_builder','on'),(163,45906,'_et_builder_version','VB|Divi|3.15'),(164,45906,'_et_pb_old_content',''),(165,45906,'_et_pb_enable_shortcode_tracking',''),(166,45906,'_et_pb_custom_css',''),(168,45906,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"45530\" /]'),(169,45906,'_et_pb_show_page_creation','off'),(170,45906,'_et_pb_ab_subjects',''),(171,45906,'_et_pb_first_image',''),(172,45906,'_et_pb_truncate_post',''),(173,45906,'_aioseop_opengraph_settings','s:1:\"1\";'),(174,45907,'_et_pb_built_for_post_type','page'),(175,45907,'meta-mhmm-header','default'),(176,45907,'meta-mhmm-style','default'),(177,45907,'_et_pb_page_layout','et_right_sidebar'),(178,45907,'_et_pb_side_nav','off'),(179,45907,'_et_pb_use_builder','on'),(180,45907,'_et_builder_version','BB|Divi|3.15'),(181,45907,'_et_pb_old_content',''),(182,45907,'_et_pb_enable_shortcode_tracking',''),(183,45907,'_et_pb_custom_css',''),(185,45907,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"45907\" /]'),(186,45907,'_et_pb_show_page_creation','off'),(187,45907,'_et_pb_ab_subjects',''),(188,45907,'_aioseop_opengraph_settings','s:1:\"1\";'),(189,45907,'_et_pb_first_image',''),(190,45907,'_et_pb_truncate_post',''),(191,45906,'_edit_lock','1564421541:12'),(228,45925,'current_word_count','608'),(229,45925,'type',''),(230,45925,'source_url',''),(231,45925,'target_word_count',''),(232,45925,'target_sections',''),(233,45925,'content_type','new'),(234,45925,'notes','{\"content\":\"\",\"user\":12,\"time\":1564419203}'),(235,45926,'current_word_count','161'),(236,45926,'type',''),(237,45926,'source_url',''),(238,45926,'target_word_count',''),(239,45926,'target_sections',''),(240,45926,'content_type','new'),(241,45926,'notes','{\"content\":\"\",\"user\":12,\"time\":1564419208}'),(242,45927,'current_word_count','53'),(243,45927,'type',''),(244,45927,'source_url',''),(245,45927,'target_word_count',''),(246,45927,'target_sections',''),(247,45927,'content_type','new'),(248,45927,'notes','{\"content\":\"\",\"user\":12,\"time\":1564419217}'),(270,45925,'_edit_lock','1663167168:1'),(271,45926,'_edit_lock','1663180991:1'),(272,45927,'_edit_lock','1663690658:1'),(276,45925,'_edit_last','1'),(277,45925,'_wp_page_template','default'),(278,45925,'meta-mhmm-header','default'),(279,45925,'meta-mhmm-style','default'),(280,45925,'du-meta-custom-footer','default'),(281,45925,'_et_pb_page_layout','et_right_sidebar'),(282,45925,'_et_pb_side_nav','off'),(283,45925,'_et_pb_use_builder','on'),(284,45925,'_et_pb_first_image',''),(285,45925,'_et_pb_truncate_post',''),(286,45925,'_et_pb_old_content','<h1>A Workers’ Compensation Defense Built On Partnerships And Communication</h1><p><strong>[nap_names id=\"FIRM-NAME-3\"], is “Western New York’s Premier Workers’ Compensation Defense Firm.”</strong><strong><em> – Mark Jay, CPCU AIC, Senior Claims Specialist, Key Insurance & Benefits Services, Inc.</em></strong></p><p>If you, like many in New York, have become dissatisfied with the traditional New York workers’ compensation defense business model or what we refer to as “the assembly line defense”, perhaps it is time for you to stop getting frustrated and to GET MAD instead.</p><p>For years, the standard operating procedure for New York workers\' compensation defense firms has been predicated on volume. Each morning defense attorneys picked up the 15-20 files for the hearings that they were expected to handle that day, lined them up, spent five minutes reviewing the file, attended the hearing, dictated the report and then moved on to the next file. A report was typed and the file was sent back to the adjuster – frequently without the attorney and the adjuster ever having any real communication. There would be little to no contact before the hearing, at most terse telephone discussions on the day of the hearing for authority for an agreement so that defense counsel would not have to thoroughly analyze the file and provide a thoughtful defense of the claim; there was certainly no ongoing dialogue after or between hearings.</p><h2>A Winning Formula Built On Experience And Client Relationships</h2><p>Our philosophy at [nap_names id=\"FIRM-NAME-1\"], represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships. Our clients refer claims to us, not hearings. We develop relationships with our clients that are proactive rather than reactive; ones that foster ongoing conversations between client and counsel to develop strategies to meet specific goals as opposed to simply appearing at hearings, sending a report, and leaving the employer or TPA to fend for themselves in between board appearances.</p><p>Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York workers\' compensation law. We pride ourselves on staying current with the most recent changes in the law in substance and in practice. We accomplish this by running a forum on LinkedIn called the New York Workers’ Compensation Forum, which we invite you to join. Additionally, we hold webinars every 4th Friday on the month, which you are welcome to join as well!</p><h2>Using Technology To Better Serve Our Clients</h2><p>As early proponents of the board’s exciting new virtual technology, we represented clients throughout New York state before the pandemic. Since COVID-19 has forced everyone into the virtual system, we have expanded our practice and are now a true statewide New York firm. Many clients appreciate the convenience of retaining attorneys who will take a <u>real</u> fight to the <u>virtual</u> landscape, saving time and money by eliminating the expense and downtime associated with meeting in person at a neutral location.</p><h2>Contact [nap_names id=\"FIRM-NAME-1\"]</h2><p>If you are tired of not having an attorney who is your partner, don’t get angry,<strong> GET MAD. </strong>Contact us by calling [nap_phone id=\"LOCAL-REGULAR-NUMBER-1\"] or fill out our <a href=\"/contact/\">online contact form</a>.</p>'),(287,45925,'subtitle',''),(288,45925,'_subtitle','field_page_subtitle_subtitle'),(306,45926,'_edit_last','1'),(307,45926,'_wp_page_template','default'),(308,45926,'meta-mhmm-header','default'),(309,45926,'meta-mhmm-style','default'),(310,45926,'du-meta-custom-footer','default'),(311,45926,'_et_pb_page_layout','et_right_sidebar'),(312,45926,'_et_pb_side_nav','off'),(313,45926,'_et_pb_use_builder','on'),(314,45926,'_et_pb_first_image',''),(315,45926,'_et_pb_truncate_post',''),(316,45926,'_et_pb_old_content','<h1>[nap_names id=\"FIRM-NAME-1\"] Legal Blog</h1>'),(317,45926,'subtitle',''),(318,45926,'_subtitle','field_page_subtitle_subtitle'),(351,45927,'_edit_last','1'),(352,45927,'_wp_page_template','default'),(353,45927,'meta-mhmm-header','default'),(354,45927,'meta-mhmm-style','default'),(355,45927,'du-meta-custom-footer','default'),(356,45927,'_et_pb_page_layout','et_right_sidebar'),(357,45927,'_et_pb_side_nav','off'),(358,45927,'_et_pb_use_builder','on'),(359,45927,'_et_pb_first_image',''),(360,45927,'_et_pb_truncate_post',''),(361,45927,'_et_pb_old_content','<h1>Contact</h1><p>While this website provides general information, it does not constitute legal advice. The best way to get guidance on your specific legal issue is to contact a lawyer. To schedule a meeting with an attorney, please call the firm or complete the intake form below.</p><p>[ninja_form id=1]</p>'),(362,45927,'subtitle',''),(363,45927,'_subtitle','field_page_subtitle_subtitle'),(366,45925,'_et_pb_built_for_post_type','page'),(367,45925,'_et_pb_ab_subjects',''),(368,45925,'_et_pb_enable_shortcode_tracking',''),(369,45925,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"45925\" /]'),(370,45925,'_et_pb_custom_css',''),(372,45925,'_et_builder_version','VB|Divi|4.3.2'),(375,45925,'pagegoals','goal4'),(376,45925,'pagelanguage','english'),(377,45925,'pagetype','about-us'),(379,45925,'_et_pb_show_page_creation','off'),(382,45926,'_et_pb_built_for_post_type','page'),(383,45926,'_et_pb_ab_subjects',''),(384,45926,'_et_pb_enable_shortcode_tracking',''),(385,45926,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"45926\" /]'),(386,45926,'_et_pb_custom_css',''),(388,45926,'_et_builder_version','VB|Divi|3.24'),(389,45926,'_et_pb_show_page_creation','off'),(392,45926,'pagegoals','goal3'),(393,45926,'pagelanguage','english'),(394,45926,'pagetype','blog-home'),(398,45927,'_et_pb_built_for_post_type','page'),(399,45927,'_et_pb_ab_subjects',''),(400,45927,'_et_pb_enable_shortcode_tracking',''),(401,45927,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"45927\" /]'),(402,45927,'_et_pb_custom_css',''),(404,45927,'_et_builder_version','VB|Divi|3.24'),(405,45927,'_et_pb_show_page_creation','off'),(408,45927,'pagegoals','goal9'),(409,45927,'pagelanguage','english'),(410,45927,'pagetype','contact-us'),(465,45966,'_menu_item_type','post_type'),(466,45966,'_menu_item_menu_item_parent','0'),(467,45966,'_menu_item_object_id','45927'),(468,45966,'_menu_item_object','page'),(469,45966,'_menu_item_target',''),(470,45966,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(471,45966,'_menu_item_xfn',''),(472,45966,'_menu_item_url',''),(474,45967,'_menu_item_type','post_type'),(475,45967,'_menu_item_menu_item_parent','46668'),(476,45967,'_menu_item_object_id','45926'),(477,45967,'_menu_item_object','page'),(478,45967,'_menu_item_target',''),(479,45967,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(480,45967,'_menu_item_xfn',''),(481,45967,'_menu_item_url',''),(483,45968,'_menu_item_type','post_type'),(484,45968,'_menu_item_menu_item_parent','0'),(485,45968,'_menu_item_object_id','45925'),(486,45968,'_menu_item_object','page'),(487,45968,'_menu_item_target',''),(488,45968,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(489,45968,'_menu_item_xfn',''),(490,45968,'_menu_item_url',''),(492,45969,'_menu_item_type','post_type'),(493,45969,'_menu_item_menu_item_parent','0'),(494,45969,'_menu_item_object_id','6'),(495,45969,'_menu_item_object','page'),(496,45969,'_menu_item_target',''),(497,45969,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(498,45969,'_menu_item_xfn',''),(499,45969,'_menu_item_url',''),(501,45969,'_aioseop_opengraph_settings','a:0:{}'),(503,45968,'_aioseop_opengraph_settings','a:0:{}'),(504,45967,'_aioseop_opengraph_settings','a:0:{}'),(505,45966,'_aioseop_opengraph_settings','a:0:{}'),(506,45970,'_aioseop_opengraph_settings','a:0:{}'),(507,45971,'_aioseop_opengraph_settings','a:0:{}'),(508,45972,'_aioseop_opengraph_settings','a:0:{}'),(509,45970,'_edit_lock','1582122413:12'),(510,45971,'_edit_lock','1617017857:12'),(511,45970,'_edit_last','12'),(512,45970,'lp_nav_option','show'),(513,45970,'_lp_nav_option','field_landing_page_meta_nav'),(514,45970,'lp_script',''),(515,45970,'_lp_script','field_landing_page_meta_script'),(516,45970,'meta-mhmm-header','45905'),(517,45970,'meta-mhmm-style','default'),(518,45970,'pagegoals','goal2'),(519,45970,'pagelanguage','english'),(520,45970,'pagetype','disclaimer'),(521,45970,'du-meta-custom-footer','default'),(522,45970,'_et_pb_page_layout','et_right_sidebar'),(523,45970,'_et_pb_side_nav','off'),(524,45970,'_et_pb_use_builder','off'),(525,45970,'_et_pb_first_image',''),(526,45970,'_et_pb_truncate_post',''),(527,45970,'_et_pb_old_content',''),(528,45971,'_edit_last','12'),(529,45971,'lp_nav_option','show'),(530,45971,'_lp_nav_option','field_landing_page_meta_nav'),(531,45971,'lp_script',''),(532,45971,'_lp_script','field_landing_page_meta_script'),(533,45971,'meta-mhmm-header','45905'),(534,45971,'meta-mhmm-style','default'),(535,45971,'pagegoals','goal2'),(536,45971,'pagelanguage','english'),(537,45971,'pagetype','privacy-policy'),(538,45971,'du-meta-custom-footer','default'),(539,45971,'_et_pb_page_layout','et_right_sidebar'),(540,45971,'_et_pb_side_nav','off'),(541,45971,'_et_pb_use_builder','off'),(542,45971,'_et_pb_first_image',''),(543,45971,'_et_pb_truncate_post',''),(544,45971,'_et_pb_old_content',''),(545,45972,'_edit_lock','1582122654:12'),(546,45972,'_edit_last','12'),(547,45972,'lp_nav_option','show'),(548,45972,'_lp_nav_option','field_landing_page_meta_nav'),(549,45972,'lp_script',''),(550,45972,'_lp_script','field_landing_page_meta_script'),(551,45972,'meta-mhmm-header','45905'),(552,45972,'meta-mhmm-style','default'),(553,45972,'pagegoals','goal2'),(554,45972,'pagelanguage','english'),(555,45972,'pagetype','thank-you'),(556,45972,'du-meta-custom-footer','default'),(557,45972,'_et_pb_page_layout','et_right_sidebar'),(558,45972,'_et_pb_side_nav','off'),(559,45972,'_et_pb_use_builder','off'),(560,45972,'_et_pb_first_image',''),(561,45972,'_et_pb_truncate_post',''),(562,45972,'_et_pb_old_content',''),(563,45970,'_et_pb_built_for_post_type','page'),(564,45970,'_et_pb_ab_subjects',''),(565,45970,'_et_pb_enable_shortcode_tracking',''),(566,45970,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"45970\" /]'),(567,45970,'_et_pb_custom_css',''),(569,45970,'_et_builder_version','VB|Divi|3.24'),(570,45970,'_et_pb_show_page_creation','off'),(576,45971,'_et_pb_built_for_post_type','page'),(577,45971,'_et_pb_ab_subjects',''),(578,45971,'_et_pb_enable_shortcode_tracking',''),(579,45971,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"45971\" /]'),(580,45971,'_et_pb_custom_css',''),(582,45971,'_et_builder_version','VB|Divi|3.24'),(583,45971,'_et_pb_show_page_creation','off'),(594,45972,'_et_pb_built_for_post_type','page'),(595,45972,'_et_pb_ab_subjects',''),(596,45972,'_et_pb_enable_shortcode_tracking',''),(597,45972,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"45972\" /]'),(598,45972,'_et_pb_custom_css',''),(600,45972,'_et_builder_version','VB|Divi|3.24'),(601,45972,'_et_pb_show_page_creation','off'),(679,45904,'_edit_lock','1567185094:12'),(696,45904,'_edit_last','12'),(697,45926,'_et_pb_gutter_width','1'),(699,45926,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(705,45970,'_et_pb_gutter_width','1'),(711,45971,'_et_pb_gutter_width','1'),(717,45972,'_et_pb_gutter_width','1'),(730,45925,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(731,45925,'_et_pb_post_hide_nav','default'),(732,45925,'_et_pb_truncate_post_date',''),(735,45926,'_et_pb_post_hide_nav','default'),(736,45926,'_et_pb_truncate_post_date',''),(739,45927,'_aioseop_opengraph_settings','a:0:{}'),(740,45927,'_et_pb_post_hide_nav','default'),(741,45927,'_et_pb_truncate_post_date',''),(1046,45970,'_et_pb_post_hide_nav','default'),(1047,45970,'_et_pb_truncate_post_date',''),(1052,45970,'_aioseop_nofollow','on'),(1053,45970,'_aioseop_sitemap_exclude','on'),(1056,45971,'_et_pb_post_hide_nav','default'),(1057,45971,'_et_pb_truncate_post_date',''),(1066,45972,'_et_pb_post_hide_nav','default'),(1067,45972,'_et_pb_truncate_post_date',''),(1072,45972,'_aioseop_nofollow','on'),(1073,45972,'_aioseop_sitemap_exclude','on'),(1468,46070,'subtitle',''),(1469,46070,'_subtitle','field_page_subtitle_subtitle'),(1484,45971,'_aioseop_nofollow','on'),(1485,45971,'_aioseop_sitemap_exclude','on'),(1486,45970,'author_byline','by'),(1487,45971,'author_byline','by'),(1488,45972,'author_byline','by'),(1489,6,'author_byline','by'),(1491,45925,'author_byline','by'),(1492,45926,'author_byline','by'),(1493,45927,'author_byline','by'),(1498,45970,'author_byline','by'),(1499,45971,'author_byline','by'),(1500,45972,'author_byline','by'),(1501,6,'author_byline','by'),(1503,45925,'author_byline','by'),(1504,45926,'author_byline','by'),(1505,45927,'author_byline','by'),(1620,46070,'_wp_attached_file','2021/08/buehler_vicki_l.jpg'),(1621,46070,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:214;s:6:\"height\";i:215;s:4:\"file\";s:27:\"2021/08/buehler_vicki_l.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"buehler_vicki_l-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:25:\"buehler_vicki_l-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1623,46071,'guid','I2E53C8761DD211B2989178009204F443'),(1624,46071,'wld_id','5240708'),(1625,46071,'first_name','Cassandra'),(1626,46071,'_first_name','field_person_meta_first_name'),(1627,46071,'middle_name','E.'),(1628,46071,'_middle_name','field_person_meta_middle_name'),(1629,46071,'last_name','Christman'),(1630,46071,'_last_name','field_person_meta_last_name'),(1631,46071,'location','a:3:{s:7:\"address\";s:33:\"636 N French Rd, Amherst NY 14228\";s:3:\"lat\";s:10:\"43.0358760\";s:3:\"lng\";s:11:\"-78.8008900\";}'),(1632,46071,'_location','field_person_meta_location'),(1633,46071,'phone','+1-716-708-1759'),(1634,46071,'_phone','field_person_meta_phone'),(1635,46071,'fax','855-443-8623'),(1636,46071,'_fax','field_person_meta_fax'),(1637,46071,'email','cchristman@madwcdefense.com'),(1638,46071,'_email','field_person_meta_email'),(1639,46071,'practice_areas_0_pra_title','Workers’ Compensation'),(1640,46071,'_practice_areas_0_pra_title','field_person_meta_pra_title'),(1641,46071,'practice_areas_0_pra_percentage','0'),(1642,46071,'_practice_areas_0_pra_percentage','field_person_meta_pra_percentage'),(1643,46071,'practice_areas','2'),(1644,46071,'_practice_areas','field_person_meta_practice_areas'),(1645,46071,'bar_admissions_0_ba_name','New York'),(1646,46071,'_bar_admissions_0_ba_name','field_person_meta_ba_name'),(1647,46071,'bar_admissions_0_ba_year','2018'),(1648,46071,'_bar_admissions_0_ba_year','field_person_meta_ba_year'),(1649,46071,'bar_admissions_0_ba_code','5842'),(1650,46071,'_bar_admissions_0_ba_code','field_person_meta_ba_code'),(1651,46071,'bar_admissions','1'),(1652,46071,'_bar_admissions','field_person_meta_bar_admissions'),(1653,46071,'professional_assoc',''),(1654,46071,'_professional_assoc','field_person_meta_professional_assoc'),(1655,46071,'classes_seminars',''),(1656,46071,'_classes_seminars','field_person_meta_classes_seminars'),(1657,46071,'honors',''),(1658,46071,'_honors','field_person_meta_honors'),(1659,46071,'published_works',''),(1660,46071,'_published_works','field_person_meta_published_works'),(1661,46071,'bio',''),(1662,46071,'_bio','field_person_meta_bio'),(1663,46071,'past_positions',''),(1664,46071,'_past_positions','field_person_meta_past_positions'),(1665,46071,'pro_bonos','2'),(1666,46071,'_pro_bonos','field_person_meta_pro_bonos'),(1667,46071,'languages',''),(1668,46071,'_languages','field_person_meta_languages'),(1669,46071,'fraternity_sororities',''),(1670,46071,'_fraternity_sororities','field_person_meta_fraternity_sororities'),(1671,46071,'representative_cases',''),(1672,46071,'_representative_cases','field_person_meta_representative_cases'),(1673,46071,'specialties',''),(1674,46071,'_specialties','field_person_meta_specialties'),(1675,46071,'references',''),(1676,46071,'_references','field_person_meta_references'),(1677,46071,'ancillary_businesses',''),(1678,46071,'_ancillary_businesses','field_person_meta_ancillary_businesses'),(1679,46071,'legal_educations_0_le_school','University at Buffalo Law School'),(1680,46071,'_legal_educations_0_le_school','field_person_meta_le_school'),(1681,46071,'legal_educations_0_le_city','Buffalo'),(1682,46071,'_legal_educations_0_le_city','field_person_meta_le_city'),(1683,46071,'legal_educations_0_le_state','New York'),(1684,46071,'_legal_educations_0_le_state','field_person_meta_le_state'),(1685,46071,'legal_educations_0_le_grad_date','2017'),(1686,46071,'_legal_educations_0_le_grad_date','field_person_meta_le_grad_date'),(1687,46071,'legal_educations_0_le_degree_name','Juris Doctor'),(1688,46071,'_legal_educations_0_le_degree_name','field_person_meta_le_degree_name'),(1689,46071,'legal_educations_0_le_distinction',''),(1690,46071,'_legal_educations_0_le_distinction','field_person_meta_le_distinction'),(1691,46071,'legal_educations_0_le_school_honors',''),(1692,46071,'_legal_educations_0_le_school_honors','field_person_meta_le_school_honors'),(1693,46071,'legal_educations_0_le_school_majors',''),(1694,46071,'_legal_educations_0_le_school_majors','field_person_meta_le_school_majors'),(1695,46071,'legal_educations_0_le_school_minors',''),(1696,46071,'_legal_educations_0_le_school_minors','field_person_meta_le_school_minors'),(1697,46071,'legal_educations','1'),(1698,46071,'_legal_educations','field_person_meta_legal_educations'),(1699,46071,'non_legal_educations','2'),(1700,46071,'_non_legal_educations','field_person_meta_non_legal_educations'),(1701,46071,'representative_clients',''),(1702,46071,'_representative_clients','field_person_meta_representative_clients'),(1703,46071,'current_positions_0_cp_title','Associate Attorney'),(1704,46071,'_current_positions_0_cp_title','field_person_meta_cp_title'),(1705,46071,'current_positions','1'),(1706,46071,'_current_positions','field_person_meta_current_positions'),(1707,46072,'_wp_attached_file','2021/08/christman_cassandra_e.jpg'),(1708,46072,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:215;s:6:\"height\";i:177;s:4:\"file\";s:33:\"2021/08/christman_cassandra_e.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"christman_cassandra_e-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:31:\"christman_cassandra_e-75x62.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:62;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1709,46071,'_thumbnail_id','47856'),(1710,46073,'guid','I1D0AAB5C1DD211B2B3AEA700820797B8'),(1711,46073,'wld_id','5240754'),(1712,46073,'first_name','James'),(1713,46073,'_first_name','field_person_meta_first_name'),(1714,46073,'middle_name','B.'),(1715,46073,'_middle_name','field_person_meta_middle_name'),(1716,46073,'last_name','Cousins'),(1717,46073,'_last_name','field_person_meta_last_name'),(1718,46073,'location','a:3:{s:7:\"address\";s:33:\"636 N French Rd, Amherst NY 14228\";s:3:\"lat\";s:10:\"43.0358760\";s:3:\"lng\";s:11:\"-78.8008900\";}'),(1719,46073,'_location','field_person_meta_location'),(1720,46073,'phone','+1-716-650-5284'),(1721,46073,'_phone','field_person_meta_phone'),(1722,46073,'fax','855-443-8623'),(1723,46073,'_fax','field_person_meta_fax'),(1724,46073,'email','jcousins@madwcdefense.com'),(1725,46073,'_email','field_person_meta_email'),(1726,46073,'practice_areas_0_pra_title','Workers\' Compensation'),(1727,46073,'_practice_areas_0_pra_title','field_person_meta_pra_title'),(1728,46073,'practice_areas_0_pra_percentage','0'),(1729,46073,'_practice_areas_0_pra_percentage','field_person_meta_pra_percentage'),(1730,46073,'practice_areas','1'),(1731,46073,'_practice_areas','field_person_meta_practice_areas'),(1732,46073,'bar_admissions_0_ba_name','New York'),(1733,46073,'_bar_admissions_0_ba_name','field_person_meta_ba_name'),(1734,46073,'bar_admissions_0_ba_year',''),(1735,46073,'_bar_admissions_0_ba_year','field_person_meta_ba_year'),(1736,46073,'bar_admissions_0_ba_code','5842'),(1737,46073,'_bar_admissions_0_ba_code','field_person_meta_ba_code'),(1738,46073,'bar_admissions_1_ba_name','U.S. District Court Western District of New York'),(1739,46073,'_bar_admissions_1_ba_name','field_person_meta_ba_name'),(1740,46073,'bar_admissions_1_ba_year',''),(1741,46073,'_bar_admissions_1_ba_year','field_person_meta_ba_year'),(1742,46073,'bar_admissions_1_ba_code','7577'),(1743,46073,'_bar_admissions_1_ba_code','field_person_meta_ba_code'),(1744,46073,'bar_admissions_2_ba_name','U.S. Bankruptcy Court Western District of New York'),(1745,46073,'_bar_admissions_2_ba_name','field_person_meta_ba_name'),(1746,46073,'bar_admissions_2_ba_year',''),(1747,46073,'_bar_admissions_2_ba_year','field_person_meta_ba_year'),(1748,46073,'bar_admissions_2_ba_code','113'),(1749,46073,'_bar_admissions_2_ba_code','field_person_meta_ba_code'),(1750,46073,'bar_admissions','3'),(1751,46073,'_bar_admissions','field_person_meta_bar_admissions'),(1752,46073,'professional_assoc','4'),(1753,46073,'_professional_assoc','field_person_meta_professional_assoc'),(1754,46073,'classes_seminars',''),(1755,46073,'_classes_seminars','field_person_meta_classes_seminars'),(1756,46073,'honors_0_honor_desc','American Bankruptcy Institute Medal of Excellence'),(1757,46073,'_honors_0_honor_desc','field_person_meta_honor_desc'),(1758,46073,'honors','1'),(1759,46073,'_honors','field_person_meta_honors'),(1760,46073,'published_works',''),(1761,46073,'_published_works','field_person_meta_published_works'),(1762,46073,'bio',''),(1763,46073,'_bio','field_person_meta_bio'),(1764,46073,'past_positions',''),(1765,46073,'_past_positions','field_person_meta_past_positions'),(1766,46073,'pro_bonos','8'),(1767,46073,'_pro_bonos','field_person_meta_pro_bonos'),(1768,46073,'languages',''),(1769,46073,'_languages','field_person_meta_languages'),(1770,46073,'fraternity_sororities',''),(1771,46073,'_fraternity_sororities','field_person_meta_fraternity_sororities'),(1772,46073,'representative_cases','1'),(1773,46073,'_representative_cases','field_person_meta_representative_cases'),(1774,46073,'specialties',''),(1775,46073,'_specialties','field_person_meta_specialties'),(1776,46073,'references',''),(1777,46073,'_references','field_person_meta_references'),(1778,46073,'ancillary_businesses',''),(1779,46073,'_ancillary_businesses','field_person_meta_ancillary_businesses'),(1780,46073,'legal_educations_0_le_school','State University of New York, Buffalo School of Law'),(1781,46073,'_legal_educations_0_le_school','field_person_meta_le_school'),(1782,46073,'legal_educations_0_le_city','Buffalo'),(1783,46073,'_legal_educations_0_le_city','field_person_meta_le_city'),(1784,46073,'legal_educations_0_le_state','New York'),(1785,46073,'_legal_educations_0_le_state','field_person_meta_le_state'),(1786,46073,'legal_educations_0_le_degree_name',''),(1787,46073,'_legal_educations_0_le_degree_name','field_person_meta_le_degree_name'),(1788,46073,'legal_educations_0_le_distinction',''),(1789,46073,'_legal_educations_0_le_distinction','field_person_meta_le_distinction'),(1790,46073,'legal_educations_0_le_school_honors',''),(1791,46073,'_legal_educations_0_le_school_honors','field_person_meta_le_school_honors'),(1792,46073,'legal_educations_0_le_school_majors',''),(1793,46073,'_legal_educations_0_le_school_majors','field_person_meta_le_school_majors'),(1794,46073,'legal_educations_0_le_school_minors',''),(1795,46073,'_legal_educations_0_le_school_minors','field_person_meta_le_school_minors'),(1796,46073,'legal_educations','1'),(1797,46073,'_legal_educations','field_person_meta_legal_educations'),(1798,46073,'non_legal_educations_0_nl_school','Dickinson College'),(1799,46073,'_non_legal_educations_0_nl_school','field_person_meta_nl_school'),(1800,46073,'non_legal_educations_0_nl_city',''),(1801,46073,'_non_legal_educations_0_nl_city','field_person_meta_nl_city'),(1802,46073,'non_legal_educations_0_nl_state',''),(1803,46073,'_non_legal_educations_0_nl_state','field_person_meta_nl_state'),(1804,46073,'non_legal_educations_0_nl_degree_name',''),(1805,46073,'_non_legal_educations_0_nl_degree_name','field_person_meta_nl_degree_name'),(1806,46073,'non_legal_educations_0_nl_distinction',''),(1807,46073,'_non_legal_educations_0_nl_distinction','field_person_meta_nl_distinction'),(1808,46073,'non_legal_educations_0_nle_school_honors',''),(1809,46073,'_non_legal_educations_0_nle_school_honors','field_person_meta_nle_school_honors'),(1810,46073,'non_legal_educations_0_nle_school_majors',''),(1811,46073,'_non_legal_educations_0_nle_school_majors','field_person_meta_nle_school_majors'),(1812,46073,'non_legal_educations_0_nle_school_minors',''),(1813,46073,'_non_legal_educations_0_nle_school_minors','field_person_meta_nle_school_minors'),(1814,46073,'non_legal_educations','1'),(1815,46073,'_non_legal_educations','field_person_meta_non_legal_educations'),(1816,46073,'representative_clients',''),(1817,46073,'_representative_clients','field_person_meta_representative_clients'),(1818,46073,'current_positions_0_cp_title','Partner'),(1819,46073,'_current_positions_0_cp_title','field_person_meta_cp_title'),(1820,46073,'current_positions','1'),(1821,46073,'_current_positions','field_person_meta_current_positions'),(1822,46074,'_wp_attached_file','2021/08/cousins_james_b.jpg'),(1823,46074,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:215;s:6:\"height\";i:215;s:4:\"file\";s:27:\"2021/08/cousins_james_b.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cousins_james_b-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:25:\"cousins_james_b-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1824,46073,'_thumbnail_id','47857'),(1825,46075,'guid','I33186D121DD211B2BEC478009204F303'),(1826,46075,'wld_id','5240707'),(1827,46075,'first_name','Melanie'),(1828,46075,'_first_name','field_person_meta_first_name'),(1829,46075,'middle_name','A.'),(1830,46075,'_middle_name','field_person_meta_middle_name'),(1831,46075,'last_name','Daly'),(1832,46075,'_last_name','field_person_meta_last_name'),(1833,46075,'location','a:3:{s:7:\"address\";s:33:\"636 N French Rd, Amherst NY 14228\";s:3:\"lat\";s:10:\"43.0358760\";s:3:\"lng\";s:11:\"-78.8008900\";}'),(1834,46075,'_location','field_person_meta_location'),(1835,46075,'phone','+1-716-650-5262'),(1836,46075,'_phone','field_person_meta_phone'),(1837,46075,'fax','855-443-8623'),(1838,46075,'_fax','field_person_meta_fax'),(1839,46075,'email','mdaly@madwcdefense.com'),(1840,46075,'_email','field_person_meta_email'),(1841,46075,'practice_areas_0_pra_title','Workers’ Compensation Defense'),(1842,46075,'_practice_areas_0_pra_title','field_person_meta_pra_title'),(1843,46075,'practice_areas_0_pra_percentage','0'),(1844,46075,'_practice_areas_0_pra_percentage','field_person_meta_pra_percentage'),(1845,46075,'practice_areas','1'),(1846,46075,'_practice_areas','field_person_meta_practice_areas'),(1847,46075,'bar_admissions_0_ba_name','New York'),(1848,46075,'_bar_admissions_0_ba_name','field_person_meta_ba_name'),(1849,46075,'bar_admissions_0_ba_year','2017'),(1850,46075,'_bar_admissions_0_ba_year','field_person_meta_ba_year'),(1851,46075,'bar_admissions_0_ba_code','5842'),(1852,46075,'_bar_admissions_0_ba_code','field_person_meta_ba_code'),(1853,46075,'bar_admissions','1'),(1854,46075,'_bar_admissions','field_person_meta_bar_admissions'),(1855,46075,'professional_assoc','3'),(1856,46075,'_professional_assoc','field_person_meta_professional_assoc'),(1857,46075,'classes_seminars',''),(1858,46075,'_classes_seminars','field_person_meta_classes_seminars'),(1859,46075,'honors',''),(1860,46075,'_honors','field_person_meta_honors'),(1861,46075,'published_works','1'),(1862,46075,'_published_works','field_person_meta_published_works'),(1863,46075,'bio',''),(1864,46075,'_bio','field_person_meta_bio'),(1865,46075,'past_positions',''),(1866,46075,'_past_positions','field_person_meta_past_positions'),(1867,46075,'pro_bonos','1'),(1868,46075,'_pro_bonos','field_person_meta_pro_bonos'),(1869,46075,'languages',''),(1870,46075,'_languages','field_person_meta_languages'),(1871,46075,'fraternity_sororities',''),(1872,46075,'_fraternity_sororities','field_person_meta_fraternity_sororities'),(1873,46075,'representative_cases',''),(1874,46075,'_representative_cases','field_person_meta_representative_cases'),(1875,46075,'specialties',''),(1876,46075,'_specialties','field_person_meta_specialties'),(1877,46075,'references',''),(1878,46075,'_references','field_person_meta_references'),(1879,46075,'ancillary_businesses',''),(1880,46075,'_ancillary_businesses','field_person_meta_ancillary_businesses'),(1881,46075,'legal_educations_0_le_school','Nova Southeastern University Shepard Broad Law Center'),(1882,46075,'_legal_educations_0_le_school','field_person_meta_le_school'),(1883,46075,'legal_educations_0_le_city','Ft. Lauderdale'),(1884,46075,'_legal_educations_0_le_city','field_person_meta_le_city'),(1885,46075,'legal_educations_0_le_state','Florida'),(1886,46075,'_legal_educations_0_le_state','field_person_meta_le_state'),(1887,46075,'legal_educations_0_le_grad_date','2015'),(1888,46075,'_legal_educations_0_le_grad_date','field_person_meta_le_grad_date'),(1889,46075,'legal_educations_0_le_degree_name','Juris Doctorate'),(1890,46075,'_legal_educations_0_le_degree_name','field_person_meta_le_degree_name'),(1891,46075,'legal_educations_0_le_distinction',''),(1892,46075,'_legal_educations_0_le_distinction','field_person_meta_le_distinction'),(1893,46075,'legal_educations_0_le_school_honors',''),(1894,46075,'_legal_educations_0_le_school_honors','field_person_meta_le_school_honors'),(1895,46075,'legal_educations_0_le_school_majors',''),(1896,46075,'_legal_educations_0_le_school_majors','field_person_meta_le_school_majors'),(1897,46075,'legal_educations_0_le_school_minors',''),(1898,46075,'_legal_educations_0_le_school_minors','field_person_meta_le_school_minors'),(1899,46075,'legal_educations','1'),(1900,46075,'_legal_educations','field_person_meta_legal_educations'),(1901,46075,'non_legal_educations_0_nl_school','Niagara University'),(1902,46075,'_non_legal_educations_0_nl_school','field_person_meta_nl_school'),(1903,46075,'non_legal_educations_0_nl_city',''),(1904,46075,'_non_legal_educations_0_nl_city','field_person_meta_nl_city'),(1905,46075,'non_legal_educations_0_nl_state',''),(1906,46075,'_non_legal_educations_0_nl_state','field_person_meta_nl_state'),(1907,46075,'non_legal_educations_0_nl_degree_name','Master of Science'),(1908,46075,'_non_legal_educations_0_nl_degree_name','field_person_meta_nl_degree_name'),(1909,46075,'non_legal_educations_0_nl_distinction',''),(1910,46075,'_non_legal_educations_0_nl_distinction','field_person_meta_nl_distinction'),(1911,46075,'non_legal_educations_0_nle_school_honors',''),(1912,46075,'_non_legal_educations_0_nle_school_honors','field_person_meta_nle_school_honors'),(1913,46075,'non_legal_educations_0_nle_school_majors_0_nle_smaj_name','Criminal Justice Administration'),(1914,46075,'_non_legal_educations_0_nle_school_majors_0_nle_smaj_name','field_person_meta_nle_smaj_name'),(1915,46075,'non_legal_educations_0_nle_school_majors','1'),(1916,46075,'_non_legal_educations_0_nle_school_majors','field_person_meta_nle_school_majors'),(1917,46075,'non_legal_educations_0_nle_school_minors',''),(1918,46075,'_non_legal_educations_0_nle_school_minors','field_person_meta_nle_school_minors'),(1919,46075,'non_legal_educations_1_nl_school','SUNY Fredonia'),(1920,46075,'_non_legal_educations_1_nl_school','field_person_meta_nl_school'),(1921,46075,'non_legal_educations_1_nl_city',''),(1922,46075,'_non_legal_educations_1_nl_city','field_person_meta_nl_city'),(1923,46075,'non_legal_educations_1_nl_state',''),(1924,46075,'_non_legal_educations_1_nl_state','field_person_meta_nl_state'),(1925,46075,'non_legal_educations_1_nl_degree_name','B.A., Bachelor of Arts'),(1926,46075,'_non_legal_educations_1_nl_degree_name','field_person_meta_nl_degree_name'),(1927,46075,'non_legal_educations_1_nl_distinction',''),(1928,46075,'_non_legal_educations_1_nl_distinction','field_person_meta_nl_distinction'),(1929,46075,'non_legal_educations_1_nle_school_honors',''),(1930,46075,'_non_legal_educations_1_nle_school_honors','field_person_meta_nle_school_honors'),(1931,46075,'non_legal_educations_1_nle_school_majors',''),(1932,46075,'_non_legal_educations_1_nle_school_majors','field_person_meta_nle_school_majors'),(1933,46075,'non_legal_educations_1_nle_school_minors',''),(1934,46075,'_non_legal_educations_1_nle_school_minors','field_person_meta_nle_school_minors'),(1935,46075,'non_legal_educations','2'),(1936,46075,'_non_legal_educations','field_person_meta_non_legal_educations'),(1937,46075,'representative_clients',''),(1938,46075,'_representative_clients','field_person_meta_representative_clients'),(1939,46075,'current_positions_0_cp_title','Associate Attorney'),(1940,46075,'_current_positions_0_cp_title','field_person_meta_cp_title'),(1941,46075,'current_positions','1'),(1942,46075,'_current_positions','field_person_meta_current_positions'),(1943,46076,'_wp_attached_file','2021/08/daly_melanie_a.jpg'),(1944,46076,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:212;s:6:\"height\";i:215;s:4:\"file\";s:26:\"2021/08/daly_melanie_a.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"daly_melanie_a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:24:\"daly_melanie_a-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1945,46075,'_thumbnail_id','47858'),(1946,46077,'guid','I357ADBDA1DD211B285A0A300420E567E'),(1947,46077,'wld_id','1561903'),(1948,46077,'first_name','Melissa'),(1949,46077,'_first_name','field_person_meta_first_name'),(1950,46077,'middle_name','A.'),(1951,46077,'_middle_name','field_person_meta_middle_name'),(1952,46077,'last_name','Day'),(1953,46077,'_last_name','field_person_meta_last_name'),(1954,46077,'location','a:3:{s:7:\"address\";s:33:\"636 N French Rd, Amherst NY 14228\";s:3:\"lat\";s:10:\"43.0358760\";s:3:\"lng\";s:11:\"-78.8008900\";}'),(1955,46077,'_location','field_person_meta_location'),(1956,46077,'phone','+1-716-650-5287'),(1957,46077,'_phone','field_person_meta_phone'),(1958,46077,'fax','855-443-8623'),(1959,46077,'_fax','field_person_meta_fax'),(1960,46077,'email','mday@madwcdefense.com'),(1961,46077,'_email','field_person_meta_email'),(1962,46077,'practice_areas_0_pra_title','Workers\' Compensation'),(1963,46077,'_practice_areas_0_pra_title','field_person_meta_pra_title'),(1964,46077,'practice_areas_0_pra_percentage','0'),(1965,46077,'_practice_areas_0_pra_percentage','field_person_meta_pra_percentage'),(1966,46077,'practice_areas','3'),(1967,46077,'_practice_areas','field_person_meta_practice_areas'),(1968,46077,'bar_admissions_0_ba_name','New York'),(1969,46077,'_bar_admissions_0_ba_name','field_person_meta_ba_name'),(1970,46077,'bar_admissions_0_ba_year','1997'),(1971,46077,'_bar_admissions_0_ba_year','field_person_meta_ba_year'),(1972,46077,'bar_admissions_0_ba_code','5842'),(1973,46077,'_bar_admissions_0_ba_code','field_person_meta_ba_code'),(1980,46077,'bar_admissions','1'),(1981,46077,'_bar_admissions','field_person_meta_bar_admissions'),(1982,46077,'professional_assoc_0_pa_name','New York State Bar Association'),(1983,46077,'_professional_assoc_0_pa_name','field_person_meta_pa_name'),(1984,46077,'professional_assoc_0_pa_title',''),(1985,46077,'_professional_assoc_0_pa_title','field_person_meta_pa_title'),(1986,46077,'professional_assoc_0_pa_time_period',''),(1987,46077,'_professional_assoc_0_pa_time_period','field_person_meta_pa_time_period'),(1988,46077,'professional_assoc_1_pa_name','CLM'),(1989,46077,'_professional_assoc_1_pa_name','field_person_meta_pa_name'),(1990,46077,'professional_assoc_1_pa_title',''),(1991,46077,'_professional_assoc_1_pa_title','field_person_meta_pa_title'),(1992,46077,'professional_assoc_1_pa_time_period',''),(1993,46077,'_professional_assoc_1_pa_time_period','field_person_meta_pa_time_period'),(1994,46077,'professional_assoc_2_pa_name','New York Self-Insurers Association'),(1995,46077,'_professional_assoc_2_pa_name','field_person_meta_pa_name'),(1996,46077,'professional_assoc_2_pa_title',''),(1997,46077,'_professional_assoc_2_pa_title','field_person_meta_pa_title'),(1998,46077,'professional_assoc_2_pa_time_period',''),(1999,46077,'_professional_assoc_2_pa_time_period','field_person_meta_pa_time_period'),(2000,46077,'professional_assoc_3_pa_name','Buffalo Claims Association'),(2001,46077,'_professional_assoc_3_pa_name','field_person_meta_pa_name'),(2002,46077,'professional_assoc_3_pa_title',''),(2003,46077,'_professional_assoc_3_pa_title','field_person_meta_pa_title'),(2004,46077,'professional_assoc_3_pa_time_period',''),(2005,46077,'_professional_assoc_3_pa_time_period','field_person_meta_pa_time_period'),(2006,46077,'professional_assoc_4_pa_name','Self-Insurers Association of the Niagara Frontier'),(2007,46077,'_professional_assoc_4_pa_name','field_person_meta_pa_name'),(2008,46077,'professional_assoc_4_pa_title',''),(2009,46077,'_professional_assoc_4_pa_title','field_person_meta_pa_title'),(2010,46077,'professional_assoc_4_pa_time_period',''),(2011,46077,'_professional_assoc_4_pa_time_period','field_person_meta_pa_time_period'),(2012,46077,'professional_assoc_5_pa_name','New York Workers\' Compensation Bar Association'),(2013,46077,'_professional_assoc_5_pa_name','field_person_meta_pa_name'),(2014,46077,'professional_assoc_5_pa_title',''),(2015,46077,'_professional_assoc_5_pa_title','field_person_meta_pa_title'),(2016,46077,'professional_assoc_5_pa_time_period',''),(2017,46077,'_professional_assoc_5_pa_time_period','field_person_meta_pa_time_period'),(2018,46077,'professional_assoc','6'),(2019,46077,'_professional_assoc','field_person_meta_professional_assoc'),(2020,46077,'classes_seminars',''),(2021,46077,'_classes_seminars','field_person_meta_classes_seminars'),(2022,46077,'honors','3'),(2023,46077,'_honors','field_person_meta_honors'),(2024,46077,'published_works','4'),(2025,46077,'_published_works','field_person_meta_published_works'),(2026,46077,'bio','<p style=\"text-align: justify\">Melissa began her practice at Williams &amp; Williams where she defended workers&rsquo; compensation insurance carriers and self-insured employers throughout the process of adjudicating workers&rsquo; compensation claims: from administrative trials and hearings through the Appellate Division.&nbsp; She expanded her Appellate and workers&rsquo; compensation practice when she joined Special Funds Conservation Committee as Assistant Attorney to Steven M. Licht, Esq. She has briefed over 50 appeals and most recently prevailed at the Court of Appeals in <em>Burns v. Varialle</em>, 9 N.Y.3d 207, 879 N.E.2d 140, 849 N.Y.S.2d 1, (2007).&nbsp; In addition to amassing 10 years of general workers&rsquo; compensation defense experience, she became an expert in workers&rsquo; compensation subrogation issues; she has appeared in many courts across the state defending motions and orders to show cause in connection with third-party claims for judicial approval <em>nunc pro tunc </em>and for apportionment of attorneys&rsquo; fees.&nbsp; Melissa is a member of the insurance defense and trucking industry defense groups.</p><p style=\"text-align: justify\">Melissa is a native Western New Yorker and thrilled to be back in her hometown after living in the eastern part of the state for several years.&nbsp; She and her husband live in Williamsville with their thirteen-year-old son.</p>'),(2027,46077,'_bio','field_person_meta_bio'),(2028,46077,'past_positions_0_pp_organization_name','Special Funds Conservation Committee, Steven M. Licht, Esq.'),(2029,46077,'_past_positions_0_pp_organization_name','field_person_meta_pp_organization_name'),(2030,46077,'past_positions_0_pp_position_title','Assistant Attorney'),(2031,46077,'_past_positions_0_pp_position_title','field_person_meta_pp_position_title'),(2032,46077,'past_positions_0_pp_time_period',''),(2033,46077,'_past_positions_0_pp_time_period','field_person_meta_pp_time_period'),(2034,46077,'past_positions_1_pp_organization_name','Williams & Williams'),(2035,46077,'_past_positions_1_pp_organization_name','field_person_meta_pp_organization_name'),(2036,46077,'past_positions_1_pp_position_title',''),(2037,46077,'_past_positions_1_pp_position_title','field_person_meta_pp_position_title'),(2038,46077,'past_positions_1_pp_time_period',''),(2039,46077,'_past_positions_1_pp_time_period','field_person_meta_pp_time_period'),(2040,46077,'past_positions','2'),(2041,46077,'_past_positions','field_person_meta_past_positions'),(2042,46077,'pro_bonos_0_pb_activity','Board Member of Kids’ Chance of New York'),(2043,46077,'_pro_bonos_0_pb_activity','field_person_meta_pb_activity'),(2044,46077,'pro_bonos_0_pb_time_period',''),(2045,46077,'_pro_bonos_0_pb_time_period','field_person_meta_pb_time_period'),(2054,46077,'pro_bonos','1'),(2055,46077,'_pro_bonos','field_person_meta_pro_bonos'),(2056,46077,'languages',''),(2057,46077,'_languages','field_person_meta_languages'),(2058,46077,'fraternity_sororities',''),(2059,46077,'_fraternity_sororities','field_person_meta_fraternity_sororities'),(2060,46077,'representative_cases_0_rc_case_title','Burns v. Varialle, 9 N.Y.3d 207, 879 N.E.2d 140, 849 N.Y.S.2d 1'),(2061,46077,'_representative_cases_0_rc_case_title','field_person_meta_rc_case_title'),(2062,46077,'representative_cases_0_rc_citation',''),(2063,46077,'_representative_cases_0_rc_citation','field_person_meta_rc_citation'),(2064,46077,'representative_cases_0_rc_year',''),(2065,46077,'_representative_cases_0_rc_year','field_person_meta_rc_year'),(2066,46077,'representative_cases_0_rc_court',''),(2067,46077,'_representative_cases_0_rc_court','field_person_meta_rc_court'),(2068,46077,'representative_cases_0_rc_serial_number',''),(2069,46077,'_representative_cases_0_rc_serial_number','field_person_meta_rc_serial_number'),(2070,46077,'representative_cases','1'),(2071,46077,'_representative_cases','field_person_meta_representative_cases'),(2072,46077,'specialties',''),(2073,46077,'_specialties','field_person_meta_specialties'),(2074,46077,'references',''),(2075,46077,'_references','field_person_meta_references'),(2076,46077,'ancillary_businesses',''),(2077,46077,'_ancillary_businesses','field_person_meta_ancillary_businesses'),(2078,46077,'legal_educations_0_le_school','Notre Dame Law School'),(2079,46077,'_legal_educations_0_le_school','field_person_meta_le_school'),(2080,46077,'legal_educations_0_le_city','South Bend'),(2081,46077,'_legal_educations_0_le_city','field_person_meta_le_city'),(2082,46077,'legal_educations_0_le_state','Indiana'),(2083,46077,'_legal_educations_0_le_state','field_person_meta_le_state'),(2084,46077,'legal_educations_0_le_grad_date','1996'),(2085,46077,'_legal_educations_0_le_grad_date','field_person_meta_le_grad_date'),(2086,46077,'legal_educations_0_le_degree_name','J.D.'),(2087,46077,'_legal_educations_0_le_degree_name','field_person_meta_le_degree_name'),(2088,46077,'legal_educations_0_le_distinction',''),(2089,46077,'_legal_educations_0_le_distinction','field_person_meta_le_distinction'),(2090,46077,'legal_educations_0_le_school_honors',''),(2091,46077,'_legal_educations_0_le_school_honors','field_person_meta_le_school_honors'),(2092,46077,'legal_educations_0_le_school_majors',''),(2093,46077,'_legal_educations_0_le_school_majors','field_person_meta_le_school_majors'),(2094,46077,'legal_educations_0_le_school_minors',''),(2095,46077,'_legal_educations_0_le_school_minors','field_person_meta_le_school_minors'),(2096,46077,'legal_educations','1'),(2097,46077,'_legal_educations','field_person_meta_legal_educations'),(2098,46077,'non_legal_educations_0_nl_school','Canisius College'),(2099,46077,'_non_legal_educations_0_nl_school','field_person_meta_nl_school'),(2100,46077,'non_legal_educations_0_nl_city',''),(2101,46077,'_non_legal_educations_0_nl_city','field_person_meta_nl_city'),(2102,46077,'non_legal_educations_0_nl_state',''),(2103,46077,'_non_legal_educations_0_nl_state','field_person_meta_nl_state'),(2104,46077,'non_legal_educations_0_nl_grad_date','1993'),(2105,46077,'_non_legal_educations_0_nl_grad_date','field_person_meta_nl_grad_date'),(2106,46077,'non_legal_educations_0_nl_degree_name','B.A.'),(2107,46077,'_non_legal_educations_0_nl_degree_name','field_person_meta_nl_degree_name'),(2108,46077,'non_legal_educations_0_nl_distinction',''),(2109,46077,'_non_legal_educations_0_nl_distinction','field_person_meta_nl_distinction'),(2110,46077,'non_legal_educations_0_nle_school_honors',''),(2111,46077,'_non_legal_educations_0_nle_school_honors','field_person_meta_nle_school_honors'),(2112,46077,'non_legal_educations_0_nle_school_majors_0_nle_smaj_name','English'),(2113,46077,'_non_legal_educations_0_nle_school_majors_0_nle_smaj_name','field_person_meta_nle_smaj_name'),(2114,46077,'non_legal_educations_0_nle_school_majors','1'),(2115,46077,'_non_legal_educations_0_nle_school_majors','field_person_meta_nle_school_majors'),(2116,46077,'non_legal_educations_0_nle_school_minors',''),(2117,46077,'_non_legal_educations_0_nle_school_minors','field_person_meta_nle_school_minors'),(2118,46077,'non_legal_educations','2'),(2119,46077,'_non_legal_educations','field_person_meta_non_legal_educations'),(2120,46077,'representative_clients',''),(2121,46077,'_representative_clients','field_person_meta_representative_clients'),(2122,46077,'current_positions_0_cp_title','Mistress of the LOMAD Universe, a/k/a Managing Partner'),(2123,46077,'_current_positions_0_cp_title','field_person_meta_cp_title'),(2124,46077,'current_positions','1'),(2125,46077,'_current_positions','field_person_meta_current_positions'),(2126,46078,'_wp_attached_file','2021/08/day_melissa_a.jpg'),(2127,46078,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:215;s:6:\"height\";i:215;s:4:\"file\";s:25:\"2021/08/day_melissa_a.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"day_melissa_a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"day_melissa_a-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2128,46077,'_thumbnail_id','47859'),(2129,46079,'guid','I1A0FD6021DD211B29C68E0001207D72A'),(2130,46079,'wld_id','5240673'),(2131,46079,'first_name','Neil'),(2132,46079,'_first_name','field_person_meta_first_name'),(2133,46079,'middle_name','A.'),(2134,46079,'_middle_name','field_person_meta_middle_name'),(2135,46079,'last_name','Diegelman'),(2136,46079,'_last_name','field_person_meta_last_name'),(2137,46079,'location','a:3:{s:7:\"address\";s:33:\"636 N French Rd, Amherst NY 14228\";s:3:\"lat\";s:10:\"43.0358760\";s:3:\"lng\";s:11:\"-78.8008900\";}'),(2138,46079,'_location','field_person_meta_location'),(2139,46079,'phone','+1-716-650-5286'),(2140,46079,'_phone','field_person_meta_phone'),(2141,46079,'fax','855-443-8623'),(2142,46079,'_fax','field_person_meta_fax'),(2143,46079,'email','ndiegelman@madwcdefense.com'),(2144,46079,'_email','field_person_meta_email'),(2145,46079,'practice_areas_0_pra_title','Workers’ Compensation'),(2146,46079,'_practice_areas_0_pra_title','field_person_meta_pra_title'),(2147,46079,'practice_areas_0_pra_percentage','0'),(2148,46079,'_practice_areas_0_pra_percentage','field_person_meta_pra_percentage'),(2149,46079,'practice_areas','1'),(2150,46079,'_practice_areas','field_person_meta_practice_areas'),(2151,46079,'bar_admissions','1'),(2152,46079,'_bar_admissions','field_person_meta_bar_admissions'),(2153,46079,'professional_assoc',''),(2154,46079,'_professional_assoc','field_person_meta_professional_assoc'),(2155,46079,'classes_seminars',''),(2156,46079,'_classes_seminars','field_person_meta_classes_seminars'),(2157,46079,'honors','3'),(2158,46079,'_honors','field_person_meta_honors'),(2159,46079,'published_works',''),(2160,46079,'_published_works','field_person_meta_published_works'),(2161,46079,'bio',''),(2162,46079,'_bio','field_person_meta_bio'),(2163,46079,'past_positions',''),(2164,46079,'_past_positions','field_person_meta_past_positions'),(2165,46079,'pro_bonos','2'),(2166,46079,'_pro_bonos','field_person_meta_pro_bonos'),(2167,46079,'languages',''),(2168,46079,'_languages','field_person_meta_languages'),(2169,46079,'fraternity_sororities',''),(2170,46079,'_fraternity_sororities','field_person_meta_fraternity_sororities'),(2171,46079,'representative_cases',''),(2172,46079,'_representative_cases','field_person_meta_representative_cases'),(2173,46079,'specialties',''),(2174,46079,'_specialties','field_person_meta_specialties'),(2175,46079,'references',''),(2176,46079,'_references','field_person_meta_references'),(2177,46079,'ancillary_businesses',''),(2178,46079,'_ancillary_businesses','field_person_meta_ancillary_businesses'),(2179,46079,'legal_educations_0_le_school','University at Buffalo Law School'),(2180,46079,'_legal_educations_0_le_school','field_person_meta_le_school'),(2181,46079,'legal_educations_0_le_city','Buffalo'),(2182,46079,'_legal_educations_0_le_city','field_person_meta_le_city'),(2183,46079,'legal_educations_0_le_state','New York'),(2184,46079,'_legal_educations_0_le_state','field_person_meta_le_state'),(2185,46079,'legal_educations_0_le_degree_name',''),(2186,46079,'_legal_educations_0_le_degree_name','field_person_meta_le_degree_name'),(2187,46079,'legal_educations_0_le_distinction',''),(2188,46079,'_legal_educations_0_le_distinction','field_person_meta_le_distinction'),(2189,46079,'legal_educations_0_le_school_honors_0_le_sh_name',' Buffalo Environmental Law Journal and Buffalo Journal of Gender, Law & Social Policy'),(2190,46079,'_legal_educations_0_le_school_honors_0_le_sh_name','field_person_meta_le_sh_name'),(2191,46079,'legal_educations_0_le_school_honors','1'),(2192,46079,'_legal_educations_0_le_school_honors','field_person_meta_le_school_honors'),(2193,46079,'legal_educations_0_le_school_majors',''),(2194,46079,'_legal_educations_0_le_school_majors','field_person_meta_le_school_majors'),(2195,46079,'legal_educations_0_le_school_minors',''),(2196,46079,'_legal_educations_0_le_school_minors','field_person_meta_le_school_minors'),(2197,46079,'legal_educations','1'),(2198,46079,'_legal_educations','field_person_meta_legal_educations'),(2199,46079,'non_legal_educations_0_nl_school','Buffalo State College'),(2200,46079,'_non_legal_educations_0_nl_school','field_person_meta_nl_school'),(2201,46079,'non_legal_educations_0_nl_city',''),(2202,46079,'_non_legal_educations_0_nl_city','field_person_meta_nl_city'),(2203,46079,'non_legal_educations_0_nl_state',''),(2204,46079,'_non_legal_educations_0_nl_state','field_person_meta_nl_state'),(2205,46079,'non_legal_educations_0_nl_degree_name','B.S., Bachelor of Science'),(2206,46079,'_non_legal_educations_0_nl_degree_name','field_person_meta_nl_degree_name'),(2207,46079,'non_legal_educations_0_nl_distinction',''),(2208,46079,'_non_legal_educations_0_nl_distinction','field_person_meta_nl_distinction'),(2209,46079,'non_legal_educations_0_nle_school_honors',''),(2210,46079,'_non_legal_educations_0_nle_school_honors','field_person_meta_nle_school_honors'),(2211,46079,'non_legal_educations_0_nle_school_majors_0_nle_smaj_name','Business Administration'),(2212,46079,'_non_legal_educations_0_nle_school_majors_0_nle_smaj_name','field_person_meta_nle_smaj_name'),(2213,46079,'non_legal_educations_0_nle_school_majors','1'),(2214,46079,'_non_legal_educations_0_nle_school_majors','field_person_meta_nle_school_majors'),(2215,46079,'non_legal_educations_0_nle_school_minors',''),(2216,46079,'_non_legal_educations_0_nle_school_minors','field_person_meta_nle_school_minors'),(2217,46079,'non_legal_educations','1'),(2218,46079,'_non_legal_educations','field_person_meta_non_legal_educations'),(2219,46079,'representative_clients',''),(2220,46079,'_representative_clients','field_person_meta_representative_clients'),(2221,46079,'current_positions_0_cp_title','Associate Attorney'),(2222,46079,'_current_positions_0_cp_title','field_person_meta_cp_title'),(2223,46079,'current_positions','1'),(2224,46079,'_current_positions','field_person_meta_current_positions'),(2225,46080,'_wp_attached_file','2021/08/diegelman_neil_a.jpg'),(2226,46080,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:215;s:6:\"height\";i:215;s:4:\"file\";s:28:\"2021/08/diegelman_neil_a.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"diegelman_neil_a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:26:\"diegelman_neil_a-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2227,46079,'_thumbnail_id','47860'),(2228,46081,'guid','I3449B9D41DD211B2AD9171002204528F'),(2229,46081,'wld_id','5240808'),(2230,46081,'first_name','Katrina'),(2231,46081,'_first_name','field_person_meta_first_name'),(2232,46081,'middle_name',''),(2233,46081,'_middle_name','field_person_meta_middle_name'),(2234,46081,'last_name','Gray'),(2235,46081,'_last_name','field_person_meta_last_name'),(2236,46081,'location','a:8:{s:7:\"address\";s:33:\"636 N French Rd, Amherst NY 14228\";s:3:\"lat\";s:10:\"43.0358760\";s:3:\"lng\";s:11:\"-78.8008900\";s:4:\"city\";s:7:\"Buffalo\";s:5:\"state\";s:2:\"NY\";s:11:\"postal_code\";s:5:\"14228\";s:7:\"country\";s:2:\"US\";s:14:\"street_address\";s:21:\"636 North French Road\";}'),(2237,46081,'_location','field_person_meta_location'),(2238,46081,'phone','+1-716-650-5289'),(2239,46081,'_phone','field_person_meta_phone'),(2240,46081,'fax','855-443-8623'),(2241,46081,'_fax','field_person_meta_fax'),(2242,46081,'email','kgray@madwcdefense.com'),(2243,46081,'_email','field_person_meta_email'),(2244,46081,'practice_areas_0_pra_title','Workers\' Compensation'),(2245,46081,'_practice_areas_0_pra_title','field_person_meta_pra_title'),(2246,46081,'practice_areas_0_pra_percentage','0'),(2247,46081,'_practice_areas_0_pra_percentage','field_person_meta_pra_percentage'),(2248,46081,'practice_areas','1'),(2249,46081,'_practice_areas','field_person_meta_practice_areas'),(2250,46081,'bar_admissions','1'),(2251,46081,'_bar_admissions','field_person_meta_bar_admissions'),(2252,46081,'professional_assoc',''),(2253,46081,'_professional_assoc','field_person_meta_professional_assoc'),(2254,46081,'classes_seminars',''),(2255,46081,'_classes_seminars','field_person_meta_classes_seminars'),(2256,46081,'honors',''),(2257,46081,'_honors','field_person_meta_honors'),(2258,46081,'published_works',''),(2259,46081,'_published_works','field_person_meta_published_works'),(2260,46081,'bio',''),(2261,46081,'_bio','field_person_meta_bio'),(2262,46081,'past_positions',''),(2263,46081,'_past_positions','field_person_meta_past_positions'),(2264,46081,'pro_bonos',''),(2265,46081,'_pro_bonos','field_person_meta_pro_bonos'),(2266,46081,'languages',''),(2267,46081,'_languages','field_person_meta_languages'),(2268,46081,'fraternity_sororities',''),(2269,46081,'_fraternity_sororities','field_person_meta_fraternity_sororities'),(2270,46081,'representative_cases',''),(2271,46081,'_representative_cases','field_person_meta_representative_cases'),(2272,46081,'specialties',''),(2273,46081,'_specialties','field_person_meta_specialties'),(2274,46081,'references',''),(2275,46081,'_references','field_person_meta_references'),(2276,46081,'ancillary_businesses',''),(2277,46081,'_ancillary_businesses','field_person_meta_ancillary_businesses'),(2278,46081,'legal_educations_0_le_school','University at Buffalo Law School'),(2279,46081,'_legal_educations_0_le_school','field_person_meta_le_school'),(2280,46081,'legal_educations_0_le_city','Buffalo'),(2281,46081,'_legal_educations_0_le_city','field_person_meta_le_city'),(2282,46081,'legal_educations_0_le_state','New York'),(2283,46081,'_legal_educations_0_le_state','field_person_meta_le_state'),(2284,46081,'legal_educations_0_le_degree_name','J.D.'),(2285,46081,'_legal_educations_0_le_degree_name','field_person_meta_le_degree_name'),(2286,46081,'legal_educations_0_le_distinction',''),(2287,46081,'_legal_educations_0_le_distinction','field_person_meta_le_distinction'),(2288,46081,'legal_educations_0_le_school_honors',''),(2289,46081,'_legal_educations_0_le_school_honors','field_person_meta_le_school_honors'),(2290,46081,'legal_educations_0_le_school_majors',''),(2291,46081,'_legal_educations_0_le_school_majors','field_person_meta_le_school_majors'),(2292,46081,'legal_educations_0_le_school_minors',''),(2293,46081,'_legal_educations_0_le_school_minors','field_person_meta_le_school_minors'),(2294,46081,'legal_educations','1'),(2295,46081,'_legal_educations','field_person_meta_legal_educations'),(2296,46081,'non_legal_educations',''),(2297,46081,'_non_legal_educations','field_person_meta_non_legal_educations'),(2298,46081,'representative_clients',''),(2299,46081,'_representative_clients','field_person_meta_representative_clients'),(2300,46081,'current_positions_0_cp_title','Of Counsel'),(2301,46081,'_current_positions_0_cp_title','field_person_meta_cp_title'),(2302,46081,'current_positions','1'),(2303,46081,'_current_positions','field_person_meta_current_positions'),(2304,46082,'_wp_attached_file','2021/08/gray_katrina.jpg'),(2305,46082,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:214;s:6:\"height\";i:215;s:4:\"file\";s:24:\"2021/08/gray_katrina.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"gray_katrina-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:22:\"gray_katrina-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2306,46081,'_thumbnail_id','48166'),(2403,46084,'_wp_attached_file','2021/08/hatten_alexis_d.jpg'),(2404,46084,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:215;s:6:\"height\";i:215;s:4:\"file\";s:27:\"2021/08/hatten_alexis_d.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"hatten_alexis_d-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:25:\"hatten_alexis_d-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2406,46085,'guid','I2431CE601DD211B2B6D54B00C20C88B0'),(2407,46085,'wld_id','1258701'),(2408,46085,'first_name','Paul'),(2409,46085,'_first_name','field_person_meta_first_name'),(2410,46085,'middle_name','B.'),(2411,46085,'_middle_name','field_person_meta_middle_name'),(2412,46085,'last_name','Kornacki'),(2413,46085,'_last_name','field_person_meta_last_name'),(2414,46085,'location','a:3:{s:7:\"address\";s:33:\"636 N French Rd, Amherst NY 14228\";s:3:\"lat\";s:10:\"43.0358760\";s:3:\"lng\";s:11:\"-78.8008900\";}'),(2415,46085,'_location','field_person_meta_location'),(2416,46085,'phone','+1-716-250-6627'),(2417,46085,'_phone','field_person_meta_phone'),(2418,46085,'fax','855-443-8623'),(2419,46085,'_fax','field_person_meta_fax'),(2420,46085,'email','pkornacki@madwcdefense.com'),(2421,46085,'_email','field_person_meta_email'),(2422,46085,'practice_areas_0_pra_title','Workers’ Compensation Defense'),(2423,46085,'_practice_areas_0_pra_title','field_person_meta_pra_title'),(2424,46085,'practice_areas_0_pra_percentage','0'),(2425,46085,'_practice_areas_0_pra_percentage','field_person_meta_pra_percentage'),(2426,46085,'practice_areas','1'),(2427,46085,'_practice_areas','field_person_meta_practice_areas'),(2428,46085,'bar_admissions','1'),(2429,46085,'_bar_admissions','field_person_meta_bar_admissions'),(2430,46085,'professional_assoc','1'),(2431,46085,'_professional_assoc','field_person_meta_professional_assoc'),(2432,46085,'classes_seminars',''),(2433,46085,'_classes_seminars','field_person_meta_classes_seminars'),(2434,46085,'honors',''),(2435,46085,'_honors','field_person_meta_honors'),(2436,46085,'published_works',''),(2437,46085,'_published_works','field_person_meta_published_works'),(2438,46085,'bio','<p align=\"left\">&nbsp;</p>'),(2439,46085,'_bio','field_person_meta_bio'),(2440,46085,'past_positions',''),(2441,46085,'_past_positions','field_person_meta_past_positions'),(2442,46085,'pro_bonos',''),(2443,46085,'_pro_bonos','field_person_meta_pro_bonos'),(2444,46085,'languages',''),(2445,46085,'_languages','field_person_meta_languages'),(2446,46085,'fraternity_sororities',''),(2447,46085,'_fraternity_sororities','field_person_meta_fraternity_sororities'),(2448,46085,'representative_cases',''),(2449,46085,'_representative_cases','field_person_meta_representative_cases'),(2450,46085,'specialties',''),(2451,46085,'_specialties','field_person_meta_specialties'),(2452,46085,'references',''),(2453,46085,'_references','field_person_meta_references'),(2454,46085,'ancillary_businesses',''),(2455,46085,'_ancillary_businesses','field_person_meta_ancillary_businesses'),(2456,46085,'legal_educations_0_le_school','University of Toledo College of Law'),(2457,46085,'_legal_educations_0_le_school','field_person_meta_le_school'),(2458,46085,'legal_educations_0_le_city','Toledo'),(2459,46085,'_legal_educations_0_le_city','field_person_meta_le_city'),(2460,46085,'legal_educations_0_le_state','Ohio'),(2461,46085,'_legal_educations_0_le_state','field_person_meta_le_state'),(2462,46085,'legal_educations_0_le_degree_name','J.D.'),(2463,46085,'_legal_educations_0_le_degree_name','field_person_meta_le_degree_name'),(2464,46085,'legal_educations_0_le_distinction',''),(2465,46085,'_legal_educations_0_le_distinction','field_person_meta_le_distinction'),(2466,46085,'legal_educations_0_le_school_honors',''),(2467,46085,'_legal_educations_0_le_school_honors','field_person_meta_le_school_honors'),(2468,46085,'legal_educations_0_le_school_majors',''),(2469,46085,'_legal_educations_0_le_school_majors','field_person_meta_le_school_majors'),(2470,46085,'legal_educations_0_le_school_minors',''),(2471,46085,'_legal_educations_0_le_school_minors','field_person_meta_le_school_minors'),(2472,46085,'legal_educations','1'),(2473,46085,'_legal_educations','field_person_meta_legal_educations'),(2474,46085,'non_legal_educations_0_nl_school','SUNY at Fredonia and SUNY at Buffalo'),(2475,46085,'_non_legal_educations_0_nl_school','field_person_meta_nl_school'),(2476,46085,'non_legal_educations_0_nl_city',''),(2477,46085,'_non_legal_educations_0_nl_city','field_person_meta_nl_city'),(2478,46085,'non_legal_educations_0_nl_state',''),(2479,46085,'_non_legal_educations_0_nl_state','field_person_meta_nl_state'),(2480,46085,'non_legal_educations_0_nl_degree_name',''),(2481,46085,'_non_legal_educations_0_nl_degree_name','field_person_meta_nl_degree_name'),(2482,46085,'non_legal_educations_0_nl_distinction',''),(2483,46085,'_non_legal_educations_0_nl_distinction','field_person_meta_nl_distinction'),(2484,46085,'non_legal_educations_0_nle_school_honors',''),(2485,46085,'_non_legal_educations_0_nle_school_honors','field_person_meta_nle_school_honors'),(2486,46085,'non_legal_educations_0_nle_school_majors',''),(2487,46085,'_non_legal_educations_0_nle_school_majors','field_person_meta_nle_school_majors'),(2488,46085,'non_legal_educations_0_nle_school_minors',''),(2489,46085,'_non_legal_educations_0_nle_school_minors','field_person_meta_nle_school_minors'),(2490,46085,'non_legal_educations','1'),(2491,46085,'_non_legal_educations','field_person_meta_non_legal_educations'),(2492,46085,'representative_clients',''),(2493,46085,'_representative_clients','field_person_meta_representative_clients'),(2494,46085,'current_positions_0_cp_title','Associate Attorney'),(2495,46085,'_current_positions_0_cp_title','field_person_meta_cp_title'),(2496,46085,'current_positions','1'),(2497,46085,'_current_positions','field_person_meta_current_positions'),(2498,46086,'_wp_attached_file','2021/08/kornacki_paul_b.jpg'),(2499,46086,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:209;s:6:\"height\";i:215;s:4:\"file\";s:27:\"2021/08/kornacki_paul_b.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"kornacki_paul_b-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:25:\"kornacki_paul_b-73x75.jpg\";s:5:\"width\";i:73;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2500,46085,'_thumbnail_id','47866'),(2641,46088,'_wp_attached_file','2021/08/machelor_kristin_m.jpg'),(2642,46088,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:215;s:6:\"height\";i:215;s:4:\"file\";s:30:\"2021/08/machelor_kristin_m.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"machelor_kristin_m-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"machelor_kristin_m-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2644,46089,'guid','I2D22894C1DD211B28995710022044C55'),(2645,46089,'wld_id','5240806'),(2646,46089,'first_name','Shannan'),(2647,46089,'_first_name','field_person_meta_first_name'),(2648,46089,'middle_name','M.'),(2649,46089,'_middle_name','field_person_meta_middle_name'),(2650,46089,'last_name','Mackey'),(2651,46089,'_last_name','field_person_meta_last_name'),(2652,46089,'location','a:3:{s:7:\"address\";s:33:\"636 N French Rd, Amherst NY 14228\";s:3:\"lat\";s:10:\"43.0358760\";s:3:\"lng\";s:11:\"-78.8008900\";}'),(2653,46089,'_location','field_person_meta_location'),(2654,46089,'phone','+1-716-250-0687'),(2655,46089,'_phone','field_person_meta_phone'),(2656,46089,'fax','855-443-8623'),(2657,46089,'_fax','field_person_meta_fax'),(2658,46089,'email','smackey@madwcdefense.com'),(2659,46089,'_email','field_person_meta_email'),(2660,46089,'practice_areas_0_pra_title','Workers\' Compensation'),(2661,46089,'_practice_areas_0_pra_title','field_person_meta_pra_title'),(2662,46089,'practice_areas_0_pra_percentage','0'),(2663,46089,'_practice_areas_0_pra_percentage','field_person_meta_pra_percentage'),(2664,46089,'practice_areas_1_pra_title','Litigation'),(2665,46089,'_practice_areas_1_pra_title','field_person_meta_pra_title'),(2666,46089,'practice_areas_1_pra_percentage','0'),(2667,46089,'_practice_areas_1_pra_percentage','field_person_meta_pra_percentage'),(2668,46089,'practice_areas','2'),(2669,46089,'_practice_areas','field_person_meta_practice_areas'),(2670,46089,'bar_admissions_0_ba_name','New York'),(2671,46089,'_bar_admissions_0_ba_name','field_person_meta_ba_name'),(2672,46089,'bar_admissions_0_ba_year','2013'),(2673,46089,'_bar_admissions_0_ba_year','field_person_meta_ba_year'),(2674,46089,'bar_admissions_0_ba_code','5842'),(2675,46089,'_bar_admissions_0_ba_code','field_person_meta_ba_code'),(2676,46089,'bar_admissions','1'),(2677,46089,'_bar_admissions','field_person_meta_bar_admissions'),(2678,46089,'professional_assoc','2'),(2679,46089,'_professional_assoc','field_person_meta_professional_assoc'),(2680,46089,'classes_seminars','2'),(2681,46089,'_classes_seminars','field_person_meta_classes_seminars'),(2682,46089,'honors','5'),(2683,46089,'_honors','field_person_meta_honors'),(2684,46089,'published_works',''),(2685,46089,'_published_works','field_person_meta_published_works'),(2686,46089,'bio',''),(2687,46089,'_bio','field_person_meta_bio'),(2688,46089,'past_positions',''),(2689,46089,'_past_positions','field_person_meta_past_positions'),(2690,46089,'pro_bonos','7'),(2691,46089,'_pro_bonos','field_person_meta_pro_bonos'),(2692,46089,'languages',''),(2693,46089,'_languages','field_person_meta_languages'),(2694,46089,'fraternity_sororities',''),(2695,46089,'_fraternity_sororities','field_person_meta_fraternity_sororities'),(2696,46089,'representative_cases',''),(2697,46089,'_representative_cases','field_person_meta_representative_cases'),(2698,46089,'specialties',''),(2699,46089,'_specialties','field_person_meta_specialties'),(2700,46089,'references',''),(2701,46089,'_references','field_person_meta_references'),(2702,46089,'ancillary_businesses',''),(2703,46089,'_ancillary_businesses','field_person_meta_ancillary_businesses'),(2704,46089,'legal_educations_0_le_school','Albany Law School of Union University'),(2705,46089,'_legal_educations_0_le_school','field_person_meta_le_school'),(2706,46089,'legal_educations_0_le_city','Albany'),(2707,46089,'_legal_educations_0_le_city','field_person_meta_le_city'),(2708,46089,'legal_educations_0_le_state','New York'),(2709,46089,'_legal_educations_0_le_state','field_person_meta_le_state'),(2710,46089,'legal_educations_0_le_grad_date','2012'),(2711,46089,'_legal_educations_0_le_grad_date','field_person_meta_le_grad_date'),(2712,46089,'legal_educations_0_le_degree_name','J.D.'),(2713,46089,'_legal_educations_0_le_degree_name','field_person_meta_le_degree_name'),(2714,46089,'legal_educations_0_le_distinction',''),(2715,46089,'_legal_educations_0_le_distinction','field_person_meta_le_distinction'),(2716,46089,'legal_educations_0_le_school_honors',''),(2717,46089,'_legal_educations_0_le_school_honors','field_person_meta_le_school_honors'),(2718,46089,'legal_educations_0_le_school_majors',''),(2719,46089,'_legal_educations_0_le_school_majors','field_person_meta_le_school_majors'),(2720,46089,'legal_educations_0_le_school_minors',''),(2721,46089,'_legal_educations_0_le_school_minors','field_person_meta_le_school_minors'),(2722,46089,'legal_educations','1'),(2723,46089,'_legal_educations','field_person_meta_legal_educations'),(2724,46089,'non_legal_educations_0_nl_school','University of Notre Dame'),(2725,46089,'_non_legal_educations_0_nl_school','field_person_meta_nl_school'),(2726,46089,'non_legal_educations_0_nl_city',''),(2727,46089,'_non_legal_educations_0_nl_city','field_person_meta_nl_city'),(2728,46089,'non_legal_educations_0_nl_state',''),(2729,46089,'_non_legal_educations_0_nl_state','field_person_meta_nl_state'),(2730,46089,'non_legal_educations_0_nl_grad_date','2006'),(2731,46089,'_non_legal_educations_0_nl_grad_date','field_person_meta_nl_grad_date'),(2732,46089,'non_legal_educations_0_nl_degree_name','B.S.'),(2733,46089,'_non_legal_educations_0_nl_degree_name','field_person_meta_nl_degree_name'),(2734,46089,'non_legal_educations_0_nl_distinction',''),(2735,46089,'_non_legal_educations_0_nl_distinction','field_person_meta_nl_distinction'),(2736,46089,'non_legal_educations_0_nle_school_honors_0_nle_sh_name','Fulbright award'),(2737,46089,'_non_legal_educations_0_nle_school_honors_0_nle_sh_name','field_person_meta_nle_sh_name'),(2738,46089,'non_legal_educations_0_nle_school_honors','1'),(2739,46089,'_non_legal_educations_0_nle_school_honors','field_person_meta_nle_school_honors'),(2740,46089,'non_legal_educations_0_nle_school_majors_0_nle_smaj_name','Political Science, Philosophy, and Russian and Eastern European Studies and Philosophy, certificate in non profit administration'),(2741,46089,'_non_legal_educations_0_nle_school_majors_0_nle_smaj_name','field_person_meta_nle_smaj_name'),(2742,46089,'non_legal_educations_0_nle_school_majors','1'),(2743,46089,'_non_legal_educations_0_nle_school_majors','field_person_meta_nle_school_majors'),(2744,46089,'non_legal_educations_0_nle_school_minors',''),(2745,46089,'_non_legal_educations_0_nle_school_minors','field_person_meta_nle_school_minors'),(2746,46089,'non_legal_educations_1_nl_school','KORA Russian Language Center through the Department of State'),(2747,46089,'_non_legal_educations_1_nl_school','field_person_meta_nl_school'),(2748,46089,'non_legal_educations_1_nl_city','Vladimir'),(2749,46089,'_non_legal_educations_1_nl_city','field_person_meta_nl_city'),(2750,46089,'non_legal_educations_1_nl_state',''),(2751,46089,'_non_legal_educations_1_nl_state','field_person_meta_nl_state'),(2752,46089,'non_legal_educations_1_nl_degree_name',''),(2753,46089,'_non_legal_educations_1_nl_degree_name','field_person_meta_nl_degree_name'),(2754,46089,'non_legal_educations_1_nl_distinction',''),(2755,46089,'_non_legal_educations_1_nl_distinction','field_person_meta_nl_distinction'),(2758,46089,'non_legal_educations_1_nle_school_honors',''),(2759,46089,'_non_legal_educations_1_nle_school_honors','field_person_meta_nle_school_honors'),(2760,46089,'non_legal_educations_1_nle_school_majors',''),(2761,46089,'_non_legal_educations_1_nle_school_majors','field_person_meta_nle_school_majors'),(2762,46089,'non_legal_educations_1_nle_school_minors',''),(2763,46089,'_non_legal_educations_1_nle_school_minors','field_person_meta_nle_school_minors'),(2764,46089,'non_legal_educations','2'),(2765,46089,'_non_legal_educations','field_person_meta_non_legal_educations'),(2766,46089,'representative_clients',''),(2767,46089,'_representative_clients','field_person_meta_representative_clients'),(2768,46089,'current_positions_0_cp_title','Associate Attorney'),(2769,46089,'_current_positions_0_cp_title','field_person_meta_cp_title'),(2770,46089,'current_positions','1'),(2771,46089,'_current_positions','field_person_meta_current_positions'),(2772,46090,'_wp_attached_file','2021/08/mackey_shannan_m.jpg'),(2773,46090,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:215;s:6:\"height\";i:173;s:4:\"file\";s:28:\"2021/08/mackey_shannan_m.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"mackey_shannan_m-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:26:\"mackey_shannan_m-75x60.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2774,46089,'_thumbnail_id','47867'),(2775,46091,'guid','I2D2297A21DD211B2A0366D00E208E133'),(2776,46091,'wld_id','5240689'),(2777,46091,'first_name','Brian'),(2778,46091,'_first_name','field_person_meta_first_name'),(2779,46091,'middle_name','K.'),(2780,46091,'_middle_name','field_person_meta_middle_name'),(2781,46091,'last_name','Prince'),(2782,46091,'_last_name','field_person_meta_last_name'),(2783,46091,'location','a:3:{s:7:\"address\";s:33:\"636 N French Rd, Amherst NY 14228\";s:3:\"lat\";s:10:\"43.0358760\";s:3:\"lng\";s:11:\"-78.8008900\";}'),(2784,46091,'_location','field_person_meta_location'),(2785,46091,'phone','+1-716-313-2794'),(2786,46091,'_phone','field_person_meta_phone'),(2787,46091,'fax','855-443-8623'),(2788,46091,'_fax','field_person_meta_fax'),(2789,46091,'email','bprince@madwcdefense.com'),(2790,46091,'_email','field_person_meta_email'),(2791,46091,'practice_areas_0_pra_title','Workers’ Compensation Law'),(2792,46091,'_practice_areas_0_pra_title','field_person_meta_pra_title'),(2793,46091,'practice_areas_0_pra_percentage','0'),(2794,46091,'_practice_areas_0_pra_percentage','field_person_meta_pra_percentage'),(2795,46091,'practice_areas','3'),(2796,46091,'_practice_areas','field_person_meta_practice_areas'),(2797,46091,'bar_admissions_0_ba_name','New York'),(2798,46091,'_bar_admissions_0_ba_name','field_person_meta_ba_name'),(2799,46091,'bar_admissions_0_ba_year','2013'),(2800,46091,'_bar_admissions_0_ba_year','field_person_meta_ba_year'),(2801,46091,'bar_admissions_0_ba_code','5842'),(2802,46091,'_bar_admissions_0_ba_code','field_person_meta_ba_code'),(2803,46091,'bar_admissions','1'),(2804,46091,'_bar_admissions','field_person_meta_bar_admissions'),(2805,46091,'professional_assoc','1'),(2806,46091,'_professional_assoc','field_person_meta_professional_assoc'),(2807,46091,'classes_seminars',''),(2808,46091,'_classes_seminars','field_person_meta_classes_seminars'),(2809,46091,'honors','3'),(2810,46091,'_honors','field_person_meta_honors'),(2811,46091,'published_works','5'),(2812,46091,'_published_works','field_person_meta_published_works'),(2813,46091,'bio',''),(2814,46091,'_bio','field_person_meta_bio'),(2815,46091,'past_positions_0_pp_organization_name','Federal District Court Judge Charles J. Siragusa'),(2816,46091,'_past_positions_0_pp_organization_name','field_person_meta_pp_organization_name'),(2817,46091,'past_positions_0_pp_position_title','Law Clerk'),(2818,46091,'_past_positions_0_pp_position_title','field_person_meta_pp_position_title'),(2819,46091,'past_positions_0_pp_time_period',''),(2820,46091,'_past_positions_0_pp_time_period','field_person_meta_pp_time_period'),(2821,46091,'past_positions','1'),(2822,46091,'_past_positions','field_person_meta_past_positions'),(2823,46091,'pro_bonos','1'),(2824,46091,'_pro_bonos','field_person_meta_pro_bonos'),(2825,46091,'languages',''),(2826,46091,'_languages','field_person_meta_languages'),(2827,46091,'fraternity_sororities',''),(2828,46091,'_fraternity_sororities','field_person_meta_fraternity_sororities'),(2829,46091,'representative_cases',''),(2830,46091,'_representative_cases','field_person_meta_representative_cases'),(2831,46091,'specialties',''),(2832,46091,'_specialties','field_person_meta_specialties'),(2833,46091,'references',''),(2834,46091,'_references','field_person_meta_references'),(2835,46091,'ancillary_businesses',''),(2836,46091,'_ancillary_businesses','field_person_meta_ancillary_businesses'),(2837,46091,'legal_educations_0_le_school','SUNY Buffalo Law School, University at Buffalo'),(2838,46091,'_legal_educations_0_le_school','field_person_meta_le_school'),(2839,46091,'legal_educations_0_le_city','Buffalo'),(2840,46091,'_legal_educations_0_le_city','field_person_meta_le_city'),(2841,46091,'legal_educations_0_le_state','New York'),(2842,46091,'_legal_educations_0_le_state','field_person_meta_le_state'),(2843,46091,'legal_educations_0_le_grad_date','2012'),(2844,46091,'_legal_educations_0_le_grad_date','field_person_meta_le_grad_date'),(2845,46091,'legal_educations_0_le_degree_name','Juris Doctor'),(2846,46091,'_legal_educations_0_le_degree_name','field_person_meta_le_degree_name'),(2847,46091,'legal_educations_0_le_distinction',''),(2848,46091,'_legal_educations_0_le_distinction','field_person_meta_le_distinction'),(2849,46091,'legal_educations_0_le_school_honors',''),(2850,46091,'_legal_educations_0_le_school_honors','field_person_meta_le_school_honors'),(2851,46091,'legal_educations_0_le_school_majors',''),(2852,46091,'_legal_educations_0_le_school_majors','field_person_meta_le_school_majors'),(2853,46091,'legal_educations_0_le_school_minors',''),(2854,46091,'_legal_educations_0_le_school_minors','field_person_meta_le_school_minors'),(2855,46091,'legal_educations','1'),(2856,46091,'_legal_educations','field_person_meta_legal_educations'),(2857,46091,'non_legal_educations_0_nl_school','Clarkson University'),(2858,46091,'_non_legal_educations_0_nl_school','field_person_meta_nl_school'),(2859,46091,'non_legal_educations_0_nl_city',''),(2860,46091,'_non_legal_educations_0_nl_city','field_person_meta_nl_city'),(2861,46091,'non_legal_educations_0_nl_state',''),(2862,46091,'_non_legal_educations_0_nl_state','field_person_meta_nl_state'),(2863,46091,'non_legal_educations_0_nl_grad_date','2008'),(2864,46091,'_non_legal_educations_0_nl_grad_date','field_person_meta_nl_grad_date'),(2865,46091,'non_legal_educations_0_nl_degree_name','B.A.'),(2866,46091,'_non_legal_educations_0_nl_degree_name','field_person_meta_nl_degree_name'),(2867,46091,'non_legal_educations_0_nl_distinction',''),(2868,46091,'_non_legal_educations_0_nl_distinction','field_person_meta_nl_distinction'),(2869,46091,'non_legal_educations_0_nle_school_honors_0_nle_sh_name','Rugby Team, Coach'),(2870,46091,'_non_legal_educations_0_nle_school_honors_0_nle_sh_name','field_person_meta_nle_sh_name'),(2871,46091,'non_legal_educations_0_nle_school_honors_1_nle_sh_name','Rugby Team, Treasury'),(2872,46091,'_non_legal_educations_0_nle_school_honors_1_nle_sh_name','field_person_meta_nle_sh_name'),(2873,46091,'non_legal_educations_0_nle_school_honors_2_nle_sh_name','Rugby Team, Referee'),(2874,46091,'_non_legal_educations_0_nle_school_honors_2_nle_sh_name','field_person_meta_nle_sh_name'),(2875,46091,'non_legal_educations_0_nle_school_honors','3'),(2876,46091,'_non_legal_educations_0_nle_school_honors','field_person_meta_nle_school_honors'),(2877,46091,'non_legal_educations_0_nle_school_majors_0_nle_smaj_name','Interdisciplinary Engineering and Management'),(2878,46091,'_non_legal_educations_0_nle_school_majors_0_nle_smaj_name','field_person_meta_nle_smaj_name'),(2879,46091,'non_legal_educations_0_nle_school_majors','1'),(2880,46091,'_non_legal_educations_0_nle_school_majors','field_person_meta_nle_school_majors'),(2881,46091,'non_legal_educations_0_nle_school_minors',''),(2882,46091,'_non_legal_educations_0_nle_school_minors','field_person_meta_nle_school_minors'),(2883,46091,'non_legal_educations','1'),(2884,46091,'_non_legal_educations','field_person_meta_non_legal_educations'),(2885,46091,'representative_clients',''),(2886,46091,'_representative_clients','field_person_meta_representative_clients'),(2887,46091,'current_positions_0_cp_title','Senior Associate'),(2888,46091,'_current_positions_0_cp_title','field_person_meta_cp_title'),(2889,46091,'current_positions','1'),(2890,46091,'_current_positions','field_person_meta_current_positions'),(2891,46092,'_wp_attached_file','2021/08/prince_brian_k.jpg'),(2892,46092,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:215;s:6:\"height\";i:215;s:4:\"file\";s:26:\"2021/08/prince_brian_k.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"prince_brian_k-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:24:\"prince_brian_k-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2893,46091,'_thumbnail_id','47868'),(2899,46094,'_wp_attached_file','2021/08/LogoColorTextBelow.png'),(2900,46094,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:840;s:6:\"height\";i:323;s:4:\"file\";s:30:\"2021/08/LogoColorTextBelow.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"LogoColorTextBelow-300x115.png\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"LogoColorTextBelow-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:\"LogoColorTextBelow-768x295.png\";s:5:\"width\";i:768;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:30:\"LogoColorTextBelow-700x269.png\";s:5:\"width\";i:700;s:6:\"height\";i:269;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:30:\"LogoColorTextBelow-500x192.png\";s:5:\"width\";i:500;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"LogoColorTextBelow-75x29.png\";s:5:\"width\";i:75;s:6:\"height\";i:29;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"LogoColorTextBelow-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"LogoColorTextBelow-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"LogoColorTextBelow-510x323.png\";s:5:\"width\";i:510;s:6:\"height\";i:323;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"LogoColorTextBelow-400x323.png\";s:5:\"width\";i:400;s:6:\"height\";i:323;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"LogoColorTextBelow-480x185.png\";s:5:\"width\";i:480;s:6:\"height\";i:185;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:{}}}'),(2901,46094,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/06/LogoColorTextBelow.png'),(2910,46098,'_wp_attached_file','2021/08/0_0_0_0_177_236_csupload_64428384.jpg'),(2911,46098,'_aioseop_opengraph_settings','a:0:{}'),(2912,46098,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:177;s:6:\"height\";i:236;s:4:\"file\";s:45:\"2021/08/0_0_0_0_177_236_csupload_64428384.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"0_0_0_0_177_236_csupload_64428384-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:43:\"0_0_0_0_177_236_csupload_64428384-56x75.jpg\";s:5:\"width\";i:56;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2918,46101,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/daniel-flynn/'),(2919,46101,'current_word_count','102'),(2920,46101,'flco_links_count','1'),(2921,46101,'flco_links','a:1:{i:0;a:4:{s:6:\"source\";s:55:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/\";s:15:\"source_absolute\";s:55:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/\";s:11:\"destination\";s:87:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/\";s:6:\"status\";s:4:\"done\";}}'),(2922,46101,'flco_files','a:1:{i:0;a:7:{s:3:\"url\";s:50:\"/wp-content/uploads/2014/06/LogoColorTextBelow.png\";s:8:\"absolute\";s:104:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/06/LogoColorTextBelow.png\";s:4:\"type\";s:5:\"image\";s:9:\"extension\";s:3:\"png\";s:7:\"post_ID\";i:46101;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}}'),(2923,46101,'pagetype','blog-post'),(2924,46101,'pagelanguage','english'),(2925,46101,'pagegoals','goal3'),(2926,46101,'_edit_lock','1663936737:1'),(2927,46104,'_wp_attached_file','2021/08/DHF-webrdy-e1583244723703.png'),(2928,46104,'_aioseop_opengraph_settings','a:0:{}'),(2929,46104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:37:\"2021/08/DHF-webrdy-e1583244723703.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"DHF-webrdy-e1583244723703-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"DHF-webrdy-e1583244723703-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:35:\"DHF-webrdy-e1583244723703-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"DHF-webrdy-e1583244723703-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"DHF-webrdy-e1583244723703-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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:{}}}'),(2930,46101,'_edit_last','1'),(2931,46101,'_wp_page_template','default'),(2932,46101,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(2933,46101,'du-meta-custom-footer','default'),(2934,46101,'_et_pb_post_hide_nav','default'),(2935,46101,'_et_pb_page_layout','et_right_sidebar'),(2936,46101,'_et_pb_side_nav','off'),(2937,46101,'_et_pb_use_builder',''),(2938,46101,'_et_pb_first_image',''),(2939,46101,'_et_pb_truncate_post',''),(2940,46101,'_et_pb_truncate_post_date',''),(2941,46101,'_et_pb_old_content',''),(2942,46101,'type',''),(2943,46101,'source_url',''),(2944,46101,'target_word_count',''),(2945,46101,'target_sections',''),(2946,46101,'content_type','new'),(2947,46101,'subtitle',''),(2948,46101,'_subtitle','field_page_subtitle_subtitle'),(2979,46114,'_wp_attached_file','2021/08/KBD-e1560351563755.png'),(2980,46114,'_aioseop_opengraph_settings','a:0:{}'),(2981,46114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2021/08/KBD-e1560351563755.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"KBD-e1560351563755-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"KBD-e1560351563755-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"KBD-e1560351563755-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"KBD-e1560351563755-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"KBD-e1560351563755-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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:{}}}'),(2982,46115,'_wp_attached_file','2021/08/KG2-e1543856315349.jpg'),(2983,46115,'_aioseop_opengraph_settings','a:0:{}'),(2984,46115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2021/08/KG2-e1543856315349.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"KG2-e1543856315349-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:30:\"KG2-e1543856315349-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"KG2-e1543856315349-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"KG2-e1543856315349-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"KG2-e1543856315349-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2985,46116,'_wp_attached_file','2021/08/JLM-e1609438869666.png'),(2986,46116,'_aioseop_opengraph_settings','a:0:{}'),(2987,46116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2021/08/JLM-e1609438869666.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"JLM-e1609438869666-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"JLM-e1609438869666-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"JLM-e1609438869666-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"JLM-e1609438869666-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"JLM-e1609438869666-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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:{}}}'),(2988,46117,'_wp_attached_file','2021/08/JMC-e1602506319276.png'),(2989,46117,'_aioseop_opengraph_settings','a:0:{}'),(2990,46117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2021/08/JMC-e1602506319276.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"JMC-e1602506319276-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"JMC-e1602506319276-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"JMC-e1602506319276-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"JMC-e1602506319276-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"JMC-e1602506319276-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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:{}}}'),(2991,46118,'_wp_attached_file','2021/08/JLG-e1609438890826.png'),(2992,46118,'_aioseop_opengraph_settings','a:0:{}'),(2993,46118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2021/08/JLG-e1609438890826.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"JLG-e1609438890826-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"JLG-e1609438890826-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"JLG-e1609438890826-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"JLG-e1609438890826-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"JLG-e1609438890826-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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:{}}}'),(2994,46119,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(2995,46119,'current_word_count','122'),(2996,46119,'author_byline','On Behalf of'),(2997,46119,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(2998,46120,'_wp_attached_file','2021/08/JCW1-e1619123390972.png'),(2999,46120,'_aioseop_opengraph_settings','a:0:{}'),(3000,46120,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:31:\"2021/08/JCW1-e1619123390972.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"JCW1-e1619123390972-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"JCW1-e1619123390972-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:29:\"JCW1-e1619123390972-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"JCW1-e1619123390972-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"JCW1-e1619123390972-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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:{}}}'),(3001,46121,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(3002,46121,'current_word_count','137'),(3003,46121,'author_byline','On Behalf of'),(3004,46121,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(3005,46122,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(3006,46122,'current_word_count','104'),(3007,46122,'author_byline','On Behalf of'),(3008,46122,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(3009,46123,'_wp_attached_file','2021/08/HEK-e1609439152814.png'),(3010,46123,'_aioseop_opengraph_settings','a:0:{}'),(3011,46123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2021/08/HEK-e1609439152814.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"HEK-e1609439152814-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"HEK-e1609439152814-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"HEK-e1609439152814-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"HEK-e1609439152814-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"HEK-e1609439152814-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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:{}}}'),(3012,46124,'_wp_attached_file','2021/08/JBC-Partner-e1546283938157.jpg'),(3013,46124,'_aioseop_opengraph_settings','a:0:{}'),(3014,46124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:38:\"2021/08/JBC-Partner-e1546283938157.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"JBC-Partner-e1546283938157-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:38:\"JBC-Partner-e1546283938157-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:36:\"JBC-Partner-e1546283938157-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"JBC-Partner-e1546283938157-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"JBC-Partner-e1546283938157-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3015,46125,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(3016,46125,'current_word_count','162'),(3017,46125,'author_byline','On Behalf of'),(3018,46125,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(3019,46126,'_wp_attached_file','2021/08/ECamp1-e1527085139339.jpg'),(3020,46126,'_aioseop_opengraph_settings','a:0:{}'),(3021,46126,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:33:\"2021/08/ECamp1-e1527085139339.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"ECamp1-e1527085139339-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:33:\"ECamp1-e1527085139339-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:31:\"ECamp1-e1527085139339-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"ECamp1-e1527085139339-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"ECamp1-e1527085139339-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3030,46119,'_edit_lock','1663936529:1'),(3031,46129,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(3032,46129,'current_word_count','179'),(3033,46129,'author_byline','On Behalf of'),(3034,46129,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(3039,46121,'_edit_lock','1663936617:1'),(3044,46132,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(3045,46132,'current_word_count','94'),(3046,46132,'author_byline','On Behalf of'),(3047,46132,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(3048,46125,'_edit_lock','1663936415:1'),(3049,46122,'_edit_lock','1663936862:1'),(3052,46129,'_edit_lock','1663936587:1'),(3055,46132,'_edit_lock','1663936811:1'),(3056,46129,'_edit_last','1'),(3057,46129,'_wp_page_template','default'),(3059,46129,'du-meta-custom-footer','default'),(3060,46129,'_et_pb_post_hide_nav','default'),(3061,46129,'_et_pb_page_layout','et_right_sidebar'),(3062,46129,'_et_pb_side_nav','off'),(3063,46129,'_et_pb_use_builder','on'),(3064,46129,'_et_pb_first_image',''),(3065,46129,'_et_pb_truncate_post',''),(3066,46129,'_et_pb_truncate_post_date',''),(3067,46129,'_et_pb_old_content','<h1>Elena N. Camp</h1><p><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" /><br /><strong>Billing Manager</strong></p><h2>Contact Me:</h2><p><a role=\"link\" href=\"tel:+1-716-650-5263\" data-wpel-link=\"internal\">(716) 650-5263</a></p><p><a class=\"btn-email-staff\" role=\"link\" href=\"mailto:ecamp@madwcdefense.com\">Email Me</a></p><p>Elena is excited to a part of a lively group whose foremost goal is to foster strong partnerships with their clients, leading to a proactive rather than a reactive approach to strategies and goals. She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond. Over the past few years, she has honed her customer service and organizational skills, becoming a detail-oriented, proactive and intelligent assistant to the attorneys with whom she worked. Elena is particularly adept at managing deadlines, ensuring not only that legal documentation is timely filed, but that clients’ expectations are met and exceeded.</p><p>Though her roots originate in Erie, Pennsylvania, she spent her more formative years in western New York cultivating friendships and joining a church youth group where she was able to share her love for singing. Elena and her husband decided to stay in the area and are raising their children in true Buffalo style: on football and wings.</p>'),(3069,46129,'type',''),(3070,46129,'source_url',''),(3071,46129,'target_word_count',''),(3072,46129,'target_sections',''),(3073,46129,'content_type','new'),(3074,46129,'subtitle',''),(3075,46129,'_subtitle','field_page_subtitle_subtitle'),(3078,46129,'pagegoals','goal4'),(3079,46129,'pagelanguage','english'),(3080,46129,'pagetype','marketing'),(3144,46132,'_edit_last','1'),(3145,46132,'_wp_page_template','default'),(3147,46132,'du-meta-custom-footer','default'),(3148,46132,'_et_pb_post_hide_nav','default'),(3149,46132,'_et_pb_page_layout','et_right_sidebar'),(3150,46132,'_et_pb_side_nav','off'),(3151,46132,'_et_pb_use_builder',''),(3152,46132,'_et_pb_first_image',''),(3153,46132,'_et_pb_truncate_post',''),(3154,46132,'_et_pb_truncate_post_date',''),(3155,46132,'_et_pb_old_content',''),(3157,46132,'type',''),(3158,46132,'source_url',''),(3159,46132,'target_word_count',''),(3160,46132,'target_sections',''),(3161,46132,'content_type','new'),(3162,46132,'subtitle',''),(3163,46132,'_subtitle','field_page_subtitle_subtitle'),(3166,46132,'pagegoals','goal4'),(3167,46132,'pagelanguage','english'),(3168,46132,'pagetype','marketing'),(3170,46119,'_edit_last','1'),(3171,46119,'_wp_page_template','default'),(3173,46119,'du-meta-custom-footer','default'),(3174,46119,'_et_pb_post_hide_nav','default'),(3175,46119,'_et_pb_page_layout','et_right_sidebar'),(3176,46119,'_et_pb_side_nav','off'),(3177,46119,'_et_pb_use_builder',''),(3178,46119,'_et_pb_first_image',''),(3179,46119,'_et_pb_truncate_post',''),(3180,46119,'_et_pb_truncate_post_date',''),(3181,46119,'_et_pb_old_content',''),(3183,46119,'type',''),(3184,46119,'source_url',''),(3185,46119,'target_word_count',''),(3186,46119,'target_sections',''),(3187,46119,'content_type','new'),(3188,46119,'subtitle',''),(3189,46119,'_subtitle','field_page_subtitle_subtitle'),(3192,46119,'pagegoals','goal4'),(3193,46119,'pagelanguage','english'),(3194,46119,'pagetype','marketing'),(3196,46121,'_edit_last','1'),(3197,46121,'_wp_page_template','default'),(3199,46121,'du-meta-custom-footer','default'),(3200,46121,'_et_pb_post_hide_nav','default'),(3201,46121,'_et_pb_page_layout','et_right_sidebar'),(3202,46121,'_et_pb_side_nav','off'),(3203,46121,'_et_pb_use_builder',''),(3204,46121,'_et_pb_first_image',''),(3205,46121,'_et_pb_truncate_post',''),(3206,46121,'_et_pb_truncate_post_date',''),(3207,46121,'_et_pb_old_content',''),(3209,46121,'type',''),(3210,46121,'source_url',''),(3211,46121,'target_word_count',''),(3212,46121,'target_sections',''),(3213,46121,'content_type','new'),(3214,46121,'subtitle',''),(3215,46121,'_subtitle','field_page_subtitle_subtitle'),(3218,46121,'pagegoals','goal4'),(3219,46121,'pagelanguage','english'),(3220,46121,'pagetype','marketing'),(3227,46122,'_edit_last','1'),(3228,46122,'_wp_page_template','default'),(3230,46122,'du-meta-custom-footer','default'),(3231,46122,'_et_pb_post_hide_nav','default'),(3232,46122,'_et_pb_page_layout','et_right_sidebar'),(3233,46122,'_et_pb_side_nav','off'),(3234,46122,'_et_pb_use_builder','off'),(3235,46122,'_et_pb_first_image',''),(3236,46122,'_et_pb_truncate_post',''),(3237,46122,'_et_pb_truncate_post_date',''),(3238,46122,'_et_pb_old_content',''),(3240,46122,'type',''),(3241,46122,'source_url',''),(3242,46122,'target_word_count',''),(3243,46122,'target_sections',''),(3244,46122,'content_type','new'),(3245,46122,'subtitle',''),(3246,46122,'_subtitle','field_page_subtitle_subtitle'),(3249,46122,'pagegoals','goal4'),(3250,46122,'pagelanguage','english'),(3251,46122,'pagetype','marketing'),(3253,46125,'_edit_last','1'),(3254,46125,'_wp_page_template','default'),(3256,46125,'du-meta-custom-footer','default'),(3257,46125,'_et_pb_post_hide_nav','default'),(3258,46125,'_et_pb_page_layout','et_right_sidebar'),(3259,46125,'_et_pb_side_nav','off'),(3260,46125,'_et_pb_use_builder','on'),(3261,46125,'_et_pb_first_image',''),(3262,46125,'_et_pb_truncate_post',''),(3263,46125,'_et_pb_truncate_post_date',''),(3264,46125,'_et_pb_old_content','<h1>Katrina Gray</h1><p><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Katrina_Gray_pp.jpg\" /><br />Associate Attorney</p><p>Katrina Gray comes to the LOMAD after representing injured workers in workers’ compensation claims. This experience allows her understanding and anticipation of strategy and approach from both sides – offering insight into achieving the goals of our clients. Katrina enjoys the work required to thoroughly piece together legal and medical arguments in support of clients’ interests and enjoys representing them at hearings.</p><p>A long-time military spouse, Katrina has lived on military bases and in numerous regions throughout the United States. A graduate of University of Buffalo Law School, she and her family relocated many times before ultimately returning to settle in the western New York area because of the quality of its schools and because it is a great place to raise a family.</p><p>A parent, stepparent and animal lover, Katrina resides in the Amherst area with her family, two enthusiastic dogs and a frequently annoyed cat. Her hobbies include drawing, painting and the sculpture of scale miniature pieces.</p>'),(3266,46125,'type',''),(3267,46125,'source_url',''),(3268,46125,'target_word_count',''),(3269,46125,'target_sections',''),(3270,46125,'content_type','new'),(3271,46125,'subtitle',''),(3272,46125,'_subtitle','field_page_subtitle_subtitle'),(3275,46125,'pagegoals','goal4'),(3276,46125,'pagelanguage','english'),(3277,46125,'pagetype','marketing'),(3331,46150,'_wp_attached_file','2021/08/VLB-webrdy-e1583244774191.png'),(3332,46150,'_aioseop_opengraph_settings','a:0:{}'),(3333,46150,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:37:\"2021/08/VLB-webrdy-e1583244774191.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"VLB-webrdy-e1583244774191-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"VLB-webrdy-e1583244774191-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:35:\"VLB-webrdy-e1583244774191-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"VLB-webrdy-e1583244774191-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"VLB-webrdy-e1583244774191-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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:{}}}'),(3334,46151,'_wp_attached_file','2021/08/TCleary-revised-e1564430301923.png'),(3335,46151,'_aioseop_opengraph_settings','a:0:{}'),(3336,46151,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:42:\"2021/08/TCleary-revised-e1564430301923.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"TCleary-revised-e1564430301923-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"TCleary-revised-e1564430301923-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:40:\"TCleary-revised-e1564430301923-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"TCleary-revised-e1564430301923-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"TCleary-revised-e1564430301923-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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:{}}}'),(3337,46152,'_wp_attached_file','2021/08/TXD1-e1542304527103.jpg'),(3338,46152,'_aioseop_opengraph_settings','a:0:{}'),(3339,46152,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:31:\"2021/08/TXD1-e1542304527103.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"TXD1-e1542304527103-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:31:\"TXD1-e1542304527103-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:29:\"TXD1-e1542304527103-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"TXD1-e1542304527103-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"TXD1-e1542304527103-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3340,46153,'_wp_attached_file','2021/08/SMM2-e1543856304373.jpg'),(3341,46153,'_aioseop_opengraph_settings','a:0:{}'),(3342,46153,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:31:\"2021/08/SMM2-e1543856304373.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"SMM2-e1543856304373-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:31:\"SMM2-e1543856304373-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:29:\"SMM2-e1543856304373-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"SMM2-e1543856304373-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"SMM2-e1543856304373-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3343,46154,'_wp_attached_file','2021/08/SLE-e1609438853360.png'),(3344,46154,'_aioseop_opengraph_settings','a:0:{}'),(3345,46154,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2021/08/SLE-e1609438853360.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"SLE-e1609438853360-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"SLE-e1609438853360-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"SLE-e1609438853360-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"SLE-e1609438853360-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"SLE-e1609438853360-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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:{}}}'),(3346,46155,'_wp_attached_file','2021/08/PBK-e1560351916512.png'),(3347,46155,'_aioseop_opengraph_settings','a:0:{}'),(3348,46155,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2021/08/PBK-e1560351916512.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"PBK-e1560351916512-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"PBK-e1560351916512-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"PBK-e1560351916512-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"PBK-e1560351916512-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"PBK-e1560351916512-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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:{}}}'),(3349,46156,'_wp_attached_file','2021/08/RBrashear1-e1544211193771.jpg'),(3350,46156,'_aioseop_opengraph_settings','a:0:{}'),(3351,46156,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:37:\"2021/08/RBrashear1-e1544211193771.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"RBrashear1-e1544211193771-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:37:\"RBrashear1-e1544211193771-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:35:\"RBrashear1-e1544211193771-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"RBrashear1-e1544211193771-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"RBrashear1-e1544211193771-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3352,46157,'_wp_attached_file','2021/08/NWalker-1-e1625232413654.png'),(3353,46157,'_aioseop_opengraph_settings','a:0:{}'),(3354,46157,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:36:\"2021/08/NWalker-1-e1625232413654.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"NWalker-1-e1625232413654-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"NWalker-1-e1625232413654-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:34:\"NWalker-1-e1625232413654-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"NWalker-1-e1625232413654-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"NWalker-1-e1625232413654-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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:{}}}'),(3355,46158,'_wp_attached_file','2021/08/MAD-Copy1-e1614865430869.png'),(3356,46158,'_aioseop_opengraph_settings','a:0:{}'),(3357,46158,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:36:\"2021/08/MAD-Copy1-e1614865430869.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"MAD-Copy1-e1614865430869-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"MAD-Copy1-e1614865430869-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:34:\"MAD-Copy1-e1614865430869-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"MAD-Copy1-e1614865430869-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"MAD-Copy1-e1614865430869-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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:{}}}'),(3358,46159,'_wp_attached_file','2021/08/NAD-webrdy-e1583244759983.png'),(3359,46159,'_aioseop_opengraph_settings','a:0:{}'),(3360,46159,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:37:\"2021/08/NAD-webrdy-e1583244759983.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"NAD-webrdy-e1583244759983-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"NAD-webrdy-e1583244759983-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:35:\"NAD-webrdy-e1583244759983-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"NAD-webrdy-e1583244759983-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"NAD-webrdy-e1583244759983-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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:{}}}'),(3361,46160,'_wp_attached_file','2021/08/KMM-e1527081490125.jpg'),(3362,46160,'_aioseop_opengraph_settings','a:0:{}'),(3363,46160,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2021/08/KMM-e1527081490125.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"KMM-e1527081490125-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:30:\"KMM-e1527081490125-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"KMM-e1527081490125-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"KMM-e1527081490125-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"KMM-e1527081490125-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3412,46163,'_wp_attached_file','2021/08/MXD-webrdy-e1583244740263.png'),(3413,46163,'_aioseop_opengraph_settings','a:0:{}'),(3414,46163,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:37:\"2021/08/MXD-webrdy-e1583244740263.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"MXD-webrdy-e1583244740263-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"MXD-webrdy-e1583244740263-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:35:\"MXD-webrdy-e1583244740263-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"MXD-webrdy-e1583244740263-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"MXD-webrdy-e1583244740263-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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:{}}}'),(3529,46171,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(3530,46171,'current_word_count','222'),(3531,46171,'author_byline','On Behalf of'),(3532,46171,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(3541,46171,'_edit_lock','1663936521:1'),(3544,46171,'_edit_last','1'),(3545,46171,'_wp_page_template','default'),(3547,46171,'du-meta-custom-footer','default'),(3548,46171,'_et_pb_post_hide_nav','default'),(3549,46171,'_et_pb_page_layout','et_right_sidebar'),(3550,46171,'_et_pb_side_nav','off'),(3551,46171,'_et_pb_use_builder',''),(3552,46171,'_et_pb_first_image',''),(3553,46171,'_et_pb_truncate_post',''),(3554,46171,'_et_pb_truncate_post_date',''),(3555,46171,'_et_pb_old_content',''),(3557,46171,'type',''),(3558,46171,'source_url',''),(3559,46171,'target_word_count',''),(3560,46171,'target_sections',''),(3561,46171,'content_type','new'),(3562,46171,'subtitle',''),(3563,46171,'_subtitle','field_page_subtitle_subtitle'),(3566,46171,'pagegoals','goal4'),(3567,46171,'pagelanguage','english'),(3568,46171,'pagetype','marketing'),(3626,46179,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(3627,46179,'current_word_count','254'),(3628,46179,'author_byline','On Behalf of'),(3629,46179,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(3661,46179,'_edit_lock','1663936416:1'),(3662,46179,'_edit_last','1'),(3664,46179,'_wp_page_template','default'),(3666,46179,'du-meta-custom-footer','default'),(3667,46179,'_et_pb_post_hide_nav','default'),(3668,46179,'_et_pb_page_layout','et_right_sidebar'),(3669,46179,'_et_pb_side_nav','off'),(3670,46179,'_et_pb_use_builder','on'),(3671,46179,'_et_pb_first_image',''),(3672,46179,'_et_pb_truncate_post',''),(3673,46179,'_et_pb_truncate_post_date',''),(3674,46179,'_et_pb_old_content','<h1>Thomas M. Dickinson</h1><p><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Thomas_Dickinson_pp.jpg\" /></p><p><strong>Office Manager</strong></p><h2>Contact Me:</h2><p><a role=\"link\" href=\"tel:+1-716-250-9286\" data-wpel-link=\"internal\">(716) 250-9286</a></p><p><a class=\"btn-email-staff\" role=\"link\" href=\"mailto:tdickinson@madwcdefense.com\">Email Me</a></p><p>Prior to joining [nap_names id=\"FIRM-NAME-1\"], Tom worked for Special Funds Conservation Committee for 23 years. During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of workers’ compensation hearings. During that time, Tom was also manager of the Albany office of Special Funds for two years and manager of the Buffalo office of Special Funds for eight years. During his time in management, and as a hearing representative, Tom gained valuable experience in claims analysis, litigation, legal research and writing, negotiation and resolution of issues. Over the years, Tom has worked closely and developed a strong working relationship with insurance carriers and their legal counsel as well as claimant’s attorneys.</p><p>Tom graduated from SUNY Buffalo State with a bachelor’s degree in economics with a minor in management. He has worked in the NYS Workers Compensation field since 1995 and has continued to gain experience and hone his skills over those years.</p><p>Tom grew up in Tonawanda, New York, and presently lives in Grand Island, New York, with his wife Jeannie, her dog and her chickens. He has three daughters: Jessika, age 26, has Prader Willi Syndrome and lives in a group home in Boston, New York, but is at home every weekend. Sari, age 20, is presently working at an aquaponics farm in Oahu, Hawaii. Isabel, age 18, is in New Orleans attending Loyola University. During his free time, Tom enjoys golf, skiing, reading and spending time with his wife.</p>'),(3676,46179,'type',''),(3677,46179,'source_url',''),(3678,46179,'target_word_count',''),(3679,46179,'target_sections',''),(3680,46179,'content_type','new'),(3681,46179,'subtitle',''),(3682,46179,'_subtitle','field_page_subtitle_subtitle'),(3685,46179,'pagegoals','goal4'),(3686,46179,'pagelanguage','english'),(3687,46179,'pagetype','marketing'),(3740,46189,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(3741,46189,'current_word_count','889'),(3742,46189,'author_byline','On Behalf of'),(3743,46189,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(3744,46189,'_edit_lock','1663689929:1'),(3745,46189,'_edit_last','1'),(3746,46189,'_wp_page_template','default'),(3748,46189,'du-meta-custom-footer','default'),(3749,46189,'_et_pb_post_hide_nav','default'),(3750,46189,'_et_pb_page_layout','et_right_sidebar'),(3751,46189,'_et_pb_side_nav','off'),(3752,46189,'_et_pb_use_builder','on'),(3753,46189,'_et_pb_first_image',''),(3754,46189,'_et_pb_truncate_post',''),(3755,46189,'_et_pb_truncate_post_date',''),(3756,46189,'_et_pb_old_content','<h1>The Team</h1><p><em><strong>[nap_names id=\"FIRM-NAME-3\"], has some of the most talented, interesting, and hardworking employees. Melissa has a unique talent for finding amazing people to help the office thrive and is proud of the work they do. Our attorneys bring over 70 years of combined experience in the workers’ compensation and litigation fields. All of our staff bring a variety of skills and experience to our ever-expanding team, creating one of the best teams in New York state. Check out our attorneys or our staff by clicking below!</strong></em></p><p><a href=\"/the-teams/workers-compensation-team/\">Click here to learn more about our Workers’ Compensation Team! </a></p><p><a href=\"/the-teams/litigation-team/\">Click here to learn more about our Litigation Team!</a></p>'),(3758,46189,'type',''),(3759,46189,'source_url',''),(3760,46189,'target_word_count',''),(3761,46189,'target_sections',''),(3762,46189,'content_type','new'),(3763,46189,'subtitle',''),(3764,46189,'_subtitle','field_page_subtitle_subtitle'),(3767,46189,'pagegoals','goal4'),(3768,46189,'pagelanguage','english'),(3769,46189,'pagetype','marketing'),(3771,46191,'_aioseop_opengraph_settings','a:0:{}'),(3772,46191,'current_word_count','4357'),(3773,46191,'author_byline','On Behalf of'),(3774,46191,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(3779,46193,'_aioseop_opengraph_settings','a:0:{}'),(3780,46193,'current_word_count','1143'),(3781,46193,'author_byline','On Behalf of'),(3782,46193,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(3783,46191,'_edit_lock','1663936490:1'),(3784,46191,'_edit_last','1'),(3786,46193,'_edit_lock','1663937563:1'),(3787,46194,'_wp_attached_file','2021/08/VLB-webrdy-250x250-1.png'),(3788,46194,'_aioseop_opengraph_settings','a:0:{}'),(3789,46194,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:32:\"2021/08/VLB-webrdy-250x250-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"VLB-webrdy-250x250-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:30:\"VLB-webrdy-250x250-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3790,46195,'_wp_attached_file','2021/08/SMM2-250x250-1.jpg'),(3791,46195,'_aioseop_opengraph_settings','a:0:{}'),(3792,46195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:26:\"2021/08/SMM2-250x250-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"SMM2-250x250-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:24:\"SMM2-250x250-1-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3793,46196,'_wp_attached_file','2021/08/PBK-250x250-1.png'),(3794,46196,'_aioseop_opengraph_settings','a:0:{}'),(3795,46196,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:25:\"2021/08/PBK-250x250-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"PBK-250x250-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"PBK-250x250-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3796,46197,'_wp_attached_file','2021/08/NAD-webrdy-250x250-1.png'),(3797,46197,'_aioseop_opengraph_settings','a:0:{}'),(3798,46197,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:32:\"2021/08/NAD-webrdy-250x250-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"NAD-webrdy-250x250-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:30:\"NAD-webrdy-250x250-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3799,46198,'_wp_attached_file','2021/08/MAD-Copy1-250x250-1.png'),(3800,46198,'_aioseop_opengraph_settings','a:0:{}'),(3801,46198,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:31:\"2021/08/MAD-Copy1-250x250-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"MAD-Copy1-250x250-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:29:\"MAD-Copy1-250x250-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3802,46199,'_wp_attached_file','2021/08/MXD-webrdy-250x250-1.png'),(3803,46199,'_aioseop_opengraph_settings','a:0:{}'),(3804,46199,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:32:\"2021/08/MXD-webrdy-250x250-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"MXD-webrdy-250x250-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:30:\"MXD-webrdy-250x250-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3805,46200,'_wp_attached_file','2021/08/KG2-250x250-1.jpg'),(3806,46200,'_aioseop_opengraph_settings','a:0:{}'),(3807,46200,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:25:\"2021/08/KG2-250x250-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"KG2-250x250-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"KG2-250x250-1-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3808,46201,'_wp_attached_file','2021/08/KMM-250x250-1.jpg'),(3809,46201,'_aioseop_opengraph_settings','a:0:{}'),(3810,46201,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:25:\"2021/08/KMM-250x250-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"KMM-250x250-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"KMM-250x250-1-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3811,46202,'_wp_attached_file','2021/08/JBC-Partner-250x250-1.jpg'),(3812,46202,'_aioseop_opengraph_settings','a:0:{}'),(3813,46202,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:33:\"2021/08/JBC-Partner-250x250-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"JBC-Partner-250x250-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:31:\"JBC-Partner-250x250-1-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3814,46203,'_wp_attached_file','2021/08/CEC-webrdy-250x250-1.png'),(3815,46203,'_aioseop_opengraph_settings','a:0:{}'),(3816,46203,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:32:\"2021/08/CEC-webrdy-250x250-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"CEC-webrdy-250x250-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:30:\"CEC-webrdy-250x250-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3817,46204,'_wp_attached_file','2021/08/BKP1-250x250-1.jpg'),(3818,46204,'_aioseop_opengraph_settings','a:0:{}'),(3819,46204,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:26:\"2021/08/BKP1-250x250-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"BKP1-250x250-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:24:\"BKP1-250x250-1-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3820,46205,'_wp_attached_file','2021/08/BTS-250x250-1.png'),(3821,46205,'_aioseop_opengraph_settings','a:0:{}'),(3822,46205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:25:\"2021/08/BTS-250x250-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"BTS-250x250-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"BTS-250x250-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3823,46206,'_wp_attached_file','2021/08/ADH-250x250-1.png'),(3824,46206,'_aioseop_opengraph_settings','a:0:{}'),(3825,46206,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:25:\"2021/08/ADH-250x250-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"ADH-250x250-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"ADH-250x250-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3826,46207,'_wp_attached_file','2021/08/SLE-250x250-1.png'),(3827,46207,'_aioseop_opengraph_settings','a:0:{}'),(3828,46207,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:25:\"2021/08/SLE-250x250-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"SLE-250x250-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"SLE-250x250-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3829,46208,'_wp_attached_file','2021/08/TXD1-250x250-1.jpg'),(3830,46208,'_aioseop_opengraph_settings','a:0:{}'),(3831,46208,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:26:\"2021/08/TXD1-250x250-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"TXD1-250x250-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:24:\"TXD1-250x250-1-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3832,46209,'_wp_attached_file','2021/08/RBrashear1-250x250-1.jpg'),(3833,46209,'_aioseop_opengraph_settings','a:0:{}'),(3834,46209,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:32:\"2021/08/RBrashear1-250x250-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"RBrashear1-250x250-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:30:\"RBrashear1-250x250-1-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3835,46210,'_wp_attached_file','2021/08/JMC-250x250-1.png'),(3836,46210,'_aioseop_opengraph_settings','a:0:{}'),(3837,46210,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:25:\"2021/08/JMC-250x250-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"JMC-250x250-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"JMC-250x250-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3838,46211,'_wp_attached_file','2021/08/NWalker-1-250x250-1.png'),(3839,46211,'_aioseop_opengraph_settings','a:0:{}'),(3840,46211,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:31:\"2021/08/NWalker-1-250x250-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"NWalker-1-250x250-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:29:\"NWalker-1-250x250-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3841,46212,'_wp_attached_file','2021/08/JLM-250x250-1.png'),(3842,46212,'_aioseop_opengraph_settings','a:0:{}'),(3843,46212,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:25:\"2021/08/JLM-250x250-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"JLM-250x250-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"JLM-250x250-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3844,46213,'_wp_attached_file','2021/08/JLG-250x250-1.png'),(3845,46213,'_aioseop_opengraph_settings','a:0:{}'),(3846,46213,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:25:\"2021/08/JLG-250x250-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"JLG-250x250-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"JLG-250x250-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3847,46214,'_wp_attached_file','2021/08/JCW1-250x250-1.png'),(3848,46214,'_aioseop_opengraph_settings','a:0:{}'),(3849,46214,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:26:\"2021/08/JCW1-250x250-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"JCW1-250x250-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:24:\"JCW1-250x250-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3850,46215,'_wp_attached_file','2021/08/HEK-250x250-1.png'),(3851,46215,'_aioseop_opengraph_settings','a:0:{}'),(3852,46215,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:25:\"2021/08/HEK-250x250-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"HEK-250x250-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"HEK-250x250-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3853,46216,'_wp_attached_file','2021/08/DHF-webrdy-250x250-1.png'),(3854,46216,'_aioseop_opengraph_settings','a:0:{}'),(3855,46216,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:32:\"2021/08/DHF-webrdy-250x250-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"DHF-webrdy-250x250-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:30:\"DHF-webrdy-250x250-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3856,46217,'_wp_attached_file','2021/08/ECamp1-250x250-1.jpg'),(3857,46217,'_aioseop_opengraph_settings','a:0:{}'),(3858,46217,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:28:\"2021/08/ECamp1-250x250-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"ECamp1-250x250-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:26:\"ECamp1-250x250-1-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3860,46218,'_wp_attached_file','2021/08/BTS-e1609438627154.png'),(3861,46218,'_aioseop_opengraph_settings','a:0:{}'),(3862,46218,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2021/08/BTS-e1609438627154.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"BTS-e1609438627154-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"BTS-e1609438627154-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"BTS-e1609438627154-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"BTS-e1609438627154-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"BTS-e1609438627154-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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:{}}}'),(3888,46191,'_wp_page_template','default'),(3889,46191,'du-meta-custom-footer','default'),(3890,46191,'_et_pb_post_hide_nav','default'),(3891,46191,'_et_pb_page_layout','et_right_sidebar'),(3892,46191,'_et_pb_side_nav','off'),(3893,46191,'_et_pb_use_builder','on'),(3894,46191,'_et_pb_first_image',''),(3895,46191,'_et_pb_truncate_post',''),(3896,46191,'_et_pb_truncate_post_date',''),(3897,46191,'_et_pb_old_content','<h1>Workers’ Compensation Defense Team</h1><p>The workers\' compensation legal team at [nap_names id=\"FIRM-NAME-1\"], boasts more than 130 years of combined experience. We have the knowledge and skills to effectively and efficiently defend workers\' compensation claims from a wide range of industries. By partnering with our clients, we have successfully defended thousands of claims for New York businesses. To learn more about our team members, read the profiles below.</p><p>If you would like to speak with us about defending your workers\' compensation claim, call [nap_phone id=\"LOCAL-REGULAR-NUMBER-1\"] or fill out our <a href=\"/contact/\">online contact form</a>.</p><h2>Our Attorneys</h2><p><a href=\"/about/melissa-a-day/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/MAD-Copy1-250x250-1.png\" /></a></p><h3>Melissa A. Day</h3><h4>Managing Attorney</h4><p>Owner and managing attorney of [nap_names id=\"FIRM-NAME-3\"], in Amherst, exclusively practices workers’ compensation defense. Melissa began her practice defending workers’ compensation insurance carriers. <a href=\"/about/melissa-a-day/\">Read more</a></p><p><a href=\"/about/james-b-cousins/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/JBC-Partner-250x250-1.jpg\" /></a></p><h3>James B. Cousins</h3><h4>Partner</h4><p>James has dedicated his entire career to the practice of workers’ compensation law, honing both his knowledge of the hyper-technical and fact-sensitive case law as well as his litigation skills. <a href=\"/about/james-b-cousins/\">Read more</a></p><p><a href=\"/attorney/prince-brian-k/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/BKP1-250x250-1.jpg\" /></a></p><h3>Brian K. Prince</h3><h4>Associate Attorney</h4><p>Brian has spent the majority of his career practicing workers\' compensation law at the Special Funds Conservation Committee, where he completed over 5,500 hearings across western and central New York. <a href=\"/attorney/prince-brian-k/\">Read more</a></p><p><a href=\"/about/kristin-m-machelor/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/KMM-250x250-1.jpg\" /></a></p><h3>Kristin M. Machelor</h3><h4>Of Counsel</h4><p>Admitted to practice in New York 1999. Education: SUNY at Buffalo School of Law, J.D. 1998 SUNY at Buffalo, B.A. 1994 Kristin Machelor has been defending workers’ compensation claims since 2005. <a href=\"/about/kristin-m-machelor/\">Read more</a></p><p><a href=\"/about/shannan-m-mackey/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/SMM2-250x250-1.jpg\" /></a></p><h3>Shannan M. Mackey</h3><h4>Associate Attorney</h4><p>Shannan has exclusively practiced workers’ compensation defense for the Special Funds Conservation Committee from 2013 through 2018.  At Special Funds, Shannan specialized in litigation regarding weaning from opioid narcotics. <a href=\"/about/shannan-m-mackey/\">Read more</a></p><p><a href=\"/about/katrina-gray/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/KG2-250x250-1.jpg\" /></a></p><h3>Katrina Gray</h3><h4>Associate Attorney</h4><p>Katrina Gray comes to [nap_names id=\"FIRM-NAME-3\"], after having representing injured workers in workers’ compensation claims. This experience allows her understanding and anticipation of strategy. <a href=\"/about/katrina-gray/\">Read more</a></p><p><a href=\"/about/paul-b-kornack/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/PBK-250x250-1.png\" /></a></p><h3>Paul B. Kornacki</h3><h4>Associate Attorney</h4><p>Paul is an associate attorney practicing New York state workers’ compensation law exclusively. Prior to joining [nap_names id=\"FIRM-NAME-3\"], Paul successfully represented claimants for 17 years. <a href=\"/about/paul-b-kornack/\">Read more</a></p><p><a href=\"/attorney/christman-cassandra-e/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/CEC-webrdy-250x250-1.png\" /></a></p><h3>Cassandra E. Christman</h3><h4>Associate Attorney</h4><p>Cassandra is an associate attorney and was admitted to practice in the state of New York in 2018. Cassandra’s current practice is focused solely in the area of workers’ compensation. <a href=\"/attorney/christman-cassandra-e/\">Read more</a></p><p><a href=\"/about/vicki-l-buehler/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/VLB-webrdy-250x250-1.png\" /></a></p><h3>Vicki L. Buehler</h3><h4>Associate Attorney</h4><p>Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law. Prior to joining [nap_names id=\"FIRM-NAME-3\"], she successfully represented claimants. <a href=\"/about/vicki-l-buehler/\">Read more</a></p><p><a href=\"/about/melanie-a-daly/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/MXD-webrdy-e1583244740263.png\" /></a></p><h3>Melanie A. Daly</h3><h4>Associate Attorney</h4><p>Melanie is an associate attorney who was admitted to practice in the state of New York in 2017. Prior work experience includes investigations for National Security Clearances, Melanie worked as.. <a href=\"/about/melanie-a-daly/\">Read more</a></p><p><a href=\"/about/neil-a-diegelman/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/NAD-webrdy-250x250-1.png\" /></a></p><h3>Neil A. Diegelman</h3><h4>Associate Attorney</h4><p>Neil began practicing workers’ compensation defense at the Special Funds Conservation Committee. Neil’s primary focus has continued, defending insurance carriers, third-party administrators and self-insured employers. Over five years of handling.. <a href=\"/about/neil-a-diegelman/\">Read More</a></p><p><a href=\"/attorney/hatten-alexis-d/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/ADH-250x250-1.png\" /></a></p><h3>Alexis D. Hatten</h3><h4>Associate Attorney</h4><p>Alexis is a 2012 graduate of Albany Law School and 2009 graduate from Loyola University Maryland. During law school, Alexis interned with the New York State Office of the State.. <a href=\"/attorney/hatten-alexis-d/\">Read more</a></p><p><a href=\"/about/brendan-t-shannon/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/BTS-250x250-1.png\" /></a></p><h3>Brendan T. Shannon</h3><h4>Associate Attorney</h4><p>Brendan presently works as a law clerk, pending admission to the New York State Bar; after which, he will practice as an associate attorney. Notably, Brendan passed the New York <a href=\"/about/brendan-t-shannon/\">Read More</a></p><h3> </h3><h3><strong>Legal Assistants And Paralegals</strong></h3><p><a href=\"/about/elena-n-camp/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/ECamp1-250x250-1.jpg\" /></a></p><h3>Elena N. Camp</h3><h4>Assistant Office Manager</h4><p>Elena is excited to a part of a lively group whose foremost goal is to foster strong partnerships with their clients, leading to a proactive rather than a reactive approach. <a href=\"/about/elena-n-camp/\">Read more</a></p><p><a href=\"/about/rebecca-c-brashear/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/RBrashear1-250x250-1.jpg\" /></a></p><h3>Rebecca C. Brashear</h3><h4>Legal Assistant</h4><p>Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants. When the opportunity arose for her to see workers’ compensation. <a href=\"/about/rebecca-c-brashear/\">Read more</a></p><p><a href=\"/about/najee-walker/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/NWalker-1-250x250-1.png\" /></a></p><h3>Najee Walker</h3><h4>Marketing Assistant/Billing Coordinator</h4><p>Najee Walker comes to us with a strong background in journalism and marketing. Graduating with a bachelor’s degree in communication studies from Buffalo State College, Najee has had his hands.. <a href=\"/about/najee-walker/\">Read more</a></p><p><a href=\"/about/thomas-m-dickinson/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/TXD1-250x250-1.jpg\" /></a></p><h3>Thomas M. Dickinson</h3><h4>Legal Analyst</h4><p>Prior to joining [nap_names id=\"FIRM-NAME-3\"], Tom worked for Special Funds Conservation Committee for 23 years. During his tenure at Special Funds, Tom defended the interests.. <a href=\"/about/thomas-m-dickinson/\">Read more</a></p><p><a href=\"/about/daniel-h-flynn/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/DHF-webrdy-250x250-1.png\" /></a></p><h3>Daniel H. Flynn</h3><h4>Deposition Coordinator</h4><p>Daniel is originally from Syracuse, New York, and moved to Buffalo in 2013 to attend Buffalo State College. He graduated in 2017 with a bachelor’s degree in history. He is currently <a href=\"/about/daniel-h-flynn/\">Read more</a></p><p><a href=\"/about/jillian-m-chavers/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/JMC-250x250-1.png\" /></a></p><h3>Jillian M. Chavers</h3><h4>Hearing Coordinator</h4><p>Jillian comes to us with extensive experience in the legal field. She holds an associate degree in paralegal studies from Bryan and Stratton College, where she graduated with highest honors. <a href=\"/about/jillian-m-chavers/\">Read more</a></p><p><a href=\"/about/susan-eick/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/SLE-250x250-1.png\" /></a></p><h3>Susan Eick</h3><h4>Legal Assistant</h4><p>Susan has her BA in English literature from St. Lawrence University. In 2000, she started at a local law firm as receptionist. Shortly thereafter she worked her way to a.. <a href=\"/about/susan-eick/\">Read more</a></p><p><a href=\"/about/hannah-e-kim/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/HEK-250x250-1.png\" /></a></p><h3>Hannah E. Kim</h3><h4>Deposition Coordinator</h4><p>Hannah graduated from the University at Buffalo with a bachelors in history. During undergrad, she interned with a senate district office where she helped with community outreach. She believes that.. <a href=\"/about/hannah-e-kim/\">Read more</a></p><p><a href=\"/about/jody-l-guiher/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/JLG-250x250-1.png\" /></a></p><h3>Jody L. Guiher</h3><h4>Legal Assistant</h4><p>Jody is a retired army combat veteran. Jody has served 13 years in the military with one combat tour in Baghdad, Iraq and one combat tour in Afghanistan. In the <a href=\"/about/jody-l-guiher/\">Read more</a></p><p><a href=\"/about/jenny-l-malkowski/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/JLM-250x250-1.png\" /></a></p><h3>Jenny L. Malkowski</h3><h4>Legal Assistant</h4><p>Jenny graduated from Erie Community College with an associate degree in business administration. She has worked extensively in the legal field for more than 10 years in various areas of.. <a href=\"/about/jenny-l-malkowski/\">Read more</a></p><p><a href=\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/justice-c-williams/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/JCW1-250x250-1.png\" /></a></p><h3>Justice C. Williams</h3><h4>Legal Assistant</h4><p>Justice came to us fresh out of college with the associate’s degree as an applied science paralegal. She has always had a deep interest in law and is.. <a href=\"/about/justice-c-williams/\">Read more</a></p>'),(3898,46191,'type',''),(3899,46191,'source_url',''),(3900,46191,'target_word_count',''),(3901,46191,'target_sections',''),(3902,46191,'content_type','new'),(3903,46191,'subtitle',''),(3904,46191,'_subtitle','field_page_subtitle_subtitle'),(3907,46191,'pagegoals','goal4'),(3908,46191,'pagelanguage','english'),(3909,46191,'pagetype','marketing'),(3915,46222,'_aioseop_opengraph_settings','a:0:{}'),(3916,46222,'current_word_count','878'),(3917,46222,'author_byline','On Behalf of'),(3918,46222,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(3919,46222,'_edit_lock','1657651540:4631'),(3920,46223,'_wp_attached_file','2021/08/TCleary-revised-250x250-1.png'),(3921,46223,'_aioseop_opengraph_settings','a:0:{}'),(3922,46223,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:37:\"2021/08/TCleary-revised-250x250-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"TCleary-revised-250x250-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:35:\"TCleary-revised-250x250-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3923,46224,'_wp_attached_file','2021/08/KBD-250x250-1.png'),(3924,46224,'_aioseop_opengraph_settings','a:0:{}'),(3925,46224,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:25:\"2021/08/KBD-250x250-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"KBD-250x250-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"KBD-250x250-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3926,46222,'_edit_last','1991'),(3927,46222,'_wp_page_template','default'),(3929,46222,'du-meta-custom-footer','default'),(3930,46222,'_et_pb_post_hide_nav','default'),(3931,46222,'_et_pb_page_layout','et_right_sidebar'),(3932,46222,'_et_pb_side_nav','off'),(3933,46222,'_et_pb_use_builder','on'),(3934,46222,'_et_pb_first_image',''),(3935,46222,'_et_pb_truncate_post',''),(3936,46222,'_et_pb_truncate_post_date',''),(3937,46222,'_et_pb_old_content','<h1>[nap_names id=\"FIRM-NAME-1\"], Litigation Team</h1>\r\nOur litigation practice team focuses on approaching each case with a mindset of challenging the status quo by providing insightful and common sense legal representation to our clients. Our legal team is dedicated to each client’s case, using creativity, attention to detail and a dogged persistence in the pursuit of success for our clients. To get results, we build partnerships with our clients and treat every case as if it were the only case we have.\r\n<h2>Representing Clients At Every Stage Of The Legal Process</h2>\r\nDefending actions in both state and federal courts throughout New York state, we are skilled in handling all aspects of litigation from investigation through trial. We also incorporate, when appropriate, alternatives to trial such as mediation and arbitration for successful resolution of cases. We find creative ways to resolve matters in an aggressive and cost-effective manner.\r\n\r\nOur experience, commitment to clients and track record of success have earned us a reputation as a  unique and dependable law firm. We handle a full range of legal matters including:\r\n<ul>\r\n 	<li>Civil Defense Litigation, including General Negligence</li>\r\n 	<li>Motor Vehicle Accidents</li>\r\n 	<li>Toxic Torts</li>\r\n 	<li>Premise Liability</li>\r\n</ul>\r\nTo contact us, call [nap_phone id=\"LOCAL-REGULAR-NUMBER-1\"] or fill out our <a href=\"/contact/\">online contact form</a>.\r\n<h2><a href=\"/about/kristen-b-degnan/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/KBD-250x250-1.png\" /></a>\r\nKristen B. Degnan</h2>\r\n<h3>Of Counsel</h3>\r\nKristen Degnan is a trial attorney experienced in civil defense litigation in the areas of premises and automobile liability, lead paint, labor law, products liability, No-fault and toxic torts. <a href=\"/about/kristen-b-degnan/\">Read more</a>\r\n\r\n<a href=\"/about/teresa-cleary/\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/TCleary-revised-250x250-1.png\" /></a>\r\n<h2>Teresa Cleary</h2>\r\n<h3>Paralegal</h3>\r\nTeresa is a certified paralegal and has a vast background of over 15 years in the legal field. She has had an opportunity to have had legal experience in many.. <a href=\"/about/teresa-cleary/\">Read more</a>'),(3939,46222,'type',''),(3940,46222,'source_url',''),(3941,46222,'target_word_count',''),(3942,46222,'target_sections',''),(3943,46222,'content_type','new'),(3944,46222,'subtitle',''),(3945,46222,'_subtitle','field_page_subtitle_subtitle'),(3948,46222,'pagegoals','goal4'),(3949,46222,'pagelanguage','english'),(3950,46222,'pagetype','marketing'),(3957,46227,'_wp_attached_file','2021/08/MULTI-114764-1-ap3.jpg'),(3958,46227,'_aioseop_opengraph_settings','a:0:{}'),(3959,46227,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:575;s:6:\"height\";i:794;s:4:\"file\";s:30:\"2021/08/MULTI-114764-1-ap3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-507x700.jpg\";s:5:\"width\";i:507;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-362x500.jpg\";s:5:\"width\";i:362;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-575x630.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"MULTI-114764-1-ap3-54x75.jpg\";s:5:\"width\";i:54;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-575x675.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-480x663.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:663;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3960,46193,'_edit_last','1'),(3961,46193,'_wp_page_template','default'),(3963,46193,'du-meta-custom-footer','default'),(3964,46193,'_et_pb_post_hide_nav','default'),(3965,46193,'_et_pb_page_layout','et_right_sidebar'),(3966,46193,'_et_pb_side_nav','off'),(3967,46193,'_et_pb_use_builder','on'),(3968,46193,'_et_pb_first_image',''),(3969,46193,'_et_pb_truncate_post',''),(3970,46193,'_et_pb_truncate_post_date',''),(3971,46193,'_et_pb_old_content','<h1>Careers</h1><p>[nap_names id=\"FIRM-NAME-3\"], is looking for talented people to join the “LOMAD” team. If you feel like this is you, then we encourage you to apply now!</p><p>Send a resume and cover letter to <a href=\"mailto:Careers@madwcdefense.com\">Careers@madwcdefense.com</a> to begin the process! You can see our list of benefits below.</p><p><strong>What do our employees say about working at LOMAD and the management?<br /></strong></p><p><em>Employee to Supervisor:</em></p><p>\"...and in case I don’t say it enough, I so appreciate everything you guys do for us!!! When I applied for this job, I applied on a whim at around 4:00 am. I knew nothing about workers’ comp and didn’t even know whether I’d be interested, but I really felt like I knew you forever at that interview and I really wanted the job after I met you! You have become family to me and I’m so grateful you gave me the opportunity to work with you! Thanks for everything you do for us. You really do make it so easy to stay motivated because I truly feel so appreciated.\"</p><p><em>Employee to supervisor:</em></p><p>I wanted to tell you that it brings me so much joy being a part of your team here. The field of law you specialize in is certainly fascinating to me, but it’s not solely this line of work that uplifts me. The culture you’ve created here, the commitment to excellence in both your product and the quality of delivery, the emphasis on camaraderie and collaboration…I’m really amazed.</p><p>I wanted to share this today because I had been thinking about the fact that I’ve only been back one week and already made so many great memories! (and learned a ton!) I’m proud to be your employee and I am grateful to contribute to this company. Thank you for everything!</p><p><em>Employee to Supervisor:</em></p><p>“Thank you both for making this a great place to work... Great leadership makes for eager, useful, and happy employees and the leadership I have experienced here is the best. I\'m very grateful for you allowing me to grow with your firm!”</p><p><em>Employee to Supervisors:</em></p><p>\"A little more than seven years ago, Melissa thought she might need a “part time” staff member. She put some feelers out, and those feelers found me through an attorney I used to work with (who may have had an inkling that I was unhappy where I was).</p><p>I had a great phone interview with Melissa and then a fantastic in-person interview. During the in-person interview, I met James, who accused me of taking a shower, dressing too nice, and possibly being too nice to work for them. It was effortless; the conversation, the banter, the atmosphere.</p><p>After those interviews, I made the life-altering decision to give notice to my then employer. It was an easy decision to make, as I had been unhappy there for a LOOONG time.</p><p>When I was hired (full time, by the way), there were five attorneys and three staff members (including me) – 8 of us. We now have 35 employees in total (including our fearless leaders). It’s not very often that you get in on the “ground floor” of a company. I am so thankful to have had – and continue to have – the opportunity and privilege to witness both the growth and the growing pains. It has been the most incredible ride!</p><p>Melissa and James – thank you for taking that chance seven years ago in welcoming me into your work family! I said it earlier to Melissa, and I’ll say it again (because I mean it): I’ve loved you for seven long years!\"</p><p><em>Employee to Supervisor:</em></p><p>“Seeing your response (and your email) honestly helps me to understand some things I’ve seen at your firm that I found baffling. Attorneys who are respectful to legal staff? A supervisor who checks in on his employees? Staff climbing over each other to take the blame for a mistake? How eerie… I’ve had a rather short career, but it seems like cultivating this kind of work culture starts with leadership.</p><p>So thank you for your work.”</p><p><em>Employee to Supervisors:</em></p><p>“Thank you! It’s not about the money (but it is) but you are both great bosses.</p><p>I don’t know what our new employee did and didn’t tell you, or what his/her former employer did or didn’t, but I know through the grapevine that our new employee’s experience was really bad there. When I heard he/she was looking, our new employee took some convincing to even apply because he/she wanted nothing more to do with comp. I told our new employee how great you both are as employers. About the culture you created. And that the reason I stayed in comp when I really wanted to pursue other employment was because of the awesome vibe I got from the firm. And how that vibe was correct.”</p><h2>Check Out All Our Benefits</h2><p><strong>Paid Time Off (PTO)</strong></p><p>The firm offers Paid Time Off for all new hired employees. Employees who work at least 30 hours per week, accrue 10 days of PTO per year to start, with the option to \"borrow\" time. Additionally, non-exempt employees may request that all remaining PTO time as of December 31st, be brought back by the firm, with approval from the managing attorney.</p><p>Exempt employees are entitled to 15 days of PTO per calendar year.</p><p><b>Sick Time</b></p><p>Even before NY mandated sick leave, LOMAD gave its employees time off for illness and other needs. Each employee is entitled to 5 days of sick time in accordance with NY Sick Leave.</p><p><strong>Holidays</strong></p><p>The firm offers 10 paid holidays: New Year\'s Day, Martin Luther King, Jr., Presidents\' Day, Memorial Day, Independence Day, Labor Day, Thanksgiving Day, Day After Thanksgiving, Christmas Day and a floating holiday.</p><p><strong>Retirement/401(k)</strong></p><p>[nap_names id=\"FIRM-NAME-3\"], offers a competitive 401(k) plan that all staff and attorneys are eligible to participate in on the first day of the quarter following 90 days of employment with a 4% employer match for 5% employee contribution.</p><p><strong>Health Care Benefits</strong></p><p>The firm currently provides local full-time staff and attorneys health coverage at no cost to the employee. Preventative health care services covered full in-network and hospital cash benefits.</p><ul><li><strong>Vision Plan: </strong>The firm provides full-time staff and attorneys vision coverage at no cost to the employee.</li><li><strong>Dental Plan: </strong>The firm provides full-time staff and attorneys dental coverage at no cost to the employee.</li></ul><p><strong>Short and Long Term Disability Benefits</strong></p><p>The firm provides full-time staff and attorneys short-term and long-term disability benefits at no cost to the employee. Short-term disability begins after 7 days of the date of disability. Long-term benefits for up to age 65, or, if under age 60, on the date disability begins.</p><p><strong>Life Insurance</strong></p><p>The firm provides full-time staff and attorneys life insurance benefits and accidental death benefits at no cost to the employee.</p><p> </p>'),(3973,46193,'type',''),(3974,46193,'source_url',''),(3975,46193,'target_word_count',''),(3976,46193,'target_sections',''),(3977,46193,'content_type','new'),(3978,46193,'subtitle',''),(3979,46193,'_subtitle','field_page_subtitle_subtitle'),(3982,46193,'pagegoals','goal4'),(3983,46193,'pagelanguage','english'),(3984,46193,'pagetype','marketing'),(3986,46229,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(3987,46229,'current_word_count','22'),(3988,46229,'author_byline','On Behalf of'),(3989,46229,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(3990,46229,'_edit_lock','1663608613:1'),(3991,46229,'_edit_last','1'),(3992,46229,'_wp_page_template','default'),(3994,46229,'du-meta-custom-footer','default'),(3995,46229,'_et_pb_post_hide_nav','default'),(3996,46229,'_et_pb_page_layout','et_right_sidebar'),(3997,46229,'_et_pb_side_nav','off'),(3998,46229,'_et_pb_use_builder','on'),(3999,46229,'_et_pb_first_image',''),(4000,46229,'_et_pb_truncate_post',''),(4001,46229,'_et_pb_truncate_post_date',''),(4002,46229,'_et_pb_old_content','<h1>Client Resources</h1><p><a href=\"https://thelomad.com/getmad.today/lomadtv/\">LOMAD TV</a></p><p><a href=\"https://thelomad.com/getmad.today/news-events-articles/lomad-newsletter/\">LOMAD Magazine</a></p><p><a href=\"https://thelomad.com/getmad.today/news-events-articles/\">LOMAD Articles</a></p><p><a href=\"https://thelomad.com/getmad.today/client-resources/case-law-updates-lomad-case-law-updates/\">LOMAD Case Law Updates</a></p><p><a href=\"/client-resources/ppd-caps/\">PPD Caps</a></p><p><a href=\"/client-resources/max-rates/\">Max Rates</a></p><p><a href=\"/client-resources/slu-php/\">SLU/PHP</a></p><p><a href=\"https://www.linkedin.com/groups/2302270/\" target=\"_blank\" rel=\"noopener\">New York Workers\' Compensation Forum</a></p>'),(4004,46229,'type',''),(4005,46229,'source_url',''),(4006,46229,'target_word_count',''),(4007,46229,'target_sections',''),(4008,46229,'content_type','new'),(4009,46229,'subtitle',''),(4010,46229,'_subtitle','field_page_subtitle_subtitle'),(4013,46229,'pagegoals','goal4'),(4014,46229,'pagelanguage','english'),(4015,46229,'pagetype','marketing'),(4017,46231,'_aioseop_opengraph_settings','a:0:{}'),(4018,46231,'current_word_count','70'),(4019,46231,'author_byline','On Behalf of'),(4020,46231,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(4021,46232,'_aioseop_opengraph_settings','a:0:{}'),(4022,46232,'current_word_count','11'),(4023,46232,'author_byline','On Behalf of'),(4024,46232,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(4025,46233,'_aioseop_opengraph_settings','a:0:{}'),(4026,46233,'current_word_count','93'),(4027,46233,'author_byline','On Behalf of'),(4028,46233,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(4029,46234,'_aioseop_opengraph_settings','a:0:{}'),(4030,46234,'current_word_count','27'),(4031,46234,'author_byline','On Behalf of'),(4032,46234,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(4033,46235,'_aioseop_opengraph_settings','a:0:{}'),(4034,46235,'current_word_count','30'),(4035,46235,'author_byline','On Behalf of'),(4036,46235,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(4037,46236,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(4038,46236,'current_word_count','100'),(4039,46236,'author_byline','On Behalf of'),(4040,46236,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(4041,46231,'_edit_lock','1663609457:1'),(4042,46232,'_edit_lock','1635349450:1991'),(4043,46233,'_edit_lock','1663609455:1'),(4044,46234,'_edit_lock','1663609507:1'),(4045,46235,'_edit_lock','1635349415:1991'),(4046,46236,'_edit_lock','1663698445:1'),(4047,46231,'_edit_last','1'),(4048,46231,'_wp_page_template','default'),(4050,46231,'du-meta-custom-footer','default'),(4051,46231,'_et_pb_post_hide_nav','default'),(4052,46231,'_et_pb_page_layout','et_right_sidebar'),(4053,46231,'_et_pb_side_nav','off'),(4054,46231,'_et_pb_use_builder','on'),(4055,46231,'_et_pb_first_image',''),(4056,46231,'_et_pb_truncate_post',''),(4057,46231,'_et_pb_truncate_post_date',''),(4058,46231,'_et_pb_old_content','<h1>PPD Caps</h1>\r\n<table>\r\n<thead>\r\n<tr>\r\n<th>\r\n<div>% Loss of Wage Earning Capacity</div></th>\r\n<th>\r\n<div>Maximum Weeks of PPD Benefits</div></th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>Greater than 95%</td>\r\n<td>525</td>\r\n</tr>\r\n<tr>\r\n<td>Greater than 90% to 95%</td>\r\n<td>500</td>\r\n</tr>\r\n<tr>\r\n<td>Greater than 85% to 90%</td>\r\n<td>475</td>\r\n</tr>\r\n<tr>\r\n<td>Greater than 80% to 85%</td>\r\n<td>450</td>\r\n</tr>\r\n<tr>\r\n<td>Greater than 75% to 80%</td>\r\n<td>425</td>\r\n</tr>\r\n<tr>\r\n<td>Greater than 70% to 75%</td>\r\n<td>400</td>\r\n</tr>\r\n<tr>\r\n<td>Greater than 60% to 70%</td>\r\n<td>375</td>\r\n</tr>\r\n<tr>\r\n<td>Greater than 50% to 60%</td>\r\n<td>350</td>\r\n</tr>\r\n<tr>\r\n<td>Greater than 40% to 50%</td>\r\n<td>300</td>\r\n</tr>\r\n<tr>\r\n<td>Greater than 30% to 40%</td>\r\n<td>275</td>\r\n</tr>\r\n<tr>\r\n<td>Greater than 15% to 30%</td>\r\n<td>250</td>\r\n</tr>\r\n<tr>\r\n<td>0% to 15%</td>\r\n<td>225</td>\r\n</tr>\r\n</tbody>\r\n</table>'),(4060,46231,'type',''),(4061,46231,'source_url',''),(4062,46231,'target_word_count',''),(4063,46231,'target_sections',''),(4064,46231,'content_type','new'),(4065,46231,'subtitle',''),(4066,46231,'_subtitle','field_page_subtitle_subtitle'),(4069,46231,'pagegoals','goal4'),(4070,46231,'pagelanguage','english'),(4071,46231,'pagetype','marketing'),(4073,46232,'_edit_last','1991'),(4074,46232,'_wp_page_template','default'),(4076,46232,'du-meta-custom-footer','default'),(4077,46232,'_et_pb_post_hide_nav','default'),(4078,46232,'_et_pb_page_layout','et_right_sidebar'),(4079,46232,'_et_pb_side_nav','off'),(4080,46232,'_et_pb_use_builder',''),(4081,46232,'_et_pb_first_image',''),(4082,46232,'_et_pb_truncate_post',''),(4083,46232,'_et_pb_truncate_post_date',''),(4084,46232,'_et_pb_old_content',''),(4086,46232,'type',''),(4087,46232,'source_url',''),(4088,46232,'target_word_count',''),(4089,46232,'target_sections',''),(4090,46232,'content_type','new'),(4091,46232,'subtitle',''),(4092,46232,'_subtitle','field_page_subtitle_subtitle'),(4095,46232,'pagegoals','goal4'),(4096,46232,'pagelanguage','english'),(4097,46232,'pagetype','marketing'),(4099,46233,'_edit_last','1'),(4100,46233,'_wp_page_template','default'),(4102,46233,'du-meta-custom-footer','default'),(4103,46233,'_et_pb_post_hide_nav','default'),(4104,46233,'_et_pb_page_layout','et_right_sidebar'),(4105,46233,'_et_pb_side_nav','off'),(4106,46233,'_et_pb_use_builder',''),(4107,46233,'_et_pb_first_image',''),(4108,46233,'_et_pb_truncate_post',''),(4109,46233,'_et_pb_truncate_post_date',''),(4110,46233,'_et_pb_old_content',''),(4112,46233,'type',''),(4113,46233,'source_url',''),(4114,46233,'target_word_count',''),(4115,46233,'target_sections',''),(4116,46233,'content_type','new'),(4117,46233,'subtitle',''),(4118,46233,'_subtitle','field_page_subtitle_subtitle'),(4121,46233,'pagegoals','goal4'),(4122,46233,'pagelanguage','english'),(4123,46233,'pagetype','marketing'),(4125,46234,'_edit_last','1'),(4126,46234,'_wp_page_template','default'),(4128,46234,'du-meta-custom-footer','default'),(4129,46234,'_et_pb_post_hide_nav','default'),(4130,46234,'_et_pb_page_layout','et_right_sidebar'),(4131,46234,'_et_pb_side_nav','off'),(4132,46234,'_et_pb_use_builder',''),(4133,46234,'_et_pb_first_image',''),(4134,46234,'_et_pb_truncate_post',''),(4135,46234,'_et_pb_truncate_post_date',''),(4136,46234,'_et_pb_old_content',''),(4138,46234,'type',''),(4139,46234,'source_url',''),(4140,46234,'target_word_count',''),(4141,46234,'target_sections',''),(4142,46234,'content_type','new'),(4143,46234,'subtitle',''),(4144,46234,'_subtitle','field_page_subtitle_subtitle'),(4147,46234,'pagegoals','goal4'),(4148,46234,'pagelanguage','english'),(4149,46234,'pagetype','marketing'),(4151,46235,'_edit_last','1991'),(4152,46235,'_wp_page_template','default'),(4154,46235,'du-meta-custom-footer','default'),(4155,46235,'_et_pb_post_hide_nav','default'),(4156,46235,'_et_pb_page_layout','et_right_sidebar'),(4157,46235,'_et_pb_side_nav','off'),(4158,46235,'_et_pb_use_builder',''),(4159,46235,'_et_pb_first_image',''),(4160,46235,'_et_pb_truncate_post',''),(4161,46235,'_et_pb_truncate_post_date',''),(4162,46235,'_et_pb_old_content',''),(4164,46235,'type',''),(4165,46235,'source_url',''),(4166,46235,'target_word_count',''),(4167,46235,'target_sections',''),(4168,46235,'content_type','new'),(4169,46235,'subtitle',''),(4170,46235,'_subtitle','field_page_subtitle_subtitle'),(4173,46235,'pagegoals','goal4'),(4174,46235,'pagelanguage','english'),(4175,46235,'pagetype','marketing'),(4177,46236,'_edit_last','1'),(4178,46236,'_wp_page_template','default'),(4179,46236,'du-meta-custom-footer','default'),(4180,46236,'_et_pb_post_hide_nav','default'),(4181,46236,'_et_pb_page_layout','et_right_sidebar'),(4182,46236,'_et_pb_side_nav','off'),(4183,46236,'_et_pb_use_builder','on'),(4184,46236,'_et_pb_first_image',''),(4185,46236,'_et_pb_truncate_post',''),(4186,46236,'_et_pb_truncate_post_date',''),(4187,46236,'_et_pb_old_content','<h1><span style=\"color: #211865;\">Case Law Updates</span></h1><p><span style=\"color: #211865;\">Every year, LOMAD’s attorneys practice on the cutting edge of the New York Workers’ Compensation Law. We wouldn’t be doing our part for the profession, or our clients, if we didn’t share that knowledge.</span></p><p><span style=\"color: #211865;\">LOMAD’s case law update has been presented far and wide, including at the prestigious NYSIA Annual Meeting in New York City!</span></p><p><span style=\"color: #211865;\">To obtain access to this valuable and expansive resource, please email <a style=\"color: #211865;\" href=\"mailto:jcousins@madwcdefense.com\"><span style=\"text-decoration: underline;\">jcousins@madwcdefense.com</span></a></span></p><p><span style=\"text-decoration: underline;\"><span style=\"color: #211865;\"><a style=\"color: #211865; text-decoration: underline;\" href=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/02/2016CaseLawUpdate.pdf\">LOMAD Case Law Update 2016</a></span></span></p><p><span style=\"text-decoration: underline;\"><span style=\"color: #211865;\"><a style=\"color: #211865; text-decoration: underline;\" href=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/02/2017CaseLawUpdate.pdf\">LOMAD Case Law Update 2017</a></span></span></p><p><span style=\"text-decoration: underline;\"><span style=\"color: #211865;\"><a style=\"color: #211865; text-decoration: underline;\" href=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/02/2018CaseLawUpdate.pdf\">LOMAD Case Law Update 2018</a></span></span></p><p><span style=\"text-decoration: underline;\"><span style=\"color: #211865;\"><a style=\"color: #211865; text-decoration: underline;\" href=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/02/2019CaseLawUpdate.pdf\">LOMAD Case Law Update 2019</a></span></span></p><p><span style=\"text-decoration: underline;\"><span style=\"color: #211865;\"><a style=\"color: #211865; text-decoration: underline;\" href=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/02/2020CaseLawUpdate.pdf\">LOMAD Case Law Update 2020</a></span></span></p><p><span style=\"text-decoration: underline;\"><span style=\"color: #211865;\"><a style=\"color: #211865; text-decoration: underline;\" href=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/02/2021CaseLawUpdate.pdf\">LOMAD Case Law Update 2021</a></span></span></p>'),(4188,46236,'type',''),(4189,46236,'source_url',''),(4190,46236,'target_word_count',''),(4191,46236,'target_sections',''),(4192,46236,'content_type','new'),(4193,46236,'subtitle',''),(4194,46236,'_subtitle','field_page_subtitle_subtitle'),(4197,46236,'pagegoals','goal4'),(4198,46236,'pagelanguage','english'),(4199,46236,'pagetype','marketing'),(4202,46244,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(4203,46244,'current_word_count','202'),(4204,46244,'author_byline','On Behalf of'),(4205,46244,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(4206,46244,'_edit_lock','1663610684:1'),(4207,46245,'_wp_attached_file','2021/08/102398183.jpg'),(4208,46245,'_aioseop_opengraph_settings','a:0:{}'),(4209,46245,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:21:\"2021/08/102398183.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"102398183-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:19:\"102398183-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(4210,46246,'_wp_attached_file','2021/08/970001773.jpg'),(4211,46246,'_aioseop_opengraph_settings','a:0:{}'),(4212,46246,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:21:\"2021/08/970001773.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"970001773-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:19:\"970001773-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(4213,46247,'_wp_attached_file','2021/08/1787479011.jpg'),(4214,46247,'_aioseop_opengraph_settings','a:0:{}'),(4215,46247,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/08/1787479011.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1787479011-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"1787479011-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(4216,46248,'_wp_attached_file','2021/08/3006688682.jpg'),(4217,46248,'_aioseop_opengraph_settings','a:0:{}'),(4218,46248,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/08/3006688682.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"3006688682-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"3006688682-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(4219,46249,'_wp_attached_file','2021/08/LOMAD-Newsletter-March-2021.pdf'),(4220,46249,'_aioseop_opengraph_settings','a:0:{}'),(4221,46249,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"LOMAD-Newsletter-March-2021-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"LOMAD-Newsletter-March-2021-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"LOMAD-Newsletter-March-2021-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"LOMAD-Newsletter-March-2021-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(4222,46250,'_wp_attached_file','2021/08/LOMAD-Newsletter-Volume-2.pdf'),(4223,46250,'_aioseop_opengraph_settings','a:0:{}'),(4224,46250,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"LOMAD-Newsletter-Volume-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"LOMAD-Newsletter-Volume-2-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"LOMAD-Newsletter-Volume-2-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"LOMAD-Newsletter-Volume-2-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(4225,46251,'_wp_attached_file','2021/08/LOMAD-newsletter-Volume-3.pdf'),(4226,46251,'_aioseop_opengraph_settings','a:0:{}'),(4227,46251,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"LOMAD-newsletter-Volume-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"LOMAD-newsletter-Volume-3-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"LOMAD-newsletter-Volume-3-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"LOMAD-newsletter-Volume-3-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(4228,46252,'_wp_attached_file','2021/08/LOMAD-newsletter-Volume-4-August-1.pdf'),(4229,46252,'_aioseop_opengraph_settings','a:0:{}'),(4230,46252,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:42:\"LOMAD-newsletter-Volume-4-August-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"LOMAD-newsletter-Volume-4-August-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"LOMAD-newsletter-Volume-4-August-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"LOMAD-newsletter-Volume-4-August-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(4231,46244,'_edit_last','1'),(4232,46244,'_wp_page_template','default'),(4234,46244,'du-meta-custom-footer','default'),(4235,46244,'_et_pb_post_hide_nav','default'),(4236,46244,'_et_pb_page_layout','et_right_sidebar'),(4237,46244,'_et_pb_side_nav','off'),(4238,46244,'_et_pb_use_builder','on'),(4239,46244,'_et_pb_first_image',''),(4240,46244,'_et_pb_truncate_post',''),(4241,46244,'_et_pb_truncate_post_date',''),(4242,46244,'_et_pb_old_content','<h1>LOMAD Newsletter</h1><h2><strong>Check out the LOMAD Newsletter by clicking on any of the volumes below!</strong></h2><p><strong>Want to be a part of our mailing list? Email us at <a href=\"mailto:Mail@Madwcdefense.com\">Mail@Madwcdefense.com</a>!</strong><br /><a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/LOMAD-newsletter-Volume-4-August-1.pdf\" target=\"_blank\" rel=\"noopener\" data-attachment-id=\"3629\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/1787479011.jpg\" data-src-fg=\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/cache/2021/03/LOMAD-newsletter-Volume-4-August-1-pdf/1787479011.jpg\" /></a></p><p><a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/LOMAD-newsletter-Volume-3.pdf\" target=\"_blank\" rel=\"noopener\" data-attachment-id=\"3614\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/970001773.jpg\" data-src-fg=\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/cache/2021/03/LOMAD-newsletter-Volume-3-pdf/970001773.jpg\" /></a></p><p><a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/LOMAD-Newsletter-Volume-2.pdf\" target=\"_blank\" rel=\"noopener\" data-attachment-id=\"3615\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/3006688682.jpg\" data-src-fg=\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/cache/2021/03/LOMAD-Newsletter-Volume-2-pdf/3006688682.jpg\" /></a></p><p><a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/LOMAD-Newsletter-March-2021.pdf\" target=\"_blank\" rel=\"noopener\" data-attachment-id=\"3473\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/102398183.jpg\" data-src-fg=\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/cache/2021/03/LOMAD-Newsletter-March-2021-pdf/102398183.jpg\" /></a></p>'),(4244,46244,'type',''),(4245,46244,'source_url',''),(4246,46244,'target_word_count',''),(4247,46244,'target_sections',''),(4248,46244,'content_type','new'),(4249,46244,'subtitle',''),(4250,46244,'_subtitle','field_page_subtitle_subtitle'),(4253,46244,'pagegoals','goal3'),(4254,46244,'pagelanguage','english'),(4255,46244,'pagetype','marketing'),(4267,6,'_et_pb_gutter_width','1'),(4269,6,'_et_pb_truncate_post_date',''),(4270,6,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(4271,6,'_et_pb_post_hide_nav','default'),(4426,46270,'_wp_attached_file','2021/08/AdobeStock_140260471_Preview.jpg'),(4427,46270,'_aioseop_opengraph_settings','a:0:{}'),(4428,46270,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:900;s:4:\"file\";s:40:\"2021/08/AdobeStock_140260471_Preview.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"AdobeStock_140260471_Preview-300x135.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"AdobeStock_140260471_Preview-1024x461.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"AdobeStock_140260471_Preview-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:40:\"AdobeStock_140260471_Preview-768x346.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"AdobeStock_140260471_Preview-1536x691.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:691;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:41:\"AdobeStock_140260471_Preview-1600x720.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:41:\"AdobeStock_140260471_Preview-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:40:\"AdobeStock_140260471_Preview-700x315.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:41:\"AdobeStock_140260471_Preview-1152x518.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:518;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:41:\"AdobeStock_140260471_Preview-1000x450.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:40:\"AdobeStock_140260471_Preview-500x225.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:41:\"AdobeStock_140260471_Preview-1200x630.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:38:\"AdobeStock_140260471_Preview-75x34.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:34;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"AdobeStock_140260471_Preview-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"AdobeStock_140260471_Preview-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"AdobeStock_140260471_Preview-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"AdobeStock_140260471_Preview-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"AdobeStock_140260471_Preview-1080x486.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"AdobeStock_140260471_Preview-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:41:\"AdobeStock_140260471_Preview-1280x576.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:40:\"AdobeStock_140260471_Preview-980x441.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"AdobeStock_140260471_Preview-480x216.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4432,46273,'_wp_attached_file','2021/08/logo.png'),(4433,46273,'_aioseop_opengraph_settings','a:0:{}'),(4434,46273,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1452;s:6:\"height\";i:468;s:4:\"file\";s:16:\"2021/08/logo.png\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"logo-300x97.png\";s:5:\"width\";i:300;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"logo-1024x330.png\";s:5:\"width\";i:1024;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"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:16:\"logo-768x248.png\";s:5:\"width\";i:768;s:6:\"height\";i:248;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:16:\"logo-700x226.png\";s:5:\"width\";i:700;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:17:\"logo-1152x371.png\";s:5:\"width\";i:1152;s:6:\"height\";i:371;s:9:\"mime-type\";s:9:\"image/png\";}s:3:\"bio\";a:4:{s:4:\"file\";s:17:\"logo-1000x322.png\";s:5:\"width\";i:1000;s:6:\"height\";i:322;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:16:\"logo-500x161.png\";s:5:\"width\";i:500;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:17:\"logo-1200x468.png\";s:5:\"width\";i:1200;s:6:\"height\";i:468;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:14:\"logo-75x24.png\";s:5:\"width\";i:75;s:6:\"height\";i:24;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:16:\"logo-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:17:\"logo-1080x468.png\";s:5:\"width\";i:1080;s:6:\"height\";i:468;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:16:\"logo-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:16:\"logo-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:17:\"logo-1080x348.png\";s:5:\"width\";i:1080;s:6:\"height\";i:348;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:16:\"logo-400x468.png\";s:5:\"width\";i:400;s:6:\"height\";i:468;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:17:\"logo-1280x413.png\";s:5:\"width\";i:1280;s:6:\"height\";i:413;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:16:\"logo-980x316.png\";s:5:\"width\";i:980;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:16:\"logo-480x155.png\";s:5:\"width\";i:480;s:6:\"height\";i:155;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:{}}}'),(4625,46300,'_wp_attached_file','2021/08/AdobeStock_297103193_Preview.jpg'),(4626,46300,'_aioseop_opengraph_settings','a:0:{}'),(4627,46300,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:900;s:4:\"file\";s:40:\"2021/08/AdobeStock_297103193_Preview.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"AdobeStock_297103193_Preview-300x135.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"AdobeStock_297103193_Preview-1024x461.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"AdobeStock_297103193_Preview-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:40:\"AdobeStock_297103193_Preview-768x346.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"AdobeStock_297103193_Preview-1536x691.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:691;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:41:\"AdobeStock_297103193_Preview-1600x720.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:41:\"AdobeStock_297103193_Preview-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:40:\"AdobeStock_297103193_Preview-700x315.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:41:\"AdobeStock_297103193_Preview-1152x518.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:518;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:41:\"AdobeStock_297103193_Preview-1000x450.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:40:\"AdobeStock_297103193_Preview-500x225.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:41:\"AdobeStock_297103193_Preview-1200x630.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:38:\"AdobeStock_297103193_Preview-75x34.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:34;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"AdobeStock_297103193_Preview-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"AdobeStock_297103193_Preview-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"AdobeStock_297103193_Preview-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"AdobeStock_297103193_Preview-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"AdobeStock_297103193_Preview-1080x486.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"AdobeStock_297103193_Preview-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:41:\"AdobeStock_297103193_Preview-1280x576.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:40:\"AdobeStock_297103193_Preview-980x441.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"AdobeStock_297103193_Preview-480x216.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4708,46311,'_wp_attached_file','2021/08/icon1.png'),(4709,46311,'_aioseop_opengraph_settings','a:0:{}'),(4710,46311,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:17:\"2021/08/icon1.png\";s:5:\"sizes\";a:1:{s:11:\"placeholder\";a:4:{s:4:\"file\";s:15:\"icon1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4711,46312,'_wp_attached_file','2021/08/icon.png'),(4712,46312,'_aioseop_opengraph_settings','a:0:{}'),(4713,46312,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:16:\"2021/08/icon.png\";s:5:\"sizes\";a:1:{s:11:\"placeholder\";a:4:{s:4:\"file\";s:14:\"icon-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4714,46313,'_wp_attached_file','2021/08/icon2.png'),(4715,46313,'_aioseop_opengraph_settings','a:0:{}'),(4716,46313,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:17:\"2021/08/icon2.png\";s:5:\"sizes\";a:1:{s:11:\"placeholder\";a:4:{s:4:\"file\";s:15:\"icon2-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4720,46317,'_wp_attached_file','2021/08/AdobeStock_447848300_Preview.jpg'),(4721,46317,'_aioseop_opengraph_settings','a:0:{}'),(4722,46317,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1150;s:6:\"height\";i:800;s:4:\"file\";s:40:\"2021/08/AdobeStock_447848300_Preview.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"AdobeStock_447848300_Preview-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"AdobeStock_447848300_Preview-1024x712.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"AdobeStock_447848300_Preview-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:40:\"AdobeStock_447848300_Preview-768x534.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:534;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:40:\"AdobeStock_447848300_Preview-700x487.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:487;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:41:\"AdobeStock_447848300_Preview-1000x696.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:696;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:40:\"AdobeStock_447848300_Preview-500x348.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:348;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:41:\"AdobeStock_447848300_Preview-1150x630.jpg\";s:5:\"width\";i:1150;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:38:\"AdobeStock_447848300_Preview-75x52.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"AdobeStock_447848300_Preview-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"AdobeStock_447848300_Preview-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"AdobeStock_447848300_Preview-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"AdobeStock_447848300_Preview-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"AdobeStock_447848300_Preview-1080x751.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:751;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"AdobeStock_447848300_Preview-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:40:\"AdobeStock_447848300_Preview-980x682.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"AdobeStock_447848300_Preview-480x334.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(4809,46327,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/08/surveillance-social-media-section-32/'),(4811,46327,'flco_links_count','0'),(4812,46327,'flco_links','a:0:{}'),(4813,46327,'flco_files','a:0:{}'),(4814,46327,'pagetype','blog-post'),(4815,46327,'pagelanguage','english'),(4816,46327,'pagegoals','goal3'),(4817,46327,'_edit_lock','1629258733:2461'),(4818,46327,'_edit_last','1'),(4821,46327,'_aioseop_opengraph_settings','a:0:{}'),(4823,46327,'du-meta-custom-footer','default'),(4824,46327,'_et_post_bg_color','#ffffff'),(4825,46327,'_et_post_bg_layout','light'),(4826,46327,'_et_pb_show_title','on'),(4827,46327,'_et_pb_post_hide_nav','default'),(4828,46327,'_et_pb_page_layout','et_right_sidebar'),(4829,46327,'_et_pb_side_nav','off'),(4831,46327,'wriketaskid','No task ID associated'),(4832,46327,'_aioseop_title','Surveillance, Social Media…Section 32? | The Law Offices of Melissa A. Day, PLLC'),(4833,46329,'_aioseop_opengraph_settings','a:0:{}'),(4834,46329,'author_byline','by'),(4835,46329,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(4836,46329,'_edit_lock','1643991938:308'),(4837,46329,'_edit_last','1'),(4839,46329,'du-meta-custom-footer','default'),(4840,46329,'_et_post_bg_color','#ffffff'),(4841,46329,'_et_post_bg_layout','light'),(4842,46329,'_et_pb_show_title','on'),(4843,46329,'_et_pb_post_hide_nav','default'),(4844,46329,'_et_pb_page_layout','et_right_sidebar'),(4845,46329,'_et_pb_side_nav','off'),(4846,46329,'_wp_old_date','2021-08-17'),(4847,46329,'pagegoals','goal3'),(4848,46329,'wriketaskid','No task ID associated'),(4849,46329,'pagelanguage','english'),(4850,46329,'pagetype','blog-post'),(4854,46331,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/07/an-exploration-of-legal-apportionment/'),(4856,46331,'flco_links_count','0'),(4857,46331,'flco_links','a:0:{}'),(4858,46331,'flco_files','a:0:{}'),(4859,46331,'pagetype','blog-post'),(4860,46331,'pagelanguage','english'),(4861,46331,'pagegoals','goal3'),(4863,46332,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/07/carpal-tunnel-and-causal-relation-not-always-so-clear-cut/'),(4865,46332,'flco_links_count','0'),(4866,46332,'flco_links','a:0:{}'),(4867,46332,'flco_files','a:0:{}'),(4868,46332,'pagetype','blog-post'),(4869,46332,'pagelanguage','english'),(4870,46332,'pagegoals','goal3'),(4871,46332,'_edit_lock','1629258908:2461'),(4872,46331,'_edit_lock','1629259051:2461'),(4873,46331,'_edit_last','1'),(4876,46331,'_aioseop_opengraph_settings','a:0:{}'),(4878,46331,'du-meta-custom-footer','default'),(4879,46331,'_et_post_bg_color','#ffffff'),(4880,46331,'_et_post_bg_layout','light'),(4881,46331,'_et_pb_show_title','on'),(4882,46331,'_et_pb_post_hide_nav','default'),(4883,46331,'_et_pb_page_layout','et_right_sidebar'),(4884,46331,'_et_pb_side_nav','off'),(4886,46331,'wriketaskid','No task ID associated'),(4887,46331,'_aioseop_title','An Exploration of “Legal Apportionment” | The Law Offices of Melissa A. Day, PLLC'),(4888,46332,'_edit_last','1'),(4891,46332,'_aioseop_opengraph_settings','a:0:{}'),(4893,46332,'du-meta-custom-footer','default'),(4894,46332,'_et_post_bg_color','#ffffff'),(4895,46332,'_et_post_bg_layout','light'),(4896,46332,'_et_pb_show_title','on'),(4897,46332,'_et_pb_post_hide_nav','default'),(4898,46332,'_et_pb_page_layout','et_right_sidebar'),(4899,46332,'_et_pb_side_nav','off'),(4901,46332,'wriketaskid','No task ID associated'),(4902,46332,'_aioseop_title','Carpal Tunnel and Causal Relation Not Always So Clear-Cut | The Law Offices of Melissa A. Day, PLLC'),(4903,46335,'_aioseop_opengraph_settings','a:0:{}'),(4904,46335,'author_byline','by'),(4905,46335,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(4906,46335,'_edit_lock','1629258977:2461'),(4907,46335,'_edit_last','1'),(4909,46335,'du-meta-custom-footer','default'),(4910,46335,'_et_post_bg_color','#ffffff'),(4911,46335,'_et_post_bg_layout','light'),(4912,46335,'_et_pb_show_title','on'),(4913,46335,'_et_pb_post_hide_nav','default'),(4914,46335,'_et_pb_page_layout','et_right_sidebar'),(4915,46335,'_et_pb_side_nav','off'),(4916,46335,'_wp_old_date','2021-08-17'),(4917,46335,'pagegoals','goal3'),(4918,46335,'wriketaskid','No task ID associated'),(4919,46335,'pagelanguage','english'),(4920,46335,'pagetype','blog-post'),(4923,46337,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/07/its-no-accident/'),(4925,46337,'flco_links_count','0'),(4926,46337,'flco_links','a:0:{}'),(4927,46337,'flco_files','a:0:{}'),(4928,46337,'pagetype','blog-post'),(4929,46337,'pagelanguage','english'),(4930,46337,'pagegoals','goal3'),(4932,46338,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/06/third-deparment-decision-disputing-causal-relationship/'),(4934,46338,'flco_links_count','0'),(4935,46338,'flco_links','a:0:{}'),(4936,46338,'flco_files','a:0:{}'),(4937,46338,'pagetype','blog-post'),(4938,46338,'pagelanguage','english'),(4939,46338,'pagegoals','goal3'),(4941,46339,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/06/stipulations-reimbursements-underpayments-oh-my/'),(4943,46340,'_aioseop_opengraph_settings','a:0:{}'),(4944,46340,'author_byline','by'),(4945,46340,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(4946,46339,'flco_links_count','0'),(4947,46339,'flco_links','a:0:{}'),(4948,46339,'flco_files','a:0:{}'),(4949,46339,'pagetype','blog-post'),(4950,46339,'pagelanguage','english'),(4951,46339,'pagegoals','goal3'),(4953,46341,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/05/labor-market-attachment-and-retirement/'),(4955,46341,'flco_links_count','0'),(4956,46341,'flco_links','a:0:{}'),(4957,46341,'flco_files','a:0:{}'),(4958,46341,'pagetype','blog-post'),(4959,46341,'pagelanguage','english'),(4960,46341,'pagegoals','goal3'),(4961,46340,'_edit_lock','1629259988:2461'),(4962,46340,'_edit_last','1'),(4964,46342,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/'),(4966,46342,'flco_links_count','0'),(4967,46342,'flco_links','a:0:{}'),(4968,46342,'flco_files','a:0:{}'),(4969,46342,'pagetype','blog-post'),(4970,46342,'pagelanguage','english'),(4971,46342,'pagegoals','goal3'),(4973,46343,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/05/employers-do-not-have-to-prove-prejudice-by-late-notice-but-it-certainly-doesnt-hurt-to-do-so/'),(4975,46343,'flco_links_count','0'),(4976,46343,'flco_links','a:0:{}'),(4977,46343,'flco_files','a:0:{}'),(4978,46343,'pagetype','blog-post'),(4979,46343,'pagelanguage','english'),(4980,46343,'pagegoals','goal3'),(4982,46344,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/'),(4984,46344,'flco_links_count','0'),(4985,46344,'flco_links','a:0:{}'),(4986,46344,'flco_files','a:0:{}'),(4987,46344,'pagetype','blog-post'),(4988,46344,'pagelanguage','english'),(4989,46344,'pagegoals','goal3'),(4991,46345,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/04/social-media-and-fraud-youd-be-surprised-what-people-post/'),(4993,46345,'flco_links_count','0'),(4994,46345,'flco_links','a:0:{}'),(4995,46345,'flco_files','a:0:{}'),(4996,46345,'pagetype','blog-post'),(4997,46345,'pagelanguage','english'),(4998,46345,'pagegoals','goal3'),(5000,46346,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/04/never-give-in-disallowance-win/'),(5002,46346,'flco_links_count','0'),(5003,46346,'flco_links','a:0:{}'),(5004,46346,'flco_files','a:0:{}'),(5005,46346,'pagetype','blog-post'),(5006,46346,'pagelanguage','english'),(5007,46346,'pagegoals','goal3'),(5009,46347,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/04/an-interesting-ime-development/'),(5011,46347,'flco_links_count','0'),(5012,46347,'flco_links','a:0:{}'),(5013,46347,'flco_files','a:0:{}'),(5014,46347,'pagetype','blog-post'),(5015,46347,'pagelanguage','english'),(5016,46347,'pagegoals','goal3'),(5020,46340,'du-meta-custom-footer','default'),(5021,46340,'_et_post_bg_color','#ffffff'),(5022,46340,'_et_post_bg_layout','light'),(5023,46340,'_et_pb_show_title','on'),(5024,46340,'_et_pb_post_hide_nav','default'),(5025,46340,'_et_pb_page_layout','et_right_sidebar'),(5026,46340,'_et_pb_side_nav','off'),(5028,46340,'_wp_old_date','2021-08-18'),(5029,46340,'pagegoals','goal3'),(5030,46340,'wriketaskid','No task ID associated'),(5031,46340,'pagelanguage','english'),(5032,46340,'pagetype','blog-post'),(5033,46340,'_aioseop_title','Pain is Not Enough for Prima Facie Medical Evidence | The Law Offices of Melissa A. Day, PLLC'),(5035,46348,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/04/section-44-not-even-a-portion-of-liability-for-the-occupational-disease/'),(5037,46348,'flco_links_count','0'),(5038,46348,'flco_links','a:0:{}'),(5039,46348,'flco_files','a:0:{}'),(5040,46348,'pagetype','blog-post'),(5041,46348,'pagelanguage','english'),(5042,46348,'pagegoals','goal3'),(5044,46350,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/'),(5047,46350,'flco_links_count','0'),(5048,46350,'flco_links','a:0:{}'),(5049,46350,'flco_files','a:0:{}'),(5050,46350,'pagetype','blog-post'),(5051,46350,'pagelanguage','english'),(5052,46350,'pagegoals','goal3'),(5054,46351,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/03/thoughts-on-thinking-a-strange-title-about-practicing-law/'),(5056,46351,'flco_links_count','0'),(5057,46351,'flco_links','a:0:{}'),(5058,46351,'flco_files','a:0:{}'),(5059,46351,'pagetype','blog-post'),(5060,46351,'pagelanguage','english'),(5061,46351,'pagegoals','goal3'),(5063,46352,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/03/genduso-and-total-joint-replacement-schedules/'),(5065,46352,'flco_links_count','0'),(5066,46352,'flco_links','a:0:{}'),(5067,46352,'flco_files','a:0:{}'),(5068,46352,'pagetype','blog-post'),(5069,46352,'pagelanguage','english'),(5070,46352,'pagegoals','goal3'),(5071,46329,'_aioseop_title','Using the Contralateral Limb as a Baseline for Calculating Schedule Loss of Use | The Law Offices of Melissa A. Day, PLLC'),(5072,46335,'_aioseop_title','Disallowance Due to Intoxication | The Law Offices of Melissa A. Day, PLLC'),(5073,46337,'_edit_lock','1629260548:2461'),(5074,46338,'_edit_lock','1629260550:2461'),(5075,46339,'_edit_lock','1629260406:2461'),(5076,46341,'_edit_lock','1661888755:1'),(5077,46342,'_edit_lock','1661889015:1'),(5078,46343,'_edit_lock','1661888976:1'),(5079,46344,'_edit_lock','1661889027:1'),(5080,46345,'_edit_lock','1661889660:1'),(5081,46337,'_edit_last','1'),(5084,46337,'_aioseop_opengraph_settings','a:0:{}'),(5086,46337,'du-meta-custom-footer','default'),(5087,46337,'_et_post_bg_color','#ffffff'),(5088,46337,'_et_post_bg_layout','light'),(5089,46337,'_et_pb_show_title','on'),(5090,46337,'_et_pb_post_hide_nav','default'),(5091,46337,'_et_pb_page_layout','et_right_sidebar'),(5092,46337,'_et_pb_side_nav','off'),(5094,46337,'wriketaskid','No task ID associated'),(5095,46337,'_aioseop_title','It’s No Accident | The Law Offices of Melissa A. Day, PLLC'),(5096,46338,'_edit_last','1'),(5099,46338,'_aioseop_opengraph_settings','a:0:{}'),(5101,46338,'du-meta-custom-footer','default'),(5102,46338,'_et_post_bg_color','#ffffff'),(5103,46338,'_et_post_bg_layout','light'),(5104,46338,'_et_pb_show_title','on'),(5105,46338,'_et_pb_post_hide_nav','default'),(5106,46338,'_et_pb_page_layout','et_right_sidebar'),(5107,46338,'_et_pb_side_nav','off'),(5109,46338,'wriketaskid','No task ID associated'),(5110,46338,'_aioseop_title','Third Deparment Decision: Disputing Causal Relationship | The Law Offices of Melissa A. Day, PLLC'),(5111,46339,'_edit_last','1'),(5114,46339,'_aioseop_opengraph_settings','a:0:{}'),(5116,46339,'du-meta-custom-footer','default'),(5117,46339,'_et_post_bg_color','#ffffff'),(5118,46339,'_et_post_bg_layout','light'),(5119,46339,'_et_pb_show_title','on'),(5120,46339,'_et_pb_post_hide_nav','default'),(5121,46339,'_et_pb_page_layout','et_right_sidebar'),(5122,46339,'_et_pb_side_nav','off'),(5124,46339,'wriketaskid','No task ID associated'),(5125,46339,'_aioseop_title','Stipulations, Reimbursements, Underpayments. Oh My! | The Law Offices of Melissa A. Day, PLLC'),(5126,46341,'_edit_last','1'),(5129,46341,'_aioseop_opengraph_settings','a:0:{}'),(5131,46341,'du-meta-custom-footer','default'),(5132,46341,'_et_post_bg_color','#ffffff'),(5133,46341,'_et_post_bg_layout','light'),(5134,46341,'_et_pb_show_title','on'),(5135,46341,'_et_pb_post_hide_nav','default'),(5136,46341,'_et_pb_page_layout','et_right_sidebar'),(5137,46341,'_et_pb_side_nav','off'),(5139,46341,'wriketaskid','No task ID associated'),(5140,46341,'_aioseop_title','Labor Market Attachment and Retirement | The Law Offices of Melissa A. Day, PLLC'),(5141,46342,'_edit_last','1'),(5144,46342,'_aioseop_opengraph_settings','a:0:{}'),(5146,46342,'du-meta-custom-footer','default'),(5147,46342,'_et_post_bg_color','#ffffff'),(5148,46342,'_et_post_bg_layout','light'),(5149,46342,'_et_pb_show_title','on'),(5150,46342,'_et_pb_post_hide_nav','default'),(5151,46342,'_et_pb_page_layout','et_right_sidebar'),(5152,46342,'_et_pb_side_nav','off'),(5154,46342,'wriketaskid','No task ID associated'),(5155,46342,'_aioseop_title','Claim Disallowance With Unanimous Medical Opinion Giving Causal Relationship | The Law Offices of Melissa A. Day, PLLC'),(5156,46343,'_edit_last','1'),(5159,46343,'_aioseop_opengraph_settings','a:0:{}'),(5161,46343,'du-meta-custom-footer','default'),(5162,46343,'_et_post_bg_color','#ffffff'),(5163,46343,'_et_post_bg_layout','light'),(5164,46343,'_et_pb_show_title','on'),(5165,46343,'_et_pb_post_hide_nav','default'),(5166,46343,'_et_pb_page_layout','et_right_sidebar'),(5167,46343,'_et_pb_side_nav','off'),(5169,46343,'wriketaskid','No task ID associated'),(5170,46343,'_aioseop_title','Employers Do Not Have to Prove Prejudice by Late Notice, but it Certainly Doesn’t Hurt To Do So! | The Law Offices of Melissa A. Day, PLLC'),(5171,46344,'_edit_last','1'),(5174,46344,'_aioseop_opengraph_settings','a:0:{}'),(5176,46344,'du-meta-custom-footer','default'),(5177,46344,'_et_post_bg_color','#ffffff'),(5178,46344,'_et_post_bg_layout','light'),(5179,46344,'_et_pb_show_title','on'),(5180,46344,'_et_pb_post_hide_nav','default'),(5181,46344,'_et_pb_page_layout','et_right_sidebar'),(5182,46344,'_et_pb_side_nav','off'),(5184,46344,'wriketaskid','No task ID associated'),(5185,46344,'_aioseop_title','The Claimant’s Burden: Proving the Causal Relationship of an Injury | The Law Offices of Melissa A. Day, PLLC'),(5186,46345,'_edit_last','1'),(5189,46345,'_aioseop_opengraph_settings','a:0:{}'),(5191,46345,'du-meta-custom-footer','default'),(5192,46345,'_et_post_bg_color','#ffffff'),(5193,46345,'_et_post_bg_layout','light'),(5194,46345,'_et_pb_show_title','on'),(5195,46345,'_et_pb_post_hide_nav','default'),(5196,46345,'_et_pb_page_layout','et_right_sidebar'),(5197,46345,'_et_pb_side_nav','off'),(5199,46345,'wriketaskid','No task ID associated'),(5200,46345,'_aioseop_title','Social Media and Fraud – You’d Be Surprised What People Post! | The Law Offices of Melissa A. Day, PLLC'),(5201,46346,'_edit_lock','1661889530:1'),(5202,46347,'_edit_lock','1661889606:1'),(5203,46348,'_edit_lock','1661889667:1'),(5204,46350,'_edit_lock','1661889774:1'),(5205,46351,'_edit_lock','1661889808:1'),(5206,46352,'_edit_lock','1661890042:1'),(5207,46346,'_edit_last','1'),(5210,46346,'_aioseop_opengraph_settings','a:0:{}'),(5212,46346,'du-meta-custom-footer','default'),(5213,46346,'_et_post_bg_color','#ffffff'),(5214,46346,'_et_post_bg_layout','light'),(5215,46346,'_et_pb_show_title','on'),(5216,46346,'_et_pb_post_hide_nav','default'),(5217,46346,'_et_pb_page_layout','et_right_sidebar'),(5218,46346,'_et_pb_side_nav','off'),(5220,46346,'wriketaskid','No task ID associated'),(5221,46346,'_aioseop_title','Never Give In! Disallowance Win! | The Law Offices of Melissa A. Day, PLLC'),(5222,46347,'_edit_last','1'),(5225,46347,'_aioseop_opengraph_settings','a:0:{}'),(5227,46347,'du-meta-custom-footer','default'),(5228,46347,'_et_post_bg_color','#ffffff'),(5229,46347,'_et_post_bg_layout','light'),(5230,46347,'_et_pb_show_title','on'),(5231,46347,'_et_pb_post_hide_nav','default'),(5232,46347,'_et_pb_page_layout','et_right_sidebar'),(5233,46347,'_et_pb_side_nav','off'),(5235,46347,'wriketaskid','No task ID associated'),(5236,46347,'_aioseop_title','An “Interesting” IME Development | The Law Offices of Melissa A. Day, PLLC'),(5237,46348,'_edit_last','1'),(5240,46348,'_aioseop_opengraph_settings','a:0:{}'),(5242,46348,'du-meta-custom-footer','default'),(5243,46348,'_et_post_bg_color','#ffffff'),(5244,46348,'_et_post_bg_layout','light'),(5245,46348,'_et_pb_show_title','on'),(5246,46348,'_et_pb_post_hide_nav','default'),(5247,46348,'_et_pb_page_layout','et_right_sidebar'),(5248,46348,'_et_pb_side_nav','off'),(5250,46348,'wriketaskid','No task ID associated'),(5251,46348,'_aioseop_title','Section 44: Not Even a Portion of Liability For The Occupational Disease | The Law Offices of Melissa A. Day, PLLC'),(5252,46350,'_edit_last','1'),(5255,46350,'_aioseop_opengraph_settings','a:0:{}'),(5257,46350,'du-meta-custom-footer','default'),(5258,46350,'_et_post_bg_color','#ffffff'),(5259,46350,'_et_post_bg_layout','light'),(5260,46350,'_et_pb_show_title','on'),(5261,46350,'_et_pb_post_hide_nav','default'),(5262,46350,'_et_pb_page_layout','et_right_sidebar'),(5263,46350,'_et_pb_side_nav','off'),(5265,46350,'wriketaskid','No task ID associated'),(5266,46350,'_aioseop_title','When Do Work From Home Accidents Occur in the Scope and Course of Employment? | The Law Offices of Melissa A. Day, PLLC'),(5267,46351,'_edit_last','1'),(5270,46351,'_aioseop_opengraph_settings','a:0:{}'),(5272,46351,'du-meta-custom-footer','default'),(5273,46351,'_et_post_bg_color','#ffffff'),(5274,46351,'_et_post_bg_layout','light'),(5275,46351,'_et_pb_show_title','on'),(5276,46351,'_et_pb_post_hide_nav','default'),(5277,46351,'_et_pb_page_layout','et_right_sidebar'),(5278,46351,'_et_pb_side_nav','off'),(5280,46351,'wriketaskid','No task ID associated'),(5281,46351,'_aioseop_title','Thoughts on Thinking:  A Strange Title About Practicing Law | The Law Offices of Melissa A. Day, PLLC'),(5282,46352,'_edit_last','1'),(5285,46352,'_aioseop_opengraph_settings','a:0:{}'),(5287,46352,'du-meta-custom-footer','default'),(5288,46352,'_et_post_bg_color','#ffffff'),(5289,46352,'_et_post_bg_layout','light'),(5290,46352,'_et_pb_show_title','on'),(5291,46352,'_et_pb_post_hide_nav','default'),(5292,46352,'_et_pb_page_layout','et_right_sidebar'),(5293,46352,'_et_pb_side_nav','off'),(5295,46352,'wriketaskid','No task ID associated'),(5296,46352,'_aioseop_title','Genduso and Total Joint Replacement Schedules | The Law Offices of Melissa A. Day, PLLC'),(5298,46367,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/'),(5300,46367,'flco_links_count','0'),(5301,46367,'flco_links','a:0:{}'),(5302,46367,'flco_files','a:0:{}'),(5303,46367,'pagetype','blog-post'),(5304,46367,'pagelanguage','english'),(5305,46367,'pagegoals','goal3'),(5307,46368,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/02/independent-contractor-or-employee/'),(5309,46368,'flco_links_count','0'),(5310,46368,'flco_links','a:0:{}'),(5311,46368,'flco_files','a:0:{}'),(5312,46368,'pagetype','blog-post'),(5313,46368,'pagelanguage','english'),(5314,46368,'pagegoals','goal3'),(5316,46369,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/02/no-error-of-law-or-fact-in-an-application-for-full-board-review/'),(5318,46369,'flco_links_count','0'),(5319,46369,'flco_links','a:0:{}'),(5320,46369,'flco_files','a:0:{}'),(5321,46369,'pagetype','blog-post'),(5322,46369,'pagelanguage','english'),(5323,46369,'pagegoals','goal3'),(5324,46370,'_aioseop_opengraph_settings','a:0:{}'),(5325,46370,'author_byline','by'),(5326,46370,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(5328,46371,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/'),(5330,46371,'flco_links_count','0'),(5331,46371,'flco_links','a:0:{}'),(5332,46371,'flco_files','a:0:{}'),(5333,46371,'pagetype','blog-post'),(5334,46371,'pagelanguage','english'),(5335,46371,'pagegoals','goal3'),(5337,46372,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/01/how-change-in-conditions-for-classified-claimants-changed-drastically/'),(5339,46372,'flco_links_count','0'),(5340,46372,'flco_links','a:0:{}'),(5341,46372,'flco_files','a:0:{}'),(5342,46372,'pagetype','blog-post'),(5343,46372,'pagelanguage','english'),(5344,46372,'pagegoals','goal3'),(5345,46370,'_edit_lock','1661890211:1'),(5347,46373,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/01/success-with-wcl-section-18/'),(5349,46373,'flco_links_count','0'),(5350,46373,'flco_links','a:0:{}'),(5351,46373,'flco_files','a:0:{}'),(5352,46373,'pagetype','blog-post'),(5353,46373,'pagelanguage','english'),(5354,46373,'pagegoals','goal3'),(5356,46374,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/'),(5358,46374,'flco_links_count','0'),(5359,46374,'flco_links','a:0:{}'),(5360,46374,'flco_files','a:0:{}'),(5361,46374,'pagetype','blog-post'),(5362,46374,'pagelanguage','english'),(5363,46374,'pagegoals','goal3'),(5365,46375,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2020/07/successful-disallowance/'),(5367,46375,'flco_links_count','0'),(5368,46375,'flco_links','a:0:{}'),(5369,46375,'flco_files','a:0:{}'),(5370,46375,'pagetype','blog-post'),(5371,46375,'pagelanguage','english'),(5372,46375,'pagegoals','goal3'),(5374,46376,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2020/07/another-win-for-the-law-offices-of-melissa-a-day/'),(5376,46376,'flco_links_count','0'),(5377,46376,'flco_links','a:0:{}'),(5378,46376,'flco_files','a:0:{}'),(5379,46376,'pagetype','blog-post'),(5380,46376,'pagelanguage','english'),(5381,46376,'pagegoals','goal3'),(5383,46377,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2020/07/a-win-for-the-law-offices-of-melissa-a-day/'),(5385,46377,'flco_links_count','0'),(5386,46377,'flco_links','a:0:{}'),(5387,46377,'flco_files','a:0:{}'),(5388,46377,'pagetype','blog-post'),(5389,46377,'pagelanguage','english'),(5390,46377,'pagegoals','goal3'),(5391,46370,'_edit_last','1'),(5395,46370,'du-meta-custom-footer','default'),(5396,46370,'_et_post_bg_color','#ffffff'),(5397,46370,'_et_post_bg_layout','light'),(5398,46370,'_et_pb_show_title','on'),(5399,46370,'_et_pb_post_hide_nav','default'),(5400,46370,'_et_pb_page_layout','et_right_sidebar'),(5401,46370,'_et_pb_side_nav','off'),(5403,46370,'_wp_old_date','2021-08-18'),(5404,46370,'pagegoals','goal3'),(5405,46370,'wriketaskid','No task ID associated'),(5406,46370,'pagelanguage','english'),(5407,46370,'pagetype','blog-post'),(5408,46370,'_aioseop_title','Occupational Disease Claims after Matter of Pinnacle Industries II, LLC (2019 NY Wrk Comp G2020587) | The Law Offices of Melissa A. Day, PLLC'),(5410,46378,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2020/06/proposed-changes-to-%c2%a7%c2%a7300-22-and-300-23-overpayments/'),(5412,46378,'flco_links_count','1'),(5413,46378,'flco_links','a:0:{}'),(5414,46378,'flco_files','a:0:{}'),(5415,46378,'pagetype','blog-post'),(5416,46378,'pagelanguage','english'),(5417,46378,'pagegoals','goal3'),(5419,46380,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2019/07/melissa-a-day-esq-invited-to-join-buffalo-business-first-leadership-trust/'),(5421,46380,'flco_links_count','1'),(5422,46380,'flco_links','a:1:{i:0;a:4:{s:6:\"source\";s:81:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/melissa-a-day/\";s:15:\"source_absolute\";s:81:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/team_member/melissa-a-day/\";s:11:\"destination\";s:107:\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/about/melissa-a-day/\";s:6:\"status\";s:4:\"done\";}}'),(5423,46380,'flco_files','a:0:{}'),(5424,46380,'pagetype','blog-post'),(5425,46380,'pagelanguage','english'),(5426,46380,'pagegoals','goal3'),(5428,46381,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2019/05/claimants-conviction-of-unlawful-manufacture-of-methamphetamine-does-not-amount-to-a-violation-under-wcl-114-a/'),(5430,46381,'flco_links_count','0'),(5431,46381,'flco_links','a:0:{}'),(5432,46381,'flco_files','a:0:{}'),(5433,46381,'pagetype','blog-post'),(5434,46381,'pagelanguage','english'),(5435,46381,'pagegoals','goal3'),(5437,46383,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/'),(5439,46383,'flco_links_count','0'),(5440,46383,'flco_links','a:0:{}'),(5441,46383,'flco_files','a:0:{}'),(5442,46383,'pagetype','blog-post'),(5443,46383,'pagelanguage','english'),(5444,46383,'pagegoals','goal3'),(5446,46384,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2019/05/lwec-incontinence/'),(5448,46384,'flco_links_count','0'),(5449,46384,'flco_links','a:0:{}'),(5450,46384,'flco_files','a:0:{}'),(5451,46384,'pagetype','blog-post'),(5452,46384,'pagelanguage','english'),(5453,46384,'pagegoals','goal3'),(5455,46385,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2019/05/a-new-quest-begins/'),(5457,46385,'flco_links_count','0'),(5458,46385,'flco_links','a:0:{}'),(5459,46385,'flco_files','a:0:{}'),(5460,46385,'pagetype','blog-post'),(5461,46385,'pagelanguage','english'),(5462,46385,'pagegoals','goal3'),(5464,46386,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2018/12/appeals-inventory-and-forms/'),(5466,46386,'flco_links_count','0'),(5467,46386,'flco_links','a:0:{}'),(5468,46386,'flco_files','a:0:{}'),(5469,46386,'pagetype','blog-post'),(5470,46386,'pagelanguage','english'),(5471,46386,'pagegoals','goal3'),(5473,46387,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/'),(5475,46387,'flco_links_count','0'),(5476,46387,'flco_links','a:0:{}'),(5477,46387,'flco_files','a:0:{}'),(5478,46387,'pagetype','blog-post'),(5479,46387,'pagelanguage','english'),(5480,46387,'pagegoals','goal3'),(5482,46388,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2018/05/youre-claiming-what/'),(5484,46388,'flco_links_count','0'),(5485,46388,'flco_links','a:0:{}'),(5486,46388,'flco_files','a:0:{}'),(5487,46388,'pagetype','blog-post'),(5488,46388,'pagelanguage','english'),(5489,46388,'pagegoals','goal3'),(5491,46367,'_edit_lock','1661890232:1'),(5492,46368,'_edit_lock','1661890397:1'),(5493,46369,'_edit_lock','1661890291:1'),(5494,46371,'_edit_lock','1661890313:1'),(5495,46372,'_edit_lock','1661890331:1'),(5496,46373,'_edit_lock','1661890352:1'),(5497,46374,'_edit_lock','1661890419:1'),(5498,46375,'_edit_lock','1661890495:1'),(5499,46376,'_edit_lock','1661890514:1'),(5500,46367,'_edit_last','1'),(5503,46367,'_aioseop_opengraph_settings','a:0:{}'),(5505,46367,'du-meta-custom-footer','default'),(5506,46367,'_et_post_bg_color','#ffffff'),(5507,46367,'_et_post_bg_layout','light'),(5508,46367,'_et_pb_show_title','on'),(5509,46367,'_et_pb_post_hide_nav','default'),(5510,46367,'_et_pb_page_layout','et_right_sidebar'),(5511,46367,'_et_pb_side_nav','off'),(5513,46367,'wriketaskid','No task ID associated'),(5514,46367,'_aioseop_title','No Further Causally Related Disability Due to Intervening Unrelated Accident | The Law Offices of Melissa A. Day, PLLC'),(5515,46368,'_edit_last','1'),(5518,46368,'_aioseop_opengraph_settings','a:0:{}'),(5520,46368,'du-meta-custom-footer','default'),(5521,46368,'_et_post_bg_color','#ffffff'),(5522,46368,'_et_post_bg_layout','light'),(5523,46368,'_et_pb_show_title','on'),(5524,46368,'_et_pb_post_hide_nav','default'),(5525,46368,'_et_pb_page_layout','et_right_sidebar'),(5526,46368,'_et_pb_side_nav','off'),(5528,46368,'wriketaskid','No task ID associated'),(5529,46368,'_aioseop_title','Independent Contractor or Employee | The Law Offices of Melissa A. Day, PLLC'),(5530,46369,'_edit_last','1'),(5531,46371,'_edit_last','1'),(5534,46369,'_aioseop_opengraph_settings','a:0:{}'),(5536,46369,'du-meta-custom-footer','default'),(5537,46369,'_et_post_bg_color','#ffffff'),(5538,46369,'_et_post_bg_layout','light'),(5539,46369,'_et_pb_show_title','on'),(5540,46369,'_et_pb_post_hide_nav','default'),(5541,46369,'_et_pb_page_layout','et_right_sidebar'),(5542,46369,'_et_pb_side_nav','off'),(5544,46369,'wriketaskid','No task ID associated'),(5545,46369,'_aioseop_title','No Error of Law or Fact In An Application For Full Board Review | The Law Offices of Melissa A. Day, PLLC'),(5548,46371,'_aioseop_opengraph_settings','a:0:{}'),(5550,46371,'du-meta-custom-footer','default'),(5551,46371,'_et_post_bg_color','#ffffff'),(5552,46371,'_et_post_bg_layout','light'),(5553,46371,'_et_pb_show_title','on'),(5554,46371,'_et_pb_post_hide_nav','default'),(5555,46371,'_et_pb_page_layout','et_right_sidebar'),(5556,46371,'_et_pb_side_nav','off'),(5558,46371,'wriketaskid','No task ID associated'),(5559,46371,'_aioseop_title','Fraud in the Family – Claimant Doing Other Work while Receiving Comp Benefits | The Law Offices of Melissa A. Day, PLLC'),(5560,46372,'_edit_last','1'),(5563,46372,'_aioseop_opengraph_settings','a:0:{}'),(5565,46372,'du-meta-custom-footer','default'),(5566,46372,'_et_post_bg_color','#ffffff'),(5567,46372,'_et_post_bg_layout','light'),(5568,46372,'_et_pb_show_title','on'),(5569,46372,'_et_pb_post_hide_nav','default'),(5570,46372,'_et_pb_page_layout','et_right_sidebar'),(5571,46372,'_et_pb_side_nav','off'),(5573,46372,'wriketaskid','No task ID associated'),(5574,46372,'_aioseop_title','How Change in Conditions for Classified Claimants Changed Drastically | The Law Offices of Melissa A. Day, PLLC'),(5575,46373,'_edit_last','1'),(5578,46373,'_aioseop_opengraph_settings','a:0:{}'),(5580,46373,'du-meta-custom-footer','default'),(5581,46373,'_et_post_bg_color','#ffffff'),(5582,46373,'_et_post_bg_layout','light'),(5583,46373,'_et_pb_show_title','on'),(5584,46373,'_et_pb_post_hide_nav','default'),(5585,46373,'_et_pb_page_layout','et_right_sidebar'),(5586,46373,'_et_pb_side_nav','off'),(5588,46373,'wriketaskid','No task ID associated'),(5589,46373,'_aioseop_title','Success with WCL Section 18 | The Law Offices of Melissa A. Day, PLLC'),(5590,46374,'_edit_last','1'),(5593,46374,'_aioseop_opengraph_settings','a:0:{}'),(5595,46374,'du-meta-custom-footer','default'),(5596,46374,'_et_post_bg_color','#ffffff'),(5597,46374,'_et_post_bg_layout','light'),(5598,46374,'_et_pb_show_title','on'),(5599,46374,'_et_pb_post_hide_nav','default'),(5600,46374,'_et_pb_page_layout','et_right_sidebar'),(5601,46374,'_et_pb_side_nav','off'),(5603,46374,'wriketaskid','No task ID associated'),(5604,46374,'_aioseop_title','Doubling Down – 2 Hearing Loss Claims for the Same Claimant Denied on the Same Day | The Law Offices of Melissa A. Day, PLLC'),(5605,46375,'_edit_last','1'),(5608,46375,'_aioseop_opengraph_settings','a:0:{}'),(5610,46375,'du-meta-custom-footer','default'),(5611,46375,'_et_post_bg_color','#ffffff'),(5612,46375,'_et_post_bg_layout','light'),(5613,46375,'_et_pb_show_title','on'),(5614,46375,'_et_pb_post_hide_nav','default'),(5615,46375,'_et_pb_page_layout','et_right_sidebar'),(5616,46375,'_et_pb_side_nav','off'),(5618,46375,'wriketaskid','No task ID associated'),(5619,46375,'_aioseop_title','Successful Disallowance! | The Law Offices of Melissa A. Day, PLLC'),(5620,46376,'_edit_last','1'),(5623,46376,'_aioseop_opengraph_settings','a:0:{}'),(5625,46376,'du-meta-custom-footer','default'),(5626,46376,'_et_post_bg_color','#ffffff'),(5627,46376,'_et_post_bg_layout','light'),(5628,46376,'_et_pb_show_title','on'),(5629,46376,'_et_pb_post_hide_nav','default'),(5630,46376,'_et_pb_page_layout','et_right_sidebar'),(5631,46376,'_et_pb_side_nav','off'),(5633,46376,'wriketaskid','No task ID associated'),(5634,46376,'_aioseop_title','Another Win for The Law Offices of Melissa A. Day! | The Law Offices of Melissa A. Day, PLLC'),(5635,46377,'_edit_lock','1661891334:1'),(5636,46378,'_edit_lock','1629262051:2461'),(5637,46380,'_edit_lock','1661948652:1'),(5638,46381,'_edit_lock','1661948625:1'),(5639,46383,'_edit_lock','1661948632:1'),(5640,46384,'_edit_lock','1661948664:1'),(5641,46385,'_edit_lock','1661948956:1'),(5642,46386,'_edit_lock','1661949069:1'),(5643,46387,'_edit_lock','1661949252:1'),(5644,46388,'_edit_lock','1661949187:1'),(5645,46377,'_edit_last','1'),(5648,46377,'_aioseop_opengraph_settings','a:0:{}'),(5650,46377,'du-meta-custom-footer','default'),(5651,46377,'_et_post_bg_color','#ffffff'),(5652,46377,'_et_post_bg_layout','light'),(5653,46377,'_et_pb_show_title','on'),(5654,46377,'_et_pb_post_hide_nav','default'),(5655,46377,'_et_pb_page_layout','et_right_sidebar'),(5656,46377,'_et_pb_side_nav','off'),(5658,46377,'wriketaskid','No task ID associated'),(5659,46377,'_aioseop_title','A Win for The Law Offices of Melissa A. Day | The Law Offices of Melissa A. Day, PLLC'),(5660,46378,'_edit_last','1'),(5663,46378,'_aioseop_opengraph_settings','a:0:{}'),(5665,46378,'du-meta-custom-footer','default'),(5666,46378,'_et_post_bg_color','#ffffff'),(5667,46378,'_et_post_bg_layout','light'),(5668,46378,'_et_pb_show_title','on'),(5669,46378,'_et_pb_post_hide_nav','default'),(5670,46378,'_et_pb_page_layout','et_right_sidebar'),(5671,46378,'_et_pb_side_nav','off'),(5673,46378,'wriketaskid','No task ID associated'),(5679,46378,'_aioseop_title','Proposed Changes to §§300.22 and 300.23 – Overpayments | The Law Offices of Melissa A. Day, PLLC'),(5680,46380,'_edit_last','1'),(5683,46380,'_aioseop_opengraph_settings','a:0:{}'),(5685,46380,'du-meta-custom-footer','default'),(5686,46380,'_et_post_bg_color','#ffffff'),(5687,46380,'_et_post_bg_layout','light'),(5688,46380,'_et_pb_show_title','on'),(5689,46380,'_et_pb_post_hide_nav','default'),(5690,46380,'_et_pb_page_layout','et_right_sidebar'),(5691,46380,'_et_pb_side_nav','off'),(5693,46380,'wriketaskid','No task ID associated'),(5694,46380,'_aioseop_title','Melissa A. Day, Esq. invited to join Buffalo Business First Leadership Trust | The Law Offices of Melissa A. Day, PLLC'),(5695,46381,'_edit_last','1'),(5698,46381,'_aioseop_opengraph_settings','a:0:{}'),(5700,46381,'du-meta-custom-footer','default'),(5701,46381,'_et_post_bg_color','#ffffff'),(5702,46381,'_et_post_bg_layout','light'),(5703,46381,'_et_pb_show_title','on'),(5704,46381,'_et_pb_post_hide_nav','default'),(5705,46381,'_et_pb_page_layout','et_right_sidebar'),(5706,46381,'_et_pb_side_nav','off'),(5708,46381,'wriketaskid','No task ID associated'),(5709,46381,'_aioseop_title','Claimant’s conviction of unlawful manufacture of methamphetamine does not amount to a violation under WCL 114-a. | The Law Offices of Melissa A. Day, PLLC'),(5710,46383,'_edit_last','1'),(5713,46383,'_aioseop_opengraph_settings','a:0:{}'),(5715,46383,'du-meta-custom-footer','default'),(5716,46383,'_et_post_bg_color','#ffffff'),(5717,46383,'_et_post_bg_layout','light'),(5718,46383,'_et_pb_show_title','on'),(5719,46383,'_et_pb_post_hide_nav','default'),(5720,46383,'_et_pb_page_layout','et_right_sidebar'),(5721,46383,'_et_pb_side_nav','off'),(5723,46383,'wriketaskid','No task ID associated'),(5725,46384,'_edit_last','1'),(5728,46384,'_aioseop_opengraph_settings','a:0:{}'),(5730,46384,'du-meta-custom-footer','default'),(5731,46384,'_et_post_bg_color','#ffffff'),(5732,46384,'_et_post_bg_layout','light'),(5733,46384,'_et_pb_show_title','on'),(5734,46384,'_et_pb_post_hide_nav','default'),(5735,46384,'_et_pb_page_layout','et_right_sidebar'),(5736,46384,'_et_pb_side_nav','off'),(5738,46384,'wriketaskid','No task ID associated'),(5739,46384,'_aioseop_title','LWEC & Incontinence | The Law Offices of Melissa A. Day, PLLC'),(5740,46385,'_edit_last','1'),(5743,46385,'_aioseop_opengraph_settings','a:0:{}'),(5745,46385,'du-meta-custom-footer','default'),(5746,46385,'_et_post_bg_color','#ffffff'),(5747,46385,'_et_post_bg_layout','light'),(5748,46385,'_et_pb_show_title','on'),(5749,46385,'_et_pb_post_hide_nav','default'),(5750,46385,'_et_pb_page_layout','et_right_sidebar'),(5751,46385,'_et_pb_side_nav','off'),(5753,46385,'wriketaskid','No task ID associated'),(5754,46385,'_aioseop_title','A New Quest Begins | The Law Offices of Melissa A. Day, PLLC'),(5755,46386,'_edit_last','1'),(5758,46386,'_aioseop_opengraph_settings','a:0:{}'),(5760,46386,'du-meta-custom-footer','default'),(5761,46386,'_et_post_bg_color','#ffffff'),(5762,46386,'_et_post_bg_layout','light'),(5763,46386,'_et_pb_show_title','on'),(5764,46386,'_et_pb_post_hide_nav','default'),(5765,46386,'_et_pb_page_layout','et_right_sidebar'),(5766,46386,'_et_pb_side_nav','off'),(5768,46386,'wriketaskid','No task ID associated'),(5769,46386,'_aioseop_title','Appeals Inventory and Forms | The Law Offices of Melissa A. Day, PLLC'),(5770,46387,'_edit_last','1'),(5773,46387,'_aioseop_opengraph_settings','a:0:{}'),(5775,46387,'du-meta-custom-footer','default'),(5776,46387,'_et_post_bg_color','#ffffff'),(5777,46387,'_et_post_bg_layout','light'),(5778,46387,'_et_pb_show_title','on'),(5779,46387,'_et_pb_post_hide_nav','default'),(5780,46387,'_et_pb_page_layout','et_right_sidebar'),(5781,46387,'_et_pb_side_nav','off'),(5783,46387,'wriketaskid','No task ID associated'),(5785,46388,'_edit_last','1'),(5788,46388,'_aioseop_opengraph_settings','a:0:{}'),(5790,46388,'du-meta-custom-footer','default'),(5791,46388,'_et_post_bg_color','#ffffff'),(5792,46388,'_et_post_bg_layout','light'),(5793,46388,'_et_pb_show_title','on'),(5794,46388,'_et_pb_post_hide_nav','default'),(5795,46388,'_et_pb_page_layout','et_right_sidebar'),(5796,46388,'_et_pb_side_nav','off'),(5798,46388,'wriketaskid','No task ID associated'),(5799,46388,'_aioseop_title','You’re claiming what?!? | The Law Offices of Melissa A. Day, PLLC'),(5806,46383,'_aioseop_title','Amendments to 2017 not retroactive if PPD claimant was not attached to labor market | The Law Offices of Melissa A. Day, PLLC'),(5811,46387,'_aioseop_title','Review of Workers Compensation Board Schedule Loss of Use Frequently Asked Questions and New Permanency Forms | The Law Offices of Melissa A. Day, PLLC'),(5813,46413,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2018/05/new-slu-guidelines-presentation-by-the-board/'),(5815,46413,'flco_links_count','0'),(5816,46413,'flco_links','a:0:{}'),(5817,46413,'flco_files','a:0:{}'),(5818,46413,'pagetype','blog-post'),(5819,46413,'pagelanguage','english'),(5820,46413,'pagegoals','goal3'),(5822,46414,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2018/05/united-states-supreme-court-is-considering-a-petition-for-a-writ-of-certiorari-of-the-american-economy-decision/'),(5824,46414,'flco_links_count','0'),(5825,46414,'flco_links','a:0:{}'),(5826,46414,'flco_files','a:1:{i:0;a:7:{s:3:\"url\";s:107:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2018/05/CourtBuilding-300x167.jpg\";s:8:\"absolute\";s:107:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2018/05/CourtBuilding-300x167.jpg\";s:4:\"type\";s:5:\"image\";s:9:\"extension\";s:3:\"jpg\";s:7:\"post_ID\";i:46414;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:2;}}'),(5827,46416,'_wp_attached_file','2018/05/CourtBuilding-300x167-1.jpg'),(5828,46416,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:167;s:4:\"file\";s:35:\"2018/05/CourtBuilding-300x167-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"CourtBuilding-300x167-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:33:\"CourtBuilding-300x167-1-75x42.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:42;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(5829,46416,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2018/05/CourtBuilding-300x167.jpg'),(5831,46415,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/'),(5834,46415,'flco_links_count','0'),(5835,46415,'flco_links','a:0:{}'),(5836,46415,'flco_files','a:0:{}'),(5837,46414,'pagetype','blog-post'),(5838,46414,'pagelanguage','english'),(5839,46414,'pagegoals','goal3'),(5840,46415,'pagetype','blog-post'),(5841,46415,'pagelanguage','english'),(5842,46415,'pagegoals','goal3'),(5844,46418,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2018/03/rick-costner-sr-honors-the-life-of-his-18-year-old-son-and-co-worker-ricky-costner-jr-after-he-was-murdered-in-front-of-him-at-work-at-a-benefit-for-the-ricky-costner-jr-college-scholarship-fund/'),(5846,46418,'flco_links_count','0'),(5847,46418,'flco_links','a:0:{}'),(5848,46418,'flco_files','a:0:{}'),(5849,46419,'_aioseop_opengraph_settings','a:0:{}'),(5850,46419,'author_byline','by'),(5851,46419,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(5852,46418,'pagetype','blog-post'),(5853,46418,'pagelanguage','english'),(5854,46418,'pagegoals','goal3'),(5856,46420,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2017/10/court-of-appeals-upholds-2013-amendment-to-section-25-a-marking-the-end-for-the-fund-for-reopened-cases/'),(5858,46420,'flco_links_count','0'),(5859,46420,'flco_links','a:0:{}'),(5860,46420,'flco_files','a:0:{}'),(5861,46420,'pagetype','blog-post'),(5862,46420,'pagelanguage','english'),(5863,46420,'pagegoals','goal3'),(5864,46419,'_edit_lock','1661949153:1'),(5866,46421,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/'),(5868,46421,'flco_links_count','0'),(5869,46421,'flco_links','a:0:{}'),(5870,46421,'flco_files','a:0:{}'),(5871,46421,'pagetype','blog-post'),(5872,46421,'pagelanguage','english'),(5873,46421,'pagegoals','goal3'),(5875,46422,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/'),(5877,46422,'flco_links_count','0'),(5878,46422,'flco_links','a:0:{}'),(5879,46422,'flco_files','a:1:{i:0;a:7:{s:3:\"url\";s:138:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2017/06/EBRB-1-finding-that-MTGs-apply-out-of-state_Redacted.pdf\";s:8:\"absolute\";s:138:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2017/06/EBRB-1-finding-that-MTGs-apply-out-of-state_Redacted.pdf\";s:4:\"type\";s:3:\"pdf\";s:9:\"extension\";s:3:\"pdf\";s:7:\"post_ID\";i:46422;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}}'),(5881,46423,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2017/02/permanent-partial-disability-safety-netwhat-to-expect-from-wcl-%c2%a735/'),(5883,46423,'flco_links_count','0'),(5884,46423,'flco_links','a:0:{}'),(5885,46423,'flco_files','a:1:{i:0;a:7:{s:3:\"url\";s:94:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2017/02/image002.jpg\";s:8:\"absolute\";s:94:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2017/02/image002.jpg\";s:4:\"type\";s:5:\"image\";s:9:\"extension\";s:3:\"jpg\";s:7:\"post_ID\";i:46423;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}}'),(5886,46424,'_wp_attached_file','2017/06/EBRB-1-finding-that-MTGs-apply-out-of-state_Redacted.pdf'),(5887,46424,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:60:\"EBRB-1-finding-that-MTGs-apply-out-of-state_Redacted-pdf.jpg\";s:5:\"width\";i:1089;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:68:\"EBRB-1-finding-that-MTGs-apply-out-of-state_Redacted-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:69:\"EBRB-1-finding-that-MTGs-apply-out-of-state_Redacted-pdf-792x1024.jpg\";s:5:\"width\";i:792;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"EBRB-1-finding-that-MTGs-apply-out-of-state_Redacted-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(5888,46424,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2017/06/EBRB-1-finding-that-MTGs-apply-out-of-state_Redacted.pdf'),(5890,46422,'pagetype','blog-post'),(5891,46422,'pagelanguage','english'),(5892,46422,'pagegoals','goal3'),(5893,46427,'_wp_attached_file','2017/02/image002.jpg'),(5894,46427,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:311;s:6:\"height\";i:182;s:4:\"file\";s:20:\"2017/02/image002.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image002-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:18:\"image002-75x44.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(5895,46427,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2017/02/image002.jpg'),(5897,46426,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2017/01/back-to-the-future-the-return-of-wcl-252-b-fact-finding-without-judges-and-legal-reasoning-without-lawyers/'),(5900,46426,'flco_links_count','0'),(5901,46426,'flco_links','a:0:{}'),(5902,46426,'flco_files','a:2:{i:0;a:7:{s:3:\"url\";s:94:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2017/01/image001.png\";s:8:\"absolute\";s:94:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2017/01/image001.png\";s:4:\"type\";s:5:\"image\";s:9:\"extension\";s:3:\"png\";s:7:\"post_ID\";i:46426;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}i:1;a:7:{s:3:\"url\";s:94:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2017/01/image002.png\";s:8:\"absolute\";s:94:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2017/01/image002.png\";s:4:\"type\";s:5:\"image\";s:9:\"extension\";s:3:\"png\";s:7:\"post_ID\";i:46426;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}}'),(5903,46423,'pagetype','blog-post'),(5904,46423,'pagelanguage','english'),(5905,46423,'pagegoals','goal3'),(5906,46429,'_wp_attached_file','2017/01/image001.png'),(5907,46429,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:660;s:6:\"height\";i:140;s:4:\"file\";s:20:\"2017/01/image001.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"image001-300x64.png\";s:5:\"width\";i:300;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image001-150x140.png\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:20:\"image001-500x106.png\";s:5:\"width\";i:500;s:6:\"height\";i:106;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:18:\"image001-75x16.png\";s:5:\"width\";i:75;s:6:\"height\";i:16;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"image001-400x140.png\";s:5:\"width\";i:400;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"image001-400x140.png\";s:5:\"width\";i:400;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"image001-510x140.png\";s:5:\"width\";i:510;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"image001-400x140.png\";s:5:\"width\";i:400;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:20:\"image001-480x102.png\";s:5:\"width\";i:480;s:6:\"height\";i:102;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:{}}}'),(5908,46429,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2017/01/image001.png'),(5910,46432,'_wp_attached_file','2017/01/image002.png'),(5911,46432,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:669;s:6:\"height\";i:72;s:4:\"file\";s:20:\"2017/01/image002.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"image002-300x32.png\";s:5:\"width\";i:300;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"image002-150x72.png\";s:5:\"width\";i:150;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:19:\"image002-500x54.png\";s:5:\"width\";i:500;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:17:\"image002-75x8.png\";s:5:\"width\";i:75;s:6:\"height\";i:8;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"image002-400x72.png\";s:5:\"width\";i:400;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"image002-400x72.png\";s:5:\"width\";i:400;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"image002-510x72.png\";s:5:\"width\";i:510;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"image002-400x72.png\";s:5:\"width\";i:400;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:19:\"image002-480x52.png\";s:5:\"width\";i:480;s:6:\"height\";i:52;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:{}}}'),(5912,46432,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2017/01/image002.png'),(5914,46431,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2016/12/its-the-holiday-season/'),(5916,46431,'flco_links_count','0'),(5917,46431,'flco_links','a:0:{}'),(5918,46431,'flco_files','a:0:{}'),(5920,46419,'_edit_last','1'),(5921,46431,'pagetype','blog-post'),(5922,46431,'pagelanguage','english'),(5923,46431,'pagegoals','goal3'),(5924,46426,'pagetype','blog-post'),(5925,46426,'pagelanguage','english'),(5926,46426,'pagegoals','goal3'),(5928,46433,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2016/10/happy-hallo-wean/'),(5933,46419,'du-meta-custom-footer','default'),(5934,46419,'_et_post_bg_color','#ffffff'),(5935,46419,'_et_post_bg_layout','light'),(5936,46419,'_et_pb_show_title','on'),(5937,46419,'_et_pb_post_hide_nav','default'),(5938,46419,'_et_pb_page_layout','et_right_sidebar'),(5939,46419,'_et_pb_side_nav','off'),(5941,46419,'_wp_old_date','2021-08-18'),(5942,46419,'pagegoals','goal3'),(5943,46419,'wriketaskid','No task ID associated'),(5944,46419,'pagelanguage','english'),(5945,46419,'pagetype','blog-post'),(5946,46419,'_aioseop_title','Proposed Changes Submitted Seeking to Expand the Board’s Legal Internship Program | The Law Offices of Melissa A. Day, PLLC'),(5947,46433,'flco_links_count','0'),(5948,46433,'flco_links','a:0:{}'),(5949,46433,'flco_files','a:1:{i:0;a:7:{s:3:\"url\";s:89:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2016/10/pic.png\";s:8:\"absolute\";s:89:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2016/10/pic.png\";s:4:\"type\";s:5:\"image\";s:9:\"extension\";s:3:\"png\";s:7:\"post_ID\";i:46433;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}}'),(5950,46435,'_wp_attached_file','2016/10/pic.png'),(5951,46435,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1607;s:6:\"height\";i:188;s:4:\"file\";s:15:\"2016/10/pic.png\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"pic-300x35.png\";s:5:\"width\";i:300;s:6:\"height\";i:35;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"pic-1024x120.png\";s:5:\"width\";i:1024;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"pic-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:14:\"pic-768x90.png\";s:5:\"width\";i:768;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"pic-1536x180.png\";s:5:\"width\";i:1536;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:16:\"pic-1600x187.png\";s:5:\"width\";i:1600;s:6:\"height\";i:187;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:16:\"pic-1600x188.png\";s:5:\"width\";i:1600;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:14:\"pic-700x82.png\";s:5:\"width\";i:700;s:6:\"height\";i:82;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:16:\"pic-1152x135.png\";s:5:\"width\";i:1152;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:3:\"bio\";a:4:{s:4:\"file\";s:16:\"pic-1000x117.png\";s:5:\"width\";i:1000;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:14:\"pic-500x58.png\";s:5:\"width\";i:500;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:16:\"pic-1200x188.png\";s:5:\"width\";i:1200;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:12:\"pic-75x9.png\";s:5:\"width\";i:75;s:6:\"height\";i:9;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:15:\"pic-400x188.png\";s:5:\"width\";i:400;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:16:\"pic-1080x188.png\";s:5:\"width\";i:1080;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:15:\"pic-400x188.png\";s:5:\"width\";i:400;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:15:\"pic-510x188.png\";s:5:\"width\";i:510;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:16:\"pic-1080x126.png\";s:5:\"width\";i:1080;s:6:\"height\";i:126;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:15:\"pic-400x188.png\";s:5:\"width\";i:400;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:16:\"pic-1280x150.png\";s:5:\"width\";i:1280;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:15:\"pic-980x115.png\";s:5:\"width\";i:980;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:14:\"pic-480x56.png\";s:5:\"width\";i:480;s:6:\"height\";i:56;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:{}}}'),(5952,46435,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2016/10/pic.png'),(5954,46436,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2016/10/to-wean-or-not-to-wean-that-is-the-question/'),(5957,46433,'pagetype','blog-post'),(5958,46433,'pagelanguage','english'),(5959,46433,'pagegoals','goal3'),(5960,46436,'flco_links_count','0'),(5961,46436,'flco_links','a:0:{}'),(5962,46436,'flco_files','a:1:{i:0;a:7:{s:3:\"url\";s:101:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2016/10/Opioid-Decision.pdf\";s:8:\"absolute\";s:101:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2016/10/Opioid-Decision.pdf\";s:4:\"type\";s:3:\"pdf\";s:9:\"extension\";s:3:\"pdf\";s:7:\"post_ID\";i:46436;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}}'),(5963,46438,'_wp_attached_file','2016/10/Opioid-Decision.pdf'),(5964,46438,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:23:\"Opioid-Decision-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Opioid-Decision-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Opioid-Decision-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Opioid-Decision-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(5965,46438,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2016/10/Opioid-Decision.pdf'),(5967,46439,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2016/04/the-newly-reopened-fund-for-reopened-cases-the-first-department-declares-the-retroactive-application-of-25-a-unconstitutional/'),(5969,46439,'flco_links_count','0'),(5970,46439,'flco_links','a:0:{}'),(5971,46439,'flco_files','a:1:{i:0;a:7:{s:3:\"url\";s:107:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/25-a-Unconstitutional.pdf\";s:8:\"absolute\";s:107:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/25-a-Unconstitutional.pdf\";s:4:\"type\";s:3:\"pdf\";s:9:\"extension\";s:3:\"pdf\";s:7:\"post_ID\";i:46439;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}}'),(5972,46436,'pagetype','blog-post'),(5973,46436,'pagelanguage','english'),(5974,46436,'pagegoals','goal3'),(5975,46441,'_wp_attached_file','2016/04/25-a-Unconstitutional.pdf'),(5976,46441,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:29:\"25-a-Unconstitutional-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"25-a-Unconstitutional-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"25-a-Unconstitutional-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"25-a-Unconstitutional-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(5977,46441,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/25-a-Unconstitutional.pdf'),(5979,46442,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/11/ny-allows-employer-to-utilize-a-preferred-provider-organization-ppo-for-the-first-30-days-of-treatment/'),(5981,46442,'flco_links_count','0'),(5982,46442,'flco_links','a:0:{}'),(5983,46442,'flco_files','a:0:{}'),(5984,46439,'pagetype','blog-post'),(5985,46439,'pagelanguage','english'),(5986,46439,'pagegoals','goal3'),(5987,46442,'pagetype','blog-post'),(5988,46442,'pagelanguage','english'),(5989,46442,'pagegoals','goal3'),(5991,46444,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/11/full-board-holds-that-an-employee-cannot-be-considered-a-six-day-worker-merely-because-he-has-worked-more-than-270-days/'),(5993,46444,'flco_links_count','0'),(5994,46444,'flco_links','a:0:{}'),(5995,46444,'flco_files','a:0:{}'),(5996,46444,'pagetype','blog-post'),(5997,46444,'pagelanguage','english'),(5998,46444,'pagegoals','goal3'),(6000,46445,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/10/when-does-vocational-and-functional-considerations-such-as-a-claimants-age-education-training-experience-etc-have-an-influence-on-a-claimants-benefits/'),(6002,46445,'flco_links_count','0'),(6003,46445,'flco_links','a:0:{}'),(6004,46445,'flco_files','a:0:{}'),(6005,46445,'pagetype','blog-post'),(6006,46445,'pagelanguage','english'),(6007,46445,'pagegoals','goal3'),(6009,46446,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/09/challenge-yourself/'),(6011,46446,'flco_links_count','0'),(6012,46446,'flco_links','a:0:{}'),(6013,46446,'flco_files','a:1:{i:0;a:7:{s:3:\"url\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2015/09/Crossword-EXF-Puzzle-and-Clues.png\";s:8:\"absolute\";s:116:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2015/09/Crossword-EXF-Puzzle-and-Clues.png\";s:4:\"type\";s:5:\"image\";s:9:\"extension\";s:3:\"png\";s:7:\"post_ID\";i:46446;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}}'),(6014,46447,'_wp_attached_file','2015/09/Crossword-EXF-Puzzle-and-Clues.png'),(6015,46447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1208;s:6:\"height\";i:796;s:4:\"file\";s:42:\"2015/09/Crossword-EXF-Puzzle-and-Clues.png\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Crossword-EXF-Puzzle-and-Clues-300x198.png\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Crossword-EXF-Puzzle-and-Clues-1024x675.png\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Crossword-EXF-Puzzle-and-Clues-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:42:\"Crossword-EXF-Puzzle-and-Clues-768x506.png\";s:5:\"width\";i:768;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:42:\"Crossword-EXF-Puzzle-and-Clues-700x461.png\";s:5:\"width\";i:700;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:43:\"Crossword-EXF-Puzzle-and-Clues-1152x759.png\";s:5:\"width\";i:1152;s:6:\"height\";i:759;s:9:\"mime-type\";s:9:\"image/png\";}s:3:\"bio\";a:4:{s:4:\"file\";s:43:\"Crossword-EXF-Puzzle-and-Clues-1000x659.png\";s:5:\"width\";i:1000;s:6:\"height\";i:659;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:42:\"Crossword-EXF-Puzzle-and-Clues-500x329.png\";s:5:\"width\";i:500;s:6:\"height\";i:329;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:43:\"Crossword-EXF-Puzzle-and-Clues-1200x630.png\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:40:\"Crossword-EXF-Puzzle-and-Clues-75x49.png\";s:5:\"width\";i:75;s:6:\"height\";i:49;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"Crossword-EXF-Puzzle-and-Clues-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"Crossword-EXF-Puzzle-and-Clues-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"Crossword-EXF-Puzzle-and-Clues-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"Crossword-EXF-Puzzle-and-Clues-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"Crossword-EXF-Puzzle-and-Clues-1080x712.png\";s:5:\"width\";i:1080;s:6:\"height\";i:712;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"Crossword-EXF-Puzzle-and-Clues-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:42:\"Crossword-EXF-Puzzle-and-Clues-980x646.png\";s:5:\"width\";i:980;s:6:\"height\";i:646;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:42:\"Crossword-EXF-Puzzle-and-Clues-480x316.png\";s:5:\"width\";i:480;s:6:\"height\";i:316;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:{}}}'),(6016,46447,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2015/09/Crossword-EXF-Puzzle-and-Clues.png'),(6018,46448,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/09/labor-market-attachment-refresher/'),(6021,46448,'flco_links_count','0'),(6022,46448,'flco_links','a:0:{}'),(6023,46448,'flco_files','a:0:{}'),(6024,46446,'pagetype','blog-post'),(6025,46446,'pagelanguage','english'),(6026,46446,'pagegoals','goal3'),(6027,46448,'pagetype','blog-post'),(6028,46448,'pagelanguage','english'),(6029,46448,'pagegoals','goal3'),(6031,46450,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/09/summer-is-almost-over-seasonal-employees-back-to-work-or-not-part-2-on-calculating-aww/'),(6033,46450,'flco_links_count','0'),(6034,46450,'flco_links','a:0:{}'),(6035,46450,'flco_files','a:0:{}'),(6036,46450,'pagetype','blog-post'),(6037,46450,'pagelanguage','english'),(6038,46450,'pagegoals','goal3'),(6039,46413,'_edit_lock','1661949224:1'),(6040,46414,'_edit_lock','1661949257:1'),(6041,46415,'_edit_lock','1661949364:1'),(6042,46418,'_edit_lock','1661949312:1'),(6043,46420,'_edit_lock','1661949433:1'),(6044,46421,'_edit_lock','1661949616:1'),(6045,46422,'_edit_lock','1661949502:1'),(6046,46423,'_edit_lock','1661949541:1'),(6047,46426,'_edit_lock','1661949588:1'),(6048,46431,'_edit_lock','1661949653:1'),(6049,46413,'_edit_last','1'),(6052,46413,'_aioseop_opengraph_settings','a:0:{}'),(6054,46413,'du-meta-custom-footer','default'),(6055,46413,'_et_post_bg_color','#ffffff'),(6056,46413,'_et_post_bg_layout','light'),(6057,46413,'_et_pb_show_title','on'),(6058,46413,'_et_pb_post_hide_nav','default'),(6059,46413,'_et_pb_page_layout','et_right_sidebar'),(6060,46413,'_et_pb_side_nav','off'),(6062,46413,'wriketaskid','No task ID associated'),(6063,46413,'_aioseop_title','New SLU Guidelines Presentation by the Board | The Law Offices of Melissa A. Day, PLLC'),(6065,46414,'_edit_last','1'),(6068,46414,'_aioseop_opengraph_settings','a:0:{}'),(6070,46414,'du-meta-custom-footer','default'),(6071,46414,'_et_post_bg_color','#ffffff'),(6072,46414,'_et_post_bg_layout','light'),(6073,46414,'_et_pb_show_title','on'),(6074,46414,'_et_pb_post_hide_nav','default'),(6075,46414,'_et_pb_page_layout','et_right_sidebar'),(6076,46414,'_et_pb_side_nav','off'),(6078,46414,'wriketaskid','No task ID associated'),(6079,46414,'_aioseop_title','United States Supreme Court is Considering a Petition for a Writ of Certiorari Of the American Economy Decision | The Law Offices of Melissa A. Day, PLLC'),(6080,46415,'_edit_last','1'),(6083,46415,'_aioseop_opengraph_settings','a:0:{}'),(6085,46415,'du-meta-custom-footer','default'),(6086,46415,'_et_post_bg_color','#ffffff'),(6087,46415,'_et_post_bg_layout','light'),(6088,46415,'_et_pb_show_title','on'),(6089,46415,'_et_pb_post_hide_nav','default'),(6090,46415,'_et_pb_page_layout','et_right_sidebar'),(6091,46415,'_et_pb_side_nav','off'),(6093,46415,'wriketaskid','No task ID associated'),(6094,46415,'_aioseop_title','Schedule Loss of Use Awards – Grrrrrrrrr | The Law Offices of Melissa A. Day, PLLC'),(6095,46418,'_edit_last','1'),(6098,46418,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"article\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(6100,46418,'du-meta-custom-footer','default'),(6101,46418,'_et_post_bg_color','#ffffff'),(6102,46418,'_et_post_bg_layout','light'),(6103,46418,'_et_pb_show_title','on'),(6104,46418,'_et_pb_post_hide_nav','default'),(6105,46418,'_et_pb_page_layout','et_right_sidebar'),(6106,46418,'_et_pb_side_nav','off'),(6108,46418,'wriketaskid','No task ID associated'),(6110,46420,'_edit_last','1'),(6113,46420,'_aioseop_opengraph_settings','a:0:{}'),(6115,46420,'du-meta-custom-footer','default'),(6116,46420,'_et_post_bg_color','#ffffff'),(6117,46420,'_et_post_bg_layout','light'),(6118,46420,'_et_pb_show_title','on'),(6119,46420,'_et_pb_post_hide_nav','default'),(6120,46420,'_et_pb_page_layout','et_right_sidebar'),(6121,46420,'_et_pb_side_nav','off'),(6123,46420,'wriketaskid','No task ID associated'),(6124,46420,'_aioseop_title','Court of Appeals Upholds 2013 Amendment to Section 25-a – Marking the End for The Fund for Reopened Cases | The Law Offices of Melissa A. Day, PLLC'),(6125,46421,'_edit_last','1'),(6128,46421,'_aioseop_opengraph_settings','a:0:{}'),(6130,46421,'du-meta-custom-footer','default'),(6131,46421,'_et_post_bg_color','#ffffff'),(6132,46421,'_et_post_bg_layout','light'),(6133,46421,'_et_pb_show_title','on'),(6134,46421,'_et_pb_post_hide_nav','default'),(6135,46421,'_et_pb_page_layout','et_right_sidebar'),(6136,46421,'_et_pb_side_nav','off'),(6138,46421,'wriketaskid','No task ID associated'),(6139,46421,'_aioseop_title','How to Avoid Bad Luck in Your Comp Claims This Friday the 13th – Some Basic Time Constraints for New York State Workers’ Compensation Claims to Keep in Mind | The Law Offices of Melissa A. Day, PLLC'),(6140,46422,'_edit_last','1'),(6143,46422,'_aioseop_opengraph_settings','a:0:{}'),(6145,46422,'du-meta-custom-footer','default'),(6146,46422,'_et_post_bg_color','#ffffff'),(6147,46422,'_et_post_bg_layout','light'),(6148,46422,'_et_pb_show_title','on'),(6149,46422,'_et_pb_post_hide_nav','default'),(6150,46422,'_et_pb_page_layout','et_right_sidebar'),(6151,46422,'_et_pb_side_nav','off'),(6153,46422,'wriketaskid','No task ID associated'),(6154,46422,'_aioseop_title','Board Finds that Medical Treatment Guidelines Apply to Out of State Claimants | The Law Offices of Melissa A. Day, PLLC'),(6155,46423,'_edit_last','1'),(6158,46423,'_aioseop_opengraph_settings','a:0:{}'),(6160,46423,'du-meta-custom-footer','default'),(6161,46423,'_et_post_bg_color','#ffffff'),(6162,46423,'_et_post_bg_layout','light'),(6163,46423,'_et_pb_show_title','on'),(6164,46423,'_et_pb_post_hide_nav','default'),(6165,46423,'_et_pb_page_layout','et_right_sidebar'),(6166,46423,'_et_pb_side_nav','off'),(6168,46423,'wriketaskid','No task ID associated'),(6169,46423,'_aioseop_title','Permanent Partial Disability “Safety Net”…What to Expect from WCL §35 | The Law Offices of Melissa A. Day, PLLC'),(6170,46426,'_edit_last','1'),(6173,46426,'_aioseop_opengraph_settings','a:0:{}'),(6175,46426,'du-meta-custom-footer','default'),(6176,46426,'_et_post_bg_color','#ffffff'),(6177,46426,'_et_post_bg_layout','light'),(6178,46426,'_et_pb_show_title','on'),(6179,46426,'_et_pb_post_hide_nav','default'),(6180,46426,'_et_pb_page_layout','et_right_sidebar'),(6181,46426,'_et_pb_side_nav','off'),(6183,46426,'wriketaskid','No task ID associated'),(6184,46426,'_aioseop_title','Back to the Future:  The Return of WCL 25(2-b): Fact-Finding without Judges and Legal Reasoning without Lawyers | The Law Offices of Melissa A. Day, PLLC'),(6185,46431,'_edit_last','1'),(6188,46431,'_aioseop_opengraph_settings','a:0:{}'),(6190,46431,'du-meta-custom-footer','default'),(6191,46431,'_et_post_bg_color','#ffffff'),(6192,46431,'_et_post_bg_layout','light'),(6193,46431,'_et_pb_show_title','on'),(6194,46431,'_et_pb_post_hide_nav','default'),(6195,46431,'_et_pb_page_layout','et_right_sidebar'),(6196,46431,'_et_pb_side_nav','off'),(6198,46431,'wriketaskid','No task ID associated'),(6199,46431,'_aioseop_title','It’s the Holiday Season! | The Law Offices of Melissa A. Day, PLLC'),(6201,46433,'_edit_lock','1661949705:1'),(6202,46436,'_edit_lock','1661949757:1'),(6203,46439,'_edit_lock','1661949795:1'),(6204,46442,'_edit_lock','1661949893:1'),(6205,46444,'_edit_lock','1661949920:1'),(6206,46445,'_edit_lock','1661949988:1'),(6207,46446,'_edit_lock','1661950177:1'),(6208,46448,'_edit_lock','1661950070:1'),(6209,46450,'_edit_lock','1661950097:1'),(6210,46433,'_edit_last','1'),(6213,46433,'_aioseop_opengraph_settings','a:0:{}'),(6215,46433,'du-meta-custom-footer','default'),(6216,46433,'_et_post_bg_color','#ffffff'),(6217,46433,'_et_post_bg_layout','light'),(6218,46433,'_et_pb_show_title','on'),(6219,46433,'_et_pb_post_hide_nav','default'),(6220,46433,'_et_pb_page_layout','et_right_sidebar'),(6221,46433,'_et_pb_side_nav','off'),(6223,46433,'wriketaskid','No task ID associated'),(6224,46433,'_aioseop_title','HAPPY HALLO-WEAN | The Law Offices of Melissa A. Day, PLLC'),(6225,46436,'_edit_last','1'),(6228,46436,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"article\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(6230,46436,'du-meta-custom-footer','default'),(6231,46436,'_et_post_bg_color','#ffffff'),(6232,46436,'_et_post_bg_layout','light'),(6233,46436,'_et_pb_show_title','on'),(6234,46436,'_et_pb_post_hide_nav','default'),(6235,46436,'_et_pb_page_layout','et_right_sidebar'),(6236,46436,'_et_pb_side_nav','off'),(6238,46436,'wriketaskid','No task ID associated'),(6240,46439,'_edit_last','1'),(6243,46439,'_aioseop_opengraph_settings','a:0:{}'),(6245,46439,'du-meta-custom-footer','default'),(6246,46439,'_et_post_bg_color','#ffffff'),(6247,46439,'_et_post_bg_layout','light'),(6248,46439,'_et_pb_show_title','on'),(6249,46439,'_et_pb_post_hide_nav','default'),(6250,46439,'_et_pb_page_layout','et_right_sidebar'),(6251,46439,'_et_pb_side_nav','off'),(6253,46439,'wriketaskid','No task ID associated'),(6254,46439,'_aioseop_title','Reopened Cases | The Law Offices of Melissa A. Day, PLLC'),(6255,46442,'_edit_last','1'),(6258,46442,'_aioseop_opengraph_settings','a:0:{}'),(6260,46442,'du-meta-custom-footer','default'),(6261,46442,'_et_post_bg_color','#ffffff'),(6262,46442,'_et_post_bg_layout','light'),(6263,46442,'_et_pb_show_title','on'),(6264,46442,'_et_pb_post_hide_nav','default'),(6265,46442,'_et_pb_page_layout','et_right_sidebar'),(6266,46442,'_et_pb_side_nav','off'),(6268,46442,'wriketaskid','No task ID associated'),(6270,46444,'_edit_last','1'),(6273,46444,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"article\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(6275,46444,'du-meta-custom-footer','default'),(6276,46444,'_et_post_bg_color','#ffffff'),(6277,46444,'_et_post_bg_layout','light'),(6278,46444,'_et_pb_show_title','on'),(6279,46444,'_et_pb_post_hide_nav','default'),(6280,46444,'_et_pb_page_layout','et_right_sidebar'),(6281,46444,'_et_pb_side_nav','off'),(6283,46444,'wriketaskid','No task ID associated'),(6285,46445,'_edit_last','1'),(6288,46445,'_aioseop_opengraph_settings','a:0:{}'),(6290,46445,'du-meta-custom-footer','default'),(6291,46445,'_et_post_bg_color','#ffffff'),(6292,46445,'_et_post_bg_layout','light'),(6293,46445,'_et_pb_show_title','on'),(6294,46445,'_et_pb_post_hide_nav','default'),(6295,46445,'_et_pb_page_layout','et_right_sidebar'),(6296,46445,'_et_pb_side_nav','off'),(6298,46445,'wriketaskid','No task ID associated'),(6299,46445,'_aioseop_title','Vocational and Functional… | The Law Offices of Melissa A. Day, PLLC'),(6300,46446,'_edit_last','1'),(6303,46446,'_aioseop_opengraph_settings','a:0:{}'),(6305,46446,'du-meta-custom-footer','default'),(6306,46446,'_et_post_bg_color','#ffffff'),(6307,46446,'_et_post_bg_layout','light'),(6308,46446,'_et_pb_show_title','on'),(6309,46446,'_et_pb_post_hide_nav','default'),(6310,46446,'_et_pb_page_layout','et_right_sidebar'),(6311,46446,'_et_pb_side_nav','off'),(6313,46446,'wriketaskid','No task ID associated'),(6314,46446,'_aioseop_title','Challenge Yourself | The Law Offices of Melissa A. Day, PLLC'),(6315,46448,'_edit_last','1'),(6318,46448,'_aioseop_opengraph_settings','a:0:{}'),(6320,46448,'du-meta-custom-footer','default'),(6321,46448,'_et_post_bg_color','#ffffff'),(6322,46448,'_et_post_bg_layout','light'),(6323,46448,'_et_pb_show_title','on'),(6324,46448,'_et_pb_post_hide_nav','default'),(6325,46448,'_et_pb_page_layout','et_right_sidebar'),(6326,46448,'_et_pb_side_nav','off'),(6328,46448,'wriketaskid','No task ID associated'),(6329,46448,'_aioseop_title','Labor Market Attachment Refresher | The Law Offices of Melissa A. Day, PLLC'),(6330,46450,'_edit_last','1'),(6333,46450,'_aioseop_opengraph_settings','a:0:{}'),(6335,46450,'du-meta-custom-footer','default'),(6336,46450,'_et_post_bg_color','#ffffff'),(6337,46450,'_et_post_bg_layout','light'),(6338,46450,'_et_pb_show_title','on'),(6339,46450,'_et_pb_post_hide_nav','default'),(6340,46450,'_et_pb_page_layout','et_right_sidebar'),(6341,46450,'_et_pb_side_nav','off'),(6343,46450,'wriketaskid','No task ID associated'),(6344,46450,'_aioseop_title','Summer is Almost Over! | The Law Offices of Melissa A. Day, PLLC'),(6350,46442,'_aioseop_title','NY Allows Employer to… | The Law Offices of Melissa A. Day, PLLC'),(6352,46478,'_aioseop_opengraph_settings','a:0:{}'),(6353,46478,'author_byline','by'),(6354,46478,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(6356,46479,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/08/answers-to-the-quiz-test-your-ny-workers-compensation-chops/'),(6358,46479,'flco_links_count','0'),(6359,46479,'flco_links','a:0:{}'),(6360,46479,'flco_files','a:0:{}'),(6361,46479,'pagetype','blog-post'),(6362,46479,'pagelanguage','english'),(6363,46479,'pagegoals','goal3'),(6364,46478,'_edit_lock','1661950143:1'),(6366,46480,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/08/average-wages-cost-containment-by-controlling-the-fundamentals/'),(6368,46480,'flco_links_count','0'),(6369,46480,'flco_links','a:0:{}'),(6370,46480,'flco_files','a:1:{i:0;a:7:{s:3:\"url\";s:90:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2015/08/poop.png\";s:8:\"absolute\";s:90:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2015/08/poop.png\";s:4:\"type\";s:5:\"image\";s:9:\"extension\";s:3:\"png\";s:7:\"post_ID\";i:46480;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}}'),(6371,46481,'_wp_attached_file','2015/08/poop.png'),(6372,46481,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:742;s:6:\"height\";i:73;s:4:\"file\";s:16:\"2015/08/poop.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"poop-300x30.png\";s:5:\"width\";i:300;s:6:\"height\";i:30;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"poop-150x73.png\";s:5:\"width\";i:150;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:15:\"poop-700x69.png\";s:5:\"width\";i:700;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:15:\"poop-500x49.png\";s:5:\"width\";i:500;s:6:\"height\";i:49;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:13:\"poop-75x7.png\";s:5:\"width\";i:75;s:6:\"height\";i:7;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:15:\"poop-400x73.png\";s:5:\"width\";i:400;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:15:\"poop-400x73.png\";s:5:\"width\";i:400;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:15:\"poop-510x73.png\";s:5:\"width\";i:510;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:15:\"poop-400x73.png\";s:5:\"width\";i:400;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:15:\"poop-480x47.png\";s:5:\"width\";i:480;s:6:\"height\";i:47;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:{}}}'),(6373,46481,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2015/08/poop.png'),(6374,46483,'_wp_attached_file','2021/08/AdobeStock_448704256_Preview.jpg'),(6375,46483,'_aioseop_opengraph_settings','a:0:{}'),(6376,46483,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:671;s:6:\"height\";i:667;s:4:\"file\";s:40:\"2021/08/AdobeStock_448704256_Preview.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"AdobeStock_448704256_Preview-300x298.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"AdobeStock_448704256_Preview-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:40:\"AdobeStock_448704256_Preview-500x497.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:497;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:40:\"AdobeStock_448704256_Preview-671x630.jpg\";s:5:\"width\";i:671;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:38:\"AdobeStock_448704256_Preview-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"AdobeStock_448704256_Preview-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"AdobeStock_448704256_Preview-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"AdobeStock_448704256_Preview-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"AdobeStock_448704256_Preview-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"AdobeStock_448704256_Preview-480x477.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:477;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(6379,46482,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/08/we-now-have-the-non-acute-pain-treatment-guidelines-but-what-does-that-mean/'),(6381,46480,'pagetype','blog-post'),(6382,46480,'pagelanguage','english'),(6383,46480,'pagegoals','goal3'),(6384,46482,'flco_links_count','0'),(6385,46482,'flco_links','a:0:{}'),(6386,46482,'flco_files','a:2:{i:0;a:7:{s:3:\"url\";s:99:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2015/08/pic-1-300x115.jpg\";s:8:\"absolute\";s:99:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2015/08/pic-1-300x115.jpg\";s:4:\"type\";s:5:\"image\";s:9:\"extension\";s:3:\"jpg\";s:7:\"post_ID\";i:46482;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}i:1;a:7:{s:3:\"url\";s:91:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2015/08/pic-1.jpg\";s:8:\"absolute\";s:91:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2015/08/pic-1.jpg\";s:4:\"type\";s:5:\"image\";s:9:\"extension\";s:3:\"jpg\";s:7:\"post_ID\";i:46482;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}}'),(6387,46485,'_wp_attached_file','2015/08/pic-1-300x115-1.jpg'),(6388,46485,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:115;s:4:\"file\";s:27:\"2015/08/pic-1-300x115-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"pic-1-300x115-1-150x115.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:25:\"pic-1-300x115-1-75x29.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:29;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(6389,46485,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2015/08/pic-1-300x115.jpg'),(6391,46486,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/08/test-your-ny-workers-compensation-chops/'),(6393,46486,'flco_links_count','1'),(6394,46486,'flco_links','a:0:{}'),(6395,46486,'flco_files','a:0:{}'),(6396,46488,'_wp_attached_file','2015/08/pic-1.jpg'),(6397,46488,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:507;s:6:\"height\";i:195;s:4:\"file\";s:17:\"2015/08/pic-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"pic-1-300x115.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"pic-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:17:\"pic-1-500x192.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:15:\"pic-1-75x29.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:29;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:17:\"pic-1-400x195.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:17:\"pic-1-400x195.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:17:\"pic-1-400x195.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:17:\"pic-1-480x185.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(6398,46488,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2015/08/pic-1.jpg'),(6399,46486,'pagetype','blog-post'),(6400,46486,'pagelanguage','english'),(6401,46486,'pagegoals','goal3'),(6404,46489,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/07/liability-for-treatment-by-social-workers/'),(6406,46489,'flco_links_count','0'),(6407,46489,'flco_links','a:0:{}'),(6408,46489,'flco_files','a:0:{}'),(6410,46489,'pagetype','blog-post'),(6411,46489,'pagelanguage','english'),(6412,46489,'pagegoals','goal3'),(6415,46482,'pagetype','blog-post'),(6416,46482,'pagelanguage','english'),(6417,46482,'pagegoals','goal3'),(6419,46492,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/07/927/'),(6421,46492,'flco_links_count','1'),(6422,46492,'flco_links','a:0:{}'),(6423,46492,'flco_files','a:0:{}'),(6424,46492,'pagetype','blog-post'),(6425,46492,'pagelanguage','english'),(6426,46492,'pagegoals','goal3'),(6427,46478,'_edit_last','1'),(6429,46478,'du-meta-custom-footer','default'),(6430,46478,'_et_post_bg_color','#ffffff'),(6431,46478,'_et_post_bg_layout','light'),(6432,46478,'_et_pb_show_title','on'),(6433,46478,'_et_pb_post_hide_nav','default'),(6434,46478,'_et_pb_page_layout','et_right_sidebar'),(6435,46478,'_et_pb_side_nav','off'),(6436,46478,'_wp_old_date','2021-08-18'),(6437,46478,'pagegoals','goal3'),(6438,46478,'wriketaskid','No task ID associated'),(6439,46478,'pagelanguage','english'),(6440,46478,'pagetype','blog-post'),(6442,46493,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/07/hot-dogs-or-hamburgers/'),(6444,46493,'flco_links_count','0'),(6445,46493,'flco_links','a:0:{}'),(6446,46493,'flco_files','a:2:{i:0;a:7:{s:3:\"url\";s:122:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2015/07/Hot-Dog-Dog-Costume1-300x196-300x196.jpg\";s:8:\"absolute\";s:122:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2015/07/Hot-Dog-Dog-Costume1-300x196-300x196.jpg\";s:4:\"type\";s:5:\"image\";s:9:\"extension\";s:3:\"jpg\";s:7:\"post_ID\";i:46493;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}i:1;a:7:{s:3:\"url\";s:114:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2015/07/Hot-Dog-Dog-Costume1-300x196.jpg\";s:8:\"absolute\";s:114:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2015/07/Hot-Dog-Dog-Costume1-300x196.jpg\";s:4:\"type\";s:5:\"image\";s:9:\"extension\";s:3:\"jpg\";s:7:\"post_ID\";i:46493;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}}'),(6447,46495,'_wp_attached_file','2015/07/Hot-Dog-Dog-Costume1-300x196-300x196-1.jpg'),(6448,46495,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:196;s:4:\"file\";s:50:\"2015/07/Hot-Dog-Dog-Costume1-300x196-300x196-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Hot-Dog-Dog-Costume1-300x196-300x196-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:48:\"Hot-Dog-Dog-Costume1-300x196-300x196-1-75x49.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:49;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(6449,46495,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2015/07/Hot-Dog-Dog-Costume1-300x196-300x196.jpg'),(6451,46496,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/06/imes-the-next-summer-movie-blockbuster-or-just-another-ime-gone-bust/'),(6454,46496,'flco_links_count','0'),(6455,46496,'flco_links','a:0:{}'),(6456,46496,'flco_files','a:0:{}'),(6457,46496,'pagetype','blog-post'),(6458,46496,'pagelanguage','english'),(6459,46496,'pagegoals','goal3'),(6460,46498,'_wp_attached_file','2015/07/Hot-Dog-Dog-Costume1-300x196-1.jpg'),(6461,46498,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:196;s:4:\"file\";s:42:\"2015/07/Hot-Dog-Dog-Costume1-300x196-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Hot-Dog-Dog-Costume1-300x196-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:40:\"Hot-Dog-Dog-Costume1-300x196-1-75x49.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:49;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(6462,46498,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2015/07/Hot-Dog-Dog-Costume1-300x196.jpg'),(6465,46493,'pagetype','blog-post'),(6466,46493,'pagelanguage','english'),(6467,46493,'pagegoals','goal3'),(6469,46499,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/06/new-york-state-workers-compensation-boards-regulatory-agenda-may-include-significant-changes-to-limit-an-employers-right-to-cross-examination/'),(6471,46499,'flco_links_count','1'),(6472,46499,'flco_links','a:0:{}'),(6473,46499,'flco_files','a:0:{}'),(6474,46499,'pagetype','blog-post'),(6475,46499,'pagelanguage','english'),(6476,46499,'pagegoals','goal3'),(6478,46500,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/02/an-underwriting-nightmare-come-true/'),(6480,46500,'flco_links_count','0'),(6481,46500,'flco_links','a:0:{}'),(6482,46500,'flco_files','a:0:{}'),(6483,46500,'pagetype','blog-post'),(6484,46500,'pagelanguage','english'),(6485,46500,'pagegoals','goal3'),(6487,46501,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2015/02/hearing-loss-becomes-hearing-win/'),(6489,46501,'flco_links_count','0'),(6490,46501,'flco_links','a:0:{}'),(6491,46501,'flco_files','a:0:{}'),(6492,46501,'pagetype','blog-post'),(6493,46501,'pagelanguage','english'),(6494,46501,'pagegoals','goal3'),(6496,46502,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/'),(6498,46502,'flco_links_count','1'),(6499,46502,'flco_links','a:0:{}'),(6500,46502,'flco_files','a:0:{}'),(6501,46502,'pagetype','blog-post'),(6502,46502,'pagelanguage','english'),(6503,46502,'pagegoals','goal3'),(6505,46503,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/'),(6507,46503,'flco_links_count','0'),(6508,46503,'flco_links','a:0:{}'),(6509,46503,'flco_files','a:0:{}'),(6510,46503,'pagetype','blog-post'),(6511,46503,'pagelanguage','english'),(6512,46503,'pagegoals','goal3'),(6514,46504,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/'),(6516,46504,'flco_links_count','0'),(6517,46504,'flco_links','a:0:{}'),(6518,46504,'flco_files','a:1:{i:0;a:7:{s:3:\"url\";s:113:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/ZERO-PERCENT-LWEC-Redacted-.pdf\";s:8:\"absolute\";s:113:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/ZERO-PERCENT-LWEC-Redacted-.pdf\";s:4:\"type\";s:3:\"pdf\";s:9:\"extension\";s:3:\"pdf\";s:7:\"post_ID\";i:46504;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}}'),(6519,46505,'_wp_attached_file','2014/11/ZERO-PERCENT-LWEC-Redacted-.pdf'),(6520,46505,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:34:\"ZERO-PERCENT-LWEC-Redacted-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"ZERO-PERCENT-LWEC-Redacted-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"ZERO-PERCENT-LWEC-Redacted-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"ZERO-PERCENT-LWEC-Redacted-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(6521,46505,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/ZERO-PERCENT-LWEC-Redacted-.pdf'),(6523,46506,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care-2/'),(6525,46506,'flco_links_count','0'),(6526,46506,'flco_links','a:0:{}'),(6527,46506,'flco_files','a:0:{}'),(6528,46506,'pagetype','blog-post'),(6529,46506,'pagelanguage','english'),(6530,46506,'pagegoals','goal3'),(6532,46504,'pagetype','blog-post'),(6533,46504,'pagelanguage','english'),(6534,46504,'pagegoals','goal3'),(6536,46508,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2013/12/did-you-know-the-board-has-retired-the-concept-of-the-compensable-retirement-the-death-knell-of-the-trifecta-zamora-and-the-so-called-compensable-retirement/'),(6538,46508,'flco_links_count','0'),(6539,46508,'flco_links','a:0:{}'),(6540,46508,'flco_files','a:0:{}'),(6541,46508,'pagetype','blog-post'),(6542,46508,'pagelanguage','english'),(6543,46508,'pagegoals','goal3'),(6545,46509,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/'),(6547,46509,'flco_links_count','0'),(6548,46509,'flco_links','a:0:{}'),(6549,46509,'flco_files','a:0:{}'),(6550,46509,'pagetype','blog-post'),(6551,46509,'pagelanguage','english'),(6552,46509,'pagegoals','goal3'),(6554,46511,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/'),(6556,46511,'flco_links_count','0'),(6557,46511,'flco_links','a:0:{}'),(6558,46511,'flco_files','a:0:{}'),(6559,46511,'pagetype','blog-post'),(6560,46511,'pagelanguage','english'),(6561,46511,'pagegoals','goal3'),(6563,46512,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/'),(6565,46512,'flco_links_count','1'),(6566,46512,'flco_links','a:0:{}'),(6567,46512,'flco_files','a:0:{}'),(6568,46512,'pagetype','blog-post'),(6569,46512,'pagelanguage','english'),(6570,46512,'pagegoals','goal3'),(6571,46479,'_edit_lock','1661950189:1'),(6572,46480,'_edit_lock','1661950218:1'),(6573,46482,'_edit_lock','1661950248:1'),(6574,46486,'_edit_lock','1661950352:1'),(6575,46489,'_edit_lock','1661950391:1'),(6577,46493,'_edit_lock','1661950452:1'),(6578,46492,'_edit_lock','1661950415:1'),(6579,46496,'_edit_lock','1661950483:1'),(6582,46479,'_edit_last','1'),(6585,46479,'_aioseop_opengraph_settings','a:0:{}'),(6587,46479,'du-meta-custom-footer','default'),(6588,46479,'_et_post_bg_color','#ffffff'),(6589,46479,'_et_post_bg_layout','light'),(6590,46479,'_et_pb_show_title','on'),(6591,46479,'_et_pb_post_hide_nav','default'),(6592,46479,'_et_pb_page_layout','et_right_sidebar'),(6593,46479,'_et_pb_side_nav','off'),(6595,46479,'wriketaskid','No task ID associated'),(6596,46479,'_aioseop_title','Answers to the Quiz | The Law Offices of Melissa A. Day, PLLC'),(6597,46480,'_edit_last','1'),(6600,46480,'_aioseop_opengraph_settings','a:0:{}'),(6602,46480,'du-meta-custom-footer','default'),(6603,46480,'_et_post_bg_color','#ffffff'),(6604,46480,'_et_post_bg_layout','light'),(6605,46480,'_et_pb_show_title','on'),(6606,46480,'_et_pb_post_hide_nav','default'),(6607,46480,'_et_pb_page_layout','et_right_sidebar'),(6608,46480,'_et_pb_side_nav','off'),(6610,46480,'wriketaskid','No task ID associated'),(6611,46480,'_aioseop_title','Average Wages? | The Law Offices of Melissa A. Day, PLLC'),(6612,46482,'_edit_last','1'),(6615,46482,'_aioseop_opengraph_settings','a:0:{}'),(6617,46482,'du-meta-custom-footer','default'),(6618,46482,'_et_post_bg_color','#ffffff'),(6619,46482,'_et_post_bg_layout','light'),(6620,46482,'_et_pb_show_title','on'),(6621,46482,'_et_pb_post_hide_nav','default'),(6622,46482,'_et_pb_page_layout','et_right_sidebar'),(6623,46482,'_et_pb_side_nav','off'),(6625,46482,'wriketaskid','No task ID associated'),(6626,46482,'_aioseop_title','Non-Acute Pain Treatment Guidelines | The Law Offices of Melissa A. Day, PLLC'),(6627,46486,'_edit_last','1'),(6630,46486,'_aioseop_opengraph_settings','a:0:{}'),(6632,46486,'du-meta-custom-footer','default'),(6633,46486,'_et_post_bg_color','#ffffff'),(6634,46486,'_et_post_bg_layout','light'),(6635,46486,'_et_pb_show_title','on'),(6636,46486,'_et_pb_post_hide_nav','default'),(6637,46486,'_et_pb_page_layout','et_right_sidebar'),(6638,46486,'_et_pb_side_nav','off'),(6640,46486,'wriketaskid','No task ID associated'),(6641,46486,'_aioseop_title','Test Your NY Workers’ Compensation Chops | The Law Offices of Melissa A. Day, PLLC'),(6642,46489,'_edit_last','1'),(6645,46489,'_aioseop_opengraph_settings','a:0:{}'),(6647,46489,'du-meta-custom-footer','default'),(6648,46489,'_et_post_bg_color','#ffffff'),(6649,46489,'_et_post_bg_layout','light'),(6650,46489,'_et_pb_show_title','on'),(6651,46489,'_et_pb_post_hide_nav','default'),(6652,46489,'_et_pb_page_layout','et_right_sidebar'),(6653,46489,'_et_pb_side_nav','off'),(6655,46489,'wriketaskid','No task ID associated'),(6661,46489,'_aioseop_title','Liability for Treatment by Social Workers | The Law Offices of Melissa A. Day, PLLC'),(6662,46492,'_edit_last','1'),(6665,46492,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"article\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(6667,46492,'du-meta-custom-footer','default'),(6668,46492,'_et_post_bg_color','#ffffff'),(6669,46492,'_et_post_bg_layout','light'),(6670,46492,'_et_pb_show_title','on'),(6671,46492,'_et_pb_post_hide_nav','default'),(6672,46492,'_et_pb_page_layout','et_right_sidebar'),(6673,46492,'_et_pb_side_nav','off'),(6675,46492,'wriketaskid','No task ID associated'),(6677,46493,'_edit_last','1'),(6680,46493,'_aioseop_opengraph_settings','a:0:{}'),(6682,46493,'du-meta-custom-footer','default'),(6683,46493,'_et_post_bg_color','#ffffff'),(6684,46493,'_et_post_bg_layout','light'),(6685,46493,'_et_pb_show_title','on'),(6686,46493,'_et_pb_post_hide_nav','default'),(6687,46493,'_et_pb_page_layout','et_right_sidebar'),(6688,46493,'_et_pb_side_nav','off'),(6690,46493,'wriketaskid','No task ID associated'),(6691,46493,'_aioseop_title','HOT DOGS OR HAMBURGERS? | The Law Offices of Melissa A. Day, PLLC'),(6692,46496,'_edit_last','1'),(6695,46496,'_aioseop_opengraph_settings','a:0:{}'),(6697,46496,'du-meta-custom-footer','default'),(6698,46496,'_et_post_bg_color','#ffffff'),(6699,46496,'_et_post_bg_layout','light'),(6700,46496,'_et_pb_show_title','on'),(6701,46496,'_et_pb_post_hide_nav','default'),(6702,46496,'_et_pb_page_layout','et_right_sidebar'),(6703,46496,'_et_pb_side_nav','off'),(6705,46496,'wriketaskid','No task ID associated'),(6706,46496,'_aioseop_title','IMEs : The Next Summer Movie Blockbuster or Just Another IME Gone Bust? | The Law Offices of Melissa A. Day, PLLC'),(6707,46499,'_edit_lock','1661950514:1'),(6708,46500,'_edit_lock','1661950559:1'),(6709,46501,'_edit_lock','1661950628:1'),(6710,46502,'_edit_lock','1661950813:1'),(6711,46503,'_edit_lock','1661950706:1'),(6712,46504,'_edit_lock','1661950743:1'),(6713,46506,'_edit_lock','1661950787:1'),(6714,46508,'_edit_lock','1661950872:1'),(6715,46509,'_edit_lock','1661950909:1'),(6716,46511,'_edit_lock','1661950948:1'),(6717,46512,'_edit_lock','1661950984:1'),(6718,46499,'_edit_last','1'),(6721,46499,'_aioseop_opengraph_settings','a:0:{}'),(6723,46499,'du-meta-custom-footer','default'),(6724,46499,'_et_post_bg_color','#ffffff'),(6725,46499,'_et_post_bg_layout','light'),(6726,46499,'_et_pb_show_title','on'),(6727,46499,'_et_pb_post_hide_nav','default'),(6728,46499,'_et_pb_page_layout','et_right_sidebar'),(6729,46499,'_et_pb_side_nav','off'),(6731,46499,'wriketaskid','No task ID associated'),(6732,46499,'_aioseop_title','WCB’s Regulatory Agenda May Include… | The Law Offices of Melissa A. Day, PLLC'),(6733,46500,'_edit_last','1'),(6736,46500,'_aioseop_opengraph_settings','a:0:{}'),(6738,46500,'du-meta-custom-footer','default'),(6739,46500,'_et_post_bg_color','#ffffff'),(6740,46500,'_et_post_bg_layout','light'),(6741,46500,'_et_pb_show_title','on'),(6742,46500,'_et_pb_post_hide_nav','default'),(6743,46500,'_et_pb_page_layout','et_right_sidebar'),(6744,46500,'_et_pb_side_nav','off'),(6746,46500,'wriketaskid','No task ID associated'),(6747,46500,'_aioseop_title','An Underwriting Nightmare Come True | The Law Offices of Melissa A. Day, PLLC'),(6748,46501,'_edit_last','1'),(6751,46501,'_aioseop_opengraph_settings','a:0:{}'),(6753,46501,'du-meta-custom-footer','default'),(6754,46501,'_et_post_bg_color','#ffffff'),(6755,46501,'_et_post_bg_layout','light'),(6756,46501,'_et_pb_show_title','on'),(6757,46501,'_et_pb_post_hide_nav','default'),(6758,46501,'_et_pb_page_layout','et_right_sidebar'),(6759,46501,'_et_pb_side_nav','off'),(6761,46501,'wriketaskid','No task ID associated'),(6762,46501,'_aioseop_title','Hearing Loss becomes Hearing Win | The Law Offices of Melissa A. Day, PLLC'),(6763,46502,'_edit_last','1'),(6766,46502,'_aioseop_opengraph_settings','a:0:{}'),(6768,46502,'du-meta-custom-footer','default'),(6769,46502,'_et_post_bg_color','#ffffff'),(6770,46502,'_et_post_bg_layout','light'),(6771,46502,'_et_pb_show_title','on'),(6772,46502,'_et_pb_post_hide_nav','default'),(6773,46502,'_et_pb_page_layout','et_right_sidebar'),(6774,46502,'_et_pb_side_nav','off'),(6776,46502,'wriketaskid','No task ID associated'),(6777,46502,'_aioseop_title','Non Acute Pain Medical Treatment Guidelines Offer a Framework for Controlling Costs Associated with Chronic Pain Management, Especially Opioid Use | The Law Offices of Melissa A. Day, PLLC'),(6778,46503,'_edit_last','1'),(6781,46503,'_aioseop_opengraph_settings','a:0:{}'),(6783,46503,'du-meta-custom-footer','default'),(6784,46503,'_et_post_bg_color','#ffffff'),(6785,46503,'_et_post_bg_layout','light'),(6786,46503,'_et_pb_show_title','on'),(6787,46503,'_et_pb_post_hide_nav','default'),(6788,46503,'_et_pb_page_layout','et_right_sidebar'),(6789,46503,'_et_pb_side_nav','off'),(6791,46503,'wriketaskid','No task ID associated'),(6792,46503,'_aioseop_title','In Kigin v. WCB, the Court of Appeals upholds the presumption that treatment outside the MTGs is not medically necessary and the attending physician has the burden of proof of the need for a variance. | The Law Offices of Melissa A. Day, PLLC'),(6793,46504,'_edit_last','1'),(6796,46504,'_aioseop_opengraph_settings','a:0:{}'),(6798,46504,'du-meta-custom-footer','default'),(6799,46504,'_et_post_bg_color','#ffffff'),(6800,46504,'_et_post_bg_layout','light'),(6801,46504,'_et_pb_show_title','on'),(6802,46504,'_et_pb_post_hide_nav','default'),(6803,46504,'_et_pb_page_layout','et_right_sidebar'),(6804,46504,'_et_pb_side_nav','off'),(6806,46504,'wriketaskid','No task ID associated'),(6807,46504,'_aioseop_title','The Law Offices of Melissa A. Day, PLLC Won a Finding of a 0% Loss of Wage Earning Capacity | The Law Offices of Melissa A. Day, PLLC'),(6808,46506,'_edit_last','1'),(6811,46506,'_aioseop_opengraph_settings','a:0:{}'),(6813,46506,'du-meta-custom-footer','default'),(6814,46506,'_et_post_bg_color','#ffffff'),(6815,46506,'_et_post_bg_layout','light'),(6816,46506,'_et_pb_show_title','on'),(6817,46506,'_et_pb_post_hide_nav','default'),(6818,46506,'_et_pb_page_layout','et_right_sidebar'),(6819,46506,'_et_pb_side_nav','off'),(6821,46506,'wriketaskid','No task ID associated'),(6822,46506,'_aioseop_title','Navigating the Low Back Medical Treatment Guidelines for Chiropractic Care | The Law Offices of Melissa A. Day, PLLC'),(6823,46508,'_edit_last','1'),(6826,46508,'_aioseop_opengraph_settings','a:0:{}'),(6828,46508,'du-meta-custom-footer','default'),(6829,46508,'_et_post_bg_color','#ffffff'),(6830,46508,'_et_post_bg_layout','light'),(6831,46508,'_et_pb_show_title','on'),(6832,46508,'_et_pb_post_hide_nav','default'),(6833,46508,'_et_pb_page_layout','et_right_sidebar'),(6834,46508,'_et_pb_side_nav','off'),(6836,46508,'wriketaskid','No task ID associated'),(6837,46508,'_aioseop_title','DID YOU KNOW? THE BOARD HAS RETIRED THE CONCEPT OF THE COMPENSABLE RETIREMENT. The Death Knell of the Trifecta: Zamora and the so-called “Compensable Retirement” | The Law Offices of Melissa A. Day, PLLC'),(6838,46509,'_edit_last','1'),(6841,46509,'_aioseop_opengraph_settings','a:0:{}'),(6843,46509,'du-meta-custom-footer','default'),(6844,46509,'_et_post_bg_color','#ffffff'),(6845,46509,'_et_post_bg_layout','light'),(6846,46509,'_et_pb_show_title','on'),(6847,46509,'_et_pb_post_hide_nav','default'),(6848,46509,'_et_pb_page_layout','et_right_sidebar'),(6849,46509,'_et_pb_side_nav','off'),(6851,46509,'wriketaskid','No task ID associated'),(6852,46509,'_aioseop_title','A Blind Leap across an Inscrutable Chasm – Arbitrary and Capricious Loss of Wage Earning Capacity (LWEC) Determinations | The Law Offices of Melissa A. Day, PLLC'),(6853,46511,'_edit_last','1'),(6856,46511,'_aioseop_opengraph_settings','a:0:{}'),(6858,46511,'du-meta-custom-footer','default'),(6859,46511,'_et_post_bg_color','#ffffff'),(6860,46511,'_et_post_bg_layout','light'),(6861,46511,'_et_pb_show_title','on'),(6862,46511,'_et_pb_post_hide_nav','default'),(6863,46511,'_et_pb_page_layout','et_right_sidebar'),(6864,46511,'_et_pb_side_nav','off'),(6866,46511,'wriketaskid','No task ID associated'),(6872,46511,'_aioseop_title','LESS THAN TWELVE WEEKS REMAINING FOR WCL §25-a! Because Subject # 046-630 Contains Stricter Requirements for Reopening a Claim on the Issue of §25-a, Prudent Carriers and Employers May Want to Refer Applications to Defense Counsel | The Law Offices of Melissa A. Day, PLLC'),(6873,46512,'_edit_last','1'),(6876,46512,'_aioseop_opengraph_settings','a:0:{}'),(6878,46512,'du-meta-custom-footer','default'),(6879,46512,'_et_post_bg_color','#ffffff'),(6880,46512,'_et_post_bg_layout','light'),(6881,46512,'_et_pb_show_title','on'),(6882,46512,'_et_pb_post_hide_nav','default'),(6883,46512,'_et_pb_page_layout','et_right_sidebar'),(6884,46512,'_et_pb_side_nav','off'),(6886,46512,'wriketaskid','No task ID associated'),(6887,46512,'_aioseop_title','BOARD PROCESS RE-ENGINEERING (“BPR”) – NY WORKERS’ COMPENSATION FORUM MEMBERS SHOULD BE INCLUDED IN THE DIALOGUE | The Law Offices of Melissa A. Day, PLLC'),(6888,46540,'_aioseop_opengraph_settings','a:0:{}'),(6889,46540,'author_byline','by'),(6890,46540,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(6892,46541,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/'),(6894,46541,'flco_links_count','0'),(6895,46541,'flco_links','a:0:{}'),(6896,46541,'flco_files','a:1:{i:0;a:7:{s:3:\"url\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/Challenge-to-the-Closing-of-the-25-a-Fund.pdf\";s:8:\"absolute\";s:127:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/Challenge-to-the-Closing-of-the-25-a-Fund.pdf\";s:4:\"type\";s:3:\"pdf\";s:9:\"extension\";s:3:\"pdf\";s:7:\"post_ID\";i:46541;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}}'),(6897,46542,'_wp_attached_file','2013/08/Challenge-to-the-Closing-of-the-25-a-Fund.pdf'),(6898,46542,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:49:\"Challenge-to-the-Closing-of-the-25-a-Fund-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"Challenge-to-the-Closing-of-the-25-a-Fund-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:58:\"Challenge-to-the-Closing-of-the-25-a-Fund-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Challenge-to-the-Closing-of-the-25-a-Fund-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(6899,46542,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/Challenge-to-the-Closing-of-the-25-a-Fund.pdf'),(6901,46543,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/'),(6904,46543,'flco_links_count','0'),(6905,46543,'flco_links','a:0:{}'),(6906,46543,'flco_files','a:2:{i:0;a:7:{s:3:\"url\";s:164:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/New-York-Law-Journal_-Workers-Comp-Reform-Named-Approved-Procedures-Judges-Say.pdf\";s:8:\"absolute\";s:164:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/New-York-Law-Journal_-Workers-Comp-Reform-Named-Approved-Procedures-Judges-Say.pdf\";s:4:\"type\";s:3:\"pdf\";s:9:\"extension\";s:3:\"pdf\";s:7:\"post_ID\";i:46543;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}i:1;a:7:{s:3:\"url\";s:152:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/Treatment-Outside-MTG-is-Pre-Determined-as-Not-Medically-Necessary.pdf\";s:8:\"absolute\";s:152:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/Treatment-Outside-MTG-is-Pre-Determined-as-Not-Medically-Necessary.pdf\";s:4:\"type\";s:3:\"pdf\";s:9:\"extension\";s:3:\"pdf\";s:7:\"post_ID\";i:46543;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}}'),(6907,46540,'_edit_lock','1661951019:1'),(6908,46541,'pagetype','blog-post'),(6909,46541,'pagelanguage','english'),(6910,46541,'pagegoals','goal3'),(6911,46545,'_wp_attached_file','2013/07/New-York-Law-Journal_-Workers-Comp-Reform-Named-Approved-Procedures-Judges-Say.pdf'),(6912,46545,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:86:\"New-York-Law-Journal_-Workers-Comp-Reform-Named-Approved-Procedures-Judges-Say-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:1088;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:94:\"New-York-Law-Journal_-Workers-Comp-Reform-Named-Approved-Procedures-Judges-Say-pdf-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:95:\"New-York-Law-Journal_-Workers-Comp-Reform-Named-Approved-Procedures-Judges-Say-pdf-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:94:\"New-York-Law-Journal_-Workers-Comp-Reform-Named-Approved-Procedures-Judges-Say-pdf-150x116.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(6913,46545,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/New-York-Law-Journal_-Workers-Comp-Reform-Named-Approved-Procedures-Judges-Say.pdf'),(6915,46546,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/'),(6917,46546,'flco_links_count','0'),(6918,46546,'flco_links','a:0:{}'),(6919,46546,'flco_files','a:0:{}'),(6920,46548,'_wp_attached_file','2013/07/Treatment-Outside-MTG-is-Pre-Determined-as-Not-Medically-Necessary.pdf'),(6921,46548,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:74:\"Treatment-Outside-MTG-is-Pre-Determined-as-Not-Medically-Necessary-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:82:\"Treatment-Outside-MTG-is-Pre-Determined-as-Not-Medically-Necessary-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:83:\"Treatment-Outside-MTG-is-Pre-Determined-as-Not-Medically-Necessary-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:82:\"Treatment-Outside-MTG-is-Pre-Determined-as-Not-Medically-Necessary-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(6922,46548,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/Treatment-Outside-MTG-is-Pre-Determined-as-Not-Medically-Necessary.pdf'),(6923,46546,'pagetype','blog-post'),(6924,46546,'pagelanguage','english'),(6925,46546,'pagegoals','goal3'),(6927,46549,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/'),(6928,46543,'pagetype','blog-post'),(6929,46543,'pagelanguage','english'),(6930,46543,'pagegoals','goal3'),(6932,46549,'flco_links_count','0'),(6933,46549,'flco_links','a:0:{}'),(6934,46549,'flco_files','a:1:{i:0;a:7:{s:3:\"url\";s:101:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/Senate-Bill-S76.pdf\";s:8:\"absolute\";s:101:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/Senate-Bill-S76.pdf\";s:4:\"type\";s:3:\"pdf\";s:9:\"extension\";s:3:\"pdf\";s:7:\"post_ID\";i:46549;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}}'),(6935,46550,'_wp_attached_file','2013/04/Senate-Bill-S76.pdf'),(6936,46550,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:23:\"Senate-Bill-S76-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Senate-Bill-S76-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Senate-Bill-S76-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Senate-Bill-S76-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(6937,46550,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/Senate-Bill-S76.pdf'),(6939,46551,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2013/04/did-you-know-25-a-is-going-away/'),(6941,46551,'flco_links_count','1'),(6942,46551,'flco_links','a:0:{}'),(6943,46551,'flco_files','a:0:{}'),(6944,46549,'pagetype','blog-post'),(6945,46549,'pagelanguage','english'),(6946,46549,'pagegoals','goal3'),(6947,46551,'pagetype','blog-post'),(6948,46551,'pagelanguage','english'),(6949,46551,'pagegoals','goal3'),(6951,46553,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/'),(6953,46553,'flco_links_count','0'),(6954,46553,'flco_links','a:0:{}'),(6955,46553,'flco_files','a:1:{i:0;a:7:{s:3:\"url\";s:104:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/Hudson-Valley-DDSO.pdf\";s:8:\"absolute\";s:104:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/Hudson-Valley-DDSO.pdf\";s:4:\"type\";s:3:\"pdf\";s:9:\"extension\";s:3:\"pdf\";s:7:\"post_ID\";i:46553;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}}'),(6956,46554,'_wp_attached_file','2013/03/Hudson-Valley-DDSO.pdf'),(6957,46554,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:26:\"Hudson-Valley-DDSO-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Hudson-Valley-DDSO-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Hudson-Valley-DDSO-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Hudson-Valley-DDSO-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(6958,46554,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/Hudson-Valley-DDSO.pdf'),(6960,46555,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-generalspecial-employment/'),(6962,46553,'pagetype','blog-post'),(6963,46553,'pagelanguage','english'),(6964,46553,'pagegoals','goal3'),(6965,46555,'flco_links_count','0'),(6966,46555,'flco_links','a:0:{}'),(6967,46555,'flco_files','a:0:{}'),(6968,46555,'pagetype','blog-post'),(6969,46555,'pagelanguage','english'),(6970,46555,'pagegoals','goal3'),(6971,46540,'_edit_last','1'),(6973,46557,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2013/02/did-you-know-governor-cuomos-budget-proposes-to-eliminate-mandatory-deposits-into-the-atf-and-to-close-the-fund-to-new-deposits/'),(6976,46540,'du-meta-custom-footer','default'),(6977,46540,'_et_post_bg_color','#ffffff'),(6978,46540,'_et_post_bg_layout','light'),(6979,46540,'_et_pb_show_title','on'),(6980,46540,'_et_pb_post_hide_nav','default'),(6981,46540,'_et_pb_page_layout','et_right_sidebar'),(6982,46540,'_et_pb_side_nav','off'),(6983,46540,'_wp_old_date','2021-08-18'),(6984,46540,'pagegoals','goal3'),(6985,46540,'wriketaskid','No task ID associated'),(6986,46540,'pagelanguage','english'),(6987,46540,'pagetype','blog-post'),(6988,46557,'flco_links_count','0'),(6989,46557,'flco_links','a:0:{}'),(6990,46557,'flco_files','a:0:{}'),(6991,46557,'pagetype','blog-post'),(6992,46557,'pagelanguage','english'),(6993,46557,'pagegoals','goal3'),(6995,46559,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2013/01/did-you-know-implementation-of-the-changes-to-the-mtg-has-been-delayed-until-march-1-2013/'),(6997,46559,'flco_links_count','0'),(6998,46559,'flco_links','a:0:{}'),(6999,46559,'flco_files','a:1:{i:0;a:7:{s:3:\"url\";s:103:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/SummaryRegChanges.pdf\";s:8:\"absolute\";s:103:\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/SummaryRegChanges.pdf\";s:4:\"type\";s:3:\"pdf\";s:9:\"extension\";s:3:\"pdf\";s:7:\"post_ID\";i:46559;s:6:\"status\";s:4:\"done\";s:7:\"attempt\";i:1;}}'),(7001,46560,'_wp_attached_file','2013/01/SummaryRegChanges.pdf'),(7002,46560,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:25:\"SummaryRegChanges-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:1088;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"SummaryRegChanges-pdf-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:34:\"SummaryRegChanges-pdf-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:33:\"SummaryRegChanges-pdf-150x116.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(7003,46560,'_flco_migration_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/SummaryRegChanges.pdf'),(7006,46561,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/'),(7008,46561,'flco_links_count','0'),(7009,46561,'flco_links','a:0:{}'),(7010,46561,'flco_files','a:0:{}'),(7011,46559,'pagetype','blog-post'),(7012,46559,'pagelanguage','english'),(7013,46559,'pagegoals','goal3'),(7014,46561,'pagetype','blog-post'),(7015,46561,'pagelanguage','english'),(7016,46561,'pagegoals','goal3'),(7018,46563,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2013/01/did-you-know-wcl-%c2%a7153v-benefits-may-now-be-capped-under-wcl-%c2%a7153w/'),(7020,46563,'flco_links_count','0'),(7021,46563,'flco_links','a:0:{}'),(7022,46563,'flco_files','a:0:{}'),(7023,46563,'pagetype','blog-post'),(7024,46563,'pagelanguage','english'),(7025,46563,'pagegoals','goal3'),(7027,46564,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2013/01/why-why-do-judges-even-set-deadlines-for-the-submission-of-memoranda-of-law/'),(7029,46564,'flco_links_count','0'),(7030,46564,'flco_links','a:0:{}'),(7031,46564,'flco_files','a:0:{}'),(7032,46564,'pagetype','blog-post'),(7033,46564,'pagelanguage','english'),(7034,46564,'pagegoals','goal3'),(7036,46565,'flco_url','https://thelomad.com/getmad.today/wp-contentgetmad.today/2013/01/did-you-know/'),(7038,46565,'flco_links_count','0'),(7039,46565,'flco_links','a:0:{}'),(7040,46565,'flco_files','a:0:{}'),(7041,46565,'pagetype','blog-post'),(7042,46565,'pagelanguage','english'),(7043,46565,'pagegoals','goal3'),(7044,46478,'_aioseop_title','Claims Handling Performance | The Law Offices of Melissa A. Day, PLLC'),(7045,46541,'_edit_lock','1661951045:1'),(7046,46543,'_edit_lock','1661951090:1'),(7047,46546,'_edit_lock','1661951125:1'),(7048,46549,'_edit_lock','1661951160:1'),(7049,46551,'_edit_lock','1661951189:1'),(7050,46553,'_edit_lock','1661951374:1'),(7051,46555,'_edit_lock','1661951272:1'),(7052,46557,'_edit_lock','1661951294:1'),(7053,46559,'_edit_lock','1661951364:1'),(7054,46541,'_edit_last','1'),(7057,46541,'_aioseop_opengraph_settings','a:0:{}'),(7059,46541,'du-meta-custom-footer','default'),(7060,46541,'_et_post_bg_color','#ffffff'),(7061,46541,'_et_post_bg_layout','light'),(7062,46541,'_et_pb_show_title','on'),(7063,46541,'_et_pb_post_hide_nav','default'),(7064,46541,'_et_pb_page_layout','et_right_sidebar'),(7065,46541,'_et_pb_side_nav','off'),(7067,46541,'wriketaskid','No task ID associated'),(7069,46543,'_edit_last','1'),(7072,46543,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"article\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(7074,46543,'du-meta-custom-footer','default'),(7075,46543,'_et_post_bg_color','#ffffff'),(7076,46543,'_et_post_bg_layout','light'),(7077,46543,'_et_pb_show_title','on'),(7078,46543,'_et_pb_post_hide_nav','default'),(7079,46543,'_et_pb_page_layout','et_right_sidebar'),(7080,46543,'_et_pb_side_nav','off'),(7082,46543,'wriketaskid','No task ID associated'),(7084,46546,'_edit_last','1'),(7087,46546,'_aioseop_opengraph_settings','a:0:{}'),(7089,46546,'du-meta-custom-footer','default'),(7090,46546,'_et_post_bg_color','#ffffff'),(7091,46546,'_et_post_bg_layout','light'),(7092,46546,'_et_pb_show_title','on'),(7093,46546,'_et_pb_post_hide_nav','default'),(7094,46546,'_et_pb_page_layout','et_right_sidebar'),(7095,46546,'_et_pb_side_nav','off'),(7097,46546,'wriketaskid','No task ID associated'),(7103,46541,'_aioseop_title','DID YOU KNOW? Twenty Insurance Carriers Have Filed an Action Seeking to Obtain a Declaration that the Elimination of The Fund for Reopened Cases Is Unconstitutional. | The Law Offices of Melissa A. Day, PLLC'),(7113,46546,'_aioseop_title','DID YOU KNOW? AN EMPLOYER OR CARRIER MAY BE ABLE TO REOPEN A PPD CLAIM ON THE ISSUE OF LABOR MARKET ATTACHMENT. | The Law Offices of Melissa A. Day, PLLC'),(7114,46549,'_edit_last','1'),(7117,46549,'_aioseop_opengraph_settings','a:0:{}'),(7119,46549,'du-meta-custom-footer','default'),(7120,46549,'_et_post_bg_color','#ffffff'),(7121,46549,'_et_post_bg_layout','light'),(7122,46549,'_et_pb_show_title','on'),(7123,46549,'_et_pb_post_hide_nav','default'),(7124,46549,'_et_pb_page_layout','et_right_sidebar'),(7125,46549,'_et_pb_side_nav','off'),(7127,46549,'wriketaskid','No task ID associated'),(7128,46549,'_aioseop_title','DID YOU KNOW? A bill being considered by the NY State Legislature which would create a presumption of permanent total disability for claimants who are found eligible for social security? | The Law Offices of Melissa A. Day, PLLC'),(7129,46551,'_edit_last','1'),(7132,46551,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"article\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(7134,46551,'du-meta-custom-footer','default'),(7135,46551,'_et_post_bg_color','#ffffff'),(7136,46551,'_et_post_bg_layout','light'),(7137,46551,'_et_pb_show_title','on'),(7138,46551,'_et_pb_post_hide_nav','default'),(7139,46551,'_et_pb_page_layout','et_right_sidebar'),(7140,46551,'_et_pb_side_nav','off'),(7142,46551,'wriketaskid','No task ID associated'),(7148,46553,'_edit_last','1'),(7151,46553,'_aioseop_opengraph_settings','a:0:{}'),(7153,46553,'du-meta-custom-footer','default'),(7154,46553,'_et_post_bg_color','#ffffff'),(7155,46553,'_et_post_bg_layout','light'),(7156,46553,'_et_pb_show_title','on'),(7157,46553,'_et_pb_post_hide_nav','default'),(7158,46553,'_et_pb_page_layout','et_right_sidebar'),(7159,46553,'_et_pb_side_nav','off'),(7161,46553,'wriketaskid','No task ID associated'),(7162,46553,'_aioseop_title','DID YOU KNOW? A chiropractic variance request based on alleged functional improvements and expected continued improvements may not be granted if the chiropractor continues to find that the claimant is totally disabled. | The Law Offices of Melissa A. Day, PLLC'),(7163,46555,'_edit_last','1'),(7166,46555,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"article\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(7168,46555,'du-meta-custom-footer','default'),(7169,46555,'_et_post_bg_color','#ffffff'),(7170,46555,'_et_post_bg_layout','light'),(7171,46555,'_et_pb_show_title','on'),(7172,46555,'_et_pb_post_hide_nav','default'),(7173,46555,'_et_pb_page_layout','et_right_sidebar'),(7174,46555,'_et_pb_side_nav','off'),(7176,46555,'wriketaskid','No task ID associated'),(7178,46557,'_edit_last','1'),(7181,46557,'_aioseop_opengraph_settings','a:0:{}'),(7183,46557,'du-meta-custom-footer','default'),(7184,46557,'_et_post_bg_color','#ffffff'),(7185,46557,'_et_post_bg_layout','light'),(7186,46557,'_et_pb_show_title','on'),(7187,46557,'_et_pb_post_hide_nav','default'),(7188,46557,'_et_pb_page_layout','et_right_sidebar'),(7189,46557,'_et_pb_side_nav','off'),(7191,46557,'wriketaskid','No task ID associated'),(7197,46557,'_aioseop_title','DID YOU KNOW? GOVERNOR CUOMO’S BUDGET PROPOSES TO ELIMINATE MANDATORY DEPOSITS INTO THE ATF AND TO CLOSE THE FUND TO NEW DEPOSITS? | The Law Offices of Melissa A. Day, PLLC'),(7198,46559,'_edit_last','1'),(7201,46559,'_aioseop_opengraph_settings','a:0:{}'),(7203,46559,'du-meta-custom-footer','default'),(7204,46559,'_et_post_bg_color','#ffffff'),(7205,46559,'_et_post_bg_layout','light'),(7206,46559,'_et_pb_show_title','on'),(7207,46559,'_et_pb_post_hide_nav','default'),(7208,46559,'_et_pb_page_layout','et_right_sidebar'),(7209,46559,'_et_pb_side_nav','off'),(7211,46559,'wriketaskid','No task ID associated'),(7212,46559,'_aioseop_title','DID YOU KNOW? IMPLEMENTATION OF THE CHANGES TO THE MTG HAS BEEN DELAYED UNTIL MARCH 1, 2013. | The Law Offices of Melissa A. Day, PLLC'),(7213,46563,'_edit_lock','1661951588:1'),(7214,46561,'_edit_lock','1661951405:1'),(7215,46564,'_edit_lock','1661951471:1'),(7216,46565,'_edit_lock','1661951676:1'),(7217,46561,'_edit_last','1'),(7220,46561,'_aioseop_opengraph_settings','a:0:{}'),(7222,46561,'du-meta-custom-footer','default'),(7223,46561,'_et_post_bg_color','#ffffff'),(7224,46561,'_et_post_bg_layout','light'),(7225,46561,'_et_pb_show_title','on'),(7226,46561,'_et_pb_post_hide_nav','default'),(7227,46561,'_et_pb_page_layout','et_right_sidebar'),(7228,46561,'_et_pb_side_nav','off'),(7230,46561,'wriketaskid','No task ID associated'),(7231,46561,'_aioseop_title','DID YOU KNOW? FACEBOOK PAGES ARE NOT CONSIDERED “SURVEILLANCE” THAT HAS TO BE DISCLOSED BEFORE A CLAIMANT TESTIFIES. | The Law Offices of Melissa A. Day, PLLC'),(7232,46563,'_edit_last','1'),(7235,46563,'_aioseop_opengraph_settings','a:0:{}'),(7237,46563,'du-meta-custom-footer','default'),(7238,46563,'_et_post_bg_color','#ffffff'),(7239,46563,'_et_post_bg_layout','light'),(7240,46563,'_et_pb_show_title','on'),(7241,46563,'_et_pb_post_hide_nav','default'),(7242,46563,'_et_pb_page_layout','et_right_sidebar'),(7243,46563,'_et_pb_side_nav','off'),(7245,46563,'wriketaskid','No task ID associated'),(7246,46563,'_aioseop_title','DID YOU KNOW? WCL §15(3)(v) BENEFITS MAY NOW BE CAPPED UNDER WCL §15(3)(w) | The Law Offices of Melissa A. Day, PLLC'),(7247,46564,'_edit_last','1'),(7250,46564,'_aioseop_opengraph_settings','a:0:{}'),(7252,46564,'du-meta-custom-footer','default'),(7253,46564,'_et_post_bg_color','#ffffff'),(7254,46564,'_et_post_bg_layout','light'),(7255,46564,'_et_pb_show_title','on'),(7256,46564,'_et_pb_post_hide_nav','default'),(7257,46564,'_et_pb_page_layout','et_right_sidebar'),(7258,46564,'_et_pb_side_nav','off'),(7260,46564,'wriketaskid','No task ID associated'),(7261,46564,'_aioseop_title','WHY? Why do judge’s even set deadlines for the submission of Memoranda of Law? | The Law Offices of Melissa A. Day, PLLC'),(7262,46565,'_edit_last','1'),(7265,46565,'_aioseop_opengraph_settings','a:0:{}'),(7267,46565,'du-meta-custom-footer','default'),(7268,46565,'_et_post_bg_color','#ffffff'),(7269,46565,'_et_post_bg_layout','light'),(7270,46565,'_et_pb_show_title','on'),(7271,46565,'_et_pb_post_hide_nav','default'),(7272,46565,'_et_pb_page_layout','et_right_sidebar'),(7273,46565,'_et_pb_side_nav','off'),(7275,46565,'wriketaskid','No task ID associated'),(7276,46565,'_aioseop_title','DID YOU KNOW? | The Law Offices of Melissa A. Day, PLLC'),(7277,46327,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7278,46331,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7279,46332,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7280,46337,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7281,46338,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7282,46339,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7283,46341,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7284,46342,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7285,46343,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7286,46344,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7287,46345,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7288,46346,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7289,46347,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7290,46348,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7291,46350,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7292,46351,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7293,46352,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7294,46367,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7295,46368,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7296,46369,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7297,46371,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7298,46372,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7299,46373,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7300,46374,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7301,46375,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7302,46376,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7303,46377,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7304,46378,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7305,46380,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7306,46381,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7307,46383,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7308,46384,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7309,46385,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7310,46387,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7311,46386,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7312,46388,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7313,46414,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7314,46413,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7315,46418,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7316,46415,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7317,46420,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7318,46421,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7319,46422,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7320,46423,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7321,46426,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7322,46431,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7323,46433,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7324,46436,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7325,46439,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7326,46442,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7327,46444,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7328,46445,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7329,46446,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7330,46448,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7331,46450,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7332,46479,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7333,46480,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7334,46482,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7335,46486,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7336,46489,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7337,46492,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7338,46493,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7339,46496,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7340,46499,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7341,46501,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7342,46500,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7343,46502,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7344,46503,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7345,46504,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7346,46506,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7347,46508,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7348,46509,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7349,46511,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7350,46512,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7351,46541,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7352,46543,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7353,46546,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7354,46549,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7355,46551,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7356,46553,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7357,46555,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7358,46557,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7359,46561,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7360,46559,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7361,46563,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7362,46564,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7363,46565,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(7366,46327,'author_byline','by'),(7369,46331,'author_byline','by'),(7371,46332,'author_byline','by'),(7374,46337,'author_byline','by'),(7376,46338,'author_byline','by'),(7378,46339,'author_byline','by'),(7380,46341,'author_byline','by'),(7382,46342,'author_byline','by'),(7384,46343,'author_byline','by'),(7386,46344,'author_byline','by'),(7388,46345,'author_byline','by'),(7390,46346,'author_byline','by'),(7392,46347,'author_byline','by'),(7394,46348,'author_byline','by'),(7396,46350,'author_byline','by'),(7398,46351,'author_byline','by'),(7400,46352,'author_byline','by'),(7403,46367,'author_byline','by'),(7405,46368,'author_byline','by'),(7407,46369,'author_byline','by'),(7409,46371,'author_byline','by'),(7411,46372,'author_byline','by'),(7413,46373,'author_byline','by'),(7415,46374,'author_byline','by'),(7417,46375,'author_byline','by'),(7419,46376,'author_byline','by'),(7421,46377,'author_byline','by'),(7423,46378,'author_byline','by'),(7425,46380,'author_byline','by'),(7427,46381,'author_byline','by'),(7429,46383,'author_byline','by'),(7431,46384,'author_byline','by'),(7433,46385,'author_byline','by'),(7435,46387,'author_byline','by'),(7437,46386,'author_byline','by'),(7440,46388,'author_byline','by'),(7442,46414,'author_byline','by'),(7444,46413,'author_byline','by'),(7446,46418,'author_byline','by'),(7448,46415,'author_byline','by'),(7450,46420,'author_byline','by'),(7452,46421,'author_byline','by'),(7454,46422,'author_byline','by'),(7456,46423,'author_byline','by'),(7458,46426,'author_byline','by'),(7460,46431,'author_byline','by'),(7462,46433,'author_byline','by'),(7464,46436,'author_byline','by'),(7466,46439,'author_byline','by'),(7468,46442,'author_byline','by'),(7470,46444,'author_byline','by'),(7472,46445,'author_byline','by'),(7474,46446,'author_byline','by'),(7476,46448,'author_byline','by'),(7478,46450,'author_byline','by'),(7481,46479,'author_byline','by'),(7483,46480,'author_byline','by'),(7485,46482,'author_byline','by'),(7487,46486,'author_byline','by'),(7489,46489,'author_byline','by'),(7491,46492,'author_byline','by'),(7493,46493,'author_byline','by'),(7495,46496,'author_byline','by'),(7497,46499,'author_byline','by'),(7499,46501,'author_byline','by'),(7501,46500,'author_byline','by'),(7503,46502,'author_byline','by'),(7505,46503,'author_byline','by'),(7507,46504,'author_byline','by'),(7509,46506,'author_byline','by'),(7511,46508,'author_byline','by'),(7513,46509,'author_byline','by'),(7515,46511,'author_byline','by'),(7517,46512,'author_byline','by'),(7520,46541,'author_byline','by'),(7522,46543,'author_byline','by'),(7524,46546,'author_byline','by'),(7526,46549,'author_byline','by'),(7528,46551,'author_byline','by'),(7530,46553,'author_byline','by'),(7532,46555,'author_byline','by'),(7534,46557,'author_byline','by'),(7536,46561,'author_byline','by'),(7538,46559,'author_byline','by'),(7540,46563,'author_byline','by'),(7542,46564,'author_byline','by'),(7544,46565,'author_byline','by'),(7581,46613,'_wp_attached_file','2021/08/quote-bg.png'),(7582,46613,'_aioseop_opengraph_settings','a:0:{}'),(7583,46613,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:288;s:6:\"height\";i:235;s:4:\"file\";s:20:\"2021/08/quote-bg.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"quote-bg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:18:\"quote-bg-75x61.png\";s:5:\"width\";i:75;s:6:\"height\";i:61;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:{}}}'),(7757,46668,'_menu_item_type','post_type'),(7758,46668,'_menu_item_menu_item_parent','0'),(7759,46668,'_menu_item_object_id','46229'),(7760,46668,'_menu_item_object','page'),(7761,46668,'_menu_item_target',''),(7762,46668,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7763,46668,'_menu_item_xfn',''),(7764,46668,'_menu_item_url',''),(7766,46669,'_menu_item_type','post_type'),(7767,46669,'_menu_item_menu_item_parent','0'),(7768,46669,'_menu_item_object_id','46189'),(7769,46669,'_menu_item_object','page'),(7770,46669,'_menu_item_target',''),(7771,46669,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7772,46669,'_menu_item_xfn',''),(7773,46669,'_menu_item_url',''),(7775,46670,'_menu_item_type','post_type'),(7776,46670,'_menu_item_menu_item_parent','46668'),(7777,46670,'_menu_item_object_id','46244'),(7778,46670,'_menu_item_object','page'),(7779,46670,'_menu_item_target',''),(7780,46670,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7781,46670,'_menu_item_xfn',''),(7782,46670,'_menu_item_url',''),(7784,45969,'_wp_old_date','2019-07-29'),(7785,45968,'_wp_old_date','2019-07-29'),(7787,46669,'_aioseop_opengraph_settings','a:0:{}'),(7788,46668,'_aioseop_opengraph_settings','a:0:{}'),(7789,46670,'_aioseop_opengraph_settings','a:0:{}'),(7790,45967,'_wp_old_date','2019-07-29'),(7791,45966,'_wp_old_date','2019-07-29'),(8185,46748,'_wp_attached_file','2021/08/AdobeStock_221755833-D.jpg'),(8186,46748,'_aioseop_opengraph_settings','a:0:{}'),(8187,46748,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:900;s:4:\"file\";s:34:\"2021/08/AdobeStock_221755833-D.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-D-300x135.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"AdobeStock_221755833-D-1024x461.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-D-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:34:\"AdobeStock_221755833-D-768x346.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"AdobeStock_221755833-D-1536x691.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:691;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:35:\"AdobeStock_221755833-D-1600x720.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:35:\"AdobeStock_221755833-D-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-D-700x315.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:35:\"AdobeStock_221755833-D-1152x518.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:518;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:35:\"AdobeStock_221755833-D-1000x450.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-D-500x225.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:35:\"AdobeStock_221755833-D-1200x630.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"AdobeStock_221755833-D-75x34.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:34;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-D-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"AdobeStock_221755833-D-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-D-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-D-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"AdobeStock_221755833-D-1080x486.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-D-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"AdobeStock_221755833-D-1280x576.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-D-980x441.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-D-480x216.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8216,46765,'_wp_attached_file','2021/08/ic2.png'),(8217,46765,'_aioseop_opengraph_settings','a:0:{}'),(8218,46765,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:15:\"2021/08/ic2.png\";s:5:\"sizes\";a:1:{s:11:\"placeholder\";a:4:{s:4:\"file\";s:13:\"ic2-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8219,46766,'_wp_attached_file','2021/08/ic3.png'),(8220,46766,'_aioseop_opengraph_settings','a:0:{}'),(8221,46766,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:15:\"2021/08/ic3.png\";s:5:\"sizes\";a:1:{s:11:\"placeholder\";a:4:{s:4:\"file\";s:13:\"ic3-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8222,46767,'_wp_attached_file','2021/08/ic1.png'),(8223,46767,'_aioseop_opengraph_settings','a:0:{}'),(8224,46767,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:15:\"2021/08/ic1.png\";s:5:\"sizes\";a:1:{s:11:\"placeholder\";a:4:{s:4:\"file\";s:13:\"ic1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8228,46773,'_wp_attached_file','2021/08/logo_a.png'),(8229,46773,'_aioseop_opengraph_settings','a:0:{}'),(8230,46773,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:853;s:4:\"file\";s:18:\"2021/08/logo_a.png\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"logo_a-300x185.png\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"logo_a-1024x632.png\";s:5:\"width\";i:1024;s:6:\"height\";i:632;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"logo_a-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:18:\"logo_a-768x474.png\";s:5:\"width\";i:768;s:6:\"height\";i:474;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:18:\"logo_a-700x432.png\";s:5:\"width\";i:700;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:19:\"logo_a-1152x711.png\";s:5:\"width\";i:1152;s:6:\"height\";i:711;s:9:\"mime-type\";s:9:\"image/png\";}s:3:\"bio\";a:4:{s:4:\"file\";s:19:\"logo_a-1000x617.png\";s:5:\"width\";i:1000;s:6:\"height\";i:617;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:18:\"logo_a-500x309.png\";s:5:\"width\";i:500;s:6:\"height\";i:309;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:19:\"logo_a-1200x630.png\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:16:\"logo_a-75x46.png\";s:5:\"width\";i:75;s:6:\"height\";i:46;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"logo_a-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"logo_a-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"logo_a-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"logo_a-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"logo_a-1080x667.png\";s:5:\"width\";i:1080;s:6:\"height\";i:667;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"logo_a-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:19:\"logo_a-1280x790.png\";s:5:\"width\";i:1280;s:6:\"height\";i:790;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:18:\"logo_a-980x605.png\";s:5:\"width\";i:980;s:6:\"height\";i:605;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:18:\"logo_a-480x296.png\";s:5:\"width\";i:480;s:6:\"height\";i:296;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:{}}}'),(8249,46788,'_wp_attached_file','2021/08/AdobeStock_387392035.jpg'),(8250,46788,'_aioseop_opengraph_settings','a:0:{}'),(8251,46788,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1250;s:6:\"height\";i:900;s:4:\"file\";s:32:\"2021/08/AdobeStock_387392035.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"AdobeStock_387392035-300x216.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"AdobeStock_387392035-1024x737.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"AdobeStock_387392035-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"AdobeStock_387392035-768x553.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:32:\"AdobeStock_387392035-700x504.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:33:\"AdobeStock_387392035-1152x829.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:829;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:33:\"AdobeStock_387392035-1000x720.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:32:\"AdobeStock_387392035-500x360.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:33:\"AdobeStock_387392035-1200x630.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:30:\"AdobeStock_387392035-75x54.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:54;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_387392035-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"AdobeStock_387392035-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_387392035-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_387392035-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"AdobeStock_387392035-1080x778.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:778;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"AdobeStock_387392035-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:32:\"AdobeStock_387392035-980x706.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:706;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:32:\"AdobeStock_387392035-480x346.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(8430,46824,'_wp_attached_file','2021/08/AdobeStock_432435637.jpg'),(8431,46824,'_aioseop_opengraph_settings','a:0:{}'),(8432,46824,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1095;s:4:\"file\";s:32:\"2021/08/AdobeStock_432435637.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"AdobeStock_432435637-219x300.jpg\";s:5:\"width\";i:219;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"AdobeStock_432435637-748x1024.jpg\";s:5:\"width\";i:748;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"AdobeStock_432435637-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"AdobeStock_432435637-768x1051.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1051;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:32:\"AdobeStock_432435637-800x900.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:32:\"AdobeStock_432435637-511x700.jpg\";s:5:\"width\";i:511;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:33:\"AdobeStock_432435637-731x1000.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:32:\"AdobeStock_432435637-365x500.jpg\";s:5:\"width\";i:365;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:32:\"AdobeStock_432435637-800x630.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:30:\"AdobeStock_432435637-55x75.jpg\";s:5:\"width\";i:55;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_432435637-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"AdobeStock_432435637-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_432435637-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_432435637-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"AdobeStock_432435637-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:32:\"AdobeStock_432435637-480x657.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(8476,46833,'_wp_attached_file','2021/08/logo_icon.png'),(8477,46833,'_aioseop_opengraph_settings','a:0:{}'),(8478,46833,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:426;s:4:\"file\";s:21:\"2021/08/logo_icon.png\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"logo_icon-300x92.png\";s:5:\"width\";i:300;s:6:\"height\";i:92;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"logo_icon-1024x316.png\";s:5:\"width\";i:1024;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"logo_icon-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:21:\"logo_icon-768x237.png\";s:5:\"width\";i:768;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:21:\"logo_icon-700x216.png\";s:5:\"width\";i:700;s:6:\"height\";i:216;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:22:\"logo_icon-1152x355.png\";s:5:\"width\";i:1152;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";}s:3:\"bio\";a:4:{s:4:\"file\";s:22:\"logo_icon-1000x308.png\";s:5:\"width\";i:1000;s:6:\"height\";i:308;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:21:\"logo_icon-500x154.png\";s:5:\"width\";i:500;s:6:\"height\";i:154;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:22:\"logo_icon-1200x426.png\";s:5:\"width\";i:1200;s:6:\"height\";i:426;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:19:\"logo_icon-75x23.png\";s:5:\"width\";i:75;s:6:\"height\";i:23;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"logo_icon-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"logo_icon-1080x426.png\";s:5:\"width\";i:1080;s:6:\"height\";i:426;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"logo_icon-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"logo_icon-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:22:\"logo_icon-1080x333.png\";s:5:\"width\";i:1080;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"logo_icon-400x426.png\";s:5:\"width\";i:400;s:6:\"height\";i:426;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:22:\"logo_icon-1280x395.png\";s:5:\"width\";i:1280;s:6:\"height\";i:395;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:21:\"logo_icon-980x302.png\";s:5:\"width\";i:980;s:6:\"height\";i:302;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:21:\"logo_icon-480x148.png\";s:5:\"width\";i:480;s:6:\"height\";i:148;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:{}}}'),(8483,46836,'_et_autogenerated_title','0'),(8484,46836,'_et_default','1'),(8485,46836,'_et_enabled','1'),(8486,46836,'_et_header_layout_id','46014'),(8487,46836,'_et_header_layout_enabled','1'),(8488,46836,'_et_body_layout_id','0'),(8489,46836,'_et_body_layout_enabled','1'),(8490,46836,'_et_footer_layout_id','46015'),(8491,46836,'_et_footer_layout_enabled','1'),(8493,46837,'_et_autogenerated_title','0'),(8494,46837,'_et_default','0'),(8495,46837,'_et_enabled','1'),(8496,46837,'_et_header_layout_id','46014'),(8497,46837,'_et_header_layout_enabled','1'),(8498,46837,'_et_body_layout_id','46016'),(8499,46837,'_et_body_layout_enabled','1'),(8500,46837,'_et_footer_layout_id','46015'),(8501,46837,'_et_footer_layout_enabled','1'),(8504,46838,'_et_autogenerated_title','0'),(8505,46838,'_et_default','0'),(8506,46838,'_et_enabled','1'),(8507,46838,'_et_header_layout_id','46014'),(8508,46838,'_et_header_layout_enabled','1'),(8509,46838,'_et_body_layout_id','47123'),(8510,46838,'_et_body_layout_enabled','1'),(8511,46838,'_et_footer_layout_id','46015'),(8512,46838,'_et_footer_layout_enabled','1'),(8521,46839,'_et_autogenerated_title','0'),(8522,46839,'_et_default','0'),(8523,46839,'_et_enabled','1'),(8524,46839,'_et_header_layout_id','46014'),(8525,46839,'_et_header_layout_enabled','1'),(8526,46839,'_et_body_layout_id','47138'),(8527,46839,'_et_body_layout_enabled','1'),(8528,46839,'_et_footer_layout_id','46015'),(8529,46839,'_et_footer_layout_enabled','1'),(8532,46840,'_et_autogenerated_title','0'),(8533,46840,'_et_default','0'),(8534,46840,'_et_enabled','1'),(8535,46840,'_et_header_layout_id','46014'),(8536,46840,'_et_header_layout_enabled','1'),(8537,46840,'_et_body_layout_id','47166'),(8538,46840,'_et_body_layout_enabled','1'),(8539,46840,'_et_footer_layout_id','46015'),(8540,46840,'_et_footer_layout_enabled','1'),(8543,46841,'_et_autogenerated_title','0'),(8544,46841,'_et_default','0'),(8545,46841,'_et_enabled','1'),(8546,46841,'_et_header_layout_id','46014'),(8547,46841,'_et_header_layout_enabled','1'),(8548,46841,'_et_body_layout_id','47169'),(8549,46841,'_et_body_layout_enabled','1'),(8550,46841,'_et_footer_layout_id','46015'),(8551,46841,'_et_footer_layout_enabled','1'),(8562,46842,'_et_autogenerated_title','0'),(8563,46842,'_et_default','0'),(8564,46842,'_et_enabled','1'),(8565,46842,'_et_header_layout_id','46014'),(8566,46842,'_et_header_layout_enabled','1'),(8567,46842,'_et_body_layout_id','47184'),(8568,46842,'_et_body_layout_enabled','1'),(8569,46842,'_et_footer_layout_id','46015'),(8570,46842,'_et_footer_layout_enabled','1'),(8573,46843,'_et_autogenerated_title','0'),(8574,46843,'_et_default','0'),(8575,46843,'_et_enabled','1'),(8576,46843,'_et_header_layout_id','0'),(8577,46843,'_et_header_layout_enabled','1'),(8578,46843,'_et_body_layout_id','0'),(8579,46843,'_et_body_layout_enabled','1'),(8580,46843,'_et_footer_layout_id','46065'),(8581,46843,'_et_footer_layout_enabled','1'),(8584,46844,'_et_autogenerated_title','0'),(8585,46844,'_et_default','0'),(8586,46844,'_et_enabled','1'),(8587,46844,'_et_header_layout_id','46022'),(8588,46844,'_et_header_layout_enabled','1'),(8589,46844,'_et_body_layout_id','46023'),(8590,46844,'_et_body_layout_enabled','1'),(8591,46844,'_et_footer_layout_id','46024'),(8592,46844,'_et_footer_layout_enabled','1'),(8597,46845,'_et_autogenerated_title','0'),(8598,46845,'_et_default','0'),(8599,46845,'_et_enabled','1'),(8600,46845,'_et_header_layout_id','46014'),(8601,46845,'_et_header_layout_enabled','1'),(8602,46845,'_et_body_layout_id','0'),(8603,46845,'_et_body_layout_enabled','1'),(8604,46845,'_et_footer_layout_id','46015'),(8605,46845,'_et_footer_layout_enabled','1'),(8698,46860,'_wp_attached_file','2021/08/AdobeStock_432435637-T.jpg'),(8699,46860,'_aioseop_opengraph_settings','a:0:{}'),(8700,46860,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1050;s:6:\"height\";i:800;s:4:\"file\";s:34:\"2021/08/AdobeStock_432435637-T.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"AdobeStock_432435637-T-300x229.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:229;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"AdobeStock_432435637-T-1024x780.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"AdobeStock_432435637-T-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:34:\"AdobeStock_432435637-T-768x585.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:585;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:34:\"AdobeStock_432435637-T-700x533.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:35:\"AdobeStock_432435637-T-1000x762.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:762;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:34:\"AdobeStock_432435637-T-500x381.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:381;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:35:\"AdobeStock_432435637-T-1050x630.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"AdobeStock_432435637-T-75x57.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_432435637-T-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"AdobeStock_432435637-T-1050x675.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_432435637-T-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_432435637-T-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"AdobeStock_432435637-T-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"AdobeStock_432435637-T-980x747.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:747;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"AdobeStock_432435637-T-480x366.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(8755,46875,'_wp_attached_file','2021/08/AdobeStock_221755833-T.jpg'),(8756,46875,'_aioseop_opengraph_settings','a:0:{}'),(8757,46875,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:600;s:4:\"file\";s:34:\"2021/08/AdobeStock_221755833-T.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-T-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-T-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:34:\"AdobeStock_221755833-T-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-T-700x420.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-T-500x300.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"AdobeStock_221755833-T-75x45.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:45;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-T-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-T-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-T-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-T-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-T-980x588.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-T-480x288.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(8758,46876,'_wp_attached_file','2021/08/AdobeStock_221755833-M.jpg'),(8759,46876,'_aioseop_opengraph_settings','a:0:{}'),(8760,46876,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:34:\"2021/08/AdobeStock_221755833-M.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-M-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-M-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"AdobeStock_221755833-M-75x45.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:45;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-M-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-M-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-M-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"AdobeStock_221755833-M-480x288.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(8764,46879,'_wp_attached_file','2021/08/AdobeStock_180103616-D.jpg'),(8765,46879,'_aioseop_opengraph_settings','a:0:{}'),(8766,46879,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:950;s:4:\"file\";s:34:\"2021/08/AdobeStock_180103616-D.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-D-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"AdobeStock_180103616-D-1024x540.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-D-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:34:\"AdobeStock_180103616-D-768x405.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"AdobeStock_180103616-D-1536x811.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:35:\"AdobeStock_180103616-D-1600x844.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:35:\"AdobeStock_180103616-D-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-D-700x369.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:369;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:35:\"AdobeStock_180103616-D-1152x608.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:35:\"AdobeStock_180103616-D-1000x528.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-D-500x264.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:35:\"AdobeStock_180103616-D-1200x630.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"AdobeStock_180103616-D-75x40.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-D-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"AdobeStock_180103616-D-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-D-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-D-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"AdobeStock_180103616-D-1080x570.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-D-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"AdobeStock_180103616-D-1280x676.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:676;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-D-980x517.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:517;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-D-480x253.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:253;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(8767,46880,'_wp_attached_file','2021/08/AdobeStock_180103616-M.jpg'),(8768,46880,'_aioseop_opengraph_settings','a:0:{}'),(8769,46880,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:369;s:4:\"file\";s:34:\"2021/08/AdobeStock_180103616-M.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-M-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-M-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-M-500x264.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"AdobeStock_180103616-M-75x40.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-M-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-M-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-M-510x369.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:369;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-M-400x369.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:369;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-M-480x253.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:253;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(8770,46881,'_wp_attached_file','2021/08/AdobeStock_180103616-T.jpg'),(8771,46881,'_aioseop_opengraph_settings','a:0:{}'),(8772,46881,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:528;s:4:\"file\";s:34:\"2021/08/AdobeStock_180103616-T.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-T-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-T-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:34:\"AdobeStock_180103616-T-768x406.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-T-700x370.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-T-500x264.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"AdobeStock_180103616-T-75x40.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-T-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-T-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-T-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-T-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-T-980x517.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:517;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"AdobeStock_180103616-T-480x253.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:253;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(8773,46882,'_wp_attached_file','2021/08/AdobeStock_108033031-D.jpg'),(8774,46882,'_aioseop_opengraph_settings','a:0:{}'),(8775,46882,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:938;s:4:\"file\";s:34:\"2021/08/AdobeStock_108033031-D.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-D-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"AdobeStock_108033031-D-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-D-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:34:\"AdobeStock_108033031-D-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:35:\"AdobeStock_108033031-D-1500x900.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-D-700x438.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:35:\"AdobeStock_108033031-D-1152x720.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:35:\"AdobeStock_108033031-D-1000x625.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-D-500x313.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:35:\"AdobeStock_108033031-D-1200x630.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"AdobeStock_108033031-D-75x47.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:47;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-D-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"AdobeStock_108033031-D-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-D-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-D-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"AdobeStock_108033031-D-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-D-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"AdobeStock_108033031-D-1280x800.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-D-980x613.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:613;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-D-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8776,46883,'_wp_attached_file','2021/08/AdobeStock_108033031-M.jpg'),(8777,46883,'_aioseop_opengraph_settings','a:0:{}'),(8778,46883,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:438;s:4:\"file\";s:34:\"2021/08/AdobeStock_108033031-M.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-M-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-M-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-M-500x313.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"AdobeStock_108033031-M-75x47.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:47;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-M-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-M-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-M-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-M-400x438.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-M-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8779,46884,'_wp_attached_file','2021/08/AdobeStock_108033031-T.jpg'),(8780,46884,'_aioseop_opengraph_settings','a:0:{}'),(8781,46884,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:625;s:4:\"file\";s:34:\"2021/08/AdobeStock_108033031-T.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-T-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-T-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:34:\"AdobeStock_108033031-T-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-T-700x438.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-T-500x313.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"AdobeStock_108033031-T-75x47.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:47;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-T-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-T-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-T-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-T-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-T-980x613.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:613;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"AdobeStock_108033031-T-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8789,45927,'_aioseop_title','Contact | The Law Offices of Melissa A. Day, PLLC | Amherst'),(9054,46079,'_edit_lock','1645123990:308'),(9055,46079,'_edit_last','308'),(9056,46079,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"profile\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(9057,46079,'legal_educations_0_le_grad_date',''),(9058,46079,'_legal_educations_0_le_grad_date','field_person_meta_le_grad_date'),(9059,46079,'non_legal_educations_0_nl_grad_date',''),(9060,46079,'_non_legal_educations_0_nl_grad_date','field_person_meta_nl_grad_date'),(9061,46079,'current_positions_0_cp_time_period',''),(9062,46079,'_current_positions_0_cp_time_period','field_person_meta_cp_time_period'),(9063,46079,'du-meta-custom-footer','default'),(9064,46079,'_et_pb_post_hide_nav','default'),(9065,46079,'_et_pb_page_layout','et_right_sidebar'),(9066,46079,'_et_pb_side_nav','off'),(9067,46079,'_et_pb_use_builder','on'),(9068,46079,'_et_pb_first_image',''),(9069,46079,'_et_pb_truncate_post',''),(9070,46079,'_et_pb_truncate_post_date',''),(9071,46079,'_et_pb_old_content',''),(9290,46930,'_wp_attached_file','2021/09/AdobeStock_236812913-scaled.jpeg'),(9291,46930,'_aioseop_opengraph_settings','a:0:{}'),(9292,46930,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:40:\"2021/09/AdobeStock_236812913-scaled.jpeg\";s:5:\"sizes\";a:24:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"AdobeStock_236812913-300x200.jpeg\";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:34:\"AdobeStock_236812913-1024x683.jpeg\";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:33:\"AdobeStock_236812913-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:33:\"AdobeStock_236812913-768x513.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"AdobeStock_236812913-1536x1025.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:35:\"AdobeStock_236812913-2048x1367.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:35:\"AdobeStock_236812913-1600x1068.jpeg\";s:5:\"width\";i:1600;s:6:\"height\";i:1068;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-1600x900.jpeg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:33:\"AdobeStock_236812913-700x467.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-1152x769.jpeg\";s:5:\"width\";i:1152;s:6:\"height\";i:769;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-1000x667.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:33:\"AdobeStock_236812913-500x334.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-1200x630.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:31:\"AdobeStock_236812913-75x50.jpeg\";s:5:\"width\";i:75;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"AdobeStock_236812913-400x250.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-1080x675.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"AdobeStock_236812913-400x284.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"AdobeStock_236812913-510x382.jpeg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-1080x721.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"AdobeStock_236812913-400x516.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"AdobeStock_236812913-2880x1800.jpeg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-1280x855.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:855;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:33:\"AdobeStock_236812913-980x654.jpeg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"AdobeStock_236812913-480x320.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:29:\"alphaspirit - stock.adobe.com\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:71:\"Business people collaborate together in office. Double exposure effects\";s:17:\"created_timestamp\";s:10:\"1508583365\";s:9:\"copyright\";s:31:\"©alphaspirit - stock.adobe.com\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:126:\"Silhouette of business people work together in office. Concept of teamwork and partnership. double exposure with light effects\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:100:{i:0;s:8:\"business\";i:1;s:11:\"collaborate\";i:2;s:6:\"double\";i:3;s:8:\"exposure\";i:4;s:6:\"office\";i:5;s:7:\"partner\";i:6;s:11:\"partnership\";i:7;s:6:\"people\";i:8;s:4:\"team\";i:9;s:8:\"teamwork\";i:10;s:8:\"together\";i:11;s:4:\"work\";i:12;s:8:\"strategy\";i:13;s:9:\"financial\";i:14;s:11:\"corporation\";i:15;s:15:\"interconnection\";i:16;s:7:\"synergy\";i:17;s:7:\"startup\";i:18;s:8:\"planning\";i:19;s:14:\"businessperson\";i:20;s:12:\"presentation\";i:21;s:6:\"worker\";i:22;s:7:\"meeting\";i:23;s:6:\"leader\";i:24;s:5:\"tower\";i:25;s:7:\"project\";i:26;s:7:\"manager\";i:27;s:7:\"company\";i:28;s:10:\"employment\";i:29;s:11:\"businessman\";i:30;s:9:\"corporate\";i:31;s:9:\"executive\";i:32;s:7:\"success\";i:33;s:8:\"organise\";i:34;s:10:\"silhouette\";i:35;s:10:\"conference\";i:36;s:5:\"phone\";i:37;s:8:\"employee\";i:38;s:8:\"solution\";i:39;s:8:\"notebook\";i:40;s:11:\"cooperation\";i:41;s:9:\"workplace\";i:42;s:10:\"enterprise\";i:43;s:10:\"successful\";i:44;s:6:\"laptop\";i:45;s:7:\"finance\";i:46;s:10:\"skyscraper\";i:47;s:5:\"share\";i:48;s:13:\"communication\";i:49;s:5:\"group\";i:50;s:8:\"business\";i:51;s:11:\"collaborate\";i:52;s:6:\"double\";i:53;s:8:\"exposure\";i:54;s:6:\"office\";i:55;s:7:\"partner\";i:56;s:11:\"partnership\";i:57;s:6:\"people\";i:58;s:4:\"team\";i:59;s:8:\"teamwork\";i:60;s:8:\"together\";i:61;s:4:\"work\";i:62;s:8:\"strategy\";i:63;s:9:\"financial\";i:64;s:11:\"corporation\";i:65;s:15:\"interconnection\";i:66;s:7:\"synergy\";i:67;s:7:\"startup\";i:68;s:8:\"planning\";i:69;s:14:\"businessperson\";i:70;s:12:\"presentation\";i:71;s:6:\"worker\";i:72;s:7:\"meeting\";i:73;s:6:\"leader\";i:74;s:5:\"tower\";i:75;s:7:\"project\";i:76;s:7:\"manager\";i:77;s:7:\"company\";i:78;s:10:\"employment\";i:79;s:11:\"businessman\";i:80;s:9:\"corporate\";i:81;s:9:\"executive\";i:82;s:7:\"success\";i:83;s:8:\"organise\";i:84;s:10:\"silhouette\";i:85;s:10:\"conference\";i:86;s:5:\"phone\";i:87;s:8:\"employee\";i:88;s:8:\"solution\";i:89;s:8:\"notebook\";i:90;s:11:\"cooperation\";i:91;s:9:\"workplace\";i:92;s:10:\"enterprise\";i:93;s:10:\"successful\";i:94;s:6:\"laptop\";i:95;s:7:\"finance\";i:96;s:10:\"skyscraper\";i:97;s:5:\"share\";i:98;s:13:\"communication\";i:99;s:5:\"group\";}}s:14:\"original_image\";s:25:\"AdobeStock_236812913.jpeg\";}'),(9311,46937,'_wp_attached_file','2021/09/AdobeStock_236812913.jpg'),(9312,46937,'_aioseop_opengraph_settings','a:0:{}'),(9313,46937,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:900;s:4:\"file\";s:32:\"2021/09/AdobeStock_236812913.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"AdobeStock_236812913-300x135.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"AdobeStock_236812913-1024x461.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"AdobeStock_236812913-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"AdobeStock_236812913-768x346.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"AdobeStock_236812913-1536x691.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:691;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:33:\"AdobeStock_236812913-1600x720.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:33:\"AdobeStock_236812913-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:32:\"AdobeStock_236812913-700x315.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:33:\"AdobeStock_236812913-1152x518.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:518;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:33:\"AdobeStock_236812913-1000x450.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:32:\"AdobeStock_236812913-500x225.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:33:\"AdobeStock_236812913-1200x630.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:30:\"AdobeStock_236812913-75x34.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:34;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_236812913-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"AdobeStock_236812913-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_236812913-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_236812913-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"AdobeStock_236812913-1080x486.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"AdobeStock_236812913-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:33:\"AdobeStock_236812913-1280x576.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:32:\"AdobeStock_236812913-980x441.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:32:\"AdobeStock_236812913-480x216.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9314,46938,'_wp_attached_file','2021/09/AdobeStock_236812913-T.jpg'),(9315,46938,'_aioseop_opengraph_settings','a:0:{}'),(9316,46938,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:600;s:4:\"file\";s:34:\"2021/09/AdobeStock_236812913-T.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-T-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-T-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:34:\"AdobeStock_236812913-T-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-T-700x420.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-T-500x300.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"AdobeStock_236812913-T-75x45.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:45;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-T-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-T-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-T-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-T-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-T-980x588.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-T-480x288.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(9317,46939,'_wp_attached_file','2021/09/AdobeStock_236812913-M.jpg'),(9318,46939,'_aioseop_opengraph_settings','a:0:{}'),(9319,46939,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:34:\"2021/09/AdobeStock_236812913-M.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-M-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-M-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"AdobeStock_236812913-M-75x45.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:45;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-M-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-M-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-M-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"AdobeStock_236812913-M-480x288.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(9573,46969,'_wp_attached_file','2021/09/AdobeStock_298378097.jpg'),(9574,46969,'_aioseop_opengraph_settings','a:0:{}'),(9575,46969,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:900;s:4:\"file\";s:32:\"2021/09/AdobeStock_298378097.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"AdobeStock_298378097-300x135.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"AdobeStock_298378097-1024x461.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"AdobeStock_298378097-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"AdobeStock_298378097-768x346.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"AdobeStock_298378097-1536x691.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:691;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:33:\"AdobeStock_298378097-1600x720.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:33:\"AdobeStock_298378097-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:32:\"AdobeStock_298378097-700x315.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:33:\"AdobeStock_298378097-1152x518.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:518;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:33:\"AdobeStock_298378097-1000x450.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:32:\"AdobeStock_298378097-500x225.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:33:\"AdobeStock_298378097-1200x630.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:30:\"AdobeStock_298378097-75x34.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:34;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_298378097-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"AdobeStock_298378097-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_298378097-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_298378097-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"AdobeStock_298378097-1080x486.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"AdobeStock_298378097-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:33:\"AdobeStock_298378097-1280x576.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:32:\"AdobeStock_298378097-980x441.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:32:\"AdobeStock_298378097-480x216.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9633,46976,'_wp_attached_file','2021/09/tv.png'),(9634,46976,'_aioseop_opengraph_settings','a:0:{}'),(9635,46976,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:14:\"2021/09/tv.png\";s:5:\"sizes\";a:1:{s:11:\"placeholder\";a:4:{s:4:\"file\";s:12:\"tv-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9759,46988,'_wp_attached_file','2021/09/logo_b.png'),(9760,46988,'_aioseop_opengraph_settings','a:0:{}'),(9761,46988,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1052;s:6:\"height\";i:720;s:4:\"file\";s:18:\"2021/09/logo_b.png\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"logo_b-300x205.png\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"logo_b-1024x701.png\";s:5:\"width\";i:1024;s:6:\"height\";i:701;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"logo_b-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:18:\"logo_b-768x526.png\";s:5:\"width\";i:768;s:6:\"height\";i:526;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:18:\"logo_b-700x479.png\";s:5:\"width\";i:700;s:6:\"height\";i:479;s:9:\"mime-type\";s:9:\"image/png\";}s:3:\"bio\";a:4:{s:4:\"file\";s:19:\"logo_b-1000x684.png\";s:5:\"width\";i:1000;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:18:\"logo_b-500x342.png\";s:5:\"width\";i:500;s:6:\"height\";i:342;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:19:\"logo_b-1052x630.png\";s:5:\"width\";i:1052;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:16:\"logo_b-75x51.png\";s:5:\"width\";i:75;s:6:\"height\";i:51;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"logo_b-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"logo_b-1052x675.png\";s:5:\"width\";i:1052;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"logo_b-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"logo_b-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"logo_b-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:18:\"logo_b-980x671.png\";s:5:\"width\";i:980;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:18:\"logo_b-480x329.png\";s:5:\"width\";i:480;s:6:\"height\";i:329;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:{}}}'),(10135,47028,'_wp_attached_file','2021/09/map-tab.png'),(10136,47028,'_aioseop_opengraph_settings','a:0:{}'),(10137,47028,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:675;s:6:\"height\";i:501;s:4:\"file\";s:19:\"2021/09/map-tab.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"map-tab-300x223.png\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"map-tab-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:19:\"map-tab-500x371.png\";s:5:\"width\";i:500;s:6:\"height\";i:371;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:17:\"map-tab-75x56.png\";s:5:\"width\";i:75;s:6:\"height\";i:56;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"map-tab-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"map-tab-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"map-tab-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"map-tab-400x501.png\";s:5:\"width\";i:400;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:19:\"map-tab-480x356.png\";s:5:\"width\";i:480;s:6:\"height\";i:356;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:{}}}'),(10138,47029,'_wp_attached_file','2021/09/map-desk.png'),(10139,47029,'_aioseop_opengraph_settings','a:0:{}'),(10140,47029,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1239;s:6:\"height\";i:510;s:4:\"file\";s:20:\"2021/09/map-desk.png\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"map-desk-300x123.png\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"map-desk-1024x422.png\";s:5:\"width\";i:1024;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"map-desk-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:20:\"map-desk-768x316.png\";s:5:\"width\";i:768;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:20:\"map-desk-700x288.png\";s:5:\"width\";i:700;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:21:\"map-desk-1152x474.png\";s:5:\"width\";i:1152;s:6:\"height\";i:474;s:9:\"mime-type\";s:9:\"image/png\";}s:3:\"bio\";a:4:{s:4:\"file\";s:21:\"map-desk-1000x412.png\";s:5:\"width\";i:1000;s:6:\"height\";i:412;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:20:\"map-desk-500x206.png\";s:5:\"width\";i:500;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:21:\"map-desk-1200x510.png\";s:5:\"width\";i:1200;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:18:\"map-desk-75x31.png\";s:5:\"width\";i:75;s:6:\"height\";i:31;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"map-desk-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"map-desk-1080x510.png\";s:5:\"width\";i:1080;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"map-desk-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"map-desk-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"map-desk-1080x445.png\";s:5:\"width\";i:1080;s:6:\"height\";i:445;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"map-desk-400x510.png\";s:5:\"width\";i:400;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:20:\"map-desk-980x403.png\";s:5:\"width\";i:980;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:20:\"map-desk-480x198.png\";s:5:\"width\";i:480;s:6:\"height\";i:198;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:{}}}'),(10575,47076,'_wp_attached_file','2021/09/AdobeStock_443605491-1.jpg'),(10576,47076,'_aioseop_opengraph_settings','a:0:{}'),(10577,47076,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:654;s:4:\"file\";s:34:\"2021/09/AdobeStock_443605491-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"AdobeStock_443605491-1-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"AdobeStock_443605491-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:34:\"AdobeStock_443605491-1-768x502.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:502;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:34:\"AdobeStock_443605491-1-700x458.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:458;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:34:\"AdobeStock_443605491-1-500x327.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:327;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:35:\"AdobeStock_443605491-1-1000x630.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"AdobeStock_443605491-1-75x49.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:49;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_443605491-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_443605491-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_443605491-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"AdobeStock_443605491-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"AdobeStock_443605491-1-980x641.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:641;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"AdobeStock_443605491-1-480x314.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:314;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(10650,47095,'_wp_attached_file','2021/09/logo_c.png'),(10651,47095,'_aioseop_opengraph_settings','a:0:{}'),(10652,47095,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1540;s:6:\"height\";i:310;s:4:\"file\";s:18:\"2021/09/logo_c.png\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"logo_c-300x60.png\";s:5:\"width\";i:300;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"logo_c-1024x206.png\";s:5:\"width\";i:1024;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"logo_c-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:18:\"logo_c-768x155.png\";s:5:\"width\";i:768;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"logo_c-1536x309.png\";s:5:\"width\";i:1536;s:6:\"height\";i:309;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:18:\"logo_c-700x141.png\";s:5:\"width\";i:700;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:19:\"logo_c-1152x232.png\";s:5:\"width\";i:1152;s:6:\"height\";i:232;s:9:\"mime-type\";s:9:\"image/png\";}s:3:\"bio\";a:4:{s:4:\"file\";s:19:\"logo_c-1000x201.png\";s:5:\"width\";i:1000;s:6:\"height\";i:201;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:18:\"logo_c-500x101.png\";s:5:\"width\";i:500;s:6:\"height\";i:101;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:19:\"logo_c-1200x310.png\";s:5:\"width\";i:1200;s:6:\"height\";i:310;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:16:\"logo_c-75x15.png\";s:5:\"width\";i:75;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"logo_c-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"logo_c-1080x310.png\";s:5:\"width\";i:1080;s:6:\"height\";i:310;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"logo_c-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"logo_c-510x310.png\";s:5:\"width\";i:510;s:6:\"height\";i:310;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"logo_c-1080x217.png\";s:5:\"width\";i:1080;s:6:\"height\";i:217;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"logo_c-400x310.png\";s:5:\"width\";i:400;s:6:\"height\";i:310;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:19:\"logo_c-1280x258.png\";s:5:\"width\";i:1280;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:18:\"logo_c-980x197.png\";s:5:\"width\";i:980;s:6:\"height\";i:197;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:17:\"logo_c-480x97.png\";s:5:\"width\";i:480;s:6:\"height\";i:97;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:{}}}'),(10662,47099,'_wp_attached_file','2021/09/ic3.png'),(10663,47099,'_aioseop_opengraph_settings','a:0:{}'),(10664,47099,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:15:\"2021/09/ic3.png\";s:5:\"sizes\";a:1:{s:11:\"placeholder\";a:4:{s:4:\"file\";s:13:\"ic3-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10665,47100,'_wp_attached_file','2021/09/ic1.png'),(10666,47100,'_aioseop_opengraph_settings','a:0:{}'),(10667,47100,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:15:\"2021/09/ic1.png\";s:5:\"sizes\";a:1:{s:11:\"placeholder\";a:4:{s:4:\"file\";s:13:\"ic1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10668,47101,'_wp_attached_file','2021/09/ic2.png'),(10669,47101,'_aioseop_opengraph_settings','a:0:{}'),(10670,47101,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:15:\"2021/09/ic2.png\";s:5:\"sizes\";a:1:{s:11:\"placeholder\";a:4:{s:4:\"file\";s:13:\"ic2-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10732,47118,'_et_pb_built_for_post_type','page'),(10733,47119,'_et_pb_built_for_post_type','page'),(10734,47121,'_et_pb_module_type','et_pb_sidebar'),(10735,47121,'_et_pb_excluded_global_options','[]'),(10736,47121,'_et_pb_built_for_post_type','page'),(10775,47123,'_et_pb_use_builder','on'),(10776,47123,'_et_pb_show_page_creation','off'),(10777,47123,'_et_pb_built_for_post_type','page'),(10778,47123,'_et_pb_enable_shortcode_tracking',''),(10779,47123,'_et_pb_custom_css',''),(10780,47123,'_et_pb_gutter_width','1'),(10781,47123,'_et_pb_first_image',''),(10782,47123,'_et_pb_truncate_post',''),(10783,47123,'_et_pb_truncate_post_date',''),(10784,47123,'_et_builder_version','VB|Divi|4.3.2'),(10786,47118,'_et_pb_excluded_global_options','[]'),(10787,47123,'_et_pb_ab_subjects',''),(10788,47123,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"47123\" /]'),(10789,47123,'_thumbnail_id','0'),(10970,47138,'_et_pb_use_builder','on'),(10971,47138,'_et_pb_show_page_creation','off'),(10972,47138,'_et_pb_built_for_post_type','page'),(10973,47138,'_et_pb_enable_shortcode_tracking',''),(10974,47138,'_et_pb_custom_css',''),(10975,47138,'_et_pb_gutter_width','1'),(10976,47138,'_et_pb_first_image',''),(10977,47138,'_et_pb_truncate_post',''),(10978,47138,'_et_pb_truncate_post_date',''),(10979,47138,'_et_builder_version','VB|Divi|4.18.0'),(11109,47151,'_et_pb_module_type','et_pb_sidebar'),(11110,47151,'_et_pb_excluded_global_options','[]'),(11111,47151,'_et_pb_built_for_post_type','page'),(11112,47138,'_et_pb_ab_subjects',''),(11113,47138,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"47138\" /]'),(11114,47138,'_thumbnail_id','0'),(11295,47166,'_et_pb_use_builder','on'),(11296,47166,'_et_pb_show_page_creation','off'),(11297,47166,'_et_pb_built_for_post_type','page'),(11298,47166,'_et_pb_enable_shortcode_tracking',''),(11299,47166,'_et_pb_custom_css',''),(11300,47166,'_et_pb_gutter_width','1'),(11301,47166,'_et_pb_first_image',''),(11302,47166,'_et_pb_truncate_post',''),(11303,47166,'_et_pb_truncate_post_date',''),(11304,47166,'_et_builder_version','VB|Divi|4.18.0'),(11306,47166,'_et_pb_ab_subjects',''),(11307,47166,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"47166\" /]'),(11308,47166,'_thumbnail_id','0'),(11361,47169,'_et_pb_use_builder','on'),(11362,47169,'_et_pb_show_page_creation','off'),(11363,47169,'_et_pb_built_for_post_type','page'),(11364,47169,'_et_pb_enable_shortcode_tracking',''),(11365,47169,'_et_pb_custom_css',''),(11366,47169,'_et_pb_gutter_width','1'),(11367,47169,'_et_pb_first_image',''),(11368,47169,'_et_pb_truncate_post',''),(11369,47169,'_et_pb_truncate_post_date',''),(11370,47169,'_et_builder_version','VB|Divi|4.18.0'),(11500,47169,'_et_pb_ab_subjects',''),(11501,47169,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"47169\" /]'),(11502,47169,'_thumbnail_id','0'),(11555,47184,'_et_pb_use_builder','on'),(11556,47184,'_et_pb_show_page_creation','off'),(11557,47184,'_et_pb_built_for_post_type','page'),(11558,47184,'_et_pb_enable_shortcode_tracking',''),(11559,47184,'_et_pb_custom_css',''),(11560,47184,'_et_pb_gutter_width','1'),(11561,47184,'_et_pb_first_image',''),(11562,47184,'_et_pb_truncate_post',''),(11563,47184,'_et_pb_truncate_post_date',''),(11564,47184,'_et_builder_version','VB|Divi|4.3.2'),(11694,47184,'_et_pb_ab_subjects',''),(11695,47184,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"47184\" /]'),(11696,47184,'_thumbnail_id','0'),(11786,47198,'_et_autogenerated_title','1'),(11787,47198,'_et_default','0'),(11788,47198,'_et_enabled','1'),(11789,47198,'_et_header_layout_id','46014'),(11790,47198,'_et_header_layout_enabled','1'),(11791,47198,'_et_body_layout_id','0'),(11792,47198,'_et_body_layout_enabled','1'),(11793,47198,'_et_footer_layout_id','46015'),(11794,47198,'_et_footer_layout_enabled','1'),(12021,47213,'_menu_item_type','post_type'),(12022,47213,'_menu_item_menu_item_parent','0'),(12023,47213,'_menu_item_object_id','46229'),(12024,47213,'_menu_item_object','page'),(12025,47213,'_menu_item_target',''),(12026,47213,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12027,47213,'_menu_item_xfn',''),(12028,47213,'_menu_item_url',''),(12030,47214,'_menu_item_type','post_type'),(12031,47214,'_menu_item_menu_item_parent','0'),(12032,47214,'_menu_item_object_id','46189'),(12033,47214,'_menu_item_object','page'),(12034,47214,'_menu_item_target',''),(12035,47214,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12036,47214,'_menu_item_xfn',''),(12037,47214,'_menu_item_url',''),(12039,47215,'_menu_item_type','post_type'),(12040,47215,'_menu_item_menu_item_parent','0'),(12041,47215,'_menu_item_object_id','46244'),(12042,47215,'_menu_item_object','page'),(12043,47215,'_menu_item_target',''),(12044,47215,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12045,47215,'_menu_item_xfn',''),(12046,47215,'_menu_item_url',''),(12048,47214,'_aioseop_opengraph_settings','a:0:{}'),(12049,47213,'_aioseop_opengraph_settings','a:0:{}'),(12050,47215,'_aioseop_opengraph_settings','a:0:{}'),(12214,46071,'_edit_lock','1660245212:5036'),(12215,46071,'_edit_last','5036'),(12216,46071,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"profile\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(12217,46071,'current_positions_0_cp_time_period',''),(12218,46071,'_current_positions_0_cp_time_period','field_person_meta_cp_time_period'),(12219,46071,'du-meta-custom-footer','default'),(12220,46071,'_et_pb_post_hide_nav','default'),(12221,46071,'_et_pb_page_layout','et_right_sidebar'),(12222,46071,'_et_pb_side_nav','off'),(12223,46071,'_et_pb_use_builder','on'),(12224,46071,'_et_pb_first_image',''),(12225,46071,'_et_pb_truncate_post',''),(12226,46071,'_et_pb_truncate_post_date',''),(12227,46071,'_et_pb_old_content',''),(12228,46071,'_et_pb_built_for_post_type','page'),(12229,46071,'_et_pb_ab_subjects',''),(12230,46071,'_et_pb_enable_shortcode_tracking',''),(12231,46071,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46071\" /]'),(12232,46071,'_et_pb_custom_css',''),(12233,46071,'_et_pb_gutter_width','1'),(12234,46071,'_et_builder_version','VB|Divi|4.14.8'),(12235,46071,'_et_pb_show_page_creation','off'),(12237,46073,'_edit_lock','1660932592:5036'),(12238,46073,'_edit_last','308'),(12239,46073,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"profile\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(12240,46073,'legal_educations_0_le_grad_date',''),(12241,46073,'_legal_educations_0_le_grad_date','field_person_meta_le_grad_date'),(12242,46073,'non_legal_educations_0_nl_grad_date',''),(12243,46073,'_non_legal_educations_0_nl_grad_date','field_person_meta_nl_grad_date'),(12244,46073,'current_positions_0_cp_time_period',''),(12245,46073,'_current_positions_0_cp_time_period','field_person_meta_cp_time_period'),(12246,46073,'du-meta-custom-footer','default'),(12247,46073,'_et_pb_post_hide_nav','default'),(12248,46073,'_et_pb_page_layout','et_right_sidebar'),(12249,46073,'_et_pb_side_nav','off'),(12250,46073,'_et_pb_use_builder','on'),(12251,46073,'_et_pb_first_image',''),(12252,46073,'_et_pb_truncate_post',''),(12253,46073,'_et_pb_truncate_post_date',''),(12254,46073,'_et_pb_old_content',''),(12255,46073,'_et_pb_built_for_post_type','page'),(12256,46073,'_et_pb_ab_subjects',''),(12257,46073,'_et_pb_enable_shortcode_tracking',''),(12258,46073,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46073\" /]'),(12259,46073,'_et_pb_custom_css',''),(12260,46073,'_et_pb_gutter_width','1'),(12261,46073,'_et_builder_version','VB|Divi|4.3.2'),(12262,46073,'_et_pb_show_page_creation','off'),(12264,46075,'_edit_lock','1648630599:3462'),(12265,46075,'_edit_last','3462'),(12266,46075,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"profile\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(12267,46075,'non_legal_educations_0_nl_grad_date','2008'),(12268,46075,'_non_legal_educations_0_nl_grad_date','field_person_meta_nl_grad_date'),(12269,46075,'non_legal_educations_1_nl_grad_date','2006'),(12270,46075,'_non_legal_educations_1_nl_grad_date','field_person_meta_nl_grad_date'),(12271,46075,'current_positions_0_cp_time_period',''),(12272,46075,'_current_positions_0_cp_time_period','field_person_meta_cp_time_period'),(12273,46075,'du-meta-custom-footer','default'),(12274,46075,'_et_pb_post_hide_nav','default'),(12275,46075,'_et_pb_page_layout','et_right_sidebar'),(12276,46075,'_et_pb_side_nav','off'),(12277,46075,'_et_pb_use_builder','on'),(12278,46075,'_et_pb_first_image',''),(12279,46075,'_et_pb_truncate_post',''),(12280,46075,'_et_pb_truncate_post_date',''),(12281,46075,'_et_pb_old_content',''),(12282,46075,'_et_pb_built_for_post_type','page'),(12283,46075,'_et_pb_ab_subjects',''),(12284,46075,'_et_pb_enable_shortcode_tracking',''),(12285,46075,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46075\" /]'),(12286,46075,'_et_pb_custom_css',''),(12287,46075,'_et_pb_gutter_width','1'),(12288,46075,'_et_builder_version','VB|Divi|4.3.2'),(12289,46075,'_et_pb_show_page_creation','off'),(12291,46077,'_edit_lock','1660942294:5036'),(12292,46077,'_edit_last','308'),(12293,46077,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"profile\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(12294,46077,'current_positions_0_cp_time_period',''),(12295,46077,'_current_positions_0_cp_time_period','field_person_meta_cp_time_period'),(12296,46077,'du-meta-custom-footer','default'),(12297,46077,'_et_pb_post_hide_nav','default'),(12298,46077,'_et_pb_page_layout','et_right_sidebar'),(12299,46077,'_et_pb_side_nav','off'),(12300,46077,'_et_pb_use_builder','on'),(12301,46077,'_et_pb_first_image',''),(12302,46077,'_et_pb_truncate_post',''),(12303,46077,'_et_pb_truncate_post_date',''),(12304,46077,'_et_pb_old_content',''),(12305,46077,'_et_pb_built_for_post_type','page'),(12306,46077,'_et_pb_ab_subjects',''),(12307,46077,'_et_pb_enable_shortcode_tracking',''),(12308,46077,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46077\" /]'),(12309,46077,'_et_pb_custom_css',''),(12310,46077,'_et_pb_gutter_width','1'),(12311,46077,'_et_builder_version','VB|Divi|4.3.2'),(12312,46077,'_et_pb_show_page_creation','off'),(12313,46079,'_et_pb_built_for_post_type','page'),(12314,46079,'_et_pb_ab_subjects',''),(12315,46079,'_et_pb_enable_shortcode_tracking',''),(12316,46079,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46079\" /]'),(12317,46079,'_et_pb_custom_css',''),(12318,46079,'_et_pb_gutter_width','1'),(12319,46079,'_et_builder_version','VB|Divi|4.3.2'),(12320,46079,'_et_pb_show_page_creation','off'),(12322,46081,'_edit_lock','1652110530:308'),(12323,46081,'_edit_last','308'),(12324,46081,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"profile\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(12325,46081,'legal_educations_0_le_grad_date',''),(12326,46081,'_legal_educations_0_le_grad_date','field_person_meta_le_grad_date'),(12327,46081,'current_positions_0_cp_time_period',''),(12328,46081,'_current_positions_0_cp_time_period','field_person_meta_cp_time_period'),(12329,46081,'du-meta-custom-footer','default'),(12330,46081,'_et_pb_post_hide_nav','default'),(12331,46081,'_et_pb_page_layout','et_right_sidebar'),(12332,46081,'_et_pb_side_nav','off'),(12333,46081,'_et_pb_use_builder','on'),(12334,46081,'_et_pb_first_image',''),(12335,46081,'_et_pb_truncate_post',''),(12336,46081,'_et_pb_truncate_post_date',''),(12337,46081,'_et_pb_old_content',''),(12338,46081,'_et_pb_built_for_post_type','page'),(12339,46081,'_et_pb_ab_subjects',''),(12340,46081,'_et_pb_enable_shortcode_tracking',''),(12341,46081,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46081\" /]'),(12342,46081,'_et_pb_custom_css',''),(12343,46081,'_et_pb_gutter_width','1'),(12344,46081,'_et_builder_version','VB|Divi|4.3.2'),(12345,46081,'_et_pb_show_page_creation','off'),(12369,46085,'_edit_lock','1660934103:5036'),(12370,46085,'_edit_last','5036'),(12371,46085,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"profile\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(12372,46085,'legal_educations_0_le_grad_date',''),(12373,46085,'_legal_educations_0_le_grad_date','field_person_meta_le_grad_date'),(12374,46085,'non_legal_educations_0_nl_grad_date',''),(12375,46085,'_non_legal_educations_0_nl_grad_date','field_person_meta_nl_grad_date'),(12376,46085,'current_positions_0_cp_time_period',''),(12377,46085,'_current_positions_0_cp_time_period','field_person_meta_cp_time_period'),(12378,46085,'du-meta-custom-footer','default'),(12379,46085,'_et_pb_post_hide_nav','default'),(12380,46085,'_et_pb_page_layout','et_right_sidebar'),(12381,46085,'_et_pb_side_nav','off'),(12382,46085,'_et_pb_use_builder','on'),(12383,46085,'_et_pb_first_image',''),(12384,46085,'_et_pb_truncate_post',''),(12385,46085,'_et_pb_truncate_post_date',''),(12386,46085,'_et_pb_old_content',''),(12387,46085,'_et_pb_built_for_post_type','page'),(12388,46085,'_et_pb_ab_subjects',''),(12389,46085,'_et_pb_enable_shortcode_tracking',''),(12390,46085,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46085\" /]'),(12391,46085,'_et_pb_custom_css',''),(12392,46085,'_et_pb_gutter_width','1'),(12393,46085,'_et_builder_version','VB|Divi|4.3.2'),(12394,46085,'_et_pb_show_page_creation','off'),(12419,46089,'_edit_lock','1645123806:308'),(12420,46089,'_edit_last','308'),(12421,46091,'_edit_lock','1660756594:308'),(12422,46089,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"profile\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(12423,46089,'non_legal_educations_1_nl_grad_date','2004'),(12424,46089,'_non_legal_educations_1_nl_grad_date','field_person_meta_nl_grad_date'),(12425,46089,'current_positions_0_cp_time_period',''),(12426,46089,'_current_positions_0_cp_time_period','field_person_meta_cp_time_period'),(12427,46089,'du-meta-custom-footer','default'),(12428,46089,'_et_pb_post_hide_nav','default'),(12429,46089,'_et_pb_page_layout','et_right_sidebar'),(12430,46089,'_et_pb_side_nav','off'),(12431,46089,'_et_pb_use_builder','on'),(12432,46089,'_et_pb_first_image',''),(12433,46089,'_et_pb_truncate_post',''),(12434,46089,'_et_pb_truncate_post_date',''),(12435,46089,'_et_pb_old_content',''),(12436,46091,'_edit_last','308'),(12437,46091,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"profile\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(12438,46091,'current_positions_0_cp_time_period',''),(12439,46091,'_current_positions_0_cp_time_period','field_person_meta_cp_time_period'),(12440,46091,'du-meta-custom-footer','default'),(12441,46091,'_et_pb_post_hide_nav','default'),(12442,46091,'_et_pb_page_layout','et_right_sidebar'),(12443,46091,'_et_pb_side_nav','off'),(12444,46091,'_et_pb_use_builder','on'),(12445,46091,'_et_pb_first_image',''),(12446,46091,'_et_pb_truncate_post',''),(12447,46091,'_et_pb_truncate_post_date',''),(12448,46091,'_et_pb_old_content',''),(12449,46089,'_et_pb_built_for_post_type','page'),(12450,46089,'_et_pb_ab_subjects',''),(12451,46089,'_et_pb_enable_shortcode_tracking',''),(12452,46089,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46089\" /]'),(12453,46089,'_et_pb_custom_css',''),(12454,46089,'_et_pb_gutter_width','1'),(12455,46089,'_et_builder_version','VB|Divi|4.3.2'),(12456,46089,'_et_pb_show_page_creation','off'),(12457,46091,'_et_pb_built_for_post_type','page'),(12458,46091,'_et_pb_ab_subjects',''),(12459,46091,'_et_pb_enable_shortcode_tracking',''),(12460,46091,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46091\" /]'),(12461,46091,'_et_pb_custom_css',''),(12462,46091,'_et_pb_gutter_width','1'),(12463,46091,'_et_builder_version','VB|Divi|4.3.2'),(12464,46091,'_et_pb_show_page_creation','off'),(12465,46189,'_et_pb_built_for_post_type','page'),(12466,46189,'_et_pb_ab_subjects',''),(12467,46189,'_et_pb_enable_shortcode_tracking',''),(12468,46189,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46189\" /]'),(12469,46189,'_et_pb_custom_css',''),(12470,46189,'_et_pb_gutter_width','1'),(12472,46189,'_et_builder_version','VB|Divi|4.14.8'),(12473,46189,'_et_pb_show_page_creation','off'),(12481,46329,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-13 10:20:43\";}'),(12482,46329,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-13 10:20:46\";}'),(12483,46329,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-13 10:20:45\";}'),(12487,47265,'_wp_attached_file','2021/09/favicon-c.png'),(12488,47265,'_aioseop_opengraph_settings','a:0:{}'),(12489,47265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:21:\"2021/09/favicon-c.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"favicon-c-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"favicon-c-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:21:\"favicon-c-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:19:\"favicon-c-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"favicon-c-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"favicon-c-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"favicon-c-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"favicon-c-400x512.png\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:21:\"favicon-c-480x480.png\";s:5:\"width\";i:480;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:{}}}'),(12490,47266,'_wp_attached_file','2021/09/Directory-icon.png'),(12491,47266,'_aioseop_opengraph_settings','a:0:{}'),(12492,47266,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:215;s:6:\"height\";i:215;s:4:\"file\";s:26:\"2021/09/Directory-icon.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Directory-icon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:24:\"Directory-icon-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12493,47267,'_wp_attached_file','2021/09/OG.png'),(12494,47267,'_aioseop_opengraph_settings','a:0:{}'),(12495,47267,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:315;s:4:\"file\";s:14:\"2021/09/OG.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"OG-300x158.png\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"OG-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:14:\"OG-500x263.png\";s:5:\"width\";i:500;s:6:\"height\";i:263;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:12:\"OG-75x39.png\";s:5:\"width\";i:75;s:6:\"height\";i:39;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:14:\"OG-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:14:\"OG-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:14:\"OG-510x315.png\";s:5:\"width\";i:510;s:6:\"height\";i:315;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:14:\"OG-400x315.png\";s:5:\"width\";i:400;s:6:\"height\";i:315;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:14:\"OG-480x252.png\";s:5:\"width\";i:480;s:6:\"height\";i:252;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:{}}}'),(12496,47268,'_wp_attached_file','2021/09/cropped-favicon-c.png'),(12497,47268,'_wp_attachment_context','site-icon'),(12498,47268,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:29:\"2021/09/cropped-favicon-c.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-c-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-c-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-c-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:27:\"cropped-favicon-c-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-c-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-c-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-c-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-c-400x512.png\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-c-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-c-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-c-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-c-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:27:\"cropped-favicon-c-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12504,6,'_et_monarch_override',''),(12511,47289,'_wp_attached_file','2021/09/0_0_0_0_177_236_csupload_64428384.jpg'),(12512,47289,'_aioseop_opengraph_settings','a:0:{}'),(12513,47289,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:177;s:6:\"height\";i:236;s:4:\"file\";s:45:\"2021/09/0_0_0_0_177_236_csupload_64428384.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"0_0_0_0_177_236_csupload_64428384-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:43:\"0_0_0_0_177_236_csupload_64428384-56x75.jpg\";s:5:\"width\";i:56;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(12523,47292,'_menu_item_type','post_type'),(12524,47292,'_menu_item_menu_item_parent','46669'),(12525,47292,'_menu_item_object_id','46191'),(12526,47292,'_menu_item_object','page'),(12527,47292,'_menu_item_target',''),(12528,47292,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12529,47292,'_menu_item_xfn',''),(12530,47292,'_menu_item_url',''),(12532,47293,'_menu_item_type','post_type'),(12533,47293,'_menu_item_menu_item_parent','46668'),(12534,47293,'_menu_item_object_id','46236'),(12535,47293,'_menu_item_object','page'),(12536,47293,'_menu_item_target',''),(12537,47293,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12538,47293,'_menu_item_xfn',''),(12539,47293,'_menu_item_url',''),(12541,47294,'_menu_item_type','post_type'),(12542,47294,'_menu_item_menu_item_parent','47728'),(12543,47294,'_menu_item_object_id','46232'),(12544,47294,'_menu_item_object','page'),(12545,47294,'_menu_item_target',''),(12546,47294,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12547,47294,'_menu_item_xfn',''),(12548,47294,'_menu_item_url',''),(12550,47295,'_menu_item_type','post_type'),(12551,47295,'_menu_item_menu_item_parent','47728'),(12552,47295,'_menu_item_object_id','46235'),(12553,47295,'_menu_item_object','page'),(12554,47295,'_menu_item_target',''),(12555,47295,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12556,47295,'_menu_item_xfn',''),(12557,47295,'_menu_item_url',''),(12559,47296,'_menu_item_type','post_type'),(12560,47296,'_menu_item_menu_item_parent','47728'),(12561,47296,'_menu_item_object_id','46233'),(12562,47296,'_menu_item_object','page'),(12563,47296,'_menu_item_target',''),(12564,47296,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12565,47296,'_menu_item_xfn',''),(12566,47296,'_menu_item_url',''),(12568,47297,'_menu_item_type','post_type'),(12569,47297,'_menu_item_menu_item_parent','47728'),(12570,47297,'_menu_item_object_id','46231'),(12571,47297,'_menu_item_object','page'),(12572,47297,'_menu_item_target',''),(12573,47297,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12574,47297,'_menu_item_xfn',''),(12575,47297,'_menu_item_url',''),(12577,47298,'_menu_item_type','post_type'),(12578,47298,'_menu_item_menu_item_parent','47728'),(12579,47298,'_menu_item_object_id','46234'),(12580,47298,'_menu_item_object','page'),(12581,47298,'_menu_item_target',''),(12582,47298,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12583,47298,'_menu_item_xfn',''),(12584,47298,'_menu_item_url',''),(12586,47299,'_menu_item_type','post_type'),(12587,47299,'_menu_item_menu_item_parent','46669'),(12588,47299,'_menu_item_object_id','46193'),(12589,47299,'_menu_item_object','page'),(12590,47299,'_menu_item_target',''),(12591,47299,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12592,47299,'_menu_item_xfn',''),(12593,47299,'_menu_item_url',''),(12595,45969,'_wp_old_date','2021-08-18'),(12596,45968,'_wp_old_date','2021-08-18'),(12597,46669,'_wp_old_date','2021-08-18'),(12598,47292,'_aioseop_opengraph_settings','a:0:{}'),(12600,47299,'_aioseop_opengraph_settings','a:0:{}'),(12601,46668,'_wp_old_date','2021-08-18'),(12602,47297,'_aioseop_opengraph_settings','a:0:{}'),(12603,47294,'_aioseop_opengraph_settings','a:0:{}'),(12604,47296,'_aioseop_opengraph_settings','a:0:{}'),(12605,47298,'_aioseop_opengraph_settings','a:0:{}'),(12606,47295,'_aioseop_opengraph_settings','a:0:{}'),(12607,47293,'_aioseop_opengraph_settings','a:0:{}'),(12608,46670,'_wp_old_date','2021-08-18'),(12609,45967,'_wp_old_date','2021-08-18'),(12610,45966,'_wp_old_date','2021-08-18'),(12649,47301,'_wp_attached_file','2021/09/AdobeStock_235431862.jpeg'),(12650,47301,'_aioseop_opengraph_settings','a:0:{}'),(12651,47301,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:33:\"2021/09/AdobeStock_235431862.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"AdobeStock_235431862-300x200.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:33:\"AdobeStock_235431862-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:33:\"AdobeStock_235431862-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:33:\"AdobeStock_235431862-700x466.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:466;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:33:\"AdobeStock_235431862-500x333.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:31:\"AdobeStock_235431862-75x50.jpeg\";s:5:\"width\";i:75;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"AdobeStock_235431862-400x250.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"AdobeStock_235431862-400x284.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"AdobeStock_235431862-510x382.jpeg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"AdobeStock_235431862-400x516.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"AdobeStock_235431862-480x320.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(12662,47305,'_menu_item_type','post_type'),(12663,47305,'_menu_item_menu_item_parent','47214'),(12664,47305,'_menu_item_object_id','46193'),(12665,47305,'_menu_item_object','page'),(12666,47305,'_menu_item_target',''),(12667,47305,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12668,47305,'_menu_item_xfn',''),(12669,47305,'_menu_item_url',''),(12680,47307,'_menu_item_type','post_type'),(12681,47307,'_menu_item_menu_item_parent','47214'),(12682,47307,'_menu_item_object_id','46191'),(12683,47307,'_menu_item_object','page'),(12684,47307,'_menu_item_target',''),(12685,47307,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12686,47307,'_menu_item_xfn',''),(12687,47307,'_menu_item_url',''),(12689,47308,'_menu_item_type','post_type'),(12690,47308,'_menu_item_menu_item_parent','47213'),(12691,47308,'_menu_item_object_id','46236'),(12692,47308,'_menu_item_object','page'),(12693,47308,'_menu_item_target',''),(12694,47308,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12695,47308,'_menu_item_xfn',''),(12696,47308,'_menu_item_url',''),(12716,47311,'_menu_item_type','post_type'),(12717,47311,'_menu_item_menu_item_parent','50698'),(12718,47311,'_menu_item_object_id','46233'),(12719,47311,'_menu_item_object','page'),(12720,47311,'_menu_item_target',''),(12721,47311,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12722,47311,'_menu_item_xfn',''),(12723,47311,'_menu_item_url',''),(12725,47312,'_menu_item_type','post_type'),(12726,47312,'_menu_item_menu_item_parent','50698'),(12727,47312,'_menu_item_object_id','46231'),(12728,47312,'_menu_item_object','page'),(12729,47312,'_menu_item_target',''),(12730,47312,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12731,47312,'_menu_item_xfn',''),(12732,47312,'_menu_item_url',''),(12734,47313,'_menu_item_type','post_type'),(12735,47313,'_menu_item_menu_item_parent','50698'),(12736,47313,'_menu_item_object_id','46234'),(12737,47313,'_menu_item_object','page'),(12738,47313,'_menu_item_target',''),(12739,47313,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12740,47313,'_menu_item_xfn',''),(12741,47313,'_menu_item_url',''),(12743,47307,'_aioseop_opengraph_settings','a:0:{}'),(12745,47305,'_aioseop_opengraph_settings','a:0:{}'),(12746,47312,'_aioseop_opengraph_settings','a:0:{}'),(12748,47311,'_aioseop_opengraph_settings','a:0:{}'),(12749,47313,'_aioseop_opengraph_settings','a:0:{}'),(12751,47308,'_aioseop_opengraph_settings','a:0:{}'),(12767,46071,'_wp_old_date','2021-08-11'),(12768,46071,'practice_areas_1_pra_title','Former Family and Housing Attorney for Veterans'),(12769,46071,'_practice_areas_1_pra_title','field_person_meta_pra_title'),(12770,46071,'practice_areas_1_pra_percentage','0'),(12771,46071,'_practice_areas_1_pra_percentage','field_person_meta_pra_percentage'),(12772,46071,'pro_bonos_0_pb_activity','Executive Chair of the Community Veterans Engagement Board of WNY'),(12773,46071,'_pro_bonos_0_pb_activity','field_person_meta_pb_activity'),(12774,46071,'pro_bonos_0_pb_time_period',''),(12775,46071,'_pro_bonos_0_pb_time_period','field_person_meta_pb_time_period'),(12776,46071,'pro_bonos_1_pb_activity','Former Veterans Treatment Court Mentor'),(12777,46071,'_pro_bonos_1_pb_activity','field_person_meta_pb_activity'),(12778,46071,'pro_bonos_1_pb_time_period',''),(12779,46071,'_pro_bonos_1_pb_time_period','field_person_meta_pb_time_period'),(12780,46071,'non_legal_educations_0_nl_school','State University of New York FMCC'),(12781,46071,'_non_legal_educations_0_nl_school','field_person_meta_nl_school'),(12782,46071,'non_legal_educations_0_nl_city',''),(12783,46071,'_non_legal_educations_0_nl_city','field_person_meta_nl_city'),(12784,46071,'non_legal_educations_0_nl_state','New York'),(12785,46071,'_non_legal_educations_0_nl_state','field_person_meta_nl_state'),(12786,46071,'non_legal_educations_0_nl_degree_name',''),(12787,46071,'_non_legal_educations_0_nl_degree_name','field_person_meta_nl_degree_name'),(12788,46071,'non_legal_educations_0_nl_distinction',''),(12789,46071,'_non_legal_educations_0_nl_distinction','field_person_meta_nl_distinction'),(12790,46071,'non_legal_educations_0_nle_school_honors',''),(12791,46071,'_non_legal_educations_0_nle_school_honors','field_person_meta_nle_school_honors'),(12792,46071,'non_legal_educations_0_nle_school_majors',''),(12793,46071,'_non_legal_educations_0_nle_school_majors','field_person_meta_nle_school_majors'),(12794,46071,'non_legal_educations_0_nle_school_minors',''),(12795,46071,'_non_legal_educations_0_nle_school_minors','field_person_meta_nle_school_minors'),(12796,46071,'non_legal_educations_1_nl_school','State University of New York Polytechnic Institute'),(12797,46071,'_non_legal_educations_1_nl_school','field_person_meta_nl_school'),(12798,46071,'non_legal_educations_1_nl_city',''),(12799,46071,'_non_legal_educations_1_nl_city','field_person_meta_nl_city'),(12800,46071,'non_legal_educations_1_nl_state','New York'),(12801,46071,'_non_legal_educations_1_nl_state','field_person_meta_nl_state'),(12802,46071,'non_legal_educations_1_nl_degree_name','B.S., Bachelor of Science'),(12803,46071,'_non_legal_educations_1_nl_degree_name','field_person_meta_nl_degree_name'),(12804,46071,'non_legal_educations_1_nl_distinction',''),(12805,46071,'_non_legal_educations_1_nl_distinction','field_person_meta_nl_distinction'),(12806,46071,'non_legal_educations_1_nle_school_honors',''),(12807,46071,'_non_legal_educations_1_nle_school_honors','field_person_meta_nle_school_honors'),(12808,46071,'non_legal_educations_1_nle_school_majors',''),(12809,46071,'_non_legal_educations_1_nle_school_majors','field_person_meta_nle_school_majors'),(12810,46071,'non_legal_educations_1_nle_school_minors',''),(12811,46071,'_non_legal_educations_1_nle_school_minors','field_person_meta_nle_school_minors'),(12812,46073,'_wp_old_date','2021-08-11'),(12813,46073,'professional_assoc_0_pa_name','ECBA'),(12814,46073,'_professional_assoc_0_pa_name','field_person_meta_pa_name'),(12815,46073,'professional_assoc_0_pa_title',''),(12816,46073,'_professional_assoc_0_pa_title','field_person_meta_pa_title'),(12817,46073,'professional_assoc_0_pa_time_period',''),(12818,46073,'_professional_assoc_0_pa_time_period','field_person_meta_pa_time_period'),(12819,46073,'professional_assoc_1_pa_name','BCA'),(12820,46073,'_professional_assoc_1_pa_name','field_person_meta_pa_name'),(12821,46073,'professional_assoc_1_pa_title',''),(12822,46073,'_professional_assoc_1_pa_title','field_person_meta_pa_title'),(12823,46073,'professional_assoc_1_pa_time_period',''),(12824,46073,'_professional_assoc_1_pa_time_period','field_person_meta_pa_time_period'),(12825,46073,'professional_assoc_2_pa_name','SIANF'),(12826,46073,'_professional_assoc_2_pa_name','field_person_meta_pa_name'),(12827,46073,'professional_assoc_2_pa_title',''),(12828,46073,'_professional_assoc_2_pa_title','field_person_meta_pa_title'),(12829,46073,'professional_assoc_2_pa_time_period',''),(12830,46073,'_professional_assoc_2_pa_time_period','field_person_meta_pa_time_period'),(12831,46073,'professional_assoc_3_pa_name','NYSIA'),(12832,46073,'_professional_assoc_3_pa_name','field_person_meta_pa_name'),(12833,46073,'professional_assoc_3_pa_title',''),(12834,46073,'_professional_assoc_3_pa_title','field_person_meta_pa_title'),(12835,46073,'professional_assoc_3_pa_time_period',''),(12836,46073,'_professional_assoc_3_pa_time_period','field_person_meta_pa_time_period'),(12837,46073,'pro_bonos_0_pb_activity','Chairperson'),(12838,46073,'_pro_bonos_0_pb_activity','field_person_meta_pb_activity'),(12839,46073,'pro_bonos_0_pb_time_period',''),(12840,46073,'_pro_bonos_0_pb_time_period','field_person_meta_pb_time_period'),(12841,46073,'pro_bonos_1_pb_activity','Board of Trustees'),(12842,46073,'_pro_bonos_1_pb_activity','field_person_meta_pb_activity'),(12843,46073,'pro_bonos_1_pb_time_period',''),(12844,46073,'_pro_bonos_1_pb_time_period','field_person_meta_pb_time_period'),(12869,46073,'representative_cases_0_rc_case_title','Yonkosky v. Town of Hamburg'),(12870,46073,'_representative_cases_0_rc_case_title','field_person_meta_rc_case_title'),(12871,46073,'representative_cases_0_rc_citation',''),(12872,46073,'_representative_cases_0_rc_citation','field_person_meta_rc_citation'),(12873,46073,'representative_cases_0_rc_year',''),(12874,46073,'_representative_cases_0_rc_year','field_person_meta_rc_year'),(12875,46073,'representative_cases_0_rc_court',''),(12876,46073,'_representative_cases_0_rc_court','field_person_meta_rc_court'),(12877,46073,'representative_cases_0_rc_serial_number',''),(12878,46073,'_representative_cases_0_rc_serial_number','field_person_meta_rc_serial_number'),(12879,46075,'_wp_old_date','2021-08-11'),(12880,46075,'professional_assoc_0_pa_name','New York Bar Association'),(12881,46075,'_professional_assoc_0_pa_name','field_person_meta_pa_name'),(12882,46075,'professional_assoc_0_pa_title',''),(12883,46075,'_professional_assoc_0_pa_title','field_person_meta_pa_title'),(12884,46075,'professional_assoc_0_pa_time_period',''),(12885,46075,'_professional_assoc_0_pa_time_period','field_person_meta_pa_time_period'),(12886,46075,'professional_assoc_1_pa_name','Erie County Bar Association'),(12887,46075,'_professional_assoc_1_pa_name','field_person_meta_pa_name'),(12888,46075,'professional_assoc_1_pa_title',''),(12889,46075,'_professional_assoc_1_pa_title','field_person_meta_pa_title'),(12890,46075,'professional_assoc_1_pa_time_period',''),(12891,46075,'_professional_assoc_1_pa_time_period','field_person_meta_pa_time_period'),(12892,46075,'professional_assoc_2_pa_name','Buffalo Claims Association'),(12893,46075,'_professional_assoc_2_pa_name','field_person_meta_pa_name'),(12894,46075,'professional_assoc_2_pa_title',''),(12895,46075,'_professional_assoc_2_pa_title','field_person_meta_pa_title'),(12896,46075,'professional_assoc_2_pa_time_period',''),(12897,46075,'_professional_assoc_2_pa_time_period','field_person_meta_pa_time_period'),(12898,46075,'pro_bonos_0_pb_activity','Volunteering at the Soup Kitchen'),(12899,46075,'_pro_bonos_0_pb_activity','field_person_meta_pb_activity'),(12900,46075,'pro_bonos_0_pb_time_period',''),(12901,46075,'_pro_bonos_0_pb_time_period','field_person_meta_pb_time_period'),(12902,46077,'_wp_old_date','2021-08-11'),(12903,46079,'_wp_old_date','2021-08-11'),(12904,46079,'bar_admissions_0_ba_name','New York'),(12905,46079,'_bar_admissions_0_ba_name','field_person_meta_ba_name'),(12906,46079,'bar_admissions_0_ba_year',''),(12907,46079,'_bar_admissions_0_ba_year','field_person_meta_ba_year'),(12908,46079,'bar_admissions_0_ba_code','5842'),(12909,46079,'_bar_admissions_0_ba_code','field_person_meta_ba_code'),(12910,46079,'honors_0_honor_desc','Juris Doctor Cum Laude'),(12911,46079,'_honors_0_honor_desc','field_person_meta_honor_desc'),(12912,46079,'honors_1_honor_desc','Bachelor of Science in Business Administration Summa Cum Laude'),(12913,46079,'_honors_1_honor_desc','field_person_meta_honor_desc'),(12914,46079,'honors_2_honor_desc','Eagle Scout'),(12915,46079,'_honors_2_honor_desc','field_person_meta_honor_desc'),(12916,46079,'pro_bonos_0_pb_activity','Buffalo Niagara River Cleanups'),(12917,46079,'_pro_bonos_0_pb_activity','field_person_meta_pb_activity'),(12918,46079,'pro_bonos_0_pb_time_period',''),(12919,46079,'_pro_bonos_0_pb_time_period','field_person_meta_pb_time_period'),(12920,46079,'pro_bonos_1_pb_activity','Dog-Foster Dad for Queen City Pitties'),(12921,46079,'_pro_bonos_1_pb_activity','field_person_meta_pb_activity'),(12922,46079,'pro_bonos_1_pb_time_period',''),(12923,46079,'_pro_bonos_1_pb_time_period','field_person_meta_pb_time_period'),(12924,47314,'guid','I2EEC5D341DD211B28DA2770082078F3B'),(12925,47314,'wld_id','5243055'),(12926,47314,'first_name','Andrew'),(12927,47314,'_first_name','field_person_meta_first_name'),(12928,47314,'middle_name',''),(12929,47314,'_middle_name','field_person_meta_middle_name'),(12930,47314,'last_name','Gould'),(12931,47314,'_last_name','field_person_meta_last_name'),(12932,47314,'location','a:3:{s:7:\"address\";s:33:\"636 N French Rd, Amherst NY 14228\";s:3:\"lat\";s:10:\"43.0358760\";s:3:\"lng\";s:11:\"-78.8008900\";}'),(12933,47314,'_location','field_person_meta_location'),(12934,47314,'phone','+1-518-708-6570'),(12935,47314,'_phone','field_person_meta_phone'),(12936,47314,'fax','855-443-8623'),(12937,47314,'_fax','field_person_meta_fax'),(12938,47314,'email','agould@madwcdefense.com'),(12939,47314,'_email','field_person_meta_email'),(12940,47314,'practice_areas_0_pra_title','Workers’ Compensation'),(12941,47314,'_practice_areas_0_pra_title','field_person_meta_pra_title'),(12942,47314,'practice_areas_0_pra_percentage','0'),(12943,47314,'_practice_areas_0_pra_percentage','field_person_meta_pra_percentage'),(12944,47314,'practice_areas','1'),(12945,47314,'_practice_areas','field_person_meta_practice_areas'),(12946,47314,'bar_admissions_0_ba_name','New York'),(12947,47314,'_bar_admissions_0_ba_name','field_person_meta_ba_name'),(12948,47314,'bar_admissions_0_ba_year',''),(12949,47314,'_bar_admissions_0_ba_year','field_person_meta_ba_year'),(12950,47314,'bar_admissions_0_ba_code','5842'),(12951,47314,'_bar_admissions_0_ba_code','field_person_meta_ba_code'),(12952,47314,'bar_admissions_1_ba_name','New Jersey'),(12953,47314,'_bar_admissions_1_ba_name','field_person_meta_ba_name'),(12954,47314,'bar_admissions_1_ba_year',''),(12955,47314,'_bar_admissions_1_ba_year','field_person_meta_ba_year'),(12956,47314,'bar_admissions_1_ba_code','5834'),(12957,47314,'_bar_admissions_1_ba_code','field_person_meta_ba_code'),(12958,47314,'bar_admissions_2_ba_name','Pennsylvania'),(12959,47314,'_bar_admissions_2_ba_name','field_person_meta_ba_name'),(12960,47314,'bar_admissions_2_ba_year',''),(12961,47314,'_bar_admissions_2_ba_year','field_person_meta_ba_year'),(12962,47314,'bar_admissions_2_ba_code','5971'),(12963,47314,'_bar_admissions_2_ba_code','field_person_meta_ba_code'),(12964,47314,'bar_admissions_3_ba_name','United States Court of Appeals for the Third Circuit'),(12965,47314,'_bar_admissions_3_ba_name','field_person_meta_ba_name'),(12966,47314,'bar_admissions_3_ba_year',''),(12967,47314,'_bar_admissions_3_ba_year','field_person_meta_ba_year'),(12968,47314,'bar_admissions_3_ba_code','9313'),(12969,47314,'_bar_admissions_3_ba_code','field_person_meta_ba_code'),(12970,47314,'bar_admissions_4_ba_name','U.S. District Court District of New Jersey'),(12971,47314,'_bar_admissions_4_ba_name','field_person_meta_ba_name'),(12972,47314,'bar_admissions_4_ba_year',''),(12973,47314,'_bar_admissions_4_ba_year','field_person_meta_ba_year'),(12974,47314,'bar_admissions_4_ba_code','3170'),(12975,47314,'_bar_admissions_4_ba_code','field_person_meta_ba_code'),(12976,47314,'bar_admissions_5_ba_name','U.S. District Court Eastern District of Pennsylvania'),(12977,47314,'_bar_admissions_5_ba_name','field_person_meta_ba_name'),(12978,47314,'bar_admissions_5_ba_year',''),(12979,47314,'_bar_admissions_5_ba_year','field_person_meta_ba_year'),(12980,47314,'bar_admissions_5_ba_code','3936'),(12981,47314,'_bar_admissions_5_ba_code','field_person_meta_ba_code'),(12982,47314,'bar_admissions_6_ba_name','U.S. District Court Middle District of Pennsylvania'),(12983,47314,'_bar_admissions_6_ba_name','field_person_meta_ba_name'),(12984,47314,'bar_admissions_6_ba_year',''),(12985,47314,'_bar_admissions_6_ba_year','field_person_meta_ba_year'),(12986,47314,'bar_admissions_6_ba_code','4890'),(12987,47314,'_bar_admissions_6_ba_code','field_person_meta_ba_code'),(12988,47314,'bar_admissions','7'),(12989,47314,'_bar_admissions','field_person_meta_bar_admissions'),(12990,47314,'professional_assoc_0_pa_name','Pennsylvania Bar Association'),(12991,47314,'_professional_assoc_0_pa_name','field_person_meta_pa_name'),(12992,47314,'professional_assoc_0_pa_title',''),(12993,47314,'_professional_assoc_0_pa_title','field_person_meta_pa_title'),(12994,47314,'professional_assoc_0_pa_time_period',''),(12995,47314,'_professional_assoc_0_pa_time_period','field_person_meta_pa_time_period'),(12996,47314,'professional_assoc_1_pa_name','New Jersey Bar Association'),(12997,47314,'_professional_assoc_1_pa_name','field_person_meta_pa_name'),(12998,47314,'professional_assoc_1_pa_title',''),(12999,47314,'_professional_assoc_1_pa_title','field_person_meta_pa_title'),(13000,47314,'professional_assoc_1_pa_time_period',''),(13001,47314,'_professional_assoc_1_pa_time_period','field_person_meta_pa_time_period'),(13002,47314,'professional_assoc_2_pa_name','New York Bar Association'),(13003,47314,'_professional_assoc_2_pa_name','field_person_meta_pa_name'),(13004,47314,'professional_assoc_2_pa_title',''),(13005,47314,'_professional_assoc_2_pa_title','field_person_meta_pa_title'),(13006,47314,'professional_assoc_2_pa_time_period',''),(13007,47314,'_professional_assoc_2_pa_time_period','field_person_meta_pa_time_period'),(13008,47314,'professional_assoc','3'),(13009,47314,'_professional_assoc','field_person_meta_professional_assoc'),(13010,47314,'classes_seminars',''),(13011,47314,'_classes_seminars','field_person_meta_classes_seminars'),(13012,47314,'honors_0_honor_desc','Rising Stars Workers\' Compensation Attorneys in Pennsylvania'),(13013,47314,'_honors_0_honor_desc','field_person_meta_honor_desc'),(13014,47314,'honors','1'),(13015,47314,'_honors','field_person_meta_honors'),(13016,47314,'published_works',''),(13017,47314,'_published_works','field_person_meta_published_works'),(13018,47314,'bio',''),(13019,47314,'_bio','field_person_meta_bio'),(13020,47314,'past_positions',''),(13021,47314,'_past_positions','field_person_meta_past_positions'),(13022,47314,'pro_bonos_0_pb_activity','St. Bonaventure Alumni SHARE'),(13023,47314,'_pro_bonos_0_pb_activity','field_person_meta_pb_activity'),(13024,47314,'pro_bonos_0_pb_time_period',''),(13025,47314,'_pro_bonos_0_pb_time_period','field_person_meta_pb_time_period'),(13026,47314,'pro_bonos','1'),(13027,47314,'_pro_bonos','field_person_meta_pro_bonos'),(13028,47314,'languages',''),(13029,47314,'_languages','field_person_meta_languages'),(13030,47314,'fraternity_sororities',''),(13031,47314,'_fraternity_sororities','field_person_meta_fraternity_sororities'),(13032,47314,'representative_cases',''),(13033,47314,'_representative_cases','field_person_meta_representative_cases'),(13034,47314,'specialties',''),(13035,47314,'_specialties','field_person_meta_specialties'),(13036,47314,'references',''),(13037,47314,'_references','field_person_meta_references'),(13038,47314,'ancillary_businesses',''),(13039,47314,'_ancillary_businesses','field_person_meta_ancillary_businesses'),(13040,47314,'legal_educations',''),(13041,47314,'_legal_educations','field_person_meta_legal_educations'),(13042,47314,'non_legal_educations_0_nl_school','St. Bonaventure'),(13043,47314,'_non_legal_educations_0_nl_school','field_person_meta_nl_school'),(13044,47314,'non_legal_educations_0_nl_city',''),(13045,47314,'_non_legal_educations_0_nl_city','field_person_meta_nl_city'),(13046,47314,'non_legal_educations_0_nl_state',''),(13047,47314,'_non_legal_educations_0_nl_state','field_person_meta_nl_state'),(13048,47314,'non_legal_educations_0_nl_grad_date','2008'),(13049,47314,'_non_legal_educations_0_nl_grad_date','field_person_meta_nl_grad_date'),(13050,47314,'non_legal_educations_0_nl_degree_name','B.A.'),(13051,47314,'_non_legal_educations_0_nl_degree_name','field_person_meta_nl_degree_name'),(13052,47314,'non_legal_educations_0_nl_distinction',''),(13053,47314,'_non_legal_educations_0_nl_distinction','field_person_meta_nl_distinction'),(13054,47314,'non_legal_educations_0_nle_school_honors',''),(13055,47314,'_non_legal_educations_0_nle_school_honors','field_person_meta_nle_school_honors'),(13056,47314,'non_legal_educations_0_nle_school_majors',''),(13057,47314,'_non_legal_educations_0_nle_school_majors','field_person_meta_nle_school_majors'),(13058,47314,'non_legal_educations_0_nle_school_minors',''),(13059,47314,'_non_legal_educations_0_nle_school_minors','field_person_meta_nle_school_minors'),(13060,47314,'non_legal_educations_1_nl_school','Western Michigan University Thomas M. Cooley Law School'),(13061,47314,'_non_legal_educations_1_nl_school','field_person_meta_nl_school'),(13062,47314,'non_legal_educations_1_nl_city',''),(13063,47314,'_non_legal_educations_1_nl_city','field_person_meta_nl_city'),(13064,47314,'non_legal_educations_1_nl_state',''),(13065,47314,'_non_legal_educations_1_nl_state','field_person_meta_nl_state'),(13066,47314,'non_legal_educations_1_nl_grad_date','2011'),(13067,47314,'_non_legal_educations_1_nl_grad_date','field_person_meta_nl_grad_date'),(13068,47314,'non_legal_educations_1_nl_degree_name','J.D.'),(13069,47314,'_non_legal_educations_1_nl_degree_name','field_person_meta_nl_degree_name'),(13070,47314,'non_legal_educations_1_nl_distinction',''),(13071,47314,'_non_legal_educations_1_nl_distinction','field_person_meta_nl_distinction'),(13072,47314,'non_legal_educations_1_nle_school_honors',''),(13073,47314,'_non_legal_educations_1_nle_school_honors','field_person_meta_nle_school_honors'),(13074,47314,'non_legal_educations_1_nle_school_majors',''),(13075,47314,'_non_legal_educations_1_nle_school_majors','field_person_meta_nle_school_majors'),(13076,47314,'non_legal_educations_1_nle_school_minors',''),(13077,47314,'_non_legal_educations_1_nle_school_minors','field_person_meta_nle_school_minors'),(13078,47314,'non_legal_educations','2'),(13079,47314,'_non_legal_educations','field_person_meta_non_legal_educations'),(13080,47314,'representative_clients',''),(13081,47314,'_representative_clients','field_person_meta_representative_clients'),(13082,47314,'current_positions_0_cp_title','Associate Attorney'),(13083,47314,'_current_positions_0_cp_title','field_person_meta_cp_title'),(13084,47314,'current_positions','1'),(13085,47314,'_current_positions','field_person_meta_current_positions'),(13086,46081,'_wp_old_date','2021-08-11'),(13102,46085,'_wp_old_date','2021-08-11'),(13103,46085,'bar_admissions_0_ba_name','New York'),(13104,46085,'_bar_admissions_0_ba_name','field_person_meta_ba_name'),(13105,46085,'bar_admissions_0_ba_year',''),(13106,46085,'_bar_admissions_0_ba_year','field_person_meta_ba_year'),(13107,46085,'bar_admissions_0_ba_code','5842'),(13108,46085,'_bar_admissions_0_ba_code','field_person_meta_ba_code'),(13109,46085,'professional_assoc_0_pa_name','Bar Association of Erie County'),(13110,46085,'_professional_assoc_0_pa_name','field_person_meta_pa_name'),(13111,46085,'professional_assoc_0_pa_title',''),(13112,46085,'_professional_assoc_0_pa_title','field_person_meta_pa_title'),(13113,46085,'professional_assoc_0_pa_time_period',''),(13114,46085,'_professional_assoc_0_pa_time_period','field_person_meta_pa_time_period'),(13144,46089,'_wp_old_date','2021-08-11'),(13145,46089,'professional_assoc_0_pa_name','Buffalo Claims Associate'),(13146,46089,'_professional_assoc_0_pa_name','field_person_meta_pa_name'),(13147,46089,'professional_assoc_0_pa_title',''),(13148,46089,'_professional_assoc_0_pa_title','field_person_meta_pa_title'),(13149,46089,'professional_assoc_0_pa_time_period',''),(13150,46089,'_professional_assoc_0_pa_time_period','field_person_meta_pa_time_period'),(13151,46089,'professional_assoc_1_pa_name','New York State Academy of Trial Lawyers'),(13152,46089,'_professional_assoc_1_pa_name','field_person_meta_pa_name'),(13153,46089,'professional_assoc_1_pa_title',''),(13154,46089,'_professional_assoc_1_pa_title','field_person_meta_pa_title'),(13155,46089,'professional_assoc_1_pa_time_period',''),(13156,46089,'_professional_assoc_1_pa_time_period','field_person_meta_pa_time_period'),(13157,46089,'classes_seminars_0_cs_desc','The Art of the Expert Deposition'),(13158,46089,'_classes_seminars_0_cs_desc','field_person_meta_cs_desc'),(13159,46089,'classes_seminars_0_cs_sponsor',''),(13160,46089,'_classes_seminars_0_cs_sponsor','field_person_meta_cs_sponsor'),(13161,46089,'classes_seminars_0_cs_time',''),(13162,46089,'_classes_seminars_0_cs_time','field_person_meta_cs_time'),(13163,46089,'classes_seminars_1_cs_desc','Special Funds Continuing Legal Education course'),(13164,46089,'_classes_seminars_1_cs_desc','field_person_meta_cs_desc'),(13165,46089,'classes_seminars_1_cs_sponsor',''),(13166,46089,'_classes_seminars_1_cs_sponsor','field_person_meta_cs_sponsor'),(13167,46089,'classes_seminars_1_cs_time',''),(13168,46089,'_classes_seminars_1_cs_time','field_person_meta_cs_time'),(13169,46089,'honors_0_honor_desc','Big East Championship'),(13170,46089,'_honors_0_honor_desc','field_person_meta_honor_desc'),(13171,46089,'honors_1_honor_desc','Big East Academic All-Star'),(13172,46089,'_honors_1_honor_desc','field_person_meta_honor_desc'),(13173,46089,'honors_2_honor_desc','Partial Athletic Scholarship at the University of Notre Dame'),(13174,46089,'_honors_2_honor_desc','field_person_meta_honor_desc'),(13175,46089,'honors_3_honor_desc','Undergraduate Fulbright Award '),(13176,46089,'_honors_3_honor_desc','field_person_meta_honor_desc'),(13177,46089,'honors_4_honor_desc','Albany Law School Journal of Science and Technology'),(13178,46089,'_honors_4_honor_desc','field_person_meta_honor_desc'),(13179,46089,'pro_bonos_0_pb_activity','Was coaching my daughter’s travel softball team as the baserunning/fielding coach, but the 12u girls have far outpaced my ability and I know when I am outmatched'),(13180,46089,'_pro_bonos_0_pb_activity','field_person_meta_pb_activity'),(13181,46089,'pro_bonos_0_pb_time_period','2019 to 2021'),(13182,46089,'_pro_bonos_0_pb_time_period','field_person_meta_pb_time_period'),(13183,46089,'pro_bonos_1_pb_activity','Domestic Violence/Pro Se Divorce clinic at LawNY'),(13184,46089,'_pro_bonos_1_pb_activity','field_person_meta_pb_activity'),(13185,46089,'pro_bonos_1_pb_time_period','2014 to 2017'),(13186,46089,'_pro_bonos_1_pb_time_period','field_person_meta_pb_time_period'),(13187,46089,'pro_bonos_2_pb_activity','Girl Scout troop leader'),(13188,46089,'_pro_bonos_2_pb_activity','field_person_meta_pb_activity'),(13189,46089,'pro_bonos_2_pb_time_period','2014 to 2018'),(13190,46089,'_pro_bonos_2_pb_time_period','field_person_meta_pb_time_period'),(13191,46089,'pro_bonos_3_pb_activity','Girl Scout Volunteer and Mentor'),(13192,46089,'_pro_bonos_3_pb_activity','field_person_meta_pb_activity'),(13193,46089,'pro_bonos_3_pb_time_period','2018 to Present'),(13194,46089,'_pro_bonos_3_pb_time_period','field_person_meta_pb_time_period'),(13195,46089,'pro_bonos_4_pb_activity','Teach for America Teacher in Marvell Arkansas'),(13196,46089,'_pro_bonos_4_pb_activity','field_person_meta_pb_activity'),(13197,46089,'pro_bonos_4_pb_time_period','2006 to 2008'),(13198,46089,'_pro_bonos_4_pb_time_period','field_person_meta_pb_time_period'),(13199,46089,'pro_bonos_5_pb_activity','English Teacher in Vladmir Russian in orphanage and prison'),(13200,46089,'_pro_bonos_5_pb_activity','field_person_meta_pb_activity'),(13201,46089,'pro_bonos_5_pb_time_period','2004'),(13202,46089,'_pro_bonos_5_pb_time_period','field_person_meta_pb_time_period'),(13203,46089,'pro_bonos_6_pb_activity','Triage Cancer Center Volunteer'),(13204,46089,'_pro_bonos_6_pb_activity','field_person_meta_pb_activity'),(13205,46089,'pro_bonos_6_pb_time_period','2021'),(13206,46089,'_pro_bonos_6_pb_time_period','field_person_meta_pb_time_period'),(13225,46091,'_wp_old_date','2021-08-11'),(13226,46091,'practice_areas_1_pra_title','Insurance Defense '),(13227,46091,'_practice_areas_1_pra_title','field_person_meta_pra_title'),(13228,46091,'practice_areas_1_pra_percentage','0'),(13229,46091,'_practice_areas_1_pra_percentage','field_person_meta_pra_percentage'),(13230,46091,'practice_areas_2_pra_title','Family Law'),(13231,46091,'_practice_areas_2_pra_title','field_person_meta_pra_title'),(13232,46091,'practice_areas_2_pra_percentage','0'),(13233,46091,'_practice_areas_2_pra_percentage','field_person_meta_pra_percentage'),(13234,46091,'professional_assoc_0_pa_name','New York State Workers’ Compensation Forum'),(13235,46091,'_professional_assoc_0_pa_name','field_person_meta_pa_name'),(13236,46091,'professional_assoc_0_pa_title',''),(13237,46091,'_professional_assoc_0_pa_title','field_person_meta_pa_title'),(13238,46091,'professional_assoc_0_pa_time_period',''),(13239,46091,'_professional_assoc_0_pa_time_period','field_person_meta_pa_time_period'),(13240,46091,'honors_0_honor_desc','Federal district court summer clerkship'),(13241,46091,'_honors_0_honor_desc','field_person_meta_honor_desc'),(13242,46091,'honors_1_honor_desc','Rugby Referee'),(13243,46091,'_honors_1_honor_desc','field_person_meta_honor_desc'),(13244,46091,'honors_2_honor_desc','Married an Orthopedic Surgeon'),(13245,46091,'_honors_2_honor_desc','field_person_meta_honor_desc'),(13246,46091,'published_works_0_pw_title','Changes: The New Post-Classification Standard and Extreme Hardship'),(13247,46091,'_published_works_0_pw_title','field_person_meta_pw_title'),(13248,46091,'published_works_0_pw_citation_or_publisher',''),(13249,46091,'_published_works_0_pw_citation_or_publisher','field_person_meta_pw_citation_or_publisher'),(13250,46091,'published_works_0_pw_issue',''),(13251,46091,'_published_works_0_pw_issue','field_person_meta_pw_issue'),(13252,46091,'published_works_0_pw_year',''),(13253,46091,'_published_works_0_pw_year','field_person_meta_pw_year'),(13254,46091,'published_works_1_pw_title','Extreme Hardship or Just the Regular Kind'),(13255,46091,'_published_works_1_pw_title','field_person_meta_pw_title'),(13256,46091,'published_works_1_pw_citation_or_publisher',''),(13257,46091,'_published_works_1_pw_citation_or_publisher','field_person_meta_pw_citation_or_publisher'),(13258,46091,'published_works_1_pw_issue',''),(13259,46091,'_published_works_1_pw_issue','field_person_meta_pw_issue'),(13260,46091,'published_works_1_pw_year',''),(13261,46091,'_published_works_1_pw_year','field_person_meta_pw_year'),(13262,46091,'published_works_2_pw_title','Permanency: A Perspective on New York’s Guidelines'),(13263,46091,'_published_works_2_pw_title','field_person_meta_pw_title'),(13264,46091,'published_works_2_pw_citation_or_publisher',''),(13265,46091,'_published_works_2_pw_citation_or_publisher','field_person_meta_pw_citation_or_publisher'),(13266,46091,'published_works_2_pw_issue',''),(13267,46091,'_published_works_2_pw_issue','field_person_meta_pw_issue'),(13268,46091,'published_works_2_pw_year',''),(13269,46091,'_published_works_2_pw_year','field_person_meta_pw_year'),(13270,46091,'published_works_3_pw_title','Special Considerations: the MVPs of the 2017 Schedule Loss of Use Guidelines'),(13271,46091,'_published_works_3_pw_title','field_person_meta_pw_title'),(13272,46091,'published_works_3_pw_citation_or_publisher',''),(13273,46091,'_published_works_3_pw_citation_or_publisher','field_person_meta_pw_citation_or_publisher'),(13274,46091,'published_works_3_pw_issue',''),(13275,46091,'_published_works_3_pw_issue','field_person_meta_pw_issue'),(13276,46091,'published_works_3_pw_year',''),(13277,46091,'_published_works_3_pw_year','field_person_meta_pw_year'),(13278,46091,'published_works_4_pw_title','Sun Tzu and the art of Workers’ Compensation: A Crash Course on Litigation, Wait… Consequential What?: A Medical Approach to Consequential Injuries.'),(13279,46091,'_published_works_4_pw_title','field_person_meta_pw_title'),(13280,46091,'published_works_4_pw_citation_or_publisher',''),(13281,46091,'_published_works_4_pw_citation_or_publisher','field_person_meta_pw_citation_or_publisher'),(13282,46091,'published_works_4_pw_issue',''),(13283,46091,'_published_works_4_pw_issue','field_person_meta_pw_issue'),(13284,46091,'published_works_4_pw_year',''),(13285,46091,'_published_works_4_pw_year','field_person_meta_pw_year'),(13286,46091,'pro_bonos_0_pb_activity','None, unless not freaking out on people slowly getting off an airplane counts'),(13287,46091,'_pro_bonos_0_pb_activity','field_person_meta_pb_activity'),(13288,46091,'pro_bonos_0_pb_time_period',''),(13289,46091,'_pro_bonos_0_pb_time_period','field_person_meta_pb_time_period'),(13290,46091,'_et_monarch_override',''),(13291,46071,'non_legal_educations_0_nl_grad_date',''),(13292,46071,'_non_legal_educations_0_nl_grad_date','field_person_meta_nl_grad_date'),(13293,46071,'non_legal_educations_1_nl_grad_date',''),(13294,46071,'_non_legal_educations_1_nl_grad_date','field_person_meta_nl_grad_date'),(13295,46071,'_et_monarch_override',''),(13296,47314,'_edit_lock','1645123953:308'),(13297,47314,'_edit_last','308'),(13298,47314,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"profile\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(13299,47314,'current_positions_0_cp_time_period',''),(13300,47314,'_current_positions_0_cp_time_period','field_person_meta_cp_time_period'),(13301,47314,'du-meta-custom-footer','default'),(13302,47314,'_et_monarch_override',''),(13303,47314,'_et_pb_post_hide_nav','default'),(13304,47314,'_et_pb_page_layout','et_right_sidebar'),(13305,47314,'_et_pb_side_nav','off'),(13306,47314,'_et_pb_use_builder','on'),(13307,47314,'_et_pb_first_image',''),(13308,47314,'_et_pb_truncate_post',''),(13309,47314,'_et_pb_truncate_post_date',''),(13310,47314,'_et_pb_old_content',''),(13312,47314,'_et_pb_built_for_post_type','page'),(13313,47314,'_et_pb_ab_subjects',''),(13314,47314,'_et_pb_enable_shortcode_tracking',''),(13315,47314,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"47314\" /]'),(13316,47314,'_et_pb_custom_css',''),(13317,47314,'_et_pb_gutter_width','1'),(13319,47314,'_et_builder_version','VB|Divi|4.3.2'),(13320,47314,'_et_pb_show_page_creation','off'),(13322,46073,'_et_monarch_override',''),(13325,46081,'_et_monarch_override',''),(13335,46075,'_et_monarch_override',''),(13336,46085,'_et_monarch_override',''),(13337,46089,'_et_monarch_override',''),(13339,46079,'_et_monarch_override',''),(13340,47336,'_wp_attached_file','2021/09/MULTI-114764-1-ap3.jpg'),(13341,47336,'_aioseop_opengraph_settings','a:0:{}'),(13342,47336,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:575;s:6:\"height\";i:794;s:4:\"file\";s:30:\"2021/09/MULTI-114764-1-ap3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-507x700.jpg\";s:5:\"width\";i:507;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-362x500.jpg\";s:5:\"width\";i:362;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-575x630.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"MULTI-114764-1-ap3-54x75.jpg\";s:5:\"width\";i:54;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-575x675.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-480x663.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:663;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(13343,47337,'_wp_attached_file','2021/09/CUSTOM-975884-1.jpg'),(13344,47337,'_aioseop_opengraph_settings','a:0:{}'),(13345,47337,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:413;s:4:\"file\";s:27:\"2021/09/CUSTOM-975884-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"CUSTOM-975884-1-218x300.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"CUSTOM-975884-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:25:\"CUSTOM-975884-1-54x75.jpg\";s:5:\"width\";i:54;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"CUSTOM-975884-1-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"CUSTOM-975884-1-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"CUSTOM-975884-1-300x382.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(13346,47338,'_wp_attached_file','2021/09/MWBE-Logo-300x141-1.png'),(13347,47338,'_aioseop_opengraph_settings','a:0:{}'),(13348,47338,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:141;s:4:\"file\";s:31:\"2021/09/MWBE-Logo-300x141-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"MWBE-Logo-300x141-1-150x141.png\";s:5:\"width\";i:150;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:29:\"MWBE-Logo-300x141-1-75x35.png\";s:5:\"width\";i:75;s:6:\"height\";i:35;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:{}}}'),(13424,45925,'_et_monarch_override',''),(13431,47214,'_wp_old_date','2021-09-13'),(13432,47307,'_wp_old_date','2021-09-13'),(13434,47305,'_wp_old_date','2021-09-13'),(13435,47213,'_wp_old_date','2021-09-13'),(13436,47312,'_wp_old_date','2021-09-13'),(13438,47311,'_wp_old_date','2021-09-13'),(13439,47313,'_wp_old_date','2021-09-13'),(13441,47308,'_wp_old_date','2021-09-13'),(13442,47215,'_wp_old_date','2021-09-13'),(13443,45969,'_wp_old_date','2021-09-13'),(13444,45968,'_wp_old_date','2021-09-13'),(13445,46669,'_wp_old_date','2021-09-13'),(13446,47292,'_wp_old_date','2021-09-13'),(13448,47299,'_wp_old_date','2021-09-13'),(13449,46668,'_wp_old_date','2021-09-13'),(13450,47297,'_wp_old_date','2021-09-13'),(13451,47294,'_wp_old_date','2021-09-13'),(13452,47296,'_wp_old_date','2021-09-13'),(13453,47298,'_wp_old_date','2021-09-13'),(13454,47295,'_wp_old_date','2021-09-13'),(13455,47293,'_wp_old_date','2021-09-13'),(13456,46670,'_wp_old_date','2021-09-13'),(13457,45967,'_wp_old_date','2021-09-13'),(13458,45966,'_wp_old_date','2021-09-13'),(13579,46222,'_et_monarch_override',''),(13693,47395,'_wp_attached_file','2021/09/AdobeStock_209705558.jpeg'),(13694,47395,'_aioseop_opengraph_settings','a:0:{}'),(13695,47395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:33:\"2021/09/AdobeStock_209705558.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"AdobeStock_209705558-300x200.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:33:\"AdobeStock_209705558-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:33:\"AdobeStock_209705558-768x513.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:33:\"AdobeStock_209705558-700x467.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:33:\"AdobeStock_209705558-500x334.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:31:\"AdobeStock_209705558-75x50.jpeg\";s:5:\"width\";i:75;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"AdobeStock_209705558-400x250.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"AdobeStock_209705558-400x284.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"AdobeStock_209705558-510x382.jpeg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"AdobeStock_209705558-400x516.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"AdobeStock_209705558-480x320.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(13696,47397,'_wp_attached_file','2021/09/AdobeStock_209705558-mobile.jpg'),(13697,47397,'_aioseop_opengraph_settings','a:0:{}'),(13698,47397,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:39:\"2021/09/AdobeStock_209705558-mobile.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"AdobeStock_209705558-mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:37:\"AdobeStock_209705558-mobile-75x50.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(13708,47119,'_et_pb_excluded_global_options','[]'),(13744,46189,'_et_monarch_override',''),(13757,46191,'_et_monarch_override',''),(13810,46191,'_et_pb_built_for_post_type','page'),(13811,46191,'_et_pb_ab_subjects',''),(13812,46191,'_et_pb_enable_shortcode_tracking',''),(13813,46191,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46191\" /]'),(13814,46191,'_et_pb_custom_css',''),(13815,46191,'_et_pb_gutter_width','1'),(13817,46191,'_et_builder_version','VB|Divi|4.18.0'),(13818,46191,'_et_pb_show_page_creation','off'),(14100,46426,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-08 20:32:03\";}'),(14101,46426,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-08 20:32:03\";}'),(14102,46426,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-08 20:32:03\";}'),(14229,46222,'_et_pb_built_for_post_type','page'),(14230,46222,'_et_pb_ab_subjects',''),(14231,46222,'_et_pb_enable_shortcode_tracking',''),(14232,46222,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46222\" /]'),(14233,46222,'_et_pb_custom_css',''),(14234,46222,'_et_pb_gutter_width','1'),(14236,46222,'_et_builder_version','VB|Divi|4.3.2'),(14237,46222,'_et_pb_show_page_creation','off'),(14313,46077,'_et_monarch_override',''),(14318,45926,'_et_monarch_override',''),(14369,47508,'_wp_attached_file','2021/09/AdobeStock_427849380.jpeg'),(14370,47508,'_aioseop_opengraph_settings','a:0:{}'),(14371,47508,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1334;s:4:\"file\";s:33:\"2021/09/AdobeStock_427849380.jpeg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"AdobeStock_427849380-300x200.jpeg\";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:34:\"AdobeStock_427849380-1024x683.jpeg\";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:33:\"AdobeStock_427849380-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:33:\"AdobeStock_427849380-768x512.jpeg\";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:35:\"AdobeStock_427849380-1536x1025.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:35:\"AdobeStock_427849380-1600x1067.jpeg\";s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:34:\"AdobeStock_427849380-1600x900.jpeg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:33:\"AdobeStock_427849380-700x467.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:34:\"AdobeStock_427849380-1152x768.jpeg\";s:5:\"width\";i:1152;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:34:\"AdobeStock_427849380-1000x667.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:33:\"AdobeStock_427849380-500x334.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:34:\"AdobeStock_427849380-1200x630.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:31:\"AdobeStock_427849380-75x50.jpeg\";s:5:\"width\";i:75;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"AdobeStock_427849380-400x250.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"AdobeStock_427849380-1080x675.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"AdobeStock_427849380-400x284.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"AdobeStock_427849380-510x382.jpeg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"AdobeStock_427849380-1080x720.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"AdobeStock_427849380-400x516.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:34:\"AdobeStock_427849380-1280x854.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:33:\"AdobeStock_427849380-980x654.jpeg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"AdobeStock_427849380-480x320.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(14390,47513,'_wp_attached_file','2021/09/logo_new.png'),(14391,47513,'_aioseop_opengraph_settings','a:0:{}'),(14392,47513,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:529;s:4:\"file\";s:20:\"2021/09/logo_new.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"logo_new-300x155.png\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"logo_new-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:20:\"logo_new-768x397.png\";s:5:\"width\";i:768;s:6:\"height\";i:397;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:20:\"logo_new-700x362.png\";s:5:\"width\";i:700;s:6:\"height\";i:362;s:9:\"mime-type\";s:9:\"image/png\";}s:3:\"bio\";a:4:{s:4:\"file\";s:21:\"logo_new-1000x517.png\";s:5:\"width\";i:1000;s:6:\"height\";i:517;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:20:\"logo_new-500x258.png\";s:5:\"width\";i:500;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:18:\"logo_new-75x39.png\";s:5:\"width\";i:75;s:6:\"height\";i:39;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"logo_new-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"logo_new-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"logo_new-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"logo_new-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:20:\"logo_new-980x506.png\";s:5:\"width\";i:980;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:20:\"logo_new-480x248.png\";s:5:\"width\";i:480;s:6:\"height\";i:248;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:{}}}'),(14393,47516,'_menu_item_type','post_type'),(14394,47516,'_menu_item_menu_item_parent','47213'),(14395,47516,'_menu_item_object_id','45926'),(14396,47516,'_menu_item_object','page'),(14397,47516,'_menu_item_target',''),(14398,47516,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14399,47516,'_menu_item_xfn',''),(14400,47516,'_menu_item_url',''),(14411,47214,'_wp_old_date','2021-09-15'),(14412,47307,'_wp_old_date','2021-09-15'),(14414,47305,'_wp_old_date','2021-09-15'),(14415,47213,'_wp_old_date','2021-09-15'),(14417,47312,'_wp_old_date','2021-09-15'),(14419,47311,'_wp_old_date','2021-09-15'),(14420,47313,'_wp_old_date','2021-09-15'),(14422,47308,'_wp_old_date','2021-09-15'),(14423,47516,'_aioseop_opengraph_settings','a:0:{}'),(14424,47215,'_wp_old_date','2021-09-15'),(14425,47518,'_menu_item_type','custom'),(14426,47518,'_menu_item_menu_item_parent','0'),(14427,47518,'_menu_item_object_id','47518'),(14428,47518,'_menu_item_object','custom'),(14429,47518,'_menu_item_target',''),(14430,47518,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14431,47518,'_menu_item_xfn',''),(14432,47518,'_menu_item_url','/webinars/'),(14434,47518,'_aioseop_opengraph_settings','a:0:{}'),(14843,47542,'_wp_attached_file','2021/10/Melissa_Ann_Day_pp.jpg'),(14844,47542,'_aioseop_opengraph_settings','a:0:{}'),(14845,47542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2021/10/Melissa_Ann_Day_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Melissa_Ann_Day_pp-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:30:\"Melissa_Ann_Day_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"Melissa_Ann_Day_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Melissa_Ann_Day_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Melissa_Ann_Day_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(14855,47545,'_wp_attached_file','2021/10/James_Cousins_pp.jpg'),(14856,47545,'_aioseop_opengraph_settings','a:0:{}'),(14857,47545,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:28:\"2021/10/James_Cousins_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"James_Cousins_pp-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:28:\"James_Cousins_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:26:\"James_Cousins_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"James_Cousins_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"James_Cousins_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(14867,47548,'_wp_attached_file','2021/10/Katrina_Gray_pp.jpg'),(14868,47548,'_aioseop_opengraph_settings','a:0:{}'),(14869,47548,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2021/10/Katrina_Gray_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Katrina_Gray_pp-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:\"Katrina_Gray_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:25:\"Katrina_Gray_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Katrina_Gray_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Katrina_Gray_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(14879,47551,'_wp_attached_file','2021/10/Paul_Kornacki_pp.jpg'),(14880,47551,'_aioseop_opengraph_settings','a:0:{}'),(14881,47551,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:28:\"2021/10/Paul_Kornacki_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Paul_Kornacki_pp-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:28:\"Paul_Kornacki_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:26:\"Paul_Kornacki_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Paul_Kornacki_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Paul_Kornacki_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(14891,47554,'_wp_attached_file','2021/10/Teresa_Cleary_pp.jpg'),(14892,47554,'_aioseop_opengraph_settings','a:0:{}'),(14893,47554,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:28:\"2021/10/Teresa_Cleary_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Teresa_Cleary_pp-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:28:\"Teresa_Cleary_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:26:\"Teresa_Cleary_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Teresa_Cleary_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Teresa_Cleary_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(14917,47562,'_wp_attached_file','2021/09/Cassie_Christman_pp.jpg'),(14918,47562,'_aioseop_opengraph_settings','a:0:{}'),(14919,47562,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:31:\"2021/09/Cassie_Christman_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Cassie_Christman_pp-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:31:\"Cassie_Christman_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:29:\"Cassie_Christman_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Cassie_Christman_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Cassie_Christman_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(14964,47567,'_wp_attached_file','2021/10/Brendan_Shannon_pp.jpg'),(14965,47567,'_aioseop_opengraph_settings','a:0:{}'),(14966,47567,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2021/10/Brendan_Shannon_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Brendan_Shannon_pp-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:30:\"Brendan_Shannon_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"Brendan_Shannon_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Brendan_Shannon_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Brendan_Shannon_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(14976,47570,'_wp_attached_file','2021/09/Andrew_Gould_pp.jpg'),(14977,47570,'_aioseop_opengraph_settings','a:0:{}'),(14978,47570,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2021/09/Andrew_Gould_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Andrew_Gould_pp-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:\"Andrew_Gould_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:25:\"Andrew_Gould_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Andrew_Gould_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Andrew_Gould_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(14979,47314,'_thumbnail_id','47863'),(14980,47572,'_wp_attached_file','2021/10/Thomas_Dickinson_pp.jpg'),(14981,47572,'_aioseop_opengraph_settings','a:0:{}'),(14982,47572,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:31:\"2021/10/Thomas_Dickinson_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Thomas_Dickinson_pp-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:31:\"Thomas_Dickinson_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:29:\"Thomas_Dickinson_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Thomas_Dickinson_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Thomas_Dickinson_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(14992,47575,'_wp_attached_file','2021/10/Elena_Camp_pp.jpg'),(14993,47575,'_aioseop_opengraph_settings','a:0:{}'),(14994,47575,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:25:\"2021/10/Elena_Camp_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Elena_Camp_pp-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:25:\"Elena_Camp_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"Elena_Camp_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"Elena_Camp_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"Elena_Camp_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(14995,47577,'_wp_attached_file','2021/10/Rebecca_Brashear_pp.jpg'),(14996,47577,'_aioseop_opengraph_settings','a:0:{}'),(14997,47577,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:31:\"2021/10/Rebecca_Brashear_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Rebecca_Brashear_pp-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:31:\"Rebecca_Brashear_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:29:\"Rebecca_Brashear_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Rebecca_Brashear_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Rebecca_Brashear_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(14998,47578,'_wp_attached_file','2021/10/Jillian_Chavers_pp.jpg'),(14999,47578,'_aioseop_opengraph_settings','a:0:{}'),(15000,47578,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2021/10/Jillian_Chavers_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Jillian_Chavers_pp-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:30:\"Jillian_Chavers_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"Jillian_Chavers_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Jillian_Chavers_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Jillian_Chavers_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(15001,47579,'_wp_attached_file','2021/10/Susan_Eick_pp.jpg'),(15002,47579,'_aioseop_opengraph_settings','a:0:{}'),(15003,47579,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:25:\"2021/10/Susan_Eick_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Susan_Eick_pp-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:25:\"Susan_Eick_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"Susan_Eick_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"Susan_Eick_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"Susan_Eick_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(15016,47583,'_wp_attached_file','2021/10/Hannah_Kim_pp.jpg'),(15017,47583,'_aioseop_opengraph_settings','a:0:{}'),(15018,47583,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:25:\"2021/10/Hannah_Kim_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Hannah_Kim_pp-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:25:\"Hannah_Kim_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"Hannah_Kim_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"Hannah_Kim_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"Hannah_Kim_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(15019,47584,'_wp_attached_file','2021/10/Jenny_Malkowski_pp.jpg'),(15020,47584,'_aioseop_opengraph_settings','a:0:{}'),(15021,47584,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2021/10/Jenny_Malkowski_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Jenny_Malkowski_pp-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:30:\"Jenny_Malkowski_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"Jenny_Malkowski_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Jenny_Malkowski_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Jenny_Malkowski_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(15022,47585,'_wp_attached_file','2021/10/Jody_Guiher_pp.jpg'),(15023,47585,'_aioseop_opengraph_settings','a:0:{}'),(15024,47585,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:26:\"2021/10/Jody_Guiher_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Jody_Guiher_pp-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:26:\"Jody_Guiher_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:24:\"Jody_Guiher_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"Jody_Guiher_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"Jody_Guiher_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(15025,47586,'_wp_attached_file','2021/10/Danielle_Draschan_pp.jpg'),(15026,47586,'_aioseop_opengraph_settings','a:0:{}'),(15027,47586,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:32:\"2021/10/Danielle_Draschan_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Danielle_Draschan_pp-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:32:\"Danielle_Draschan_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:30:\"Danielle_Draschan_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Danielle_Draschan_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Danielle_Draschan_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(15028,47587,'_wp_attached_file','2021/10/Kristen_Degnan_pp.jpg'),(15029,47587,'_aioseop_opengraph_settings','a:0:{}'),(15030,47587,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:29:\"2021/10/Kristen_Degnan_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Kristen_Degnan_pp-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:29:\"Kristen_Degnan_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:27:\"Kristen_Degnan_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"Kristen_Degnan_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"Kristen_Degnan_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(15037,47590,'_wp_attached_file','2021/10/Shannon_Mackey_pp.jpg'),(15038,47590,'_aioseop_opengraph_settings','a:0:{}'),(15039,47590,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:29:\"2021/10/Shannon_Mackey_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Shannon_Mackey_pp-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:29:\"Shannon_Mackey_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:27:\"Shannon_Mackey_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"Shannon_Mackey_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"Shannon_Mackey_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(15040,47591,'_wp_attached_file','2021/10/Jessica_Stevens_pp.jpg'),(15041,47591,'_aioseop_opengraph_settings','a:0:{}'),(15042,47591,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2021/10/Jessica_Stevens_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Jessica_Stevens_pp-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:30:\"Jessica_Stevens_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"Jessica_Stevens_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Jessica_Stevens_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Jessica_Stevens_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(15043,47592,'_wp_attached_file','2021/10/Melanie_Daly-1_pp.jpg'),(15044,47592,'_aioseop_opengraph_settings','a:0:{}'),(15045,47592,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:29:\"2021/10/Melanie_Daly-1_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Melanie_Daly-1_pp-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:29:\"Melanie_Daly-1_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:27:\"Melanie_Daly-1_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"Melanie_Daly-1_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"Melanie_Daly-1_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(15046,47593,'_wp_attached_file','2021/10/Neil_Deigelman-1_pp.jpg'),(15047,47593,'_aioseop_opengraph_settings','a:0:{}'),(15048,47593,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:31:\"2021/10/Neil_Deigelman-1_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Neil_Deigelman-1_pp-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:31:\"Neil_Deigelman-1_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:29:\"Neil_Deigelman-1_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Neil_Deigelman-1_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Neil_Deigelman-1_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(15049,47594,'_wp_attached_file','2021/10/Mary_Fran_Schnorr-1_pp.jpg'),(15050,47594,'_aioseop_opengraph_settings','a:0:{}'),(15051,47594,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:34:\"2021/10/Mary_Fran_Schnorr-1_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Mary_Fran_Schnorr-1_pp-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:34:\"Mary_Fran_Schnorr-1_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"Mary_Fran_Schnorr-1_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"Mary_Fran_Schnorr-1_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"Mary_Fran_Schnorr-1_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(15052,47596,'_wp_attached_file','2021/10/Alexis_Hatten-1_pp.jpg'),(15053,47596,'_aioseop_opengraph_settings','a:0:{}'),(15054,47596,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2021/10/Alexis_Hatten-1_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Alexis_Hatten-1_pp-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:30:\"Alexis_Hatten-1_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"Alexis_Hatten-1_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Alexis_Hatten-1_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Alexis_Hatten-1_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(15055,47597,'_wp_attached_file','2021/10/Vicki_L_Buehler-1_pp.jpg'),(15056,47597,'_aioseop_opengraph_settings','a:0:{}'),(15057,47597,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:32:\"2021/10/Vicki_L_Buehler-1_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Vicki_L_Buehler-1_pp-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:32:\"Vicki_L_Buehler-1_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:30:\"Vicki_L_Buehler-1_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Vicki_L_Buehler-1_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Vicki_L_Buehler-1_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(15058,47598,'_wp_attached_file','2021/10/Daniel_Flynn-1_pp.jpg'),(15059,47598,'_aioseop_opengraph_settings','a:0:{}'),(15060,47598,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:29:\"2021/10/Daniel_Flynn-1_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Daniel_Flynn-1_pp-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:29:\"Daniel_Flynn-1_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:27:\"Daniel_Flynn-1_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"Daniel_Flynn-1_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"Daniel_Flynn-1_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(15061,47599,'_wp_attached_file','2021/10/Brian_Prince-1_pp.jpg'),(15062,47599,'_aioseop_opengraph_settings','a:0:{}'),(15063,47599,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:29:\"2021/10/Brian_Prince-1_pp.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Brian_Prince-1_pp-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:29:\"Brian_Prince-1_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:27:\"Brian_Prince-1_pp-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"Brian_Prince-1_pp-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"Brian_Prince-1_pp-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(15080,46101,'_et_monarch_override',''),(15086,46129,'_et_monarch_override',''),(15104,46132,'_et_monarch_override',''),(15110,46119,'_et_monarch_override',''),(15116,46121,'_et_monarch_override',''),(15122,46125,'_et_monarch_override',''),(15152,46171,'_et_monarch_override',''),(15170,46179,'_et_monarch_override',''),(15353,47667,'_et_pb_use_builder','on'),(15354,47667,'_et_pb_show_page_creation','off'),(15355,47667,'_et_pb_built_for_post_type','page'),(15356,47667,'_et_pb_enable_shortcode_tracking',''),(15357,47667,'_et_pb_custom_css',''),(15358,47667,'_et_pb_gutter_width','1'),(15359,47667,'_et_pb_first_image',''),(15360,47667,'_et_pb_truncate_post',''),(15361,47667,'_et_pb_truncate_post_date',''),(15362,47667,'_et_builder_version','VB|Divi|4.18.0'),(15512,47667,'_et_pb_ab_subjects',''),(15513,47667,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"47667\" /]'),(15514,47667,'_thumbnail_id','0'),(15523,45925,'_et_pb_gutter_width','1'),(15571,47691,'_et_autogenerated_title','0'),(15572,47691,'_et_default','0'),(15573,47691,'_et_enabled','1'),(15574,47691,'_et_header_layout_id','46014'),(15575,47691,'_et_header_layout_enabled','1'),(15576,47691,'_et_body_layout_id','47667'),(15577,47691,'_et_body_layout_enabled','1'),(15578,47691,'_et_footer_layout_id','46015'),(15579,47691,'_et_footer_layout_enabled','1'),(15597,47694,'_wp_attached_file','2021/10/Melissa-Day-Law-Headshots1.jpg'),(15598,47694,'_aioseop_opengraph_settings','a:0:{}'),(15599,47694,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:38:\"2021/10/Melissa-Day-Law-Headshots1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Melissa-Day-Law-Headshots1-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:38:\"Melissa-Day-Law-Headshots1-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:38:\"Melissa-Day-Law-Headshots1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:38:\"Melissa-Day-Law-Headshots1-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:38:\"Melissa-Day-Law-Headshots1-500x334.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:39:\"Melissa-Day-Law-Headshots1-1000x630.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:36:\"Melissa-Day-Law-Headshots1-75x50.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"Melissa-Day-Law-Headshots1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"Melissa-Day-Law-Headshots1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"Melissa-Day-Law-Headshots1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"Melissa-Day-Law-Headshots1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:38:\"Melissa-Day-Law-Headshots1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:38:\"Melissa-Day-Law-Headshots1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(15600,47697,'_et_pb_use_builder','on'),(15601,47697,'_et_pb_show_page_creation','off'),(15602,47697,'_et_pb_built_for_post_type','page'),(15603,47697,'_et_pb_enable_shortcode_tracking',''),(15604,47697,'_et_pb_custom_css',''),(15605,47697,'_et_pb_gutter_width','1'),(15606,47697,'_et_pb_first_image',''),(15607,47697,'_et_pb_truncate_post',''),(15608,47697,'_et_pb_truncate_post_date',''),(15609,47697,'_et_builder_version','VB|Divi|4.18.0'),(15769,47712,'_wp_attached_file','2021/10/Melissa-Day-Law-Headshots-2.jpg'),(15770,47712,'_aioseop_opengraph_settings','a:0:{}'),(15771,47712,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:39:\"2021/10/Melissa-Day-Law-Headshots-2.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Melissa-Day-Law-Headshots-2-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:39:\"Melissa-Day-Law-Headshots-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"Melissa-Day-Law-Headshots-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:39:\"Melissa-Day-Law-Headshots-2-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:39:\"Melissa-Day-Law-Headshots-2-500x334.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:40:\"Melissa-Day-Law-Headshots-2-1000x630.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:37:\"Melissa-Day-Law-Headshots-2-75x50.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"Melissa-Day-Law-Headshots-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"Melissa-Day-Law-Headshots-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"Melissa-Day-Law-Headshots-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"Melissa-Day-Law-Headshots-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:39:\"Melissa-Day-Law-Headshots-2-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"Melissa-Day-Law-Headshots-2-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(15772,47697,'_et_pb_ab_subjects',''),(15773,47697,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"47697\" /]'),(15774,47697,'_thumbnail_id','0'),(15814,47715,'_et_autogenerated_title','0'),(15815,47715,'_et_default','0'),(15816,47715,'_et_enabled','1'),(15817,47715,'_et_header_layout_id','46014'),(15818,47715,'_et_header_layout_enabled','1'),(15819,47715,'_et_body_layout_id','47697'),(15820,47715,'_et_body_layout_enabled','1'),(15821,47715,'_et_footer_layout_id','46015'),(15822,47715,'_et_footer_layout_enabled','1'),(15868,47728,'_menu_item_type','custom'),(15869,47728,'_menu_item_menu_item_parent','46668'),(15870,47728,'_menu_item_object_id','47728'),(15871,47728,'_menu_item_object','custom'),(15872,47728,'_menu_item_target',''),(15873,47728,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(15874,47728,'_menu_item_xfn',''),(15875,47728,'_menu_item_url','#'),(15877,45969,'_wp_old_date','2021-09-15'),(15878,45968,'_wp_old_date','2021-09-15'),(15879,46669,'_wp_old_date','2021-09-15'),(15880,47292,'_wp_old_date','2021-09-15'),(15882,47299,'_wp_old_date','2021-09-15'),(15883,46668,'_wp_old_date','2021-09-15'),(15884,47728,'_aioseop_opengraph_settings','a:0:{}'),(15885,47297,'_wp_old_date','2021-09-15'),(15886,47294,'_wp_old_date','2021-09-15'),(15887,47296,'_wp_old_date','2021-09-15'),(15888,47298,'_wp_old_date','2021-09-15'),(15889,47295,'_wp_old_date','2021-09-15'),(15890,47293,'_wp_old_date','2021-09-15'),(15891,46670,'_wp_old_date','2021-09-15'),(15892,45967,'_wp_old_date','2021-09-15'),(15893,45966,'_wp_old_date','2021-09-15'),(15894,47729,'_wp_attached_file','2021/10/logo_new-1.png'),(15895,47729,'_aioseop_opengraph_settings','a:0:{}'),(15896,47729,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:529;s:4:\"file\";s:22:\"2021/10/logo_new-1.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"logo_new-1-300x155.png\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"logo_new-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"logo_new-1-768x397.png\";s:5:\"width\";i:768;s:6:\"height\";i:397;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:22:\"logo_new-1-700x362.png\";s:5:\"width\";i:700;s:6:\"height\";i:362;s:9:\"mime-type\";s:9:\"image/png\";}s:3:\"bio\";a:4:{s:4:\"file\";s:23:\"logo_new-1-1000x517.png\";s:5:\"width\";i:1000;s:6:\"height\";i:517;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:22:\"logo_new-1-500x258.png\";s:5:\"width\";i:500;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"logo_new-1-75x39.png\";s:5:\"width\";i:75;s:6:\"height\";i:39;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"logo_new-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"logo_new-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"logo_new-1-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"logo_new-1-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:22:\"logo_new-1-980x506.png\";s:5:\"width\";i:980;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:22:\"logo_new-1-480x248.png\";s:5:\"width\";i:480;s:6:\"height\";i:248;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:{}}}'),(15907,46193,'_et_monarch_override',''),(15917,45969,'_wp_old_date','2021-10-11'),(15918,45968,'_wp_old_date','2021-10-11'),(15919,46669,'_wp_old_date','2021-10-11'),(15920,47292,'_wp_old_date','2021-10-11'),(15922,47299,'_wp_old_date','2021-10-11'),(15923,46668,'_wp_old_date','2021-10-11'),(15924,47728,'_wp_old_date','2021-10-11'),(15925,47297,'_wp_old_date','2021-10-11'),(15926,47294,'_wp_old_date','2021-10-11'),(15927,47296,'_wp_old_date','2021-10-11'),(15928,47298,'_wp_old_date','2021-10-11'),(15929,47295,'_wp_old_date','2021-10-11'),(15930,45967,'_wp_old_date','2021-10-11'),(15931,47293,'_wp_old_date','2021-10-11'),(15932,46670,'_wp_old_date','2021-10-11'),(15933,45966,'_wp_old_date','2021-10-11'),(16337,46331,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-17 21:08:38\";}'),(16338,46331,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-17 21:08:41\";}'),(16339,46331,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-17 21:08:39\";}'),(17196,47835,'_wp_attached_file','2021/10/logo.png'),(17197,47835,'_aioseop_opengraph_settings','a:0:{}'),(17198,47835,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3730;s:6:\"height\";i:2049;s:4:\"file\";s:16:\"2021/10/logo.png\";s:5:\"sizes\";a:24:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"logo-300x165.png\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"logo-1024x563.png\";s:5:\"width\";i:1024;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"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:16:\"logo-768x422.png\";s:5:\"width\";i:768;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"logo-1536x844.png\";s:5:\"width\";i:1536;s:6:\"height\";i:844;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"logo-2048x1125.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1125;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:17:\"logo-1600x879.png\";s:5:\"width\";i:1600;s:6:\"height\";i:879;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:17:\"logo-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:16:\"logo-700x385.png\";s:5:\"width\";i:700;s:6:\"height\";i:385;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:17:\"logo-1152x633.png\";s:5:\"width\";i:1152;s:6:\"height\";i:633;s:9:\"mime-type\";s:9:\"image/png\";}s:3:\"bio\";a:4:{s:4:\"file\";s:17:\"logo-1000x549.png\";s:5:\"width\";i:1000;s:6:\"height\";i:549;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:16:\"logo-500x275.png\";s:5:\"width\";i:500;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:17:\"logo-1200x630.png\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:14:\"logo-75x41.png\";s:5:\"width\";i:75;s:6:\"height\";i:41;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:16:\"logo-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:17:\"logo-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:16:\"logo-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:16:\"logo-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:17:\"logo-1080x593.png\";s:5:\"width\";i:1080;s:6:\"height\";i:593;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:16:\"logo-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:18:\"logo-2880x1800.png\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:17:\"logo-1280x703.png\";s:5:\"width\";i:1280;s:6:\"height\";i:703;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:16:\"logo-980x538.png\";s:5:\"width\";i:980;s:6:\"height\";i:538;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:16:\"logo-480x264.png\";s:5:\"width\";i:480;s:6:\"height\";i:264;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:{}}}'),(17199,47836,'_wp_attached_file','2021/10/logo_white.png'),(17200,47836,'_aioseop_opengraph_settings','a:0:{}'),(17201,47836,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3730;s:6:\"height\";i:2049;s:4:\"file\";s:22:\"2021/10/logo_white.png\";s:5:\"sizes\";a:24:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"logo_white-300x165.png\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"logo_white-1024x563.png\";s:5:\"width\";i:1024;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"logo_white-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:22:\"logo_white-768x422.png\";s:5:\"width\";i:768;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"logo_white-1536x844.png\";s:5:\"width\";i:1536;s:6:\"height\";i:844;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:24:\"logo_white-2048x1125.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1125;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:23:\"logo_white-1600x879.png\";s:5:\"width\";i:1600;s:6:\"height\";i:879;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:23:\"logo_white-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:22:\"logo_white-700x385.png\";s:5:\"width\";i:700;s:6:\"height\";i:385;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:23:\"logo_white-1152x633.png\";s:5:\"width\";i:1152;s:6:\"height\";i:633;s:9:\"mime-type\";s:9:\"image/png\";}s:3:\"bio\";a:4:{s:4:\"file\";s:23:\"logo_white-1000x549.png\";s:5:\"width\";i:1000;s:6:\"height\";i:549;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:22:\"logo_white-500x275.png\";s:5:\"width\";i:500;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:23:\"logo_white-1200x630.png\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"logo_white-75x41.png\";s:5:\"width\";i:75;s:6:\"height\";i:41;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"logo_white-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"logo_white-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"logo_white-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"logo_white-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:23:\"logo_white-1080x593.png\";s:5:\"width\";i:1080;s:6:\"height\";i:593;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"logo_white-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:24:\"logo_white-2880x1800.png\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:23:\"logo_white-1280x703.png\";s:5:\"width\";i:1280;s:6:\"height\";i:703;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:22:\"logo_white-980x538.png\";s:5:\"width\";i:980;s:6:\"height\";i:538;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:22:\"logo_white-480x264.png\";s:5:\"width\";i:480;s:6:\"height\";i:264;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:{}}}'),(17284,47838,'_wp_attached_file','2021/10/OgImage_New.png'),(17285,47838,'_aioseop_opengraph_settings','a:0:{}'),(17286,47838,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:315;s:4:\"file\";s:23:\"2021/10/OgImage_New.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"OgImage_New-300x158.png\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"OgImage_New-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:23:\"OgImage_New-500x263.png\";s:5:\"width\";i:500;s:6:\"height\";i:263;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:21:\"OgImage_New-75x39.png\";s:5:\"width\";i:75;s:6:\"height\";i:39;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"OgImage_New-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"OgImage_New-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"OgImage_New-510x315.png\";s:5:\"width\";i:510;s:6:\"height\";i:315;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"OgImage_New-400x315.png\";s:5:\"width\";i:400;s:6:\"height\";i:315;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:23:\"OgImage_New-480x252.png\";s:5:\"width\";i:480;s:6:\"height\";i:252;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:{}}}'),(17507,47854,'_menu_item_type','custom'),(17508,47854,'_menu_item_menu_item_parent','47728'),(17509,47854,'_menu_item_object_id','47854'),(17510,47854,'_menu_item_object','custom'),(17511,47854,'_menu_item_target',''),(17512,47854,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(17513,47854,'_menu_item_xfn',''),(17514,47854,'_menu_item_url','/webinars/'),(17516,45969,'_wp_old_date','2021-10-18'),(17517,45968,'_wp_old_date','2021-10-18'),(17518,46669,'_wp_old_date','2021-10-18'),(17519,47292,'_wp_old_date','2021-10-18'),(17521,47299,'_wp_old_date','2021-10-18'),(17522,46668,'_wp_old_date','2021-10-18'),(17523,47728,'_wp_old_date','2021-10-18'),(17524,47297,'_wp_old_date','2021-10-18'),(17525,47294,'_wp_old_date','2021-10-18'),(17526,47296,'_wp_old_date','2021-10-18'),(17527,47298,'_wp_old_date','2021-10-18'),(17528,47295,'_wp_old_date','2021-10-18'),(17529,45967,'_wp_old_date','2021-10-18'),(17530,47293,'_wp_old_date','2021-10-18'),(17531,46670,'_wp_old_date','2021-10-18'),(17532,47854,'_aioseop_opengraph_settings','a:0:{}'),(17533,45966,'_wp_old_date','2021-10-18'),(17535,47855,'_wp_attached_file','2021/10/buehler_vicki_l.jpg'),(17536,47855,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:215;s:4:\"file\";s:27:\"2021/10/buehler_vicki_l.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"buehler_vicki_l-143x150.jpg\";s:5:\"width\";i:143;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:25:\"buehler_vicki_l-50x75.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(17537,47855,'_source_url','https://thelomad.com/getmad.today/wp-contentimages.findlawresources.com/env_prod/type_wpsite/nodefault/firmwld_5239763/attywld_4923916/pid_1/buehler_vicki_l.jpg'),(17538,46071,'_wp_old_date','2021-09-14'),(17539,47856,'_wp_attached_file','2021/10/christman_cassandra_e.jpg'),(17540,47856,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:215;s:6:\"height\";i:177;s:4:\"file\";s:33:\"2021/10/christman_cassandra_e.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"christman_cassandra_e-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:31:\"christman_cassandra_e-75x62.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:62;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(17541,47856,'_source_url','https://thelomad.com/getmad.today/wp-contentimages.findlawresources.com/env_prod/type_wpsite/nodefault/firmwld_5239763/attywld_5240708/pid_1/christman_cassandra_e.jpg'),(17542,46073,'_wp_old_date','2021-09-14'),(17543,47857,'_wp_attached_file','2021/10/cousins_james_b.jpg'),(17544,47857,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:215;s:4:\"file\";s:27:\"2021/10/cousins_james_b.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cousins_james_b-143x150.jpg\";s:5:\"width\";i:143;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:25:\"cousins_james_b-50x75.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(17545,47857,'_source_url','https://thelomad.com/getmad.today/wp-contentimages.findlawresources.com/env_prod/type_wpsite/nodefault/firmwld_5239763/attywld_5240754/pid_1/cousins_james_b.jpg'),(17546,46075,'_wp_old_date','2021-09-14'),(17547,47858,'_wp_attached_file','2021/10/daly_melanie_a.jpg'),(17548,47858,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:215;s:4:\"file\";s:26:\"2021/10/daly_melanie_a.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"daly_melanie_a-143x150.jpg\";s:5:\"width\";i:143;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:24:\"daly_melanie_a-50x75.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(17549,47858,'_source_url','https://thelomad.com/getmad.today/wp-contentimages.findlawresources.com/env_prod/type_wpsite/nodefault/firmwld_5239763/attywld_5240707/pid_1/daly_melanie_a.jpg'),(17550,46077,'_wp_old_date','2021-09-14'),(17551,47859,'_wp_attached_file','2021/10/day_melissa_a.jpg'),(17552,47859,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:215;s:4:\"file\";s:25:\"2021/10/day_melissa_a.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"day_melissa_a-143x150.jpg\";s:5:\"width\";i:143;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"day_melissa_a-50x75.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(17553,47859,'_source_url','https://thelomad.com/getmad.today/wp-contentimages.findlawresources.com/env_prod/type_wpsite/nodefault/firmwld_5239763/attywld_1561903/pid_1/day_melissa_a.jpg'),(17554,46079,'_wp_old_date','2021-09-14'),(17555,47860,'_wp_attached_file','2021/10/diegelman_neil_a.jpg'),(17556,47860,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:215;s:4:\"file\";s:28:\"2021/10/diegelman_neil_a.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"diegelman_neil_a-143x150.jpg\";s:5:\"width\";i:143;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:26:\"diegelman_neil_a-50x75.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(17557,47860,'_source_url','https://thelomad.com/getmad.today/wp-contentimages.findlawresources.com/env_prod/type_wpsite/nodefault/firmwld_5239763/attywld_5240673/pid_1/diegelman_neil_a.jpg'),(17558,47861,'guid','I25FB91901DD211B2A9D2DC00D2035C9E'),(17559,47861,'wld_id','5244393'),(17560,47861,'first_name','Mary'),(17561,47861,'_first_name','field_person_meta_first_name'),(17562,47861,'middle_name',''),(17563,47861,'_middle_name','field_person_meta_middle_name'),(17564,47861,'last_name','Frances'),(17565,47861,'_last_name','field_person_meta_last_name'),(17566,47861,'location','a:3:{s:7:\"address\";s:33:\"636 N French Rd, Amherst NY 14228\";s:3:\"lat\";s:10:\"43.0358760\";s:3:\"lng\";s:11:\"-78.8008900\";}'),(17567,47861,'_location','field_person_meta_location'),(17568,47861,'phone','+1-716-247-6567'),(17569,47861,'_phone','field_person_meta_phone'),(17570,47861,'fax','855-443-8623'),(17571,47861,'_fax','field_person_meta_fax'),(17572,47861,'email','mschnorr@madwcdefense.com'),(17573,47861,'_email','field_person_meta_email'),(17574,47861,'practice_areas_0_pra_title','Workers’ Compensation'),(17575,47861,'_practice_areas_0_pra_title','field_person_meta_pra_title'),(17576,47861,'practice_areas_0_pra_percentage','0'),(17577,47861,'_practice_areas_0_pra_percentage','field_person_meta_pra_percentage'),(17578,47861,'practice_areas','1'),(17579,47861,'_practice_areas','field_person_meta_practice_areas'),(17580,47861,'bar_admissions_0_ba_name','New York'),(17581,47861,'_bar_admissions_0_ba_name','field_person_meta_ba_name'),(17582,47861,'bar_admissions_0_ba_year','1985'),(17583,47861,'_bar_admissions_0_ba_year','field_person_meta_ba_year'),(17584,47861,'bar_admissions_0_ba_code','5842'),(17585,47861,'_bar_admissions_0_ba_code','field_person_meta_ba_code'),(17586,47861,'bar_admissions','1'),(17587,47861,'_bar_admissions','field_person_meta_bar_admissions'),(17588,47861,'professional_assoc',''),(17589,47861,'_professional_assoc','field_person_meta_professional_assoc'),(17590,47861,'classes_seminars',''),(17591,47861,'_classes_seminars','field_person_meta_classes_seminars'),(17592,47861,'honors',''),(17593,47861,'_honors','field_person_meta_honors'),(17594,47861,'published_works_0_pw_title','Taught a few seminars in the past on various WC topics – Section 29, ANCR and fraud'),(17595,47861,'_published_works_0_pw_title','field_person_meta_pw_title'),(17596,47861,'published_works_0_pw_citation_or_publisher',''),(17597,47861,'_published_works_0_pw_citation_or_publisher','field_person_meta_pw_citation_or_publisher'),(17598,47861,'published_works_0_pw_issue',''),(17599,47861,'_published_works_0_pw_issue','field_person_meta_pw_issue'),(17600,47861,'published_works_0_pw_year',''),(17601,47861,'_published_works_0_pw_year','field_person_meta_pw_year'),(17602,47861,'published_works','1'),(17603,47861,'_published_works','field_person_meta_published_works'),(17604,47861,'bio',''),(17605,47861,'_bio','field_person_meta_bio'),(17606,47861,'past_positions',''),(17607,47861,'_past_positions','field_person_meta_past_positions'),(17608,47861,'pro_bonos',''),(17609,47861,'_pro_bonos','field_person_meta_pro_bonos'),(17610,47861,'languages',''),(17611,47861,'_languages','field_person_meta_languages'),(17612,47861,'fraternity_sororities',''),(17613,47861,'_fraternity_sororities','field_person_meta_fraternity_sororities'),(17614,47861,'representative_cases',''),(17615,47861,'_representative_cases','field_person_meta_representative_cases'),(17616,47861,'specialties',''),(17617,47861,'_specialties','field_person_meta_specialties'),(17618,47861,'references',''),(17619,47861,'_references','field_person_meta_references'),(17620,47861,'ancillary_businesses',''),(17621,47861,'_ancillary_businesses','field_person_meta_ancillary_businesses'),(17622,47861,'legal_educations_0_le_school','Brooklyn Law School'),(17623,47861,'_legal_educations_0_le_school','field_person_meta_le_school'),(17624,47861,'legal_educations_0_le_city','Brooklyn'),(17625,47861,'_legal_educations_0_le_city','field_person_meta_le_city'),(17626,47861,'legal_educations_0_le_state','New York'),(17627,47861,'_legal_educations_0_le_state','field_person_meta_le_state'),(17628,47861,'legal_educations_0_le_grad_date','1984'),(17629,47861,'_legal_educations_0_le_grad_date','field_person_meta_le_grad_date'),(17630,47861,'legal_educations_0_le_degree_name','J.D.'),(17631,47861,'_legal_educations_0_le_degree_name','field_person_meta_le_degree_name'),(17632,47861,'legal_educations_0_le_distinction',''),(17633,47861,'_legal_educations_0_le_distinction','field_person_meta_le_distinction'),(17634,47861,'legal_educations_0_le_school_honors',''),(17635,47861,'_legal_educations_0_le_school_honors','field_person_meta_le_school_honors'),(17636,47861,'legal_educations_0_le_school_majors',''),(17637,47861,'_legal_educations_0_le_school_majors','field_person_meta_le_school_majors'),(17638,47861,'legal_educations_0_le_school_minors',''),(17639,47861,'_legal_educations_0_le_school_minors','field_person_meta_le_school_minors'),(17640,47861,'legal_educations','1'),(17641,47861,'_legal_educations','field_person_meta_legal_educations'),(17642,47861,'non_legal_educations_0_nl_school','College of New Rochelle - BA 1979'),(17643,47861,'_non_legal_educations_0_nl_school','field_person_meta_nl_school'),(17644,47861,'non_legal_educations_0_nl_city',''),(17645,47861,'_non_legal_educations_0_nl_city','field_person_meta_nl_city'),(17646,47861,'non_legal_educations_0_nl_state',''),(17647,47861,'_non_legal_educations_0_nl_state','field_person_meta_nl_state'),(17648,47861,'non_legal_educations_0_nl_degree_name',''),(17649,47861,'_non_legal_educations_0_nl_degree_name','field_person_meta_nl_degree_name'),(17650,47861,'non_legal_educations_0_nl_distinction',''),(17651,47861,'_non_legal_educations_0_nl_distinction','field_person_meta_nl_distinction'),(17652,47861,'non_legal_educations_0_nle_school_honors',''),(17653,47861,'_non_legal_educations_0_nle_school_honors','field_person_meta_nle_school_honors'),(17654,47861,'non_legal_educations_0_nle_school_majors',''),(17655,47861,'_non_legal_educations_0_nle_school_majors','field_person_meta_nle_school_majors'),(17656,47861,'non_legal_educations_0_nle_school_minors',''),(17657,47861,'_non_legal_educations_0_nle_school_minors','field_person_meta_nle_school_minors'),(17658,47861,'non_legal_educations','1'),(17659,47861,'_non_legal_educations','field_person_meta_non_legal_educations'),(17660,47861,'representative_clients',''),(17661,47861,'_representative_clients','field_person_meta_representative_clients'),(17662,47861,'current_positions_0_cp_title','Of Counsel'),(17663,47861,'_current_positions_0_cp_title','field_person_meta_cp_title'),(17664,47861,'current_positions','1'),(17665,47861,'_current_positions','field_person_meta_current_positions'),(17666,47862,'_wp_attached_file','2021/10/frances_mary.jpg'),(17667,47862,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:215;s:4:\"file\";s:24:\"2021/10/frances_mary.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"frances_mary-143x150.jpg\";s:5:\"width\";i:143;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:22:\"frances_mary-50x75.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(17668,47862,'_source_url','https://thelomad.com/getmad.today/wp-contentimages.findlawresources.com/env_prod/type_wpsite/nodefault/firmwld_5239763/attywld_5244393/pid_1/frances_mary.jpg'),(17669,47861,'_thumbnail_id','47862'),(17670,47314,'_wp_old_date','2021-09-14'),(17671,47863,'_wp_attached_file','2021/10/gould_andrew.jpg'),(17672,47863,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:215;s:4:\"file\";s:24:\"2021/10/gould_andrew.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"gould_andrew-143x150.jpg\";s:5:\"width\";i:143;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:22:\"gould_andrew-50x75.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(17673,47863,'_source_url','https://thelomad.com/getmad.today/wp-contentimages.findlawresources.com/env_prod/type_wpsite/nodefault/firmwld_5239763/attywld_5243055/pid_1/gould_andrew.jpg'),(17674,46081,'_wp_old_date','2021-09-14'),(17675,47864,'_wp_attached_file','2021/10/gray_katrina.jpg'),(17676,47864,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:215;s:4:\"file\";s:24:\"2021/10/gray_katrina.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"gray_katrina-143x150.jpg\";s:5:\"width\";i:143;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:22:\"gray_katrina-50x75.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(17677,47864,'_source_url','https://thelomad.com/getmad.today/wp-contentimages.findlawresources.com/env_prod/type_wpsite/nodefault/firmwld_5239763/attywld_5240808/pid_1/gray_katrina.jpg'),(17679,47865,'_wp_attached_file','2021/10/hatten_alexis_d.jpg'),(17680,47865,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:215;s:4:\"file\";s:27:\"2021/10/hatten_alexis_d.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"hatten_alexis_d-143x150.jpg\";s:5:\"width\";i:143;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:25:\"hatten_alexis_d-50x75.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(17681,47865,'_source_url','https://thelomad.com/getmad.today/wp-contentimages.findlawresources.com/env_prod/type_wpsite/nodefault/firmwld_5239763/attywld_5240675/pid_1/hatten_alexis_d.jpg'),(17682,46085,'_wp_old_date','2021-09-14'),(17683,47866,'_wp_attached_file','2021/10/kornacki_paul_b.jpg'),(17684,47866,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:215;s:4:\"file\";s:27:\"2021/10/kornacki_paul_b.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"kornacki_paul_b-143x150.jpg\";s:5:\"width\";i:143;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:25:\"kornacki_paul_b-50x75.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(17685,47866,'_source_url','https://thelomad.com/getmad.today/wp-contentimages.findlawresources.com/env_prod/type_wpsite/nodefault/firmwld_5239763/attywld_1258701/pid_1/kornacki_paul_b.jpg'),(17687,46089,'_wp_old_date','2021-09-14'),(17688,47867,'_wp_attached_file','2021/10/mackey_shannan_m.jpg'),(17689,47867,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:215;s:4:\"file\";s:28:\"2021/10/mackey_shannan_m.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"mackey_shannan_m-143x150.jpg\";s:5:\"width\";i:143;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:26:\"mackey_shannan_m-50x75.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(17690,47867,'_source_url','https://thelomad.com/getmad.today/wp-contentimages.findlawresources.com/env_prod/type_wpsite/nodefault/firmwld_5239763/attywld_5240806/pid_1/mackey_shannan_m.jpg'),(17691,46091,'_wp_old_date','2021-09-14'),(17692,47868,'_wp_attached_file','2021/10/prince_brian_k.jpg'),(17693,47868,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:215;s:4:\"file\";s:26:\"2021/10/prince_brian_k.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"prince_brian_k-143x150.jpg\";s:5:\"width\";i:143;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:24:\"prince_brian_k-50x75.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(17694,47868,'_source_url','https://thelomad.com/getmad.today/wp-contentimages.findlawresources.com/env_prod/type_wpsite/nodefault/firmwld_5239763/attywld_5240689/pid_1/prince_brian_k.jpg'),(17695,47871,'_wp_attached_file','2021/10/AdobeStock_260182798.png'),(17696,47871,'_aioseop_opengraph_settings','a:0:{}'),(17697,47871,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:271;s:6:\"height\";i:138;s:4:\"file\";s:32:\"2021/10/AdobeStock_260182798.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"AdobeStock_260182798-150x138.png\";s:5:\"width\";i:150;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:30:\"AdobeStock_260182798-75x38.png\";s:5:\"width\";i:75;s:6:\"height\";i:38;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:{}}}'),(17701,47874,'_wp_attached_file','2021/10/CUSTOM-870784-cmyk.png'),(17702,47874,'_aioseop_opengraph_settings','a:0:{}'),(17703,47874,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:575;s:6:\"height\";i:794;s:4:\"file\";s:30:\"2021/10/CUSTOM-870784-cmyk.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-217x300.png\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-507x700.png\";s:5:\"width\";i:507;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-362x500.png\";s:5:\"width\";i:362;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-575x630.png\";s:5:\"width\";i:575;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"CUSTOM-870784-cmyk-54x75.png\";s:5:\"width\";i:54;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-575x675.png\";s:5:\"width\";i:575;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-480x663.png\";s:5:\"width\";i:480;s:6:\"height\";i:663;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:{}}}'),(17704,47875,'_wp_attached_file','2021/10/101814-cmyk-1.png'),(17705,47875,'_aioseop_opengraph_settings','a:0:{}'),(17706,47875,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:575;s:6:\"height\";i:794;s:4:\"file\";s:25:\"2021/10/101814-cmyk-1.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-217x300.png\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-507x700.png\";s:5:\"width\";i:507;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-362x500.png\";s:5:\"width\";i:362;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-575x630.png\";s:5:\"width\";i:575;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"101814-cmyk-1-54x75.png\";s:5:\"width\";i:54;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-575x675.png\";s:5:\"width\";i:575;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-480x663.png\";s:5:\"width\";i:480;s:6:\"height\";i:663;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:{}}}'),(17929,47895,'_wp_attached_file','2021/10/AdobeStock_258696218.jpg'),(17930,47895,'_aioseop_opengraph_settings','a:0:{}'),(17931,47895,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:900;s:4:\"file\";s:32:\"2021/10/AdobeStock_258696218.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"AdobeStock_258696218-300x135.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"AdobeStock_258696218-1024x461.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"AdobeStock_258696218-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"AdobeStock_258696218-768x346.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"AdobeStock_258696218-1536x691.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:691;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:33:\"AdobeStock_258696218-1600x720.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:33:\"AdobeStock_258696218-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:32:\"AdobeStock_258696218-700x315.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:33:\"AdobeStock_258696218-1152x518.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:518;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:33:\"AdobeStock_258696218-1000x450.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:32:\"AdobeStock_258696218-500x225.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:33:\"AdobeStock_258696218-1200x630.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:30:\"AdobeStock_258696218-75x34.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:34;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_258696218-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"AdobeStock_258696218-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_258696218-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_258696218-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"AdobeStock_258696218-1080x486.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"AdobeStock_258696218-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:33:\"AdobeStock_258696218-1280x576.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:32:\"AdobeStock_258696218-980x441.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:32:\"AdobeStock_258696218-480x216.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17932,47896,'_wp_attached_file','2021/10/AdobeStock_258696218-T.jpg'),(17933,47896,'_aioseop_opengraph_settings','a:0:{}'),(17934,47896,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:600;s:4:\"file\";s:34:\"2021/10/AdobeStock_258696218-T.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"AdobeStock_258696218-T-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"AdobeStock_258696218-T-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:34:\"AdobeStock_258696218-T-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:34:\"AdobeStock_258696218-T-700x420.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:34:\"AdobeStock_258696218-T-500x300.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"AdobeStock_258696218-T-75x45.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:45;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_258696218-T-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_258696218-T-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_258696218-T-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"AdobeStock_258696218-T-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"AdobeStock_258696218-T-980x588.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"AdobeStock_258696218-T-480x288.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(17935,47897,'_wp_attached_file','2021/10/AdobeStock_258696218-M.jpg'),(17936,47897,'_aioseop_opengraph_settings','a:0:{}'),(17937,47897,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:34:\"2021/10/AdobeStock_258696218-M.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"AdobeStock_258696218-M-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"AdobeStock_258696218-M-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"AdobeStock_258696218-M-75x45.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:45;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_258696218-M-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_258696218-M-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"AdobeStock_258696218-M-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"AdobeStock_258696218-M-480x288.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(17938,47898,'_wp_attached_file','2021/10/AdobeStock_344563317.jpg'),(17939,47898,'_aioseop_opengraph_settings','a:0:{}'),(17940,47898,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:900;s:4:\"file\";s:32:\"2021/10/AdobeStock_344563317.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"AdobeStock_344563317-300x135.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"AdobeStock_344563317-1024x461.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"AdobeStock_344563317-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"AdobeStock_344563317-768x346.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"AdobeStock_344563317-1536x691.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:691;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:33:\"AdobeStock_344563317-1600x720.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:33:\"AdobeStock_344563317-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:32:\"AdobeStock_344563317-700x315.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:33:\"AdobeStock_344563317-1152x518.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:518;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:33:\"AdobeStock_344563317-1000x450.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:32:\"AdobeStock_344563317-500x225.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:33:\"AdobeStock_344563317-1200x630.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:30:\"AdobeStock_344563317-75x34.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:34;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_344563317-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"AdobeStock_344563317-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_344563317-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_344563317-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"AdobeStock_344563317-1080x486.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"AdobeStock_344563317-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:33:\"AdobeStock_344563317-1280x576.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:32:\"AdobeStock_344563317-980x441.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:32:\"AdobeStock_344563317-480x216.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17941,47899,'_wp_attached_file','2021/10/AdobeStock_344563317-T.jpg'),(17942,47899,'_aioseop_opengraph_settings','a:0:{}'),(17943,47899,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:600;s:4:\"file\";s:34:\"2021/10/AdobeStock_344563317-T.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"AdobeStock_344563317-T-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"AdobeStock_344563317-T-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:34:\"AdobeStock_344563317-T-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:34:\"AdobeStock_344563317-T-700x420.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:34:\"AdobeStock_344563317-T-500x300.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"AdobeStock_344563317-T-75x45.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:45;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_344563317-T-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_344563317-T-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_344563317-T-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"AdobeStock_344563317-T-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"AdobeStock_344563317-T-980x588.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"AdobeStock_344563317-T-480x288.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(17944,47900,'_wp_attached_file','2021/10/AdobeStock_344563317-M.jpg'),(17945,47900,'_aioseop_opengraph_settings','a:0:{}'),(17946,47900,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:34:\"2021/10/AdobeStock_344563317-M.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"AdobeStock_344563317-M-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"AdobeStock_344563317-M-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"AdobeStock_344563317-M-75x45.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:45;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_344563317-M-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_344563317-M-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"AdobeStock_344563317-M-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"AdobeStock_344563317-M-480x288.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(17947,47901,'_wp_attached_file','2021/10/AdobeStock_362306286.jpg'),(17948,47901,'_aioseop_opengraph_settings','a:0:{}'),(17949,47901,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:900;s:4:\"file\";s:32:\"2021/10/AdobeStock_362306286.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"AdobeStock_362306286-300x135.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"AdobeStock_362306286-1024x461.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"AdobeStock_362306286-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"AdobeStock_362306286-768x346.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"AdobeStock_362306286-1536x691.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:691;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:33:\"AdobeStock_362306286-1600x720.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:33:\"AdobeStock_362306286-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:32:\"AdobeStock_362306286-700x315.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:33:\"AdobeStock_362306286-1152x518.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:518;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:33:\"AdobeStock_362306286-1000x450.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:32:\"AdobeStock_362306286-500x225.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:33:\"AdobeStock_362306286-1200x630.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:30:\"AdobeStock_362306286-75x34.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:34;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_362306286-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"AdobeStock_362306286-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_362306286-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"AdobeStock_362306286-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"AdobeStock_362306286-1080x486.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"AdobeStock_362306286-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:33:\"AdobeStock_362306286-1280x576.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:32:\"AdobeStock_362306286-980x441.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:32:\"AdobeStock_362306286-480x216.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17950,47902,'_wp_attached_file','2021/10/AdobeStock_362306286-T.jpg'),(17951,47902,'_aioseop_opengraph_settings','a:0:{}'),(17952,47902,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:600;s:4:\"file\";s:34:\"2021/10/AdobeStock_362306286-T.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"AdobeStock_362306286-T-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"AdobeStock_362306286-T-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:34:\"AdobeStock_362306286-T-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:34:\"AdobeStock_362306286-T-700x420.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:34:\"AdobeStock_362306286-T-500x300.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"AdobeStock_362306286-T-75x45.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:45;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_362306286-T-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_362306286-T-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_362306286-T-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"AdobeStock_362306286-T-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"AdobeStock_362306286-T-980x588.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"AdobeStock_362306286-T-480x288.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(17953,47903,'_wp_attached_file','2021/10/AdobeStock_362306286-M.jpg'),(17954,47903,'_aioseop_opengraph_settings','a:0:{}'),(17955,47903,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:34:\"2021/10/AdobeStock_362306286-M.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"AdobeStock_362306286-M-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"AdobeStock_362306286-M-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"AdobeStock_362306286-M-75x45.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:45;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_362306286-M-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"AdobeStock_362306286-M-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"AdobeStock_362306286-M-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"AdobeStock_362306286-M-480x288.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(18205,46339,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 16:36:07\";}'),(18206,46339,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 16:36:07\";}'),(18207,46339,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 16:36:07\";}'),(18218,46235,'_et_monarch_override',''),(18232,46235,'_aioseop_title','M&T Rates | The Law Offices of Melissa A. Day, PLLC'),(18234,46232,'_et_monarch_override',''),(18238,46232,'_aioseop_title','Life Awards | The Law Offices of Melissa A. Day, PLLC'),(18249,46229,'_et_monarch_override',''),(18273,46233,'_et_monarch_override',''),(18282,46233,'_aioseop_title','Max Rates | The Law Offices of Melissa A. Day, PLLC'),(18304,47861,'_edit_lock','1660239569:5036'),(18334,46071,'_wp_old_date','2021-10-26'),(18335,46073,'_wp_old_date','2021-10-26'),(18336,46075,'_wp_old_date','2021-10-26'),(18337,46077,'_wp_old_date','2021-10-26'),(18392,46079,'_wp_old_date','2021-10-26'),(18393,47861,'_wp_old_date','2021-10-26'),(18394,47314,'_wp_old_date','2021-10-26'),(18395,46081,'_wp_old_date','2021-10-26'),(18397,46085,'_wp_old_date','2021-10-26'),(18455,46089,'_wp_old_date','2021-10-26'),(18456,46091,'_wp_old_date','2021-10-26'),(18464,46222,'_aioseop_description','The litigation team at The Law Offices of Melissa A. Day, PLLC, uses creativity, attention to detail and a dogged persistence to get results. Call 716-616-0111 to set up a consultation.'),(18465,46222,'_aioseop_title','Litigation Team | The Law Offices of Melissa A. Day, PLLC | Amherst'),(18466,45969,'_wp_old_date','2021-10-19'),(18467,45968,'_wp_old_date','2021-10-19'),(18468,46669,'_wp_old_date','2021-10-19'),(18469,47292,'_wp_old_date','2021-10-19'),(18470,47299,'_wp_old_date','2021-10-19'),(18471,46668,'_wp_old_date','2021-10-19'),(18472,47728,'_wp_old_date','2021-10-19'),(18473,47297,'_wp_old_date','2021-10-19'),(18474,47294,'_wp_old_date','2021-10-19'),(18475,47296,'_wp_old_date','2021-10-19'),(18476,47298,'_wp_old_date','2021-10-19'),(18477,47295,'_wp_old_date','2021-10-19'),(18478,47854,'_wp_old_date','2021-10-19'),(18479,45967,'_wp_old_date','2021-10-19'),(18480,47293,'_wp_old_date','2021-10-19'),(18481,46670,'_wp_old_date','2021-10-19'),(18482,45966,'_wp_old_date','2021-10-19'),(18483,47214,'_wp_old_date','2021-10-04'),(18484,47307,'_wp_old_date','2021-10-04'),(18485,47305,'_wp_old_date','2021-10-04'),(18486,47213,'_wp_old_date','2021-10-04'),(18488,47312,'_wp_old_date','2021-10-04'),(18490,47311,'_wp_old_date','2021-10-04'),(18491,47313,'_wp_old_date','2021-10-04'),(18493,47308,'_wp_old_date','2021-10-04'),(18494,47516,'_wp_old_date','2021-10-04'),(18495,47215,'_wp_old_date','2021-10-04'),(18496,47518,'_wp_old_date','2021-10-04'),(18537,47861,'_edit_last','308'),(18538,47861,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"profile\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(18539,47861,'non_legal_educations_0_nl_grad_date',''),(18540,47861,'_non_legal_educations_0_nl_grad_date','field_person_meta_nl_grad_date'),(18541,47861,'current_positions_0_cp_time_period',''),(18542,47861,'_current_positions_0_cp_time_period','field_person_meta_cp_time_period'),(18543,47861,'du-meta-custom-footer','default'),(18544,47861,'_et_monarch_override',''),(18545,47861,'_et_pb_post_hide_nav','default'),(18546,47861,'_et_pb_page_layout','et_right_sidebar'),(18547,47861,'_et_pb_side_nav','off'),(18548,47861,'_et_pb_use_builder','on'),(18549,47861,'_et_pb_first_image',''),(18550,47861,'_et_pb_truncate_post',''),(18551,47861,'_et_pb_truncate_post_date',''),(18552,47861,'_et_pb_old_content',''),(18553,47861,'_et_pb_built_for_post_type','page'),(18554,47861,'_et_pb_ab_subjects',''),(18555,47861,'_et_pb_enable_shortcode_tracking',''),(18556,47861,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"47861\" /]'),(18557,47861,'_et_pb_custom_css',''),(18558,47861,'_et_pb_gutter_width','1'),(18559,47861,'_et_builder_version','VB|Divi|4.3.2'),(18560,47861,'_et_pb_show_page_creation','off'),(18760,48000,'_wp_attached_file','2021/11/women2020.jpg'),(18761,48000,'_aioseop_opengraph_settings','a:0:{}'),(18762,48000,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:558;s:6:\"height\";i:770;s:4:\"file\";s:21:\"2021/11/women2020.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"women2020-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"women2020-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:21:\"women2020-507x700.jpg\";s:5:\"width\";i:507;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:21:\"women2020-362x500.jpg\";s:5:\"width\";i:362;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:21:\"women2020-558x630.jpg\";s:5:\"width\";i:558;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:19:\"women2020-54x75.jpg\";s:5:\"width\";i:54;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"women2020-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"women2020-558x675.jpg\";s:5:\"width\";i:558;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"women2020-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"women2020-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"women2020-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:21:\"women2020-480x662.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:662;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(18795,48007,'_wp_attached_file','2021/10/Atty_Kelesy-Kunze.jpg'),(18796,48007,'_aioseop_opengraph_settings','a:0:{}'),(18797,48007,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:29:\"2021/10/Atty_Kelesy-Kunze.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Atty_Kelesy-Kunze-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:29:\"Atty_Kelesy-Kunze-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:27:\"Atty_Kelesy-Kunze-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"Atty_Kelesy-Kunze-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"Atty_Kelesy-Kunze-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(18816,48012,'_wp_attached_file','2021/11/Atty_Francis-Christiano.jpg'),(18817,48012,'_aioseop_opengraph_settings','a:0:{}'),(18818,48012,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:35:\"2021/11/Atty_Francis-Christiano.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Atty_Francis-Christiano-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:35:\"Atty_Francis-Christiano-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:33:\"Atty_Francis-Christiano-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"Atty_Francis-Christiano-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"Atty_Francis-Christiano-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(18819,48013,'_wp_attached_file','2021/11/Atty_Jessica-Stevens.jpg'),(18820,48013,'_aioseop_opengraph_settings','a:0:{}'),(18821,48013,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:32:\"2021/11/Atty_Jessica-Stevens.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Atty_Jessica-Stevens-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:32:\"Atty_Jessica-Stevens-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:30:\"Atty_Jessica-Stevens-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Atty_Jessica-Stevens-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Atty_Jessica-Stevens-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(18822,48014,'_wp_attached_file','2021/11/Atty_Corrine-Newman.jpg'),(18823,48014,'_aioseop_opengraph_settings','a:0:{}'),(18824,48014,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:31:\"2021/11/Atty_Corrine-Newman.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Atty_Corrine-Newman-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:31:\"Atty_Corrine-Newman-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:29:\"Atty_Corrine-Newman-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Atty_Corrine-Newman-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Atty_Corrine-Newman-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(18825,48015,'_wp_attached_file','2021/11/Atty_Danielle-Draschan.jpg'),(18826,48015,'_aioseop_opengraph_settings','a:0:{}'),(18827,48015,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:34:\"2021/11/Atty_Danielle-Draschan.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Atty_Danielle-Draschan-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:34:\"Atty_Danielle-Draschan-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"Atty_Danielle-Draschan-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"Atty_Danielle-Draschan-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"Atty_Danielle-Draschan-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(18846,48020,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(18847,48020,'current_word_count','139'),(18848,48020,'author_byline','On Behalf of'),(18849,48020,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(18854,48022,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(18855,48022,'current_word_count','470'),(18856,48022,'author_byline','On Behalf of'),(18857,48022,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(18858,48023,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(18859,48023,'current_word_count','83'),(18860,48023,'author_byline','On Behalf of'),(18861,48023,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(18862,48023,'_edit_lock','1663936937:1'),(18863,48023,'_edit_last','1'),(18864,48023,'_wp_page_template','default'),(18865,48023,'du-meta-custom-footer','default'),(18866,48023,'_et_monarch_override',''),(18867,48023,'_et_pb_post_hide_nav','default'),(18868,48023,'_et_pb_page_layout','et_right_sidebar'),(18869,48023,'_et_pb_side_nav','off'),(18870,48023,'_et_pb_use_builder','off'),(18871,48023,'_et_pb_first_image',''),(18872,48023,'_et_pb_truncate_post',''),(18873,48023,'_et_pb_truncate_post_date',''),(18874,48023,'_et_pb_old_content',''),(18875,48023,'type',''),(18876,48023,'source_url',''),(18877,48023,'target_word_count',''),(18878,48023,'target_sections',''),(18879,48023,'content_type','new'),(18880,48023,'subtitle',''),(18881,48023,'_subtitle','field_page_subtitle_subtitle'),(18884,48023,'pagegoals','goal3'),(18885,48023,'pagelanguage','english'),(18886,48023,'pagetype','marketing'),(18887,48020,'_edit_lock','1663936847:1'),(18889,48020,'_edit_last','1'),(18891,48020,'_wp_page_template','default'),(18892,48020,'du-meta-custom-footer','default'),(18893,48020,'_et_monarch_override',''),(18894,48020,'_et_pb_post_hide_nav','default'),(18895,48020,'_et_pb_page_layout','et_right_sidebar'),(18896,48020,'_et_pb_side_nav','off'),(18897,48020,'_et_pb_use_builder','off'),(18898,48020,'_et_pb_first_image',''),(18899,48020,'_et_pb_truncate_post',''),(18900,48020,'_et_pb_truncate_post_date',''),(18901,48020,'_et_pb_old_content',''),(18902,48020,'type',''),(18903,48020,'source_url',''),(18904,48020,'target_word_count',''),(18905,48020,'target_sections',''),(18906,48020,'content_type','new'),(18907,48020,'subtitle',''),(18908,48020,'_subtitle','field_page_subtitle_subtitle'),(18911,48020,'pagegoals','goal3'),(18912,48020,'pagelanguage','english'),(18913,48020,'pagetype','marketing'),(18939,48022,'_edit_lock','1663936928:1'),(18940,48022,'_edit_last','1'),(18941,48022,'_wp_page_template','default'),(18942,48022,'du-meta-custom-footer','default'),(18943,48022,'_et_monarch_override',''),(18944,48022,'_et_pb_post_hide_nav','default'),(18945,48022,'_et_pb_page_layout','et_right_sidebar'),(18946,48022,'_et_pb_side_nav','off'),(18947,48022,'_et_pb_use_builder','on'),(18948,48022,'_et_pb_first_image',''),(18949,48022,'_et_pb_truncate_post',''),(18950,48022,'_et_pb_truncate_post_date',''),(18951,48022,'_et_pb_old_content',''),(18952,48022,'type',''),(18953,48022,'source_url',''),(18954,48022,'target_word_count',''),(18955,48022,'target_sections',''),(18956,48022,'content_type','new'),(18957,48022,'subtitle',''),(18958,48022,'_subtitle','field_page_subtitle_subtitle'),(18961,48022,'pagegoals','goal3'),(18962,48022,'pagelanguage','english'),(18963,48022,'pagetype','marketing'),(18965,48023,'_et_pb_built_for_post_type','page'),(18966,48023,'_et_pb_ab_subjects',''),(18967,48023,'_et_pb_enable_shortcode_tracking',''),(18968,48023,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"48023\" /]'),(18969,48023,'_et_pb_custom_css',''),(18970,48023,'_et_pb_gutter_width','1'),(18972,48023,'_et_builder_version','VB|Divi|4.3.2'),(18973,48023,'_et_pb_show_page_creation','off'),(18976,48020,'_et_pb_built_for_post_type','page'),(18977,48020,'_et_pb_ab_subjects',''),(18978,48020,'_et_pb_enable_shortcode_tracking',''),(18979,48020,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"48020\" /]'),(18980,48020,'_et_pb_custom_css',''),(18981,48020,'_et_pb_gutter_width','1'),(18983,48020,'_et_builder_version','VB|Divi|4.3.2'),(18984,48020,'_et_pb_show_page_creation','off'),(18999,48022,'_et_pb_built_for_post_type','page'),(19000,48022,'_et_pb_ab_subjects',''),(19001,48022,'_et_pb_enable_shortcode_tracking',''),(19002,48022,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"48022\" /]'),(19003,48022,'_et_pb_custom_css',''),(19004,48022,'_et_pb_gutter_width','1'),(19006,48022,'_et_builder_version','VB|Divi|4.3.2'),(19007,48022,'_et_pb_show_page_creation','off'),(19247,48126,'_et_pb_use_builder','on'),(19248,48126,'_et_pb_show_page_creation','off'),(19249,48126,'_et_pb_built_for_post_type','page'),(19250,48126,'_et_pb_enable_shortcode_tracking',''),(19251,48126,'_et_pb_custom_css',''),(19252,48126,'_et_pb_gutter_width','1'),(19253,48126,'_et_pb_first_image',''),(19254,48126,'_et_pb_truncate_post',''),(19255,48126,'_et_pb_truncate_post_date',''),(19256,48126,'_et_builder_version','VB|Divi|4.3.2'),(19436,48126,'_et_pb_ab_subjects',''),(19437,48126,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"48126\" /]'),(19438,48126,'_thumbnail_id','0'),(19480,48147,'_et_autogenerated_title','0'),(19481,48147,'_et_default','0'),(19482,48147,'_et_enabled','1'),(19483,48147,'_et_header_layout_id','46014'),(19484,48147,'_et_header_layout_enabled','1'),(19485,48147,'_et_body_layout_id','48126'),(19486,48147,'_et_body_layout_enabled','1'),(19487,48147,'_et_footer_layout_id','46015'),(19488,48147,'_et_footer_layout_enabled','1'),(19509,48150,'_wp_attached_file','2021/11/AdobeStock_344563317-banner.jpg'),(19510,48150,'_aioseop_opengraph_settings','a:0:{}'),(19511,48150,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1696;s:6:\"height\";i:679;s:4:\"file\";s:39:\"2021/11/AdobeStock_344563317-banner.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"AdobeStock_344563317-banner-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"AdobeStock_344563317-banner-1024x410.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"AdobeStock_344563317-banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"AdobeStock_344563317-banner-768x307.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:40:\"AdobeStock_344563317-banner-1536x615.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:615;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:40:\"AdobeStock_344563317-banner-1600x641.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:641;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:40:\"AdobeStock_344563317-banner-1600x679.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:39:\"AdobeStock_344563317-banner-700x280.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:40:\"AdobeStock_344563317-banner-1152x461.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:40:\"AdobeStock_344563317-banner-1000x400.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:39:\"AdobeStock_344563317-banner-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:40:\"AdobeStock_344563317-banner-1200x630.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:37:\"AdobeStock_344563317-banner-75x30.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"AdobeStock_344563317-banner-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:40:\"AdobeStock_344563317-banner-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"AdobeStock_344563317-banner-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"AdobeStock_344563317-banner-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:40:\"AdobeStock_344563317-banner-1080x432.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"AdobeStock_344563317-banner-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:40:\"AdobeStock_344563317-banner-1280x512.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:39:\"AdobeStock_344563317-banner-980x392.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"AdobeStock_344563317-banner-480x192.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(19512,48151,'_wp_attached_file','2021/11/AdobeStock_258696218-banner.jpg'),(19513,48151,'_aioseop_opengraph_settings','a:0:{}'),(19514,48151,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1696;s:6:\"height\";i:679;s:4:\"file\";s:39:\"2021/11/AdobeStock_258696218-banner.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-banner-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"AdobeStock_258696218-banner-1024x410.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-banner-768x307.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:40:\"AdobeStock_258696218-banner-1536x615.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:615;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:40:\"AdobeStock_258696218-banner-1600x641.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:641;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:40:\"AdobeStock_258696218-banner-1600x679.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-banner-700x280.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:40:\"AdobeStock_258696218-banner-1152x461.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:40:\"AdobeStock_258696218-banner-1000x400.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-banner-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:40:\"AdobeStock_258696218-banner-1200x630.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:37:\"AdobeStock_258696218-banner-75x30.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-banner-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:40:\"AdobeStock_258696218-banner-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-banner-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-banner-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:40:\"AdobeStock_258696218-banner-1080x432.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-banner-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:40:\"AdobeStock_258696218-banner-1280x512.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-banner-980x392.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-banner-480x192.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(19515,48152,'_wp_attached_file','2021/11/AdobeStock_362306286-banner.jpg'),(19516,48152,'_aioseop_opengraph_settings','a:0:{}'),(19517,48152,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1696;s:6:\"height\";i:679;s:4:\"file\";s:39:\"2021/11/AdobeStock_362306286-banner.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"AdobeStock_362306286-banner-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"AdobeStock_362306286-banner-1024x410.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"AdobeStock_362306286-banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"AdobeStock_362306286-banner-768x307.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:40:\"AdobeStock_362306286-banner-1536x615.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:615;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:40:\"AdobeStock_362306286-banner-1600x641.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:641;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:40:\"AdobeStock_362306286-banner-1600x679.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:39:\"AdobeStock_362306286-banner-700x280.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:40:\"AdobeStock_362306286-banner-1152x461.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:40:\"AdobeStock_362306286-banner-1000x400.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:39:\"AdobeStock_362306286-banner-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:40:\"AdobeStock_362306286-banner-1200x630.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:37:\"AdobeStock_362306286-banner-75x30.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"AdobeStock_362306286-banner-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:40:\"AdobeStock_362306286-banner-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"AdobeStock_362306286-banner-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"AdobeStock_362306286-banner-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:40:\"AdobeStock_362306286-banner-1080x432.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"AdobeStock_362306286-banner-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:40:\"AdobeStock_362306286-banner-1280x512.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:39:\"AdobeStock_362306286-banner-980x392.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"AdobeStock_362306286-banner-480x192.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(19555,46071,'_wp_old_date','2021-10-28'),(19556,46073,'_wp_old_date','2021-10-28'),(19557,46075,'_wp_old_date','2021-10-28'),(19558,46077,'_wp_old_date','2021-10-28'),(19568,46079,'_wp_old_date','2021-10-28'),(19569,47861,'_wp_old_date','2021-10-28'),(19570,47314,'_wp_old_date','2021-10-28'),(19571,46081,'_wp_old_date','2021-10-28'),(19572,48166,'_wp_attached_file','2021/11/gray_katrina.jpg'),(19573,48166,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:215;s:4:\"file\";s:24:\"2021/11/gray_katrina.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"gray_katrina-143x150.jpg\";s:5:\"width\";i:143;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:22:\"gray_katrina-50x75.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(19574,48166,'_source_url','https://thelomad.com/getmad.today/wp-contentimages.findlawresources.com/env_prod/type_wpsite/nodefault/firmwld_5239763/attywld_5240808/pid_1/gray_katrina.jpg'),(19576,46085,'_wp_old_date','2021-10-28'),(19580,48167,'_wp_attached_file','2021/11/machelor_kristin_m.jpg'),(19581,48167,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:215;s:6:\"height\";i:215;s:4:\"file\";s:30:\"2021/11/machelor_kristin_m.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"machelor_kristin_m-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"machelor_kristin_m-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(19582,48167,'_source_url','https://thelomad.com/getmad.today/wp-contentimages.findlawresources.com/env_prod/type_wpsite/nodefault/firmwld_5239763/attywld_3450166/pid_1/machelor_kristin_m.jpg'),(19583,46089,'_wp_old_date','2021-10-28'),(19584,46091,'_wp_old_date','2021-10-28'),(19585,48168,'guid','I2B58E7DC1DD211B29CB2260062023BAB'),(19586,48168,'wld_id','5250202'),(19587,48168,'first_name','Brendan'),(19588,48168,'_first_name','field_person_meta_first_name'),(19589,48168,'middle_name','T.'),(19590,48168,'_middle_name','field_person_meta_middle_name'),(19591,48168,'last_name','Shannon'),(19592,48168,'_last_name','field_person_meta_last_name'),(19593,48168,'location','a:3:{s:7:\"address\";s:33:\"636 N French Rd, Amherst NY 14228\";s:3:\"lat\";s:10:\"43.0358760\";s:3:\"lng\";s:11:\"-78.8008900\";}'),(19594,48168,'_location','field_person_meta_location'),(19595,48168,'phone','+1-716-970-4858'),(19596,48168,'_phone','field_person_meta_phone'),(19597,48168,'fax','855-443-8623'),(19598,48168,'_fax','field_person_meta_fax'),(19599,48168,'email','bshannon@madwcdefense.com'),(19600,48168,'_email','field_person_meta_email'),(19601,48168,'practice_areas_0_pra_title','Workers\' Compensation'),(19602,48168,'_practice_areas_0_pra_title','field_person_meta_pra_title'),(19603,48168,'practice_areas_0_pra_percentage','0'),(19604,48168,'_practice_areas_0_pra_percentage','field_person_meta_pra_percentage'),(19605,48168,'practice_areas','1'),(19606,48168,'_practice_areas','field_person_meta_practice_areas'),(19607,48168,'bar_admissions_0_ba_name','New York'),(19608,48168,'_bar_admissions_0_ba_name','field_person_meta_ba_name'),(19609,48168,'bar_admissions_0_ba_year',''),(19610,48168,'_bar_admissions_0_ba_year','field_person_meta_ba_year'),(19611,48168,'bar_admissions_0_ba_code','5842'),(19612,48168,'_bar_admissions_0_ba_code','field_person_meta_ba_code'),(19613,48168,'bar_admissions','1'),(19614,48168,'_bar_admissions','field_person_meta_bar_admissions'),(19615,48168,'professional_assoc_0_pa_name','NYSBA'),(19616,48168,'_professional_assoc_0_pa_name','field_person_meta_pa_name'),(19617,48168,'professional_assoc_0_pa_title',''),(19618,48168,'_professional_assoc_0_pa_title','field_person_meta_pa_title'),(19619,48168,'professional_assoc_0_pa_time_period',''),(19620,48168,'_professional_assoc_0_pa_time_period','field_person_meta_pa_time_period'),(19621,48168,'professional_assoc_1_pa_name','Erie County Bar Association'),(19622,48168,'_professional_assoc_1_pa_name','field_person_meta_pa_name'),(19623,48168,'professional_assoc_1_pa_title',''),(19624,48168,'_professional_assoc_1_pa_title','field_person_meta_pa_title'),(19625,48168,'professional_assoc_1_pa_time_period',''),(19626,48168,'_professional_assoc_1_pa_time_period','field_person_meta_pa_time_period'),(19627,48168,'professional_assoc_2_pa_name','ABA'),(19628,48168,'_professional_assoc_2_pa_name','field_person_meta_pa_name'),(19629,48168,'professional_assoc_2_pa_title',''),(19630,48168,'_professional_assoc_2_pa_title','field_person_meta_pa_title'),(19631,48168,'professional_assoc_2_pa_time_period',''),(19632,48168,'_professional_assoc_2_pa_time_period','field_person_meta_pa_time_period'),(19633,48168,'professional_assoc','3'),(19634,48168,'_professional_assoc','field_person_meta_professional_assoc'),(19635,48168,'classes_seminars',''),(19636,48168,'_classes_seminars','field_person_meta_classes_seminars'),(19637,48168,'honors_0_honor_desc','Center for Computer-Assisted Legal Instruction (CALI) Excellence for the Future Award for earning the highest grade in Torts, as a first-year law student'),(19638,48168,'_honors_0_honor_desc','field_person_meta_honor_desc'),(19639,48168,'honors','1'),(19640,48168,'_honors','field_person_meta_honors'),(19641,48168,'published_works',''),(19642,48168,'_published_works','field_person_meta_published_works'),(19643,48168,'bio',''),(19644,48168,'_bio','field_person_meta_bio'),(19645,48168,'past_positions',''),(19646,48168,'_past_positions','field_person_meta_past_positions'),(19647,48168,'pro_bonos_0_pb_activity','Interned for Judge Lawrence J. Vilardo'),(19648,48168,'_pro_bonos_0_pb_activity','field_person_meta_pb_activity'),(19649,48168,'pro_bonos_0_pb_time_period',''),(19650,48168,'_pro_bonos_0_pb_time_period','field_person_meta_pb_time_period'),(19651,48168,'pro_bonos_1_pb_activity','United States District Judge for the Western District of New York '),(19652,48168,'_pro_bonos_1_pb_activity','field_person_meta_pb_activity'),(19653,48168,'pro_bonos_1_pb_time_period','01/2020 to 05/2020'),(19654,48168,'_pro_bonos_1_pb_time_period','field_person_meta_pb_time_period'),(19655,48168,'pro_bonos','2'),(19656,48168,'_pro_bonos','field_person_meta_pro_bonos'),(19657,48168,'languages',''),(19658,48168,'_languages','field_person_meta_languages'),(19659,48168,'fraternity_sororities',''),(19660,48168,'_fraternity_sororities','field_person_meta_fraternity_sororities'),(19661,48168,'representative_cases',''),(19662,48168,'_representative_cases','field_person_meta_representative_cases'),(19663,48168,'specialties',''),(19664,48168,'_specialties','field_person_meta_specialties'),(19665,48168,'references',''),(19666,48168,'_references','field_person_meta_references'),(19667,48168,'ancillary_businesses',''),(19668,48168,'_ancillary_businesses','field_person_meta_ancillary_businesses'),(19669,48168,'legal_educations_0_le_school','University at Buffalo Law School'),(19670,48168,'_legal_educations_0_le_school','field_person_meta_le_school'),(19671,48168,'legal_educations_0_le_city','Buffalo'),(19672,48168,'_legal_educations_0_le_city','field_person_meta_le_city'),(19673,48168,'legal_educations_0_le_state','New York'),(19674,48168,'_legal_educations_0_le_state','field_person_meta_le_state'),(19675,48168,'legal_educations_0_le_grad_date','2020'),(19676,48168,'_legal_educations_0_le_grad_date','field_person_meta_le_grad_date'),(19677,48168,'legal_educations_0_le_degree_name',''),(19678,48168,'_legal_educations_0_le_degree_name','field_person_meta_le_degree_name'),(19679,48168,'legal_educations_0_le_distinction','Cum Laude'),(19680,48168,'_legal_educations_0_le_distinction','field_person_meta_le_distinction'),(19681,48168,'legal_educations_0_le_school_honors',''),(19682,48168,'_legal_educations_0_le_school_honors','field_person_meta_le_school_honors'),(19683,48168,'legal_educations_0_le_school_majors',''),(19684,48168,'_legal_educations_0_le_school_majors','field_person_meta_le_school_majors'),(19685,48168,'legal_educations_0_le_school_minors',''),(19686,48168,'_legal_educations_0_le_school_minors','field_person_meta_le_school_minors'),(19687,48168,'legal_educations','1'),(19688,48168,'_legal_educations','field_person_meta_legal_educations'),(19689,48168,'non_legal_educations_0_nl_school','Canisius College'),(19690,48168,'_non_legal_educations_0_nl_school','field_person_meta_nl_school'),(19691,48168,'non_legal_educations_0_nl_city',''),(19692,48168,'_non_legal_educations_0_nl_city','field_person_meta_nl_city'),(19693,48168,'non_legal_educations_0_nl_state',''),(19694,48168,'_non_legal_educations_0_nl_state','field_person_meta_nl_state'),(19695,48168,'non_legal_educations_0_nl_grad_date','2017'),(19696,48168,'_non_legal_educations_0_nl_grad_date','field_person_meta_nl_grad_date'),(19697,48168,'non_legal_educations_0_nl_degree_name',''),(19698,48168,'_non_legal_educations_0_nl_degree_name','field_person_meta_nl_degree_name'),(19699,48168,'non_legal_educations_0_nl_distinction','Magna Cum Laude'),(19700,48168,'_non_legal_educations_0_nl_distinction','field_person_meta_nl_distinction'),(19701,48168,'non_legal_educations_0_nle_school_honors',''),(19702,48168,'_non_legal_educations_0_nle_school_honors','field_person_meta_nle_school_honors'),(19703,48168,'non_legal_educations_0_nle_school_majors',''),(19704,48168,'_non_legal_educations_0_nle_school_majors','field_person_meta_nle_school_majors'),(19705,48168,'non_legal_educations_0_nle_school_minors',''),(19706,48168,'_non_legal_educations_0_nle_school_minors','field_person_meta_nle_school_minors'),(19707,48168,'non_legal_educations','1'),(19708,48168,'_non_legal_educations','field_person_meta_non_legal_educations'),(19709,48168,'representative_clients',''),(19710,48168,'_representative_clients','field_person_meta_representative_clients'),(19711,48168,'current_positions_0_cp_title','Associate Attorney'),(19712,48168,'_current_positions_0_cp_title','field_person_meta_cp_title'),(19713,48168,'current_positions','1'),(19714,48168,'_current_positions','field_person_meta_current_positions'),(19716,48168,'_edit_lock','1660756500:5036'),(19717,48168,'_edit_last','5036'),(19718,48168,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"profile\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(19719,48168,'current_positions_0_cp_time_period',''),(19720,48168,'_current_positions_0_cp_time_period','field_person_meta_cp_time_period'),(19721,48168,'du-meta-custom-footer','default'),(19722,48168,'_et_monarch_override',''),(19723,48168,'_et_pb_post_hide_nav','default'),(19724,48168,'_et_pb_page_layout','et_right_sidebar'),(19725,48168,'_et_pb_side_nav','off'),(19726,48168,'_et_pb_use_builder','on'),(19727,48168,'_et_pb_first_image',''),(19728,48168,'_et_pb_truncate_post',''),(19729,48168,'_et_pb_truncate_post_date',''),(19730,48168,'_et_pb_old_content',''),(19731,48168,'_et_pb_built_for_post_type','page'),(19732,48168,'_et_pb_ab_subjects',''),(19733,48168,'_et_pb_enable_shortcode_tracking',''),(19734,48168,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"48168\" /]'),(19735,48168,'_et_pb_custom_css',''),(19736,48168,'_et_pb_gutter_width','1'),(19738,48168,'_et_builder_version','VB|Divi|4.3.2'),(19739,48168,'_et_pb_show_page_creation','off'),(19740,46077,'honors_0_honor_desc','Largest Women-Owned Businesses Buffalo - 2019, 2020, 2021'),(19741,46077,'_honors_0_honor_desc','field_person_meta_honor_desc'),(19742,46077,'honors_1_honor_desc','Largest Buffalo Law Firms - 2020 and 2021'),(19743,46077,'_honors_1_honor_desc','field_person_meta_honor_desc'),(19744,46077,'honors_2_honor_desc','Finalist Best Places to Work Buffalo - 2021'),(19745,46077,'_honors_2_honor_desc','field_person_meta_honor_desc'),(19746,46077,'published_works_0_pw_title','Founder of and regular contributor to the Linkedin Group, “New York Workers’ Compensation Forum” in September 2009 – Currently nearly 1900 members'),(19747,46077,'_published_works_0_pw_title','field_person_meta_pw_title'),(19748,46077,'published_works_0_pw_citation_or_publisher',''),(19749,46077,'_published_works_0_pw_citation_or_publisher','field_person_meta_pw_citation_or_publisher'),(19750,46077,'published_works_0_pw_issue',''),(19751,46077,'_published_works_0_pw_issue','field_person_meta_pw_issue'),(19752,46077,'published_works_0_pw_year',''),(19753,46077,'_published_works_0_pw_year','field_person_meta_pw_year'),(19754,46077,'published_works_1_pw_title','Executive producer of a monthly live TV Show/Webinar titled, “Lawyers & Friends.” c. Presenter at numerous for profit and not for profit seminars on New York Workers’ Compensation'),(19755,46077,'_published_works_1_pw_title','field_person_meta_pw_title'),(19756,46077,'published_works_1_pw_citation_or_publisher',''),(19757,46077,'_published_works_1_pw_citation_or_publisher','field_person_meta_pw_citation_or_publisher'),(19758,46077,'published_works_1_pw_issue',''),(19759,46077,'_published_works_1_pw_issue','field_person_meta_pw_issue'),(19760,46077,'published_works_1_pw_year',''),(19761,46077,'_published_works_1_pw_year','field_person_meta_pw_year'),(19762,46077,'published_works_2_pw_title','Presenter at numerous for profit and not for profit seminars on New York Workers’ Compensation'),(19763,46077,'_published_works_2_pw_title','field_person_meta_pw_title'),(19764,46077,'published_works_2_pw_citation_or_publisher',''),(19765,46077,'_published_works_2_pw_citation_or_publisher','field_person_meta_pw_citation_or_publisher'),(19766,46077,'published_works_2_pw_issue',''),(19767,46077,'_published_works_2_pw_issue','field_person_meta_pw_issue'),(19768,46077,'published_works_2_pw_year',''),(19769,46077,'_published_works_2_pw_year','field_person_meta_pw_year'),(19778,48173,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(19779,48173,'current_word_count','6772'),(19780,48173,'author_byline','On Behalf of'),(19781,48173,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(19782,48173,'_edit_lock','1662997938:1'),(19783,48173,'_edit_last','1'),(19784,48173,'_wp_page_template','default'),(19785,48173,'du-meta-custom-footer','default'),(19786,48173,'_et_monarch_override',''),(19787,48173,'_et_pb_post_hide_nav','default'),(19788,48173,'_et_pb_page_layout','et_right_sidebar'),(19789,48173,'_et_pb_side_nav','off'),(19790,48173,'_et_pb_use_builder','on'),(19791,48173,'_et_pb_first_image',''),(19792,48173,'_et_pb_truncate_post',''),(19793,48173,'_et_pb_truncate_post_date',''),(19794,48173,'_et_pb_old_content',''),(19795,48173,'type',''),(19796,48173,'source_url',''),(19797,48173,'target_word_count',''),(19798,48173,'target_sections',''),(19799,48173,'content_type','new'),(19800,48173,'subtitle',''),(19801,48173,'_subtitle','field_page_subtitle_subtitle'),(19804,48173,'pagegoals','goal3'),(19805,48173,'pagelanguage','english'),(19806,48173,'pagetype','marketing'),(19813,48178,'_wp_attached_file','2021/11/Virtual-LF-Copy-1024x683-1.jpg'),(19814,48178,'_aioseop_opengraph_settings','a:0:{}'),(19815,48178,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:38:\"2021/11/Virtual-LF-Copy-1024x683-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Virtual-LF-Copy-1024x683-1-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:38:\"Virtual-LF-Copy-1024x683-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:38:\"Virtual-LF-Copy-1024x683-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:38:\"Virtual-LF-Copy-1024x683-1-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:39:\"Virtual-LF-Copy-1024x683-1-1000x667.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:38:\"Virtual-LF-Copy-1024x683-1-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:39:\"Virtual-LF-Copy-1024x683-1-1024x630.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:36:\"Virtual-LF-Copy-1024x683-1-75x50.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"Virtual-LF-Copy-1024x683-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:39:\"Virtual-LF-Copy-1024x683-1-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"Virtual-LF-Copy-1024x683-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"Virtual-LF-Copy-1024x683-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"Virtual-LF-Copy-1024x683-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:38:\"Virtual-LF-Copy-1024x683-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:38:\"Virtual-LF-Copy-1024x683-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(19816,48180,'_wp_attached_file','2021/11/215921059.jpg'),(19817,48180,'_aioseop_opengraph_settings','a:0:{}'),(19818,48180,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:21:\"2021/11/215921059.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"215921059-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:19:\"215921059-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(19819,48181,'_wp_attached_file','2021/11/200051476.jpg'),(19820,48181,'_aioseop_opengraph_settings','a:0:{}'),(19821,48181,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:21:\"2021/11/200051476.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"200051476-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:19:\"200051476-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(19822,48182,'_wp_attached_file','2021/11/1042201467.jpg'),(19823,48182,'_aioseop_opengraph_settings','a:0:{}'),(19824,48182,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/1042201467.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1042201467-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"1042201467-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(19825,48173,'_et_pb_built_for_post_type','page'),(19826,48173,'_et_pb_ab_subjects',''),(19827,48173,'_et_pb_enable_shortcode_tracking',''),(19828,48173,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"48173\" /]'),(19829,48173,'_et_pb_custom_css',''),(19830,48173,'_et_pb_gutter_width','1'),(19832,48173,'_et_builder_version','VB|Divi|4.14.8'),(19833,48173,'_et_pb_show_page_creation','off'),(19836,48187,'_wp_attached_file','2021/11/1196623201.png'),(19837,48187,'_aioseop_opengraph_settings','a:0:{}'),(19838,48187,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/1196623201.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1196623201-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"1196623201-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19839,48188,'_wp_attached_file','2021/11/1709938671.png'),(19840,48188,'_aioseop_opengraph_settings','a:0:{}'),(19841,48188,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/1709938671.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1709938671-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"1709938671-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19842,48189,'_wp_attached_file','2021/11/3596348415.png'),(19843,48189,'_aioseop_opengraph_settings','a:0:{}'),(19844,48189,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/3596348415.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"3596348415-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"3596348415-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19845,48190,'_wp_attached_file','2021/11/3140641566.png'),(19846,48190,'_aioseop_opengraph_settings','a:0:{}'),(19847,48190,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/3140641566.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"3140641566-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"3140641566-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19848,48191,'_wp_attached_file','2021/11/1799585569.png'),(19849,48191,'_aioseop_opengraph_settings','a:0:{}'),(19850,48191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/1799585569.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1799585569-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"1799585569-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19860,48201,'_wp_attached_file','2021/11/95276588.jpg'),(19861,48201,'_aioseop_opengraph_settings','a:0:{}'),(19862,48201,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:20:\"2021/11/95276588.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"95276588-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:18:\"95276588-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(19863,48202,'_wp_attached_file','2021/11/3549288128.png'),(19864,48202,'_aioseop_opengraph_settings','a:0:{}'),(19865,48202,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/3549288128.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"3549288128-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"3549288128-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19866,48203,'_wp_attached_file','2021/11/2654753310.png'),(19867,48203,'_aioseop_opengraph_settings','a:0:{}'),(19868,48203,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/2654753310.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"2654753310-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"2654753310-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19869,48204,'_wp_attached_file','2021/11/919041395.png'),(19870,48204,'_aioseop_opengraph_settings','a:0:{}'),(19871,48204,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:21:\"2021/11/919041395.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"919041395-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:19:\"919041395-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19872,48205,'_wp_attached_file','2021/11/3299604788.jpg'),(19873,48205,'_aioseop_opengraph_settings','a:0:{}'),(19874,48205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/3299604788.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"3299604788-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"3299604788-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(19875,48206,'_wp_attached_file','2021/11/3731920967.png'),(19876,48206,'_aioseop_opengraph_settings','a:0:{}'),(19877,48206,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/3731920967.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"3731920967-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"3731920967-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19878,48207,'_wp_attached_file','2021/11/3395494514.png'),(19879,48207,'_aioseop_opengraph_settings','a:0:{}'),(19880,48207,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/3395494514.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"3395494514-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"3395494514-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19881,48208,'_wp_attached_file','2021/11/3765780421.png'),(19882,48208,'_aioseop_opengraph_settings','a:0:{}'),(19883,48208,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/3765780421.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"3765780421-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"3765780421-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19884,48209,'_wp_attached_file','2021/11/3851629198.jpg'),(19885,48209,'_aioseop_opengraph_settings','a:0:{}'),(19886,48209,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/3851629198.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"3851629198-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"3851629198-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(19887,48210,'_wp_attached_file','2021/11/1250162963.png'),(19888,48210,'_aioseop_opengraph_settings','a:0:{}'),(19889,48210,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/1250162963.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1250162963-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"1250162963-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19890,48211,'_wp_attached_file','2021/11/2527305273.png'),(19891,48211,'_aioseop_opengraph_settings','a:0:{}'),(19892,48211,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/2527305273.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"2527305273-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"2527305273-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19893,48212,'_wp_attached_file','2021/11/634697273.png'),(19894,48212,'_aioseop_opengraph_settings','a:0:{}'),(19895,48212,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:21:\"2021/11/634697273.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"634697273-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:19:\"634697273-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19896,48213,'_wp_attached_file','2021/11/4095797037.png'),(19897,48213,'_aioseop_opengraph_settings','a:0:{}'),(19898,48213,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/4095797037.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"4095797037-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"4095797037-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19899,48214,'_wp_attached_file','2021/11/3261310036.png'),(19900,48214,'_aioseop_opengraph_settings','a:0:{}'),(19901,48214,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/3261310036.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"3261310036-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"3261310036-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19902,48215,'_wp_attached_file','2021/11/405752026.jpg'),(19903,48215,'_aioseop_opengraph_settings','a:0:{}'),(19904,48215,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:21:\"2021/11/405752026.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"405752026-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:19:\"405752026-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(19905,48216,'_wp_attached_file','2021/11/240230510.jpg'),(19906,48216,'_aioseop_opengraph_settings','a:0:{}'),(19907,48216,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:21:\"2021/11/240230510.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"240230510-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:19:\"240230510-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(19908,48217,'_wp_attached_file','2021/11/971431146.jpg'),(19909,48217,'_aioseop_opengraph_settings','a:0:{}'),(19910,48217,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:21:\"2021/11/971431146.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"971431146-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:19:\"971431146-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(19911,48218,'_wp_attached_file','2021/11/2220697693.jpg'),(19912,48218,'_aioseop_opengraph_settings','a:0:{}'),(19913,48218,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/2220697693.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"2220697693-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"2220697693-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(19914,48219,'_wp_attached_file','2021/11/4061590130.jpg'),(19915,48219,'_aioseop_opengraph_settings','a:0:{}'),(19916,48219,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/4061590130.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"4061590130-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"4061590130-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20006,48223,'_wp_attached_file','2021/11/2434380366.jpg'),(20007,48223,'_aioseop_opengraph_settings','a:0:{}'),(20008,48223,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/2434380366.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"2434380366-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"2434380366-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20009,48224,'_wp_attached_file','2021/11/3894433199.jpg'),(20010,48224,'_aioseop_opengraph_settings','a:0:{}'),(20011,48224,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/3894433199.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"3894433199-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"3894433199-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20012,48225,'_wp_attached_file','2021/11/1407033010.jpg'),(20013,48225,'_aioseop_opengraph_settings','a:0:{}'),(20014,48225,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/1407033010.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1407033010-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"1407033010-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20015,48226,'_wp_attached_file','2021/11/2092150080.jpg'),(20016,48226,'_aioseop_opengraph_settings','a:0:{}'),(20017,48226,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/2092150080.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"2092150080-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"2092150080-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20018,48227,'_wp_attached_file','2021/11/1025514290.jpg'),(20019,48227,'_aioseop_opengraph_settings','a:0:{}'),(20020,48227,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/1025514290.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1025514290-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"1025514290-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20021,48228,'_wp_attached_file','2021/11/19691221.jpg'),(20022,48228,'_aioseop_opengraph_settings','a:0:{}'),(20023,48228,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:20:\"2021/11/19691221.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"19691221-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:18:\"19691221-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20024,48229,'_wp_attached_file','2021/11/3356549231.jpg'),(20025,48229,'_aioseop_opengraph_settings','a:0:{}'),(20026,48229,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/3356549231.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"3356549231-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"3356549231-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20027,48230,'_wp_attached_file','2021/11/1837654085.jpg'),(20028,48230,'_aioseop_opengraph_settings','a:0:{}'),(20029,48230,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/1837654085.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1837654085-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"1837654085-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20033,48234,'_wp_attached_file','2021/11/2161867666.jpg'),(20034,48234,'_aioseop_opengraph_settings','a:0:{}'),(20035,48234,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/2161867666.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"2161867666-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"2161867666-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20036,48235,'_wp_attached_file','2021/11/1037121607.jpg'),(20037,48235,'_aioseop_opengraph_settings','a:0:{}'),(20038,48235,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/1037121607.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1037121607-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"1037121607-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20039,48236,'_wp_attached_file','2021/11/2010366152.jpg'),(20040,48236,'_aioseop_opengraph_settings','a:0:{}'),(20041,48236,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/2010366152.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"2010366152-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"2010366152-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20042,48237,'_wp_attached_file','2021/11/3703037842.jpg'),(20043,48237,'_aioseop_opengraph_settings','a:0:{}'),(20044,48237,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/3703037842.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"3703037842-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"3703037842-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20045,48238,'_wp_attached_file','2021/11/1351580429.jpg'),(20046,48238,'_aioseop_opengraph_settings','a:0:{}'),(20047,48238,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/1351580429.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1351580429-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"1351580429-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20048,48239,'_wp_attached_file','2021/11/2433087555.jpg'),(20049,48239,'_aioseop_opengraph_settings','a:0:{}'),(20050,48239,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/2433087555.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"2433087555-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"2433087555-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20051,48240,'_wp_attached_file','2021/11/1469522131.jpg'),(20052,48240,'_aioseop_opengraph_settings','a:0:{}'),(20053,48240,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/1469522131.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1469522131-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"1469522131-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20054,48241,'_wp_attached_file','2021/11/2835185459.jpg'),(20055,48241,'_aioseop_opengraph_settings','a:0:{}'),(20056,48241,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/2835185459.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"2835185459-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"2835185459-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20057,48242,'_wp_attached_file','2021/11/1448263289.jpg'),(20058,48242,'_aioseop_opengraph_settings','a:0:{}'),(20059,48242,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/1448263289.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1448263289-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"1448263289-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20060,48243,'_wp_attached_file','2021/11/473082777.jpg'),(20061,48243,'_aioseop_opengraph_settings','a:0:{}'),(20062,48243,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:21:\"2021/11/473082777.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"473082777-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:19:\"473082777-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20063,48244,'_wp_attached_file','2021/11/2684734871.jpg'),(20064,48244,'_aioseop_opengraph_settings','a:0:{}'),(20065,48244,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/2684734871.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"2684734871-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"2684734871-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20066,48245,'_wp_attached_file','2021/11/140405431.jpg'),(20067,48245,'_aioseop_opengraph_settings','a:0:{}'),(20068,48245,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:21:\"2021/11/140405431.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"140405431-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:19:\"140405431-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20069,48246,'_wp_attached_file','2021/11/2624835932.jpg'),(20070,48246,'_aioseop_opengraph_settings','a:0:{}'),(20071,48246,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/2624835932.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"2624835932-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"2624835932-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20072,48247,'_wp_attached_file','2021/11/2422755891.jpg'),(20073,48247,'_aioseop_opengraph_settings','a:0:{}'),(20074,48247,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/2422755891.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"2422755891-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"2422755891-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20078,48251,'_wp_attached_file','2021/11/308086147.jpg'),(20079,48251,'_aioseop_opengraph_settings','a:0:{}'),(20080,48251,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:21:\"2021/11/308086147.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"308086147-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:19:\"308086147-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20081,48252,'_wp_attached_file','2021/11/1342974363.jpg'),(20082,48252,'_aioseop_opengraph_settings','a:0:{}'),(20083,48252,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/1342974363.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1342974363-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"1342974363-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20084,48253,'_wp_attached_file','2021/11/3521851112.jpg'),(20085,48253,'_aioseop_opengraph_settings','a:0:{}'),(20086,48253,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/3521851112.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"3521851112-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"3521851112-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20087,48254,'_wp_attached_file','2021/11/2646962494.jpg'),(20088,48254,'_aioseop_opengraph_settings','a:0:{}'),(20089,48254,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/2646962494.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"2646962494-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"2646962494-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20090,48255,'_wp_attached_file','2021/11/1116742571.jpg'),(20091,48255,'_aioseop_opengraph_settings','a:0:{}'),(20092,48255,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/1116742571.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1116742571-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"1116742571-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20093,48256,'_wp_attached_file','2021/11/1379676566.jpg'),(20094,48256,'_aioseop_opengraph_settings','a:0:{}'),(20095,48256,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/1379676566.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1379676566-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"1379676566-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20096,48257,'_wp_attached_file','2021/11/1765430482.jpg'),(20097,48257,'_aioseop_opengraph_settings','a:0:{}'),(20098,48257,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/1765430482.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1765430482-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"1765430482-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20099,48258,'_wp_attached_file','2021/11/2686857844.jpg'),(20100,48258,'_aioseop_opengraph_settings','a:0:{}'),(20101,48258,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/2686857844.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"2686857844-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"2686857844-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20102,48259,'_wp_attached_file','2021/11/59943168.jpg'),(20103,48259,'_aioseop_opengraph_settings','a:0:{}'),(20104,48259,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:20:\"2021/11/59943168.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"59943168-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:18:\"59943168-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20105,48260,'_wp_attached_file','2021/11/3435574119.jpg'),(20106,48260,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/3435574119.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"3435574119-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"3435574119-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20107,48261,'_wp_attached_file','2021/11/3435574119-1.jpg'),(20108,48261,'_aioseop_opengraph_settings','a:0:{}'),(20109,48261,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:24:\"2021/11/3435574119-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"3435574119-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:22:\"3435574119-1-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20110,48262,'_wp_attached_file','2021/11/296491289.jpg'),(20111,48262,'_aioseop_opengraph_settings','a:0:{}'),(20112,48262,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:21:\"2021/11/296491289.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"296491289-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:19:\"296491289-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20113,48263,'_wp_attached_file','2021/11/3240569157.jpg'),(20114,48263,'_aioseop_opengraph_settings','a:0:{}'),(20115,48263,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/11/3240569157.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"3240569157-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:20:\"3240569157-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20119,45969,'_wp_old_date','2021-10-29'),(20120,45968,'_wp_old_date','2021-10-29'),(20121,46669,'_wp_old_date','2021-10-29'),(20122,47292,'_wp_old_date','2021-10-29'),(20123,47299,'_wp_old_date','2021-10-29'),(20124,46668,'_wp_old_date','2021-10-29'),(20125,47728,'_wp_old_date','2021-10-29'),(20126,47297,'_wp_old_date','2021-10-29'),(20127,47294,'_wp_old_date','2021-10-29'),(20128,47296,'_wp_old_date','2021-10-29'),(20129,47298,'_wp_old_date','2021-10-29'),(20130,47295,'_wp_old_date','2021-10-29'),(20131,47854,'_wp_old_date','2021-10-29'),(20132,45967,'_wp_old_date','2021-10-29'),(20133,47293,'_wp_old_date','2021-10-29'),(20134,46670,'_wp_old_date','2021-10-29'),(20135,45966,'_wp_old_date','2021-10-29'),(20136,47214,'_wp_old_date','2021-10-29'),(20137,47307,'_wp_old_date','2021-10-29'),(20138,47305,'_wp_old_date','2021-10-29'),(20139,47213,'_wp_old_date','2021-10-29'),(20141,47312,'_wp_old_date','2021-10-29'),(20143,47311,'_wp_old_date','2021-10-29'),(20144,47313,'_wp_old_date','2021-10-29'),(20146,47308,'_wp_old_date','2021-10-29'),(20147,47516,'_wp_old_date','2021-10-29'),(20148,47215,'_wp_old_date','2021-10-29'),(20149,47518,'_wp_old_date','2021-10-29'),(20175,46565,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 15:16:24\";}'),(20176,46565,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 15:16:25\";}'),(20177,46565,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 15:16:22\";}'),(20179,46446,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-17 18:24:32\";}'),(20180,46446,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-17 18:24:29\";}'),(20181,46446,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-17 18:24:35\";}'),(20183,46559,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-14 01:39:17\";}'),(20184,46559,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-14 01:39:19\";}'),(20185,46559,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-14 01:39:19\";}'),(20187,46436,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-11 00:24:55\";}'),(20188,46436,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-11 00:24:53\";}'),(20189,46436,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-11 00:24:51\";}'),(20190,46327,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-17 06:31:46\";}'),(20191,46327,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-17 06:31:44\";}'),(20192,46327,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-17 06:31:45\";}'),(20194,46448,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-20 10:26:29\";}'),(20195,46448,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-20 10:26:32\";}'),(20196,46448,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-20 10:26:31\";}'),(20198,46564,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-05-09 19:05:32\";}'),(20199,46564,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-05-09 19:05:27\";}'),(20200,46564,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-01-21 17:38:56\";}'),(20201,46340,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 11:21:57\";}'),(20202,46340,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 11:21:59\";}'),(20203,46340,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 11:22:02\";}'),(20204,46431,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-04-27 19:51:55\";}'),(20205,46431,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-04-27 19:51:53\";}'),(20206,46431,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-04-27 19:51:49\";}'),(20208,46479,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-31 19:37:35\";}'),(20209,46479,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-31 19:37:38\";}'),(20210,46479,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-31 19:37:33\";}'),(20212,46371,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-13 08:28:31\";}'),(20213,46371,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-13 08:28:29\";}'),(20214,46371,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-13 08:28:32\";}'),(20220,46486,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-17 14:19:42\";}'),(20221,46486,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-17 14:19:45\";}'),(20222,46486,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-17 14:19:48\";}'),(20225,46372,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 07:21:45\";}'),(20226,46372,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 07:21:45\";}'),(20227,46372,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 07:21:45\";}'),(20230,46374,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 15:42:38\";}'),(20231,46374,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 15:42:39\";}'),(20232,46374,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 15:42:37\";}'),(20234,46351,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 05:17:16\";}'),(20235,46351,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 05:17:15\";}'),(20236,46351,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 05:17:17\";}'),(20238,46342,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-19 13:38:54\";}'),(20239,46342,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-19 13:38:54\";}'),(20240,46342,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-19 13:38:54\";}'),(20242,46421,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-14 18:28:31\";}'),(20243,46421,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-14 18:28:31\";}'),(20244,46421,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-14 18:28:31\";}'),(20246,46338,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-09 00:18:27\";}'),(20247,46338,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-09 00:18:27\";}'),(20248,46338,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-09 00:18:27\";}'),(20250,46563,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-19 13:58:21\";}'),(20251,46563,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-19 13:58:21\";}'),(20252,46563,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-19 13:58:21\";}'),(20254,46418,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 07:31:25\";}'),(20255,46418,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 07:31:26\";}'),(20256,46418,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 07:31:27\";}'),(20258,46480,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-17 14:10:16\";}'),(20259,46480,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-17 14:10:11\";}'),(20260,46480,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-17 14:10:07\";}'),(20279,46557,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 04:23:57\";}'),(20280,46557,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 04:23:55\";}'),(20281,46557,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 04:23:58\";}'),(20283,46347,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-13 15:40:46\";}'),(20284,46347,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-13 15:40:49\";}'),(20285,46347,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-13 15:40:48\";}'),(20287,46504,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-17 15:15:44\";}'),(20288,46504,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-17 15:15:47\";}'),(20289,46504,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-30 16:15:41\";}'),(20291,46492,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 02:03:14\";}'),(20292,46492,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 02:03:11\";}'),(20293,46492,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 02:03:18\";}'),(20295,46442,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-07 02:46:16\";}'),(20296,46442,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-07 02:46:17\";}'),(20297,46442,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-07 02:46:18\";}'),(20298,46496,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-05-29 18:17:15\";}'),(20299,46496,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-05-29 18:17:16\";}'),(20300,46496,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-05-29 18:17:17\";}'),(20311,46415,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-06 09:46:22\";}'),(20312,46415,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-06 09:46:20\";}'),(20313,46415,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-06 09:46:23\";}'),(20315,46445,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-08 20:55:18\";}'),(20316,46445,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-08 20:55:18\";}'),(20317,46445,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-08 20:55:18\";}'),(20319,46439,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-16 12:17:14\";}'),(20320,46439,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-16 12:20:03\";}'),(20321,46439,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-16 12:17:17\";}'),(20324,46337,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 16:08:28\";}'),(20325,46337,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 16:08:31\";}'),(20326,46337,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 16:08:30\";}'),(20327,46384,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 03:01:31\";}'),(20328,46384,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 03:01:31\";}'),(20329,46384,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 03:01:31\";}'),(20331,46373,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-12 06:47:20\";}'),(20332,46373,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-12 06:47:21\";}'),(20333,46373,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-12 06:47:19\";}'),(20335,46377,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 08:24:01\";}'),(20336,46377,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 08:24:02\";}'),(20337,46377,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 08:24:00\";}'),(20338,46450,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 02:38:31\";}'),(20339,46450,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 02:38:30\";}'),(20340,46450,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 02:38:32\";}'),(20342,46335,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-19 20:50:38\";}'),(20343,46335,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-19 20:50:41\";}'),(20344,46335,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-19 20:50:39\";}'),(20346,46420,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 05:09:24\";}'),(20347,46420,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 05:09:27\";}'),(20348,46420,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 05:09:26\";}'),(20349,46546,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-17 01:52:44\";}'),(20350,46546,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-17 01:52:41\";}'),(20351,46546,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-17 01:52:43\";}'),(20353,46555,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 04:50:15\";}'),(20354,46555,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 04:50:17\";}'),(20355,46555,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 04:50:18\";}'),(20357,46422,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-28 09:33:48\";}'),(20358,46422,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-28 09:33:49\";}'),(20359,46422,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-28 09:33:47\";}'),(20362,46388,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-14 05:14:42\";}'),(20363,46388,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-14 05:14:40\";}'),(20364,46388,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-14 05:14:44\";}'),(20365,46376,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-02 06:14:38\";}'),(20366,46376,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-02 06:14:35\";}'),(20367,46376,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-02 06:14:33\";}'),(20369,46541,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-20 12:52:32\";}'),(20370,46541,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-20 12:52:30\";}'),(20371,46541,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-20 12:52:33\";}'),(20373,46543,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 04:31:07\";}'),(20374,46543,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 04:31:06\";}'),(20375,46543,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 04:31:04\";}'),(20377,46341,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 23:34:49\";}'),(20378,46341,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 23:34:47\";}'),(20379,46341,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 23:34:50\";}'),(20380,46413,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-13 08:47:44\";}'),(20381,46413,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-13 08:47:41\";}'),(20382,46413,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-13 08:47:43\";}'),(20385,46511,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-19 04:26:53\";}'),(20386,46511,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-19 04:26:55\";}'),(20387,46511,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-19 04:26:57\";}'),(20388,46414,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-12 15:12:50\";}'),(20389,46414,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-12 15:12:53\";}'),(20390,46414,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-12 15:12:52\";}'),(20392,46343,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-14 13:34:46\";}'),(20393,46343,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-14 13:34:47\";}'),(20394,46343,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-14 13:34:47\";}'),(20396,46368,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-14 19:20:12\";}'),(20397,46368,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-14 19:20:16\";}'),(20398,46368,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-14 19:20:14\";}'),(20400,46375,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-04-29 19:36:26\";}'),(20401,46375,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-04-29 19:36:30\";}'),(20402,46375,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-04-29 19:36:29\";}'),(20404,46499,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-18 09:26:44\";}'),(20405,46499,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-18 09:26:41\";}'),(20406,46499,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-18 09:26:39\";}'),(20408,46369,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-16 20:06:37\";}'),(20409,46369,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-16 20:06:35\";}'),(20410,46369,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-16 20:06:38\";}'),(20412,46503,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-15 12:59:33\";}'),(20413,46503,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-15 12:59:31\";}'),(20414,46503,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-15 12:59:34\";}'),(20416,46506,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-01 22:59:33\";}'),(20417,46506,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-01 22:59:36\";}'),(20418,46506,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-01 22:59:37\";}'),(20419,46478,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-26 17:32:37\";}'),(20420,46478,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-26 17:32:39\";}'),(20421,46478,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-26 17:32:40\";}'),(20423,46350,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-14 13:50:34\";}'),(20424,46350,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-14 13:50:33\";}'),(20425,46350,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-14 13:50:31\";}'),(20426,46370,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-13 11:37:28\";}'),(20427,46370,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-13 11:37:28\";}'),(20428,46370,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-13 11:37:27\";}'),(20431,46553,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-28 18:55:34\";}'),(20432,46553,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-28 18:55:34\";}'),(20433,46553,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-28 18:55:34\";}'),(20434,46378,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-08 19:48:32\";}'),(20435,46378,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-08 19:48:32\";}'),(20436,46378,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-08 19:48:32\";}'),(20438,46482,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 20:36:18\";}'),(20439,46482,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 20:36:18\";}'),(20440,46482,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 20:36:18\";}'),(20442,46386,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-31 20:04:29\";}'),(20443,46386,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-31 20:04:32\";}'),(20444,46386,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-31 20:04:31\";}'),(20445,46540,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-12 08:17:34\";}'),(20446,46540,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-12 08:17:34\";}'),(20447,46540,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-12 08:17:34\";}'),(20449,46367,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-20 19:28:42\";}'),(20450,46367,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-20 19:28:43\";}'),(20451,46367,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-20 19:28:44\";}'),(20454,46502,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 16:34:36\";}'),(20455,46502,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 16:34:37\";}'),(20456,46502,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 16:34:35\";}'),(20457,46381,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-08 04:29:35\";}'),(20458,46381,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-08 04:29:36\";}'),(20459,46381,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-08 04:29:37\";}'),(20460,46383,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-14 12:20:32\";}'),(20461,46383,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-14 12:20:33\";}'),(20462,46383,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-14 12:20:34\";}'),(20465,46332,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 02:09:23\";}'),(20466,46332,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 02:09:23\";}'),(20467,46332,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 02:09:23\";}'),(20468,46512,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-21 13:37:38\";}'),(20469,46512,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-21 13:37:42\";}'),(20470,46512,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-21 13:37:41\";}'),(20472,46385,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-01 20:50:49\";}'),(20473,46385,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-01 20:50:52\";}'),(20474,46385,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-01 20:50:51\";}'),(20476,46489,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-12 16:06:24\";}'),(20477,46489,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-12 16:06:27\";}'),(20478,46489,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-12 16:06:28\";}'),(20481,46501,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-19 18:03:14\";}'),(20482,46501,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-19 18:03:16\";}'),(20483,46501,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-19 18:03:17\";}'),(20484,46433,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 02:15:54\";}'),(20485,46433,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 02:15:53\";}'),(20486,46433,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 02:15:52\";}'),(20488,46423,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-10 08:18:08\";}'),(20489,46423,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-10 08:18:12\";}'),(20490,46423,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-10 08:18:14\";}'),(20492,46348,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 06:52:38\";}'),(20493,46348,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 06:52:39\";}'),(20494,46348,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-18 06:52:40\";}'),(20499,46500,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-14 03:09:22\";}'),(20500,46500,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-14 03:09:21\";}'),(20501,46500,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-14 03:09:19\";}'),(20503,46508,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-19 14:27:35\";}'),(20504,46508,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-19 14:27:35\";}'),(20505,46508,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-19 14:27:35\";}'),(20509,46509,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-11 05:48:10\";}'),(20511,46509,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-11 05:48:13\";}'),(20512,46509,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-20 23:58:01\";}'),(20513,46380,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-08 13:30:09\";}'),(20514,46380,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-08 13:30:05\";}'),(20515,46380,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-08 13:30:07\";}'),(20516,46346,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-17 04:30:32\";}'),(20517,46346,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-12 17:13:28\";}'),(20518,46346,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-17 04:30:25\";}'),(20522,46352,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 07:25:58\";}'),(20523,46352,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 07:25:58\";}'),(20524,46352,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 07:25:58\";}'),(20525,46444,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-08 20:53:28\";}'),(20526,46444,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-08 20:53:28\";}'),(20527,46444,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-08 20:53:28\";}'),(20528,46387,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 04:25:33\";}'),(20529,46387,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 04:25:33\";}'),(20530,46387,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 04:25:33\";}'),(20531,46345,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-19 04:39:53\";}'),(20532,46345,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-19 04:39:54\";}'),(20533,46345,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-19 04:39:50\";}'),(20534,46561,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-17 10:50:04\";}'),(20535,46561,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-17 10:50:03\";}'),(20536,46561,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-07-17 10:50:05\";}'),(20537,46344,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 17:31:04\";}'),(20538,46344,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 17:31:06\";}'),(20539,46344,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 17:31:07\";}'),(20540,46419,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-04 07:09:13\";}'),(20541,46419,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-04 07:09:25\";}'),(20542,46419,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-06-04 07:09:18\";}'),(20543,46493,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-07 00:55:17\";}'),(20544,46493,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-07 00:55:18\";}'),(20545,46493,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-07 00:55:14\";}'),(20546,46549,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-04-17 07:08:38\";}'),(20547,46549,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-04-17 07:08:38\";}'),(20548,46549,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-04-17 07:08:38\";}'),(20550,46551,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 10:57:48\";}'),(20551,46551,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 10:57:48\";}'),(20552,46551,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-22 10:57:48\";}'),(20553,48280,'_wp_attached_file','2021/11/CUSTOM-1069294-Badge.jpg'),(20554,48280,'_aioseop_opengraph_settings','a:0:{}'),(20555,48280,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:575;s:6:\"height\";i:794;s:4:\"file\";s:32:\"2021/11/CUSTOM-1069294-Badge.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"CUSTOM-1069294-Badge-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"CUSTOM-1069294-Badge-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:32:\"CUSTOM-1069294-Badge-507x700.jpg\";s:5:\"width\";i:507;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:32:\"CUSTOM-1069294-Badge-362x500.jpg\";s:5:\"width\";i:362;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:32:\"CUSTOM-1069294-Badge-575x630.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:30:\"CUSTOM-1069294-Badge-54x75.jpg\";s:5:\"width\";i:54;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"CUSTOM-1069294-Badge-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"CUSTOM-1069294-Badge-575x675.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"CUSTOM-1069294-Badge-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"CUSTOM-1069294-Badge-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"CUSTOM-1069294-Badge-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:32:\"CUSTOM-1069294-Badge-480x663.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:663;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20556,48281,'_wp_attached_file','2021/11/PGI_01_ID175944739_df738a9498761b9c8568d1b34962d041-Badge.jpg'),(20557,48281,'_aioseop_opengraph_settings','a:0:{}'),(20558,48281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:575;s:6:\"height\";i:794;s:4:\"file\";s:69:\"2021/11/PGI_01_ID175944739_df738a9498761b9c8568d1b34962d041-Badge.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:69:\"PGI_01_ID175944739_df738a9498761b9c8568d1b34962d041-Badge-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:69:\"PGI_01_ID175944739_df738a9498761b9c8568d1b34962d041-Badge-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:69:\"PGI_01_ID175944739_df738a9498761b9c8568d1b34962d041-Badge-507x700.jpg\";s:5:\"width\";i:507;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:69:\"PGI_01_ID175944739_df738a9498761b9c8568d1b34962d041-Badge-362x500.jpg\";s:5:\"width\";i:362;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:69:\"PGI_01_ID175944739_df738a9498761b9c8568d1b34962d041-Badge-575x630.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:67:\"PGI_01_ID175944739_df738a9498761b9c8568d1b34962d041-Badge-54x75.jpg\";s:5:\"width\";i:54;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:69:\"PGI_01_ID175944739_df738a9498761b9c8568d1b34962d041-Badge-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:69:\"PGI_01_ID175944739_df738a9498761b9c8568d1b34962d041-Badge-575x675.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:69:\"PGI_01_ID175944739_df738a9498761b9c8568d1b34962d041-Badge-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:69:\"PGI_01_ID175944739_df738a9498761b9c8568d1b34962d041-Badge-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:69:\"PGI_01_ID175944739_df738a9498761b9c8568d1b34962d041-Badge-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:69:\"PGI_01_ID175944739_df738a9498761b9c8568d1b34962d041-Badge-480x663.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:663;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20571,48285,'_wp_attached_file','2021/11/Zombie.png'),(20572,48285,'_aioseop_opengraph_settings','a:0:{}'),(20573,48285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:466;s:6:\"height\";i:250;s:4:\"file\";s:18:\"2021/11/Zombie.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Zombie-300x161.png\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Zombie-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:16:\"Zombie-75x40.png\";s:5:\"width\";i:75;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"Zombie-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"Zombie-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"Zombie-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;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:{}}}'),(20580,48287,'_wp_attached_file','2021/11/women-owned-2021.jpg'),(20581,48287,'_aioseop_opengraph_settings','a:0:{}'),(20582,48287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:575;s:6:\"height\";i:794;s:4:\"file\";s:28:\"2021/11/women-owned-2021.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"women-owned-2021-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"women-owned-2021-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:28:\"women-owned-2021-507x700.jpg\";s:5:\"width\";i:507;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:28:\"women-owned-2021-362x500.jpg\";s:5:\"width\";i:362;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:28:\"women-owned-2021-575x630.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:26:\"women-owned-2021-54x75.jpg\";s:5:\"width\";i:54;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"women-owned-2021-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"women-owned-2021-575x675.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"women-owned-2021-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"women-owned-2021-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"women-owned-2021-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:28:\"women-owned-2021-480x663.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:663;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20598,48287,'_wp_attachment_image_alt','as published in buffalo business first September 2021 largest buffalo women-owned businesses 2021'),(20599,48285,'_wp_attachment_image_alt','beware of zombies apocalypse survival tips cases that return from the beyond, with Melanie D. and Shannan M.'),(20600,48281,'_wp_attachment_image_alt','as published in buffalo business first september 2021 largest buffalo women-owned businesses 2021 the law offices of melissa a. day, pllc'),(20601,48280,'_wp_attachment_image_alt','as published in buffalo business first september 2021 largest buffalo women-owned businesses 2021'),(20602,48263,'_wp_attachment_image_alt','case law update Jan 2016'),(20603,48262,'_wp_attachment_image_alt','basic issues of compensability Feb 2016'),(20604,48261,'_wp_attachment_image_alt','essential elements of an occupational disease Mar 2016'),(20605,48260,'_wp_attachment_image_alt','essential elements of an occupational disease Mar 2016'),(20606,48259,'_wp_attachment_image_alt','notice and timely claim filing APR 2016'),(20607,48258,'_wp_attachment_image_alt','causal relationship May 2016'),(20608,48257,'_wp_attachment_image_alt','arising out of and in the course of employment June 2016'),(20609,48256,'_wp_attachment_image_alt','average weekly wage July 2016'),(20610,48255,'_wp_attachment_image_alt','medical benefits Aug 2016'),(20611,48254,'_wp_attachment_image_alt','indemnity benefits Sept 2016'),(20612,48253,'_wp_attachment_image_alt','fraud: material misrepresentations for the purpose of obtaining compensation Oct 2016'),(20613,48252,'_wp_attachment_image_alt','settling claims Nov 2016'),(20614,48251,'_wp_attachment_image_alt','third party actions Dec 2016'),(20615,48247,'_wp_attachment_image_alt','case law update Jan 2017'),(20616,48246,'_wp_attachment_image_alt','serious facial disfigurement Feb 2017'),(20617,48245,'_wp_attachment_image_alt','essential elements of an accident Feb 2017'),(20618,48244,'_wp_attachment_image_alt','loss of wage earning capacity including survey of board panel decisions March 2017'),(20619,48243,'_wp_attachment_image_alt','essential elements of an occupational disease March 2017'),(20620,48242,'_wp_attachment_image_alt','notice and timely claim filing April 2017'),(20621,48241,'_wp_attachment_image_alt','2017 workers\' compensation reforms... now what? April 2017'),(20622,48240,'_wp_attachment_image_alt','causal relationships May 2017'),(20623,48239,'_wp_attachment_image_alt','non-acute pain medical treatment guidelines and opioids May 2017 May 2017'),(20624,48238,'_wp_attachment_image_alt','advanced labor market litigation June 2017'),(20625,48237,'_wp_attachment_image_alt','the law offices of melissa a. day new york workers\' compensation basic issues of compensability webinar series Today\'s topic The \"average\" weekly wagew'),(20626,48236,'_wp_attachment_image_alt','the law offices of melissa a. day new york workers\' compensation basic issues of compensability webinar series Today\'s topic medical benefits: basic bill processing'),(20627,48235,'_wp_attachment_image_alt','the law offices of melissa a. day new york workers\' compensation basic issues of compensability webinar series Today\'s topic indemnity benefits'),(20628,48234,'_wp_attachment_image_alt','the law offices of melissa a. day new york workers\' compensation basic issues of compensability webinar series Today\'s topic fraud: material misrepresentations'),(20629,48230,'_wp_attachment_image_alt','featuring henry b. tilson James b. cousins May 25, 2018 12 p.m. you can\'t have your diaper cake and eat it too'),(20630,48229,'_wp_attachment_image_alt','featuring melissa a. day & brian k. prince June 22, 2018 12 p.m. notice... the difference: how to win with a section 18 defense'),(20631,48228,'_wp_attachment_image_alt','featuring robert j. caggiano & melissa a. day July 27, 2018 12 p.m.'),(20632,48227,'_wp_attachment_image_alt','featuring: joshua d. sroka & megan b. szeliga current issues regarding labor market attachment in new york state workers\' compensation law august 24, 2018 12 p.m.'),(20633,48226,'_wp_attachment_image_alt','featuring henry b. tilson & brian k. prince september 28, 2018 12 p.m.'),(20634,48225,'_wp_attachment_image_alt','psst... have you heard the news? melissa a. day & shannan m. mackey october 26, 2018 12 p.m.'),(20635,48224,'_wp_attachment_image_alt','these are a few of our favorite things with the lomad players november 30, 2018 12 p.m.'),(20636,48223,'_wp_attachment_image_alt','2018 year in review: case law update with james cousins December 28, 2018 12 p.m.'),(20637,47868,'_wp_attachment_image_alt','photo of attorney Brian K. Prince'),(20638,48015,'_wp_attachment_image_alt','photo of Legal Assistant Danielle F. Draschan '),(20639,48014,'_wp_attachment_image_alt','photo of Legal Assistant Corrine N. Newman'),(20640,48013,'_wp_attachment_image_alt','photo of Legal Assistant Jessica M. Stevens'),(20641,48012,'_wp_attachment_image_alt','photo of Legal Analyst Francis Christiano'),(20642,48007,'_wp_attachment_image_alt','photo of Executive Assistant Kelesy Kunze'),(20643,48000,'_wp_attachment_image_alt','as published in buffalo business first September 2020 largest buffalo women-owned businesses 2020'),(20644,47875,'_wp_attachment_image_alt','as published in buffalo business first September 2019 largest buffalo women-owned businesses 2019'),(20645,47874,'_wp_attachment_image_alt','as published in buffalo business first 2020 largest buffalo law firms 2020'),(20646,47867,'_wp_attachment_image_alt','photo of associate attorney Shannan M. Mackey'),(20647,47866,'_wp_attachment_image_alt','photo of associate attorney Paul B. Kornacki'),(20648,47865,'_wp_attachment_image_alt','photo of associate attorney Alexis D. Hatten'),(20649,47864,'_wp_attachment_image_alt','photo of associate attorney Katrina Gray'),(20650,47863,'_wp_attachment_image_alt','photo of associate attorney Andrew Gould'),(20651,47862,'_wp_attachment_image_alt','photo of attorney Mary Frances Schnorr'),(20652,47860,'_wp_attachment_image_alt','photo of associate attorney Neil A. Diegelman'),(20653,47859,'_wp_attachment_image_alt','photo of attorney Melissa A. Day'),(20654,47858,'_wp_attachment_image_alt','photo of associate attorney Melanie A. Daly'),(20655,47857,'_wp_attachment_image_alt','photo of attorney James B. Cousins'),(20656,47856,'_wp_attachment_image_alt','photo of Cassandra E. Christman'),(20657,47855,'_wp_attachment_image_alt','photo of associate attorney Vicki L. Buehler'),(20658,47838,'_wp_attachment_image_alt','The Law Offices of Melissa A. Day, PLLC'),(20659,47836,'_wp_attachment_image_alt','The Law Offices of Melissa A. Day, PLLC'),(20660,47835,'_wp_attachment_image_alt','The Law Offices of Melissa A. Day, PLLC'),(20661,47729,'_wp_attachment_image_alt','The Law Offices of Melissa A. Day, PLLC'),(20662,47712,'_wp_attachment_image_alt','attorneys Melissa A. Day and James B. Cousins'),(20663,47694,'_wp_attachment_image_alt','attorneys James B. Cousins and Melissa A. Day'),(20664,47599,'_wp_attachment_image_alt','photo of attorney Brian K. Prince'),(20665,47598,'_wp_attachment_image_alt','Deposition Coordinator Daniel H. Flynn'),(20666,47597,'_wp_attachment_image_alt','associate attorney Vicki L. Buehler'),(20667,47596,'_wp_attachment_image_alt','photo of associate attorney Alexis D. Hatten'),(20668,47594,'_wp_attachment_image_alt','photo of attorney Mary Frances Schnorr'),(20669,47593,'_wp_attachment_image_alt','photo of associate attorney Neil A. Diegelman'),(20670,47592,'_wp_attachment_image_alt','photo of associate attorney Melanie A. Daly'),(20671,47591,'_wp_attachment_image_alt','Legal Assistant Jessica M. Stevens'),(20672,47590,'_wp_attachment_image_alt','photo of associate attorney Shannan M. Mackey'),(20673,47587,'_wp_attachment_image_alt','attorney Kristen Degnan'),(20674,47586,'_wp_attachment_image_alt','Legal Assistant Danielle F. Draschan '),(20675,47585,'_wp_attachment_image_alt','legal assistant Jody L. Guiher'),(20676,47584,'_wp_attachment_image_alt','legal assistant Jenny L. Malkowski'),(20677,47583,'_wp_attachment_image_alt','Deposition Coordinator Hannah E. Kim'),(20678,47579,'_wp_attachment_image_alt','Legal Assistant Susan Eick'),(20679,47578,'_wp_attachment_image_alt','Hearing Coordinator Jillian M. Chavers'),(20680,47577,'_wp_attachment_image_alt','legal assistant Rebecca C. Brashear'),(20681,47575,'_wp_attachment_image_alt','Assistant Office Manager Elena N. Camp'),(20682,47572,'_wp_attachment_image_alt','legal analyst Thomas M. Dickinson'),(20683,47570,'_wp_attachment_image_alt','photo of associate attorney Andrew Gould'),(20684,47567,'_wp_attachment_image_alt','photo of associate attorney Brendan T. Shannon'),(20685,47562,'_wp_attachment_image_alt','photo of associate attorney Cassandra E. Christman'),(20686,47554,'_wp_attachment_image_alt','Teresa Cleary'),(20687,47551,'_wp_attachment_image_alt','photo of associate attorney Paul B. Kornacki'),(20688,47548,'_wp_attachment_image_alt','photo of associate attorney Katrina Gray'),(20689,47545,'_wp_attachment_image_alt','photo of attorney James B. Cousins'),(20690,47542,'_wp_attachment_image_alt','photo of attorney Melissa A. Day'),(20691,47513,'_wp_attachment_image_alt','The Law Offices of Melissa A. Day, PLLC'),(20692,47338,'_wp_attachment_image_alt','Empire State Development New York State Certified Women-Owned Business Enterprise'),(20693,47337,'_wp_attachment_image_alt','as published in buffalo business first 2021 largest buffalo law firms 2021'),(20694,47336,'_wp_attachment_image_alt','as published in buffalo business first, april best places to work businesses with fun & fulfilling company cultures 2021'),(20695,47268,'_wp_attachment_image_alt','blog'),(20696,47267,'_wp_attachment_image_alt','The Law Offices of Melissa A. Day, PLLC'),(20697,47266,'_wp_attachment_image_alt','blog'),(20698,47265,'_wp_attachment_image_alt','blog'),(20699,47101,'_wp_attachment_image_alt','LOMAD-TV'),(20700,47100,'_wp_attachment_image_alt','LOMAD newsletter'),(20701,47099,'_wp_attachment_image_alt','the teams'),(20702,47095,'_wp_attachment_image_alt','The Law Offices of Melissa A. Day, PLLC'),(20703,47029,'_wp_attachment_image_alt','Office location street map'),(20704,47028,'_wp_attachment_image_alt','Office location street map'),(20705,46988,'_wp_attachment_image_alt','The Law Offices of Melissa A. Day, PLLC'),(20706,46976,'_wp_attachment_image_alt','LOMAD-TV'),(20707,46833,'_wp_attachment_image_alt','The Law Offices of Melissa A. Day, PLLC'),(20708,46773,'_wp_attachment_image_alt','The Law Offices of Melissa A. Day, PLLC'),(20709,46767,'_wp_attachment_image_alt','blog'),(20710,46766,'_wp_attachment_image_alt','the teams'),(20711,46313,'_wp_attachment_image_alt','blog'),(20712,46312,'_wp_attachment_image_alt','the teams'),(20713,46214,'_wp_attachment_image_alt','legal assisatant Justice C. Williams'),(20714,46094,'_wp_attachment_image_alt','The Law Offices of Melissa A. Day, PLLC'),(20715,46227,'_wp_attachment_image_alt','as published in buffalo business first, april best places to work businesses with fun & fulfilling company cultures 2021'),(20815,47214,'_wp_old_date','2021-11-15'),(20816,47307,'_wp_old_date','2021-11-15'),(20817,47305,'_wp_old_date','2021-11-15'),(20818,47213,'_wp_old_date','2021-11-15'),(20820,47312,'_wp_old_date','2021-11-15'),(20821,47311,'_wp_old_date','2021-11-15'),(20822,47313,'_wp_old_date','2021-11-15'),(20823,47308,'_wp_old_date','2021-11-15'),(20824,47516,'_wp_old_date','2021-11-15'),(20825,47215,'_wp_old_date','2021-11-15'),(20826,47518,'_wp_old_date','2021-11-15'),(20850,46444,'_et_monarch_override',''),(20852,46444,'_aioseop_title','An Employee Cannot be… | The Law Offices of Melissa A. Day, PLLC'),(20853,46444,'_oembed_441771d31e4721569b9a93f2ba7991db','{{unknown}}'),(20854,46444,'_oembed_1af3624c63cc907c3dbc577a4e7aceef','{{unknown}}'),(20858,46444,'_oembed_d3a7748250cd3e3eed01e1e23f804797','{{unknown}}'),(20859,46551,'_et_monarch_override',''),(20861,46551,'_aioseop_title','DID YOU KNOW? 25-A IS GOING AWAY. | The Law Offices of Melissa A. Day, PLLC'),(20865,46418,'_et_monarch_override',''),(20867,46418,'_aioseop_title','Ricky Costner Jr., 18 Year Old Slain by a Deranged Co-Worker, Honored by Family and Friends | The Law Offices of Melissa A. Day, PLLC'),(20876,46436,'_et_monarch_override',''),(20878,46436,'_aioseop_title','TO WEAN, OR NOT TO WEAN, THAT IS THE QUESTION. | The Law Offices of Melissa A. Day, PLLC'),(20879,46436,'_oembed_bcce2226ee88ea1ea72b2e48cb3849e9','{{unknown}}'),(20880,46436,'_oembed_47fb214bd84b1127ddbf03c949c8763f','{{unknown}}'),(20889,46555,'_et_monarch_override',''),(20891,46555,'_aioseop_title','DID YOU KNOW? The Federal Government Is Not Subject to the Jurisdiction of the NY Workers’ Compensation Board on a Theory of General/Special Employment? | The Law Offices of Melissa A. Day, PLLC'),(20895,46543,'_et_monarch_override',''),(20901,46543,'_aioseop_title','DID YOU KNOW? THE THIRD DEPARTMENT HOLDS THAT MEDICAL TREATMENT WHICH IS NOT SPECIFICALLY INCLUDED IN THE MTG IS PRESUMPTIVELY NOT MEDICALLY NECESSARY. | The Law Offices of Melissa A. Day, PLLC'),(20902,48329,'_wp_attached_file','2021/11/Justice-WIlliams.jpg'),(20903,48329,'_aioseop_opengraph_settings','a:0:{}'),(20904,48329,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:28:\"2021/11/Justice-WIlliams.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Justice-WIlliams-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:28:\"Justice-WIlliams-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:26:\"Justice-WIlliams-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Justice-WIlliams-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Justice-WIlliams-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(20915,46122,'_et_monarch_override',''),(20920,46122,'_et_pb_built_for_post_type','page'),(20921,46122,'_et_pb_ab_subjects',''),(20922,46122,'_et_pb_enable_shortcode_tracking',''),(20923,46122,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46122\" /]'),(20924,46122,'_et_pb_custom_css',''),(20925,46122,'_et_pb_gutter_width','1'),(20927,46122,'_et_builder_version','VB|Divi|4.3.2'),(20928,46122,'_et_pb_show_page_creation','off'),(20934,46273,'_wp_attachment_image_alt','The Law Offices of Melissa A. Day, PLLC'),(20935,47397,'_wp_attachment_image_alt','New York City skyline and Statue of Liberty'),(20936,47395,'_wp_attachment_image_alt','New York City skyline and Statue of Liberty'),(20970,47214,'_wp_old_date','2021-11-18'),(20971,47307,'_wp_old_date','2021-11-18'),(20972,47305,'_wp_old_date','2021-11-18'),(20973,47213,'_wp_old_date','2021-11-18'),(20975,47312,'_wp_old_date','2021-11-18'),(20976,47311,'_wp_old_date','2021-11-18'),(20977,47313,'_wp_old_date','2021-11-18'),(20978,47308,'_wp_old_date','2021-11-18'),(20979,47516,'_wp_old_date','2021-11-18'),(20980,47215,'_wp_old_date','2021-11-18'),(20981,47518,'_wp_old_date','2021-11-18'),(20992,48362,'_wp_attached_file','2021/11/AdobeStock_258696218-mobile.jpg'),(20993,48362,'_aioseop_opengraph_settings','a:0:{}'),(20994,48362,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:167;s:4:\"file\";s:39:\"2021/11/AdobeStock_258696218-mobile.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"AdobeStock_258696218-mobile-300x63.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:63;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-mobile-768x160.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-mobile-700x146.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-mobile-500x104.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:37:\"AdobeStock_258696218-mobile-75x16.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:16;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-mobile-400x167.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-mobile-400x167.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-mobile-510x167.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-mobile-400x167.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-mobile-480x100.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21004,48365,'_wp_attached_file','2021/11/AdobeStock_258696218-desktop.jpg'),(21005,48365,'_aioseop_opengraph_settings','a:0:{}'),(21006,48365,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:495;s:4:\"file\";s:40:\"2021/11/AdobeStock_258696218-desktop.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"AdobeStock_258696218-desktop-300x74.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:74;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"AdobeStock_258696218-desktop-1024x253.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:253;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"AdobeStock_258696218-desktop-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:40:\"AdobeStock_258696218-desktop-768x190.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"AdobeStock_258696218-desktop-1536x380.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:41:\"AdobeStock_258696218-desktop-1600x396.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:41:\"AdobeStock_258696218-desktop-1600x495.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:495;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:40:\"AdobeStock_258696218-desktop-700x173.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:41:\"AdobeStock_258696218-desktop-1152x285.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:41:\"AdobeStock_258696218-desktop-1000x248.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:40:\"AdobeStock_258696218-desktop-500x124.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:41:\"AdobeStock_258696218-desktop-1200x495.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:495;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:38:\"AdobeStock_258696218-desktop-75x19.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:19;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"AdobeStock_258696218-desktop-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"AdobeStock_258696218-desktop-1080x495.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:495;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"AdobeStock_258696218-desktop-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"AdobeStock_258696218-desktop-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"AdobeStock_258696218-desktop-1080x267.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"AdobeStock_258696218-desktop-400x495.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:495;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:41:\"AdobeStock_258696218-desktop-1280x317.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:317;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:40:\"AdobeStock_258696218-desktop-980x243.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"AdobeStock_258696218-desktop-480x119.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21044,46231,'_et_monarch_override',''),(21048,46231,'_aioseop_title','PPD Caps | The Law Offices of Melissa A. Day, PLLC'),(21121,46244,'_et_monarch_override',''),(21150,45969,'_wp_old_date','2021-11-15'),(21151,45968,'_wp_old_date','2021-11-15'),(21152,46669,'_wp_old_date','2021-11-15'),(21153,47292,'_wp_old_date','2021-11-15'),(21154,47299,'_wp_old_date','2021-11-15'),(21155,46668,'_wp_old_date','2021-11-15'),(21156,47728,'_wp_old_date','2021-11-15'),(21157,47297,'_wp_old_date','2021-11-15'),(21158,47294,'_wp_old_date','2021-11-15'),(21159,47296,'_wp_old_date','2021-11-15'),(21160,47298,'_wp_old_date','2021-11-15'),(21161,47295,'_wp_old_date','2021-11-15'),(21162,47854,'_wp_old_date','2021-11-15'),(21163,45967,'_wp_old_date','2021-11-15'),(21164,47293,'_wp_old_date','2021-11-15'),(21165,46670,'_wp_old_date','2021-11-15'),(21166,45966,'_wp_old_date','2021-11-15'),(21184,47214,'_wp_old_date','2021-11-23'),(21185,47307,'_wp_old_date','2021-11-23'),(21186,47305,'_wp_old_date','2021-11-23'),(21187,47213,'_wp_old_date','2021-11-23'),(21189,47312,'_wp_old_date','2021-11-23'),(21190,47311,'_wp_old_date','2021-11-23'),(21191,47313,'_wp_old_date','2021-11-23'),(21192,47308,'_wp_old_date','2021-11-23'),(21193,47516,'_wp_old_date','2021-11-23'),(21194,47215,'_wp_old_date','2021-11-23'),(21195,47518,'_wp_old_date','2021-11-23'),(21214,48410,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(21215,48410,'current_word_count','4126'),(21216,48410,'author_byline','On Behalf of'),(21217,48410,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21218,48410,'_edit_last','1'),(21219,48410,'_wp_page_template','default'),(21220,48410,'du-meta-custom-footer','default'),(21221,48410,'_et_monarch_override',''),(21222,48410,'_et_pb_post_hide_nav','default'),(21223,48410,'_et_pb_page_layout','et_right_sidebar'),(21224,48410,'_et_pb_side_nav','off'),(21225,48410,'_et_pb_use_builder','on'),(21226,48410,'_et_pb_first_image',''),(21227,48410,'_et_pb_truncate_post',''),(21228,48410,'_et_pb_truncate_post_date',''),(21229,48410,'_et_pb_old_content',''),(21230,48410,'type',''),(21231,48410,'source_url',''),(21232,48410,'target_word_count',''),(21233,48410,'target_sections',''),(21234,48410,'content_type','new'),(21235,48410,'subtitle',''),(21236,48410,'_subtitle','field_page_subtitle_subtitle'),(21239,48410,'pagegoals','goal3'),(21240,48410,'pagelanguage','english'),(21241,48410,'pagetype','marketing'),(21242,48410,'_edit_lock','1663690187:1'),(21244,48410,'_et_pb_built_for_post_type','page'),(21245,48410,'_et_pb_ab_subjects',''),(21246,48410,'_et_pb_enable_shortcode_tracking',''),(21247,48410,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"48410\" /]'),(21248,48410,'_et_pb_custom_css',''),(21249,48410,'_et_pb_gutter_width','1'),(21251,48410,'_et_builder_version','VB|Divi|4.3.2'),(21252,48410,'_et_pb_show_page_creation','off'),(21258,48418,'_menu_item_type','post_type'),(21259,48418,'_menu_item_menu_item_parent','47214'),(21260,48418,'_menu_item_object_id','48410'),(21261,48418,'_menu_item_object','page'),(21262,48418,'_menu_item_target',''),(21263,48418,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(21264,48418,'_menu_item_xfn',''),(21265,48418,'_menu_item_url',''),(21267,48418,'_aioseop_opengraph_settings','a:0:{}'),(21280,48423,'_wp_attached_file','2021/11/logo_e.png'),(21281,48423,'_aioseop_opengraph_settings','a:0:{}'),(21282,48423,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4197;s:6:\"height\";i:2262;s:4:\"file\";s:18:\"2021/11/logo_e.png\";s:5:\"sizes\";a:24:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"logo_e-300x162.png\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"logo_e-1024x552.png\";s:5:\"width\";i:1024;s:6:\"height\";i:552;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"logo_e-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:18:\"logo_e-768x414.png\";s:5:\"width\";i:768;s:6:\"height\";i:414;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"logo_e-1536x828.png\";s:5:\"width\";i:1536;s:6:\"height\";i:828;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"logo_e-2048x1104.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1104;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:19:\"logo_e-1600x862.png\";s:5:\"width\";i:1600;s:6:\"height\";i:862;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:19:\"logo_e-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:18:\"logo_e-700x377.png\";s:5:\"width\";i:700;s:6:\"height\";i:377;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:19:\"logo_e-1152x621.png\";s:5:\"width\";i:1152;s:6:\"height\";i:621;s:9:\"mime-type\";s:9:\"image/png\";}s:3:\"bio\";a:4:{s:4:\"file\";s:19:\"logo_e-1000x539.png\";s:5:\"width\";i:1000;s:6:\"height\";i:539;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:18:\"logo_e-500x269.png\";s:5:\"width\";i:500;s:6:\"height\";i:269;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:19:\"logo_e-1200x630.png\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:16:\"logo_e-75x40.png\";s:5:\"width\";i:75;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"logo_e-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"logo_e-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"logo_e-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"logo_e-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"logo_e-1080x582.png\";s:5:\"width\";i:1080;s:6:\"height\";i:582;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"logo_e-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:20:\"logo_e-2880x1800.png\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:19:\"logo_e-1280x690.png\";s:5:\"width\";i:1280;s:6:\"height\";i:690;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:18:\"logo_e-980x528.png\";s:5:\"width\";i:980;s:6:\"height\";i:528;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:18:\"logo_e-480x259.png\";s:5:\"width\";i:480;s:6:\"height\";i:259;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:{}}}'),(21371,46071,'_wp_old_date','2021-11-10'),(21372,46073,'_wp_old_date','2021-11-10'),(21373,46075,'_wp_old_date','2021-11-10'),(21374,46077,'_wp_old_date','2021-11-10'),(21375,46079,'_wp_old_date','2021-11-10'),(21376,47861,'_wp_old_date','2021-11-10'),(21377,47314,'_wp_old_date','2021-11-10'),(21378,46081,'_wp_old_date','2021-11-10'),(21380,46085,'_wp_old_date','2021-11-10'),(21383,46089,'_wp_old_date','2021-11-10'),(21384,46091,'_wp_old_date','2021-11-10'),(21385,48168,'_wp_old_date','2021-11-10'),(21392,47214,'_wp_old_date','2021-11-29'),(21393,47307,'_wp_old_date','2021-11-29'),(21394,48418,'_wp_old_date','2021-11-29'),(21395,47305,'_wp_old_date','2021-11-29'),(21396,47213,'_wp_old_date','2021-11-29'),(21398,47312,'_wp_old_date','2021-11-29'),(21399,47311,'_wp_old_date','2021-11-29'),(21400,47313,'_wp_old_date','2021-11-29'),(21401,47308,'_wp_old_date','2021-11-29'),(21402,47516,'_wp_old_date','2021-11-29'),(21403,47215,'_wp_old_date','2021-11-29'),(21404,47518,'_wp_old_date','2021-11-29'),(21435,46492,'_et_monarch_override',''),(21437,46492,'_aioseop_title','MDs, JDs AND TTDs | The Law Offices of Melissa A. Day, PLLC'),(21439,46234,'_et_monarch_override',''),(21443,46234,'_aioseop_title','SLU/PHP | The Law Offices of Melissa A. Day, PLLC'),(21444,45925,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21445,46101,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21446,48168,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21447,46091,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21448,46089,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21451,45970,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21452,46085,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21453,45971,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21455,45972,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21456,46081,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21457,47314,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21458,47861,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21459,46079,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21460,46077,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21461,46075,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21463,46073,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21464,46071,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21470,45926,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21473,45927,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21476,6,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(21516,48168,'author_byline','On Behalf of'),(21517,46091,'author_byline','On Behalf of'),(21518,46089,'author_byline','On Behalf of'),(21521,46085,'author_byline','On Behalf of'),(21523,46081,'author_byline','On Behalf of'),(21524,47314,'author_byline','On Behalf of'),(21525,47861,'author_byline','On Behalf of'),(21526,46079,'author_byline','On Behalf of'),(21527,46077,'author_byline','On Behalf of'),(21528,46075,'author_byline','On Behalf of'),(21529,46073,'author_byline','On Behalf of'),(21530,46071,'author_byline','On Behalf of'),(21539,48423,'_wp_attachment_image_alt','LOMAD'),(21540,48329,'_wp_attachment_image_alt','photo of legal assistant Justice C. Williams'),(21541,48167,'_wp_attachment_image_alt','photo of attorney Kristin M. Machelor'),(21542,46201,'_wp_attachment_image_alt','photo of attorney Kristin M. Machelor'),(21585,48497,'_et_pb_built_for_post_type','page'),(21604,48502,'_wp_attached_file','2021/11/desktop-logo.png'),(21605,48502,'_aioseop_opengraph_settings','a:0:{}'),(21606,48502,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:185;s:6:\"height\";i:100;s:4:\"file\";s:24:\"2021/11/desktop-logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"desktop-logo-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:22:\"desktop-logo-75x41.png\";s:5:\"width\";i:75;s:6:\"height\";i:41;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:{}}}'),(21607,48502,'_wp_attachment_image_alt','LOMAD'),(21617,48505,'_wp_attached_file','2021/11/bannerslide1.jpeg'),(21618,48505,'_aioseop_opengraph_settings','a:0:{}'),(21619,48505,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2021/11/bannerslide1.jpeg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bannerslide1-300x120.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bannerslide1-1024x410.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bannerslide1-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:\"bannerslide1-768x307.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bannerslide1-1536x614.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:26:\"bannerslide1-1600x640.jpeg\";s:5:\"width\";i:1600;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:26:\"bannerslide1-1600x800.jpeg\";s:5:\"width\";i:1600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:25:\"bannerslide1-700x280.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:26:\"bannerslide1-1152x461.jpeg\";s:5:\"width\";i:1152;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:26:\"bannerslide1-1000x400.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:25:\"bannerslide1-500x200.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:26:\"bannerslide1-1200x630.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"bannerslide1-75x30.jpeg\";s:5:\"width\";i:75;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"bannerslide1-400x250.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:26:\"bannerslide1-1080x675.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"bannerslide1-400x284.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"bannerslide1-510x382.jpeg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:26:\"bannerslide1-1080x432.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"bannerslide1-400x516.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:26:\"bannerslide1-1280x512.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:25:\"bannerslide1-980x392.jpeg\";s:5:\"width\";i:980;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:25:\"bannerslide1-480x192.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21620,48507,'_wp_attached_file','2021/11/bannerslid2.jpeg'),(21621,48507,'_aioseop_opengraph_settings','a:0:{}'),(21622,48507,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2021/11/bannerslid2.jpeg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"bannerslid2-300x120.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"bannerslid2-1024x410.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"bannerslid2-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:24:\"bannerslid2-768x307.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"bannerslid2-1536x614.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:25:\"bannerslid2-1600x640.jpeg\";s:5:\"width\";i:1600;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:25:\"bannerslid2-1600x800.jpeg\";s:5:\"width\";i:1600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:24:\"bannerslid2-700x280.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:25:\"bannerslid2-1152x461.jpeg\";s:5:\"width\";i:1152;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:25:\"bannerslid2-1000x400.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:24:\"bannerslid2-500x200.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:25:\"bannerslid2-1200x630.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:22:\"bannerslid2-75x30.jpeg\";s:5:\"width\";i:75;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"bannerslid2-400x250.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"bannerslid2-1080x675.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"bannerslid2-400x284.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"bannerslid2-510x382.jpeg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"bannerslid2-1080x432.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"bannerslid2-400x516.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:25:\"bannerslid2-1280x512.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:24:\"bannerslid2-980x392.jpeg\";s:5:\"width\";i:980;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:24:\"bannerslid2-480x192.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21623,48508,'_wp_attached_file','2021/11/bannerslide3.jpeg'),(21624,48508,'_aioseop_opengraph_settings','a:0:{}'),(21625,48508,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2021/11/bannerslide3.jpeg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bannerslide3-300x120.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bannerslide3-1024x410.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bannerslide3-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:\"bannerslide3-768x307.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bannerslide3-1536x614.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:26:\"bannerslide3-1600x640.jpeg\";s:5:\"width\";i:1600;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:26:\"bannerslide3-1600x800.jpeg\";s:5:\"width\";i:1600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:25:\"bannerslide3-700x280.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:26:\"bannerslide3-1152x461.jpeg\";s:5:\"width\";i:1152;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:26:\"bannerslide3-1000x400.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:25:\"bannerslide3-500x200.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:26:\"bannerslide3-1200x630.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"bannerslide3-75x30.jpeg\";s:5:\"width\";i:75;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"bannerslide3-400x250.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:26:\"bannerslide3-1080x675.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"bannerslide3-400x284.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"bannerslide3-510x382.jpeg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:26:\"bannerslide3-1080x432.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"bannerslide3-400x516.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:26:\"bannerslide3-1280x512.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:25:\"bannerslide3-980x392.jpeg\";s:5:\"width\";i:980;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:25:\"bannerslide3-480x192.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21635,48512,'_wp_attached_file','2021/11/Mobile-banner.jpg'),(21636,48512,'_aioseop_opengraph_settings','a:0:{}'),(21637,48512,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:414;s:6:\"height\";i:200;s:4:\"file\";s:25:\"2021/11/Mobile-banner.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Mobile-banner-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Mobile-banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"Mobile-banner-75x36.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"Mobile-banner-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"Mobile-banner-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"Mobile-banner-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21647,48516,'_wp_attached_file','2021/11/Mobile-banner-1.jpg'),(21648,48516,'_aioseop_opengraph_settings','a:0:{}'),(21649,48516,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:414;s:6:\"height\";i:200;s:4:\"file\";s:27:\"2021/11/Mobile-banner-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Mobile-banner-1-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Mobile-banner-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:25:\"Mobile-banner-1-75x36.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Mobile-banner-1-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Mobile-banner-1-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Mobile-banner-1-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21692,48525,'_wp_attached_file','2021/11/bannerslide1-2.jpg'),(21693,48525,'_aioseop_opengraph_settings','a:0:{}'),(21694,48525,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2021/11/bannerslide1-2.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"bannerslide1-2-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"bannerslide1-2-1024x410.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"bannerslide1-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"bannerslide1-2-768x307.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"bannerslide1-2-1536x614.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"core-full\";a:4:{s:4:\"file\";s:27:\"bannerslide1-2-1600x640.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"hero-full\";a:4:{s:4:\"file\";s:27:\"bannerslide1-2-1600x800.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:26:\"bannerslide1-2-700x280.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-mobile\";a:4:{s:4:\"file\";s:27:\"bannerslide1-2-1152x461.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:27:\"bannerslide1-2-1000x400.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:26:\"bannerslide1-2-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:27:\"bannerslide1-2-1200x630.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:24:\"bannerslide1-2-75x30.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"bannerslide1-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:27:\"bannerslide1-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"bannerslide1-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"bannerslide1-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:27:\"bannerslide1-2-1080x432.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:26:\"bannerslide1-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:27:\"bannerslide1-2-1280x512.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:26:\"bannerslide1-2-980x392.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:26:\"bannerslide1-2-480x192.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21695,48527,'_wp_attached_file','2021/11/CUSTOM-975884-1.jpg'),(21696,48527,'_aioseop_opengraph_settings','a:0:{}'),(21697,48527,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:413;s:4:\"file\";s:27:\"2021/11/CUSTOM-975884-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"CUSTOM-975884-1-218x300.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"CUSTOM-975884-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:25:\"CUSTOM-975884-1-54x75.jpg\";s:5:\"width\";i:54;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"CUSTOM-975884-1-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"CUSTOM-975884-1-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"CUSTOM-975884-1-300x382.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21698,48528,'_wp_attached_file','2021/11/MULTI-114764-1-ap3.jpg'),(21699,48528,'_aioseop_opengraph_settings','a:0:{}'),(21700,48528,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:575;s:6:\"height\";i:794;s:4:\"file\";s:30:\"2021/11/MULTI-114764-1-ap3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-507x700.jpg\";s:5:\"width\";i:507;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-362x500.jpg\";s:5:\"width\";i:362;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-575x630.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"MULTI-114764-1-ap3-54x75.jpg\";s:5:\"width\";i:54;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-575x675.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"MULTI-114764-1-ap3-480x663.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:663;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21701,48529,'_wp_attached_file','2021/11/women-owned-2021-1.jpg'),(21702,48529,'_aioseop_opengraph_settings','a:0:{}'),(21703,48529,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:575;s:6:\"height\";i:794;s:4:\"file\";s:30:\"2021/11/women-owned-2021-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"women-owned-2021-1-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"women-owned-2021-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:30:\"women-owned-2021-1-507x700.jpg\";s:5:\"width\";i:507;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:30:\"women-owned-2021-1-362x500.jpg\";s:5:\"width\";i:362;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:30:\"women-owned-2021-1-575x630.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"women-owned-2021-1-54x75.jpg\";s:5:\"width\";i:54;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"women-owned-2021-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:30:\"women-owned-2021-1-575x675.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"women-owned-2021-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"women-owned-2021-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"women-owned-2021-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"women-owned-2021-1-480x663.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:663;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21704,48530,'_wp_attached_file','2021/11/CUSTOM-870784-cmyk.png'),(21705,48530,'_aioseop_opengraph_settings','a:0:{}'),(21706,48530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:575;s:6:\"height\";i:794;s:4:\"file\";s:30:\"2021/11/CUSTOM-870784-cmyk.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-217x300.png\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-507x700.png\";s:5:\"width\";i:507;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-362x500.png\";s:5:\"width\";i:362;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-575x630.png\";s:5:\"width\";i:575;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:28:\"CUSTOM-870784-cmyk-54x75.png\";s:5:\"width\";i:54;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-575x675.png\";s:5:\"width\";i:575;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"CUSTOM-870784-cmyk-480x663.png\";s:5:\"width\";i:480;s:6:\"height\";i:663;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:{}}}'),(21707,48531,'_wp_attached_file','2021/11/CUSTOM-1069294-Badge-1.jpg'),(21708,48531,'_aioseop_opengraph_settings','a:0:{}'),(21709,48531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:575;s:6:\"height\";i:794;s:4:\"file\";s:34:\"2021/11/CUSTOM-1069294-Badge-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"CUSTOM-1069294-Badge-1-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"CUSTOM-1069294-Badge-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:34:\"CUSTOM-1069294-Badge-1-507x700.jpg\";s:5:\"width\";i:507;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:34:\"CUSTOM-1069294-Badge-1-362x500.jpg\";s:5:\"width\";i:362;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:34:\"CUSTOM-1069294-Badge-1-575x630.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:32:\"CUSTOM-1069294-Badge-1-54x75.jpg\";s:5:\"width\";i:54;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"CUSTOM-1069294-Badge-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"CUSTOM-1069294-Badge-1-575x675.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"CUSTOM-1069294-Badge-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"CUSTOM-1069294-Badge-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"CUSTOM-1069294-Badge-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"CUSTOM-1069294-Badge-1-480x663.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:663;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21710,48532,'_wp_attached_file','2021/11/women2020-1.jpg'),(21711,48532,'_aioseop_opengraph_settings','a:0:{}'),(21712,48532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:558;s:6:\"height\";i:770;s:4:\"file\";s:23:\"2021/11/women2020-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"women2020-1-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"women2020-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:23:\"women2020-1-507x700.jpg\";s:5:\"width\";i:507;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:23:\"women2020-1-362x500.jpg\";s:5:\"width\";i:362;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:23:\"women2020-1-558x630.jpg\";s:5:\"width\";i:558;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:21:\"women2020-1-54x75.jpg\";s:5:\"width\";i:54;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"women2020-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"women2020-1-558x675.jpg\";s:5:\"width\";i:558;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"women2020-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"women2020-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"women2020-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:23:\"women2020-1-480x662.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:662;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21713,48533,'_wp_attached_file','2021/11/101814-cmyk-1.png'),(21714,48533,'_aioseop_opengraph_settings','a:0:{}'),(21715,48533,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:575;s:6:\"height\";i:794;s:4:\"file\";s:25:\"2021/11/101814-cmyk-1.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-217x300.png\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-507x700.png\";s:5:\"width\";i:507;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"logo\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-362x500.png\";s:5:\"width\";i:362;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-575x630.png\";s:5:\"width\";i:575;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:23:\"101814-cmyk-1-54x75.png\";s:5:\"width\";i:54;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-575x675.png\";s:5:\"width\";i:575;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:25:\"101814-cmyk-1-480x663.png\";s:5:\"width\";i:480;s:6:\"height\";i:663;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:{}}}'),(21716,48534,'_wp_attached_file','2021/11/Episode29-LawyersandFriends.jpg'),(21717,48534,'_aioseop_opengraph_settings','a:0:{}'),(21718,48534,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:512;s:4:\"file\";s:39:\"2021/11/Episode29-LawyersandFriends.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Episode29-LawyersandFriends-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Episode29-LawyersandFriends-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"Episode29-LawyersandFriends-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:39:\"Episode29-LawyersandFriends-700x350.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:40:\"Episode29-LawyersandFriends-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:39:\"Episode29-LawyersandFriends-500x250.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:37:\"Episode29-LawyersandFriends-75x38.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"Episode29-LawyersandFriends-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"Episode29-LawyersandFriends-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"Episode29-LawyersandFriends-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"Episode29-LawyersandFriends-400x512.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:39:\"Episode29-LawyersandFriends-980x490.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"Episode29-LawyersandFriends-480x240.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21719,48536,'_wp_attached_file','2021/11/Episode28-LawyersandFriends.jpg'),(21720,48536,'_aioseop_opengraph_settings','a:0:{}'),(21721,48536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:512;s:4:\"file\";s:39:\"2021/11/Episode28-LawyersandFriends.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Episode28-LawyersandFriends-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Episode28-LawyersandFriends-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"Episode28-LawyersandFriends-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:39:\"Episode28-LawyersandFriends-700x350.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:40:\"Episode28-LawyersandFriends-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:39:\"Episode28-LawyersandFriends-500x250.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:37:\"Episode28-LawyersandFriends-75x38.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"Episode28-LawyersandFriends-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"Episode28-LawyersandFriends-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"Episode28-LawyersandFriends-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"Episode28-LawyersandFriends-400x512.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:39:\"Episode28-LawyersandFriends-980x490.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"Episode28-LawyersandFriends-480x240.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21731,48538,'_wp_attached_file','2021/11/Episode27-LawyersandFriends.jpg'),(21732,48538,'_aioseop_opengraph_settings','a:0:{}'),(21733,48538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:512;s:4:\"file\";s:39:\"2021/11/Episode27-LawyersandFriends.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Episode27-LawyersandFriends-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Episode27-LawyersandFriends-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"Episode27-LawyersandFriends-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:39:\"Episode27-LawyersandFriends-700x350.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:40:\"Episode27-LawyersandFriends-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:39:\"Episode27-LawyersandFriends-500x250.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:37:\"Episode27-LawyersandFriends-75x38.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"Episode27-LawyersandFriends-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"Episode27-LawyersandFriends-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"Episode27-LawyersandFriends-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"Episode27-LawyersandFriends-400x512.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:39:\"Episode27-LawyersandFriends-980x490.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"Episode27-LawyersandFriends-480x240.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21734,48539,'_wp_attached_file','2021/11/Episode26-LawyersandFriends.jpg'),(21735,48539,'_aioseop_opengraph_settings','a:0:{}'),(21736,48539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:512;s:4:\"file\";s:39:\"2021/11/Episode26-LawyersandFriends.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Episode26-LawyersandFriends-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Episode26-LawyersandFriends-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"Episode26-LawyersandFriends-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:39:\"Episode26-LawyersandFriends-700x350.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:40:\"Episode26-LawyersandFriends-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:39:\"Episode26-LawyersandFriends-500x250.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:37:\"Episode26-LawyersandFriends-75x38.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"Episode26-LawyersandFriends-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"Episode26-LawyersandFriends-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"Episode26-LawyersandFriends-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"Episode26-LawyersandFriends-400x512.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:39:\"Episode26-LawyersandFriends-980x490.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"Episode26-LawyersandFriends-480x240.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21737,48540,'_wp_attached_file','2021/11/Episode25-LawyersandFriends.jpg'),(21738,48540,'_aioseop_opengraph_settings','a:0:{}'),(21739,48540,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:512;s:4:\"file\";s:39:\"2021/11/Episode25-LawyersandFriends.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Episode25-LawyersandFriends-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Episode25-LawyersandFriends-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"Episode25-LawyersandFriends-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:39:\"Episode25-LawyersandFriends-700x350.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:40:\"Episode25-LawyersandFriends-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:39:\"Episode25-LawyersandFriends-500x250.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:37:\"Episode25-LawyersandFriends-75x38.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"Episode25-LawyersandFriends-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"Episode25-LawyersandFriends-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"Episode25-LawyersandFriends-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"Episode25-LawyersandFriends-400x512.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:39:\"Episode25-LawyersandFriends-980x490.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"Episode25-LawyersandFriends-480x240.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21740,48541,'_wp_attached_file','2021/11/Episode24-LawyersandFriends.jpg'),(21741,48541,'_aioseop_opengraph_settings','a:0:{}'),(21742,48541,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:512;s:4:\"file\";s:39:\"2021/11/Episode24-LawyersandFriends.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Episode24-LawyersandFriends-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Episode24-LawyersandFriends-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"Episode24-LawyersandFriends-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:39:\"Episode24-LawyersandFriends-700x350.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:40:\"Episode24-LawyersandFriends-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:39:\"Episode24-LawyersandFriends-500x250.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:37:\"Episode24-LawyersandFriends-75x38.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"Episode24-LawyersandFriends-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"Episode24-LawyersandFriends-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"Episode24-LawyersandFriends-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"Episode24-LawyersandFriends-400x512.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:39:\"Episode24-LawyersandFriends-980x490.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"Episode24-LawyersandFriends-480x240.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21743,48542,'_wp_attached_file','2021/11/Episode23-LawyersandFriends.jpg'),(21744,48542,'_aioseop_opengraph_settings','a:0:{}'),(21745,48542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:512;s:4:\"file\";s:39:\"2021/11/Episode23-LawyersandFriends.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Episode23-LawyersandFriends-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Episode23-LawyersandFriends-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"Episode23-LawyersandFriends-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:39:\"Episode23-LawyersandFriends-700x350.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:40:\"Episode23-LawyersandFriends-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:39:\"Episode23-LawyersandFriends-500x250.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:37:\"Episode23-LawyersandFriends-75x38.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"Episode23-LawyersandFriends-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"Episode23-LawyersandFriends-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"Episode23-LawyersandFriends-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"Episode23-LawyersandFriends-400x512.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:39:\"Episode23-LawyersandFriends-980x490.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"Episode23-LawyersandFriends-480x240.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21746,48543,'_wp_attached_file','2021/11/Episode22-LawyersandFriend.jpg'),(21747,48543,'_aioseop_opengraph_settings','a:0:{}'),(21748,48543,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:512;s:4:\"file\";s:38:\"2021/11/Episode22-LawyersandFriend.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Episode22-LawyersandFriend-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Episode22-LawyersandFriend-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:38:\"Episode22-LawyersandFriend-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"core-header\";a:4:{s:4:\"file\";s:38:\"Episode22-LawyersandFriend-700x350.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:3:\"bio\";a:4:{s:4:\"file\";s:39:\"Episode22-LawyersandFriend-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:38:\"Episode22-LawyersandFriend-500x250.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:36:\"Episode22-LawyersandFriend-75x38.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"Episode22-LawyersandFriend-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"Episode22-LawyersandFriend-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"Episode22-LawyersandFriend-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"Episode22-LawyersandFriend-400x512.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:38:\"Episode22-LawyersandFriend-980x490.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:38:\"Episode22-LawyersandFriend-480x240.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21755,48547,'_wp_attached_file','2021/11/NewsletterVolume4.jpg'),(21756,48547,'_aioseop_opengraph_settings','a:0:{}'),(21757,48547,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:647;s:4:\"file\";s:29:\"2021/11/NewsletterVolume4.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume4-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume4-386x500.jpg\";s:5:\"width\";i:386;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume4-500x630.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:27:\"NewsletterVolume4-58x75.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume4-500x382.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume4-480x621.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:621;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21758,46244,'_et_pb_built_for_post_type','page'),(21759,46244,'_et_pb_ab_subjects',''),(21760,46244,'_et_pb_enable_shortcode_tracking',''),(21761,46244,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46244\" /]'),(21762,46244,'_et_pb_custom_css',''),(21763,46244,'_et_pb_gutter_width','1'),(21765,46244,'_et_builder_version','VB|Divi|4.14.8'),(21766,46244,'_et_pb_show_page_creation','off'),(21772,48551,'_wp_attached_file','2021/11/NewsletterVolume3.jpg'),(21773,48551,'_aioseop_opengraph_settings','a:0:{}'),(21774,48551,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:647;s:4:\"file\";s:29:\"2021/11/NewsletterVolume3.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume3-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume3-386x500.jpg\";s:5:\"width\";i:386;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume3-500x630.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:27:\"NewsletterVolume3-58x75.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume3-500x382.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume3-480x621.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:621;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(21775,48552,'_wp_attached_file','2021/11/NewsletterVolume2.jpg'),(21776,48552,'_aioseop_opengraph_settings','a:0:{}'),(21777,48552,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:647;s:4:\"file\";s:29:\"2021/11/NewsletterVolume2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume2-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"logo\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume2-386x500.jpg\";s:5:\"width\";i:386;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"social-share\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume2-500x630.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"placeholder\";a:4:{s:4:\"file\";s:27:\"NewsletterVolume2-58x75.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume2-500x382.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:29:\"NewsletterVolume2-480x621.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:621;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(22452,6,'_global_colors_info','{}'),(22481,48502,'_emr_replace_author','1090'),(22482,48502,'_edit_lock','1638810479:1090'),(23144,48173,'_aioseo_og_title',''),(23145,48173,'_aioseo_og_description',''),(23146,48173,'_aioseo_og_article_section',''),(23147,48173,'_aioseo_og_article_tags',''),(23148,48173,'_aioseo_title','Webinars | The Law Offices of Melissa A. Day, PLLC | Amherst'),(23202,48168,'_aioseo_og_title',''),(23203,48168,'_aioseo_og_description',''),(23204,48168,'_aioseo_og_article_section',''),(23205,48168,'_aioseo_og_article_tags',''),(23207,47861,'_aioseo_og_title',''),(23208,47861,'_aioseo_og_description',''),(23209,47861,'_aioseo_og_article_section',''),(23210,47861,'_aioseo_og_article_tags',''),(23231,47314,'_aioseo_og_title',''),(23232,47314,'_aioseo_og_description',''),(23233,47314,'_aioseo_og_article_section',''),(23234,47314,'_aioseo_og_article_tags',''),(23252,46565,'_aioseo_title','DID YOU KNOW? | The Law Offices of Melissa A. Day, PLLC'),(23253,46564,'_aioseo_title','WHY? Why do judge’s even set deadlines for the submission of Memoranda of Law? | The Law Offices of Melissa A. Day, PLLC'),(23254,46563,'_aioseo_title','DID YOU KNOW? WCL §15(3)(v) BENEFITS MAY NOW BE CAPPED UNDER WCL §15(3)(w) | The Law Offices of Melissa A. Day, PLLC'),(23255,46559,'_aioseo_title','DID YOU KNOW? IMPLEMENTATION OF THE CHANGES TO THE MTG HAS BEEN DELAYED UNTIL MARCH 1, 2013. | The Law Offices of Melissa A. Day, PLLC'),(23256,46557,'_aioseo_title','DID YOU KNOW? GOVERNOR CUOMO’S BUDGET PROPOSES TO ELIMINATE MANDATORY DEPOSITS INTO THE ATF AND TO CLOSE THE FUND TO NEW DEPOSITS? | The Law Offices of Melissa A. Day, PLLC'),(23257,46555,'_aioseo_og_title',''),(23258,46555,'_aioseo_og_description',''),(23259,46555,'_aioseo_og_article_section',''),(23260,46555,'_aioseo_og_article_tags',''),(23261,46555,'_aioseo_title','DID YOU KNOW? The Federal Government Is Not Subject to the Jurisdiction of the NY Workers’ Compensation Board on a Theory of General/Special Employment? | The Law Offices of Melissa A. Day, PLLC'),(23262,46553,'_aioseo_title','DID YOU KNOW? A chiropractic variance request based on alleged functional improvements and expected continued improvements may not be granted if the chiropractor continues to find that the claimant is totally disabled. | The Law Offices of Melissa A. Day, PLLC'),(23263,46549,'_aioseo_title','DID YOU KNOW? A bill being considered by the NY State Legislature which would create a presumption of permanent total disability for claimants who are found eligible for social security? | The Law Offices of Melissa A. Day, PLLC'),(23264,46546,'_aioseo_title','DID YOU KNOW? AN EMPLOYER OR CARRIER MAY BE ABLE TO REOPEN A PPD CLAIM ON THE ISSUE OF LABOR MARKET ATTACHMENT. | The Law Offices of Melissa A. Day, PLLC'),(23265,46543,'_aioseo_og_title',''),(23266,46543,'_aioseo_og_description',''),(23267,46543,'_aioseo_og_article_section',''),(23268,46543,'_aioseo_og_article_tags',''),(23269,46543,'_aioseo_title','DID YOU KNOW? THE THIRD DEPARTMENT HOLDS THAT MEDICAL TREATMENT WHICH IS NOT SPECIFICALLY INCLUDED IN THE MTG IS PRESUMPTIVELY NOT MEDICALLY NECESSARY. | The Law Offices of Melissa A. Day, PLLC'),(23270,46541,'_aioseo_title','DID YOU KNOW? Twenty Insurance Carriers Have Filed an Action Seeking to Obtain a Declaration that the Elimination of The Fund for Reopened Cases Is Unconstitutional. | The Law Offices of Melissa A. Day, PLLC'),(23271,46512,'_aioseo_title','BOARD PROCESS RE-ENGINEERING (“BPR”) – NY WORKERS’ COMPENSATION FORUM MEMBERS SHOULD BE INCLUDED IN THE DIALOGUE | The Law Offices of Melissa A. Day, PLLC'),(23272,46509,'_aioseo_title','A Blind Leap across an Inscrutable Chasm – Arbitrary and Capricious Loss of Wage Earning Capacity (LWEC) Determinations | The Law Offices of Melissa A. Day, PLLC'),(23273,46508,'_aioseo_title','DID YOU KNOW? THE BOARD HAS RETIRED THE CONCEPT OF THE COMPENSABLE RETIREMENT. The Death Knell of the Trifecta: Zamora and the so-called “Compensable Retirement” | The Law Offices of Melissa A. Day, PLLC'),(23274,46506,'_aioseo_title','Navigating the Low Back Medical Treatment Guidelines for Chiropractic Care | The Law Offices of Melissa A. Day, PLLC'),(23275,46504,'_aioseo_title','The Law Offices of Melissa A. Day, PLLC Won a Finding of a 0% Loss of Wage Earning Capacity | The Law Offices of Melissa A. Day, PLLC'),(23276,46503,'_aioseo_title','In Kigin v. WCB, the Court of Appeals upholds the presumption that treatment outside the MTGs is not medically necessary and the attending physician has the burden of proof of the need for a variance. | The Law Offices of Melissa A. Day, PLLC'),(23277,46501,'_aioseo_title','Hearing Loss becomes Hearing Win | The Law Offices of Melissa A. Day, PLLC'),(23278,46500,'_aioseo_title','An Underwriting Nightmare Come True | The Law Offices of Melissa A. Day, PLLC'),(23279,46499,'_aioseo_title','WCB’s Regulatory Agenda May Include… | The Law Offices of Melissa A. Day, PLLC'),(23280,46496,'_aioseo_title','IMEs : The Next Summer Movie Blockbuster or Just Another IME Gone Bust? | The Law Offices of Melissa A. Day, PLLC'),(23285,46493,'_aioseo_title','HOT DOGS OR HAMBURGERS? | The Law Offices of Melissa A. Day, PLLC'),(23286,46492,'_aioseo_og_title',''),(23287,46492,'_aioseo_og_description',''),(23288,46492,'_aioseo_og_article_section',''),(23289,46492,'_aioseo_og_article_tags',''),(23290,46492,'_aioseo_title','MDs, JDs AND TTDs | The Law Offices of Melissa A. Day, PLLC'),(23291,46489,'_aioseo_title','Liability for Treatment by Social Workers | The Law Offices of Melissa A. Day, PLLC'),(23292,46482,'_aioseo_title','Non-Acute Pain Treatment Guidelines | The Law Offices of Melissa A. Day, PLLC'),(23293,46480,'_aioseo_title','Average Wages? | The Law Offices of Melissa A. Day, PLLC'),(23294,46479,'_aioseo_title','Answers to the Quiz | The Law Offices of Melissa A. Day, PLLC'),(23295,46478,'_aioseo_title','Claims Handling Performance | The Law Offices of Melissa A. Day, PLLC'),(23296,46450,'_aioseo_title','Summer is Almost Over! | The Law Offices of Melissa A. Day, PLLC'),(23297,46448,'_aioseo_title','Labor Market Attachment Refresher | The Law Offices of Melissa A. Day, PLLC'),(23298,46446,'_aioseo_title','Challenge Yourself | The Law Offices of Melissa A. Day, PLLC'),(23299,46445,'_aioseo_title','Vocational and Functional… | The Law Offices of Melissa A. Day, PLLC'),(23300,46444,'_aioseo_og_title',''),(23301,46444,'_aioseo_og_description',''),(23302,46444,'_aioseo_og_article_section',''),(23303,46444,'_aioseo_og_article_tags',''),(23304,46444,'_aioseo_title','An Employee Cannot be… | The Law Offices of Melissa A. Day, PLLC'),(23305,46442,'_aioseo_title','NY Allows Employer to… | The Law Offices of Melissa A. Day, PLLC'),(23306,46439,'_aioseo_title','Reopened Cases | The Law Offices of Melissa A. Day, PLLC'),(23307,46436,'_aioseo_og_title',''),(23308,46436,'_aioseo_og_description',''),(23309,46436,'_aioseo_og_article_section',''),(23310,46436,'_aioseo_og_article_tags',''),(23311,46436,'_aioseo_title','TO WEAN, OR NOT TO WEAN, THAT IS THE QUESTION. | The Law Offices of Melissa A. Day, PLLC'),(23312,46433,'_aioseo_title','HAPPY HALLO-WEAN | The Law Offices of Melissa A. Day, PLLC'),(23313,46431,'_aioseo_title','It’s the Holiday Season! | The Law Offices of Melissa A. Day, PLLC'),(23314,46426,'_aioseo_title','Back to the Future:  The Return of WCL 25(2-b): Fact-Finding without Judges and Legal Reasoning without Lawyers | The Law Offices of Melissa A. Day, PLLC'),(23315,46423,'_aioseo_title','Permanent Partial Disability “Safety Net”…What to Expect from WCL §35 | The Law Offices of Melissa A. Day, PLLC'),(23316,46422,'_aioseo_title','Board Finds that Medical Treatment Guidelines Apply to Out of State Claimants | The Law Offices of Melissa A. Day, PLLC'),(23317,46421,'_aioseo_title','How to Avoid Bad Luck in Your Comp Claims This Friday the 13th – Some Basic Time Constraints for New York State Workers’ Compensation Claims to Keep in Mind | The Law Offices of Melissa A. Day, PLLC'),(23318,46419,'_aioseo_title','Proposed Changes Submitted Seeking to Expand the Board’s Legal Internship Program | The Law Offices of Melissa A. Day, PLLC'),(23319,46418,'_aioseo_og_title',''),(23320,46418,'_aioseo_og_description',''),(23321,46418,'_aioseo_og_article_section',''),(23322,46418,'_aioseo_og_article_tags',''),(23323,46418,'_aioseo_title','Ricky Costner Jr., 18 Year Old Slain by a Deranged Co-Worker, Honored by Family and Friends | The Law Offices of Melissa A. Day, PLLC'),(23324,46415,'_aioseo_title','Schedule Loss of Use Awards – Grrrrrrrrr | The Law Offices of Melissa A. Day, PLLC'),(23325,46414,'_aioseo_title','United States Supreme Court is Considering a Petition for a Writ of Certiorari Of the American Economy Decision | The Law Offices of Melissa A. Day, PLLC'),(23326,46388,'_aioseo_title','You’re claiming what?!? | The Law Offices of Melissa A. Day, PLLC'),(23327,46386,'_aioseo_title','Appeals Inventory and Forms | The Law Offices of Melissa A. Day, PLLC'),(23328,46385,'_aioseo_title','A New Quest Begins | The Law Offices of Melissa A. Day, PLLC'),(23329,46384,'_aioseo_title','LWEC &amp; Incontinence | The Law Offices of Melissa A. Day, PLLC'),(23330,46383,'_aioseo_title','Amendments to 2017 not retroactive if PPD claimant was not attached to labor market | The Law Offices of Melissa A. Day, PLLC'),(23331,46381,'_aioseo_title','Claimant’s conviction of unlawful manufacture of methamphetamine does not amount to a violation under WCL 114-a. | The Law Offices of Melissa A. Day, PLLC'),(23332,46380,'_aioseo_title','Melissa A. Day, Esq. invited to join Buffalo Business First Leadership Trust | The Law Offices of Melissa A. Day, PLLC'),(23333,46378,'_aioseo_title','Proposed Changes to §§300.22 and 300.23 – Overpayments | The Law Offices of Melissa A. Day, PLLC'),(23334,46377,'_aioseo_title','A Win for The Law Offices of Melissa A. Day | The Law Offices of Melissa A. Day, PLLC'),(23335,46376,'_aioseo_title','Another Win for The Law Offices of Melissa A. Day! | The Law Offices of Melissa A. Day, PLLC'),(23336,46374,'_aioseo_title','Doubling Down – 2 Hearing Loss Claims for the Same Claimant Denied on the Same Day | The Law Offices of Melissa A. Day, PLLC'),(23349,46373,'_aioseo_title','Success with WCL Section 18 | The Law Offices of Melissa A. Day, PLLC'),(23350,46372,'_aioseo_title','How Change in Conditions for Classified Claimants Changed Drastically | The Law Offices of Melissa A. Day, PLLC'),(23351,46371,'_aioseo_title','Fraud in the Family – Claimant Doing Other Work while Receiving Comp Benefits | The Law Offices of Melissa A. Day, PLLC'),(23352,46370,'_aioseo_title','Occupational Disease Claims after Matter of Pinnacle Industries II, LLC (2019 NY Wrk Comp G2020587) | The Law Offices of Melissa A. Day, PLLC'),(23353,46369,'_aioseo_title','No Error of Law or Fact In An Application For Full Board Review | The Law Offices of Melissa A. Day, PLLC'),(23354,46368,'_aioseo_title','Independent Contractor or Employee | The Law Offices of Melissa A. Day, PLLC'),(23355,46367,'_aioseo_title','No Further Causally Related Disability Due to Intervening Unrelated Accident | The Law Offices of Melissa A. Day, PLLC'),(23356,46352,'_aioseo_title','Genduso and Total Joint Replacement Schedules | The Law Offices of Melissa A. Day, PLLC'),(23357,46351,'_aioseo_title','Thoughts on Thinking:  A Strange Title About Practicing Law | The Law Offices of Melissa A. Day, PLLC'),(23358,46350,'_aioseo_title','When Do Work From Home Accidents Occur in the Scope and Course of Employment? | The Law Offices of Melissa A. Day, PLLC'),(23359,46348,'_aioseo_title','Section 44: Not Even a Portion of Liability For The Occupational Disease | The Law Offices of Melissa A. Day, PLLC'),(23360,46347,'_aioseo_title','An “Interesting” IME Development | The Law Offices of Melissa A. Day, PLLC'),(23361,46345,'_aioseo_title','Social Media and Fraud – You’d Be Surprised What People Post! | The Law Offices of Melissa A. Day, PLLC'),(23362,46344,'_aioseo_title','The Claimant’s Burden: Proving the Causal Relationship of an Injury | The Law Offices of Melissa A. Day, PLLC'),(23363,46343,'_aioseo_title','Employers Do Not Have to Prove Prejudice by Late Notice, but it Certainly Doesn’t Hurt To Do So! | The Law Offices of Melissa A. Day, PLLC'),(23364,46342,'_aioseo_title','Claim Disallowance With Unanimous Medical Opinion Giving Causal Relationship | The Law Offices of Melissa A. Day, PLLC'),(23365,46341,'_aioseo_title','Labor Market Attachment and Retirement | The Law Offices of Melissa A. Day, PLLC'),(23366,46339,'_aioseo_title','Stipulations, Reimbursements, Underpayments. Oh My! | The Law Offices of Melissa A. Day, PLLC'),(23367,46338,'_aioseo_title','Third Deparment Decision: Disputing Causal Relationship | The Law Offices of Melissa A. Day, PLLC'),(23368,46335,'_aioseo_title','Disallowance Due to Intoxication | The Law Offices of Melissa A. Day, PLLC'),(23369,46327,'_aioseo_title','Surveillance, Social Media…Section 32? | The Law Offices of Melissa A. Day, PLLC'),(23370,46235,'_aioseo_title','M&amp;T Rates | The Law Offices of Melissa A. Day, PLLC'),(23371,46232,'_aioseo_title','Life Awards | The Law Offices of Melissa A. Day, PLLC'),(23372,46222,'_aioseo_description','The litigation team at The Law Offices of Melissa A. Day, PLLC, uses creativity, attention to detail and a dogged persistence to get results. Call 716-616-0111 to set up a consultation.'),(23373,46222,'_aioseo_title','Litigation Team | The Law Offices of Melissa A. Day, PLLC | Amherst'),(23871,48173,'_global_colors_info','{}'),(23924,45925,'_global_colors_info','{}'),(23944,45925,'_aioseop_description','The Law Offices of Melissa A. Day, PLLC, has defended New York workers’ compensation claims for 20 years. Call 716-616-0111 to set up a consultation at a firm with more than 130 years of combined experience.'),(23945,45925,'_aioseop_title','About Us | The Law Offices of Melissa A. Day, PLLC'),(23971,46189,'_global_colors_info','{}'),(24030,48410,'_global_colors_info','{}'),(24034,46077,'_global_colors_info','{}'),(24058,46071,'_wp_old_date','2021-11-30'),(24059,46073,'_wp_old_date','2021-11-30'),(24060,46073,'pro_bonos_2_pb_activity','Zion UCC'),(24061,46073,'_pro_bonos_2_pb_activity','field_person_meta_pb_activity'),(24062,46073,'pro_bonos_2_pb_time_period',''),(24063,46073,'_pro_bonos_2_pb_time_period','field_person_meta_pb_time_period'),(24064,46073,'pro_bonos_3_pb_activity','Tonawanda'),(24065,46073,'_pro_bonos_3_pb_activity','field_person_meta_pb_activity'),(24066,46073,'pro_bonos_3_pb_time_period',''),(24067,46073,'_pro_bonos_3_pb_time_period','field_person_meta_pb_time_period'),(24068,46073,'pro_bonos_4_pb_activity','OIC for Personnel and Administration (S1)'),(24069,46073,'_pro_bonos_4_pb_activity','field_person_meta_pb_activity'),(24070,46073,'pro_bonos_4_pb_time_period',''),(24071,46073,'_pro_bonos_4_pb_time_period','field_person_meta_pb_time_period'),(24072,46073,'pro_bonos_5_pb_activity','10th Area Command'),(24073,46073,'_pro_bonos_5_pb_activity','field_person_meta_pb_activity'),(24074,46073,'pro_bonos_5_pb_time_period',''),(24075,46073,'_pro_bonos_5_pb_time_period','field_person_meta_pb_time_period'),(24076,46073,'pro_bonos_6_pb_activity','NY; Captain'),(24077,46073,'_pro_bonos_6_pb_activity','field_person_meta_pb_activity'),(24078,46073,'pro_bonos_6_pb_time_period',''),(24079,46073,'_pro_bonos_6_pb_time_period','field_person_meta_pb_time_period'),(24080,46073,'pro_bonos_7_pb_activity','AG, New York Guard'),(24081,46073,'_pro_bonos_7_pb_activity','field_person_meta_pb_activity'),(24082,46073,'pro_bonos_7_pb_time_period',''),(24083,46073,'_pro_bonos_7_pb_time_period','field_person_meta_pb_time_period'),(24084,46075,'_wp_old_date','2021-11-30'),(24085,46077,'_wp_old_date','2021-11-30'),(24086,46079,'_wp_old_date','2021-11-30'),(24087,47861,'_wp_old_date','2021-11-30'),(24088,47314,'_wp_old_date','2021-11-30'),(24089,46081,'_wp_old_date','2021-11-30'),(24091,46085,'_wp_old_date','2021-11-30'),(24093,48606,'guid','I2BF170601DD211B28A310A00B20205E4'),(24094,48606,'wld_id','3450166'),(24095,48606,'first_name','Kristin'),(24096,48606,'_first_name','field_person_meta_first_name'),(24097,48606,'middle_name','M.'),(24098,48606,'_middle_name','field_person_meta_middle_name'),(24099,48606,'last_name','Machelor'),(24100,48606,'_last_name','field_person_meta_last_name'),(24101,48606,'location','a:3:{s:7:\"address\";s:33:\"636 N French Rd, Amherst NY 14228\";s:3:\"lat\";s:10:\"43.0358760\";s:3:\"lng\";s:11:\"-78.8008900\";}'),(24102,48606,'_location','field_person_meta_location'),(24103,48606,'phone','+1-716-803-8710'),(24104,48606,'_phone','field_person_meta_phone'),(24105,48606,'fax','855-443-8623'),(24106,48606,'_fax','field_person_meta_fax'),(24107,48606,'email','kmachelor@madwcdefense.com'),(24108,48606,'_email','field_person_meta_email'),(24109,48606,'practice_areas_0_pra_title','WCL'),(24110,48606,'_practice_areas_0_pra_title','field_person_meta_pra_title'),(24111,48606,'practice_areas_0_pra_percentage','0'),(24112,48606,'_practice_areas_0_pra_percentage','field_person_meta_pra_percentage'),(24113,48606,'practice_areas_1_pra_title','Municipal Law'),(24114,48606,'_practice_areas_1_pra_title','field_person_meta_pra_title'),(24115,48606,'practice_areas_1_pra_percentage','0'),(24116,48606,'_practice_areas_1_pra_percentage','field_person_meta_pra_percentage'),(24117,48606,'practice_areas_2_pra_title','Labor & Employment'),(24118,48606,'_practice_areas_2_pra_title','field_person_meta_pra_title'),(24119,48606,'practice_areas_2_pra_percentage','0'),(24120,48606,'_practice_areas_2_pra_percentage','field_person_meta_pra_percentage'),(24121,48606,'practice_areas','3'),(24122,48606,'_practice_areas','field_person_meta_practice_areas'),(24123,48606,'bar_admissions_0_ba_name','New York'),(24124,48606,'_bar_admissions_0_ba_name','field_person_meta_ba_name'),(24125,48606,'bar_admissions_0_ba_year','1999'),(24126,48606,'_bar_admissions_0_ba_year','field_person_meta_ba_year'),(24127,48606,'bar_admissions_0_ba_code','5842'),(24128,48606,'_bar_admissions_0_ba_code','field_person_meta_ba_code'),(24129,48606,'bar_admissions_1_ba_name','U.S. District Court Western District of New York'),(24130,48606,'_bar_admissions_1_ba_name','field_person_meta_ba_name'),(24131,48606,'bar_admissions_1_ba_year','2000'),(24132,48606,'_bar_admissions_1_ba_year','field_person_meta_ba_year'),(24133,48606,'bar_admissions_1_ba_code','7577'),(24134,48606,'_bar_admissions_1_ba_code','field_person_meta_ba_code'),(24135,48606,'bar_admissions','2'),(24136,48606,'_bar_admissions','field_person_meta_bar_admissions'),(24137,48606,'professional_assoc_0_pa_name','Erie County Bar Association, Workers’ Compensation Committee'),(24138,48606,'_professional_assoc_0_pa_name','field_person_meta_pa_name'),(24139,48606,'professional_assoc_0_pa_title','Member'),(24140,48606,'_professional_assoc_0_pa_title','field_person_meta_pa_title'),(24141,48606,'professional_assoc_0_pa_time_period',''),(24142,48606,'_professional_assoc_0_pa_time_period','field_person_meta_pa_time_period'),(24143,48606,'professional_assoc_1_pa_name','New York State Bar Association, Local Government Committee'),(24144,48606,'_professional_assoc_1_pa_name','field_person_meta_pa_name'),(24145,48606,'professional_assoc_1_pa_title','Member'),(24146,48606,'_professional_assoc_1_pa_title','field_person_meta_pa_title'),(24147,48606,'professional_assoc_1_pa_time_period',''),(24148,48606,'_professional_assoc_1_pa_time_period','field_person_meta_pa_time_period'),(24149,48606,'professional_assoc','2'),(24150,48606,'_professional_assoc','field_person_meta_professional_assoc'),(24151,48606,'classes_seminars',''),(24152,48606,'_classes_seminars','field_person_meta_classes_seminars'),(24153,48606,'honors',''),(24154,48606,'_honors','field_person_meta_honors'),(24155,48606,'published_works',''),(24156,48606,'_published_works','field_person_meta_published_works'),(24157,48606,'bio',''),(24158,48606,'_bio','field_person_meta_bio'),(24159,48606,'past_positions_0_pp_organization_name','Erie County Sheriff’s Office'),(24160,48606,'_past_positions_0_pp_organization_name','field_person_meta_pp_organization_name'),(24161,48606,'past_positions_0_pp_position_title','Assistant County Attorney'),(24162,48606,'_past_positions_0_pp_position_title','field_person_meta_pp_position_title'),(24163,48606,'past_positions_0_pp_time_period','2000 to 2005'),(24164,48606,'_past_positions_0_pp_time_period','field_person_meta_pp_time_period'),(24165,48606,'past_positions_1_pp_organization_name','Bouvier O\'Connor'),(24166,48606,'_past_positions_1_pp_organization_name','field_person_meta_pp_organization_name'),(24167,48606,'past_positions_1_pp_position_title','Associate'),(24168,48606,'_past_positions_1_pp_position_title','field_person_meta_pp_position_title'),(24169,48606,'past_positions_1_pp_time_period','1998 to 2000'),(24170,48606,'_past_positions_1_pp_time_period','field_person_meta_pp_time_period'),(24171,48606,'past_positions_2_pp_organization_name','Hamberger & Weiss'),(24172,48606,'_past_positions_2_pp_organization_name','field_person_meta_pp_organization_name'),(24173,48606,'past_positions_2_pp_position_title','Partner'),(24174,48606,'_past_positions_2_pp_position_title','field_person_meta_pp_position_title'),(24175,48606,'past_positions_2_pp_time_period',''),(24176,48606,'_past_positions_2_pp_time_period','field_person_meta_pp_time_period'),(24177,48606,'past_positions','3'),(24178,48606,'_past_positions','field_person_meta_past_positions'),(24179,48606,'pro_bonos',''),(24180,48606,'_pro_bonos','field_person_meta_pro_bonos'),(24181,48606,'languages',''),(24182,48606,'_languages','field_person_meta_languages'),(24183,48606,'fraternity_sororities',''),(24184,48606,'_fraternity_sororities','field_person_meta_fraternity_sororities'),(24185,48606,'representative_cases_0_rc_case_title','125 A.D.3d 1074'),(24186,48606,'_representative_cases_0_rc_case_title','field_person_meta_rc_case_title'),(24187,48606,'representative_cases_0_rc_citation',''),(24188,48606,'_representative_cases_0_rc_citation','field_person_meta_rc_citation'),(24189,48606,'representative_cases_0_rc_year','2015'),(24190,48606,'_representative_cases_0_rc_year','field_person_meta_rc_year'),(24191,48606,'representative_cases_0_rc_court',''),(24192,48606,'_representative_cases_0_rc_court','field_person_meta_rc_court'),(24193,48606,'representative_cases_0_rc_serial_number',''),(24194,48606,'_representative_cases_0_rc_serial_number','field_person_meta_rc_serial_number'),(24195,48606,'representative_cases_1_rc_case_title','143 A.D.3d 1107'),(24196,48606,'_representative_cases_1_rc_case_title','field_person_meta_rc_case_title'),(24197,48606,'representative_cases_1_rc_citation',''),(24198,48606,'_representative_cases_1_rc_citation','field_person_meta_rc_citation'),(24199,48606,'representative_cases_1_rc_year','2016'),(24200,48606,'_representative_cases_1_rc_year','field_person_meta_rc_year'),(24201,48606,'representative_cases_1_rc_court',''),(24202,48606,'_representative_cases_1_rc_court','field_person_meta_rc_court'),(24203,48606,'representative_cases_1_rc_serial_number',''),(24204,48606,'_representative_cases_1_rc_serial_number','field_person_meta_rc_serial_number'),(24205,48606,'representative_cases','2'),(24206,48606,'_representative_cases','field_person_meta_representative_cases'),(24207,48606,'specialties',''),(24208,48606,'_specialties','field_person_meta_specialties'),(24209,48606,'references',''),(24210,48606,'_references','field_person_meta_references'),(24211,48606,'ancillary_businesses',''),(24212,48606,'_ancillary_businesses','field_person_meta_ancillary_businesses'),(24213,48606,'legal_educations_0_le_school','State University of New York, Buffalo School of Law'),(24214,48606,'_legal_educations_0_le_school','field_person_meta_le_school'),(24215,48606,'legal_educations_0_le_city','Buffalo'),(24216,48606,'_legal_educations_0_le_city','field_person_meta_le_city'),(24217,48606,'legal_educations_0_le_state','New York'),(24218,48606,'_legal_educations_0_le_state','field_person_meta_le_state'),(24219,48606,'legal_educations_0_le_grad_date','1998'),(24220,48606,'_legal_educations_0_le_grad_date','field_person_meta_le_grad_date'),(24221,48606,'legal_educations_0_le_degree_name','J.D.'),(24222,48606,'_legal_educations_0_le_degree_name','field_person_meta_le_degree_name'),(24223,48606,'legal_educations_0_le_distinction',''),(24224,48606,'_legal_educations_0_le_distinction','field_person_meta_le_distinction'),(24225,48606,'legal_educations_0_le_school_honors',''),(24226,48606,'_legal_educations_0_le_school_honors','field_person_meta_le_school_honors'),(24227,48606,'legal_educations_0_le_school_majors',''),(24228,48606,'_legal_educations_0_le_school_majors','field_person_meta_le_school_majors'),(24229,48606,'legal_educations_0_le_school_minors',''),(24230,48606,'_legal_educations_0_le_school_minors','field_person_meta_le_school_minors'),(24231,48606,'legal_educations','1'),(24232,48606,'_legal_educations','field_person_meta_legal_educations'),(24233,48606,'non_legal_educations_0_nl_school','State University of New York at Buffalo'),(24234,48606,'_non_legal_educations_0_nl_school','field_person_meta_nl_school'),(24235,48606,'non_legal_educations_0_nl_city',''),(24236,48606,'_non_legal_educations_0_nl_city','field_person_meta_nl_city'),(24237,48606,'non_legal_educations_0_nl_state','New York'),(24238,48606,'_non_legal_educations_0_nl_state','field_person_meta_nl_state'),(24239,48606,'non_legal_educations_0_nl_grad_date','1994'),(24240,48606,'_non_legal_educations_0_nl_grad_date','field_person_meta_nl_grad_date'),(24241,48606,'non_legal_educations_0_nl_degree_name','B.A.'),(24242,48606,'_non_legal_educations_0_nl_degree_name','field_person_meta_nl_degree_name'),(24243,48606,'non_legal_educations_0_nl_distinction',''),(24244,48606,'_non_legal_educations_0_nl_distinction','field_person_meta_nl_distinction'),(24245,48606,'non_legal_educations_0_nle_school_honors',''),(24246,48606,'_non_legal_educations_0_nle_school_honors','field_person_meta_nle_school_honors'),(24247,48606,'non_legal_educations_0_nle_school_majors_0_nle_smaj_name','English and Philosophy'),(24248,48606,'_non_legal_educations_0_nle_school_majors_0_nle_smaj_name','field_person_meta_nle_smaj_name'),(24249,48606,'non_legal_educations_0_nle_school_majors','1'),(24250,48606,'_non_legal_educations_0_nle_school_majors','field_person_meta_nle_school_majors'),(24251,48606,'non_legal_educations_0_nle_school_minors',''),(24252,48606,'_non_legal_educations_0_nle_school_minors','field_person_meta_nle_school_minors'),(24253,48606,'non_legal_educations','1'),(24254,48606,'_non_legal_educations','field_person_meta_non_legal_educations'),(24255,48606,'representative_clients',''),(24256,48606,'_representative_clients','field_person_meta_representative_clients'),(24257,48606,'current_positions_0_cp_title','Of Counsel'),(24258,48606,'_current_positions_0_cp_title','field_person_meta_cp_title'),(24259,48606,'current_positions','1'),(24260,48606,'_current_positions','field_person_meta_current_positions'),(24265,46089,'_wp_old_date','2021-11-30'),(24266,46091,'_wp_old_date','2021-11-30'),(24267,48168,'_wp_old_date','2021-11-30'),(24282,47861,'_global_colors_info','{}'),(24293,46073,'_global_colors_info','{}'),(24300,46091,'_global_colors_info','{}'),(24304,46089,'_global_colors_info','{}'),(24314,46085,'_global_colors_info','{}'),(24321,46071,'_global_colors_info','{}'),(24331,46075,'_global_colors_info','{}'),(24341,46079,'_global_colors_info','{}'),(24355,48168,'_global_colors_info','{}'),(24366,46081,'_global_colors_info','{}'),(24373,47314,'_global_colors_info','{}'),(24495,46125,'_aioseop_title','Katrina Gray | The Law Offices of Melissa A. Day, PLLC'),(24546,46081,'bar_admissions_0_ba_name','New York'),(24547,46081,'_bar_admissions_0_ba_name','field_person_meta_ba_name'),(24548,46081,'bar_admissions_0_ba_year','2013'),(24549,46081,'_bar_admissions_0_ba_year','field_person_meta_ba_year'),(24550,46081,'bar_admissions_0_ba_code','5842'),(24551,46081,'_bar_admissions_0_ba_code','field_person_meta_ba_code'),(24605,48020,'_global_colors_info','{}'),(24653,46122,'_global_colors_info','{}'),(24865,46191,'_global_colors_info','{}'),(24879,47697,'_global_colors_info','{}'),(24905,48685,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(24906,48685,'current_word_count','93'),(24907,48685,'author_byline','On Behalf of'),(24908,48685,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(24909,48685,'_edit_lock','1663936935:1'),(24910,48685,'_edit_last','1'),(24911,48685,'_wp_page_template','default'),(24912,48685,'du-meta-custom-footer','default'),(24913,48685,'_et_monarch_override',''),(24914,48685,'_et_pb_post_hide_nav','default'),(24915,48685,'_et_pb_page_layout','et_right_sidebar'),(24916,48685,'_et_pb_side_nav','off'),(24917,48685,'_et_pb_use_builder',''),(24918,48685,'_et_pb_first_image',''),(24919,48685,'_et_pb_truncate_post',''),(24920,48685,'_et_pb_truncate_post_date',''),(24921,48685,'_et_pb_old_content',''),(24922,48685,'type',''),(24923,48685,'source_url',''),(24924,48685,'target_word_count',''),(24925,48685,'target_sections',''),(24926,48685,'content_type','new'),(24927,48685,'subtitle',''),(24928,48685,'_subtitle','field_page_subtitle_subtitle'),(24931,48685,'pagegoals','goal3'),(24932,48685,'pagelanguage','english'),(24933,48685,'pagetype','marketing'),(24946,48689,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(24947,48689,'current_word_count','74'),(24948,48689,'author_byline','On Behalf of'),(24949,48689,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(24950,48689,'_edit_lock','1663937307:1'),(24951,48689,'_edit_last','1'),(24952,48689,'_wp_page_template','default'),(24953,48689,'du-meta-custom-footer','default'),(24954,48689,'_et_monarch_override',''),(24955,48689,'_et_pb_post_hide_nav','default'),(24956,48689,'_et_pb_page_layout','et_right_sidebar'),(24957,48689,'_et_pb_side_nav','off'),(24958,48689,'_et_pb_use_builder',''),(24959,48689,'_et_pb_first_image',''),(24960,48689,'_et_pb_truncate_post',''),(24961,48689,'_et_pb_truncate_post_date',''),(24962,48689,'_et_pb_old_content',''),(24963,48689,'type',''),(24964,48689,'source_url',''),(24965,48689,'target_word_count',''),(24966,48689,'target_sections',''),(24967,48689,'content_type','new'),(24968,48689,'subtitle',''),(24969,48689,'_subtitle','field_page_subtitle_subtitle'),(24972,48689,'pagegoals','goal3'),(24973,48689,'pagelanguage','english'),(24974,48689,'pagetype','marketing'),(24975,48691,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"website\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(24976,48691,'current_word_count','125'),(24977,48691,'author_byline','On Behalf of'),(24978,48691,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(24979,48691,'_edit_lock','1663937282:1'),(24980,48691,'_edit_last','1'),(24981,48691,'_wp_page_template','default'),(24982,48691,'du-meta-custom-footer','default'),(24983,48691,'_et_monarch_override',''),(24984,48691,'_et_pb_post_hide_nav','default'),(24985,48691,'_et_pb_page_layout','et_right_sidebar'),(24986,48691,'_et_pb_side_nav','off'),(24987,48691,'_et_pb_use_builder',''),(24988,48691,'_et_pb_first_image',''),(24989,48691,'_et_pb_truncate_post',''),(24990,48691,'_et_pb_truncate_post_date',''),(24991,48691,'_et_pb_old_content',''),(24992,48691,'type',''),(24993,48691,'source_url',''),(24994,48691,'target_word_count',''),(24995,48691,'target_sections',''),(24996,48691,'content_type','new'),(24997,48691,'subtitle',''),(24998,48691,'_subtitle','field_page_subtitle_subtitle'),(25001,48691,'pagegoals','goal3'),(25002,48691,'pagelanguage','english'),(25003,48691,'pagetype','marketing'),(25248,46077,'practice_areas_1_pra_title','Subrogation'),(25249,46077,'_practice_areas_1_pra_title','field_person_meta_pra_title'),(25250,46077,'practice_areas_1_pra_percentage','0'),(25251,46077,'_practice_areas_1_pra_percentage','field_person_meta_pra_percentage'),(25252,46077,'practice_areas_2_pra_title','Personal Injury Defense'),(25253,46077,'_practice_areas_2_pra_title','field_person_meta_pra_title'),(25254,46077,'practice_areas_2_pra_percentage','0'),(25255,46077,'_practice_areas_2_pra_percentage','field_person_meta_pra_percentage'),(25256,46077,'non_legal_educations_1_nl_school','Nardin Academy'),(25257,46077,'_non_legal_educations_1_nl_school','field_person_meta_nl_school'),(25258,46077,'non_legal_educations_1_nl_city',''),(25259,46077,'_non_legal_educations_1_nl_city','field_person_meta_nl_city'),(25260,46077,'non_legal_educations_1_nl_state',''),(25261,46077,'_non_legal_educations_1_nl_state','field_person_meta_nl_state'),(25262,46077,'non_legal_educations_1_nl_grad_date','1984'),(25263,46077,'_non_legal_educations_1_nl_grad_date','field_person_meta_nl_grad_date'),(25264,46077,'non_legal_educations_1_nl_degree_name',''),(25265,46077,'_non_legal_educations_1_nl_degree_name','field_person_meta_nl_degree_name'),(25266,46077,'non_legal_educations_1_nl_distinction',''),(25267,46077,'_non_legal_educations_1_nl_distinction','field_person_meta_nl_distinction'),(25268,46077,'non_legal_educations_1_nle_school_honors',''),(25269,46077,'_non_legal_educations_1_nle_school_honors','field_person_meta_nle_school_honors'),(25270,46077,'non_legal_educations_1_nle_school_majors',''),(25271,46077,'_non_legal_educations_1_nle_school_majors','field_person_meta_nle_school_majors'),(25272,46077,'non_legal_educations_1_nle_school_minors',''),(25273,46077,'_non_legal_educations_1_nle_school_minors','field_person_meta_nle_school_minors'),(25274,46077,'published_works_3_pw_title','Contributing author: Licht, Esq., Steven M., “The Special Disability Fund, The Fund for Reopened Cases and Special Funds Conservation Committee”. Workers’ Compensation Law and Practice in New York. Editors-in-Chief Steven M. Scotti and John Sweeny. Albany, NY: New York State Bar Association (2011)'),(25275,46077,'_published_works_3_pw_title','field_person_meta_pw_title'),(25276,46077,'published_works_3_pw_citation_or_publisher',''),(25277,46077,'_published_works_3_pw_citation_or_publisher','field_person_meta_pw_citation_or_publisher'),(25278,46077,'published_works_3_pw_issue',''),(25279,46077,'_published_works_3_pw_issue','field_person_meta_pw_issue'),(25280,46077,'published_works_3_pw_year',''),(25281,46077,'_published_works_3_pw_year','field_person_meta_pw_year'),(25395,45969,'_wp_old_date','2021-11-29'),(25396,45968,'_wp_old_date','2021-11-29'),(25397,46669,'_wp_old_date','2021-11-29'),(25398,47292,'_wp_old_date','2021-11-29'),(25399,47299,'_wp_old_date','2021-11-29'),(25400,46668,'_wp_old_date','2021-11-29'),(25401,47728,'_wp_old_date','2021-11-29'),(25402,47297,'_wp_old_date','2021-11-29'),(25403,47294,'_wp_old_date','2021-11-29'),(25404,47296,'_wp_old_date','2021-11-29'),(25405,47298,'_wp_old_date','2021-11-29'),(25406,47295,'_wp_old_date','2021-11-29'),(25407,47854,'_wp_old_date','2021-11-29'),(25408,45967,'_wp_old_date','2021-11-29'),(25409,47293,'_wp_old_date','2021-11-29'),(25410,46670,'_wp_old_date','2021-11-29'),(25411,45966,'_wp_old_date','2021-11-29'),(25412,47214,'_wp_old_date','2021-11-30'),(25413,47307,'_wp_old_date','2021-11-30'),(25414,48418,'_wp_old_date','2021-11-30'),(25415,47305,'_wp_old_date','2021-11-30'),(25416,47213,'_wp_old_date','2021-11-30'),(25418,47312,'_wp_old_date','2021-11-30'),(25419,47311,'_wp_old_date','2021-11-30'),(25420,47313,'_wp_old_date','2021-11-30'),(25421,47308,'_wp_old_date','2021-11-30'),(25422,47516,'_wp_old_date','2021-11-30'),(25423,47215,'_wp_old_date','2021-11-30'),(25424,47518,'_wp_old_date','2021-11-30'),(25611,46071,'_wp_old_date','2022-01-03'),(25612,46073,'_wp_old_date','2022-01-03'),(25613,46075,'_wp_old_date','2022-01-03'),(25614,46077,'_wp_old_date','2022-01-03'),(25615,46079,'_wp_old_date','2022-01-03'),(25616,47861,'_wp_old_date','2022-01-03'),(25617,47314,'_wp_old_date','2022-01-03'),(25618,46081,'_wp_old_date','2022-01-03'),(25619,48716,'guid','I33B1020C1DD211B2BB9ABB00B20B0C2E'),(25620,48716,'wld_id','5255464'),(25621,48716,'first_name','Satoko (Suki)'),(25622,48716,'_first_name','field_person_meta_first_name'),(25623,48716,'middle_name',''),(25624,48716,'_middle_name','field_person_meta_middle_name'),(25625,48716,'last_name','Harada'),(25626,48716,'_last_name','field_person_meta_last_name'),(25627,48716,'location','a:3:{s:7:\"address\";s:33:\"636 N French Rd, Amherst NY 14228\";s:3:\"lat\";s:10:\"43.0358760\";s:3:\"lng\";s:11:\"-78.8008900\";}'),(25628,48716,'_location','field_person_meta_location'),(25629,48716,'phone','+1-716-755-4355'),(25630,48716,'_phone','field_person_meta_phone'),(25631,48716,'fax','855-443-8623'),(25632,48716,'_fax','field_person_meta_fax'),(25633,48716,'email','sharada@madwcdefense.com'),(25634,48716,'_email','field_person_meta_email'),(25635,48716,'practice_areas_0_pra_title','Workers\' Compensation'),(25636,48716,'_practice_areas_0_pra_title','field_person_meta_pra_title'),(25637,48716,'practice_areas_0_pra_percentage','0'),(25638,48716,'_practice_areas_0_pra_percentage','field_person_meta_pra_percentage'),(25639,48716,'practice_areas','1'),(25640,48716,'_practice_areas','field_person_meta_practice_areas'),(25641,48716,'bar_admissions_0_ba_name','Maryland'),(25642,48716,'_bar_admissions_0_ba_name','field_person_meta_ba_name'),(25643,48716,'bar_admissions_0_ba_year',''),(25644,48716,'_bar_admissions_0_ba_year','field_person_meta_ba_year'),(25645,48716,'bar_admissions_0_ba_code','5076'),(25646,48716,'_bar_admissions_0_ba_code','field_person_meta_ba_code'),(25647,48716,'bar_admissions_1_ba_name','New York'),(25648,48716,'_bar_admissions_1_ba_name','field_person_meta_ba_name'),(25649,48716,'bar_admissions_1_ba_year',''),(25650,48716,'_bar_admissions_1_ba_year','field_person_meta_ba_year'),(25651,48716,'bar_admissions_1_ba_code','5842'),(25652,48716,'_bar_admissions_1_ba_code','field_person_meta_ba_code'),(25653,48716,'bar_admissions','2'),(25654,48716,'_bar_admissions','field_person_meta_bar_admissions'),(25655,48716,'professional_assoc_0_pa_name','New York State Bar Association'),(25656,48716,'_professional_assoc_0_pa_name','field_person_meta_pa_name'),(25657,48716,'professional_assoc_0_pa_title',''),(25658,48716,'_professional_assoc_0_pa_title','field_person_meta_pa_title'),(25659,48716,'professional_assoc_0_pa_time_period',''),(25660,48716,'_professional_assoc_0_pa_time_period','field_person_meta_pa_time_period'),(25661,48716,'professional_assoc','1'),(25662,48716,'_professional_assoc','field_person_meta_professional_assoc'),(25663,48716,'classes_seminars',''),(25664,48716,'_classes_seminars','field_person_meta_classes_seminars'),(25665,48716,'honors_0_honor_desc','Vice President, University of Baltimore School of Law Moot Court Board'),(25666,48716,'_honors_0_honor_desc','field_person_meta_honor_desc'),(25667,48716,'honors_1_honor_desc','Recent Developments Editor, University of Baltimore Law Forum Editorial Board'),(25668,48716,'_honors_1_honor_desc','field_person_meta_honor_desc'),(25669,48716,'honors_2_honor_desc','Event Operations Manager, Night Lights Music Festival'),(25670,48716,'_honors_2_honor_desc','field_person_meta_honor_desc'),(25671,48716,'honors','3'),(25672,48716,'_honors','field_person_meta_honors'),(25673,48716,'published_works_0_pw_title','Master Financial, Inc. v. Crowder, 40 U. Balt. L.F. 131 (2009).'),(25674,48716,'_published_works_0_pw_title','field_person_meta_pw_title'),(25675,48716,'published_works_0_pw_citation_or_publisher',''),(25676,48716,'_published_works_0_pw_citation_or_publisher','field_person_meta_pw_citation_or_publisher'),(25677,48716,'published_works_0_pw_issue',''),(25678,48716,'_published_works_0_pw_issue','field_person_meta_pw_issue'),(25679,48716,'published_works_0_pw_year',''),(25680,48716,'_published_works_0_pw_year','field_person_meta_pw_year'),(25681,48716,'published_works_1_pw_title','Additional Barriers to Breaking the Silence, 41 U. Balt. L.F. 150 (2011).'),(25682,48716,'_published_works_1_pw_title','field_person_meta_pw_title'),(25683,48716,'published_works_1_pw_citation_or_publisher',''),(25684,48716,'_published_works_1_pw_citation_or_publisher','field_person_meta_pw_citation_or_publisher'),(25685,48716,'published_works_1_pw_issue',''),(25686,48716,'_published_works_1_pw_issue','field_person_meta_pw_issue'),(25687,48716,'published_works_1_pw_year',''),(25688,48716,'_published_works_1_pw_year','field_person_meta_pw_year'),(25689,48716,'published_works','2'),(25690,48716,'_published_works','field_person_meta_published_works'),(25691,48716,'bio',''),(25692,48716,'_bio','field_person_meta_bio'),(25693,48716,'past_positions',''),(25694,48716,'_past_positions','field_person_meta_past_positions'),(25695,48716,'pro_bonos',''),(25696,48716,'_pro_bonos','field_person_meta_pro_bonos'),(25697,48716,'languages',''),(25698,48716,'_languages','field_person_meta_languages'),(25699,48716,'fraternity_sororities',''),(25700,48716,'_fraternity_sororities','field_person_meta_fraternity_sororities'),(25701,48716,'representative_cases',''),(25702,48716,'_representative_cases','field_person_meta_representative_cases'),(25703,48716,'specialties',''),(25704,48716,'_specialties','field_person_meta_specialties'),(25705,48716,'references',''),(25706,48716,'_references','field_person_meta_references'),(25707,48716,'ancillary_businesses',''),(25708,48716,'_ancillary_businesses','field_person_meta_ancillary_businesses'),(25709,48716,'legal_educations_0_le_school','University of Baltimore School of Law'),(25710,48716,'_legal_educations_0_le_school','field_person_meta_le_school'),(25711,48716,'legal_educations_0_le_city','Baltimore'),(25712,48716,'_legal_educations_0_le_city','field_person_meta_le_city'),(25713,48716,'legal_educations_0_le_state','Maryland'),(25714,48716,'_legal_educations_0_le_state','field_person_meta_le_state'),(25715,48716,'legal_educations_0_le_degree_name','Juris Doctor'),(25716,48716,'_legal_educations_0_le_degree_name','field_person_meta_le_degree_name'),(25717,48716,'legal_educations_0_le_distinction',''),(25718,48716,'_legal_educations_0_le_distinction','field_person_meta_le_distinction'),(25719,48716,'legal_educations_0_le_school_honors',''),(25720,48716,'_legal_educations_0_le_school_honors','field_person_meta_le_school_honors'),(25721,48716,'legal_educations_0_le_school_majors',''),(25722,48716,'_legal_educations_0_le_school_majors','field_person_meta_le_school_majors'),(25723,48716,'legal_educations_0_le_school_minors',''),(25724,48716,'_legal_educations_0_le_school_minors','field_person_meta_le_school_minors'),(25725,48716,'legal_educations','1'),(25726,48716,'_legal_educations','field_person_meta_legal_educations'),(25727,48716,'non_legal_educations_0_nl_school','Buffalo State College'),(25728,48716,'_non_legal_educations_0_nl_school','field_person_meta_nl_school'),(25729,48716,'non_legal_educations_0_nl_city',''),(25730,48716,'_non_legal_educations_0_nl_city','field_person_meta_nl_city'),(25731,48716,'non_legal_educations_0_nl_state',''),(25732,48716,'_non_legal_educations_0_nl_state','field_person_meta_nl_state'),(25733,48716,'non_legal_educations_0_nl_degree_name',''),(25734,48716,'_non_legal_educations_0_nl_degree_name','field_person_meta_nl_degree_name'),(25735,48716,'non_legal_educations_0_nl_distinction',''),(25736,48716,'_non_legal_educations_0_nl_distinction','field_person_meta_nl_distinction'),(25737,48716,'non_legal_educations_0_nle_school_honors',''),(25738,48716,'_non_legal_educations_0_nle_school_honors','field_person_meta_nle_school_honors'),(25739,48716,'non_legal_educations_0_nle_school_majors',''),(25740,48716,'_non_legal_educations_0_nle_school_majors','field_person_meta_nle_school_majors'),(25741,48716,'non_legal_educations_0_nle_school_minors',''),(25742,48716,'_non_legal_educations_0_nle_school_minors','field_person_meta_nle_school_minors'),(25743,48716,'non_legal_educations','1'),(25744,48716,'_non_legal_educations','field_person_meta_non_legal_educations'),(25745,48716,'representative_clients',''),(25746,48716,'_representative_clients','field_person_meta_representative_clients'),(25747,48716,'current_positions_0_cp_title','Associate Attorney (Admission Pending)'),(25748,48716,'_current_positions_0_cp_title','field_person_meta_cp_title'),(25749,48716,'current_positions','1'),(25750,48716,'_current_positions','field_person_meta_current_positions'),(25752,48717,'guid','I1E3BD51E1DD211B29472CD00D2036493'),(25753,48717,'wld_id','5255462'),(25754,48717,'first_name','Bingchen'),(25755,48717,'_first_name','field_person_meta_first_name'),(25756,48717,'middle_name',''),(25757,48717,'_middle_name','field_person_meta_middle_name'),(25758,48717,'last_name','Huang'),(25759,48717,'_last_name','field_person_meta_last_name'),(25760,48717,'location','a:3:{s:7:\"address\";s:33:\"636 N French Rd, Amherst NY 14228\";s:3:\"lat\";s:10:\"43.0358760\";s:3:\"lng\";s:11:\"-78.8008900\";}'),(25761,48717,'_location','field_person_meta_location'),(25762,48717,'phone','+1-716-650-5718'),(25763,48717,'_phone','field_person_meta_phone'),(25764,48717,'fax','855-443-8623'),(25765,48717,'_fax','field_person_meta_fax'),(25766,48717,'email','bhuang@madwcdefense.com'),(25767,48717,'_email','field_person_meta_email'),(25768,48717,'practice_areas_0_pra_title','Workers\' Compensation'),(25769,48717,'_practice_areas_0_pra_title','field_person_meta_pra_title'),(25770,48717,'practice_areas_0_pra_percentage','0'),(25771,48717,'_practice_areas_0_pra_percentage','field_person_meta_pra_percentage'),(25772,48717,'practice_areas','1'),(25773,48717,'_practice_areas','field_person_meta_practice_areas'),(25774,48717,'bar_admissions_0_ba_name','New York'),(25775,48717,'_bar_admissions_0_ba_name','field_person_meta_ba_name'),(25776,48717,'bar_admissions_0_ba_year',''),(25777,48717,'_bar_admissions_0_ba_year','field_person_meta_ba_year'),(25778,48717,'bar_admissions_0_ba_code','5842'),(25779,48717,'_bar_admissions_0_ba_code','field_person_meta_ba_code'),(25780,48717,'bar_admissions','1'),(25781,48717,'_bar_admissions','field_person_meta_bar_admissions'),(25782,48717,'professional_assoc_0_pa_name','New York State Bar Association'),(25783,48717,'_professional_assoc_0_pa_name','field_person_meta_pa_name'),(25784,48717,'professional_assoc_0_pa_title',''),(25785,48717,'_professional_assoc_0_pa_title','field_person_meta_pa_title'),(25786,48717,'professional_assoc_0_pa_time_period',''),(25787,48717,'_professional_assoc_0_pa_time_period','field_person_meta_pa_time_period'),(25788,48717,'professional_assoc','1'),(25789,48717,'_professional_assoc','field_person_meta_professional_assoc'),(25790,48717,'classes_seminars',''),(25791,48717,'_classes_seminars','field_person_meta_classes_seminars'),(25792,48717,'honors_0_honor_desc','Juris Doctor Cum Laude'),(25793,48717,'_honors_0_honor_desc','field_person_meta_honor_desc'),(25794,48717,'honors_1_honor_desc','McDonnell International Scholars Cohort 2018'),(25795,48717,'_honors_1_honor_desc','field_person_meta_honor_desc'),(25796,48717,'honors_2_honor_desc','WashU Law School Honors Scholars (yearly GPA top 10% 2019)'),(25797,48717,'_honors_2_honor_desc','field_person_meta_honor_desc'),(25798,48717,'honors_3_honor_desc','WashU Law School Dean’s Service Award '),(25799,48717,'_honors_3_honor_desc','field_person_meta_honor_desc'),(25800,48717,'honors','4'),(25801,48717,'_honors','field_person_meta_honors'),(25802,48717,'published_works',''),(25803,48717,'_published_works','field_person_meta_published_works'),(25804,48717,'bio',''),(25805,48717,'_bio','field_person_meta_bio'),(25806,48717,'past_positions',''),(25807,48717,'_past_positions','field_person_meta_past_positions'),(25808,48717,'pro_bonos_0_pb_activity','Clerk externship for the Honorable Judge Fleissig, United States District Court for the Eastern District of Missouri'),(25809,48717,'_pro_bonos_0_pb_activity','field_person_meta_pb_activity'),(25810,48717,'pro_bonos_0_pb_time_period',''),(25811,48717,'_pro_bonos_0_pb_time_period','field_person_meta_pb_time_period'),(25812,48717,'pro_bonos_1_pb_activity','Student attorney in WashU Law Entrepreneurship & Intellectual Property Clinic'),(25813,48717,'_pro_bonos_1_pb_activity','field_person_meta_pb_activity'),(25814,48717,'pro_bonos_1_pb_time_period',''),(25815,48717,'_pro_bonos_1_pb_time_period','field_person_meta_pb_time_period'),(25816,48717,'pro_bonos_2_pb_activity','Research Legal Intern for Missouri Public Service Commission'),(25817,48717,'_pro_bonos_2_pb_activity','field_person_meta_pb_activity'),(25818,48717,'pro_bonos_2_pb_time_period',''),(25819,48717,'_pro_bonos_2_pb_time_period','field_person_meta_pb_time_period'),(25820,48717,'pro_bonos','3'),(25821,48717,'_pro_bonos','field_person_meta_pro_bonos'),(25822,48717,'languages',''),(25823,48717,'_languages','field_person_meta_languages'),(25824,48717,'fraternity_sororities',''),(25825,48717,'_fraternity_sororities','field_person_meta_fraternity_sororities'),(25826,48717,'representative_cases',''),(25827,48717,'_representative_cases','field_person_meta_representative_cases'),(25828,48717,'specialties',''),(25829,48717,'_specialties','field_person_meta_specialties'),(25830,48717,'references',''),(25831,48717,'_references','field_person_meta_references'),(25832,48717,'ancillary_businesses',''),(25833,48717,'_ancillary_businesses','field_person_meta_ancillary_businesses'),(25834,48717,'legal_educations_0_le_school','Washington University School of Law'),(25835,48717,'_legal_educations_0_le_school','field_person_meta_le_school'),(25836,48717,'legal_educations_0_le_city','St. Louis'),(25837,48717,'_legal_educations_0_le_city','field_person_meta_le_city'),(25838,48717,'legal_educations_0_le_state','Missouri'),(25839,48717,'_legal_educations_0_le_state','field_person_meta_le_state'),(25840,48717,'legal_educations_0_le_grad_date','2021'),(25841,48717,'_legal_educations_0_le_grad_date','field_person_meta_le_grad_date'),(25842,48717,'legal_educations_0_le_degree_name','Juris Doctor'),(25843,48717,'_legal_educations_0_le_degree_name','field_person_meta_le_degree_name'),(25844,48717,'legal_educations_0_le_distinction',''),(25845,48717,'_legal_educations_0_le_distinction','field_person_meta_le_distinction'),(25846,48717,'legal_educations_0_le_school_honors',''),(25847,48717,'_legal_educations_0_le_school_honors','field_person_meta_le_school_honors'),(25848,48717,'legal_educations_0_le_school_majors',''),(25849,48717,'_legal_educations_0_le_school_majors','field_person_meta_le_school_majors'),(25850,48717,'legal_educations_0_le_school_minors',''),(25851,48717,'_legal_educations_0_le_school_minors','field_person_meta_le_school_minors'),(25852,48717,'legal_educations','1'),(25853,48717,'_legal_educations','field_person_meta_legal_educations'),(25854,48717,'non_legal_educations_0_nl_school','Columbia University'),(25855,48717,'_non_legal_educations_0_nl_school','field_person_meta_nl_school'),(25856,48717,'non_legal_educations_0_nl_city',''),(25857,48717,'_non_legal_educations_0_nl_city','field_person_meta_nl_city'),(25858,48717,'non_legal_educations_0_nl_state',''),(25859,48717,'_non_legal_educations_0_nl_state','field_person_meta_nl_state'),(25860,48717,'non_legal_educations_0_nl_grad_date','2016'),(25861,48717,'_non_legal_educations_0_nl_grad_date','field_person_meta_nl_grad_date'),(25862,48717,'non_legal_educations_0_nl_degree_name','Master of Science'),(25863,48717,'_non_legal_educations_0_nl_degree_name','field_person_meta_nl_degree_name'),(25864,48717,'non_legal_educations_0_nl_distinction',''),(25865,48717,'_non_legal_educations_0_nl_distinction','field_person_meta_nl_distinction'),(25866,48717,'non_legal_educations_0_nle_school_honors',''),(25867,48717,'_non_legal_educations_0_nle_school_honors','field_person_meta_nle_school_honors'),(25868,48717,'non_legal_educations_0_nle_school_majors',''),(25869,48717,'_non_legal_educations_0_nle_school_majors','field_person_meta_nle_school_majors'),(25870,48717,'non_legal_educations_0_nle_school_minors',''),(25871,48717,'_non_legal_educations_0_nle_school_minors','field_person_meta_nle_school_minors'),(25872,48717,'non_legal_educations_1_nl_school','Tsinghua University'),(25873,48717,'_non_legal_educations_1_nl_school','field_person_meta_nl_school'),(25874,48717,'non_legal_educations_1_nl_city',''),(25875,48717,'_non_legal_educations_1_nl_city','field_person_meta_nl_city'),(25876,48717,'non_legal_educations_1_nl_state',''),(25877,48717,'_non_legal_educations_1_nl_state','field_person_meta_nl_state'),(25878,48717,'non_legal_educations_1_nl_grad_date','2014'),(25879,48717,'_non_legal_educations_1_nl_grad_date','field_person_meta_nl_grad_date'),(25880,48717,'non_legal_educations_1_nl_degree_name','Bachelor of Engineering'),(25881,48717,'_non_legal_educations_1_nl_degree_name','field_person_meta_nl_degree_name'),(25882,48717,'non_legal_educations_1_nl_distinction',''),(25883,48717,'_non_legal_educations_1_nl_distinction','field_person_meta_nl_distinction'),(25884,48717,'non_legal_educations_1_nle_school_honors',''),(25885,48717,'_non_legal_educations_1_nle_school_honors','field_person_meta_nle_school_honors'),(25886,48717,'non_legal_educations_1_nle_school_majors',''),(25887,48717,'_non_legal_educations_1_nle_school_majors','field_person_meta_nle_school_majors'),(25888,48717,'non_legal_educations_1_nle_school_minors',''),(25889,48717,'_non_legal_educations_1_nle_school_minors','field_person_meta_nle_school_minors'),(25890,48717,'non_legal_educations','2'),(25891,48717,'_non_legal_educations','field_person_meta_non_legal_educations'),(25892,48717,'representative_clients',''),(25893,48717,'_representative_clients','field_person_meta_representative_clients'),(25894,48717,'current_positions_0_cp_title','Law Clerk'),(25895,48717,'_current_positions_0_cp_title','field_person_meta_cp_title'),(25896,48717,'current_positions','1'),(25897,48717,'_current_positions','field_person_meta_current_positions'),(25898,46085,'_wp_old_date','2022-01-03'),(25899,48606,'_wp_old_date','2022-01-03'),(25900,46089,'_wp_old_date','2022-01-03'),(25901,46091,'_wp_old_date','2022-01-03'),(26058,48168,'_wp_old_date','2022-01-03'),(26063,48717,'_edit_lock','1660756434:308'),(26065,48716,'_edit_lock','1660245586:5036'),(26074,48717,'_edit_last','5036'),(26075,48717,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"profile\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(26076,48717,'current_positions_0_cp_time_period',''),(26077,48717,'_current_positions_0_cp_time_period','field_person_meta_cp_time_period'),(26078,48717,'du-meta-custom-footer','default'),(26079,48717,'_et_monarch_override',''),(26080,48717,'_et_pb_post_hide_nav','default'),(26081,48717,'_et_pb_page_layout','et_right_sidebar'),(26082,48717,'_et_pb_side_nav','off'),(26083,48717,'_et_pb_use_builder','on'),(26084,48717,'_et_pb_first_image',''),(26085,48717,'_et_pb_truncate_post',''),(26086,48717,'_et_pb_truncate_post_date',''),(26087,48717,'_et_pb_old_content',''),(26093,48717,'_et_pb_built_for_post_type','page'),(26094,48717,'_et_pb_ab_subjects',''),(26095,48717,'_et_pb_enable_shortcode_tracking',''),(26096,48717,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"48717\" /]'),(26097,48717,'_et_pb_custom_css',''),(26098,48717,'_et_pb_gutter_width','1'),(26100,48717,'_global_colors_info','{}'),(26101,48717,'_et_builder_version','VB|Divi|4.11.4'),(26102,48717,'_et_pb_show_page_creation','off'),(26117,48716,'_edit_last','5036'),(26118,48716,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"profile\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(26119,48716,'legal_educations_0_le_grad_date',''),(26120,48716,'_legal_educations_0_le_grad_date','field_person_meta_le_grad_date'),(26121,48716,'non_legal_educations_0_nl_grad_date',''),(26122,48716,'_non_legal_educations_0_nl_grad_date','field_person_meta_nl_grad_date'),(26123,48716,'current_positions_0_cp_time_period',''),(26124,48716,'_current_positions_0_cp_time_period','field_person_meta_cp_time_period'),(26125,48716,'du-meta-custom-footer','default'),(26126,48716,'_et_monarch_override',''),(26127,48716,'_et_pb_post_hide_nav','default'),(26128,48716,'_et_pb_page_layout','et_right_sidebar'),(26129,48716,'_et_pb_side_nav','off'),(26130,48716,'_et_pb_use_builder','on'),(26131,48716,'_et_pb_first_image',''),(26132,48716,'_et_pb_truncate_post',''),(26133,48716,'_et_pb_truncate_post_date',''),(26134,48716,'_et_pb_old_content',''),(26151,48716,'_et_pb_built_for_post_type','page'),(26152,48716,'_et_pb_ab_subjects',''),(26153,48716,'_et_pb_enable_shortcode_tracking',''),(26154,48716,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"48716\" /]'),(26155,48716,'_et_pb_custom_css',''),(26156,48716,'_et_pb_gutter_width','1'),(26158,48716,'_global_colors_info','{}'),(26159,48716,'_et_builder_version','VB|Divi|4.11.4'),(26160,48716,'_et_pb_show_page_creation','off'),(26557,48606,'_edit_lock','1645123747:308'),(26698,46244,'_global_colors_info','{}'),(26710,46244,'_aioseop_title','LOMAD Newsletter | The Law Offices of Melissa A. Day, PLLC'),(26982,48606,'_edit_last','308'),(26983,48606,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"profile\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(26984,48606,'current_positions_0_cp_time_period',''),(26985,48606,'_current_positions_0_cp_time_period','field_person_meta_cp_time_period'),(26986,48606,'du-meta-custom-footer','default'),(26987,48606,'_et_monarch_override',''),(26988,48606,'_et_pb_post_hide_nav','default'),(26989,48606,'_et_pb_page_layout','et_right_sidebar'),(26990,48606,'_et_pb_side_nav','off'),(26991,48606,'_et_pb_use_builder','on'),(26992,48606,'_et_pb_first_image',''),(26993,48606,'_et_pb_truncate_post',''),(26994,48606,'_et_pb_truncate_post_date',''),(26995,48606,'_et_pb_old_content',''),(27004,48606,'_et_pb_built_for_post_type','page'),(27005,48606,'_et_pb_ab_subjects',''),(27006,48606,'_et_pb_enable_shortcode_tracking',''),(27007,48606,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"48606\" /]'),(27008,48606,'_et_pb_custom_css',''),(27009,48606,'_et_pb_gutter_width','1'),(27010,48606,'_global_colors_info','{}'),(27011,48606,'_et_builder_version','VB|Divi|4.14.2'),(27012,48606,'_et_pb_show_page_creation','off'),(27341,46129,'_aioseop_title','Elena N. Camp | The Law Offices of Melissa A. Day, PLLC'),(27368,46101,'_aioseop_title','Daniel H. Flynn | The Law Offices of Melissa A. Day, PLLC'),(27373,48020,'_aioseop_title','Corrine N. Newman | The Law Offices of Melissa A. Day, PLLC'),(27386,46132,'_aioseop_title','Jenny L. Malkowski | The Law Offices of Melissa A. Day, PLLC'),(27393,48022,'_global_colors_info','{}'),(27398,48022,'_aioseop_title','Jessica M. Stevens | The Law Offices of Melissa A. Day, PLLC'),(27412,46119,'_aioseop_title','Jillian M. Chavers | The Law Offices of Melissa A. Day, PLLC'),(27417,46121,'_aioseop_title','Jody L. Guiher | The Law Offices of Melissa A. Day, PLLC'),(27436,46122,'_aioseop_title','Justice C. Williams | The Law Offices of Melissa A. Day, PLLC'),(27468,46171,'_aioseop_title','Rebecca C. Brashear | The Law Offices of Melissa A. Day, PLLC'),(27481,46179,'_aioseop_title','Thomas M. Dickinson | The Law Offices of Melissa A. Day, PLLC'),(27498,48823,'_aioseop_opengraph_settings','a:0:{}'),(27499,48823,'current_word_count','184'),(27500,48823,'author_byline','On Behalf of'),(27501,48823,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(27506,48823,'_edit_lock','1663936888:1'),(27507,48823,'_edit_last','1'),(27508,48823,'_wp_page_template','default'),(27510,48823,'du-meta-custom-footer','default'),(27511,48823,'_et_monarch_override',''),(27512,48823,'_et_pb_post_hide_nav','default'),(27513,48823,'_et_pb_page_layout','et_right_sidebar'),(27514,48823,'_et_pb_side_nav','off'),(27515,48823,'_et_pb_use_builder',''),(27516,48823,'_et_pb_first_image',''),(27517,48823,'_et_pb_truncate_post',''),(27518,48823,'_et_pb_truncate_post_date',''),(27519,48823,'_et_pb_old_content',''),(27521,48823,'type',''),(27522,48823,'source_url',''),(27523,48823,'target_word_count',''),(27524,48823,'target_sections',''),(27525,48823,'content_type','new'),(27526,48823,'subtitle',''),(27527,48823,'_subtitle','field_page_subtitle_subtitle'),(27530,48823,'pagegoals','goal3'),(27531,48823,'pagelanguage','english'),(27532,48823,'pagetype','marketing'),(27541,48823,'_aioseop_title','Kelsey X. Kunz | The Law Offices of Melissa A. Day, PLLC'),(27557,48023,'_aioseop_title','Danielle F. Draschan | The Law Offices of Melissa A. Day, PLLC'),(28161,46229,'_aioseop_title','Client Resources | The Law Offices of Melissa A. Day, PLLC'),(28166,48859,'_menu_item_type','custom'),(28167,48859,'_menu_item_menu_item_parent','47728'),(28168,48859,'_menu_item_object_id','48859'),(28169,48859,'_menu_item_object','custom'),(28170,48859,'_menu_item_target',''),(28171,48859,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28172,48859,'_menu_item_xfn',''),(28173,48859,'_menu_item_url','https://thelomad.com/getmad.today/wp-contentwww.linkedin.com/groups/2302270/'),(28175,45969,'_wp_old_date','2022-01-05'),(28176,45968,'_wp_old_date','2022-01-05'),(28177,46669,'_wp_old_date','2022-01-05'),(28178,47292,'_wp_old_date','2022-01-05'),(28179,47299,'_wp_old_date','2022-01-05'),(28180,46668,'_wp_old_date','2022-01-05'),(28181,47728,'_wp_old_date','2022-01-05'),(28182,47297,'_wp_old_date','2022-01-05'),(28183,47294,'_wp_old_date','2022-01-05'),(28184,47296,'_wp_old_date','2022-01-05'),(28185,47298,'_wp_old_date','2022-01-05'),(28186,48859,'_aioseop_opengraph_settings','a:0:{}'),(28187,47295,'_wp_old_date','2022-01-05'),(28188,47854,'_wp_old_date','2022-01-05'),(28189,45967,'_wp_old_date','2022-01-05'),(28190,47293,'_wp_old_date','2022-01-05'),(28191,46670,'_wp_old_date','2022-01-05'),(28192,45966,'_wp_old_date','2022-01-05'),(28194,48861,'_menu_item_type','custom'),(28195,48861,'_menu_item_menu_item_parent','50698'),(28196,48861,'_menu_item_object_id','48861'),(28197,48861,'_menu_item_object','custom'),(28198,48861,'_menu_item_target',''),(28199,48861,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28200,48861,'_menu_item_xfn',''),(28201,48861,'_menu_item_url','https://www.linkedin.com/groups/2302270/'),(28203,47214,'_wp_old_date','2022-01-05'),(28204,47307,'_wp_old_date','2022-01-05'),(28205,48418,'_wp_old_date','2022-01-05'),(28206,47305,'_wp_old_date','2022-01-05'),(28207,47213,'_wp_old_date','2022-01-05'),(28209,47312,'_wp_old_date','2022-01-05'),(28210,47311,'_wp_old_date','2022-01-05'),(28211,47313,'_wp_old_date','2022-01-05'),(28212,48861,'_aioseop_opengraph_settings','a:0:{}'),(28213,47308,'_wp_old_date','2022-01-05'),(28214,47516,'_wp_old_date','2022-01-05'),(28215,47215,'_wp_old_date','2022-01-05'),(28216,47518,'_wp_old_date','2022-01-05'),(28217,47214,'_wp_old_date','2022-01-26'),(28218,47307,'_wp_old_date','2022-01-26'),(28219,48418,'_wp_old_date','2022-01-26'),(28220,47305,'_wp_old_date','2022-01-26'),(28221,47213,'_wp_old_date','2022-01-26'),(28223,47312,'_wp_old_date','2022-01-26'),(28224,47311,'_wp_old_date','2022-01-26'),(28225,47313,'_wp_old_date','2022-01-26'),(28226,48861,'_wp_old_date','2022-01-26'),(28227,47308,'_wp_old_date','2022-01-26'),(28228,47516,'_wp_old_date','2022-01-26'),(28229,47215,'_wp_old_date','2022-01-26'),(28230,47518,'_wp_old_date','2022-01-26'),(28231,45969,'_wp_old_date','2022-01-26'),(28232,45968,'_wp_old_date','2022-01-26'),(28233,46669,'_wp_old_date','2022-01-26'),(28234,47292,'_wp_old_date','2022-01-26'),(28235,47299,'_wp_old_date','2022-01-26'),(28236,46668,'_wp_old_date','2022-01-26'),(28237,47728,'_wp_old_date','2022-01-26'),(28238,47297,'_wp_old_date','2022-01-26'),(28239,47294,'_wp_old_date','2022-01-26'),(28240,47296,'_wp_old_date','2022-01-26'),(28241,47298,'_wp_old_date','2022-01-26'),(28242,48859,'_wp_old_date','2022-01-26'),(28243,47295,'_wp_old_date','2022-01-26'),(28244,47854,'_wp_old_date','2022-01-26'),(28245,45967,'_wp_old_date','2022-01-26'),(28246,47293,'_wp_old_date','2022-01-26'),(28247,46670,'_wp_old_date','2022-01-26'),(28248,45966,'_wp_old_date','2022-01-26'),(28323,48691,'_aioseop_title','Maxwell J. Doldan | The Law Offices of Melissa A. Day, PLLC'),(28328,48689,'_aioseop_title','Kierria A. Jones | The Law Offices of Melissa A. Day, PLLC'),(28426,46236,'_et_monarch_override',''),(28491,48685,'_aioseop_title','Alexandra M. Rizk | The Law Offices of Melissa A. Day, PLLC'),(28526,46236,'_aioseop_title','Case Law Updates | The Law Offices of Melissa A. Day, PLLC'),(28811,46193,'_aioseop_title','Careers  | The Law Offices of Melissa A. Day, PLLC | Amherst'),(28837,45926,'_global_colors_info','{}'),(28849,45926,'_aioseop_title','Blog | The Law Offices of Melissa A. Day, PLLC | Amherst'),(28864,48934,'_aioseop_opengraph_settings','a:14:{s:32:\"aioseop_opengraph_settings_title\";s:0:\"\";s:31:\"aioseop_opengraph_settings_desc\";s:0:\"\";s:36:\"aioseop_opengraph_settings_customimg\";s:0:\"\";s:37:\"aioseop_opengraph_settings_imagewidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_imageheight\";s:0:\"\";s:32:\"aioseop_opengraph_settings_video\";s:0:\"\";s:37:\"aioseop_opengraph_settings_videowidth\";s:0:\"\";s:38:\"aioseop_opengraph_settings_videoheight\";s:0:\"\";s:35:\"aioseop_opengraph_settings_category\";s:7:\"article\";s:34:\"aioseop_opengraph_settings_section\";s:0:\"\";s:30:\"aioseop_opengraph_settings_tag\";s:0:\"\";s:34:\"aioseop_opengraph_settings_setcard\";s:19:\"summary_large_image\";s:44:\"aioseop_opengraph_settings_customimg_twitter\";s:0:\"\";s:44:\"aioseop_opengraph_settings_customimg_checker\";s:1:\"0\";}'),(28865,48934,'author_byline','by'),(28867,48934,'_edit_lock','1654109426:4631'),(28869,48934,'_edit_last','1'),(28878,48934,'du-meta-custom-footer','default'),(28879,48934,'_et_monarch_override',''),(28880,48934,'_et_post_bg_color','#ffffff'),(28881,48934,'_et_post_bg_layout','light'),(28882,48934,'_et_pb_show_title','on'),(28883,48934,'_et_pb_post_hide_nav','default'),(28884,48934,'_et_pb_page_layout','et_right_sidebar'),(28885,48934,'_et_pb_side_nav','off'),(28886,48934,'pagegoals','goal3'),(28887,48934,'wriketaskid','No task ID associated'),(28888,48934,'pagelanguage','english'),(28889,48934,'pagetype','blog-post'),(28890,48934,'attorney_author','308_attorney_author_46077'),(28899,48934,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 08:52:04\";}'),(28900,48934,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 08:52:04\";}'),(28901,48934,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-21 08:52:07\";}'),(29218,48716,'_wp_old_slug','harada-satoko-suki-x'),(29223,48717,'_wp_old_slug','huang-bingchen-x'),(29249,46191,'_aioseop_description','The workers’ compensation defense team at The Law Offices of Melissa A. Day, PLLC, boasts more than 130 years of combined experience. Call 716-616-0111 to set up a consultation.'),(29250,46191,'_aioseop_title','Workers\' Compensation Team | The Law Offices of Melissa A. Day, PLLC | Amherst'),(29260,46189,'_aioseop_title','The Team  | The Law Offices of Melissa A. Day, PLLC | Amherst'),(29281,48964,'_wp_attached_file','2022/03/NicolinaOstwald-scaled-e1646231180226.jpg'),(29282,48964,'_aioseop_opengraph_settings','a:0:{}');
INSERT INTO `cuB_postmeta` VALUES (29283,48964,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:49:\"2022/03/NicolinaOstwald-scaled-e1646231180226.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1643284549\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"NicolinaOstwald.jpg\";}'),(29284,48964,'_edit_lock','1646230947:4631'),(29285,48964,'_wp_attachment_backup_sizes','a:4:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1708;s:6:\"height\";i:2560;s:4:\"file\";s:26:\"NicolinaOstwald-scaled.jpg\";}s:18:\"full-1646230629679\";a:3:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:41:\"NicolinaOstwald-scaled-e1646230592848.jpg\";}s:18:\"full-1646230689264\";a:3:{s:5:\"width\";i:300;s:6:\"height\";i:450;s:4:\"file\";s:41:\"NicolinaOstwald-scaled-e1646230665496.jpg\";}s:18:\"full-1646231180226\";a:3:{s:5:\"width\";i:300;s:6:\"height\";i:450;s:4:\"file\";s:41:\"NicolinaOstwald-scaled-e1646230924476.jpg\";}}'),(29287,48964,'_edit_last','4631'),(29332,6,'_aioseop_description','The Law Offices of Melissa A. Day, PLLC is a New York workers’ compensation defense firm built on client partnerships and 20 years experience. Call 716-616-0111 to set up a consultation.'),(29333,6,'_aioseop_title','Amherst Worker\'s Compensation Lawyer | Appeal A Denied Claim'),(29950,46071,'_wp_old_date','2022-01-07'),(29951,46073,'_wp_old_date','2022-01-07'),(29952,46075,'_wp_old_date','2022-01-07'),(29953,46075,'published_works_0_pw_title','Editor of LOMAD Magazine'),(29954,46075,'_published_works_0_pw_title','field_person_meta_pw_title'),(29955,46075,'published_works_0_pw_citation_or_publisher',''),(29956,46075,'_published_works_0_pw_citation_or_publisher','field_person_meta_pw_citation_or_publisher'),(29957,46075,'published_works_0_pw_issue',''),(29958,46075,'_published_works_0_pw_issue','field_person_meta_pw_issue'),(29959,46075,'published_works_0_pw_year',''),(29960,46075,'_published_works_0_pw_year','field_person_meta_pw_year'),(29961,46077,'_wp_old_date','2022-01-07'),(29962,46079,'_wp_old_date','2022-01-07'),(29963,47861,'_wp_old_date','2022-01-07'),(29964,47314,'_wp_old_date','2022-01-07'),(29965,46081,'_wp_old_date','2022-01-07'),(29966,48716,'_wp_old_date','2022-01-07'),(29968,48717,'_wp_old_date','2022-01-07'),(29969,46085,'_wp_old_date','2022-01-07'),(29970,48606,'_wp_old_date','2022-01-07'),(29971,46089,'_wp_old_date','2022-01-07'),(29972,46091,'_wp_old_date','2022-01-07'),(29974,48168,'_wp_old_date','2022-01-07'),(29994,48173,'_aioseop_title','LOMADtv | The Law Offices of Melissa A. Day, PLLC | Amherst'),(30087,46071,'_wp_old_date','2022-03-28'),(30088,46073,'_wp_old_date','2022-03-28'),(30089,46075,'_wp_old_date','2022-03-28'),(30090,46077,'_wp_old_date','2022-03-28'),(30091,46079,'_wp_old_date','2022-03-28'),(30092,47861,'_wp_old_date','2022-03-28'),(30093,47314,'_wp_old_date','2022-03-28'),(30094,46081,'_wp_old_date','2022-03-28'),(30095,48716,'_wp_old_date','2022-03-28'),(30097,48717,'_wp_old_date','2022-03-28'),(30098,46085,'_wp_old_date','2022-03-28'),(30099,48606,'_wp_old_date','2022-03-28'),(30100,46089,'_wp_old_date','2022-03-28'),(30101,46091,'_wp_old_date','2022-03-28'),(30103,48168,'_wp_old_date','2022-03-28'),(30822,46191,'_aioseo_title','Workers\' Compensation Team | The Law Offices of Melissa A. Day, PLLC | Amherst'),(30823,46191,'_aioseo_description','The workers’ compensation defense team at The Law Offices of Melissa A. Day, PLLC, boasts more than 130 years of combined experience. Call 716-616-0111 to set up a consultation.'),(30824,46191,'_aioseo_keywords',''),(30825,46191,'_aioseo_og_title',NULL),(30826,46191,'_aioseo_og_description',NULL),(30827,46191,'_aioseo_og_article_section',''),(30828,46191,'_aioseo_og_article_tags',''),(30829,46191,'_aioseo_twitter_title',NULL),(30830,46191,'_aioseo_twitter_description',NULL),(31387,48410,'_aioseo_title',NULL),(31388,48410,'_aioseo_description',NULL),(31389,48410,'_aioseo_keywords',''),(31390,48410,'_aioseo_og_title',NULL),(31391,48410,'_aioseo_og_description',NULL),(31392,48410,'_aioseo_og_article_section',''),(31393,48410,'_aioseo_og_article_tags',''),(31394,48410,'_aioseo_twitter_title',NULL),(31395,48410,'_aioseo_twitter_description',NULL),(31442,46071,'_wp_old_date','2022-03-30'),(31443,46073,'_wp_old_date','2022-03-30'),(31444,46075,'_wp_old_date','2022-03-30'),(31445,46077,'_wp_old_date','2022-03-30'),(31446,46079,'_wp_old_date','2022-03-30'),(31447,47861,'_wp_old_date','2022-03-30'),(31448,47314,'_wp_old_date','2022-03-30'),(31449,46081,'_wp_old_date','2022-03-30'),(31450,48716,'_wp_old_date','2022-03-30'),(31452,48717,'_wp_old_date','2022-03-30'),(31453,46085,'_wp_old_date','2022-03-30'),(31454,49019,'guid','I167C3ABC1DD211B2B3E78400520C979C'),(31455,49019,'wld_id','5268639'),(31456,49019,'first_name','Maria'),(31457,49019,'_first_name','field_person_meta_first_name'),(31458,49019,'middle_name',''),(31459,49019,'_middle_name','field_person_meta_middle_name'),(31460,49019,'last_name','Lua'),(31461,49019,'_last_name','field_person_meta_last_name'),(31462,49019,'location','a:8:{s:7:\"address\";s:33:\"636 N French Rd, Amherst NY 14228\";s:3:\"lat\";s:10:\"43.0358760\";s:3:\"lng\";s:11:\"-78.8008900\";s:4:\"city\";s:7:\"Buffalo\";s:5:\"state\";s:2:\"NY\";s:11:\"postal_code\";s:5:\"14228\";s:7:\"country\";s:2:\"US\";s:14:\"street_address\";s:21:\"636 North French Road\";}'),(31463,49019,'_location','field_person_meta_location'),(31464,49019,'phone','+1-716-312-1371'),(31465,49019,'_phone','field_person_meta_phone'),(31466,49019,'fax','855-443-8623'),(31467,49019,'_fax','field_person_meta_fax'),(31468,49019,'email','mail@madwcdefense.com'),(31469,49019,'_email','field_person_meta_email'),(31470,49019,'practice_areas_0_pra_title','Workers’ Compensation'),(31471,49019,'_practice_areas_0_pra_title','field_person_meta_pra_title'),(31472,49019,'practice_areas_0_pra_percentage','0'),(31473,49019,'_practice_areas_0_pra_percentage','field_person_meta_pra_percentage'),(31474,49019,'practice_areas','1'),(31475,49019,'_practice_areas','field_person_meta_practice_areas'),(31476,49019,'bar_admissions_0_ba_name','New York'),(31477,49019,'_bar_admissions_0_ba_name','field_person_meta_ba_name'),(31478,49019,'bar_admissions_0_ba_year','2021'),(31479,49019,'_bar_admissions_0_ba_year','field_person_meta_ba_year'),(31480,49019,'bar_admissions_0_ba_code','5842'),(31481,49019,'_bar_admissions_0_ba_code','field_person_meta_ba_code'),(31482,49019,'bar_admissions_1_ba_name','Philippines'),(31483,49019,'_bar_admissions_1_ba_name','field_person_meta_ba_name'),(31484,49019,'bar_admissions_1_ba_year','2018'),(31485,49019,'_bar_admissions_1_ba_year','field_person_meta_ba_year'),(31486,49019,'bar_admissions_1_ba_code','5978'),(31487,49019,'_bar_admissions_1_ba_code','field_person_meta_ba_code'),(31488,49019,'bar_admissions','2'),(31489,49019,'_bar_admissions','field_person_meta_bar_admissions'),(31490,49019,'professional_assoc_0_pa_name','New York State Bar Association '),(31491,49019,'_professional_assoc_0_pa_name','field_person_meta_pa_name'),(31492,49019,'professional_assoc_0_pa_title',''),(31493,49019,'_professional_assoc_0_pa_title','field_person_meta_pa_title'),(31494,49019,'professional_assoc_0_pa_time_period',''),(31495,49019,'_professional_assoc_0_pa_time_period','field_person_meta_pa_time_period'),(31496,49019,'professional_assoc_1_pa_name','Integrated Bar of the Philippines'),(31497,49019,'_professional_assoc_1_pa_name','field_person_meta_pa_name'),(31498,49019,'professional_assoc_1_pa_title',''),(31499,49019,'_professional_assoc_1_pa_title','field_person_meta_pa_title'),(31500,49019,'professional_assoc_1_pa_time_period',''),(31501,49019,'_professional_assoc_1_pa_time_period','field_person_meta_pa_time_period'),(31502,49019,'professional_assoc','2'),(31503,49019,'_professional_assoc','field_person_meta_professional_assoc'),(31504,49019,'classes_seminars',''),(31505,49019,'_classes_seminars','field_person_meta_classes_seminars'),(31506,49019,'honors',''),(31507,49019,'_honors','field_person_meta_honors'),(31508,49019,'published_works',''),(31509,49019,'_published_works','field_person_meta_published_works'),(31510,49019,'bio',''),(31511,49019,'_bio','field_person_meta_bio'),(31512,49019,'past_positions',''),(31513,49019,'_past_positions','field_person_meta_past_positions'),(31514,49019,'pro_bonos_0_pb_activity','U.P. Office of Legal Aid - 2016-2017'),(31515,49019,'_pro_bonos_0_pb_activity','field_person_meta_pb_activity'),(31516,49019,'pro_bonos_0_pb_time_period',''),(31517,49019,'_pro_bonos_0_pb_time_period','field_person_meta_pb_time_period'),(31518,49019,'pro_bonos','1'),(31519,49019,'_pro_bonos','field_person_meta_pro_bonos'),(31520,49019,'languages',''),(31521,49019,'_languages','field_person_meta_languages'),(31522,49019,'fraternity_sororities',''),(31523,49019,'_fraternity_sororities','field_person_meta_fraternity_sororities'),(31524,49019,'representative_cases',''),(31525,49019,'_representative_cases','field_person_meta_representative_cases'),(31526,49019,'specialties',''),(31527,49019,'_specialties','field_person_meta_specialties'),(31528,49019,'references',''),(31529,49019,'_references','field_person_meta_references'),(31530,49019,'ancillary_businesses',''),(31531,49019,'_ancillary_businesses','field_person_meta_ancillary_businesses'),(31532,49019,'legal_educations_0_le_school','University of the Philippines College of Law'),(31533,49019,'_legal_educations_0_le_school','field_person_meta_le_school'),(31534,49019,'legal_educations_0_le_city','Quezon City'),(31535,49019,'_legal_educations_0_le_city','field_person_meta_le_city'),(31536,49019,'legal_educations_0_le_state',''),(31537,49019,'_legal_educations_0_le_state','field_person_meta_le_state'),(31538,49019,'legal_educations_0_le_grad_date','2017'),(31539,49019,'_legal_educations_0_le_grad_date','field_person_meta_le_grad_date'),(31540,49019,'legal_educations_0_le_degree_name','Juris Doctor'),(31541,49019,'_legal_educations_0_le_degree_name','field_person_meta_le_degree_name'),(31542,49019,'legal_educations_0_le_distinction',''),(31543,49019,'_legal_educations_0_le_distinction','field_person_meta_le_distinction'),(31544,49019,'legal_educations_0_le_school_honors',''),(31545,49019,'_legal_educations_0_le_school_honors','field_person_meta_le_school_honors'),(31546,49019,'legal_educations_0_le_school_majors',''),(31547,49019,'_legal_educations_0_le_school_majors','field_person_meta_le_school_majors'),(31548,49019,'legal_educations_0_le_school_minors',''),(31549,49019,'_legal_educations_0_le_school_minors','field_person_meta_le_school_minors'),(31550,49019,'legal_educations','1'),(31551,49019,'_legal_educations','field_person_meta_legal_educations'),(31552,49019,'non_legal_educations_0_nl_school','University of the Philippines College of Social Sciences and Philosophy '),(31553,49019,'_non_legal_educations_0_nl_school','field_person_meta_nl_school'),(31554,49019,'non_legal_educations_0_nl_city',''),(31555,49019,'_non_legal_educations_0_nl_city','field_person_meta_nl_city'),(31556,49019,'non_legal_educations_0_nl_state',''),(31557,49019,'_non_legal_educations_0_nl_state','field_person_meta_nl_state'),(31558,49019,'non_legal_educations_0_nl_grad_date','2012'),(31559,49019,'_non_legal_educations_0_nl_grad_date','field_person_meta_nl_grad_date'),(31560,49019,'non_legal_educations_0_nl_degree_name','BA Philosophy'),(31561,49019,'_non_legal_educations_0_nl_degree_name','field_person_meta_nl_degree_name'),(31562,49019,'non_legal_educations_0_nl_distinction',''),(31563,49019,'_non_legal_educations_0_nl_distinction','field_person_meta_nl_distinction'),(31564,49019,'non_legal_educations_0_nle_school_honors',''),(31565,49019,'_non_legal_educations_0_nle_school_honors','field_person_meta_nle_school_honors'),(31566,49019,'non_legal_educations_0_nle_school_majors',''),(31567,49019,'_non_legal_educations_0_nle_school_majors','field_person_meta_nle_school_majors'),(31568,49019,'non_legal_educations_0_nle_school_minors',''),(31569,49019,'_non_legal_educations_0_nle_school_minors','field_person_meta_nle_school_minors'),(31570,49019,'non_legal_educations_1_nl_school','University of Santo Tomas, High School'),(31571,49019,'_non_legal_educations_1_nl_school','field_person_meta_nl_school'),(31572,49019,'non_legal_educations_1_nl_city',''),(31573,49019,'_non_legal_educations_1_nl_city','field_person_meta_nl_city'),(31574,49019,'non_legal_educations_1_nl_state',''),(31575,49019,'_non_legal_educations_1_nl_state','field_person_meta_nl_state'),(31576,49019,'non_legal_educations_1_nl_grad_date','2012'),(31577,49019,'_non_legal_educations_1_nl_grad_date','field_person_meta_nl_grad_date'),(31578,49019,'non_legal_educations_1_nl_degree_name',''),(31579,49019,'_non_legal_educations_1_nl_degree_name','field_person_meta_nl_degree_name'),(31580,49019,'non_legal_educations_1_nl_distinction',''),(31581,49019,'_non_legal_educations_1_nl_distinction','field_person_meta_nl_distinction'),(31582,49019,'non_legal_educations_1_nle_school_honors',''),(31583,49019,'_non_legal_educations_1_nle_school_honors','field_person_meta_nle_school_honors'),(31584,49019,'non_legal_educations_1_nle_school_majors',''),(31585,49019,'_non_legal_educations_1_nle_school_majors','field_person_meta_nle_school_majors'),(31586,49019,'non_legal_educations_1_nle_school_minors',''),(31587,49019,'_non_legal_educations_1_nle_school_minors','field_person_meta_nle_school_minors'),(31588,49019,'non_legal_educations','2'),(31589,49019,'_non_legal_educations','field_person_meta_non_legal_educations'),(31590,49019,'representative_clients',''),(31591,49019,'_representative_clients','field_person_meta_representative_clients'),(31592,49019,'current_positions_0_cp_title','Associate Attorney'),(31593,49019,'_current_positions_0_cp_title','field_person_meta_cp_title'),(31594,49019,'current_positions','1'),(31595,49019,'_current_positions','field_person_meta_current_positions'),(31600,48606,'_wp_old_date','2022-03-30'),(31601,46089,'_wp_old_date','2022-03-30'),(31736,46091,'_wp_old_date','2022-03-30'),(31737,48168,'_wp_old_date','2022-03-30'),(31943,49019,'_edit_lock','1651683032:4451'),(31945,49019,'_edit_last','4451'),(31946,49019,'current_positions_0_cp_time_period',''),(31947,49019,'_current_positions_0_cp_time_period','field_person_meta_cp_time_period'),(31948,49019,'_aioseo_title',NULL),(31949,49019,'_aioseo_description',NULL),(31950,49019,'_aioseo_keywords',''),(31951,49019,'_aioseo_og_title',NULL),(31952,49019,'_aioseo_og_description',NULL),(31953,49019,'_aioseo_og_article_section',''),(31954,49019,'_aioseo_og_article_tags',''),(31955,49019,'_aioseo_twitter_title',NULL),(31956,49019,'_aioseo_twitter_description',NULL),(31958,49019,'du-meta-custom-footer','default'),(31959,49019,'_et_monarch_override',''),(31960,49019,'_et_pb_post_hide_nav','default'),(31961,49019,'_et_pb_page_layout','et_right_sidebar'),(31962,49019,'_et_pb_side_nav','off'),(31963,49019,'_et_pb_use_builder','on'),(31964,49019,'_et_pb_first_image',''),(31965,49019,'_et_pb_truncate_post',''),(31966,49019,'_et_pb_truncate_post_date',''),(31967,49019,'_et_pb_old_content',''),(32089,49019,'_et_pb_built_for_post_type','page'),(32090,49019,'_et_pb_ab_subjects',''),(32091,49019,'_et_pb_enable_shortcode_tracking',''),(32092,49019,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"49019\" /]'),(32093,49019,'_et_pb_custom_css',''),(32094,49019,'_et_pb_gutter_width','1'),(32095,49019,'_global_colors_info','{}'),(32096,49019,'_et_builder_version','VB|Divi|4.14.8'),(32097,49019,'_et_pb_show_page_creation','off'),(32666,46081,'_aioseo_title',NULL),(32667,46081,'_aioseo_description',NULL),(32668,46081,'_aioseo_keywords',''),(32669,46081,'_aioseo_og_title',NULL),(32670,46081,'_aioseo_og_description',NULL),(32671,46081,'_aioseo_og_article_section',''),(32672,46081,'_aioseo_og_article_tags',''),(32673,46081,'_aioseo_twitter_title',NULL),(32674,46081,'_aioseo_twitter_description',NULL),(33413,49089,'_edit_lock','1654199926:308'),(33414,49089,'_edit_last','1'),(33415,49089,'du-meta-custom-footer','default'),(33416,49089,'_et_monarch_override',''),(33417,49089,'pagelanguage','english'),(33425,49089,'_et_social_shares_twitter','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-05 14:04:37\";}'),(33426,49089,'_et_social_shares_linkedin','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-05 14:04:37\";}'),(33427,49089,'_et_social_shares_facebook','a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2022-08-05 14:04:37\";}'),(33428,49089,'_wp_old_date','2022-06-01'),(33434,49089,'_aioseo_title',NULL),(33435,49089,'_aioseo_description',NULL),(33436,49089,'_aioseo_keywords',''),(33437,49089,'_aioseo_og_title',NULL),(33438,49089,'_aioseo_og_description',NULL),(33439,49089,'_aioseo_og_article_section',''),(33440,49089,'_aioseo_og_article_tags',''),(33441,49089,'_aioseo_twitter_title',NULL),(33442,49089,'_aioseo_twitter_description',NULL),(33443,49089,'_et_post_bg_color','#ffffff'),(33444,49089,'_et_post_bg_layout','light'),(33445,49089,'_et_pb_show_title','on'),(33446,49089,'_et_pb_post_hide_nav','default'),(33447,49089,'_et_pb_page_layout','et_right_sidebar'),(33448,49089,'_et_pb_side_nav','off'),(33449,49089,'wriketaskid','No task ID associated'),(33450,49089,'author_byline','by'),(33451,49089,'firm_name','The Law Offices of Melissa A. Day, PLLC'),(34053,46244,'_aioseo_title','LOMAD Newsletter | The Law Offices of Melissa A. Day, PLLC'),(34054,46244,'_aioseo_description',NULL),(34055,46244,'_aioseo_keywords',''),(34056,46244,'_aioseo_og_title',''),(34057,46244,'_aioseo_og_description',''),(34058,46244,'_aioseo_og_article_section',''),(34059,46244,'_aioseo_og_article_tags',''),(34060,46244,'_aioseo_twitter_title',NULL),(34061,46244,'_aioseo_twitter_description',NULL),(34223,49100,'_wp_attached_file','2022/07/NewsletterVolume1.pdf'),(34224,49100,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:25:\"NewsletterVolume1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184534;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"NewsletterVolume1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20540;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"NewsletterVolume1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113474;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"NewsletterVolume1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8326;}}s:8:\"filesize\";i:1106344;}'),(35806,49128,'_wp_attached_file','2022/08/LOMADMagazineVol13July2022.pdf'),(35807,49128,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:34:\"LOMADMagazineVol13July2022-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197203;}s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"LOMADMagazineVol13July2022-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18963;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"LOMADMagazineVol13July2022-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119085;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"LOMADMagazineVol13July2022-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7871;}}s:8:\"filesize\";i:1161201;}'),(35808,49130,'_wp_attached_file','2022/08/LOMADMagazineVol13July2022Cover.png'),(35809,49130,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:731;s:6:\"height\";i:953;s:4:\"file\";s:43:\"2022/08/LOMADMagazineVol13July2022Cover.png\";s:8:\"filesize\";i:567979;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"LOMADMagazineVol13July2022Cover-230x300.png\";s:5:\"width\";i:230;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72164;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"LOMADMagazineVol13July2022Cover-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30565;}s:9:\"hero-full\";a:5:{s:4:\"file\";s:43:\"LOMADMagazineVol13July2022Cover-731x900.png\";s:5:\"width\";i:731;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:429984;}s:11:\"core-header\";a:5:{s:4:\"file\";s:43:\"LOMADMagazineVol13July2022Cover-537x700.png\";s:5:\"width\";i:537;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:298110;}s:4:\"logo\";a:5:{s:4:\"file\";s:43:\"LOMADMagazineVol13July2022Cover-384x500.png\";s:5:\"width\";i:384;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:171269;}s:12:\"social-share\";a:5:{s:4:\"file\";s:43:\"LOMADMagazineVol13July2022Cover-731x630.png\";s:5:\"width\";i:731;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:353968;}s:11:\"placeholder\";a:5:{s:4:\"file\";s:41:\"LOMADMagazineVol13July2022Cover-58x75.png\";s:5:\"width\";i:58;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6907;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:43:\"LOMADMagazineVol13July2022Cover-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108385;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:43:\"LOMADMagazineVol13July2022Cover-731x675.png\";s:5:\"width\";i:731;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:368115;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:43:\"LOMADMagazineVol13July2022Cover-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118978;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:43:\"LOMADMagazineVol13July2022Cover-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:191140;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:43:\"LOMADMagazineVol13July2022Cover-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:183154;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:43:\"LOMADMagazineVol13July2022Cover-480x626.png\";s:5:\"width\";i:480;s:6:\"height\";i:626;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:247907;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(35821,49133,'_wp_attached_file','2022/08/LOMADMagazineVolume11May2022.pdf'),(35822,49133,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:36:\"LOMADMagazineVolume11May2022-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214536;}s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"LOMADMagazineVolume11May2022-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20394;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"LOMADMagazineVolume11May2022-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129844;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"LOMADMagazineVolume11May2022-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8201;}}s:8:\"filesize\";i:915143;}'),(35823,49134,'_wp_attached_file','2022/08/LOMADMagazineVolume11May2022Cover.png'),(35824,49134,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:733;s:6:\"height\";i:949;s:4:\"file\";s:45:\"2022/08/LOMADMagazineVolume11May2022Cover.png\";s:8:\"filesize\";i:583425;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"LOMADMagazineVolume11May2022Cover-232x300.png\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76211;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"LOMADMagazineVolume11May2022Cover-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31471;}s:9:\"hero-full\";a:5:{s:4:\"file\";s:45:\"LOMADMagazineVolume11May2022Cover-733x900.png\";s:5:\"width\";i:733;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:457404;}s:11:\"core-header\";a:5:{s:4:\"file\";s:45:\"LOMADMagazineVolume11May2022Cover-541x700.png\";s:5:\"width\";i:541;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:305736;}s:4:\"logo\";a:5:{s:4:\"file\";s:45:\"LOMADMagazineVolume11May2022Cover-386x500.png\";s:5:\"width\";i:386;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:176236;}s:12:\"social-share\";a:5:{s:4:\"file\";s:45:\"LOMADMagazineVolume11May2022Cover-733x630.png\";s:5:\"width\";i:733;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:379848;}s:11:\"placeholder\";a:5:{s:4:\"file\";s:43:\"LOMADMagazineVolume11May2022Cover-58x75.png\";s:5:\"width\";i:58;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7449;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:45:\"LOMADMagazineVolume11May2022Cover-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:113075;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:45:\"LOMADMagazineVolume11May2022Cover-733x675.png\";s:5:\"width\";i:733;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:390545;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:45:\"LOMADMagazineVolume11May2022Cover-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:124397;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:45:\"LOMADMagazineVolume11May2022Cover-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:189766;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:45:\"LOMADMagazineVolume11May2022Cover-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:188034;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:45:\"LOMADMagazineVolume11May2022Cover-480x621.png\";s:5:\"width\";i:480;s:6:\"height\";i:621;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:252308;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(35832,49139,'_wp_attached_file','2022/08/LOMADMagazineVolume12June2022Cover.png'),(35833,49139,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:733;s:6:\"height\";i:949;s:4:\"file\";s:46:\"2022/08/LOMADMagazineVolume12June2022Cover.png\";s:8:\"filesize\";i:543352;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"LOMADMagazineVolume12June2022Cover-232x300.png\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70918;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"LOMADMagazineVolume12June2022Cover-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30032;}s:9:\"hero-full\";a:5:{s:4:\"file\";s:46:\"LOMADMagazineVolume12June2022Cover-733x900.png\";s:5:\"width\";i:733;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:433514;}s:11:\"core-header\";a:5:{s:4:\"file\";s:46:\"LOMADMagazineVolume12June2022Cover-541x700.png\";s:5:\"width\";i:541;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:292008;}s:4:\"logo\";a:5:{s:4:\"file\";s:46:\"LOMADMagazineVolume12June2022Cover-386x500.png\";s:5:\"width\";i:386;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:167004;}s:12:\"social-share\";a:5:{s:4:\"file\";s:46:\"LOMADMagazineVolume12June2022Cover-733x630.png\";s:5:\"width\";i:733;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:357453;}s:11:\"placeholder\";a:5:{s:4:\"file\";s:44:\"LOMADMagazineVolume12June2022Cover-58x75.png\";s:5:\"width\";i:58;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6804;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:46:\"LOMADMagazineVolume12June2022Cover-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103287;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:46:\"LOMADMagazineVolume12June2022Cover-733x675.png\";s:5:\"width\";i:733;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:374733;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:46:\"LOMADMagazineVolume12June2022Cover-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118069;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:46:\"LOMADMagazineVolume12June2022Cover-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:189296;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:46:\"LOMADMagazineVolume12June2022Cover-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:177824;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:46:\"LOMADMagazineVolume12June2022Cover-480x621.png\";s:5:\"width\";i:480;s:6:\"height\";i:621;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:239369;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(35834,49140,'_wp_attached_file','2022/08/LOMADMagazineVolume12June2022.pdf'),(35835,49140,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:37:\"LOMADMagazineVolume12June2022-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210503;}s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"LOMADMagazineVolume12June2022-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19261;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"LOMADMagazineVolume12June2022-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123703;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"LOMADMagazineVolume12June2022-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7860;}}s:8:\"filesize\";i:891918;}'),(36367,48168,'_aioseo_title',NULL),(36368,48168,'_aioseo_description',NULL),(36369,48168,'_aioseo_keywords',''),(36370,48168,'_aioseo_twitter_title',NULL),(36371,48168,'_aioseo_twitter_description',NULL),(36373,46085,'_aioseo_title',NULL),(36374,46085,'_aioseo_description',NULL),(36375,46085,'_aioseo_keywords',''),(36376,46085,'_aioseo_og_title',NULL),(36377,46085,'_aioseo_og_description',NULL),(36378,46085,'_aioseo_og_article_section',''),(36379,46085,'_aioseo_og_article_tags',''),(36380,46085,'_aioseo_twitter_title',NULL),(36381,46085,'_aioseo_twitter_description',NULL),(36383,46071,'_aioseo_title',NULL),(36384,46071,'_aioseo_description',NULL),(36385,46071,'_aioseo_keywords',''),(36386,46071,'_aioseo_og_title',''),(36387,46071,'_aioseo_og_description',''),(36388,46071,'_aioseo_og_article_section',''),(36389,46071,'_aioseo_og_article_tags',''),(36390,46071,'_aioseo_twitter_title',NULL),(36391,46071,'_aioseo_twitter_description',NULL),(36394,49174,'_et_pb_module_type','et_pb_text'),(36395,49174,'_et_pb_built_for_post_type','people'),(36396,49176,'_et_pb_module_type','et_pb_text'),(36397,49176,'_et_pb_built_for_post_type','people'),(36399,48716,'_aioseo_title',NULL),(36400,48716,'_aioseo_description',NULL),(36401,48716,'_aioseo_keywords',''),(36402,48716,'_aioseo_og_title',''),(36403,48716,'_aioseo_og_description',''),(36404,48716,'_aioseo_og_article_section',''),(36405,48716,'_aioseo_og_article_tags',''),(36406,48716,'_aioseo_twitter_title',NULL),(36407,48716,'_aioseo_twitter_description',NULL),(36410,48717,'_aioseo_title',NULL),(36411,48717,'_aioseo_description',NULL),(36412,48717,'_aioseo_keywords',''),(36413,48717,'_aioseo_og_title',''),(36414,48717,'_aioseo_og_description',''),(36415,48717,'_aioseo_og_article_section',''),(36416,48717,'_aioseo_og_article_tags',''),(36417,48717,'_aioseo_twitter_title',NULL),(36418,48717,'_aioseo_twitter_description',NULL),(36428,49182,'_et_pb_row_layout','2_5,3_5'),(36429,49182,'_et_pb_built_for_post_type','page'),(36454,49188,'_et_pb_built_for_post_type','people'),(36458,49190,'_et_pb_use_builder','on'),(36459,49190,'_edit_last','5036'),(36460,49190,'_aioseo_title',NULL),(36461,49190,'_aioseo_description',NULL),(36462,49190,'_aioseo_keywords',''),(36463,49190,'_aioseo_og_title',NULL),(36464,49190,'_aioseo_og_description',NULL),(36465,49190,'_aioseo_og_article_section',''),(36466,49190,'_aioseo_og_article_tags',''),(36467,49190,'_aioseo_twitter_title',NULL),(36468,49190,'_aioseo_twitter_description',NULL),(36469,49190,'pagegoals','goal9'),(36470,49190,'pagelanguage','english'),(36471,49190,'pagetype','attorney-profile'),(36472,49190,'_et_monarch_override',''),(36473,49190,'_et_pb_post_hide_nav','default'),(36474,49190,'_et_pb_page_layout','et_right_sidebar'),(36475,49190,'_et_pb_side_nav','off'),(36476,49190,'_et_pb_first_image',''),(36477,49190,'_et_pb_truncate_post',''),(36478,49190,'_et_pb_truncate_post_date',''),(36479,49190,'_et_pb_old_content',''),(36480,49190,'author_byline','by'),(36481,49190,'_edit_lock','1660942170:5036'),(36489,49190,'_et_pb_built_for_post_type','page'),(36490,49190,'_et_pb_custom_css',''),(36491,49190,'_et_pb_gutter_width','1'),(36493,49190,'_global_colors_info','{}'),(36494,49190,'_et_builder_version','VB|Divi|4.14.8'),(36495,49190,'_et_pb_show_page_creation','off'),(36500,49190,'_wp_old_slug','49190'),(36628,47118,'_edit_lock','1661794115:1'),(36630,47151,'_edit_lock','1660660846:5036'),(36632,47121,'_edit_lock','1661797596:1'),(36634,47121,'_et_pb_use_builder','on'),(36635,47121,'_et_pb_custom_css',''),(36636,47121,'_et_pb_gutter_width','1'),(36637,47121,'_thumbnail_id','0'),(36638,47121,'_global_colors_info','{}'),(36639,47121,'_et_pb_first_image',''),(36640,47121,'_et_pb_truncate_post',''),(36641,47121,'_et_pb_truncate_post_date',''),(36642,47121,'_et_builder_version','VB|Divi|4.18.0'),(36643,49203,'current_word_count','167'),(36644,49203,'_et_pb_use_builder','on'),(36645,49203,'_edit_last','1'),(36646,49203,'_edit_lock','1663609959:1'),(36650,49203,'_wp_page_template','default'),(36653,49203,'_et_monarch_override',''),(36654,49203,'_et_pb_post_hide_nav','default'),(36655,49203,'_et_pb_page_layout','et_right_sidebar'),(36656,49203,'_et_pb_side_nav','off'),(36657,49203,'_aioseo_title','#post_title | The Law Offices of Melissa A. Day, PLLC | Amherst'),(36658,49203,'_aioseo_description',NULL),(36659,49203,'_aioseo_keywords',''),(36660,49203,'_aioseo_og_title',NULL),(36661,49203,'_aioseo_og_description',NULL),(36662,49203,'_aioseo_og_article_section',''),(36663,49203,'_aioseo_og_article_tags',''),(36664,49203,'_aioseo_twitter_title',NULL),(36665,49203,'_aioseo_twitter_description',NULL),(36668,49203,'_et_pb_built_for_post_type','page'),(36669,49203,'_et_pb_custom_css',''),(36670,49203,'_et_pb_gutter_width','1'),(36672,49203,'_global_colors_info','{}'),(36673,49203,'_et_pb_first_image',''),(36674,49203,'_et_pb_truncate_post',''),(36675,49203,'_et_pb_truncate_post_date',''),(36676,49203,'_et_builder_version','VB|Divi|4.14.8'),(36677,49203,'_et_pb_show_page_creation','off'),(36678,49203,'subtitle',''),(36679,49203,'_subtitle','field_page_subtitle_subtitle'),(36682,49203,'_et_pb_old_content',''),(36722,49220,'_menu_item_type','post_type'),(36723,49220,'_menu_item_menu_item_parent','47516'),(36724,49220,'_menu_item_object_id','49203'),(36725,49220,'_menu_item_object','page'),(36726,49220,'_menu_item_target',''),(36727,49220,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36728,49220,'_menu_item_xfn',''),(36729,49220,'_menu_item_url',''),(36731,47214,'_wp_old_date','2022-01-29'),(36732,47307,'_wp_old_date','2022-01-29'),(36733,48418,'_wp_old_date','2022-01-29'),(36734,47305,'_wp_old_date','2022-01-29'),(36735,47213,'_wp_old_date','2022-01-29'),(36737,47312,'_wp_old_date','2022-01-29'),(36738,47311,'_wp_old_date','2022-01-29'),(36739,47313,'_wp_old_date','2022-01-29'),(36740,48861,'_wp_old_date','2022-01-29'),(36741,47308,'_wp_old_date','2022-01-29'),(36742,47516,'_wp_old_date','2022-01-29'),(36743,47215,'_wp_old_date','2022-01-29'),(36744,47518,'_wp_old_date','2022-01-29'),(36747,49203,'pagetype','marketing'),(36766,49222,'_menu_item_type','post_type'),(36767,49222,'_menu_item_menu_item_parent','45967'),(36768,49222,'_menu_item_object_id','49203'),(36769,49222,'_menu_item_object','page'),(36770,49222,'_menu_item_target',''),(36771,49222,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36772,49222,'_menu_item_xfn',''),(36773,49222,'_menu_item_url',''),(36775,45969,'_wp_old_date','2022-01-29'),(36776,45968,'_wp_old_date','2022-01-29'),(36777,46669,'_wp_old_date','2022-01-29'),(36778,47292,'_wp_old_date','2022-01-29'),(36779,47299,'_wp_old_date','2022-01-29'),(36780,46668,'_wp_old_date','2022-01-29'),(36781,47728,'_wp_old_date','2022-01-29'),(36782,47297,'_wp_old_date','2022-01-29'),(36783,47294,'_wp_old_date','2022-01-29'),(36784,47296,'_wp_old_date','2022-01-29'),(36785,48859,'_wp_old_date','2022-01-29'),(36786,47298,'_wp_old_date','2022-01-29'),(36787,47295,'_wp_old_date','2022-01-29'),(36788,47854,'_wp_old_date','2022-01-29'),(36789,45967,'_wp_old_date','2022-01-29'),(36790,47293,'_wp_old_date','2022-01-29'),(36791,46670,'_wp_old_date','2022-01-29'),(36792,45966,'_wp_old_date','2022-01-29'),(37419,49182,'_edit_lock','1660825853:5036'),(37421,49182,'_et_pb_use_builder','on'),(37422,49182,'_et_pb_custom_css',''),(37423,49182,'_et_pb_gutter_width','1'),(37424,49182,'_thumbnail_id','0'),(37425,49182,'_global_colors_info','{}'),(37426,49182,'_et_pb_first_image',''),(37427,49182,'_et_pb_truncate_post',''),(37428,49182,'_et_pb_truncate_post_date',''),(37429,49182,'_et_builder_version','VB|Divi|4.14.8'),(37430,49188,'_edit_lock','1660827172:5036'),(37432,49188,'_et_pb_use_builder','on'),(37433,49188,'_et_pb_custom_css',''),(37434,49188,'_et_pb_gutter_width','1'),(37436,49188,'_global_colors_info','{}'),(37437,49188,'_et_pb_first_image',''),(37438,49188,'_et_pb_truncate_post',''),(37439,49188,'_et_pb_truncate_post_date',''),(37440,49188,'_et_builder_version','VB|Divi|4.14.8'),(37441,49188,'_et_pb_show_page_creation','off'),(37442,49188,'_edit_last','5036'),(37443,49188,'_et_pb_old_content',''),(37485,49237,'current_word_count','2213'),(37486,49237,'_edit_lock','1670257615:1'),(37487,49237,'_edit_last','1'),(37488,49237,'_wp_page_template','default'),(37489,49237,'_et_monarch_override',''),(37490,49237,'_et_pb_post_hide_nav','default'),(37491,49237,'_et_pb_page_layout','et_right_sidebar'),(37492,49237,'_et_pb_side_nav','off'),(37493,49237,'_et_pb_use_builder','on'),(37494,49237,'_et_pb_first_image',''),(37495,49237,'_et_pb_truncate_post',''),(37496,49237,'_et_pb_truncate_post_date',''),(37497,49237,'_et_pb_old_content',''),(37498,49237,'subtitle',''),(37499,49237,'_subtitle','field_page_subtitle_subtitle'),(37502,49237,'_aioseo_title',NULL),(37503,49237,'_aioseo_description',NULL),(37504,49237,'_aioseo_keywords',''),(37505,49237,'_aioseo_og_title',NULL),(37506,49237,'_aioseo_og_description',NULL),(37507,49237,'_aioseo_og_article_section',''),(37508,49237,'_aioseo_og_article_tags',''),(37509,49237,'_aioseo_twitter_title',NULL),(37510,49237,'_aioseo_twitter_description',NULL),(37511,49237,'pagegoals','goal3'),(37512,49237,'pagelanguage','english'),(37513,49237,'pagetype','marketing'),(37514,49237,'author_byline','by'),(37517,49237,'_et_pb_built_for_post_type','page'),(37518,49237,'_et_pb_custom_css',''),(37519,49237,'_et_pb_gutter_width','1'),(37521,49237,'_global_colors_info','{}'),(37522,49237,'_et_builder_version','VB|Divi|4.14.8'),(37523,49237,'_et_pb_show_page_creation','off'),(37527,49248,'_et_pb_module_type','et_pb_button'),(37528,49248,'_et_pb_built_for_post_type','page'),(37532,49248,'_edit_lock','1660928625:5036'),(37534,49248,'_et_pb_use_builder','on'),(37535,49248,'_et_pb_custom_css',''),(37536,49248,'_et_pb_gutter_width','1'),(37538,49248,'_global_colors_info','{}'),(37539,49248,'_et_pb_first_image',''),(37540,49248,'_et_pb_truncate_post',''),(37541,49248,'_et_pb_truncate_post_date',''),(37542,49248,'_et_builder_version','VB|Divi|4.14.8'),(37543,49248,'_edit_last','5036'),(37545,49248,'_et_pb_old_content',''),(37598,49272,'_et_pb_built_for_post_type','page'),(37599,49272,'_edit_lock','1662725992:1'),(37627,49273,'current_word_count','1863'),(37628,49273,'_edit_lock','1663257851:1'),(37629,49273,'_edit_last','1'),(37630,49273,'_wp_page_template','default'),(37631,49273,'_et_monarch_override',''),(37632,49273,'_et_pb_post_hide_nav','default'),(37633,49273,'_et_pb_page_layout','et_right_sidebar'),(37634,49273,'_et_pb_side_nav','off'),(37635,49273,'_et_pb_use_builder','on'),(37636,49273,'_et_pb_first_image',''),(37637,49273,'_et_pb_truncate_post',''),(37638,49273,'_et_pb_truncate_post_date',''),(37639,49273,'_et_pb_old_content',''),(37640,49273,'subtitle',''),(37641,49273,'_subtitle','field_page_subtitle_subtitle'),(37644,49273,'_aioseo_title',NULL),(37645,49273,'_aioseo_description',NULL),(37646,49273,'_aioseo_keywords',''),(37647,49273,'_aioseo_og_title',NULL),(37648,49273,'_aioseo_og_description',NULL),(37649,49273,'_aioseo_og_article_section',''),(37650,49273,'_aioseo_og_article_tags',''),(37651,49273,'_aioseo_twitter_title',NULL),(37652,49273,'_aioseo_twitter_description',NULL),(37653,49273,'pagegoals','goal3'),(37654,49273,'pagelanguage','english'),(37655,49273,'pagetype','marketing'),(37656,49273,'author_byline','by'),(37662,49273,'_et_pb_built_for_post_type','page'),(37663,49273,'_et_pb_custom_css',''),(37664,49273,'_et_pb_gutter_width','1'),(37666,49273,'_global_colors_info','{}'),(37667,49273,'_et_builder_version','VB|Divi|4.14.8'),(37668,49273,'_et_pb_show_page_creation','off'),(37737,49287,'_wp_attached_file','2022/08/LOMAD_EMAIL_ME_Button.png'),(37738,49287,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:168;s:6:\"height\";i:50;s:4:\"file\";s:33:\"2022/08/LOMAD_EMAIL_ME_Button.png\";s:8:\"filesize\";i:2193;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"LOMAD_EMAIL_ME_Button-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1011;}s:11:\"placeholder\";a:5:{s:4:\"file\";s:31:\"LOMAD_EMAIL_ME_Button-75x22.png\";s:5:\"width\";i:75;s:6:\"height\";i:22;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1127;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(37767,49272,'_et_pb_use_builder','on'),(37768,49272,'_et_pb_custom_css',''),(37769,49272,'_et_pb_gutter_width','1'),(37770,49272,'_thumbnail_id','0'),(37771,49272,'_global_colors_info','{}'),(37772,49272,'_et_pb_first_image',''),(37773,49272,'_et_pb_truncate_post',''),(37774,49272,'_et_pb_truncate_post_date',''),(37775,49272,'_et_builder_version','VB|Divi|4.14.8'),(37776,49272,'_et_pb_show_page_creation','off'),(37790,49299,'current_word_count','2209'),(37791,49299,'_edit_lock','1663257718:1'),(37792,49299,'_edit_last','1'),(37793,49299,'_wp_page_template','default'),(37794,49299,'_et_monarch_override',''),(37795,49299,'_et_pb_post_hide_nav','default'),(37796,49299,'_et_pb_page_layout','et_right_sidebar'),(37797,49299,'_et_pb_side_nav','off'),(37798,49299,'_et_pb_use_builder','on'),(37799,49299,'_et_pb_first_image',''),(37800,49299,'_et_pb_truncate_post',''),(37801,49299,'_et_pb_truncate_post_date',''),(37802,49299,'_et_pb_old_content',''),(37803,49299,'subtitle',''),(37804,49299,'_subtitle','field_page_subtitle_subtitle'),(37807,49299,'_aioseo_title',NULL),(37808,49299,'_aioseo_description',NULL),(37809,49299,'_aioseo_keywords',''),(37810,49299,'_aioseo_og_title',NULL),(37811,49299,'_aioseo_og_description',NULL),(37812,49299,'_aioseo_og_article_section',''),(37813,49299,'_aioseo_og_article_tags',''),(37814,49299,'_aioseo_twitter_title',NULL),(37815,49299,'_aioseo_twitter_description',NULL),(37816,49299,'pagegoals','goal3'),(37817,49299,'pagelanguage','english'),(37818,49299,'pagetype','marketing'),(37819,49299,'author_byline','by'),(37830,49299,'_et_pb_built_for_post_type','page'),(37831,49299,'_et_pb_custom_css',''),(37832,49299,'_et_pb_gutter_width','1'),(37834,49299,'_global_colors_info','{}'),(37835,49299,'_et_builder_version','VB|Divi|4.14.8'),(37836,49299,'_et_pb_show_page_creation','off'),(37840,49303,'current_word_count','2355'),(37841,49303,'_edit_lock','1663257573:1'),(37842,49303,'_edit_last','1'),(37843,49303,'_wp_page_template','default'),(37844,49303,'_et_monarch_override',''),(37845,49303,'_et_pb_post_hide_nav','default'),(37846,49303,'_et_pb_page_layout','et_right_sidebar'),(37847,49303,'_et_pb_side_nav','off'),(37848,49303,'_et_pb_use_builder','on'),(37849,49303,'_et_pb_first_image',''),(37850,49303,'_et_pb_truncate_post',''),(37851,49303,'_et_pb_truncate_post_date',''),(37852,49303,'_et_pb_old_content',''),(37853,49303,'subtitle',''),(37854,49303,'_subtitle','field_page_subtitle_subtitle'),(37857,49303,'_aioseo_title',NULL),(37858,49303,'_aioseo_description',NULL),(37859,49303,'_aioseo_keywords',''),(37860,49303,'_aioseo_og_title',NULL),(37861,49303,'_aioseo_og_description',NULL),(37862,49303,'_aioseo_og_article_section',''),(37863,49303,'_aioseo_og_article_tags',''),(37864,49303,'_aioseo_twitter_title',NULL),(37865,49303,'_aioseo_twitter_description',NULL),(37866,49303,'pagegoals','goal3'),(37867,49303,'pagelanguage','english'),(37868,49303,'pagetype','marketing'),(37869,49303,'author_byline','by'),(37871,49303,'_et_pb_built_for_post_type','page'),(37872,49303,'_et_pb_custom_css',''),(37873,49303,'_et_pb_gutter_width','1'),(37875,49303,'_global_colors_info','{}'),(37876,49303,'_et_builder_version','VB|Divi|4.14.8'),(37877,49303,'_et_pb_show_page_creation','off'),(37881,49307,'current_word_count','1637'),(37882,49307,'_edit_lock','1663257426:1'),(37883,49307,'_edit_last','1'),(37884,49307,'_wp_page_template','default'),(37885,49307,'_et_monarch_override',''),(37886,49307,'_et_pb_post_hide_nav','default'),(37887,49307,'_et_pb_page_layout','et_right_sidebar'),(37888,49307,'_et_pb_side_nav','off'),(37889,49307,'_et_pb_use_builder','on'),(37890,49307,'_et_pb_first_image',''),(37891,49307,'_et_pb_truncate_post',''),(37892,49307,'_et_pb_truncate_post_date',''),(37893,49307,'_et_pb_old_content',''),(37894,49307,'subtitle',''),(37895,49307,'_subtitle','field_page_subtitle_subtitle'),(37898,49307,'_aioseo_title',NULL),(37899,49307,'_aioseo_description',NULL),(37900,49307,'_aioseo_keywords',''),(37901,49307,'_aioseo_og_title',NULL),(37902,49307,'_aioseo_og_description',NULL),(37903,49307,'_aioseo_og_article_section',''),(37904,49307,'_aioseo_og_article_tags',''),(37905,49307,'_aioseo_twitter_title',NULL),(37906,49307,'_aioseo_twitter_description',NULL),(37907,49307,'pagegoals','goal3'),(37908,49307,'pagelanguage','english'),(37909,49307,'pagetype','marketing'),(37910,49307,'author_byline','by'),(37912,49307,'_et_pb_built_for_post_type','page'),(37913,49307,'_et_pb_custom_css',''),(37914,49307,'_et_pb_gutter_width','1'),(37916,49307,'_global_colors_info','{}'),(37917,49307,'_et_builder_version','VB|Divi|4.14.8'),(37918,49307,'_et_pb_show_page_creation','off'),(37926,49312,'current_word_count','1769'),(37927,49312,'_edit_lock','1663257274:1'),(37928,49312,'_edit_last','1'),(37929,49312,'_wp_page_template','default'),(37930,49312,'_et_monarch_override',''),(37931,49312,'_et_pb_post_hide_nav','default'),(37932,49312,'_et_pb_page_layout','et_right_sidebar'),(37933,49312,'_et_pb_side_nav','off'),(37934,49312,'_et_pb_use_builder','on'),(37935,49312,'_et_pb_first_image',''),(37936,49312,'_et_pb_truncate_post',''),(37937,49312,'_et_pb_truncate_post_date',''),(37938,49312,'_et_pb_old_content',''),(37939,49312,'subtitle',''),(37940,49312,'_subtitle','field_page_subtitle_subtitle'),(37943,49312,'_aioseo_title',NULL),(37944,49312,'_aioseo_description',NULL),(37945,49312,'_aioseo_keywords',''),(37946,49312,'_aioseo_og_title',NULL),(37947,49312,'_aioseo_og_description',NULL),(37948,49312,'_aioseo_og_article_section',''),(37949,49312,'_aioseo_og_article_tags',''),(37950,49312,'_aioseo_twitter_title',NULL),(37951,49312,'_aioseo_twitter_description',NULL),(37952,49312,'pagegoals','goal3'),(37953,49312,'pagelanguage','english'),(37954,49312,'pagetype','marketing'),(37955,49312,'author_byline','by'),(37957,49312,'_et_pb_built_for_post_type','page'),(37958,49312,'_et_pb_custom_css',''),(37959,49312,'_et_pb_gutter_width','1'),(37961,49312,'_global_colors_info','{}'),(37962,49312,'_et_builder_version','VB|Divi|4.14.8'),(37963,49312,'_et_pb_show_page_creation','off'),(37965,49316,'current_word_count','1792'),(37966,49316,'_edit_lock','1663257221:1'),(37967,49316,'_edit_last','1'),(37968,49316,'_wp_page_template','default'),(37969,49316,'_et_monarch_override',''),(37970,49316,'_et_pb_post_hide_nav','default'),(37971,49316,'_et_pb_page_layout','et_right_sidebar'),(37972,49316,'_et_pb_side_nav','off'),(37973,49316,'_et_pb_use_builder','on'),(37974,49316,'_et_pb_first_image',''),(37975,49316,'_et_pb_truncate_post',''),(37976,49316,'_et_pb_truncate_post_date',''),(37977,49316,'_et_pb_old_content',''),(37978,49316,'subtitle',''),(37979,49316,'_subtitle','field_page_subtitle_subtitle'),(37982,49316,'_aioseo_title',NULL),(37983,49316,'_aioseo_description',NULL),(37984,49316,'_aioseo_keywords',''),(37985,49316,'_aioseo_og_title',NULL),(37986,49316,'_aioseo_og_description',NULL),(37987,49316,'_aioseo_og_article_section',''),(37988,49316,'_aioseo_og_article_tags',''),(37989,49316,'_aioseo_twitter_title',NULL),(37990,49316,'_aioseo_twitter_description',NULL),(37991,49316,'pagegoals','goal3'),(37992,49316,'pagelanguage','english'),(37993,49316,'pagetype','marketing'),(37994,49316,'author_byline','by'),(37996,49316,'_et_pb_built_for_post_type','page'),(37997,49316,'_et_pb_custom_css',''),(37998,49316,'_et_pb_gutter_width','1'),(38000,49316,'_global_colors_info','{}'),(38001,49316,'_et_builder_version','VB|Divi|4.14.8'),(38002,49316,'_et_pb_show_page_creation','off'),(38009,49322,'current_word_count','2111'),(38010,49322,'_edit_last','1'),(38011,49322,'_wp_page_template','default'),(38012,49322,'_et_monarch_override',''),(38013,49322,'_et_pb_post_hide_nav','default'),(38014,49322,'_et_pb_page_layout','et_right_sidebar'),(38015,49322,'_et_pb_side_nav','off'),(38016,49322,'_et_pb_use_builder','on'),(38017,49322,'_et_pb_first_image',''),(38018,49322,'_et_pb_truncate_post',''),(38019,49322,'_et_pb_truncate_post_date',''),(38020,49322,'_et_pb_old_content',''),(38021,49322,'subtitle',''),(38022,49322,'_subtitle','field_page_subtitle_subtitle'),(38025,49322,'_aioseo_title',NULL),(38026,49322,'_aioseo_description',NULL),(38027,49322,'_aioseo_keywords',''),(38028,49322,'_aioseo_og_title',NULL),(38029,49322,'_aioseo_og_description',NULL),(38030,49322,'_aioseo_og_article_section',''),(38031,49322,'_aioseo_og_article_tags',''),(38032,49322,'_aioseo_twitter_title',NULL),(38033,49322,'_aioseo_twitter_description',NULL),(38034,49322,'pagegoals','goal3'),(38035,49322,'pagelanguage','english'),(38036,49322,'pagetype','marketing'),(38037,49322,'author_byline','by'),(38038,49322,'_edit_lock','1693230459:1'),(38040,49322,'_et_pb_built_for_post_type','page'),(38041,49322,'_et_pb_custom_css',''),(38042,49322,'_et_pb_gutter_width','1'),(38044,49322,'_global_colors_info','{}'),(38045,49322,'_et_builder_version','VB|Divi|4.18.0'),(38046,49322,'_et_pb_show_page_creation','off'),(38050,49326,'current_word_count','1633'),(38051,49326,'_edit_last','1'),(38052,49326,'_wp_page_template','default'),(38053,49326,'_et_monarch_override',''),(38054,49326,'_et_pb_post_hide_nav','default'),(38055,49326,'_et_pb_page_layout','et_right_sidebar'),(38056,49326,'_et_pb_side_nav','off'),(38057,49326,'_et_pb_use_builder','on'),(38058,49326,'_et_pb_first_image',''),(38059,49326,'_et_pb_truncate_post',''),(38060,49326,'_et_pb_truncate_post_date',''),(38061,49326,'_et_pb_old_content',''),(38062,49326,'subtitle',''),(38063,49326,'_subtitle','field_page_subtitle_subtitle'),(38066,49326,'_aioseo_title',NULL),(38067,49326,'_aioseo_description',NULL),(38068,49326,'_aioseo_keywords',''),(38069,49326,'_aioseo_og_title',NULL),(38070,49326,'_aioseo_og_description',NULL),(38071,49326,'_aioseo_og_article_section',''),(38072,49326,'_aioseo_og_article_tags',''),(38073,49326,'_aioseo_twitter_title',NULL),(38074,49326,'_aioseo_twitter_description',NULL),(38075,49326,'pagegoals','goal3'),(38076,49326,'pagelanguage','english'),(38077,49326,'pagetype','marketing'),(38078,49326,'author_byline','by'),(38079,49326,'_edit_lock','1663256616:1'),(38081,49326,'_et_pb_built_for_post_type','page'),(38082,49326,'_et_pb_custom_css',''),(38083,49326,'_et_pb_gutter_width','1'),(38085,49326,'_global_colors_info','{}'),(38086,49326,'_et_builder_version','VB|Divi|4.14.8'),(38087,49326,'_et_pb_show_page_creation','off'),(38095,49331,'current_word_count','1733'),(38096,49331,'_edit_last','1'),(38097,49331,'_wp_page_template','default'),(38098,49331,'_et_monarch_override',''),(38099,49331,'_et_pb_post_hide_nav','default'),(38100,49331,'_et_pb_page_layout','et_right_sidebar'),(38101,49331,'_et_pb_side_nav','off'),(38102,49331,'_et_pb_use_builder','on'),(38103,49331,'_et_pb_first_image',''),(38104,49331,'_et_pb_truncate_post',''),(38105,49331,'_et_pb_truncate_post_date',''),(38106,49331,'_et_pb_old_content',''),(38107,49331,'subtitle',''),(38108,49331,'_subtitle','field_page_subtitle_subtitle'),(38111,49331,'_aioseo_title',NULL),(38112,49331,'_aioseo_description',NULL),(38113,49331,'_aioseo_keywords',''),(38114,49331,'_aioseo_og_title',NULL),(38115,49331,'_aioseo_og_description',NULL),(38116,49331,'_aioseo_og_article_section',''),(38117,49331,'_aioseo_og_article_tags',''),(38118,49331,'_aioseo_twitter_title',NULL),(38119,49331,'_aioseo_twitter_description',NULL),(38120,49331,'pagegoals','goal3'),(38121,49331,'pagelanguage','english'),(38122,49331,'pagetype','marketing'),(38123,49331,'author_byline','by'),(38124,49331,'_edit_lock','1663255976:1'),(38126,49331,'_et_pb_built_for_post_type','page'),(38127,49331,'_et_pb_custom_css',''),(38128,49331,'_et_pb_gutter_width','1'),(38130,49331,'_global_colors_info','{}'),(38131,49331,'_et_builder_version','VB|Divi|4.14.8'),(38132,49331,'_et_pb_show_page_creation','off'),(38136,49336,'current_word_count','1864'),(38137,49336,'_edit_lock','1663936114:1'),(38138,49336,'_edit_last','1'),(38139,49336,'_wp_page_template','default'),(38140,49336,'_et_monarch_override',''),(38141,49336,'_et_pb_post_hide_nav','default'),(38142,49336,'_et_pb_page_layout','et_right_sidebar'),(38143,49336,'_et_pb_side_nav','off'),(38144,49336,'_et_pb_use_builder','on'),(38145,49336,'_et_pb_first_image',''),(38146,49336,'_et_pb_truncate_post',''),(38147,49336,'_et_pb_truncate_post_date',''),(38148,49336,'_et_pb_old_content',''),(38149,49336,'subtitle',''),(38150,49336,'_subtitle','field_page_subtitle_subtitle'),(38153,49336,'_aioseo_title',NULL),(38154,49336,'_aioseo_description',NULL),(38155,49336,'_aioseo_keywords',''),(38156,49336,'_aioseo_og_title',NULL),(38157,49336,'_aioseo_og_description',NULL),(38158,49336,'_aioseo_og_article_section',''),(38159,49336,'_aioseo_og_article_tags',''),(38160,49336,'_aioseo_twitter_title',NULL),(38161,49336,'_aioseo_twitter_description',NULL),(38162,49336,'pagegoals','goal3'),(38163,49336,'pagelanguage','english'),(38164,49336,'pagetype','marketing'),(38165,49336,'author_byline','by'),(38167,49336,'_et_pb_built_for_post_type','page'),(38168,49336,'_et_pb_custom_css',''),(38169,49336,'_et_pb_gutter_width','1'),(38171,49336,'_global_colors_info','{}'),(38172,49336,'_et_builder_version','VB|Divi|4.14.8'),(38173,49336,'_et_pb_show_page_creation','off'),(38177,49340,'current_word_count','1906'),(38178,49340,'_edit_last','1'),(38179,49340,'_wp_page_template','default'),(38180,49340,'_et_monarch_override',''),(38181,49340,'_et_pb_post_hide_nav','default'),(38182,49340,'_et_pb_page_layout','et_right_sidebar'),(38183,49340,'_et_pb_side_nav','off'),(38184,49340,'_et_pb_use_builder','on'),(38185,49340,'_et_pb_first_image',''),(38186,49340,'_et_pb_truncate_post',''),(38187,49340,'_et_pb_truncate_post_date',''),(38188,49340,'_et_pb_old_content',''),(38189,49340,'subtitle',''),(38190,49340,'_subtitle','field_page_subtitle_subtitle'),(38193,49340,'_aioseo_title',NULL),(38194,49340,'_aioseo_description',NULL),(38195,49340,'_aioseo_keywords',''),(38196,49340,'_aioseo_og_title',NULL),(38197,49340,'_aioseo_og_description',NULL),(38198,49340,'_aioseo_og_article_section',''),(38199,49340,'_aioseo_og_article_tags',''),(38200,49340,'_aioseo_twitter_title',NULL),(38201,49340,'_aioseo_twitter_description',NULL),(38202,49340,'pagegoals','goal3'),(38203,49340,'pagelanguage','english'),(38204,49340,'pagetype','marketing'),(38205,49340,'author_byline','by'),(38206,49340,'_edit_lock','1663936139:1'),(38208,49340,'_et_pb_built_for_post_type','page'),(38209,49340,'_et_pb_custom_css',''),(38210,49340,'_et_pb_gutter_width','1'),(38212,49340,'_global_colors_info','{}'),(38213,49340,'_et_builder_version','VB|Divi|4.14.8'),(38214,49340,'_et_pb_show_page_creation','off'),(38218,49344,'current_word_count','1832'),(38219,49344,'_edit_lock','1693230315:1'),(38220,49344,'_edit_last','1'),(38221,49344,'_wp_page_template','default'),(38222,49344,'_et_monarch_override',''),(38223,49344,'_et_pb_post_hide_nav','default'),(38224,49344,'_et_pb_page_layout','et_right_sidebar'),(38225,49344,'_et_pb_side_nav','off'),(38226,49344,'_et_pb_use_builder','on'),(38227,49344,'_et_pb_first_image',''),(38228,49344,'_et_pb_truncate_post',''),(38229,49344,'_et_pb_truncate_post_date',''),(38230,49344,'_et_pb_old_content',''),(38231,49344,'subtitle',''),(38232,49344,'_subtitle','field_page_subtitle_subtitle'),(38235,49344,'_aioseo_title',NULL),(38236,49344,'_aioseo_description',NULL),(38237,49344,'_aioseo_keywords',''),(38238,49344,'_aioseo_og_title',NULL),(38239,49344,'_aioseo_og_description',NULL),(38240,49344,'_aioseo_og_article_section',''),(38241,49344,'_aioseo_og_article_tags',''),(38242,49344,'_aioseo_twitter_title',NULL),(38243,49344,'_aioseo_twitter_description',NULL),(38244,49344,'pagegoals','goal3'),(38245,49344,'pagelanguage','english'),(38246,49344,'pagetype','marketing'),(38247,49344,'author_byline','by'),(38249,49344,'_et_pb_built_for_post_type','page'),(38250,49344,'_et_pb_custom_css',''),(38251,49344,'_et_pb_gutter_width','1'),(38253,49344,'_global_colors_info','{}'),(38254,49344,'_et_builder_version','VB|Divi|4.14.8'),(38255,49344,'_et_pb_show_page_creation','off'),(38318,49273,'subnav','12'),(38370,49388,'_wp_attached_file','2022/08/LOMAD-Icons_Hands-in_black.png'),(38371,49388,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1668;s:6:\"height\";i:2388;s:4:\"file\";s:38:\"2022/08/LOMAD-Icons_Hands-in_black.png\";s:8:\"filesize\";i:293784;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"LOMAD-Icons_Hands-in_black-210x300.png\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7425;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"LOMAD-Icons_Hands-in_black-715x1024.png\";s:5:\"width\";i:715;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54340;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"LOMAD-Icons_Hands-in_black-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4431;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"LOMAD-Icons_Hands-in_black-768x1100.png\";s:5:\"width\";i:768;s:6:\"height\";i:1100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60813;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:40:\"LOMAD-Icons_Hands-in_black-1073x1536.png\";s:5:\"width\";i:1073;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:101063;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:40:\"LOMAD-Icons_Hands-in_black-1431x2048.png\";s:5:\"width\";i:1431;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157875;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:38:\"LOMAD-Icons_Hands-in_black-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18975;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:39:\"LOMAD-Icons_Hands-in_black-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98619;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:38:\"LOMAD-Icons_Hands-in_black-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18872;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:38:\"LOMAD-Icons_Hands-in_black-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28920;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:40:\"LOMAD-Icons_Hands-in_black-1080x1546.png\";s:5:\"width\";i:1080;s:6:\"height\";i:1546;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102005;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:38:\"LOMAD-Icons_Hands-in_black-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19567;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(38372,49389,'_wp_attached_file','2022/08/LOMAD-Icons_Hands-in_blue.png'),(38373,49389,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1668;s:6:\"height\";i:2388;s:4:\"file\";s:37:\"2022/08/LOMAD-Icons_Hands-in_blue.png\";s:8:\"filesize\";i:176057;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"LOMAD-Icons_Hands-in_blue-210x300.png\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6896;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"LOMAD-Icons_Hands-in_blue-715x1024.png\";s:5:\"width\";i:715;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36572;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"LOMAD-Icons_Hands-in_blue-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4012;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"LOMAD-Icons_Hands-in_blue-768x1100.png\";s:5:\"width\";i:768;s:6:\"height\";i:1100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40804;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"LOMAD-Icons_Hands-in_blue-1073x1536.png\";s:5:\"width\";i:1073;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66114;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:39:\"LOMAD-Icons_Hands-in_blue-1431x2048.png\";s:5:\"width\";i:1431;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100550;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:37:\"LOMAD-Icons_Hands-in_blue-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14494;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:38:\"LOMAD-Icons_Hands-in_blue-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61148;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:37:\"LOMAD-Icons_Hands-in_blue-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14759;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:37:\"LOMAD-Icons_Hands-in_blue-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20803;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:39:\"LOMAD-Icons_Hands-in_blue-1080x1546.png\";s:5:\"width\";i:1080;s:6:\"height\";i:1546;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66885;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:37:\"LOMAD-Icons_Hands-in_blue-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15957;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(38374,49390,'_wp_attached_file','2022/08/LOMAD-Icons_Gavel.png'),(38375,49390,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:630;s:6:\"height\";i:630;s:4:\"file\";s:29:\"2022/08/LOMAD-Icons_Gavel.png\";s:8:\"filesize\";i:13604;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"LOMAD-Icons_Gavel-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6999;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"LOMAD-Icons_Gavel-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2771;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:29:\"LOMAD-Icons_Gavel-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10958;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:29:\"LOMAD-Icons_Gavel-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11410;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:29:\"LOMAD-Icons_Gavel-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17845;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:29:\"LOMAD-Icons_Gavel-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17917;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(38376,49391,'_wp_attached_file','2022/08/LOMAD-Icons_TV.png'),(38377,49391,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:698;s:6:\"height\";i:699;s:4:\"file\";s:26:\"2022/08/LOMAD-Icons_TV.png\";s:8:\"filesize\";i:5689;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"LOMAD-Icons_TV-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2545;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"LOMAD-Icons_TV-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1187;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:26:\"LOMAD-Icons_TV-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3472;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:26:\"LOMAD-Icons_TV-698x675.png\";s:5:\"width\";i:698;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7052;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:26:\"LOMAD-Icons_TV-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3523;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:26:\"LOMAD-Icons_TV-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4967;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:26:\"LOMAD-Icons_TV-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5027;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(38379,49395,'_wp_attached_file','2022/08/LOMAD-Hands-In-100x100-1.png'),(38380,49395,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:36:\"2022/08/LOMAD-Hands-In-100x100-1.png\";s:8:\"filesize\";i:7133;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:{}}}'),(38382,49398,'_wp_attached_file','2022/08/LOMAD-Icons-TV-blue-100-x-100.png'),(38383,49398,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:41:\"2022/08/LOMAD-Icons-TV-blue-100-x-100.png\";s:8:\"filesize\";i:1452;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:{}}}'),(38387,6,'_et_builder_dynamic_assets_loading_attr_threshold','11'),(38391,45907,'_edit_lock','1661801854:1'),(38393,45905,'_edit_lock','1661789532:1'),(38398,47214,'_wp_old_date','2022-08-16'),(38399,47307,'_wp_old_date','2022-08-16'),(38400,48418,'_wp_old_date','2022-08-16'),(38401,47305,'_wp_old_date','2022-08-16'),(38402,47213,'_wp_old_date','2022-08-16'),(38404,47312,'_wp_old_date','2022-08-16'),(38405,47311,'_wp_old_date','2022-08-16'),(38406,47313,'_wp_old_date','2022-08-16'),(38407,48861,'_wp_old_date','2022-08-16'),(38408,47308,'_wp_old_date','2022-08-16'),(38409,47516,'_wp_old_date','2022-08-16'),(38410,49220,'_wp_old_date','2022-08-16'),(38411,47215,'_wp_old_date','2022-08-16'),(38412,47518,'_wp_old_date','2022-08-16'),(38440,47118,'_et_pb_use_builder','on'),(38441,47118,'_et_pb_ab_subjects',''),(38442,47118,'_et_pb_enable_shortcode_tracking',''),(38443,47118,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"47118\" /]'),(38444,47118,'_et_pb_custom_css',''),(38445,47118,'_et_pb_gutter_width','1'),(38447,47118,'_global_colors_info','{}'),(38448,47118,'_et_pb_first_image',''),(38449,47118,'_et_pb_truncate_post',''),(38450,47118,'_et_pb_truncate_post_date',''),(38451,47118,'_et_builder_version','VB|Divi|4.18.0'),(38452,47118,'_et_pb_show_page_creation','off'),(38453,47118,'_edit_last','1'),(38454,47118,'_et_pb_old_content',''),(38465,47119,'_edit_lock','1661795297:1'),(38467,47119,'_et_pb_use_builder','on'),(38468,47119,'_et_pb_ab_subjects',''),(38469,47119,'_et_pb_enable_shortcode_tracking',''),(38470,47119,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"47119\" /]'),(38471,47119,'_et_pb_custom_css',''),(38472,47119,'_et_pb_gutter_width','1'),(38474,47119,'_global_colors_info','{}'),(38475,47119,'_et_pb_first_image',''),(38476,47119,'_et_pb_truncate_post',''),(38477,47119,'_et_pb_truncate_post_date',''),(38478,47119,'_et_builder_version','VB|Divi|4.18.0'),(38479,47119,'_et_pb_show_page_creation','off'),(38480,47119,'_edit_last','1'),(38481,47119,'_et_pb_old_content',''),(38651,47667,'_global_colors_info','{}'),(38654,49452,'_et_pb_module_type','lwp_divi_breadcrumbs'),(38655,49452,'_et_pb_excluded_global_options','[]'),(38656,49452,'_et_pb_built_for_post_type','page'),(38703,47121,'_et_pb_ab_subjects',''),(38704,47121,'_et_pb_enable_shortcode_tracking',''),(38705,47121,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"47121\" /]'),(38768,45907,'_et_pb_gutter_width','1'),(38770,45907,'_global_colors_info','{}'),(38771,45907,'_et_pb_truncate_post_date',''),(38772,45907,'_edit_last','1'),(39103,47138,'_global_colors_info','{}'),(39204,49273,'_et_pb_ab_subjects',''),(39205,49273,'_et_pb_enable_shortcode_tracking',''),(39206,49273,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"49273\" /]'),(39211,49237,'_et_pb_ab_subjects',''),(39212,49237,'_et_pb_enable_shortcode_tracking',''),(39213,49237,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"49237\" /]'),(39259,49307,'_et_pb_ab_subjects',''),(39260,49307,'_et_pb_enable_shortcode_tracking',''),(39261,49307,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"49307\" /]'),(39286,49299,'_et_pb_ab_subjects',''),(39287,49299,'_et_pb_enable_shortcode_tracking',''),(39288,49299,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"49299\" /]'),(39292,49303,'_et_pb_ab_subjects',''),(39293,49303,'_et_pb_enable_shortcode_tracking',''),(39294,49303,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"49303\" /]'),(39299,49312,'_et_pb_ab_subjects',''),(39300,49312,'_et_pb_enable_shortcode_tracking',''),(39301,49312,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"49312\" /]'),(39312,49316,'_et_pb_ab_subjects',''),(39313,49316,'_et_pb_enable_shortcode_tracking',''),(39314,49316,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"49316\" /]'),(39323,49322,'_et_pb_ab_subjects',''),(39324,49322,'_et_pb_enable_shortcode_tracking',''),(39325,49322,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"49322\" /]'),(39331,49326,'_et_pb_ab_subjects',''),(39332,49326,'_et_pb_enable_shortcode_tracking',''),(39333,49326,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"49326\" /]'),(39339,49331,'_et_pb_ab_subjects',''),(39340,49331,'_et_pb_enable_shortcode_tracking',''),(39341,49331,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"49331\" /]'),(39347,49336,'_et_pb_ab_subjects',''),(39348,49336,'_et_pb_enable_shortcode_tracking',''),(39349,49336,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"49336\" /]'),(39355,49340,'_et_pb_ab_subjects',''),(39356,49340,'_et_pb_enable_shortcode_tracking',''),(39357,49340,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"49340\" /]'),(39363,49344,'_et_pb_ab_subjects',''),(39364,49344,'_et_pb_enable_shortcode_tracking',''),(39365,49344,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"49344\" /]'),(39392,49642,'_et_pb_row_layout','2_5,3_5'),(39393,49642,'_et_pb_built_for_post_type','page'),(39394,49644,'_edit_lock','1663253487:1'),(39395,49644,'_edit_last','1'),(39396,49644,'_wp_page_template','default'),(39397,49644,'_et_pb_post_hide_nav','default'),(39398,49644,'_et_pb_page_layout','et_right_sidebar'),(39399,49644,'_et_pb_side_nav','off'),(39400,49644,'_et_pb_use_builder','on'),(39401,49644,'_et_pb_first_image',''),(39402,49644,'_et_pb_truncate_post',''),(39403,49644,'_et_pb_truncate_post_date',''),(39404,49644,'_et_pb_old_content',''),(39410,49644,'_et_pb_built_for_post_type','page'),(39411,49644,'_et_pb_ab_subjects',''),(39412,49644,'_et_pb_enable_shortcode_tracking',''),(39413,49644,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"49644\" /]'),(39414,49644,'_et_pb_custom_css',''),(39415,49644,'_et_pb_gutter_width','1'),(39417,49644,'_global_colors_info','{}'),(39418,49644,'_et_builder_version','VB|Divi|4.18.0'),(39419,49644,'_et_pb_show_page_creation','off'),(39421,49650,'_edit_last','1'),(39422,49650,'_wp_page_template','default'),(39423,49650,'_et_pb_post_hide_nav','default'),(39424,49650,'_et_pb_page_layout','et_right_sidebar'),(39425,49650,'_et_pb_side_nav','off'),(39426,49650,'_et_pb_use_builder','on'),(39427,49650,'_et_pb_first_image',''),(39428,49650,'_et_pb_truncate_post',''),(39429,49650,'_et_pb_truncate_post_date',''),(39430,49650,'_et_pb_old_content',''),(39431,49650,'_edit_lock','1663253201:1'),(39437,49650,'_et_pb_built_for_post_type','page'),(39438,49650,'_et_pb_ab_subjects',''),(39439,49650,'_et_pb_enable_shortcode_tracking',''),(39440,49650,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"49650\" /]'),(39441,49650,'_et_pb_custom_css',''),(39442,49650,'_et_pb_gutter_width','1'),(39444,49650,'_global_colors_info','{}'),(39445,49650,'_et_builder_version','VB|Divi|4.18.0'),(39446,49650,'_et_pb_show_page_creation','off'),(39453,46125,'_et_pb_built_for_post_type','page'),(39454,46125,'_et_pb_ab_subjects',''),(39455,46125,'_et_pb_enable_shortcode_tracking',''),(39456,46125,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46125\" /]'),(39457,46125,'_et_pb_custom_css',''),(39458,46125,'_et_pb_gutter_width','1'),(39460,46125,'_global_colors_info','{}'),(39461,46125,'_et_builder_version','VB|Divi|4.18.0'),(39462,46125,'_et_pb_show_page_creation','off'),(39655,46193,'_et_pb_built_for_post_type','page'),(39656,46193,'_et_pb_ab_subjects',''),(39657,46193,'_et_pb_enable_shortcode_tracking',''),(39658,46193,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46193\" /]'),(39659,46193,'_et_pb_custom_css',''),(39660,46193,'_et_pb_gutter_width','1'),(39662,46193,'_global_colors_info','{}'),(39663,46193,'_et_builder_version','VB|Divi|4.18.0'),(39664,46193,'_et_pb_show_page_creation','off'),(39701,49704,'_edit_last','1'),(39702,49704,'_wp_page_template','default'),(39703,49704,'_et_pb_post_hide_nav','default'),(39704,49704,'_et_pb_page_layout','et_right_sidebar'),(39705,49704,'_et_pb_side_nav','off'),(39706,49704,'_et_pb_use_builder','on'),(39707,49704,'_et_pb_first_image',''),(39708,49704,'_et_pb_truncate_post',''),(39709,49704,'_et_pb_truncate_post_date',''),(39710,49704,'_et_pb_old_content',''),(39711,49704,'_edit_lock','1663609389:1'),(39713,49704,'_et_pb_built_for_post_type','page'),(39714,49704,'_et_pb_ab_subjects',''),(39715,49704,'_et_pb_enable_shortcode_tracking',''),(39716,49704,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"49704\" /]'),(39717,49704,'_et_pb_custom_css',''),(39718,49704,'_et_pb_gutter_width','1'),(39720,49704,'_global_colors_info','{}'),(39721,49704,'_et_builder_version','VB|Divi|4.18.0'),(39722,49704,'_et_pb_show_page_creation','off'),(39733,49713,'_et_pb_module_type','el_advanced_flipbox'),(39734,49713,'_et_pb_built_for_post_type','page'),(39783,47214,'_wp_old_date','2022-08-29'),(39784,47307,'_wp_old_date','2022-08-29'),(39785,48418,'_wp_old_date','2022-08-29'),(39786,47305,'_wp_old_date','2022-08-29'),(39787,47213,'_wp_old_date','2022-08-29'),(39788,47312,'_wp_old_date','2022-08-29'),(39789,47311,'_wp_old_date','2022-08-29'),(39790,47313,'_wp_old_date','2022-08-29'),(39791,48861,'_wp_old_date','2022-08-29'),(39792,47308,'_wp_old_date','2022-08-29'),(39793,47516,'_wp_old_date','2022-08-29'),(39794,49220,'_wp_old_date','2022-08-29'),(39795,47215,'_wp_old_date','2022-08-29'),(39796,47518,'_wp_old_date','2022-08-29'),(39843,49768,'_wp_attached_file','2022/08/NYS-WC-Forum-Homepage_transparent.png'),(39844,49768,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:45:\"2022/08/NYS-WC-Forum-Homepage_transparent.png\";s:8:\"filesize\";i:144926;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"NYS-WC-Forum-Homepage_transparent-300x180.png\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55217;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"NYS-WC-Forum-Homepage_transparent-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26342;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:45:\"NYS-WC-Forum-Homepage_transparent-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96345;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:45:\"NYS-WC-Forum-Homepage_transparent-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110935;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:45:\"NYS-WC-Forum-Homepage_transparent-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118013;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:45:\"NYS-WC-Forum-Homepage_transparent-480x288.png\";s:5:\"width\";i:480;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122588;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(39902,49203,'_et_pb_ab_subjects',''),(39903,49203,'_et_pb_enable_shortcode_tracking',''),(39904,49203,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"49203\" /]'),(39928,49788,'_et_pb_module_type','et_pb_sidebar'),(39929,49788,'_et_pb_built_for_post_type','page'),(39948,46436,'_oembed_af5f4ca6dae94e73e962227617f40338','{{unknown}}'),(39949,46444,'_oembed_cbd036f525a89da2cd2733276ae26173','{{unknown}}'),(40112,49949,'_edit_lock','1663611100:1'),(40113,49949,'_edit_last','1'),(40114,49949,'_wp_page_template','default'),(40115,49949,'_et_pb_post_hide_nav','default'),(40116,49949,'_et_pb_page_layout','et_right_sidebar'),(40117,49949,'_et_pb_side_nav','off'),(40118,49949,'_et_pb_use_builder','on'),(40119,49949,'_et_pb_first_image',''),(40120,49949,'_et_pb_truncate_post',''),(40121,49949,'_et_pb_truncate_post_date',''),(40122,49949,'_et_pb_old_content',''),(40128,49949,'_et_pb_built_for_post_type','page'),(40129,49949,'_et_pb_ab_subjects',''),(40130,49949,'_et_pb_enable_shortcode_tracking',''),(40131,49949,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"49949\" /]'),(40132,49949,'_et_pb_custom_css',''),(40133,49949,'_et_pb_gutter_width','1'),(40135,49949,'_global_colors_info','{}'),(40136,49949,'_et_builder_version','VB|Divi|4.18.0'),(40137,49949,'_et_pb_show_page_creation','off'),(40145,49963,'_wp_attached_file','2022/08/Episode-35-Lawyers-and-Friends-copy.png'),(40146,49963,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:512;s:4:\"file\";s:47:\"2022/08/Episode-35-Lawyers-and-Friends-copy.png\";s:8:\"filesize\";i:477117;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Episode-35-Lawyers-and-Friends-copy-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55872;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Episode-35-Lawyers-and-Friends-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29333;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"Episode-35-Lawyers-and-Friends-copy-768x384.png\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:281560;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:47:\"Episode-35-Lawyers-and-Friends-copy-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123357;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:47:\"Episode-35-Lawyers-and-Friends-copy-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133582;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:47:\"Episode-35-Lawyers-and-Friends-copy-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:204668;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:47:\"Episode-35-Lawyers-and-Friends-copy-400x512.png\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:180154;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:47:\"Episode-35-Lawyers-and-Friends-copy-980x490.png\";s:5:\"width\";i:980;s:6:\"height\";i:490;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:424002;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:47:\"Episode-35-Lawyers-and-Friends-copy-480x240.png\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125644;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(40147,49964,'_wp_attached_file','2022/08/Episode-39-thumbnail.png'),(40148,49964,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:868;s:6:\"height\";i:433;s:4:\"file\";s:32:\"2022/08/Episode-39-thumbnail.png\";s:8:\"filesize\";i:557356;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Episode-39-thumbnail-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62371;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Episode-39-thumbnail-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31999;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Episode-39-thumbnail-768x383.png\";s:5:\"width\";i:768;s:6:\"height\";i:383;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:322825;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:32:\"Episode-39-thumbnail-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137061;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:32:\"Episode-39-thumbnail-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146336;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:32:\"Episode-39-thumbnail-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:226520;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:32:\"Episode-39-thumbnail-400x433.png\";s:5:\"width\";i:400;s:6:\"height\";i:433;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:187457;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:32:\"Episode-39-thumbnail-480x239.png\";s:5:\"width\";i:480;s:6:\"height\";i:239;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:142612;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(40149,49965,'_wp_attached_file','2022/08/Episode-38-Lawyers-and-Friends.png'),(40150,49965,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:512;s:4:\"file\";s:42:\"2022/08/Episode-38-Lawyers-and-Friends.png\";s:8:\"filesize\";i:504372;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Episode-38-Lawyers-and-Friends-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58689;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Episode-38-Lawyers-and-Friends-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29277;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"Episode-38-Lawyers-and-Friends-768x384.png\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:298979;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:42:\"Episode-38-Lawyers-and-Friends-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:127875;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:42:\"Episode-38-Lawyers-and-Friends-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:135422;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:42:\"Episode-38-Lawyers-and-Friends-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:211862;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:42:\"Episode-38-Lawyers-and-Friends-400x512.png\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:182046;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:42:\"Episode-38-Lawyers-and-Friends-980x490.png\";s:5:\"width\";i:980;s:6:\"height\";i:490;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:451901;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:42:\"Episode-38-Lawyers-and-Friends-480x240.png\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133435;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(40151,49966,'_wp_attached_file','2022/08/Episode-37-Lawyers-and-Friends.png'),(40152,49966,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:512;s:4:\"file\";s:42:\"2022/08/Episode-37-Lawyers-and-Friends.png\";s:8:\"filesize\";i:524047;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Episode-37-Lawyers-and-Friends-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60546;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Episode-37-Lawyers-and-Friends-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30286;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"Episode-37-Lawyers-and-Friends-768x384.png\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:308729;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:42:\"Episode-37-Lawyers-and-Friends-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132143;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:42:\"Episode-37-Lawyers-and-Friends-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141414;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:42:\"Episode-37-Lawyers-and-Friends-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:218690;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:42:\"Episode-37-Lawyers-and-Friends-400x512.png\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:196410;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:42:\"Episode-37-Lawyers-and-Friends-980x490.png\";s:5:\"width\";i:980;s:6:\"height\";i:490;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:466132;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:42:\"Episode-37-Lawyers-and-Friends-480x240.png\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137476;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(40157,49971,'_wp_attached_file','2022/08/LF-Ep.-39-455x200-1.png'),(40158,49971,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:455;s:6:\"height\";i:199;s:4:\"file\";s:31:\"2022/08/LF-Ep.-39-455x200-1.png\";s:8:\"filesize\";i:113976;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"LF-Ep.-39-455x200-1-300x131.png\";s:5:\"width\";i:300;s:6:\"height\";i:131;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50745;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"LF-Ep.-39-455x200-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30955;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:31:\"LF-Ep.-39-455x200-1-400x199.png\";s:5:\"width\";i:400;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:106674;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:31:\"LF-Ep.-39-455x200-1-400x199.png\";s:5:\"width\";i:400;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:106674;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:31:\"LF-Ep.-39-455x200-1-400x199.png\";s:5:\"width\";i:400;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:106674;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(40159,49972,'_wp_attached_file','2022/08/LF-Ep.-39-345x200-1.png'),(40160,49972,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:345;s:6:\"height\";i:199;s:4:\"file\";s:31:\"2022/08/LF-Ep.-39-345x200-1.png\";s:8:\"filesize\";i:88638;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"LF-Ep.-39-345x200-1-300x173.png\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64286;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"LF-Ep.-39-345x200-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28964;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(40165,49978,'_wp_attached_file','2022/08/LF-Ep.-38-340x200-1.png'),(40166,49978,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:340;s:6:\"height\";i:200;s:4:\"file\";s:31:\"2022/08/LF-Ep.-38-340x200-1.png\";s:8:\"filesize\";i:82121;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"LF-Ep.-38-340x200-1-300x176.png\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61153;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"LF-Ep.-38-340x200-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27759;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(40167,49979,'_wp_attached_file','2022/08/LF-Ep.-38-450x200-1.png'),(40168,49979,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:450;s:6:\"height\";i:199;s:4:\"file\";s:31:\"2022/08/LF-Ep.-38-450x200-1.png\";s:8:\"filesize\";i:109748;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"LF-Ep.-38-450x200-1-300x133.png\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49506;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"LF-Ep.-38-450x200-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29966;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:31:\"LF-Ep.-38-450x200-1-400x199.png\";s:5:\"width\";i:400;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102906;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:31:\"LF-Ep.-38-450x200-1-400x199.png\";s:5:\"width\";i:400;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102906;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:31:\"LF-Ep.-38-450x200-1-400x199.png\";s:5:\"width\";i:400;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102906;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(40171,49982,'_wp_attached_file','2022/08/LF-Ep.-36-340x200-1.png'),(40172,49982,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:340;s:6:\"height\";i:200;s:4:\"file\";s:31:\"2022/08/LF-Ep.-36-340x200-1.png\";s:8:\"filesize\";i:78791;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"LF-Ep.-36-340x200-1-300x176.png\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58734;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"LF-Ep.-36-340x200-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27176;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(40173,49983,'_wp_attached_file','2022/08/LF-Ep.-37-340x200-1.png'),(40174,49983,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:340;s:6:\"height\";i:200;s:4:\"file\";s:31:\"2022/08/LF-Ep.-37-340x200-1.png\";s:8:\"filesize\";i:87566;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"LF-Ep.-37-340x200-1-300x176.png\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64273;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"LF-Ep.-37-340x200-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28023;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(40190,47214,'_wp_old_date','2022-08-30'),(40191,47307,'_wp_old_date','2022-08-30'),(40192,48418,'_wp_old_date','2022-08-30'),(40193,47305,'_wp_old_date','2022-08-30'),(40194,47213,'_wp_old_date','2022-08-30'),(40196,47312,'_wp_old_date','2022-08-30'),(40197,47311,'_wp_old_date','2022-08-30'),(40198,47313,'_wp_old_date','2022-08-30'),(40199,48861,'_wp_old_date','2022-08-30'),(40200,47308,'_wp_old_date','2022-08-30'),(40201,47516,'_wp_old_date','2022-08-30'),(40202,49220,'_wp_old_date','2022-08-30'),(40203,47215,'_wp_old_date','2022-08-30'),(40204,47518,'_wp_old_date','2022-08-30'),(40304,50041,'_wp_attached_file','2022/08/LOMADtv-logo_2_transparent.png'),(40305,50041,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1766;s:6:\"height\";i:335;s:4:\"file\";s:38:\"2022/08/LOMADtv-logo_2_transparent.png\";s:8:\"filesize\";i:259492;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"LOMADtv-logo_2_transparent-300x57.png\";s:5:\"width\";i:300;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14380;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"LOMADtv-logo_2_transparent-1024x194.png\";s:5:\"width\";i:1024;s:6:\"height\";i:194;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85733;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"LOMADtv-logo_2_transparent-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11498;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"LOMADtv-logo_2_transparent-768x146.png\";s:5:\"width\";i:768;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55316;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"LOMADtv-logo_2_transparent-1536x291.png\";s:5:\"width\";i:1536;s:6:\"height\";i:291;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:159303;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:38:\"LOMADtv-logo_2_transparent-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41679;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:39:\"LOMADtv-logo_2_transparent-1080x335.png\";s:5:\"width\";i:1080;s:6:\"height\";i:335;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:119878;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:38:\"LOMADtv-logo_2_transparent-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44266;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:38:\"LOMADtv-logo_2_transparent-510x335.png\";s:5:\"width\";i:510;s:6:\"height\";i:335;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58495;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:39:\"LOMADtv-logo_2_transparent-1080x205.png\";s:5:\"width\";i:1080;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92919;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:38:\"LOMADtv-logo_2_transparent-400x335.png\";s:5:\"width\";i:400;s:6:\"height\";i:335;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46104;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:39:\"LOMADtv-logo_2_transparent-1280x243.png\";s:5:\"width\";i:1280;s:6:\"height\";i:243;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:121132;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:38:\"LOMADtv-logo_2_transparent-980x186.png\";s:5:\"width\";i:980;s:6:\"height\";i:186;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80236;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:37:\"LOMADtv-logo_2_transparent-480x91.png\";s:5:\"width\";i:480;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27730;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(40388,50069,'_edit_lock','1663614047:1'),(40389,50069,'_edit_last','1'),(40390,50069,'_wp_page_template','default'),(40391,50069,'_et_pb_post_hide_nav','default'),(40392,50069,'_et_pb_page_layout','et_right_sidebar'),(40393,50069,'_et_pb_side_nav','off'),(40394,50069,'_et_pb_use_builder','on'),(40395,50069,'_et_pb_first_image',''),(40396,50069,'_et_pb_truncate_post',''),(40397,50069,'_et_pb_truncate_post_date',''),(40398,50069,'_et_pb_old_content',''),(40400,50069,'_et_pb_built_for_post_type','page'),(40401,50069,'_et_pb_ab_subjects',''),(40402,50069,'_et_pb_enable_shortcode_tracking',''),(40403,50069,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"50069\" /]'),(40404,50069,'_et_pb_custom_css',''),(40405,50069,'_et_pb_gutter_width','1'),(40407,50069,'_global_colors_info','{}'),(40408,50069,'_et_builder_version','VB|Divi|4.18.0'),(40509,50129,'_et_pb_row_layout','4_4'),(40510,50129,'_et_pb_built_for_post_type','page'),(40517,50069,'_et_pb_show_page_creation','off'),(40559,50149,'_et_pb_use_builder','on'),(40560,50149,'_et_pb_show_page_creation','off'),(40562,50151,'_et_pb_row_layout','4_4'),(40563,50151,'_et_pb_built_for_post_type','page'),(40738,50149,'_et_pb_built_for_post_type','page'),(40739,50149,'_et_pb_ab_subjects',''),(40740,50149,'_et_pb_enable_shortcode_tracking',''),(40741,50149,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"50149\" /]'),(40742,50149,'_et_pb_custom_css',''),(40743,50149,'_et_pb_gutter_width','1'),(40744,50149,'_thumbnail_id','0'),(40745,50149,'_global_colors_info','{}'),(40746,50149,'_et_pb_first_image',''),(40747,50149,'_et_pb_truncate_post',''),(40748,50149,'_et_pb_truncate_post_date',''),(40749,50149,'_et_builder_version','VB|Divi|4.18.0'),(40776,50194,'_et_autogenerated_title','0'),(40777,50194,'_et_default','0'),(40778,50194,'_et_enabled','1'),(40779,50194,'_et_header_layout_id','46014'),(40780,50194,'_et_header_layout_enabled','1'),(40781,50194,'_et_body_layout_id','50149'),(40782,50194,'_et_body_layout_enabled','1'),(40783,50194,'_et_footer_layout_id','46015'),(40784,50194,'_et_footer_layout_enabled','1'),(40897,50234,'_et_pb_module_type','el_advanced_flipbox'),(40898,50234,'_et_pb_built_for_post_type','page'),(41001,50299,'_wp_attached_file','2022/09/LOMAD-House-Icon.png'),(41002,50299,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:130;s:6:\"height\";i:150;s:4:\"file\";s:28:\"2022/09/LOMAD-House-Icon.png\";s:8:\"filesize\";i:3519;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:{}}}'),(41025,50311,'_wp_attached_file','2022/09/LOMAD-Hands-In-100x100-1-1.png'),(41026,50311,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:38:\"2022/09/LOMAD-Hands-In-100x100-1-1.png\";s:8:\"filesize\";i:11555;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:{}}}'),(41068,50324,'_edit_lock','1663614046:1'),(41069,50324,'_edit_last','1'),(41070,50324,'_wp_page_template','default'),(41071,50324,'_et_pb_post_hide_nav','default'),(41072,50324,'_et_pb_page_layout','et_right_sidebar'),(41073,50324,'_et_pb_side_nav','off'),(41097,50324,'_et_pb_use_builder',''),(41098,50324,'_et_pb_first_image',''),(41099,50324,'_et_pb_truncate_post',''),(41100,50324,'_et_pb_truncate_post_date',''),(41101,50324,'_et_pb_old_content',''),(41359,50399,'_field_35','Maxwell (Test 2)'),(41360,50399,'_field_36','mdoldan@madwcdefense.com'),(41361,50399,'_field_39','7162775466'),(41362,50399,'_field_37','This is a test message delivered via the LOMAD site contact form. '),(41363,50399,'_field_47','a:1:{i:0;s:36:\"I Acknowledge and Agree to its Terms\";}'),(41364,50399,'_form_id','5'),(41365,50399,'_seq_num','1'),(41522,46179,'_et_pb_built_for_post_type','page'),(41523,46179,'_et_pb_ab_subjects',''),(41524,46179,'_et_pb_enable_shortcode_tracking',''),(41525,46179,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46179\" /]'),(41526,46179,'_et_pb_custom_css',''),(41527,46179,'_et_pb_gutter_width','1'),(41529,46179,'_global_colors_info','{}'),(41530,46179,'_et_builder_version','VB|Divi|4.18.0'),(41531,46179,'_et_pb_show_page_creation','off'),(41541,46129,'_et_pb_built_for_post_type','page'),(41542,46129,'_et_pb_ab_subjects',''),(41543,46129,'_et_pb_enable_shortcode_tracking',''),(41544,46129,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46129\" /]'),(41545,46129,'_et_pb_custom_css',''),(41546,46129,'_et_pb_gutter_width','1'),(41548,46129,'_global_colors_info','{}'),(41549,46129,'_et_builder_version','VB|Divi|4.18.0'),(41550,46129,'_et_pb_show_page_creation','off'),(41667,50433,'_edit_lock','1663937327:1'),(41668,50433,'_edit_last','1'),(41669,50433,'_wp_page_template','default'),(41670,50433,'_et_pb_post_hide_nav','default'),(41671,50433,'_et_pb_page_layout','et_right_sidebar'),(41672,50433,'_et_pb_side_nav','off'),(41673,50433,'_et_pb_use_builder',''),(41674,50433,'_et_pb_first_image',''),(41675,50433,'_et_pb_truncate_post',''),(41676,50433,'_et_pb_truncate_post_date',''),(41677,50433,'_et_pb_old_content',''),(41692,50437,'_edit_lock','1663253429:1'),(41693,50437,'_edit_last','1'),(41694,50437,'_wp_page_template','default'),(41695,50437,'_et_pb_post_hide_nav','default'),(41696,50437,'_et_pb_page_layout','et_right_sidebar'),(41697,50437,'_et_pb_side_nav','off'),(41698,50437,'_et_pb_use_builder','on'),(41699,50437,'_et_pb_first_image',''),(41700,50437,'_et_pb_truncate_post',''),(41701,50437,'_et_pb_truncate_post_date',''),(41702,50437,'_et_pb_old_content',''),(41704,49642,'_edit_lock','1662726113:1'),(41707,50437,'_et_pb_built_for_post_type','page'),(41708,50437,'_et_pb_ab_subjects',''),(41709,50437,'_et_pb_enable_shortcode_tracking',''),(41710,50437,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"50437\" /]'),(41711,50437,'_et_pb_custom_css',''),(41712,50437,'_et_pb_gutter_width','1'),(41714,50437,'_global_colors_info','{}'),(41715,50437,'_et_builder_version','VB|Divi|4.18.0'),(41716,50437,'_et_pb_show_page_creation','off'),(41952,46837,'_et_use_on','singular:post_type:page:all'),(41953,46837,'_et_use_on','singular:post_type:page:id:46189'),(41954,46838,'_et_use_on','singular:post_type:page:id:45929'),(41955,46838,'_et_use_on','singular:post_type:page:id:45930'),(41956,46838,'_et_use_on','singular:post_type:page:id:45927'),(41957,46838,'_et_use_on','singular:post_type:page:id:46049'),(41958,46838,'_et_use_on','singular:post_type:page:id:48173'),(41959,46838,'_et_use_on','singular:post_type:page:id:49949'),(41960,46839,'_et_use_on','singular:post_type:page:id:45926'),(41961,46840,'_et_use_on','singular:post_type:post:all'),(41962,46841,'_et_use_on','archive:all'),(41963,46841,'_et_use_on','archive:user:all'),(41964,46841,'_et_use_on','archive:taxonomy:category:all'),(41965,46841,'_et_use_on','archive:date:all'),(41966,46841,'_et_use_on','archive:taxonomy:project_category:all'),(41967,46841,'_et_use_on','archive:taxonomy:project_tag:all'),(41968,46841,'_et_use_on','search'),(41969,46842,'_et_use_on','404'),(41970,46845,'_et_use_on','homepage'),(41971,47715,'_et_use_on','singular:post_type:page:id:46229'),(41972,47715,'_et_use_on','singular:post_type:page:children:id:46229'),(41973,50194,'_et_use_on','singular:post_type:page:id:50069'),(41974,50194,'_et_use_on','singular:post_type:page:id:45928'),(41993,50529,'_et_pb_module_type','et_pb_accordion'),(41994,50529,'_et_pb_built_for_post_type','page'),(41995,50531,'_et_pb_module_type','et_pb_search'),(41996,50531,'_et_pb_built_for_post_type','page'),(41997,47169,'_global_colors_info','{}'),(42004,47166,'_global_colors_info','{}'),(42024,50543,'_wp_attached_file','2022/09/LOMAD-Newsletter-Blue-2.png'),(42025,50543,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:35:\"2022/09/LOMAD-Newsletter-Blue-2.png\";s:8:\"filesize\";i:3274;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:{}}}'),(42033,50546,'_wp_attached_file','2022/09/LOMAD-Newsletter-Blue-3.png'),(42034,50546,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:35:\"2022/09/LOMAD-Newsletter-Blue-3.png\";s:8:\"filesize\";i:5868;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:{}}}'),(42185,50566,'_wp_page_template','default'),(42191,46229,'_et_pb_built_for_post_type','page'),(42192,46229,'_et_pb_ab_subjects',''),(42193,46229,'_et_pb_enable_shortcode_tracking',''),(42194,46229,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46229\" /]'),(42195,46229,'_et_pb_custom_css',''),(42196,46229,'_et_pb_gutter_width','1'),(42198,46229,'_global_colors_info','{}'),(42199,46229,'_et_builder_version','VB|Divi|4.18.0'),(42200,46229,'_et_pb_show_page_creation','off'),(42218,50572,'_wp_attached_file','2022/09/LOMAD-Magazine.png'),(42219,50572,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:691;s:6:\"height\";i:300;s:4:\"file\";s:26:\"2022/09/LOMAD-Magazine.png\";s:8:\"filesize\";i:87565;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"LOMAD-Magazine-300x130.png\";s:5:\"width\";i:300;s:6:\"height\";i:130;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25262;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"LOMAD-Magazine-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19938;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:26:\"LOMAD-Magazine-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62706;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:26:\"LOMAD-Magazine-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71088;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:26:\"LOMAD-Magazine-510x300.png\";s:5:\"width\";i:510;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79828;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:26:\"LOMAD-Magazine-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70858;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:26:\"LOMAD-Magazine-480x208.png\";s:5:\"width\";i:480;s:6:\"height\";i:208;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50999;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(42224,50573,'_wp_attached_file','2022/09/LOMAD-tv-lighter.png'),(42225,50573,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1766;s:6:\"height\";i:335;s:4:\"file\";s:28:\"2022/09/LOMAD-tv-lighter.png\";s:8:\"filesize\";i:317605;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"LOMAD-tv-lighter-300x57.png\";s:5:\"width\";i:300;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19692;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"LOMAD-tv-lighter-1024x194.png\";s:5:\"width\";i:1024;s:6:\"height\";i:194;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:124258;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"LOMAD-tv-lighter-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20549;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"LOMAD-tv-lighter-768x146.png\";s:5:\"width\";i:768;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80779;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"LOMAD-tv-lighter-1536x291.png\";s:5:\"width\";i:1536;s:6:\"height\";i:291;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:225795;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:28:\"LOMAD-tv-lighter-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71962;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:29:\"LOMAD-tv-lighter-1080x335.png\";s:5:\"width\";i:1080;s:6:\"height\";i:335;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:204064;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:28:\"LOMAD-tv-lighter-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77146;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:28:\"LOMAD-tv-lighter-510x335.png\";s:5:\"width\";i:510;s:6:\"height\";i:335;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102462;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:29:\"LOMAD-tv-lighter-1080x205.png\";s:5:\"width\";i:1080;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:135104;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:28:\"LOMAD-tv-lighter-400x335.png\";s:5:\"width\";i:400;s:6:\"height\";i:335;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80314;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:29:\"LOMAD-tv-lighter-1280x243.png\";s:5:\"width\";i:1280;s:6:\"height\";i:243;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:173587;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:28:\"LOMAD-tv-lighter-980x186.png\";s:5:\"width\";i:980;s:6:\"height\";i:186;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:115141;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:27:\"LOMAD-tv-lighter-480x91.png\";s:5:\"width\";i:480;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40236;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(42251,50581,'_wp_attached_file','2022/09/LOMAD-Icons-TV-white-100-x-100.png'),(42252,50581,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:42:\"2022/09/LOMAD-Icons-TV-white-100-x-100.png\";s:8:\"filesize\";i:1250;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:{}}}'),(42253,50582,'_wp_attached_file','2022/09/LOMAD-Newsletter-White.png'),(42254,50582,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:34:\"2022/09/LOMAD-Newsletter-White.png\";s:8:\"filesize\";i:4299;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:{}}}'),(42255,50583,'_wp_attached_file','2022/09/LOMAD-Calendar-Icon-White.png'),(42256,50583,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:37:\"2022/09/LOMAD-Calendar-Icon-White.png\";s:8:\"filesize\";i:1480;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:{}}}'),(42460,50618,'_et_pb_module_type','et_pb_text'),(42461,50618,'_et_pb_built_for_post_type','page'),(42476,50623,'_wp_attached_file','2022/09/Client-Resources_Title.png'),(42477,50623,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:442;s:6:\"height\";i:102;s:4:\"file\";s:34:\"2022/09/Client-Resources_Title.png\";s:8:\"filesize\";i:30232;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Client-Resources_Title-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14928;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Client-Resources_Title-150x102.png\";s:5:\"width\";i:150;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8947;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:34:\"Client-Resources_Title-400x102.png\";s:5:\"width\";i:400;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23460;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:34:\"Client-Resources_Title-400x102.png\";s:5:\"width\";i:400;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23460;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:34:\"Client-Resources_Title-400x102.png\";s:5:\"width\";i:400;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23460;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(42493,50629,'_et_pb_module_type','et_pb_text'),(42494,50629,'_et_pb_built_for_post_type','page'),(42559,50654,'_wp_attached_file','2022/09/LOMAD-Hands-In-2-blue-.png'),(42560,50654,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:34:\"2022/09/LOMAD-Hands-In-2-blue-.png\";s:8:\"filesize\";i:154643;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"LOMAD-Hands-In-2-blue--300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22815;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"LOMAD-Hands-In-2-blue--1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133456;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"LOMAD-Hands-In-2-blue--150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8655;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"LOMAD-Hands-In-2-blue--768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:87729;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:34:\"LOMAD-Hands-In-2-blue--400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29401;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:35:\"LOMAD-Hands-In-2-blue--1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:113409;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:34:\"LOMAD-Hands-In-2-blue--400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32162;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:34:\"LOMAD-Hands-In-2-blue--510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47732;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:34:\"LOMAD-Hands-In-2-blue--400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48209;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:34:\"LOMAD-Hands-In-2-blue--980x980.png\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:124646;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:34:\"LOMAD-Hands-In-2-blue--480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42461;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(42561,50655,'_wp_attached_file','2022/09/LOMAD-Icon-Gavel-blue.png'),(42562,50655,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:33:\"2022/09/LOMAD-Icon-Gavel-blue.png\";s:8:\"filesize\";i:58640;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"LOMAD-Icon-Gavel-blue-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10521;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"LOMAD-Icon-Gavel-blue-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63624;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"LOMAD-Icon-Gavel-blue-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4649;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"LOMAD-Icon-Gavel-blue-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42998;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:33:\"LOMAD-Icon-Gavel-blue-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14799;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:34:\"LOMAD-Icon-Gavel-blue-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34784;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:33:\"LOMAD-Icon-Gavel-blue-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15824;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:33:\"LOMAD-Icon-Gavel-blue-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23072;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:33:\"LOMAD-Icon-Gavel-blue-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22350;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:33:\"LOMAD-Icon-Gavel-blue-980x980.png\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61183;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:33:\"LOMAD-Icon-Gavel-blue-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17920;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(42598,50664,'_wp_attached_file','2022/09/LOMAD-TV2-white.png'),(42599,50664,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:27:\"2022/09/LOMAD-TV2-white.png\";s:8:\"filesize\";i:1182;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:{}}}'),(42622,47214,'_wp_old_date','2022-08-31'),(42623,47307,'_wp_old_date','2022-08-31'),(42624,48418,'_wp_old_date','2022-08-31'),(42625,47305,'_wp_old_date','2022-08-31'),(42626,47213,'_wp_old_date','2022-08-31'),(42628,47312,'_wp_old_date','2022-08-31'),(42629,47311,'_wp_old_date','2022-08-31'),(42630,47313,'_wp_old_date','2022-08-31'),(42631,48861,'_wp_old_date','2022-08-31'),(42632,47308,'_wp_old_date','2022-08-31'),(42633,47516,'_wp_old_date','2022-08-31'),(42634,49220,'_wp_old_date','2022-08-31'),(42635,47215,'_wp_old_date','2022-08-31'),(42636,47518,'_wp_old_date','2022-08-31'),(42698,50698,'_menu_item_type','post_type'),(42699,50698,'_menu_item_menu_item_parent','47213'),(42700,50698,'_menu_item_object_id','49704'),(42701,50698,'_menu_item_object','page'),(42702,50698,'_menu_item_target',''),(42703,50698,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42704,50698,'_menu_item_xfn',''),(42705,50698,'_menu_item_url',''),(42713,50700,'_wp_attached_file','2022/09/@Fd2X@HoSi292.jpg'),(42714,50700,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:846;s:6:\"height\";i:946;s:4:\"file\";s:25:\"2022/09/@Fd2X@HoSi292.jpg\";s:8:\"filesize\";i:99254;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi292-268x300.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8761;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi292-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3410;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi292-768x859.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:859;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72503;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi292-200x224.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5366;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi292-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10553;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi292-846x675.jpg\";s:5:\"width\";i:846;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72379;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi292-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12017;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi292-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20654;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi292-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22230;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi292-480x537.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:537;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26599;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(42715,50701,'_wp_attached_file','2022/09/@Fd2X@HoSi294.jpg'),(42716,50701,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:648;s:6:\"height\";i:724;s:4:\"file\";s:25:\"2022/09/@Fd2X@HoSi294.jpg\";s:8:\"filesize\";i:85335;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi294-269x300.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18138;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi294-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7232;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi294-200x223.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11555;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi294-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23058;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi294-648x675.jpg\";s:5:\"width\";i:648;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81420;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi294-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25526;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi294-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38811;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi294-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37823;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi294-480x536.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44764;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(42717,50702,'_wp_attached_file','2022/09/@Fd2X@HoSi295.jpg'),(42718,50702,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:648;s:6:\"height\";i:724;s:4:\"file\";s:25:\"2022/09/@Fd2X@HoSi295.jpg\";s:8:\"filesize\";i:57285;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi295-269x300.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13697;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi295-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5892;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi295-200x223.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9045;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi295-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16796;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi295-648x675.jpg\";s:5:\"width\";i:648;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54702;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi295-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18421;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi295-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27595;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi295-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26309;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi295-480x536.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31845;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(42719,50703,'_wp_attached_file','2022/09/@Fd2X@HoSi293.jpg'),(42720,50703,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:648;s:4:\"file\";s:25:\"2022/09/@Fd2X@HoSi293.jpg\";s:8:\"filesize\";i:119877;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi293-300x190.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18360;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi293-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8343;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi293-768x486.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76165;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi293-200x127.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9472;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi293-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28395;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi293-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31008;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi293-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45499;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi293-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42207;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi293-980x620.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106938;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:25:\"@Fd2X@HoSi293-480x304.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:304;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37646;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(42755,50708,'_wp_attached_file','2022/09/Channel-Trailer-1-5-2022.mp4'),(42756,50708,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:12657635;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:44;s:16:\"length_formatted\";s:4:\"0:44\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:-2082844800;}'),(42757,50709,'_wp_attached_file','2022/09/LOMAD-Newsletter-Blue-3-1.png'),(42758,50709,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:37:\"2022/09/LOMAD-Newsletter-Blue-3-1.png\";s:8:\"filesize\";i:5868;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:{}}}'),(42759,50710,'_wp_attached_file','2022/09/lol.png'),(42760,50710,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:450;s:6:\"height\";i:90;s:4:\"file\";s:15:\"2022/09/lol.png\";s:8:\"filesize\";i:19423;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"lol-300x60.png\";s:5:\"width\";i:300;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9895;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"lol-150x90.png\";s:5:\"width\";i:150;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14263;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:14:\"lol-200x40.png\";s:5:\"width\";i:200;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5312;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:14:\"lol-400x90.png\";s:5:\"width\";i:400;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16605;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:14:\"lol-400x90.png\";s:5:\"width\";i:400;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16605;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:14:\"lol-400x90.png\";s:5:\"width\";i:400;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16605;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(42761,50711,'_wp_attached_file','2022/09/lol-3.png'),(42762,50711,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1180;s:6:\"height\";i:427;s:4:\"file\";s:17:\"2022/09/lol-3.png\";s:8:\"filesize\";i:277321;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"lol-3-300x109.png\";s:5:\"width\";i:300;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27421;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"lol-3-1024x371.png\";s:5:\"width\";i:1024;s:6:\"height\";i:371;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:187416;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"lol-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24144;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"lol-3-768x278.png\";s:5:\"width\";i:768;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:119091;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:16:\"lol-3-200x72.png\";s:5:\"width\";i:200;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14596;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:17:\"lol-3-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79871;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:18:\"lol-3-1080x427.png\";s:5:\"width\";i:1080;s:6:\"height\";i:427;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:224134;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:17:\"lol-3-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89196;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:17:\"lol-3-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137351;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:18:\"lol-3-1080x391.png\";s:5:\"width\";i:1080;s:6:\"height\";i:391;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:203609;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:17:\"lol-3-400x427.png\";s:5:\"width\";i:400;s:6:\"height\";i:427;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:113119;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:17:\"lol-3-980x355.png\";s:5:\"width\";i:980;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:174515;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:17:\"lol-3-480x174.png\";s:5:\"width\";i:480;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56580;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(42763,50712,'_wp_attached_file','2022/09/@UnSiEKy2OTRPXdw.jpg'),(42764,50712,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:28:\"2022/09/@UnSiEKy2OTRPXdw.jpg\";s:8:\"filesize\";i:136973;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"@UnSiEKy2OTRPXdw-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7370;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"@UnSiEKy2OTRPXdw-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44113;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"@UnSiEKy2OTRPXdw-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3946;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"@UnSiEKy2OTRPXdw-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28145;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"@UnSiEKy2OTRPXdw-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82750;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:28:\"@UnSiEKy2OTRPXdw-200x113.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4432;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:28:\"@UnSiEKy2OTRPXdw-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11462;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:29:\"@UnSiEKy2OTRPXdw-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52854;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:28:\"@UnSiEKy2OTRPXdw-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12297;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:28:\"@UnSiEKy2OTRPXdw-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18425;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:29:\"@UnSiEKy2OTRPXdw-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48023;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:28:\"@UnSiEKy2OTRPXdw-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17787;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:29:\"@UnSiEKy2OTRPXdw-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62905;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:28:\"@UnSiEKy2OTRPXdw-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41387;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:28:\"@UnSiEKy2OTRPXdw-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13883;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(42765,50713,'_wp_attached_file','2022/09/@UnSiYjVa-F9P9kk.jpg'),(42766,50713,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:28:\"2022/09/@UnSiYjVa-F9P9kk.jpg\";s:8:\"filesize\";i:548053;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"@UnSiYjVa-F9P9kk-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20662;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"@UnSiYjVa-F9P9kk-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165715;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"@UnSiYjVa-F9P9kk-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9717;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"@UnSiYjVa-F9P9kk-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103495;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"@UnSiYjVa-F9P9kk-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:312249;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:28:\"@UnSiYjVa-F9P9kk-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10163;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:28:\"@UnSiYjVa-F9P9kk-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32449;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:29:\"@UnSiYjVa-F9P9kk-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170901;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:28:\"@UnSiYjVa-F9P9kk-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37039;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:28:\"@UnSiYjVa-F9P9kk-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59445;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:29:\"@UnSiYjVa-F9P9kk-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181247;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:28:\"@UnSiYjVa-F9P9kk-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68080;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:29:\"@UnSiYjVa-F9P9kk-1280x853.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:238329;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:28:\"@UnSiYjVa-F9P9kk-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155069;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:28:\"@UnSiYjVa-F9P9kk-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47225;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(42767,50714,'_wp_attached_file','2022/09/@UnSiVCFxt2yT1eQ.jpg'),(42768,50714,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:4:\"file\";s:28:\"2022/09/@UnSiVCFxt2yT1eQ.jpg\";s:8:\"filesize\";i:446368;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"@UnSiVCFxt2yT1eQ-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18163;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"@UnSiVCFxt2yT1eQ-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125483;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"@UnSiVCFxt2yT1eQ-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7023;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"@UnSiVCFxt2yT1eQ-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79272;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"@UnSiVCFxt2yT1eQ-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:242533;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:28:\"@UnSiVCFxt2yT1eQ-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9421;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:28:\"@UnSiVCFxt2yT1eQ-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25137;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:29:\"@UnSiVCFxt2yT1eQ-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121422;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:28:\"@UnSiVCFxt2yT1eQ-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27232;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:28:\"@UnSiVCFxt2yT1eQ-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41606;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:29:\"@UnSiVCFxt2yT1eQ-1080x810.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137831;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:28:\"@UnSiVCFxt2yT1eQ-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37983;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:29:\"@UnSiVCFxt2yT1eQ-1280x960.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181630;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:28:\"@UnSiVCFxt2yT1eQ-980x735.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:735;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117896;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:28:\"@UnSiVCFxt2yT1eQ-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37813;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(42769,50715,'_wp_attached_file','2022/09/@UnSi0FRJ2SCuY4k.jpg'),(42770,50715,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:28:\"2022/09/@UnSi0FRJ2SCuY4k.jpg\";s:8:\"filesize\";i:293833;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"@UnSi0FRJ2SCuY4k-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12090;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"@UnSi0FRJ2SCuY4k-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88394;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"@UnSi0FRJ2SCuY4k-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5749;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"@UnSi0FRJ2SCuY4k-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55442;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"@UnSi0FRJ2SCuY4k-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170291;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:28:\"@UnSi0FRJ2SCuY4k-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6615;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:28:\"@UnSi0FRJ2SCuY4k-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18457;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:29:\"@UnSi0FRJ2SCuY4k-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94142;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:28:\"@UnSi0FRJ2SCuY4k-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20147;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:28:\"@UnSi0FRJ2SCuY4k-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31062;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:29:\"@UnSi0FRJ2SCuY4k-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96419;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:28:\"@UnSi0FRJ2SCuY4k-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30528;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:29:\"@UnSi0FRJ2SCuY4k-1280x853.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126841;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:28:\"@UnSi0FRJ2SCuY4k-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82617;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:28:\"@UnSi0FRJ2SCuY4k-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25884;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(42872,50735,'_et_pb_module_type','et_pb_text'),(42873,50735,'_et_pb_built_for_post_type','page'),(42923,50747,'_field_35','Maxwell Test'),(42924,50747,'_field_36','mdoldan@madwcdefense.com'),(42925,50747,'_field_39','716-277-5466'),(42926,50747,'_field_37','This is another test message. Please disregard. '),(42927,50747,'_field_47','a:2:{i:0;s:26:\"I Have Read the Disclaimer\";i:1;s:36:\"I Acknowledge and Agree to its Terms\";}'),(42928,50747,'_form_id','5'),(42929,50747,'_seq_num','2'),(42930,50748,'_field_35','Maxwell Test Again'),(42931,50748,'_field_36','mdoldan@madwcdefense.com'),(42932,50748,'_field_39','716-277-5466'),(42933,50748,'_field_37','This is yet another test message generated via the website. Please disregard. '),(42934,50748,'_field_47','a:2:{i:0;s:26:\"I Have Read the Disclaimer\";i:1;s:36:\"I Acknowledge and Agree to its Terms\";}'),(42935,50748,'_form_id','5'),(42936,50748,'_seq_num','3'),(42937,50749,'_field_35','Maxwell Test 3'),(42938,50749,'_field_36','mdoldan@madwcdefense.com'),(42939,50749,'_field_39','716-277-5466'),(42940,50749,'_field_37','Still testing. Please disregard!'),(42941,50749,'_field_47','a:2:{i:0;s:26:\"I Have Read the Disclaimer\";i:1;s:36:\"I Acknowledge and Agree to its Terms\";}'),(42942,50749,'_form_id','5'),(42943,50749,'_seq_num','4'),(42944,50750,'_field_35','Maxwell Test 4'),(42945,50750,'_field_36','mdoldan@madwcdefense.com'),(42946,50750,'_field_39','716-277-5466'),(42947,50750,'_field_37','Still testing! Disregard. '),(42948,50750,'_field_47','a:2:{i:0;s:26:\"I Have Read the Disclaimer\";i:1;s:36:\"I Acknowledge and Agree to its Terms\";}'),(42949,50750,'_form_id','5'),(42950,50750,'_seq_num','5'),(42951,50751,'_field_35','Maxwell Test 5'),(42952,50751,'_field_36','mdoldan@madwcdefense.com'),(42953,50751,'_field_39','716-277-5466'),(42954,50751,'_field_37','Another test. Disregard.'),(42955,50751,'_field_47','a:2:{i:0;s:26:\"I Have Read the Disclaimer\";i:1;s:36:\"I Acknowledge and Agree to its Terms\";}'),(42956,50751,'_form_id','5'),(42957,50751,'_seq_num','6'),(42958,50752,'_field_35','Maxwell Test 5'),(42959,50752,'_field_36','mdoldan@madwcdefense.com'),(42960,50752,'_field_39','716-277-5466'),(42961,50752,'_field_37','Another test. Disregard. '),(42962,50752,'_field_47','a:2:{i:0;s:26:\"I Have Read the Disclaimer\";i:1;s:36:\"I Acknowledge and Agree to its Terms\";}'),(42963,50752,'_form_id','5'),(42964,50752,'_seq_num','7'),(42965,50753,'_field_35','Maxwell Test 6'),(42966,50753,'_field_36','mdoldan@madwcdefense.com'),(42967,50753,'_field_39','716-277-5466'),(42968,50753,'_field_37','This is another test. Disregard.'),(42969,50753,'_field_47','a:2:{i:0;s:26:\"I Have Read the Disclaimer\";i:1;s:36:\"I Acknowledge and Agree to its Terms\";}'),(42970,50753,'_form_id','5'),(42971,50753,'_seq_num','8'),(42972,50754,'_field_35','Maxwell Test 7'),(42973,50754,'_field_36','mdoldan@madwcdefense.com'),(42974,50754,'_field_39','716-277-5466'),(42975,50754,'_field_37','Another test. :)'),(42976,50754,'_field_47','a:2:{i:0;s:26:\"I Have Read the Disclaimer\";i:1;s:36:\"I Acknowledge and Agree to its Terms\";}'),(42977,50754,'_form_id','5'),(42978,50754,'_seq_num','9'),(42979,50755,'_field_35','Maxwell Test 8'),(42980,50755,'_field_36','mdoldan@madwcdefense.com'),(42981,50755,'_field_39','716-277-5466'),(42982,50755,'_field_37','Ugh. Still testing. :('),(42983,50755,'_field_47','a:2:{i:0;s:26:\"I Have Read the Disclaimer\";i:1;s:36:\"I Acknowledge and Agree to its Terms\";}'),(42984,50755,'_form_id','5'),(42985,50755,'_seq_num','10'),(42986,50756,'_field_35','Maxwell Test 9 '),(42987,50756,'_field_36','mdoldan@madwcdefense.com'),(42988,50756,'_field_39','716-277-5466'),(42989,50756,'_field_37','test test test :('),(42990,50756,'_field_47','a:2:{i:0;s:26:\"I Have Read the Disclaimer\";i:1;s:36:\"I Acknowledge and Agree to its Terms\";}'),(42991,50756,'_form_id','5'),(42992,50756,'_seq_num','11'),(42993,50757,'_field_35','Maxwell 10'),(42994,50757,'_field_36','mdoldan@madwcdefense.com'),(42995,50757,'_field_39','7162775466'),(42996,50757,'_field_37','Still testing, but getting closer! lol Disregard. '),(42997,50757,'_field_47','a:2:{i:0;s:26:\"I Have Read the Disclaimer\";i:1;s:36:\"I Acknowledge and Agree to its Terms\";}'),(42998,50757,'_form_id','5'),(42999,50757,'_seq_num','12'),(43000,50758,'_field_35','Maxwell Test 11'),(43001,50758,'_field_36','mdoldan@madwcdefense.com'),(43002,50758,'_field_39','7162775466'),(43003,50758,'_field_37','Maybe the last test? :D '),(43004,50758,'_field_47','a:2:{i:0;s:26:\"I Have Read the Disclaimer\";i:1;s:36:\"I Acknowledge and Agree to its Terms\";}'),(43005,50758,'_form_id','5'),(43006,50758,'_seq_num','13'),(43007,50759,'_field_35','Maxwell Test 12'),(43008,50759,'_field_36','mdoldan@madwcdefense.com'),(43009,50759,'_field_39','7162775466'),(43010,50759,'_field_37','Nearly complete! Disregard.'),(43011,50759,'_field_47','a:2:{i:0;s:26:\"I Have Read the Disclaimer\";i:1;s:36:\"I Acknowledge and Agree to its Terms\";}'),(43012,50759,'_form_id','5'),(43013,50759,'_seq_num','14'),(43014,50760,'_field_35','Maxwell Test 13'),(43015,50760,'_field_36','mdoldan@madwcdefense.com'),(43016,50760,'_field_39','7162775466'),(43017,50760,'_field_37','Almost done! Disregard. '),(43018,50760,'_field_47','a:2:{i:0;s:26:\"I Have Read the Disclaimer\";i:1;s:36:\"I Acknowledge and Agree to its Terms\";}'),(43019,50760,'_form_id','5'),(43020,50760,'_seq_num','15'),(43021,50761,'_field_35','Maxwell Test 15'),(43022,50761,'_field_36','mdoldan@madwcdefense.com'),(43023,50761,'_field_39','7162775466'),(43024,50761,'_field_37','This is hopefully the last test... Disregard. '),(43025,50761,'_field_47','a:2:{i:0;s:26:\"I Have Read the Disclaimer\";i:1;s:36:\"I Acknowledge and Agree to its Terms\";}'),(43026,50761,'_form_id','5'),(43027,50761,'_seq_num','16'),(43028,50762,'_field_35','Maxwell Test 16'),(43029,50762,'_field_36','mdoldan@madwcdefense.com'),(43030,50762,'_field_39','7162775466'),(43031,50762,'_field_37','Final test! :D Disregard. '),(43032,50762,'_field_47','a:2:{i:0;s:26:\"I Have Read the Disclaimer\";i:1;s:36:\"I Acknowledge and Agree to its Terms\";}'),(43033,50762,'_form_id','5'),(43034,50762,'_seq_num','17'),(43035,50765,'_et_pb_row_layout','1_3,2_3'),(43036,50765,'_et_pb_built_for_post_type','page'),(43051,50771,'current_word_count','1832'),(43052,50771,'_edit_lock','1663253869:1'),(43053,50771,'_edit_last','1'),(43054,50771,'_wp_page_template','default'),(43055,50771,'_et_monarch_override',''),(43056,50771,'_et_pb_post_hide_nav','default'),(43057,50771,'_et_pb_page_layout','et_right_sidebar'),(43058,50771,'_et_pb_side_nav','off'),(43059,50771,'_et_pb_use_builder','on'),(43060,50771,'_et_pb_first_image',''),(43061,50771,'_et_pb_truncate_post',''),(43062,50771,'_et_pb_truncate_post_date',''),(43063,50771,'_et_pb_old_content',''),(43064,50771,'subtitle',''),(43065,50771,'_subtitle','field_page_subtitle_subtitle'),(43066,50771,'_aioseo_title',''),(43067,50771,'_aioseo_description',''),(43068,50771,'_aioseo_keywords',''),(43069,50771,'_aioseo_og_title',''),(43070,50771,'_aioseo_og_description',''),(43071,50771,'_aioseo_og_article_section',''),(43072,50771,'_aioseo_og_article_tags',''),(43073,50771,'_aioseo_twitter_title',''),(43074,50771,'_aioseo_twitter_description',''),(43075,50771,'pagegoals','goal3'),(43076,50771,'pagelanguage','english'),(43077,50771,'pagetype','marketing'),(43078,50771,'author_byline','by'),(43079,50771,'_et_pb_built_for_post_type','page'),(43080,50771,'_et_pb_custom_css',''),(43081,50771,'_et_pb_gutter_width','1'),(43082,50771,'_global_colors_info','{}'),(43083,50771,'_et_builder_version','VB|Divi|4.14.8'),(43084,50771,'_et_pb_show_page_creation','off'),(43085,50771,'_et_pb_ab_subjects',''),(43086,50771,'_et_pb_enable_shortcode_tracking',''),(43087,50771,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"50771\" /]'),(43330,45927,'_et_pb_gutter_width','1'),(43332,45927,'_global_colors_info','{}'),(43461,50566,'_edit_lock','1663614073:1'),(43462,50566,'_edit_last','1'),(43463,50566,'_et_pb_post_hide_nav','default'),(43464,50566,'_et_pb_page_layout','et_right_sidebar'),(43465,50566,'_et_pb_side_nav','off'),(43466,50566,'_et_pb_use_builder',''),(43467,50566,'_et_pb_first_image',''),(43468,50566,'_et_pb_truncate_post',''),(43469,50566,'_et_pb_truncate_post_date',''),(43470,50566,'_et_pb_old_content',''),(43547,50883,'_et_pb_module_type','el_advanced_flipbox'),(43548,50883,'_et_pb_built_for_post_type','page'),(43549,50884,'_et_pb_module_type','el_advanced_flipbox'),(43550,50884,'_et_pb_built_for_post_type','page'),(43622,50884,'_edit_lock','1663186443:1'),(43624,50884,'_et_pb_use_builder','on'),(43625,50884,'_et_pb_ab_subjects',''),(43626,50884,'_et_pb_enable_shortcode_tracking',''),(43627,50884,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"50884\" /]'),(43628,50884,'_et_pb_custom_css',''),(43629,50884,'_et_pb_gutter_width','1'),(43631,50884,'_global_colors_info','{}'),(43632,50884,'_et_pb_first_image',''),(43633,50884,'_et_pb_truncate_post',''),(43634,50884,'_et_pb_truncate_post_date',''),(43635,50884,'_et_builder_version','VB|Divi|4.18.0'),(43636,50884,'_edit_last','1'),(43637,50884,'_et_pb_old_content',''),(43727,50923,'_wp_attached_file','2022/09/Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250358872.jpg'),(43728,50923,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:299;s:6:\"height\";i:299;s:4:\"file\";s:73:\"2022/09/Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250358872.jpg\";s:8:\"filesize\";i:697538;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250325506-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11353;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114078;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250358872-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5236;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-768x1151.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142926;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:53:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-1025x1536.jpg\";s:5:\"width\";i:1025;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:253974;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:53:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-1367x2048.jpg\";s:5:\"width\";i:1367;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:449589;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250358872-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7846;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250358872-299x250.jpg\";s:5:\"width\";i:299;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13987;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:52:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127147;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250358872-299x284.jpg\";s:5:\"width\";i:299;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15687;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250325506-299x382.jpg\";s:5:\"width\";i:299;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21457;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:53:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-1080x1618.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1618;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:281713;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:51:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36827;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:53:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:844953;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:53:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-1280x1917.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1917;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:394477;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:52:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-980x1468.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1468;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:232496;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250358872-299x270.jpg\";s:5:\"width\";i:299;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14737;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1661962682\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";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:{}}s:14:\"original_image\";s:43:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp.jpg\";}'),(43729,50924,'_wp_attached_file','2022/09/Headshot-Melissa-Day-Tyler-Eckert-1_pp-scaled.jpg'),(43730,50924,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1709;s:6:\"height\";i:2560;s:4:\"file\";s:57:\"2022/09/Headshot-Melissa-Day-Tyler-Eckert-1_pp-scaled.jpg\";s:8:\"filesize\";i:702979;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Headshot-Melissa-Day-Tyler-Eckert-1_pp-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11463;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Headshot-Melissa-Day-Tyler-Eckert-1_pp-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95939;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Headshot-Melissa-Day-Tyler-Eckert-1_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5562;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Headshot-Melissa-Day-Tyler-Eckert-1_pp-768x1151.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120718;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"Headshot-Melissa-Day-Tyler-Eckert-1_pp-1025x1536.jpg\";s:5:\"width\";i:1025;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:228185;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:52:\"Headshot-Melissa-Day-Tyler-Eckert-1_pp-1367x2048.jpg\";s:5:\"width\";i:1367;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:430524;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:50:\"Headshot-Melissa-Day-Tyler-Eckert-1_pp-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11463;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:50:\"Headshot-Melissa-Day-Tyler-Eckert-1_pp-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16716;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:51:\"Headshot-Melissa-Day-Tyler-Eckert-1_pp-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110452;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:50:\"Headshot-Melissa-Day-Tyler-Eckert-1_pp-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18772;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:50:\"Headshot-Melissa-Day-Tyler-Eckert-1_pp-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29936;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:52:\"Headshot-Melissa-Day-Tyler-Eckert-1_pp-1080x1618.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1618;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:256396;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:50:\"Headshot-Melissa-Day-Tyler-Eckert-1_pp-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31942;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:52:\"Headshot-Melissa-Day-Tyler-Eckert-1_pp-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:822198;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:52:\"Headshot-Melissa-Day-Tyler-Eckert-1_pp-1280x1917.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1917;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:372007;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:51:\"Headshot-Melissa-Day-Tyler-Eckert-1_pp-980x1468.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1468;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206605;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:50:\"Headshot-Melissa-Day-Tyler-Eckert-1_pp-480x719.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:719;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49363;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1661962930\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";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:{}}s:14:\"original_image\";s:42:\"Headshot-Melissa-Day-Tyler-Eckert-1_pp.jpg\";}'),(43732,50925,'_wp_attached_file','2022/09/Sabina-Ogric-300x300-1.png'),(43733,50925,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:34:\"2022/09/Sabina-Ogric-300x300-1.png\";s:8:\"filesize\";i:216038;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Sabina-Ogric-300x300-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49281;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:34:\"Sabina-Ogric-300x300-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84023;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:34:\"Sabina-Ogric-300x300-1-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:172549;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:34:\"Sabina-Ogric-300x300-1-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:195991;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(43734,50926,'_wp_attached_file','2022/09/Tyler-J.-Eckert-300x300-1.png'),(43735,50926,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:37:\"2022/09/Tyler-J.-Eckert-300x300-1.png\";s:8:\"filesize\";i:196676;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Tyler-J.-Eckert-300x300-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48061;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:37:\"Tyler-J.-Eckert-300x300-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81381;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:37:\"Tyler-J.-Eckert-300x300-1-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:161545;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:37:\"Tyler-J.-Eckert-300x300-1-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:183121;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(43843,50969,'_et_pb_module_type','et_pb_text'),(43844,50969,'_et_pb_built_for_post_type','page'),(43845,50970,'_et_pb_module_type','et_pb_text'),(43846,50970,'_et_pb_built_for_post_type','page'),(43847,50971,'_et_pb_module_type','et_pb_divider'),(43848,50971,'_et_pb_built_for_post_type','page'),(43868,50923,'_wp_attachment_backup_sizes','a:34:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1709;s:6:\"height\";i:2560;s:4:\"file\";s:50:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:51:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5663;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:51:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12090;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:52:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-768x1151.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142926;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:52:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114078;}s:14:\"1536x1536-orig\";a:5:{s:4:\"file\";s:53:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-1025x1536.jpg\";s:5:\"width\";i:1025;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:253974;}s:14:\"2048x2048-orig\";a:5:{s:4:\"file\";s:53:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-1367x2048.jpg\";s:5:\"width\";i:1367;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:449589;}s:23:\"depicter-thumbnail-orig\";a:5:{s:4:\"file\";s:51:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12090;}s:26:\"et-pb-post-main-image-orig\";a:5:{s:4:\"file\";s:51:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18946;}s:36:\"et-pb-post-main-image-fullwidth-orig\";a:5:{s:4:\"file\";s:52:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127147;}s:26:\"et-pb-portfolio-image-orig\";a:5:{s:4:\"file\";s:51:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21436;}s:33:\"et-pb-portfolio-module-image-orig\";a:5:{s:4:\"file\";s:51:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35139;}s:33:\"et-pb-portfolio-image-single-orig\";a:5:{s:4:\"file\";s:53:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-1080x1618.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1618;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:281713;}s:40:\"et-pb-gallery-module-image-portrait-orig\";a:5:{s:4:\"file\";s:51:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36827;}s:42:\"et-pb-post-main-image-fullwidth-large-orig\";a:5:{s:4:\"file\";s:53:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:844953;}s:37:\"et-pb-image--responsive--desktop-orig\";a:5:{s:4:\"file\";s:53:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-1280x1917.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1917;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:394477;}s:36:\"et-pb-image--responsive--tablet-orig\";a:5:{s:4:\"file\";s:52:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-980x1468.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1468;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:232496;}s:35:\"et-pb-image--responsive--phone-orig\";a:5:{s:4:\"file\";s:51:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-480x719.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:719;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57930;}s:18:\"full-1663250325506\";a:3:{s:5:\"width\";i:300;s:6:\"height\";i:449;s:4:\"file\";s:65:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250263789.jpg\";}s:23:\"thumbnail-1663250325506\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250263789-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5669;}s:20:\"medium-1663250325506\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250263789-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11416;}s:32:\"depicter-thumbnail-1663250325506\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250263789-200x299.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:299;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11408;}s:35:\"et-pb-post-main-image-1663250325506\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250263789-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14948;}s:35:\"et-pb-portfolio-image-1663250325506\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250263789-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16680;}s:42:\"et-pb-portfolio-module-image-1663250325506\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250263789-300x382.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21312;}s:44:\"et-pb-image--responsive--phone-1663250325506\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250263789-300x270.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15891;}s:18:\"full-1663250358872\";a:3:{s:5:\"width\";i:299;s:6:\"height\";i:448;s:4:\"file\";s:65:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250325506.jpg\";}s:23:\"thumbnail-1663250358872\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250325506-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5476;}s:20:\"medium-1663250358872\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250325506-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11353;}s:32:\"depicter-thumbnail-1663250358872\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250325506-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11353;}s:35:\"et-pb-post-main-image-1663250358872\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250325506-299x250.jpg\";s:5:\"width\";i:299;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14903;}s:35:\"et-pb-portfolio-image-1663250358872\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250325506-299x284.jpg\";s:5:\"width\";i:299;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16791;}s:42:\"et-pb-portfolio-module-image-1663250358872\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250325506-299x382.jpg\";s:5:\"width\";i:299;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21457;}s:44:\"et-pb-image--responsive--phone-1663250358872\";a:5:{s:4:\"file\";s:73:\"Headshot-Melissa-Day-Sabina-Orgric-1_pp-scaled-e1663250325506-299x270.jpg\";s:5:\"width\";i:299;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15916;}}'),(43877,50977,'_wp_attached_file','2022/09/Sabina-Ogric-300x300_3.jpg'),(43878,50977,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:34:\"2022/09/Sabina-Ogric-300x300_3.jpg\";s:8:\"filesize\";i:121963;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Sabina-Ogric-300x300_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5585;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:34:\"Sabina-Ogric-300x300_3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8368;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:34:\"Sabina-Ogric-300x300_3-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15872;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:34:\"Sabina-Ogric-300x300_3-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17839;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1661962682\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";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:{}}}'),(43890,50980,'_wp_attached_file','2022/09/Tyler-J.-Eckert-300x300_3.jpg'),(43891,50980,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:37:\"2022/09/Tyler-J.-Eckert-300x300_3.jpg\";s:8:\"filesize\";i:116333;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Tyler-J.-Eckert-300x300_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5452;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:37:\"Tyler-J.-Eckert-300x300_3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7986;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:37:\"Tyler-J.-Eckert-300x300_3-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14755;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:37:\"Tyler-J.-Eckert-300x300_3-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16235;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1661962930\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";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:{}}}'),(43904,47214,'_wp_old_date','2022-09-12'),(43905,47307,'_wp_old_date','2022-09-12'),(43906,48418,'_wp_old_date','2022-09-12'),(43907,47305,'_wp_old_date','2022-09-12'),(43908,47213,'_wp_old_date','2022-09-12'),(43909,50698,'_wp_old_date','2022-09-12'),(43910,47312,'_wp_old_date','2022-09-12'),(43911,47311,'_wp_old_date','2022-09-12'),(43912,47313,'_wp_old_date','2022-09-12'),(43913,48861,'_wp_old_date','2022-09-12'),(43914,47308,'_wp_old_date','2022-09-12'),(43915,47516,'_wp_old_date','2022-09-12'),(43916,49220,'_wp_old_date','2022-09-12'),(43917,47215,'_wp_old_date','2022-09-12'),(43918,47518,'_wp_old_date','2022-09-12'),(43958,51005,'_et_pb_module_type','et_pb_image'),(43959,51005,'_et_pb_built_for_post_type','page'),(43967,51009,'_et_pb_row_layout','2_5,3_5'),(43968,51009,'_et_pb_built_for_post_type','page'),(44291,45925,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44296,45927,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44301,49949,'_et_builder_dynamic_assets_loading_attr_threshold','3'),(44305,51121,'_edit_lock','1663691293:1'),(44306,51121,'_et_pb_use_builder','on'),(44307,51121,'_edit_last','1'),(44309,51121,'_et_pb_built_for_post_type','page'),(44310,51121,'_et_pb_ab_subjects',''),(44311,51121,'_et_pb_enable_shortcode_tracking',''),(44312,51121,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"51121\" /]'),(44313,51121,'_et_pb_custom_css',''),(44314,51121,'_et_pb_gutter_width','1'),(44316,51121,'_global_colors_info','{}'),(44317,51121,'_et_pb_first_image',''),(44318,51121,'_et_pb_truncate_post',''),(44319,51121,'_et_pb_truncate_post_date',''),(44320,51121,'_et_builder_version','VB|Divi|4.18.0'),(44321,51121,'_wp_page_template','default'),(44322,51121,'_et_pb_post_hide_nav','default'),(44323,51121,'_et_pb_page_layout','et_right_sidebar'),(44324,51121,'_et_pb_side_nav','off'),(44325,51121,'_et_pb_old_content',''),(44328,51122,'_et_pb_built_for_post_type','page'),(44329,51122,'_edit_lock','1663342642:1'),(44331,51122,'_et_pb_use_builder','on'),(44332,51122,'_et_pb_ab_subjects',''),(44333,51122,'_et_pb_enable_shortcode_tracking',''),(44334,51122,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"51122\" /]'),(44335,51122,'_et_pb_custom_css',''),(44336,51122,'_et_pb_gutter_width','1'),(44338,51122,'_global_colors_info','{}'),(44339,51122,'_et_pb_first_image',''),(44340,51122,'_et_pb_truncate_post',''),(44341,51122,'_et_pb_truncate_post_date',''),(44342,51122,'_et_builder_version','VB|Divi|4.18.0'),(44343,51122,'_et_pb_show_page_creation','off'),(44344,51122,'_edit_last','1'),(44345,51122,'_et_pb_old_content',''),(44348,46191,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44353,49237,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44357,46244,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44362,46189,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44367,49704,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44372,46231,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44377,46229,'_et_builder_dynamic_assets_loading_attr_threshold','22'),(44382,45926,'_et_builder_dynamic_assets_loading_attr_threshold','3'),(44387,46193,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44392,46236,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44397,48410,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44402,50433,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44407,48689,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44412,48691,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44417,48685,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44422,48823,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44427,48020,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44432,48022,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44437,48023,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44442,46122,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44447,46132,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44452,46121,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44457,46101,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44462,46119,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44467,46171,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44472,46129,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44477,46179,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44500,51131,'_wp_attached_file','2022/09/male-placeholder300x300.png'),(44501,51131,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:35:\"2022/09/male-placeholder300x300.png\";s:8:\"filesize\";i:14071;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"male-placeholder300x300-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5307;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:35:\"male-placeholder300x300-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7971;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:35:\"male-placeholder300x300-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14116;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:35:\"male-placeholder300x300-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15933;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(44505,46234,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44510,51121,'_et_pb_show_page_creation','off'),(44653,51147,'DiviRocket_rev','190'),(44654,51147,'_et_pb_use_builder','on'),(44655,51147,'_et_pb_show_page_creation','off'),(44656,51147,'_et_pb_built_for_post_type','page'),(44657,51147,'_et_pb_page_layout','et_right_sidebar'),(44658,51147,'_et_pb_side_nav','off'),(44659,51147,'_et_builder_version','VB|Divi|4.18.0'),(44660,51147,'_et_pb_old_content',''),(44661,51147,'_et_pb_enable_shortcode_tracking',''),(44662,51147,'_et_pb_custom_css',''),(44663,51147,'_et_pb_first_image',''),(44664,51147,'_et_pb_truncate_post',''),(44665,51147,'_et_pb_gutter_width','1'),(44666,51147,'_et_pb_truncate_post_date',''),(44667,51148,'DiviRocket_rev','120'),(44668,51148,'_et_pb_use_builder','on'),(44669,51148,'_et_pb_show_page_creation','off'),(44670,51148,'_et_pb_built_for_post_type','page'),(44671,51148,'_et_pb_page_layout','et_right_sidebar'),(44672,51148,'_et_pb_side_nav','off'),(44673,51148,'_et_builder_version','VB|Divi|4.18.0'),(44674,51148,'_et_pb_old_content',''),(44675,51148,'_et_pb_enable_shortcode_tracking',''),(44676,51148,'_et_pb_custom_css',''),(44677,51148,'_et_pb_first_image',''),(44678,51148,'_et_pb_truncate_post',''),(44679,51149,'DiviRocket_rev','1'),(44680,51149,'_et_pb_use_builder','on'),(44681,51149,'_et_pb_show_page_creation','off'),(44682,51149,'_et_pb_built_for_post_type','page'),(44683,51149,'_et_pb_page_layout','et_right_sidebar'),(44684,51149,'_et_pb_side_nav','off'),(44685,51149,'_et_builder_version','VB|Divi|3.15'),(44686,51149,'_et_pb_old_content',''),(44687,51149,'_et_pb_enable_shortcode_tracking',''),(44688,51149,'_et_pb_custom_css',''),(44689,51149,'_et_pb_first_image',''),(44690,51149,'_et_pb_truncate_post',''),(44691,51151,'_et_autogenerated_title','0'),(44692,51151,'_et_default','1'),(44693,51151,'_et_enabled','1'),(44694,51151,'_et_header_layout_id','51147'),(44695,51151,'_et_header_layout_enabled','1'),(44696,51151,'_et_body_layout_id','0'),(44697,51151,'_et_body_layout_enabled','1'),(44698,51151,'_et_footer_layout_id','51148'),(44699,51151,'_et_footer_layout_enabled','1'),(44701,51149,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44702,50194,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44703,50149,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44704,48147,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44705,48126,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44706,47715,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44707,47697,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44708,47691,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44709,47667,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44710,47198,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44711,47184,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44712,47169,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44713,47166,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44714,47138,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44715,47123,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44716,46837,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44717,46838,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44718,46839,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44719,46840,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44720,46841,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44721,46842,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44722,46843,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44723,46844,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44724,46845,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44725,46836,'_et_theme_builder_marked_as_unused','2022-09-16 19:31:53'),(44731,51152,'_et_autogenerated_title','1'),(44732,51152,'_et_default','0'),(44733,51152,'_et_enabled','1'),(44734,51152,'_et_header_layout_id','51147'),(44735,51152,'_et_header_layout_enabled','1'),(44736,51152,'_et_body_layout_id','0'),(44737,51152,'_et_body_layout_enabled','1'),(44738,51152,'_et_footer_layout_id','51148'),(44739,51152,'_et_footer_layout_enabled','1'),(44748,51147,'_et_pb_ab_subjects',''),(44749,51147,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"51147\" /]'),(44750,51147,'_thumbnail_id','0'),(44751,51147,'_global_colors_info','{}'),(44752,51157,'_wp_attached_file','2022/09/LOMAD-Logo-190x120-1.jpg'),(44753,51157,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:190;s:6:\"height\";i:120;s:4:\"file\";s:32:\"2022/09/LOMAD-Logo-190x120-1.jpg\";s:8:\"filesize\";i:13167;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"LOMAD-Logo-190x120-1-150x120.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4274;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(44759,50437,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(44787,51148,'_et_pb_ab_subjects',''),(44788,51148,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"51148\" /]'),(44789,51148,'_et_pb_gutter_width','1'),(44790,51148,'_thumbnail_id','0'),(44791,51148,'_global_colors_info','{}'),(44792,51148,'_et_pb_truncate_post_date',''),(44793,51195,'_wp_attached_file','2022/09/holiday-photoChristmas2021.png'),(44794,51195,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:38:\"2022/09/holiday-photoChristmas2021.png\";s:8:\"filesize\";i:1124195;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"holiday-photoChristmas2021-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:116569;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"holiday-photoChristmas2021-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50480;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"holiday-photoChristmas2021-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:605389;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:38:\"holiday-photoChristmas2021-200x133.png\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55745;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:38:\"holiday-photoChristmas2021-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:187550;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:39:\"holiday-photoChristmas2021-1024x675.png\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:993243;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:38:\"holiday-photoChristmas2021-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:210425;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:38:\"holiday-photoChristmas2021-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:341115;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:38:\"holiday-photoChristmas2021-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:350756;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:38:\"holiday-photoChristmas2021-980x654.png\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:890695;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:38:\"holiday-photoChristmas2021-480x320.png\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:269603;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(44795,51196,'_wp_attached_file','2022/09/holiday-photoChristmas2021-1400x662-1.png'),(44796,51196,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:484;s:4:\"file\";s:49:\"2022/09/holiday-photoChristmas2021-1400x662-1.png\";s:8:\"filesize\";i:947749;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"holiday-photoChristmas2021-1400x662-1-300x142.png\";s:5:\"width\";i:300;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95643;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"holiday-photoChristmas2021-1400x662-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53085;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"holiday-photoChristmas2021-1400x662-1-768x363.png\";s:5:\"width\";i:768;s:6:\"height\";i:363;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:540369;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:48:\"holiday-photoChristmas2021-1400x662-1-200x95.png\";s:5:\"width\";i:200;s:6:\"height\";i:95;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44886;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:49:\"holiday-photoChristmas2021-1400x662-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:218677;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:49:\"holiday-photoChristmas2021-1400x662-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:244151;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:49:\"holiday-photoChristmas2021-1400x662-1-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:392863;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:49:\"holiday-photoChristmas2021-1400x662-1-400x484.png\";s:5:\"width\";i:400;s:6:\"height\";i:484;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:403232;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:49:\"holiday-photoChristmas2021-1400x662-1-980x463.png\";s:5:\"width\";i:980;s:6:\"height\";i:463;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:821746;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:49:\"holiday-photoChristmas2021-1400x662-1-480x227.png\";s:5:\"width\";i:480;s:6:\"height\";i:227;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:228867;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(44799,51204,'DiviRocket_rev','82'),(44800,51204,'_et_pb_use_builder','on'),(44801,51204,'_et_pb_show_page_creation','off'),(44803,51206,'_et_autogenerated_title','0'),(44804,51206,'_et_default','1'),(44805,51206,'_et_enabled','1'),(44806,51206,'_et_header_layout_id','51147'),(44807,51206,'_et_header_layout_enabled','1'),(44808,51206,'_et_body_layout_id','0'),(44809,51206,'_et_body_layout_enabled','1'),(44810,51206,'_et_footer_layout_id','51148'),(44811,51206,'_et_footer_layout_enabled','1'),(44812,51207,'_et_autogenerated_title','1'),(44813,51207,'_et_default','0'),(44814,51207,'_et_enabled','1'),(44815,51207,'_et_header_layout_id','51147'),(44816,51207,'_et_header_layout_enabled','1'),(44817,51207,'_et_body_layout_id','0'),(44818,51207,'_et_body_layout_enabled','1'),(44819,51207,'_et_footer_layout_id','51148'),(44820,51207,'_et_footer_layout_enabled','1'),(44821,51207,'_et_use_on','homepage'),(44822,51208,'_et_autogenerated_title','1'),(44823,51208,'_et_default','0'),(44824,51208,'_et_enabled','1'),(44825,51208,'_et_header_layout_id','51147'),(44826,51208,'_et_header_layout_enabled','1'),(44827,51208,'_et_body_layout_id','51204'),(44828,51208,'_et_body_layout_enabled','1'),(44829,51208,'_et_footer_layout_id','51148'),(44830,51208,'_et_footer_layout_enabled','1'),(44831,51208,'_et_use_on','singular:post_type:page:id:46191'),(44835,51204,'_et_pb_built_for_post_type','page'),(44836,51204,'_et_pb_ab_subjects',''),(44837,51204,'_et_pb_enable_shortcode_tracking',''),(44838,51204,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"51204\" /]'),(44839,51204,'_et_pb_custom_css',''),(44840,51204,'_et_pb_gutter_width','1'),(44841,51204,'_thumbnail_id','0'),(44842,51204,'_global_colors_info','{}'),(44843,51204,'_et_pb_first_image',''),(44844,51204,'_et_pb_truncate_post',''),(44845,51204,'_et_pb_truncate_post_date',''),(44846,51204,'_et_builder_version','VB|Divi|4.18.0'),(44858,51211,'_et_autogenerated_title','1'),(44859,51211,'_et_default','0'),(44860,51211,'_et_enabled','1'),(44861,51211,'_et_header_layout_id','51147'),(44862,51211,'_et_header_layout_enabled','1'),(44863,51211,'_et_body_layout_id','51204'),(44864,51211,'_et_body_layout_enabled','1'),(44865,51211,'_et_footer_layout_id','51148'),(44866,51211,'_et_footer_layout_enabled','1'),(44874,51206,'_et_theme_builder_marked_as_unused','2022-09-19 15:37:25'),(44875,51207,'_et_theme_builder_marked_as_unused','2022-09-19 15:37:25'),(44876,51208,'_et_theme_builder_marked_as_unused','2022-09-19 15:37:25'),(44893,51218,'_et_pb_module_type','et_pb_sidebar'),(44894,51218,'_et_pb_built_for_post_type','page'),(44895,51219,'_et_pb_module_type','lwp_divi_breadcrumbs'),(44896,51219,'_et_pb_built_for_post_type','page'),(44946,51236,'_wp_attached_file','2022/09/Melissa-and-James-backtoback-1000x667-1.jpg'),(44947,51236,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:51:\"2022/09/Melissa-and-James-backtoback-1000x667-1.jpg\";s:8:\"filesize\";i:102501;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Melissa-and-James-backtoback-1000x667-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17226;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Melissa-and-James-backtoback-1000x667-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7964;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Melissa-and-James-backtoback-1000x667-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74004;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:51:\"Melissa-and-James-backtoback-1000x667-1-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8993;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:51:\"Melissa-and-James-backtoback-1000x667-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26145;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:51:\"Melissa-and-James-backtoback-1000x667-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28533;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:51:\"Melissa-and-James-backtoback-1000x667-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42652;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:51:\"Melissa-and-James-backtoback-1000x667-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42061;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:51:\"Melissa-and-James-backtoback-1000x667-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106954;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:51:\"Melissa-and-James-backtoback-1000x667-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35946;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(44958,51247,'DiviRocket_rev','38'),(44959,51247,'_et_pb_use_builder','on'),(44960,51247,'_et_pb_show_page_creation','off'),(44963,51249,'_et_autogenerated_title','0'),(44964,51249,'_et_default','1'),(44965,51249,'_et_enabled','1'),(44966,51249,'_et_header_layout_id','51147'),(44967,51249,'_et_header_layout_enabled','1'),(44968,51249,'_et_body_layout_id','0'),(44969,51249,'_et_body_layout_enabled','1'),(44970,51249,'_et_footer_layout_id','51148'),(44971,51249,'_et_footer_layout_enabled','1'),(44972,51250,'_et_autogenerated_title','1'),(44973,51250,'_et_default','0'),(44974,51250,'_et_enabled','1'),(44975,51250,'_et_header_layout_id','51147'),(44976,51250,'_et_header_layout_enabled','1'),(44977,51250,'_et_body_layout_id','0'),(44978,51250,'_et_body_layout_enabled','1'),(44979,51250,'_et_footer_layout_id','51148'),(44980,51250,'_et_footer_layout_enabled','1'),(44981,51250,'_et_use_on','homepage'),(44982,51251,'_et_autogenerated_title','1'),(44983,51251,'_et_default','0'),(44984,51251,'_et_enabled','1'),(44985,51251,'_et_header_layout_id','51147'),(44986,51251,'_et_header_layout_enabled','1'),(44987,51251,'_et_body_layout_id','51204'),(44988,51251,'_et_body_layout_enabled','1'),(44989,51251,'_et_footer_layout_id','51148'),(44990,51251,'_et_footer_layout_enabled','1'),(44991,51251,'_et_use_on','singular:post_type:page:id:46191'),(44992,51251,'_et_use_on','singular:post_type:page:id:46189'),(44993,51251,'_et_use_on','singular:post_type:page:id:48410'),(44994,51251,'_et_use_on','singular:post_type:page:children:id:48410'),(44995,51251,'_et_use_on','singular:post_type:page:children:id:46191'),(44996,51252,'_et_autogenerated_title','1'),(44997,51252,'_et_default','0'),(44998,51252,'_et_enabled','1'),(44999,51252,'_et_header_layout_id','51147'),(45000,51252,'_et_header_layout_enabled','1'),(45001,51252,'_et_body_layout_id','51247'),(45002,51252,'_et_body_layout_enabled','1'),(45003,51252,'_et_footer_layout_id','51148'),(45004,51252,'_et_footer_layout_enabled','1'),(45005,51252,'_et_use_on','singular:post_type:page:id:45926'),(45020,51253,'_et_autogenerated_title','0'),(45021,51253,'_et_default','0'),(45022,51253,'_et_enabled','1'),(45023,51253,'_et_header_layout_id','51147'),(45024,51253,'_et_header_layout_enabled','1'),(45025,51253,'_et_body_layout_id','51247'),(45026,51253,'_et_body_layout_enabled','1'),(45027,51253,'_et_footer_layout_id','51148'),(45028,51253,'_et_footer_layout_enabled','1'),(45037,51249,'_et_theme_builder_marked_as_unused','2022-09-19 16:29:26'),(45038,51250,'_et_theme_builder_marked_as_unused','2022-09-19 16:29:26'),(45039,51251,'_et_theme_builder_marked_as_unused','2022-09-19 16:29:26'),(45040,51252,'_et_theme_builder_marked_as_unused','2022-09-19 16:29:26'),(45042,51247,'_et_pb_built_for_post_type','page'),(45043,51247,'_et_pb_ab_subjects',''),(45044,51247,'_et_pb_enable_shortcode_tracking',''),(45045,51247,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"51247\" /]'),(45046,51247,'_et_pb_custom_css',''),(45047,51247,'_et_pb_gutter_width','1'),(45048,51247,'_thumbnail_id','0'),(45049,51247,'_global_colors_info','{}'),(45050,51247,'_et_pb_first_image',''),(45051,51247,'_et_pb_truncate_post',''),(45052,51247,'_et_pb_truncate_post_date',''),(45053,51247,'_et_builder_version','VB|Divi|4.18.0'),(45080,51261,'DiviRocket_rev','15'),(45081,51261,'_et_pb_use_builder','on'),(45082,51261,'_et_pb_show_page_creation','off'),(45084,51264,'_et_autogenerated_title','0'),(45085,51264,'_et_default','1'),(45086,51264,'_et_enabled','1'),(45087,51264,'_et_header_layout_id','51147'),(45088,51264,'_et_header_layout_enabled','1'),(45089,51264,'_et_body_layout_id','0'),(45090,51264,'_et_body_layout_enabled','1'),(45091,51264,'_et_footer_layout_id','51148'),(45092,51264,'_et_footer_layout_enabled','1'),(45093,51265,'_et_autogenerated_title','1'),(45094,51265,'_et_default','0'),(45095,51265,'_et_enabled','1'),(45096,51265,'_et_header_layout_id','51147'),(45097,51265,'_et_header_layout_enabled','1'),(45098,51265,'_et_body_layout_id','0'),(45099,51265,'_et_body_layout_enabled','1'),(45100,51265,'_et_footer_layout_id','51148'),(45101,51265,'_et_footer_layout_enabled','1'),(45102,51265,'_et_use_on','homepage'),(45103,51266,'_et_autogenerated_title','1'),(45104,51266,'_et_default','0'),(45105,51266,'_et_enabled','1'),(45106,51266,'_et_header_layout_id','51147'),(45107,51266,'_et_header_layout_enabled','1'),(45108,51266,'_et_body_layout_id','51204'),(45109,51266,'_et_body_layout_enabled','1'),(45110,51266,'_et_footer_layout_id','51148'),(45111,51266,'_et_footer_layout_enabled','1'),(45112,51266,'_et_use_on','singular:post_type:page:id:46191'),(45113,51266,'_et_use_on','singular:post_type:page:id:46189'),(45114,51266,'_et_use_on','singular:post_type:page:id:48410'),(45115,51266,'_et_use_on','singular:post_type:page:children:id:48410'),(45116,51266,'_et_use_on','singular:post_type:page:children:id:46191'),(45117,51267,'_et_autogenerated_title','1'),(45118,51267,'_et_default','0'),(45119,51267,'_et_enabled','1'),(45120,51267,'_et_header_layout_id','51147'),(45121,51267,'_et_header_layout_enabled','1'),(45122,51267,'_et_body_layout_id','51247'),(45123,51267,'_et_body_layout_enabled','1'),(45124,51267,'_et_footer_layout_id','51148'),(45125,51267,'_et_footer_layout_enabled','1'),(45126,51267,'_et_use_on','singular:post_type:page:id:45926'),(45127,51268,'_et_autogenerated_title','1'),(45128,51268,'_et_default','0'),(45129,51268,'_et_enabled','1'),(45130,51268,'_et_header_layout_id','51147'),(45131,51268,'_et_header_layout_enabled','1'),(45132,51268,'_et_body_layout_id','51261'),(45133,51268,'_et_body_layout_enabled','1'),(45134,51268,'_et_footer_layout_id','51148'),(45135,51268,'_et_footer_layout_enabled','1'),(45136,51268,'_et_use_on','singular:post_type:page:id:46193'),(45142,51261,'_et_pb_built_for_post_type','page'),(45143,51261,'_et_pb_ab_subjects',''),(45144,51261,'_et_pb_enable_shortcode_tracking',''),(45145,51261,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"51261\" /]'),(45146,51261,'_et_pb_custom_css',''),(45147,51261,'_et_pb_gutter_width','1'),(45148,51261,'_thumbnail_id','0'),(45149,51261,'_global_colors_info','{}'),(45150,51261,'_et_pb_first_image',''),(45151,51261,'_et_pb_truncate_post',''),(45152,51261,'_et_pb_truncate_post_date',''),(45153,51261,'_et_builder_version','VB|Divi|4.18.0'),(45159,51270,'_et_pb_module_type','et_pb_image'),(45160,51270,'_et_pb_built_for_post_type','page'),(45169,51271,'_et_autogenerated_title','0'),(45170,51271,'_et_default','0'),(45171,51271,'_et_enabled','1'),(45172,51271,'_et_header_layout_id','51147'),(45173,51271,'_et_header_layout_enabled','1'),(45174,51271,'_et_body_layout_id','51261'),(45175,51271,'_et_body_layout_enabled','1'),(45176,51271,'_et_footer_layout_id','51148'),(45177,51271,'_et_footer_layout_enabled','1'),(45187,51264,'_et_theme_builder_marked_as_unused','2022-09-19 17:14:45'),(45188,51265,'_et_theme_builder_marked_as_unused','2022-09-19 17:14:45'),(45189,51266,'_et_theme_builder_marked_as_unused','2022-09-19 17:14:45'),(45190,51267,'_et_theme_builder_marked_as_unused','2022-09-19 17:14:45'),(45191,51268,'_et_theme_builder_marked_as_unused','2022-09-19 17:14:45'),(45197,51273,'_et_autogenerated_title','0'),(45198,51273,'_et_default','1'),(45199,51273,'_et_enabled','1'),(45200,51273,'_et_header_layout_id','51147'),(45201,51273,'_et_header_layout_enabled','1'),(45202,51273,'_et_body_layout_id','0'),(45203,51273,'_et_body_layout_enabled','1'),(45204,51273,'_et_footer_layout_id','51148'),(45205,51273,'_et_footer_layout_enabled','1'),(45206,51274,'_et_autogenerated_title','1'),(45207,51274,'_et_default','0'),(45208,51274,'_et_enabled','1'),(45209,51274,'_et_header_layout_id','51147'),(45210,51274,'_et_header_layout_enabled','1'),(45211,51274,'_et_body_layout_id','0'),(45212,51274,'_et_body_layout_enabled','1'),(45213,51274,'_et_footer_layout_id','51148'),(45214,51274,'_et_footer_layout_enabled','1'),(45215,51274,'_et_use_on','homepage'),(45216,51275,'_et_autogenerated_title','1'),(45217,51275,'_et_default','0'),(45218,51275,'_et_enabled','1'),(45219,51275,'_et_header_layout_id','51147'),(45220,51275,'_et_header_layout_enabled','1'),(45221,51275,'_et_body_layout_id','51204'),(45222,51275,'_et_body_layout_enabled','1'),(45223,51275,'_et_footer_layout_id','51148'),(45224,51275,'_et_footer_layout_enabled','1'),(45225,51275,'_et_use_on','singular:post_type:page:id:46191'),(45226,51275,'_et_use_on','singular:post_type:page:id:46189'),(45227,51275,'_et_use_on','singular:post_type:page:id:48410'),(45228,51275,'_et_use_on','singular:post_type:page:children:id:48410'),(45229,51275,'_et_use_on','singular:post_type:page:children:id:46191'),(45230,51276,'_et_autogenerated_title','0'),(45231,51276,'_et_default','0'),(45232,51276,'_et_enabled','1'),(45233,51276,'_et_header_layout_id','51147'),(45234,51276,'_et_header_layout_enabled','1'),(45235,51276,'_et_body_layout_id','51247'),(45236,51276,'_et_body_layout_enabled','1'),(45237,51276,'_et_footer_layout_id','51148'),(45238,51276,'_et_footer_layout_enabled','1'),(45239,51276,'_et_use_on','singular:post_type:page:id:45926'),(45240,51277,'_et_autogenerated_title','0'),(45241,51277,'_et_default','0'),(45242,51277,'_et_enabled','1'),(45243,51277,'_et_header_layout_id','51147'),(45244,51277,'_et_header_layout_enabled','1'),(45245,51277,'_et_body_layout_id','51261'),(45246,51277,'_et_body_layout_enabled','1'),(45247,51277,'_et_footer_layout_id','51148'),(45248,51277,'_et_footer_layout_enabled','1'),(45249,51277,'_et_use_on','singular:post_type:page:id:46193'),(45255,51278,'DiviRocket_rev','24'),(45256,51278,'_et_pb_use_builder','on'),(45257,51278,'_et_pb_show_page_creation','off'),(45258,51278,'_et_pb_built_for_post_type','page'),(45259,51278,'_et_pb_enable_shortcode_tracking',''),(45260,51278,'_et_pb_custom_css',''),(45261,51278,'_et_pb_gutter_width','1'),(45262,51278,'_et_pb_first_image',''),(45263,51278,'_et_pb_truncate_post',''),(45264,51278,'_et_pb_truncate_post_date',''),(45265,51278,'_et_builder_version','VB|Divi|4.18.0'),(45271,51278,'_et_pb_ab_subjects',''),(45272,51278,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"51278\" /]'),(45273,51278,'_thumbnail_id','0'),(45274,51278,'_global_colors_info','{}'),(45283,51280,'_et_autogenerated_title','0'),(45284,51280,'_et_default','0'),(45285,51280,'_et_enabled','1'),(45286,51280,'_et_header_layout_id','51147'),(45287,51280,'_et_header_layout_enabled','1'),(45288,51280,'_et_body_layout_id','51278'),(45289,51280,'_et_body_layout_enabled','1'),(45290,51280,'_et_footer_layout_id','51148'),(45291,51280,'_et_footer_layout_enabled','1'),(45302,51277,'_et_theme_builder_marked_as_unused','2022-09-19 17:17:25'),(45303,51273,'_et_theme_builder_marked_as_unused','2022-09-19 17:17:25'),(45304,51274,'_et_theme_builder_marked_as_unused','2022-09-19 17:17:25'),(45305,51275,'_et_theme_builder_marked_as_unused','2022-09-19 17:17:25'),(45306,51276,'_et_theme_builder_marked_as_unused','2022-09-19 17:17:25'),(45308,49089,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(45313,51284,'_et_autogenerated_title','0'),(45314,51284,'_et_default','1'),(45315,51284,'_et_enabled','1'),(45316,51284,'_et_header_layout_id','51147'),(45317,51284,'_et_header_layout_enabled','1'),(45318,51284,'_et_body_layout_id','0'),(45319,51284,'_et_body_layout_enabled','1'),(45320,51284,'_et_footer_layout_id','51148'),(45321,51284,'_et_footer_layout_enabled','1'),(45322,51285,'_et_autogenerated_title','1'),(45323,51285,'_et_default','0'),(45324,51285,'_et_enabled','1'),(45325,51285,'_et_header_layout_id','51147'),(45326,51285,'_et_header_layout_enabled','1'),(45327,51285,'_et_body_layout_id','0'),(45328,51285,'_et_body_layout_enabled','1'),(45329,51285,'_et_footer_layout_id','51148'),(45330,51285,'_et_footer_layout_enabled','1'),(45331,51285,'_et_use_on','homepage'),(45332,51286,'_et_autogenerated_title','1'),(45333,51286,'_et_default','0'),(45334,51286,'_et_enabled','1'),(45335,51286,'_et_header_layout_id','51147'),(45336,51286,'_et_header_layout_enabled','1'),(45337,51286,'_et_body_layout_id','51204'),(45338,51286,'_et_body_layout_enabled','1'),(45339,51286,'_et_footer_layout_id','51148'),(45340,51286,'_et_footer_layout_enabled','1'),(45341,51286,'_et_use_on','singular:post_type:page:id:46191'),(45342,51286,'_et_use_on','singular:post_type:page:id:46189'),(45343,51286,'_et_use_on','singular:post_type:page:id:48410'),(45344,51286,'_et_use_on','singular:post_type:page:children:id:48410'),(45345,51286,'_et_use_on','singular:post_type:page:children:id:46191'),(45346,51287,'_et_autogenerated_title','0'),(45347,51287,'_et_default','0'),(45348,51287,'_et_enabled','1'),(45349,51287,'_et_header_layout_id','51147'),(45350,51287,'_et_header_layout_enabled','1'),(45351,51287,'_et_body_layout_id','51247'),(45352,51287,'_et_body_layout_enabled','1'),(45353,51287,'_et_footer_layout_id','51148'),(45354,51287,'_et_footer_layout_enabled','1'),(45355,51287,'_et_use_on','singular:post_type:page:id:45926'),(45356,51288,'_et_autogenerated_title','0'),(45357,51288,'_et_default','0'),(45358,51288,'_et_enabled','1'),(45359,51288,'_et_header_layout_id','51147'),(45360,51288,'_et_header_layout_enabled','1'),(45361,51288,'_et_body_layout_id','51261'),(45362,51288,'_et_body_layout_enabled','1'),(45363,51288,'_et_footer_layout_id','51148'),(45364,51288,'_et_footer_layout_enabled','1'),(45365,51288,'_et_use_on','singular:post_type:page:id:46193'),(45366,51289,'_et_autogenerated_title','0'),(45367,51289,'_et_default','0'),(45368,51289,'_et_enabled','1'),(45369,51289,'_et_header_layout_id','51147'),(45370,51289,'_et_header_layout_enabled','1'),(45371,51289,'_et_body_layout_id','51278'),(45372,51289,'_et_body_layout_enabled','1'),(45373,51289,'_et_footer_layout_id','51148'),(45374,51289,'_et_footer_layout_enabled','1'),(45375,51289,'_et_use_on','singular:post_type:post:all'),(45383,49089,'_oembed_80c0287715af65956dd122cdcd21ad36','{{unknown}}'),(45431,51284,'_et_theme_builder_marked_as_unused','2022-09-19 17:35:06'),(45432,51285,'_et_theme_builder_marked_as_unused','2022-09-19 17:35:06'),(45433,51286,'_et_theme_builder_marked_as_unused','2022-09-19 17:35:06'),(45434,51287,'_et_theme_builder_marked_as_unused','2022-09-19 17:35:06'),(45435,51288,'_et_theme_builder_marked_as_unused','2022-09-19 17:35:06'),(45436,51289,'_et_theme_builder_marked_as_unused','2022-09-19 17:35:06'),(45447,46231,'_et_pb_built_for_post_type','page'),(45448,46231,'_et_pb_ab_subjects',''),(45449,46231,'_et_pb_enable_shortcode_tracking',''),(45450,46231,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46231\" /]'),(45451,46231,'_et_pb_custom_css',''),(45452,46231,'_et_pb_gutter_width','1'),(45454,46231,'_global_colors_info','{}'),(45455,46231,'_et_builder_version','VB|Divi|4.18.0'),(45456,46231,'_et_pb_show_page_creation','off'),(45462,46233,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(45483,49203,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(45534,51307,'_wp_attached_file','2022/09/Bing-Huang300x300.jpg'),(45535,51307,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:29:\"2022/09/Bing-Huang300x300.jpg\";s:8:\"filesize\";i:30648;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Bing-Huang300x300-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4949;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:29:\"Bing-Huang300x300-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7143;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:29:\"Bing-Huang300x300-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12193;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:29:\"Bing-Huang300x300-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13465;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(45536,51308,'_wp_attached_file','2022/09/female-placeholder300x300.png'),(45537,51308,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:37:\"2022/09/female-placeholder300x300.png\";s:8:\"filesize\";i:14458;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"female-placeholder300x300-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5976;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:37:\"female-placeholder300x300-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8946;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:37:\"female-placeholder300x300-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14914;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:37:\"female-placeholder300x300-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16465;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(45540,51310,'_wp_attached_file','2022/09/Maria-Lua300X300.jpg'),(45541,51310,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:28:\"2022/09/Maria-Lua300X300.jpg\";s:8:\"filesize\";i:21468;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Maria-Lua300X300-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5825;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:28:\"Maria-Lua300X300-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8616;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:28:\"Maria-Lua300X300-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14520;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:28:\"Maria-Lua300X300-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16864;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(45542,51311,'_wp_attached_file','2022/09/Suki-Harada-300x300-1.jpg'),(45543,51311,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:33:\"2022/09/Suki-Harada-300x300-1.jpg\";s:8:\"filesize\";i:35074;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Suki-Harada-300x300-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5371;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:33:\"Suki-Harada-300x300-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7914;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:33:\"Suki-Harada-300x300-1-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14420;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:33:\"Suki-Harada-300x300-1-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16015;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(45553,51313,'_wp_attached_file','2022/09/Alexandra-Rizk-300x300-1.jpg'),(45554,51313,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:36:\"2022/09/Alexandra-Rizk-300x300-1.jpg\";s:8:\"filesize\";i:37944;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Alexandra-Rizk-300x300-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6011;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:36:\"Alexandra-Rizk-300x300-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8974;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:36:\"Alexandra-Rizk-300x300-1-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15043;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:36:\"Alexandra-Rizk-300x300-1-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17351;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(45555,51314,'_wp_attached_file','2022/09/Kierria_Jones-300x300-1.jpg'),(45556,51314,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:35:\"2022/09/Kierria_Jones-300x300-1.jpg\";s:8:\"filesize\";i:31901;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Kierria_Jones-300x300-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4883;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:35:\"Kierria_Jones-300x300-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7132;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:35:\"Kierria_Jones-300x300-1-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12033;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:35:\"Kierria_Jones-300x300-1-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13502;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(45557,51315,'_wp_attached_file','2022/09/Maxwell-Doldan-300x300-1.jpg'),(45558,51315,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:36:\"2022/09/Maxwell-Doldan-300x300-1.jpg\";s:8:\"filesize\";i:44115;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Maxwell-Doldan-300x300-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6177;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:36:\"Maxwell-Doldan-300x300-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9202;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:36:\"Maxwell-Doldan-300x300-1-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16400;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:36:\"Maxwell-Doldan-300x300-1-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18747;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(45582,51320,'DiviRocket_rev','5'),(45583,51320,'_et_pb_use_builder','on'),(45584,51320,'_et_pb_show_page_creation','off'),(45585,51320,'_et_pb_built_for_post_type','page'),(45586,51320,'_et_pb_enable_shortcode_tracking',''),(45587,51320,'_et_pb_custom_css',''),(45588,51320,'_et_pb_gutter_width','1'),(45589,51320,'_et_pb_first_image',''),(45590,51320,'_et_pb_truncate_post',''),(45591,51320,'_et_pb_truncate_post_date',''),(45592,51320,'_et_builder_version','VB|Divi|4.18.0'),(45593,51322,'_et_autogenerated_title','0'),(45594,51322,'_et_default','1'),(45595,51322,'_et_enabled','1'),(45596,51322,'_et_header_layout_id','51147'),(45597,51322,'_et_header_layout_enabled','1'),(45598,51322,'_et_body_layout_id','0'),(45599,51322,'_et_body_layout_enabled','1'),(45600,51322,'_et_footer_layout_id','51148'),(45601,51322,'_et_footer_layout_enabled','1'),(45602,51323,'_et_autogenerated_title','1'),(45603,51323,'_et_default','0'),(45604,51323,'_et_enabled','1'),(45605,51323,'_et_header_layout_id','51147'),(45606,51323,'_et_header_layout_enabled','1'),(45607,51323,'_et_body_layout_id','0'),(45608,51323,'_et_body_layout_enabled','1'),(45609,51323,'_et_footer_layout_id','51148'),(45610,51323,'_et_footer_layout_enabled','1'),(45611,51323,'_et_use_on','homepage'),(45612,51324,'_et_autogenerated_title','1'),(45613,51324,'_et_default','0'),(45614,51324,'_et_enabled','1'),(45615,51324,'_et_header_layout_id','51147'),(45616,51324,'_et_header_layout_enabled','1'),(45617,51324,'_et_body_layout_id','51204'),(45618,51324,'_et_body_layout_enabled','1'),(45619,51324,'_et_footer_layout_id','51148'),(45620,51324,'_et_footer_layout_enabled','1'),(45621,51324,'_et_use_on','singular:post_type:page:id:46191'),(45622,51324,'_et_use_on','singular:post_type:page:id:46189'),(45623,51324,'_et_use_on','singular:post_type:page:id:48410'),(45624,51324,'_et_use_on','singular:post_type:page:children:id:48410'),(45625,51324,'_et_use_on','singular:post_type:page:children:id:46191'),(45626,51325,'_et_autogenerated_title','0'),(45627,51325,'_et_default','0'),(45628,51325,'_et_enabled','1'),(45629,51325,'_et_header_layout_id','51147'),(45630,51325,'_et_header_layout_enabled','1'),(45631,51325,'_et_body_layout_id','51247'),(45632,51325,'_et_body_layout_enabled','1'),(45633,51325,'_et_footer_layout_id','51148'),(45634,51325,'_et_footer_layout_enabled','1'),(45635,51325,'_et_use_on','singular:post_type:page:id:45926'),(45636,51326,'_et_autogenerated_title','0'),(45637,51326,'_et_default','0'),(45638,51326,'_et_enabled','1'),(45639,51326,'_et_header_layout_id','51147'),(45640,51326,'_et_header_layout_enabled','1'),(45641,51326,'_et_body_layout_id','51261'),(45642,51326,'_et_body_layout_enabled','1'),(45643,51326,'_et_footer_layout_id','51148'),(45644,51326,'_et_footer_layout_enabled','1'),(45645,51326,'_et_use_on','singular:post_type:page:id:46193'),(45646,51326,'_et_use_on','singular:post_type:page:id:49704'),(45647,51326,'_et_use_on','singular:post_type:page:children:id:49704'),(45648,51326,'_et_use_on','singular:post_type:page:id:49203'),(45649,51327,'_et_autogenerated_title','0'),(45650,51327,'_et_default','0'),(45651,51327,'_et_enabled','1'),(45652,51327,'_et_header_layout_id','51147'),(45653,51327,'_et_header_layout_enabled','1'),(45654,51327,'_et_body_layout_id','51278'),(45655,51327,'_et_body_layout_enabled','1'),(45656,51327,'_et_footer_layout_id','51148'),(45657,51327,'_et_footer_layout_enabled','1'),(45658,51327,'_et_use_on','singular:post_type:post:all'),(45659,51328,'_et_autogenerated_title','0'),(45660,51328,'_et_default','0'),(45661,51328,'_et_enabled','1'),(45662,51328,'_et_header_layout_id','51147'),(45663,51328,'_et_header_layout_enabled','1'),(45664,51328,'_et_body_layout_id','51320'),(45665,51328,'_et_body_layout_enabled','1'),(45666,51328,'_et_footer_layout_id','51148'),(45667,51328,'_et_footer_layout_enabled','1'),(45668,51328,'_et_use_on','singular:post_type:page:id:49949'),(45669,51328,'_et_use_on','singular:post_type:page:id:46244'),(45689,51329,'_et_autogenerated_title','0'),(45690,51329,'_et_default','0'),(45691,51329,'_et_enabled','1'),(45692,51329,'_et_header_layout_id','51147'),(45693,51329,'_et_header_layout_enabled','1'),(45694,51329,'_et_body_layout_id','51320'),(45695,51329,'_et_body_layout_enabled','1'),(45696,51329,'_et_footer_layout_id','51148'),(45697,51329,'_et_footer_layout_enabled','1'),(45710,51325,'_et_theme_builder_marked_as_unused','2022-09-19 18:03:49'),(45711,51326,'_et_theme_builder_marked_as_unused','2022-09-19 18:03:49'),(45712,51327,'_et_theme_builder_marked_as_unused','2022-09-19 18:03:49'),(45713,51328,'_et_theme_builder_marked_as_unused','2022-09-19 18:03:49'),(45714,51322,'_et_theme_builder_marked_as_unused','2022-09-19 18:03:49'),(45715,51323,'_et_theme_builder_marked_as_unused','2022-09-19 18:03:49'),(45716,51324,'_et_theme_builder_marked_as_unused','2022-09-19 18:03:49'),(45741,51335,'DiviRocket_rev','8'),(45742,51335,'_et_pb_use_builder','on'),(45743,51335,'_et_pb_show_page_creation','off'),(45744,51335,'_et_pb_built_for_post_type','page'),(45745,51335,'_et_pb_enable_shortcode_tracking',''),(45746,51335,'_et_pb_custom_css',''),(45747,51335,'_et_pb_gutter_width','1'),(45748,51335,'_et_pb_first_image',''),(45749,51335,'_et_pb_truncate_post',''),(45750,51335,'_et_pb_truncate_post_date',''),(45751,51335,'_et_builder_version','VB|Divi|4.18.0'),(45753,51338,'_et_autogenerated_title','0'),(45754,51338,'_et_default','1'),(45755,51338,'_et_enabled','1'),(45756,51338,'_et_header_layout_id','51147'),(45757,51338,'_et_header_layout_enabled','1'),(45758,51338,'_et_body_layout_id','0'),(45759,51338,'_et_body_layout_enabled','1'),(45760,51338,'_et_footer_layout_id','51148'),(45761,51338,'_et_footer_layout_enabled','1'),(45762,51339,'_et_autogenerated_title','1'),(45763,51339,'_et_default','0'),(45764,51339,'_et_enabled','1'),(45765,51339,'_et_header_layout_id','51147'),(45766,51339,'_et_header_layout_enabled','1'),(45767,51339,'_et_body_layout_id','0'),(45768,51339,'_et_body_layout_enabled','1'),(45769,51339,'_et_footer_layout_id','51148'),(45770,51339,'_et_footer_layout_enabled','1'),(45771,51339,'_et_use_on','homepage'),(45772,51340,'_et_autogenerated_title','1'),(45773,51340,'_et_default','0'),(45774,51340,'_et_enabled','1'),(45775,51340,'_et_header_layout_id','51147'),(45776,51340,'_et_header_layout_enabled','1'),(45777,51340,'_et_body_layout_id','51204'),(45778,51340,'_et_body_layout_enabled','1'),(45779,51340,'_et_footer_layout_id','51148'),(45780,51340,'_et_footer_layout_enabled','1'),(45781,51340,'_et_use_on','singular:post_type:page:id:46191'),(45782,51340,'_et_use_on','singular:post_type:page:id:46189'),(45783,51340,'_et_use_on','singular:post_type:page:id:48410'),(45784,51340,'_et_use_on','singular:post_type:page:children:id:48410'),(45785,51340,'_et_use_on','singular:post_type:page:children:id:46191'),(45786,51341,'_et_autogenerated_title','0'),(45787,51341,'_et_default','0'),(45788,51341,'_et_enabled','1'),(45789,51341,'_et_header_layout_id','51147'),(45790,51341,'_et_header_layout_enabled','1'),(45791,51341,'_et_body_layout_id','51247'),(45792,51341,'_et_body_layout_enabled','1'),(45793,51341,'_et_footer_layout_id','51148'),(45794,51341,'_et_footer_layout_enabled','1'),(45795,51341,'_et_use_on','singular:post_type:page:id:45926'),(45796,51342,'_et_autogenerated_title','0'),(45797,51342,'_et_default','0'),(45798,51342,'_et_enabled','1'),(45799,51342,'_et_header_layout_id','51147'),(45800,51342,'_et_header_layout_enabled','1'),(45801,51342,'_et_body_layout_id','51261'),(45802,51342,'_et_body_layout_enabled','1'),(45803,51342,'_et_footer_layout_id','51148'),(45804,51342,'_et_footer_layout_enabled','1'),(45805,51342,'_et_use_on','singular:post_type:page:id:46193'),(45806,51342,'_et_use_on','singular:post_type:page:id:49704'),(45807,51342,'_et_use_on','singular:post_type:page:children:id:49704'),(45808,51342,'_et_use_on','singular:post_type:page:id:49203'),(45809,51343,'_et_autogenerated_title','0'),(45810,51343,'_et_default','0'),(45811,51343,'_et_enabled','1'),(45812,51343,'_et_header_layout_id','51147'),(45813,51343,'_et_header_layout_enabled','1'),(45814,51343,'_et_body_layout_id','51278'),(45815,51343,'_et_body_layout_enabled','1'),(45816,51343,'_et_footer_layout_id','51148'),(45817,51343,'_et_footer_layout_enabled','1'),(45818,51343,'_et_use_on','singular:post_type:post:all'),(45819,51344,'_et_autogenerated_title','0'),(45820,51344,'_et_default','0'),(45821,51344,'_et_enabled','1'),(45822,51344,'_et_header_layout_id','51147'),(45823,51344,'_et_header_layout_enabled','1'),(45824,51344,'_et_body_layout_id','51320'),(45825,51344,'_et_body_layout_enabled','1'),(45826,51344,'_et_footer_layout_id','51148'),(45827,51344,'_et_footer_layout_enabled','1'),(45828,51344,'_et_use_on','singular:post_type:page:id:46244'),(45829,51345,'_et_autogenerated_title','0'),(45830,51345,'_et_default','0'),(45831,51345,'_et_enabled','1'),(45832,51345,'_et_header_layout_id','51147'),(45833,51345,'_et_header_layout_enabled','1'),(45834,51345,'_et_body_layout_id','51335'),(45835,51345,'_et_body_layout_enabled','1'),(45836,51345,'_et_footer_layout_id','51148'),(45837,51345,'_et_footer_layout_enabled','1'),(45838,51345,'_et_use_on','singular:post_type:page:id:49949'),(45847,51335,'_et_pb_ab_subjects',''),(45848,51335,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"51335\" /]'),(45849,51335,'_thumbnail_id','0'),(45850,51335,'_global_colors_info','{}'),(45864,51346,'_et_autogenerated_title','0'),(45865,51346,'_et_default','0'),(45866,51346,'_et_enabled','1'),(45867,51346,'_et_header_layout_id','51147'),(45868,51346,'_et_header_layout_enabled','1'),(45869,51346,'_et_body_layout_id','51335'),(45870,51346,'_et_body_layout_enabled','1'),(45871,51346,'_et_footer_layout_id','51148'),(45872,51346,'_et_footer_layout_enabled','1'),(45885,51341,'_et_theme_builder_marked_as_unused','2022-09-19 18:10:12'),(45886,51342,'_et_theme_builder_marked_as_unused','2022-09-19 18:10:12'),(45887,51343,'_et_theme_builder_marked_as_unused','2022-09-19 18:10:12'),(45888,51344,'_et_theme_builder_marked_as_unused','2022-09-19 18:10:12'),(45889,51345,'_et_theme_builder_marked_as_unused','2022-09-19 18:10:12'),(45890,51338,'_et_theme_builder_marked_as_unused','2022-09-19 18:10:12'),(45891,51339,'_et_theme_builder_marked_as_unused','2022-09-19 18:10:12'),(45892,51340,'_et_theme_builder_marked_as_unused','2022-09-19 18:10:12'),(45911,50069,'_et_builder_dynamic_assets_loading_attr_threshold','3'),(45978,50324,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(45985,51366,'_wp_attached_file','2022/09/2022-Largest-Buffalo-law-firms.jpg'),(45986,51366,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:276;s:4:\"file\";s:42:\"2022/09/2022-Largest-Buffalo-law-firms.jpg\";s:8:\"filesize\";i:73870;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"2022-Largest-Buffalo-law-firms-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7624;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:42:\"2022-Largest-Buffalo-law-firms-200x250.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14933;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(46158,51396,'DiviRocket_rev','1'),(46159,51396,'_et_pb_use_builder','on'),(46160,51396,'_et_pb_show_page_creation','on'),(46162,51397,'_et_pb_built_for_post_type','page'),(46163,51399,'_et_autogenerated_title','0'),(46164,51399,'_et_default','1'),(46165,51399,'_et_enabled','1'),(46166,51399,'_et_header_layout_id','51147'),(46167,51399,'_et_header_layout_enabled','1'),(46168,51399,'_et_body_layout_id','0'),(46169,51399,'_et_body_layout_enabled','1'),(46170,51399,'_et_footer_layout_id','51148'),(46171,51399,'_et_footer_layout_enabled','1'),(46172,51400,'_et_autogenerated_title','1'),(46173,51400,'_et_default','0'),(46174,51400,'_et_enabled','1'),(46175,51400,'_et_header_layout_id','51147'),(46176,51400,'_et_header_layout_enabled','1'),(46177,51400,'_et_body_layout_id','0'),(46178,51400,'_et_body_layout_enabled','1'),(46179,51400,'_et_footer_layout_id','51148'),(46180,51400,'_et_footer_layout_enabled','1'),(46181,51400,'_et_use_on','homepage'),(46182,51401,'_et_autogenerated_title','1'),(46183,51401,'_et_default','0'),(46184,51401,'_et_enabled','1'),(46185,51401,'_et_header_layout_id','51147'),(46186,51401,'_et_header_layout_enabled','1'),(46187,51401,'_et_body_layout_id','51204'),(46188,51401,'_et_body_layout_enabled','1'),(46189,51401,'_et_footer_layout_id','51148'),(46190,51401,'_et_footer_layout_enabled','1'),(46191,51401,'_et_use_on','singular:post_type:page:id:46191'),(46192,51401,'_et_use_on','singular:post_type:page:id:46189'),(46193,51401,'_et_use_on','singular:post_type:page:id:48410'),(46194,51401,'_et_use_on','singular:post_type:page:children:id:48410'),(46195,51401,'_et_use_on','singular:post_type:page:children:id:46191'),(46196,51402,'_et_autogenerated_title','0'),(46197,51402,'_et_default','0'),(46198,51402,'_et_enabled','1'),(46199,51402,'_et_header_layout_id','51147'),(46200,51402,'_et_header_layout_enabled','1'),(46201,51402,'_et_body_layout_id','51247'),(46202,51402,'_et_body_layout_enabled','1'),(46203,51402,'_et_footer_layout_id','51148'),(46204,51402,'_et_footer_layout_enabled','1'),(46205,51402,'_et_use_on','singular:post_type:page:id:45926'),(46206,51403,'_et_autogenerated_title','0'),(46207,51403,'_et_default','0'),(46208,51403,'_et_enabled','1'),(46209,51403,'_et_header_layout_id','51147'),(46210,51403,'_et_header_layout_enabled','1'),(46211,51403,'_et_body_layout_id','51261'),(46212,51403,'_et_body_layout_enabled','1'),(46213,51403,'_et_footer_layout_id','51148'),(46214,51403,'_et_footer_layout_enabled','1'),(46215,51403,'_et_use_on','singular:post_type:page:id:46193'),(46216,51403,'_et_use_on','singular:post_type:page:id:49704'),(46217,51403,'_et_use_on','singular:post_type:page:children:id:49704'),(46218,51403,'_et_use_on','singular:post_type:page:id:49203'),(46219,51404,'_et_autogenerated_title','0'),(46220,51404,'_et_default','0'),(46221,51404,'_et_enabled','1'),(46222,51404,'_et_header_layout_id','51147'),(46223,51404,'_et_header_layout_enabled','1'),(46224,51404,'_et_body_layout_id','51278'),(46225,51404,'_et_body_layout_enabled','1'),(46226,51404,'_et_footer_layout_id','51148'),(46227,51404,'_et_footer_layout_enabled','1'),(46228,51404,'_et_use_on','singular:post_type:post:all'),(46229,51405,'_et_autogenerated_title','0'),(46230,51405,'_et_default','0'),(46231,51405,'_et_enabled','1'),(46232,51405,'_et_header_layout_id','51147'),(46233,51405,'_et_header_layout_enabled','1'),(46234,51405,'_et_body_layout_id','51320'),(46235,51405,'_et_body_layout_enabled','1'),(46236,51405,'_et_footer_layout_id','51148'),(46237,51405,'_et_footer_layout_enabled','1'),(46238,51405,'_et_use_on','singular:post_type:page:id:46244'),(46239,51406,'_et_autogenerated_title','0'),(46240,51406,'_et_default','0'),(46241,51406,'_et_enabled','1'),(46242,51406,'_et_header_layout_id','51147'),(46243,51406,'_et_header_layout_enabled','1'),(46244,51406,'_et_body_layout_id','51335'),(46245,51406,'_et_body_layout_enabled','1'),(46246,51406,'_et_footer_layout_id','51148'),(46247,51406,'_et_footer_layout_enabled','1'),(46248,51406,'_et_use_on','singular:post_type:page:id:49949'),(46249,51407,'_et_autogenerated_title','1'),(46250,51407,'_et_default','0'),(46251,51407,'_et_enabled','1'),(46252,51407,'_et_header_layout_id','51147'),(46253,51407,'_et_header_layout_enabled','1'),(46254,51407,'_et_body_layout_id','0'),(46255,51407,'_et_body_layout_enabled','1'),(46256,51407,'_et_footer_layout_id','0'),(46257,51407,'_et_footer_layout_enabled','1'),(46258,51407,'_et_use_on','singular:post_type:page:id:45927'),(46268,51408,'_et_pb_row_layout','4_4'),(46269,51408,'_et_pb_built_for_post_type','page'),(46270,51409,'DiviRocket_rev','11'),(46271,51409,'_et_pb_use_builder','on'),(46272,51409,'_et_pb_show_page_creation','off'),(46274,51409,'_et_pb_built_for_post_type','page'),(46275,51409,'_et_pb_ab_subjects',''),(46276,51409,'_et_pb_enable_shortcode_tracking',''),(46277,51409,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"51409\" /]'),(46278,51409,'_et_pb_custom_css',''),(46279,51409,'_et_pb_gutter_width','1'),(46280,51409,'_thumbnail_id','0'),(46281,51409,'_global_colors_info','{}'),(46282,51409,'_et_pb_first_image',''),(46283,51409,'_et_pb_truncate_post',''),(46284,51409,'_et_pb_truncate_post_date',''),(46285,51409,'_et_builder_version','VB|Divi|4.18.0'),(46300,51411,'_et_autogenerated_title','0'),(46301,51411,'_et_default','0'),(46302,51411,'_et_enabled','1'),(46303,51411,'_et_header_layout_id','51147'),(46304,51411,'_et_header_layout_enabled','1'),(46305,51411,'_et_body_layout_id','51412'),(46306,51411,'_et_body_layout_enabled','1'),(46307,51411,'_et_footer_layout_id','51409'),(46308,51411,'_et_footer_layout_enabled','1'),(46322,51407,'_et_theme_builder_marked_as_unused','2022-09-20 16:21:28'),(46323,51403,'_et_theme_builder_marked_as_unused','2022-09-20 16:21:28'),(46324,51404,'_et_theme_builder_marked_as_unused','2022-09-20 16:21:28'),(46325,51405,'_et_theme_builder_marked_as_unused','2022-09-20 16:21:28'),(46326,51406,'_et_theme_builder_marked_as_unused','2022-09-20 16:21:28'),(46327,51399,'_et_theme_builder_marked_as_unused','2022-09-20 16:21:28'),(46328,51400,'_et_theme_builder_marked_as_unused','2022-09-20 16:21:28'),(46329,51401,'_et_theme_builder_marked_as_unused','2022-09-20 16:21:28'),(46330,51402,'_et_theme_builder_marked_as_unused','2022-09-20 16:21:28'),(46331,51396,'_et_theme_builder_marked_as_unused','2022-09-20 16:21:28'),(46332,51412,'DiviRocket_rev','3'),(46333,51412,'_et_pb_use_builder','on'),(46334,51412,'_et_pb_show_page_creation','off'),(46335,51412,'_et_pb_built_for_post_type','page'),(46336,51412,'_et_pb_enable_shortcode_tracking',''),(46337,51412,'_et_pb_custom_css',''),(46338,51412,'_et_pb_gutter_width','1'),(46339,51412,'_et_pb_first_image',''),(46340,51412,'_et_pb_truncate_post',''),(46341,51412,'_et_pb_truncate_post_date',''),(46342,51412,'_et_builder_version','VB|Divi|4.18.0'),(46393,46236,'_et_pb_built_for_post_type','page'),(46394,46236,'_et_pb_ab_subjects',''),(46395,46236,'_et_pb_enable_shortcode_tracking',''),(46396,46236,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46236\" /]'),(46397,46236,'_et_pb_custom_css',''),(46398,46236,'_et_pb_gutter_width','1'),(46400,46236,'_global_colors_info','{}'),(46401,46236,'_et_builder_version','VB|Divi|4.18.0'),(46402,46236,'_et_pb_show_page_creation','off'),(46412,51419,'_wp_attached_file','2022/09/2017CaseLawUpdate.pdf'),(46413,51419,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:228071;}'),(46414,51420,'_wp_attached_file','2022/09/2018CaseLawUpdate.pdf'),(46415,51420,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:570425;}'),(46416,51421,'_wp_attached_file','2022/09/2019CaseLawUpdate.pdf'),(46417,51421,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:594138;}'),(46418,51422,'_wp_attached_file','2022/09/2020CaseLawUpdate.pdf'),(46419,51422,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:1833114;}'),(46420,51423,'_wp_attached_file','2022/09/2021CaseLawUpdate.pdf'),(46421,51423,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:509555;}'),(46422,51424,'_wp_attached_file','2022/09/2016CaseLawUpdate.pdf'),(46423,51424,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:229340;}'),(46428,51426,'_wp_attached_file','2022/09/2018-Case-Law-Update-Cover.png'),(46429,51426,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:697;s:6:\"height\";i:903;s:4:\"file\";s:38:\"2022/09/2018-Case-Law-Update-Cover.png\";s:8:\"filesize\";i:176334;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"2018-Case-Law-Update-Cover-232x300.png\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32064;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"2018-Case-Law-Update-Cover-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13891;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:38:\"2018-Case-Law-Update-Cover-200x259.png\";s:5:\"width\";i:200;s:6:\"height\";i:259;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24699;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:38:\"2018-Case-Law-Update-Cover-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41164;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:38:\"2018-Case-Law-Update-Cover-697x675.png\";s:5:\"width\";i:697;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:167568;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:38:\"2018-Case-Law-Update-Cover-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51589;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:38:\"2018-Case-Law-Update-Cover-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82507;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:38:\"2018-Case-Law-Update-Cover-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80614;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:38:\"2018-Case-Law-Update-Cover-480x622.png\";s:5:\"width\";i:480;s:6:\"height\";i:622;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107743;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(46430,51427,'_wp_attached_file','2022/09/2017-Case-Law-Update-Cover.png'),(46431,51427,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:689;s:6:\"height\";i:895;s:4:\"file\";s:38:\"2022/09/2017-Case-Law-Update-Cover.png\";s:8:\"filesize\";i:54084;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"2017-Case-Law-Update-Cover-231x300.png\";s:5:\"width\";i:231;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13409;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"2017-Case-Law-Update-Cover-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6766;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:38:\"2017-Case-Law-Update-Cover-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10829;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:38:\"2017-Case-Law-Update-Cover-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24131;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:38:\"2017-Case-Law-Update-Cover-689x675.png\";s:5:\"width\";i:689;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57790;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:38:\"2017-Case-Law-Update-Cover-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26232;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:38:\"2017-Case-Law-Update-Cover-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42192;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:38:\"2017-Case-Law-Update-Cover-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33872;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:38:\"2017-Case-Law-Update-Cover-480x624.png\";s:5:\"width\";i:480;s:6:\"height\";i:624;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44835;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(46432,51428,'_wp_attached_file','2022/09/2016-Case-Law-Update-Cover.png'),(46433,51428,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:694;s:6:\"height\";i:898;s:4:\"file\";s:38:\"2022/09/2016-Case-Law-Update-Cover.png\";s:8:\"filesize\";i:32182;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"2016-Case-Law-Update-Cover-232x300.png\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20282;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"2016-Case-Law-Update-Cover-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9246;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:38:\"2016-Case-Law-Update-Cover-200x259.png\";s:5:\"width\";i:200;s:6:\"height\";i:259;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16065;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:38:\"2016-Case-Law-Update-Cover-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32022;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:38:\"2016-Case-Law-Update-Cover-694x675.png\";s:5:\"width\";i:694;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40521;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:38:\"2016-Case-Law-Update-Cover-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32408;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:38:\"2016-Case-Law-Update-Cover-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45619;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:38:\"2016-Case-Law-Update-Cover-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44507;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:38:\"2016-Case-Law-Update-Cover-480x621.png\";s:5:\"width\";i:480;s:6:\"height\";i:621;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57163;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(46437,51429,'_wp_attached_file','2022/09/2021-Case-Law-Update-Cover.png'),(46438,51429,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:693;s:6:\"height\";i:902;s:4:\"file\";s:38:\"2022/09/2021-Case-Law-Update-Cover.png\";s:8:\"filesize\";i:57790;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"2021-Case-Law-Update-Cover-230x300.png\";s:5:\"width\";i:230;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17631;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"2021-Case-Law-Update-Cover-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8965;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:38:\"2021-Case-Law-Update-Cover-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14553;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:38:\"2021-Case-Law-Update-Cover-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35168;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:38:\"2021-Case-Law-Update-Cover-693x675.png\";s:5:\"width\";i:693;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68568;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:38:\"2021-Case-Law-Update-Cover-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35537;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:38:\"2021-Case-Law-Update-Cover-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56345;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:38:\"2021-Case-Law-Update-Cover-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43651;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:38:\"2021-Case-Law-Update-Cover-480x625.png\";s:5:\"width\";i:480;s:6:\"height\";i:625;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59213;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(46439,51430,'_wp_attached_file','2022/09/2020-Case-Law-Update-Cover.png'),(46440,51430,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:693;s:6:\"height\";i:898;s:4:\"file\";s:38:\"2022/09/2020-Case-Law-Update-Cover.png\";s:8:\"filesize\";i:51547;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"2020-Case-Law-Update-Cover-232x300.png\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17310;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"2020-Case-Law-Update-Cover-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8380;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:38:\"2020-Case-Law-Update-Cover-200x259.png\";s:5:\"width\";i:200;s:6:\"height\";i:259;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13879;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:38:\"2020-Case-Law-Update-Cover-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33257;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:38:\"2020-Case-Law-Update-Cover-693x675.png\";s:5:\"width\";i:693;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64613;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:38:\"2020-Case-Law-Update-Cover-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37802;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:38:\"2020-Case-Law-Update-Cover-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57121;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:38:\"2020-Case-Law-Update-Cover-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41498;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:38:\"2020-Case-Law-Update-Cover-480x622.png\";s:5:\"width\";i:480;s:6:\"height\";i:622;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55609;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(46441,51431,'_wp_attached_file','2022/09/2019-Case-Law-Update-Cover.png'),(46442,51431,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:670;s:6:\"height\";i:866;s:4:\"file\";s:38:\"2022/09/2019-Case-Law-Update-Cover.png\";s:8:\"filesize\";i:99340;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"2019-Case-Law-Update-Cover-232x300.png\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20992;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"2019-Case-Law-Update-Cover-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9297;}s:18:\"depicter-thumbnail\";a:5:{s:4:\"file\";s:38:\"2019-Case-Law-Update-Cover-200x259.png\";s:5:\"width\";i:200;s:6:\"height\";i:259;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16248;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:38:\"2019-Case-Law-Update-Cover-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23337;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:38:\"2019-Case-Law-Update-Cover-670x675.png\";s:5:\"width\";i:670;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94124;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:38:\"2019-Case-Law-Update-Cover-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28573;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:38:\"2019-Case-Law-Update-Cover-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48512;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:38:\"2019-Case-Law-Update-Cover-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51248;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:38:\"2019-Case-Law-Update-Cover-480x620.png\";s:5:\"width\";i:480;s:6:\"height\";i:620;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67994;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(46472,51152,'_et_use_on','homepage'),(46473,51211,'_et_use_on','singular:post_type:page:id:46191'),(46474,51211,'_et_use_on','singular:post_type:page:id:46189'),(46475,51211,'_et_use_on','singular:post_type:page:id:48410'),(46476,51211,'_et_use_on','singular:post_type:page:children:id:48410'),(46477,51211,'_et_use_on','singular:post_type:page:children:id:46191'),(46478,51211,'_et_use_on','singular:post_type:page:id:46236'),(46479,51253,'_et_use_on','singular:post_type:page:id:45926'),(46480,51271,'_et_use_on','singular:post_type:page:id:46193'),(46481,51271,'_et_use_on','singular:post_type:page:id:49704'),(46482,51271,'_et_use_on','singular:post_type:page:children:id:49704'),(46483,51271,'_et_use_on','singular:post_type:page:id:49203'),(46484,51280,'_et_use_on','singular:post_type:post:all'),(46485,51329,'_et_use_on','singular:post_type:page:id:46244'),(46486,51346,'_et_use_on','singular:post_type:page:id:49949'),(46487,51411,'_et_use_on','singular:post_type:page:id:45927'),(46488,51150,'_et_template','51151'),(46489,51150,'_et_template','51152'),(46490,51150,'_et_template','51211'),(46491,51150,'_et_template','51253'),(46492,51150,'_et_template','51271'),(46493,51150,'_et_template','51280'),(46494,51150,'_et_template','51329'),(46495,51150,'_et_template','51346'),(46496,51150,'_et_template','51411'),(46532,49303,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(46545,49273,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(46550,49299,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(46555,49307,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(46558,49312,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(46565,49316,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(46567,49322,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(46573,49326,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(46577,49331,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(46585,49336,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(46587,49340,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(46595,49344,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(46616,50771,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(46625,49644,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(46630,49650,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(46635,46125,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(46795,46338,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(46803,51461,'_wp_attached_file','2022/09/MinorityAndWomenCertificate-1.pdf'),(46804,51461,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:99588;}'),(46814,51465,'_edit_lock','1665428229:1'),(46815,51465,'_edit_last','1'),(46816,51465,'_et_post_bg_color','#ffffff'),(46817,51465,'_et_post_bg_layout','light'),(46818,51465,'_et_pb_show_title','on'),(46819,51465,'_et_pb_post_hide_nav','default'),(46820,51465,'_et_pb_page_layout','et_right_sidebar'),(46821,51465,'_et_pb_side_nav','off'),(47070,46561,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47075,46559,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47080,46563,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47085,46565,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47090,46564,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47095,46557,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47100,46555,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47105,46553,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47110,46551,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47115,46549,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47120,46546,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47125,46543,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47130,46540,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47135,46541,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47140,46512,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47145,46511,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47150,46509,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47155,46508,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47160,46506,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47165,46503,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47170,46502,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47175,46504,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47180,46500,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47185,46501,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47190,46496,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47195,46499,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47200,46493,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47205,46489,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47210,46492,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47215,46479,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47220,46480,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47225,46478,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47230,46482,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47235,46486,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47240,46446,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47245,46448,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47250,46450,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47255,46445,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47260,46444,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47265,46442,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47270,46439,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47275,46433,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47280,46436,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47285,46431,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47290,46426,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47295,46423,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47300,46422,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47305,46420,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47310,46421,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47315,46418,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47320,46415,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47325,46413,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47330,46419,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47335,46414,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47340,46388,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47345,46386,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47350,46387,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47355,46385,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47360,46383,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47365,46381,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47370,46384,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47375,46380,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47380,46377,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47385,46376,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47390,46375,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47395,46374,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47400,46371,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47405,46372,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47410,46373,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47415,46368,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47420,46369,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47425,46367,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47430,46370,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47435,46352,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47440,46351,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47445,46350,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47450,46347,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47455,46346,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47460,46348,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47465,46345,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47470,46342,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47475,46343,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47480,46341,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47485,46344,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47494,46331,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47499,46332,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47504,46337,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47509,46340,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47514,46335,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47519,46327,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47524,46329,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47529,48934,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47882,46378,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(47955,46339,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(48000,46418,'_oembed_859507d890da9e39f28f0ebc3d66d65e','{{unknown}}'),(48001,46433,'_oembed_77b7e7d47c6acc836c1cf0d290b63c41','{{unknown}}'),(48002,46480,'_oembed_2dbd0276dd42a0904523b32eca1d93c3','{{unknown}}'),(54435,6,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:11:\"et_pb_slide\";i:1;s:20:\"et_pb_blurb_extended\";i:2;s:17:\"ba_image_carousel\";i:3;s:23:\"ba_image_carousel_child\";i:4;s:33:\"et_pb_social_media_follow_network\";i:5;s:13:\"et_pb_section\";i:6;s:9:\"et_pb_row\";i:7;s:12:\"et_pb_column\";i:8;s:12:\"et_pb_button\";i:9;s:13:\"et_pb_divider\";i:10;s:11:\"et_pb_image\";i:11;s:10:\"et_pb_menu\";i:12;s:12:\"et_pb_slider\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54436,6,'_et_dynamic_cached_attributes','a:6:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:3:{i:0;s:4:\"zoom\";i:1;s:5:\"slide\";i:2;s:4:\"fade\";}s:12:\"gutter_width\";a:1:{i:0;s:1:\"2\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54437,6,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:3:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-lora\";s:61:\"Lora:regular,500,600,700,italic,500italic,600italic,700italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54438,6,'_et_builder_module_features_cache','a:2:{i:0;s:115:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:115:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_f7e46c1916e6624f2ed04fb4e312d5a6\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_c1859762f873db41fedeffb800d4a5d1\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_f36ce9620f73f9a2d0cb24e4f86e7a63\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_slider_be1ef5e3401ffcb4c94cb03cfcb254dc\";a:9:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"46\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"16\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_slide_801ddc08712aad0cbb04ef91a2006e6e\";a:6:{s:4:\"glde\";a:7:{s:16:\"header_font_size\";s:4:\"26px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:4:\"16px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_slide_63cd69b0ef7eff371d9655976cc70b3e\";a:6:{s:4:\"glde\";a:7:{s:16:\"header_font_size\";s:4:\"26px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:4:\"16px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_slide_056f0c8f2eabaad5e6adf54517726222\";a:6:{s:4:\"glde\";a:7:{s:16:\"header_font_size\";s:4:\"26px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:4:\"16px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_0b8cff33a2fa0e3cd20c359d3ef4b299\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_cadadc7a2b63a6e681d4a8018000cb9e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_96e8e753b02642543f41720deea027b6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_4f29765116b9f97e6b04a47dc19edeaa\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_4170987e934124113ba666559287ad02\";a:4:{s:4:\"glde\";a:4:{s:13:\"divider_style\";s:5:\"solid\";s:16:\"divider_position\";s:3:\"top\";s:14:\"divider_weight\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_881509caad7f2f358447c90f82031744\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_eef1acf2609e58492be099c6163e5434\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_754fbca5f1f93037b7b2ec24954ca445\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_b092c670abe8d1950e79369650be5e52\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_36c4c1a2690fa0931c00d9edc0ae598a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_0d30995ca617d63ed788ef6da070733f\";a:8:{s:5:\"bared\";b:1;s:5:\"baret\";b:1;s:5:\"barep\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_2e6cf4bd5803f962231a45a33e6d7812\";a:7:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_2407ce6c8eba11bec20e702b809e361d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_blurb_extended_6f9e6b39fbb63c34d7613fe2051fae95\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_b572febeab75a9bb72e6bf8975c885cc\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_blurb_extended_aef898f4d67b5b395105bff701a1c337\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_blurb_extended_4e3d732cf64ade07740760211a01d01e\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_5d63edd8cf87f885ca8c1b78de130ab0\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_e325fea0404807afb1bd88fd89e098e6\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d9a0dfb6db7d1547f2585301c6b8f282\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_a578b7fff25b25b16a335090cefe5abe\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_bd663980cff7855fb24c9424fa836cfd\";a:4:{s:4:\"glde\";a:4:{s:13:\"divider_style\";s:5:\"solid\";s:16:\"divider_position\";s:3:\"top\";s:14:\"divider_weight\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_470a1cba93593174338419b19bbe58a5\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_3582b00a16633aae6a4b0907c51ca39a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_78b1b16f6f09ffcc6f3f053f65628cd6\";a:8:{s:5:\"bared\";b:1;s:5:\"baret\";b:1;s:5:\"barep\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dacefac135799facfaeb072596011391\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_79fa31314d980092d17248483863d9d0\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_01d1f39f4346a610197414b709b01289\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_9cf960e9d88e3be83448af651b7d0ebe\";a:4:{s:4:\"glde\";a:4:{s:13:\"divider_style\";s:5:\"solid\";s:16:\"divider_position\";s:3:\"top\";s:14:\"divider_weight\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f0d6a4b1eb87dddaea2eb5728694e7b9\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_1c17fc6d5ad26d502bd650145fa02975\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_8c2fb22acb7295ea03e1f22d07f08be8\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_b985b508582e02e6886b2c398e028bad\";a:8:{s:5:\"bared\";b:1;s:5:\"baret\";b:1;s:5:\"barep\";b:1;s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9bd90c44fd2599012766b08b4046d20c\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_c3c0a3439ba5ba9d8c306eb3c59d83ab\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_440db065bc38457f56d9304453bac287\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d5e816dbfb5974940aa9dfd431af53f3\";a:8:{s:5:\"bared\";b:1;s:5:\"baret\";b:1;s:5:\"barep\";b:1;s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_662aa3ee0bcafe87f12238484e2e66a4\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d33ece99f2b362fc80c284a3af230fcc\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_2abfead43a84b5be2a04f84d40869180\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_a27d5c43d06d2bbcbacecf5f381bbdc5\";a:4:{s:4:\"glde\";a:4:{s:13:\"divider_style\";s:5:\"solid\";s:16:\"divider_position\";s:3:\"top\";s:14:\"divider_weight\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_d913f20a1263afa51a02b18b11be572a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_e65e28eb8ef9d5e3e87e36ace5d8cb84\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_082cd3268ed5025ed1ea042d1ea1cbdd\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_977255da84808e56b79fe155d05b6a66\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_f198ba8564ed1c7153d713bce342bdbb\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_5c71eb56c00c4381bb1e2157c2cc4c1f\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_04c3464e23c09736256655fc6b03276b\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_cf98948d3bc9a6d19b34cfedbd4b49d6\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_a8251f9f99ef54dcfee802d0ea85cf01\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_c979f3dfee0bcb17c6ad6b0bad92b4f1\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_5ad0f762cbadeb4c0ae1ef18a646cd59\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_489cf561a257cea8e7f580d1b2bfa4fd\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_959b7a7aede5f94fabfb4204adf67ff6\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:56:\"ba_image_carousel_child_81c8a809b83176f3f6a93607271e2340\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:56:\"ba_image_carousel_child_215eaaef8c83000f68137b43423f5a49\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:56:\"ba_image_carousel_child_de785b9ef8ea88d3a383758bcd419eb6\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:56:\"ba_image_carousel_child_c2e664e9a3cbb487d7ad9189f4a5171f\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:56:\"ba_image_carousel_child_45e74b0c24f3e2bcd274a1e0859c178d\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:56:\"ba_image_carousel_child_8b0a929d5cc76ab23257fbecb2197299\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:56:\"ba_image_carousel_child_d114e2ff3c17aa5c1c2ce62c0f4299d9\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:50:\"ba_image_carousel_8bcbe78e36d3687dfc1def6494cdd6cf\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ef3cc5898d29bff64d1e17fa7194655e\";a:8:{s:5:\"bared\";b:1;s:5:\"baret\";b:1;s:5:\"barep\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_5a29aaf4fccbfeed3df2e5b803bd0882\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9cc948253f2940747cfc3aa9aca54419\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_b083793d5f5f021eeb3e53d16c3a927a\";a:4:{s:4:\"glde\";a:4:{s:13:\"divider_style\";s:5:\"solid\";s:16:\"divider_position\";s:3:\"top\";s:14:\"divider_weight\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_slider_587b7ba39cdfeaac1ee27f3190732661\";a:8:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"46\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"16\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_slide_cf17f1a79413f08963d020f63a27f98d\";a:6:{s:4:\"glde\";a:7:{s:16:\"header_font_size\";s:4:\"26px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:4:\"16px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_slide_236b17d05d1a5ca68ecedff31c0d639c\";a:6:{s:4:\"glde\";a:7:{s:16:\"header_font_size\";s:4:\"26px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:4:\"16px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_slide_7af3d3ee2b3d53a57437df6d12e0375c\";a:6:{s:4:\"glde\";a:7:{s:16:\"header_font_size\";s:4:\"26px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:4:\"16px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_slide_1650796754c58b77198b9ee1b9daaeba\";a:6:{s:4:\"glde\";a:7:{s:16:\"header_font_size\";s:4:\"26px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:4:\"16px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54439,45925,'_et_dynamic_cached_shortcodes','a:9:{i:0;s:33:\"et_pb_social_media_follow_network\";i:1;s:13:\"et_pb_section\";i:2;s:9:\"et_pb_row\";i:3;s:12:\"et_pb_column\";i:4;s:12:\"et_pb_button\";i:5;s:11:\"et_pb_image\";i:6;s:10:\"et_pb_menu\";i:7;s:25:\"et_pb_social_media_follow\";i:8;s:10:\"et_pb_text\";}'),(54440,45925,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54441,45925,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54442,45925,'_et_builder_module_features_cache','a:2:{i:0;s:115:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:41:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_7d668aed0d5bdedffac52b290eae9d36\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dbe12a62969ce290aa25ce85a6738e5d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cf94e556f7863291e534aba6233d131d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_a92906411141b15d024e3a813ccd3afa\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54443,46234,'_et_dynamic_cached_shortcodes','a:13:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:33:\"et_pb_social_media_follow_network\";i:3;s:13:\"et_pb_section\";i:4;s:9:\"et_pb_row\";i:5;s:12:\"et_pb_column\";i:6;s:12:\"et_pb_button\";i:7;s:22:\"et_pb_fullwidth_header\";i:8;s:11:\"et_pb_image\";i:9;s:10:\"et_pb_menu\";i:10;s:13:\"et_pb_sidebar\";i:11;s:25:\"et_pb_social_media_follow\";i:12;s:10:\"et_pb_text\";}'),(54444,46234,'_et_dynamic_cached_attributes','a:6:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54445,46234,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54446,46234,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51261\":\"2022-09-20 18:15:17\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:46:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ea6433ee20ee2e86dacfc0154cd3c8e2\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_fba6298e91dc70682d0033904ca78add\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d5dcfad120dba1a2a2e08160d1d60309\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_6c06a4e1e678e385621c398b3607a4bc\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_6b726e5da248514b6d7e99331112b9f7\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_sidebar_1be2230b05d2b8433adc78af99bba58f\";a:10:{s:4:\"glde\";a:6:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54447,49203,'_et_dynamic_cached_shortcodes','a:14:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:33:\"et_pb_social_media_follow_network\";i:3;s:13:\"et_pb_section\";i:4;s:9:\"et_pb_row\";i:5;s:12:\"et_pb_column\";i:6;s:12:\"et_pb_button\";i:7;s:10:\"et_pb_code\";i:8;s:22:\"et_pb_fullwidth_header\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:13:\"et_pb_sidebar\";i:12;s:25:\"et_pb_social_media_follow\";i:13;s:10:\"et_pb_text\";}'),(54448,49203,'_et_dynamic_cached_attributes','a:6:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54449,49203,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54450,49203,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51261\":\"2022-09-20 18:15:17\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:52:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ea6433ee20ee2e86dacfc0154cd3c8e2\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_fba6298e91dc70682d0033904ca78add\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d5dcfad120dba1a2a2e08160d1d60309\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_6c06a4e1e678e385621c398b3607a4bc\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34f1a17d1cb5f48333cc1038ab470421\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_ad418eb0f4180ba5f5a9d1cad71b778a\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0fbb279fe04026141bd8f4521d22bed4\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_0263aa6802c981fc56844c59ddc60b18\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f8c329d694dd5ad63df7ce0c8dbfef14\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_code_027083b937c8df28f0166512e0409301\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_6b726e5da248514b6d7e99331112b9f7\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_sidebar_1be2230b05d2b8433adc78af99bba58f\";a:10:{s:4:\"glde\";a:6:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54451,50324,'_et_dynamic_cached_shortcodes','a:9:{i:0;s:33:\"et_pb_social_media_follow_network\";i:1;s:13:\"et_pb_section\";i:2;s:9:\"et_pb_row\";i:3;s:12:\"et_pb_column\";i:4;s:12:\"et_pb_button\";i:5;s:11:\"et_pb_image\";i:6;s:10:\"et_pb_menu\";i:7;s:25:\"et_pb_social_media_follow\";i:8;s:10:\"et_pb_text\";}'),(54452,50324,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54453,50324,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54454,50324,'_et_builder_module_features_cache','a:2:{i:0;s:115:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:37:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54455,48022,'_et_dynamic_cached_shortcodes','a:13:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:33:\"et_pb_social_media_follow_network\";i:3;s:13:\"et_pb_section\";i:4;s:9:\"et_pb_row\";i:5;s:12:\"et_pb_column\";i:6;s:12:\"et_pb_button\";i:7;s:22:\"et_pb_fullwidth_header\";i:8;s:11:\"et_pb_image\";i:9;s:10:\"et_pb_menu\";i:10;s:13:\"et_pb_sidebar\";i:11;s:25:\"et_pb_social_media_follow\";i:12;s:10:\"et_pb_text\";}'),(54456,48022,'_et_dynamic_cached_attributes','a:6:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54457,48022,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54458,48022,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51204\":\"2022-09-20 18:15:16\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:55:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_f1ac9afe0a4d8fad7585146c7939c566\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ea6433ee20ee2e86dacfc0154cd3c8e2\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_e09bc11297a0c26775b6999372db4d2f\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_818799a6294bf9715919f5b8f9bcb7d8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d5dcfad120dba1a2a2e08160d1d60309\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_28fe5015b5838ff444c0c137139c7959\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_d5b96e08115688b04ed4ebb4c637f1a8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_9227c7f8a888dd5fb0307b92cedc0448\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_eef84acfcd15b26c23ac6f4630b0a7d1\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_61a296115124a67d42458cdc75465fe1\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_b5172c86c01677b73e87a49edbb759b4\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_a7e605dfe9d354e3ea0808b65247cbab\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_6b726e5da248514b6d7e99331112b9f7\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_sidebar_e1392e482d3daa78e26ce97184f37271\";a:10:{s:4:\"glde\";a:6:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_fba6298e91dc70682d0033904ca78add\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54459,46244,'_et_dynamic_cached_shortcodes','a:13:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:33:\"et_pb_social_media_follow_network\";i:3;s:13:\"et_pb_section\";i:4;s:9:\"et_pb_row\";i:5;s:12:\"et_pb_column\";i:6;s:12:\"et_pb_button\";i:7;s:22:\"et_pb_fullwidth_header\";i:8;s:11:\"et_pb_image\";i:9;s:10:\"et_pb_menu\";i:10;s:13:\"et_pb_sidebar\";i:11;s:25:\"et_pb_social_media_follow\";i:12;s:10:\"et_pb_text\";}'),(54460,46244,'_et_dynamic_cached_attributes','a:6:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54461,46244,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54462,46244,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51320\":\"2022-09-20 18:15:17\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:53:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ea6433ee20ee2e86dacfc0154cd3c8e2\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_fba6298e91dc70682d0033904ca78add\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d5dcfad120dba1a2a2e08160d1d60309\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_6c06a4e1e678e385621c398b3607a4bc\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_7d668aed0d5bdedffac52b290eae9d36\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_ff164b6849eea93a59fbe8c17b5f826c\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cf94e556f7863291e534aba6233d131d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_c792ac27d3b98b3d2ac10b37193b59ed\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e2ba13e079f8288202c0d766a91c6a45\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_691377242023dd7f1e43715687dd173d\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_7092cc9788b79cc692af6a82b6f7022e\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_6b726e5da248514b6d7e99331112b9f7\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_sidebar_1be2230b05d2b8433adc78af99bba58f\";a:10:{s:4:\"glde\";a:6:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54463,46236,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:17:\"ba_image_carousel\";i:3;s:23:\"ba_image_carousel_child\";i:4;s:33:\"et_pb_social_media_follow_network\";i:5;s:13:\"et_pb_section\";i:6;s:9:\"et_pb_row\";i:7;s:12:\"et_pb_column\";i:8;s:12:\"et_pb_button\";i:9;s:22:\"et_pb_fullwidth_header\";i:10;s:11:\"et_pb_image\";i:11;s:10:\"et_pb_menu\";i:12;s:13:\"et_pb_sidebar\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54464,46236,'_et_dynamic_cached_attributes','a:6:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54465,46236,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:3:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:25:\"et-gf-playfair-display-sc\";s:62:\"Playfair+Display+SC:regular,italic,700,700italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54466,46236,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51204\":\"2022-09-20 18:15:16\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:62:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_f1ac9afe0a4d8fad7585146c7939c566\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ea6433ee20ee2e86dacfc0154cd3c8e2\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_e09bc11297a0c26775b6999372db4d2f\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_818799a6294bf9715919f5b8f9bcb7d8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d5dcfad120dba1a2a2e08160d1d60309\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_28fe5015b5838ff444c0c137139c7959\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_7d668aed0d5bdedffac52b290eae9d36\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_ff164b6849eea93a59fbe8c17b5f826c\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cf94e556f7863291e534aba6233d131d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9486d231e585a56442407ac0d3c667a6\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_83ad2c92c3a61a577d2de0ed4895a856\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_37baeb2718b24f1da557627061262cc0\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:56:\"ba_image_carousel_child_00073ccad1b2225977c343d2e17f18bb\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:56:\"ba_image_carousel_child_374dd7b0762f66cfb6dff5b3a2614965\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:56:\"ba_image_carousel_child_b8d806c4fcaf03cccf02ffa9aca5920a\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:56:\"ba_image_carousel_child_a5b2aac69d13a9f43b759e9966aaa132\";a:8:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:56:\"ba_image_carousel_child_e8f7c2d52c51fda98e86fa669ed0ba67\";a:8:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:56:\"ba_image_carousel_child_88df88b80755c3991ab2e104a7ecfbd3\";a:8:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:50:\"ba_image_carousel_7069f2e442a387279d0fa9f475077743\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_6b726e5da248514b6d7e99331112b9f7\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_sidebar_e1392e482d3daa78e26ce97184f37271\";a:10:{s:4:\"glde\";a:6:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_fba6298e91dc70682d0033904ca78add\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54467,45926,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:20:\"et_pb_accordion_item\";i:2;s:33:\"et_pb_social_media_follow_network\";i:3;s:13:\"et_pb_section\";i:4;s:9:\"et_pb_row\";i:5;s:12:\"et_pb_column\";i:6;s:15:\"et_pb_accordion\";i:7;s:10:\"et_pb_blog\";i:8;s:12:\"et_pb_button\";i:9;s:22:\"et_pb_fullwidth_header\";i:10;s:11:\"et_pb_image\";i:11;s:10:\"et_pb_menu\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54468,45926,'_et_dynamic_cached_attributes','a:6:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54469,45926,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54470,45926,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51247\":\"2022-09-20 18:15:16\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:61:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_56de3076d742d95d2eb07df57857197e\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_f033e9f5644ac9dc72c8856471fce556\";a:8:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d5dcfad120dba1a2a2e08160d1d60309\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_blog_0d4d611b9f4efb99b2b8030514cac0c3\";a:7:{s:4:\"glde\";a:14:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:5:\"1.7em\";s:19:\"read_more_font_size\";s:4:\"14px\";s:21:\"read_more_line_height\";s:5:\"1.7em\";s:20:\"pagination_font_size\";s:2:\"14\";s:25:\"pagination_letter_spacing\";s:3:\"0px\";s:22:\"pagination_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_21e65e2576b8ebcda1cdbd35c1ee3b6f\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_158b0cbb5da6abf4abfc739743aed82d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ea6433ee20ee2e86dacfc0154cd3c8e2\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_fba6298e91dc70682d0033904ca78add\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54471,46193,'_et_dynamic_cached_shortcodes','a:13:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:33:\"et_pb_social_media_follow_network\";i:3;s:13:\"et_pb_section\";i:4;s:9:\"et_pb_row\";i:5;s:12:\"et_pb_column\";i:6;s:12:\"et_pb_button\";i:7;s:22:\"et_pb_fullwidth_header\";i:8;s:11:\"et_pb_image\";i:9;s:10:\"et_pb_menu\";i:10;s:13:\"et_pb_sidebar\";i:11;s:25:\"et_pb_social_media_follow\";i:12;s:10:\"et_pb_text\";}'),(54472,46193,'_et_dynamic_cached_attributes','a:6:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54473,46193,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54474,46193,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51261\":\"2022-09-20 18:15:17\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:50:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ea6433ee20ee2e86dacfc0154cd3c8e2\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_fba6298e91dc70682d0033904ca78add\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d5dcfad120dba1a2a2e08160d1d60309\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_6c06a4e1e678e385621c398b3607a4bc\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_7d668aed0d5bdedffac52b290eae9d36\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_ff164b6849eea93a59fbe8c17b5f826c\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cf94e556f7863291e534aba6233d131d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_e0f08a5ffc66276ab5beff1fbee76f47\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_6b726e5da248514b6d7e99331112b9f7\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_sidebar_1be2230b05d2b8433adc78af99bba58f\";a:10:{s:4:\"glde\";a:6:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54475,46329,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54476,46426,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54477,46426,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54478,46426,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54479,46426,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54480,46431,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54481,46431,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54482,46431,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54483,46431,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54484,46493,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54485,46493,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54486,46493,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54487,46493,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54488,46348,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54489,46348,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54490,46348,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54491,46348,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54492,46564,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54493,46564,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54494,46564,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54495,46564,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54496,46375,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54497,46375,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54498,46375,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54499,46375,'_et_builder_module_features_cache','a:2:{i:0;s:115:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:37:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54500,46332,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54501,46332,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54502,46332,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54503,46332,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54504,46444,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54505,46444,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54506,46444,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54507,46444,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54508,46381,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54509,46381,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54510,46381,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54511,46381,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54512,46369,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54513,46369,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54514,46369,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54515,46369,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54516,46496,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54517,46496,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54518,46496,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54519,46496,'_et_builder_module_features_cache','a:2:{i:0;s:115:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:37:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54520,46557,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54521,46557,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54522,46557,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54523,46557,'_et_builder_module_features_cache','a:2:{i:0;s:115:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:37:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54524,46346,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54525,46346,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54526,46346,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54527,46346,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54528,46540,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54529,46540,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54530,46540,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54531,46540,'_et_builder_module_features_cache','a:2:{i:0;s:115:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:37:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54532,46377,'_et_builder_module_features_cache','a:2:{i:0;s:115:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:37:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54533,46479,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54534,46479,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54535,46479,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54536,46479,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54537,49089,'_et_builder_module_features_cache','a:2:{i:0;s:115:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:37:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54538,46413,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54539,46413,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54540,46413,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54541,46413,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54542,46450,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54543,46450,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54544,46450,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54545,46450,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54546,46350,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54547,46350,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54548,46350,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54549,46350,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54550,46492,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54551,46492,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54552,46492,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54553,46492,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54554,46502,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54555,46502,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54556,46502,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54557,46502,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54558,46551,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54559,46551,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54560,46551,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54561,46551,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54562,46546,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54563,46546,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54564,46546,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54565,46546,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54566,49089,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54567,49089,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54568,49089,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54569,46482,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54570,46482,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54571,46482,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54572,46482,'_et_builder_module_features_cache','a:2:{i:0;s:115:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:37:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54573,46506,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54574,46506,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54575,46506,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54576,46506,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54577,46339,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54578,46339,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54579,46339,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54580,46339,'_et_builder_module_features_cache','a:2:{i:0;s:115:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:37:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54581,46385,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54582,46385,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54583,46385,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54584,46385,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54585,46420,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54586,46420,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54587,46420,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54588,46420,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54589,46436,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54590,46436,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54591,46436,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54592,46436,'_et_builder_module_features_cache','a:2:{i:0;s:115:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:37:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54593,46371,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54594,46371,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54595,46371,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54596,46371,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54597,46377,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54598,46377,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54599,46377,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54600,46367,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54601,46367,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54602,46367,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54603,46367,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54604,46480,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54605,46480,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}');
INSERT INTO `cuB_postmeta` VALUES (54606,46480,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54607,46480,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54608,46422,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54609,46422,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54610,46422,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54611,46422,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54612,46351,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54613,46351,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54614,46351,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54615,46351,'_et_builder_module_features_cache','a:2:{i:0;s:115:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:37:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54616,48934,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54617,48934,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54618,48934,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54619,48934,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54620,46445,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54621,46445,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54622,46445,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54623,46445,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54624,46387,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54625,46423,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54626,46448,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54627,46341,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54628,46341,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54629,46341,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54630,46341,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54631,46442,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54632,46442,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54633,46442,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54634,46442,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54635,46511,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54636,46327,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54637,46327,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54638,46327,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54639,46327,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54640,46368,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54641,46368,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54642,46368,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54643,46368,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54644,46337,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54645,46337,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54646,46337,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54647,46337,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54648,46503,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54649,46503,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54650,46503,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54651,46503,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54652,45927,'_et_dynamic_cached_shortcodes','a:13:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:33:\"et_pb_social_media_follow_network\";i:3;s:13:\"et_pb_section\";i:4;s:9:\"et_pb_row\";i:5;s:12:\"et_pb_column\";i:6;s:12:\"et_pb_button\";i:7;s:22:\"et_pb_fullwidth_header\";i:8;s:11:\"et_pb_image\";i:9;s:10:\"et_pb_menu\";i:10;s:13:\"et_pb_sidebar\";i:11;s:25:\"et_pb_social_media_follow\";i:12;s:10:\"et_pb_text\";}'),(54653,45927,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54654,45927,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54655,45927,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51412\":\"2022-09-20 18:15:17\",\"51409\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:51:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_f1ac9afe0a4d8fad7585146c7939c566\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ea6433ee20ee2e86dacfc0154cd3c8e2\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_e09bc11297a0c26775b6999372db4d2f\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_818799a6294bf9715919f5b8f9bcb7d8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d5dcfad120dba1a2a2e08160d1d60309\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_28fe5015b5838ff444c0c137139c7959\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_7d668aed0d5bdedffac52b290eae9d36\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_ff164b6849eea93a59fbe8c17b5f826c\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cf94e556f7863291e534aba6233d131d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_8b23fc9c9f7feff56009276f72fdd49a\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_5e5a422446ca1012e13fb20be0a0cfde\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_525621b23e34a2bf2b2693bd60bb02ef\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_6b726e5da248514b6d7e99331112b9f7\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_sidebar_e1392e482d3daa78e26ce97184f37271\";a:10:{s:4:\"glde\";a:6:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_fba6298e91dc70682d0033904ca78add\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_00455bc6a219282ddc74f678dea243a8\";a:4:{s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_89d2dfde1051d3a6d01fab197a501e8f\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54656,46342,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54657,46559,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54658,46559,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54659,46559,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54660,46559,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54661,46439,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54662,46439,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54663,46439,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54664,46439,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54665,46370,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54666,46387,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54667,46387,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54668,46387,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54669,46509,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54670,46509,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54671,46509,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54672,46509,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54673,46340,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54674,46340,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54675,46340,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54676,46340,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54677,46352,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54678,46352,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54679,46352,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54680,46352,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54681,46500,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54682,46500,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54683,46500,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54684,46500,'_et_builder_module_features_cache','a:2:{i:0;s:115:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:37:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54685,46555,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54686,46555,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54687,46555,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54688,46555,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54689,46373,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54690,46373,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54691,46373,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54692,46373,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54693,46508,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54694,46508,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54695,46508,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54696,46508,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54697,46418,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54698,46418,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54699,46418,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54700,46418,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54701,46448,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54702,46448,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54703,46448,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54704,46335,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54705,46335,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54706,46335,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54707,46335,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54708,46329,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54709,46329,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54710,46329,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54711,46388,'_et_builder_module_features_cache','a:2:{i:0;s:115:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:37:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54712,46423,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54713,46423,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54714,46423,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54715,46489,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54716,46489,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54717,46489,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54718,46489,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54719,46344,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54720,46344,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54721,46344,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54722,46344,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54723,46191,'_et_dynamic_cached_shortcodes','a:13:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:33:\"et_pb_social_media_follow_network\";i:3;s:13:\"et_pb_section\";i:4;s:9:\"et_pb_row\";i:5;s:12:\"et_pb_column\";i:6;s:12:\"et_pb_button\";i:7;s:22:\"et_pb_fullwidth_header\";i:8;s:11:\"et_pb_image\";i:9;s:10:\"et_pb_menu\";i:10;s:13:\"et_pb_sidebar\";i:11;s:25:\"et_pb_social_media_follow\";i:12;s:10:\"et_pb_text\";}'),(54724,46191,'_et_dynamic_cached_attributes','a:6:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54725,46191,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:3:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:25:\"et-gf-playfair-display-sc\";s:62:\"Playfair+Display+SC:regular,italic,700,700italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54726,46191,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51204\":\"2022-09-20 18:15:16\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:94:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_f1ac9afe0a4d8fad7585146c7939c566\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ea6433ee20ee2e86dacfc0154cd3c8e2\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_e09bc11297a0c26775b6999372db4d2f\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_818799a6294bf9715919f5b8f9bcb7d8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d5dcfad120dba1a2a2e08160d1d60309\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_28fe5015b5838ff444c0c137139c7959\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_8bec822b107d4366c52ac672be7d0315\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_5ff98dd263afd88517213788134ea5e9\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_293d269d7f4675e04e9babce1dd9aeb9\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_873e1d0fdc83226da92f2ec135f06235\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_1ef1c9b2f45ce1927ffbc0fc2ed783e5\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_9426791851c1b31bdb1d7b6b37ee9e5f\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_973d4b872e3ffa68676075635a1ebe06\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d9effca6090ce1ce5af6dc8211f2fe2f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_bfb5422a207442a8d834ed08b2c5080d\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_df605f1c9bf29e76c25ffe4043eebd1b\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_88eec88422bac133fe7fd7d87ccb69b1\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_a7df04a4760902f083db715fe7b7822d\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d13b5faf1ca071b8a8933331d9090aff\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_2953b860a7bccbc59e295b59a7e1005a\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_acb431d164f8ea7ce8101ff0698b0d92\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_639dde3f401513988c87b99e9c6eb820\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_5f06ef07615de46d11c0391792df67fc\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_b30901907c661824eb0bfdf215534a87\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_c5bc5bc87637697f59139002368a3a3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_119de1ad072ba8fc35880eac595b51a6\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4526925948fe27ae1615f9edf51e8631\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_b1528841f442cb477a684c89e913c003\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_8a7d9e27aea2ce8682650bb84d5fcf09\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_f4956424e1007951035b3408c6d337e6\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_f54c5302c3b2082dda224bac2b774e4b\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_3430a468f1214e6b230c989c2d038c02\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_5aadaffad71d55817ffdce6fd08626ff\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9d20c1f7f10248a72a0beb1867e55620\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_a8ccb8bd4b142042724f811e092010ce\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_82d0b22779ac101defd38827e084951e\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_067b92801463f6f341c1ac3c71a9ee28\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_f5f2bf3bbb359605c3d0dc7deef68df7\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7adf75526d36d96b857c7d36c57030bf\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_944f333e46b475289deaec71c5edd272\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_e9c0ad67f4f038ba27016fcba8661857\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_2f0e44b9ead9ac140e7076a68af8babf\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_57a85562c5a5116b5578ba425b1a2870\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_6bda0747bb5532853bf48ba735451618\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_1edf85271a4768b99314a8b030977387\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_03793b9f057b9c71dfc644fb86e3ad7d\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_22bed70b06883148f8b265194819c472\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_f38227105acb1305e8dccf933b497ce9\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_ad576d8433baf485963932cd37115834\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_aeb13ff1126034e78b18d9e09dfedcbd\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_1041ee6fab5b9f1c19ed4eec7867eef4\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_6b726e5da248514b6d7e99331112b9f7\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_sidebar_e1392e482d3daa78e26ce97184f37271\";a:10:{s:4:\"glde\";a:6:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_fba6298e91dc70682d0033904ca78add\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54727,46512,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54728,46512,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54729,46512,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54730,46512,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54731,46421,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54732,46421,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54733,46421,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54734,46421,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54735,46338,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54736,46338,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54737,46338,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54738,46338,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54739,46541,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54740,46541,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54741,46541,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54742,46541,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54743,46486,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54744,46486,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54745,46486,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54746,46486,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54747,46561,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54748,46561,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54749,46561,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54750,46561,'_et_builder_module_features_cache','a:2:{i:0;s:115:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:37:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54751,46347,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54752,46347,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54753,46347,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54754,46347,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54755,50069,'_et_dynamic_cached_shortcodes','a:11:{i:0;s:19:\"el_advanced_flipbox\";i:1;s:33:\"et_pb_social_media_follow_network\";i:2;s:13:\"et_pb_section\";i:3;s:9:\"et_pb_row\";i:4;s:12:\"et_pb_column\";i:5;s:12:\"et_pb_button\";i:6;s:13:\"et_pb_divider\";i:7;s:11:\"et_pb_image\";i:8;s:10:\"et_pb_menu\";i:9;s:25:\"et_pb_social_media_follow\";i:10;s:10:\"et_pb_text\";}'),(54756,50069,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54757,50069,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54758,50069,'_et_builder_module_features_cache','a:2:{i:0;s:115:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:46:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_1ca94b70e48331f894cf570c032dd917\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_f0fd8343860362e3fca7b7e880ab6bc7\";a:4:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_b9f984377d8233ed422275de8a628462\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_4132819785ae28e43ce93f81b720cb74\";a:6:{s:4:\"glde\";a:4:{s:13:\"divider_style\";s:5:\"solid\";s:16:\"divider_position\";s:3:\"top\";s:14:\"divider_weight\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_e5d280599923b5e1b9dd4889e5e96105\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_a8dd1cd2487fe3a681ca6253e8581e6e\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d04035012beaf85cbfde6eea4c9da7be\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_a388969b6b44858e2bf17d7ead2a3d77\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"el_advanced_flipbox_9d028a502377d09e3ec51ae6d9516b34\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54759,46388,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54760,46388,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54761,46388,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54762,46331,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54763,46331,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54764,46331,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54765,46331,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54766,46565,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54767,46565,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54768,46565,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54769,46565,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54770,46376,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54771,46376,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54772,46376,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54773,46376,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54774,46504,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54775,46504,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54776,46504,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54777,46504,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54778,46372,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54779,46372,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54780,46372,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54781,46372,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54782,46370,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54783,46370,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54784,46370,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54785,46380,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54786,46380,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54787,46380,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54788,46380,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54789,49237,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:19:\"el_advanced_flipbox\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:12:\"et_pb_button\";i:8;s:13:\"et_pb_divider\";i:9;s:22:\"et_pb_fullwidth_header\";i:10;s:11:\"et_pb_image\";i:11;s:10:\"et_pb_menu\";i:12;s:13:\"et_pb_sidebar\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54790,49237,'_et_dynamic_cached_attributes','a:6:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54791,49237,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:3:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:25:\"et-gf-playfair-display-sc\";s:62:\"Playfair+Display+SC:regular,italic,700,700italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54792,49237,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51204\":\"2022-09-20 18:15:16\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:60:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_f1ac9afe0a4d8fad7585146c7939c566\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ea6433ee20ee2e86dacfc0154cd3c8e2\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_e09bc11297a0c26775b6999372db4d2f\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_818799a6294bf9715919f5b8f9bcb7d8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d5dcfad120dba1a2a2e08160d1d60309\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_28fe5015b5838ff444c0c137139c7959\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_bd21e468f286f8bb9870d5abd543751c\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_c7cc4850a1866a04c5d44f136d646f01\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_873e1d0fdc83226da92f2ec135f06235\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_f746c051774fabde567d50c328b68670\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_27be74f452c4c6d5d0a42f7ea552c9f3\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_72d1f575c6ec8cbb2af6be735d0a3adc\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_c311ae4495aa4331a400d8134ce26fa2\";a:4:{s:4:\"glde\";a:4:{s:13:\"divider_style\";s:5:\"solid\";s:16:\"divider_position\";s:3:\"top\";s:14:\"divider_weight\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:52:\"el_advanced_flipbox_bcf8f69e83c7e38c2075eb5f824db7cd\";a:10:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:52:\"el_advanced_flipbox_6820888e48b40d2505f21476f27c47ed\";a:10:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_9426791851c1b31bdb1d7b6b37ee9e5f\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_3f9b4f988fd13f7ae15de27a4c512144\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_6b726e5da248514b6d7e99331112b9f7\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_sidebar_e1392e482d3daa78e26ce97184f37271\";a:10:{s:4:\"glde\";a:6:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_fba6298e91dc70682d0033904ca78add\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54793,46499,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54794,46499,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54795,46499,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54796,46499,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54797,46553,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54798,46553,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54799,46553,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54800,46553,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54801,46419,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54802,46419,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54803,46419,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54804,46419,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54805,46378,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54806,46378,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54807,46378,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54808,46378,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54809,46511,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54810,46511,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54811,46511,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54812,46415,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54813,46415,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54814,46415,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}');
INSERT INTO `cuB_postmeta` VALUES (54815,46415,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54816,46343,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54817,46343,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54818,46343,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54819,46343,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54820,46342,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54821,46342,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54822,46342,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54823,46549,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54824,46549,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54825,46549,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54826,46549,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54827,46563,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54828,46563,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54829,46563,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54830,46563,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54831,48410,'_et_dynamic_cached_shortcodes','a:13:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:33:\"et_pb_social_media_follow_network\";i:3;s:13:\"et_pb_section\";i:4;s:9:\"et_pb_row\";i:5;s:12:\"et_pb_column\";i:6;s:12:\"et_pb_button\";i:7;s:22:\"et_pb_fullwidth_header\";i:8;s:11:\"et_pb_image\";i:9;s:10:\"et_pb_menu\";i:10;s:13:\"et_pb_sidebar\";i:11;s:25:\"et_pb_social_media_follow\";i:12;s:10:\"et_pb_text\";}'),(54832,48410,'_et_dynamic_cached_attributes','a:6:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54833,48410,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54834,48410,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51204\":\"2022-09-20 18:15:16\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:88:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_f1ac9afe0a4d8fad7585146c7939c566\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ea6433ee20ee2e86dacfc0154cd3c8e2\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_e09bc11297a0c26775b6999372db4d2f\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_818799a6294bf9715919f5b8f9bcb7d8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d5dcfad120dba1a2a2e08160d1d60309\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_28fe5015b5838ff444c0c137139c7959\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_223964e1c5ef7b3fc7a2719a25d74e94\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_080eab5f262af5f04d6d3e4f667e8c5f\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4dc02451679c89c66939e702a4bc7e6c\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_bfb5422a207442a8d834ed08b2c5080d\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_009a41e7dff593882fb62d3afb7d0ec8\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_88eec88422bac133fe7fd7d87ccb69b1\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_b46138b67dd9ce739808803a774ab422\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_c6089740eef4d437a0485c2b470376b3\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_43cb279e3f7ad3e7a6bff642e8eaecfe\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_bb702fc5cd736e23f2182d071ede720a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_56af822a34062f856dbf93a8f1ee9ae9\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_941c87a444ff966f23b2cb853cef2c95\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_fcb87d4402734653247f5281bfda4255\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_330a58e129b9e09934f69fc8c1a3dd93\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_f93e6c4bf573a2f35b3b8a4cc6749af1\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7ff5aa4c58aec6ce67ae4fcb1947a07e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_4cb9ee066f5b3907d6199607636b8113\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_747a2691bd4a48f12f015aa55771aa2d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_36f1c62f93d95f5d639c2930ab3ae818\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_955e941b36cb73dc1fbb1402133403d5\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_81fd6ebb6210036317f8d2b64e35bc66\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3b6bab25c6d5aefaef6622e34701694b\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_0354f0800c40dee671f1a239a4817b37\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_248a0eb76b2ecc7e6fc39fa72c082500\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_51e1c19c2a5e792defe41d8b29d755e3\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3680def91c7eda446707f471c7ad59d8\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_4ae6626815d4535df08e2d8de2a0ec0a\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_218b51d82038e42714c8fb6360acd6e6\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_73eba6d93042128ac15b8ec1387b0f09\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_4fa571bd8b9d0301c160c974a88839fa\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_64cc6de8dea293ac9ca38e3170bd363d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_d9907b7351ceb2f3f7856bb2d15cf91a\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_bd247699357219b012de532df27181ce\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_be73029b689925d75cfb8bbaaa8c12e9\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_213ad8af53bf64841edf2d8637be15d7\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_3d08002981fcbfa39625bf077c9c58fa\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d97f79a786490a8e41deb0273f0c13ef\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_2a7152faae4bb194c39054425dd794ee\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_a4654ed07a9cf9e1138376b1b3a6523c\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_6b726e5da248514b6d7e99331112b9f7\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_sidebar_e1392e482d3daa78e26ce97184f37271\";a:10:{s:4:\"glde\";a:6:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_fba6298e91dc70682d0033904ca78add\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54835,46446,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54836,46446,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54837,46446,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54838,46446,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54839,46374,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54840,46374,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54841,46374,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54842,46374,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54843,46233,'_et_dynamic_cached_shortcodes','a:13:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:33:\"et_pb_social_media_follow_network\";i:3;s:13:\"et_pb_section\";i:4;s:9:\"et_pb_row\";i:5;s:12:\"et_pb_column\";i:6;s:12:\"et_pb_button\";i:7;s:22:\"et_pb_fullwidth_header\";i:8;s:11:\"et_pb_image\";i:9;s:10:\"et_pb_menu\";i:10;s:13:\"et_pb_sidebar\";i:11;s:25:\"et_pb_social_media_follow\";i:12;s:10:\"et_pb_text\";}'),(54844,46233,'_et_dynamic_cached_attributes','a:6:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54845,46233,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54846,46233,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51261\":\"2022-09-20 18:15:17\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:46:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ea6433ee20ee2e86dacfc0154cd3c8e2\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_fba6298e91dc70682d0033904ca78add\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d5dcfad120dba1a2a2e08160d1d60309\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_6c06a4e1e678e385621c398b3607a4bc\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_6b726e5da248514b6d7e99331112b9f7\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_sidebar_1be2230b05d2b8433adc78af99bba58f\";a:10:{s:4:\"glde\";a:6:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54847,46386,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54848,46386,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54849,46386,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54850,46386,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54851,46384,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54852,46384,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54853,46384,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54854,46384,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54855,46345,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54856,46345,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54857,46345,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54858,46345,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54859,46478,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54860,46478,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54861,46478,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54862,46478,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54863,46543,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54864,46543,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54865,46543,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54866,46543,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54867,46501,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54868,46501,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54869,46501,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54870,46501,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54871,46383,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54872,46383,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54873,46383,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54874,46383,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54875,46433,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54876,46433,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54877,46433,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54878,46433,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(54879,46414,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:20:\"lwp_divi_breadcrumbs\";i:1;s:18:\"et_pb_post_content\";i:2;s:20:\"et_pb_accordion_item\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_accordion\";i:8;s:12:\"et_pb_button\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_menu\";i:11;s:16:\"et_pb_post_title\";i:12;s:12:\"et_pb_search\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(54880,46414,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:11:\"button_icon\";a:2:{i:0;s:19:\"&#xe010;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fade\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";}}'),(54881,46414,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:22:\"et-gf-playfair-display\";s:101:\"Playfair+Display:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"enable_all_character_sets\":\"false\"}\";}'),(54882,46414,'_et_builder_module_features_cache','a:2:{i:0;s:145:\"{\"gph\":-1,\"divi\":\"4.18.0\",\"wp\":\"6.8.1\",\"tb\":{\"51147\":\"2022-09-23 12:59:44\",\"51278\":\"2022-09-26 15:34:33\",\"51148\":\"2022-09-20 18:15:17\"},\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_7f82d521b362844a1387a565829e1e2a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6c06a4e1e678e385621c398b3607a4bc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e00839ef23bb8bf59043d92e9d043372\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_18752cca87dff86b652d7edc7d88557a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d292fa435c4d5901bbc8a0808e7f8168\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66cc171dfaf5edd0b313e790f043bfc6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_921ab7a511afd174b37ada8ab7e266f8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_793e3c66a408b3e1ebe484cde85e3371\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_186b0f13d319f9a80b264400f739e8c6\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_910c8f4f4d8f22be93b1cffd8e927b64\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9855a7f0b9108e4840d60fb6f498e2bc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_963dc86978819203f9f804761c8bf249\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7064e0844bb4105ea01768de57cdf117\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e7e5a28f6798a774c1fa91137c846d0c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3ad4af99d14429dcdeb665b67c2f0359\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_c9c382131b9c97dfa0ed7d912fee012d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_a4b7c9ba0573e455496adcc77cb097bb\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_59ea649d45e9a1eb7f09ecb595db07d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_50f1a6e1cb90b25e4986c28d0ebf07bb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cde6e74dc5b02163a808f3702ffb0577\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_74d96ad1d32ac6ecf0437e20492ed61c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ff6709ae2006a4f67c0c6bf68bb5b4cc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:53:\"lwp_divi_breadcrumbs_ee1ff1492420ef1317bc5ce75942c347\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_109db861366b22a87c03a09a2610f9bf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fbbb9399658f5c11a7b9bd7f4fcbb99d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:49:\"et_pb_post_title_31f948fe77d1db43117d8d77be42a3b9\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:4:\"26px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:3:\"1em\";s:8:\"parallax\";s:3:\"off\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_post_content_e66c2131dabb816f17c81e52dd417389\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_99c1a334e6832c1441c79eba8c1edd44\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_search_f0f25fc307909c1155b74efc71eaf197\";a:9:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_5b7571a70634515ec9a4762d4bf79eae\";a:8:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_56e1bb6a7a4f88714d3f84676ea0b5f5\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_86d3f340282bae13edbf8c3e34c63663\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_a8fc5cc8484589fd55b3ee6db59a1623\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_9866ad9ba99a190708b6c70ed0c51a1c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_74336253b1cda63204c48f2d3c514d93\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_08e8853ca6495f7d77b8ed20a126506d\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_55d4fe4c1a4f8234342ae9322fc1f93e\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_033eac4587f1d453c5fc3e038398ba85\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c0ac35143c12039c9185c9816b18fb36\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_79a627cbf1ab35b45811ff2b59ac5005\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d0b1341cb6ff6c57c0b3ece1995197a3\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_c00f61a799e5ab6e27f02c9cd17cdeec\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_5be37b281306bf0b2fc70ea995718f6c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_34a1e36cc8d547e10aeb975c8b8afb3f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4c2162971d2211ab4748a0696d8609ff\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1350a39b2a2f5ee66b9002dc78c7ec79\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f3eff39ec6d6d64e3b85b7fd34044f53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6a6bd3d5712b8462e99339beeb63b04c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_bdf894f354f55dc8763566da75b1869b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4c5d5c184059c6e810802df6bad41aa4\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_09d1d0bd72e7418e71b52035ca654745\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dde5395821fea08a5151df13319c9a16\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a4de4ed5dab1361815e91d38fbd6effb\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_c577a97c7f296226185131ab61e5a366\";a:5:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_52d1e2192650245576959472122450e0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba3edf6aa131a320fd89ac044155c589\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_05d548f9e2e83b6a34ce0b6a80cd935d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_209c4f4a1682eaf1211b51d8a101da05\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}');
/*!40000 ALTER TABLE `cuB_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_posts`
--

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

--
-- Dumping data for table `cuB_posts`
--

LOCK TABLES `cuB_posts` WRITE;
/*!40000 ALTER TABLE `cuB_posts` DISABLE KEYS */;
INSERT INTO `cuB_posts` VALUES (3,0,'2019-07-26 13:40:02','2019-07-26 13:40:02','/*\r\n	|-------------------------------------------------------------------------- \r\n	| Table of Contents\r\n	|-------------------------------------------------------------------------- \r\n\r\n		General\r\n		Typography\r\n		Links\r\n		Buttons\r\n		Forms\r\n		Form Disclaimer\r\n		Header\r\n		Footer\r\n		Home Page\r\n		Internal Layout\r\n		Blog\r\n		Attorney Profiles\r\n		PPC\r\n		VFI\r\n\r\n	*/\r\n\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n	| General\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n\r\n	/* Set cursor for anchors without HREF */\r\n	a:not([href]) {\r\n		cursor: default;\r\n	}\r\n\r\n	/* Prevent NAP phone numbers from breaking mid-word */\r\n	.nap-item--phone {\r\n		white-space: nowrap;\r\n	}\r\n\r\n	/* Hide empty paragraph tags */\r\n	p:empty {\r\n		display: none;\r\n	}\r\n\r\n	/* Remove bottom margin on single post pages */\r\n	.single .et_pb_post {\r\n		margin-bottom: 0;\r\n	}\r\n\r\n	/* Remove margin from Brightcove video */\r\n	figure.c-brightcove {\r\n		margin: 0;\r\n	}\r\n\r\n	/* Fixes FontAwesome load issue where multiple icons initially appear */\r\n	#fl-template.fl-template .et_pb_custom_button_icon:before {\r\n		display: none !important;\r\n	}\r\n\r\n	#fl-template.fl-template .et_pb_custom_button_icon.divi_font_awesome_icon:before {\r\n		display:inline-block !important;\r\n	}\r\n\r\n	/* Sets image width for featured images in search results */\r\n	.search .entry-featured-image-url img {\r\n		width: 200px!important;\r\n	} \r\n\r\n	/* Remove animation for mobile devices */\r\n	@media (max-width: 768px) {\r\n		.et_had_animation, .et_animated {\r\n			animation: none !important;\r\n			transform: none !important;\r\n			opacity: 1!important;\r\n		}\r\n	}\r\n\r\n	/* Reverse order of column stacking for row on mobile */\r\n	@media (max-width: 980px) {\r\n		.fl-reverse-column-order {\r\n			display: flex;\r\n			flex-direction: column-reverse;\r\n		 }\r\n	}\r\n\r\n	/* Vertically Align Items */\r\n	@media (min-width: 981px) {\r\n		.fl-align-center {\r\n			display: flex;\r\n			align-items: center;\r\n		 }\r\n	}\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Typography\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	html {\r\n		font-size: 18px;\r\n	}\r\n\r\n	body,\r\n	input,\r\n	textarea,\r\n	select {\r\n		font-weight: unset;\r\n		line-height: 1.5;\r\n	}\r\n\r\n	p,\r\n	.et_pb_text ol,\r\n	.et_pb_text ul {\r\n		padding-bottom: 1.5em;\r\n	}\r\n\r\n	hr {\r\n		border: 0.5px solid rgba(0, 0, 0, 0.2);\r\n	}\r\n\r\n	blockquote {\r\n		margin-top: 0;\r\n		margin-bottom: 1.5em;\r\n	}\r\n\r\n	h1,\r\n	h2,\r\n	h3,\r\n	h4,\r\n	h5,\r\n	h6 {\r\n		padding-top: 1.5rem;\r\n		padding-bottom: 1.5rem;\r\n		font-weight: unset;\r\n		line-height: 1.2;\r\n		overflow-wrap: normal;\r\n	}\r\n\r\n	/* Remove the top padding from a header if it’s the first child */\r\n	h1:first-child,\r\n	h2:first-child,\r\n	h3:first-child,\r\n	h4:first-child,\r\n	h5:first-child,\r\n	h6:first-child {\r\n		padding-top: 0;\r\n	}\r\n\r\n	/* Remove the bottom padding from a header if it’s the last child */\r\n	h1:last-child,\r\n	h2:last-child,\r\n	h3:last-child,\r\n	h4:last-child,\r\n	h5:last-child,\r\n	h6:last-child {\r\n		padding-bottom: 0;\r\n	}\r\n\r\n	/* Reset button font weight and line height */\r\n	.et_pb_button {\r\n		font-weight: unset;\r\n		line-height: 1.2 !important;\r\n	}\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Links\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/* Dark links (dark links on a light background) */\r\n	/* .fl-darklinks a:link,\r\n	.fl-darklinks a:visited {\r\n		color: #1c5285 !important;\r\n		text-decoration: underline;\r\n	} */\r\n\r\n	.fl-darklinks a:hover,\r\n	.fl-darklinks a:focus,\r\n	.fl-darklinks a:active {\r\n		color: #000000 !important;\r\n		text-decoration: none;\r\n	}\r\n\r\n	/* Light links (light links on a dark background) */\r\n	/* .fl-lightlinks a:link,\r\n	.fl-lightlinks a:visited {\r\n		color: #ccdceb !important;\r\n		text-decoration: underline;\r\n	} */\r\n\r\n	.fl-lightlinks a:hover,\r\n	.fl-lightlinks a:focus,\r\n	.fl-lightlinks a:active {\r\n		color: #211865 !important;\r\n		text-decoration: none;\r\n	}\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Buttons\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/* Form submit buttons */\r\n	.fl-short-form input[type=\'button\'],\r\n	.fl-long-form input[type=\'button\'],\r\n	.fl-attorney-form .nf-form-content input[type=\'button\'] {\r\n		height: auto !important;\r\n		padding: 15px 30px !important;\r\n		color: #ffffff !important;\r\n		background: #1c5285 !important;\r\n		border: none !important;\r\n		border-width: 0px !important;\r\n		border-radius: 0px !important;\r\n		font-family: inherit !important;\r\n		font-size: inherit !important;\r\n		font-weight: inherit !important;\r\n		line-height: 1.2 !important;\r\n		letter-spacing: 0px !important;\r\n		text-transform: none !important;\r\n		cursor: pointer !important;\r\n		transition: all 0.2s ease-out !important;\r\n	}\r\n\r\n	/* Form submit buttons hover */\r\n	.fl-short-form input[type=\'button\']:hover,\r\n	.fl-long-form input[type=\'button\']:hover,\r\n	.fl-attorney-form .nf-form-content input[type=\'button\']:hover {\r\n		color: #ffffff !important;\r\n		background: #000000 !important;\r\n	}\r\n\r\n	/* Email me button */\r\n	.fl-email-attorney a.et_pb_email_attorney {\r\n		height: auto !important;\r\n		padding: 15px 30px !important;\r\n		color: #ffffff !important;\r\n		background: #1c5285 !important;\r\n		border: none !important;\r\n		border-width: 0px !important;\r\n		border-radius: 0px !important;\r\n		font-family: inherit !important;\r\n		font-size: inherit !important;\r\n		font-weight: inherit !important;\r\n		line-height: 1em !important;\r\n		letter-spacing: 0px !important;\r\n		text-transform: none !important;\r\n		cursor: pointer !important;\r\n		transition: all 0.2s ease-out !important;\r\n	}\r\n\r\n	/* Email me button hover */\r\n	.fl-email-attorney a.et_pb_email_attorney:hover {\r\n		padding: 15px 30px !important;\r\n		color: #ffffff !important;\r\n		background: #000000 !important;\r\n		border: none !important;\r\n		border-radius: 0px !important;\r\n		letter-spacing: 0px !important;\r\n		cursor: pointer !important;\r\n	}\r\n\r\n	/* Back to top button */\r\n	.et_pb_scroll_top.et-pb-icon {\r\n\r\n	} \r\n\r\n	/* Back to top button hover */\r\n	.et_pb_scroll_top.et-pb-icon:hover {\r\n\r\n	}\r\n\r\n	/* \r\n	|-------------------------------------------------------------------------- \r\n	| Forms\r\n	|-------------------------------------------------------------------------- \r\n	*/ \r\n\r\n	/* Remove max width and padding */ \r\n	.nf-form-content {\r\n		padding: 0 !important;\r\n		max-width: 100% !important;\r\n	}\r\n\r\n	/* Hide Short Form – Contact Page, Thank You Page */\r\n	.page-contact .fl-short-form-section,\r\n	.page-contact .fl-short-form,\r\n	.page-thank-you .fl-short-form-section,\r\n	.page-thank-you .fl-short-form {\r\n		display: none;\r\n	}\r\n\r\n	/* Fixes checkboxes on Long Form */\r\n	.nf-form-content label,\r\n	.fl-long-form .nf-form-content label {\r\n		line-height: 25px!important;\r\n	}\r\n\r\n	.checkbox-container .nf-field-element,\r\n	.listcheckbox-container .nf-field-element input[type=\"checkbox\"],\r\n	.fl-long-form .checkbox-container .nf-field-element,\r\n	.fl-long-form .listcheckbox-container .nf-field-element input[type=\"checkbox\"] {\r\n		opacity: 0!important;\r\n	}\r\n\r\n	.listcheckbox-container .nf-field-element label:after,\r\n	.fl-long-form .listcheckbox-container .nf-field-element label:after {\r\n		left: -30px !important;\r\n	}\r\n\r\n	.nf-form-content .listcheckbox-wrap li {\r\n		margin-bottom: 10px!important;\r\n	}\r\n\r\n	/* Changes Error Message, Required Symbol when Short Form is set to light text */\r\n	.fl-short-form.et_pb_bg_layout_dark .nf-error .nf-error-msg,\r\n	.fl-short-form.et_pb_bg_layout_dark .ninja-forms-req-symbol,\r\n	.fl-short-form.et_pb_bg_layout_dark .nf-error-msg {\r\n		color: #FF0000 !important;\r\n	}\r\n\r\n	/* Customize Short Form styles - enable, as needed */\r\n\r\n	/* Short Form Field Sytles */\r\n	/*.fl-short-form .nf-form-content .list-select-wrap .nf-field-element>div,\r\n	.fl-short-form .nf-form-content input:not([type=button]),\r\n	.fl-short-form .nf-form-content textarea,\r\n	.fl-short-form .nf-form-content .list-select-wrap .nf-field-element>div:focus,\r\n	.fl-short-form .nf-form-content input:not([type=button]):focus,\r\n	.fl-short-form .nf-form-content textarea:focus {\r\n		background: ;\r\n		border: ;\r\n		border-radius: ;\r\n		box-shadow: ;\r\n		color: ;\r\n	}*/\r\n\r\n	/* Short Form Field Placeholder Text */\r\n	/*.fl-short-form .nf-form-content .list-select-wrap .nf-field-element>div::placeholder,\r\n	.fl-short-form .nf-form-content input:not([type=button])::placeholder,\r\n	.fl-short-form .nf-form-content textarea::placeholder {\r\n		color: ;\r\n	}*/\r\n\r\n	/* Short Form Field Label Text */\r\n	/*.fl-short-form .nf-field-label label {\r\n		font-family: ;\r\n		text-transform: ;\r\n		font-weight: ;\r\n	}*/\r\n\r\n	/* Short Form Error Message */\r\n	/*.fl-short-form .nf-error.field-wrap .nf-field-element:after {\r\n		background: !important;\r\n		color: !important;\r\n	}*/\r\n\r\n	/* Short Form Required Symbol */\r\n	/*.fl-short-form .nf-error-msg,\r\n	.fl-short-form .ninja-forms-req-symbol {\r\n		color: !important;\r\n	}*/\r\n\r\n	/* Short Form Field Error */\r\n	/*.fl-short-form .nf-error .ninja-forms-field {\r\n	 * 	border: 1px solid !important;\r\n	}*/\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Form Disclaimer\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	.fl-disclaimer {\r\n		max-height: 0;\r\n		opacity: 0;\r\n		overflow: hidden;\r\n		transition: opacity 0.15s ease-in, max-height 0.15s ease-in 0.15s;\r\n	}\r\n\r\n	.fl-disclaimer.active {\r\n		opacity: 1;\r\n		transition: opacity 0.15s ease-out 0.15s, max-height 0.15s ease-out;\r\n	}\r\n\r\n	.fl-disclaimer__inner {\r\n		position: relative;\r\n		margin-top: 25px;\r\n		padding: 20px;\r\n		border: 1px solid rgba(0, 0, 0, 0.2);\r\n		background: #fff;\r\n		font-size: 14px;\r\n		color: black;\r\n		transform: scale(0.95);\r\n		transition: transform 0.15s ease-out;\r\n	}\r\n\r\n	.fl-disclaimer.active .fl-disclaimer__inner {\r\n		transform: scale(1);\r\n		transition: transform 0.15s ease-out 0.15s;\r\n	}\r\n\r\n	.fl-disclaimer__icon {\r\n		display: inline-block;\r\n		vertical-align: top;\r\n		font-family: dashicons;\r\n	} \r\n\r\n	.fl-disclaimer__close {\r\n		position: absolute;\r\n		top: 0;\r\n		right: 0;\r\n		display: flex;\r\n		justify-content: center;\r\n		padding: 5px;\r\n		font-family: dashicons;\r\n		font-size: 16px;\r\n		cursor: pointer;\r\n		transition: .15s ease-out;\r\n	}\r\n\r\n	.fl-disclaimer__close:hover, .fl-disclaimer__close:focus {\r\n		opacity: 0.5;\r\n	}\r\n\r\n	/* Fixes form disclaimer popup icons not showing. */\r\n	.dashicons-info {\r\n		vertical-align: bottom;\r\n	}\r\n\r\n	.dashicons-info:before {\r\n		font-family: FontAwesome;\r\n		content: \"\\f05a\";\r\n	}\r\n\r\n	.dashicons-no-alt {\r\n		padding-top: 0;\r\n	}\r\n\r\n	.dashicons-no-alt:before {\r\n		font-family: FontAwesome;\r\n		content: \"\\f00d\";\r\n	} \r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Header\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Footer\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Home Page\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Internal Layout\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Blog\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/* Adds space above Monarch share buttons */\r\n	.single-post .et_social_inline {\r\n		margin-top: 30px!important;\r\n	}\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Attorney Profiles\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/* Indents bulleted lists on attorney profiles */\r\n	.type-people .fl_people_single ul.bio-list {\r\n		padding-left: 30px;\r\n	}\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| PPC\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/* PPC Form Button */\r\n	.fl-ppc-form input[type=’button’] {\r\n		height: auto !important;\r\n		padding: 15px 30px !important;\r\n		color: #ffffff !important;\r\n		background: #1c5285 !important;\r\n		border: none !important;\r\n		border-width: 0px !important;\r\n		border-radius: 0px !important;\r\n		font-family: inherit !important;\r\n		font-size: inherit !important;\r\n		font-weight: inherit !important;\r\n		line-height: 1.2 !important;\r\n		letter-spacing: 0px !important;\r\n		text-transform: none !important;\r\n		cursor: pointer !important;\r\n		transition: all 0.2s ease-out !important;\r\n	}\r\n\r\n	/* PPC Form Button Hover */\r\n	.fl-ppc-form input[type=’button’]:hover {\r\n		color: #ffffff !important;\r\n		background: #000000 !important;\r\n	}\r\n\r\n	/* PPC Dark links (dark links on a light background) */\r\n	.fl-ppc-darklinks a:link,\r\n	.fl-ppc-darklinks a:visited {\r\n		color: #1c5285 !important;\r\n		text-decoration: underline;\r\n	}\r\n\r\n	.fl-ppc-darklinks a:hover,\r\n	.fl-ppc-darklinks a:focus,\r\n	.fl-ppc-darklinks a:active {\r\n		color: #000000 !important;\r\n		text-decoration: none;\r\n	}\r\n\r\n	/* PPC Light links (light links on a dark background) */\r\n	.fl-ppc-lightlinks a:link,\r\n	.fl-ppc-lightlinks a:visited {\r\n		color: #ccdceb !important;\r\n		text-decoration: underline;\r\n	} \r\n\r\n	.fl-ppc-lightlinks a:hover,\r\n	.fl-ppc-lightlinks a:focus,\r\n	.fl-ppc-lightlinks a:active {\r\n		color: #ffffff !important;\r\n		text-decoration: none;\r\n	} \r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| VFI\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/* Visual Focus Indicator (VFI) across entire site. */\r\n	a:focus,\r\n	form .ninja-forms-field.nf-element[type=button]:focus,\r\n	input[type=search]:focus,\r\n	form.search-form input.search-submit:focus,\r\n	form.et_pb_searchform input.et_pb_searchsubmit:focus,\r\n	select:focus,\r\n	.nf-form-content input:focus,\r\n	.nf-form-content textarea:focus,\r\n	.nf-form-content .checkbox-label-focused:after,\r\n	.swiper-buttton-container div:focus {\r\n		outline: #000 2px dotted!important;\r\n		outline-offset: 0!important;\r\n		box-shadow: 0 0 0 2px #fff!important;\r\n		border-radius: 0!important;\r\n	} \r\n\r\n	/* Allows VFIs to be seen on blog share buttons */\r\n	.single-post a.et_social_share.keyboard-outline,\r\n	.et_social_icons_container a:focus {\r\n		outline: #fff 2px dotted!important;\r\n		outline-offset: -4px!important;\r\n	} \r\n\r\n	/* Allows VFIs to be seen on carousel links, blurb links, logo links */\r\n	.dica_divi_carousel a,\r\n	.et_pb_main_blurb_image a,\r\n	.et_pb_menu__logo a {\r\n		display: table!important;\r\n	}\r\n\r\n	/* Allows VFIs to be seen on logo links */\r\n	.et_pb_menu__logo a {\r\n		outline-offset: -2px!important;\r\n	}\r\n\r\n	/* Allows VFIs to be seen on carousel links */\r\n	.dica_divi_carousel a,\r\n	.et_pb_image a {\r\n		display: inline-block!important;\r\n	}\r\n\r\n	/* Allows VFIs to be seen on radio buttons */\r\n	.listradio-wrap .nf-field-element input {\r\n		display: initial!important;\r\n	}\r\n\r\n	/* Fixes tabbing and Visual Focus Indicators (VFIs) working properly in the main menu (in older sites) */\r\n	.nav li.et-hover>ul {\r\n		opacity: 1;\r\n		visibility: visible;\r\n	}\r\n	/*\r\n	|------------------------------------------------------------------\r\n	|       1.  Verical center/end\r\n	|------------------------------------------------------------------\r\n	*/\r\n	/* Vertically center header elements */\r\n	.fl-vertical-center {\r\n		display: flex;\r\n		flex-direction: column;\r\n		justify-content: center;\r\n	}\r\n	/* Vertically end header elements */\r\n	.fl-vertical-end {\r\n		display: flex;\r\n		flex-direction: column;\r\n		justify-content: flex-end;\r\n	}\r\n	body{overflow-x: hidden !important;}\r\n	.et_pb_row{\r\n	max-width: 1366px!important;\r\n	padding:0px !important;\r\n	}\r\n.fl-banner-row{\r\n	max-width: 100% !important;\r\n	width:100% !important;\r\n}\r\n	#fl-sticky-mobile-menu {\r\n		width: 100% !important;\r\n	}\r\n	/*\r\n	|------------------------------------------------------------------\r\n	|       2.   Light Links & Dark Links\r\n	|------------------------------------------------------------------\r\n	*/\r\n	.fl-lightlinks a,#email_attorney a{color: #fff !important; text-decoration:underline !important;}\r\n	.fl-lightlinks a:hover, .fl-lightlinks a:focus, .fl-lightlinks a:active,#email_attorney a:hover{color:#fff !important;text-decoration:none !important;}\r\n	.fl-darklinks a{color: #211865 !important;\r\n	  text-decoration:underline !important;\r\n	}\r\n	.fl-darklinks a:hover, .fl-darklinks a:focus, .fl-darklinks a:active{color:#000 !important;\r\n	text-decoration:none !important;}\r\n	.fl-inner-left a,.fl-blog-left a{text-decoration:underline !important;}\r\n	.fl-inner-left a:hover,.fl-blog-left a:hover{text-decoration:none !important;}\r\n	.fl-blog-left h2.entry-title a{text-decoration:none !important;}\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n			  3. Desktop Header\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n	@media all and (min-width: 981px) {\r\n	  .fl-center{\r\n		display: flex;\r\n		flex-direction: column;\r\n		justify-content: center;\r\n	  }\r\n	  .fl-desk-header .nav li.menu-item--depth-0 a:hover{\r\n		opacity:1 !important;\r\n	  }\r\n	  .fl-desk-header .nav li.menu-item--depth-0>a{\r\n		color: #fff !important;\r\n		padding: 13px 0 0 !important;\r\n	  }\r\n	  .fl-desk-header .nav li.current-menu-item>a, .fl-desk-header .nav li>a:hover{opacity:1 !important; color: #fff !important;}\r\n		.fl-desk-header li.menu-item--depth-0:last-child{\r\n			padding-right: 0px !important;\r\n		}\r\n		.fl-desk-header .et-menu li li a{\r\n			padding: 10px !important;\r\n			width:240px !important;\r\n		color: #211865 !important;\r\n		font-size: 17px !important;\r\n		}\r\n		.fl-desk-header .et-menu-nav>ul ul{padding:0px !important;\r\n	  margin-top:5px !important;}\r\n		.fl-desk-header .nav li li{\r\n		padding:0px !important;\r\n		background-color: #ffff;\r\n	  }\r\n	  .fl-desk-header .nav li.menu-item--depth-0{\r\n		padding:0px !important;\r\n		margin:0px 20px 0px 20px!important;\r\n	  }\r\n	  .fl-desk-header .nav li.menu-item--depth-0:last-child{\r\n		padding-right:0px !important;\r\n		margin-right:0px !important;\r\n	  }\r\n	  .fl-desk-header .nav ul li a:hover, .fl-desk-header ul.sub-menu li.current-menu-item>a, .fl-desk-header .et_pb_menu .nav li ul.sub-menu a:hover,.fl-desk-header .et_pb_menu .nav li ul.sub-menu li.current-menu-item>a{\r\n		background-color: #2e5591!important;\r\n		color: #fff !important;\r\n	  }\r\n	  .fl-desk-header .et_pb_menu_0_tb_header.et_pb_menu .nav li ul.sub-menu li.current-menu-item>a {\r\n		  background-color: #ed7f66 !important;\r\n		color: #fff !important;\r\n	  }\r\n	  .fl-desk-header .et_pb_menu_0_tb_header.et_pb_menu .nav li ul.sub-menu li.current-menu-item ul li a:hover{\r\n		  background-color: #ed7f66 !important;\r\n		color: #000 !important;\r\n	  }\r\n	   .fl-desk-header .et_pb_menu_inner_container{\r\n		float:none !important;\r\n	  } \r\n	  .fl-desk-header .et_pb_menu ul li>a {\r\n		padding: 0px 0px 8px !important;\r\n		color:#870821 !important;\r\n	}\r\n	  .fl-desk-header .et-menu .menu-item-has-children>a {\r\n		padding-right: 20px !important;}\r\n	  .fl-desk-header .et_pb_menu .nav li ul.sub-menu a {\r\n		padding: 12px 15px !important;\r\n		font-size: 17px !important;\r\n	   background: #fbeace !important;\r\n		color: #000 !important;\r\n	}\r\n	  .fl-desk-header .et-menu-nav .menu-item--depth-1>ul {\r\n		margin-top: 20px !important;\r\n	}\r\n	.fl-desk-header .et-menu .menu-item-has-children:hover>a {\r\n		color: #fff !important;\r\n	}\r\n	.fl-desk-header .nav li>a:before {\r\n		content: \"\";\r\n	  border-top: #fff solid 4px;\r\n		position: absolute;\r\n		width: 1%;\r\n		left: 0;\r\n		top: 0px;\r\n		transition: all 1s;\r\n	   opacity:0;\r\n	}\r\n	.fl-desk-header .nav li.current-menu-item>a:before,.fl-desk-header .nav li>a:hover:before  {\r\n	   width: 100%;\r\n		opacity: 1;\r\n	}\r\n	  .fl-desk-header .et_pb_menu .nav li ul.sub-menu a:before,.fl-desk-header .nav li ul.sub-menu a:before {\r\n		content: none;\r\n	}\r\n	  .fl-desk-header .et-menu li li.menu-item-has-children>a:first-child:after {\r\n		right: 10px !important;\r\n	}\r\n	  .fl-desk-header .et-menu .menu-item-has-children>a:first-child:after {\r\n		right: -15px;\r\n		top: 15px;\r\n	}\r\n	}\r\n	@media (max-width:1440px) and (min-width:981px){\r\n	  .fl-desk-header .nav li.menu-item--depth-0{\r\n		margin: 0px 8px 0px 8px!important;\r\n	  }\r\n	}\r\n	header{background:#000 !important;}\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n	|    4. Mobile Header Columns\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n	 #fl-template .mobile_menu_bar:after{\r\n	  color:#fff !important;\r\n	}\r\n	.fl-mobile-menu.et_pb_menu ul li a{\r\n	  opacity:1 !important;\r\n	}\r\n	.fl-mobile-menu.et_pb_menu ul li.current-menu-item>a{ \r\n		color: #211865 !important;\r\n	  }\r\n	#fl-template .et_pb_menu .et_mobile_menu .menu-item-has-children.visible>a.fl-toggle-icon, #main-header #fl-template .et_mobile_menu .menu-item-has-children.visible>a.fl-toggle-icon{\r\n	  transform: rotate(0deg) !important;\r\n	}\r\n	#fl-template .et_pb_menu .et_mobile_menu .menu-item-has-children>a.fl-toggle-icon{\r\n	  right:0px !important;\r\n	}\r\n	#main-header #fl-template .et_mobile_menu .menu-item-has-children>a.fl-toggle-icon{\r\n	  right:10px !important;\r\n	}\r\n	#fl-template .et_mobile_menu { width: 100vw; height: calc(100vh - 50px); padding-bottom: 350px; overflow: auto; }\r\n	@media (max-width:457px){\r\n	  .fl-logo {\r\n		width: 200px!important;\r\n	}\r\n	}\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n	|    5. Practice Area\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n	.fl-prac-module:hover .et_pb_main_blurb_image img{\r\n		filter: brightness(0) invert(1);\r\n		transform: rotateY( 360deg);\r\n		transition: all ease-out .6s;\r\n	}\r\n	.fl-prac-module h3.et_pb_module_header {\r\n		padding-bottom: 0px !important;\r\n	}\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n					  Module3\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n	.fl-list ul {\r\n		padding-bottom: 0px !important;\r\n	}\r\n	.fl-list ul li {\r\n		padding-left: 1.5em;\r\n		margin-bottom: 10px;\r\n	}\r\n	.fl-list ul li:before {\r\n		content: \"\\f0e3\";\r\n		font-family: \'FontAwesome\'!important;\r\n		color: #ffffff;\r\n		padding-right: 12px;\r\n		display: inline-block;\r\n		margin-left: -1.5em;\r\n		font-weight: 500;\r\n	}\r\n	.fl-feature.et_pb_equal_columns {\r\n		max-width: 900px !important;\r\n	}\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n		Testimonial slider CSS\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n		.fl-testimonials .et_pb_slide_description, .et_pb_slider_fullwidth_off .et_pb_slide_description {\r\n		width: auto; margin: auto; padding: 0px !important; }\r\n		.fl-testimonials .et-pb-arrow-prev { left: 1px !important; opacity: 1 !important; top:55px !important; }\r\n		.fl-testimonials .et-pb-arrow-next { right: 1px !important; opacity: 1 !important; top:55px !important; }\r\n		.fl-testimonials h2.et_pb_slide_title { padding-bottom: 20px; }\r\n		.fl-testimonials .et_pb_slider:hover .et-pb-arrow-next { right: 0; }\r\n		.fl-testimonials .et_pb_slider:hover .et-pb-arrow-prev { left: 0; }\r\n		.fl-testimonials .et_pb_slide { padding: 5% 10%; }\r\n		.fl-testimonials .et_pb_slide_content { text-shadow: none !important; }\r\n		.fl-testimonials span { font-size: 17px !important; }\r\n	.fl-testimonials  .et-pb-controllers {\r\n		position: absolute;\r\n		bottom: 0px;\r\n		left: 0;\r\n		width: 100%;\r\n		text-align: center;\r\n		z-index: 10;\r\n	}\r\n	.fl-testimonials .et-pb-controllers .et-pb-active-control {\r\n		color: #fff!important;\r\n		background-color: #004993!important;\r\n	}\r\n	.fl-testimonials .et-pb-controllers a {\r\n		width: 12px!important;\r\n		height: 12px!important;\r\n		border: 2px solid #004993!important;\r\n		background-color: #efefef!important;\r\n		color: #6d6d6d!important;\r\n		opacity: 1!important;\r\n	}\r\n/***********Banner fullwidth slider************/\r\n\r\n}\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n					   Short Form\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n\r\n	.fl-short-form::-webkit-input-placeholder { /* Edge */\r\n	  color:#333 !important;\r\n	  opacity:1 !important;\r\n	}\r\n\r\n	.fl-short-form::-ms-input-placeholder { /* Internet Explorer 10-11 */\r\n	  color:#333 !important;\r\n	  opacity:1 !important;\r\n	}\r\n	.fl-short-form::-moz-input-placeholder{\r\n	  color:#333 !important;\r\n	  opacity: 1 !important;}\r\n\r\n	.fl-short-form::placeholder {\r\n	  color:#333 !important;\r\n	  opacity:1 !important;\r\n	}\r\n	.fl-short-form .nf-field-container .field-wrap .nf-element::placeholder {\r\n		color: #333;\r\n	  opacity:1 !important;\r\n	  font-size:16px !important;\r\n	}\r\n	.fl-short-form .nf-form-content input[type=button] {\r\n		background: #fff !important;\r\n		color: #211865 !important;\r\n		font-size: 17px !important;\r\n		font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\r\n		padding: 15px 25px !important;\r\n		cursor: pointer;\r\n	  line-height: 20px !important;\r\n	letter-spacing: 1px;\r\n	  float:right !important;\r\n	 text-transform: uppercase !important;\r\n	  font-weight: 400 !important;\r\n	  filter:none !important;\r\n	 } \r\n	.fl-short-form .nf-form-content input[type=button]:hover{\r\n	   background: #2e5591 !important;\r\n	  color: #fff !important;\r\n	}\r\n	.fl-short-form .nf-form-content {padding-top: 30px !important;}\r\n	.fl-short-form .nf-form-fields-required {text-align: center !important;\r\n	font-size:18px !important;}\r\n	.fl-short-from .form-links{\r\n	  text-align:left !important;\r\n	  font-size: 17px !important;\r\n	}\r\n	.fl-short-form .nf-form-content textarea.ninja-forms-field {\r\n		height: 170px;\r\n		width: 99.5%!important;\r\n		float: left!important;\r\n	}\r\n	@media (max-width:980px){\r\n	  .fl-short-form .nf-form-content input[type=button]{\r\n		padding: 15px 25px!important;\r\n		font-size:14px !important;\r\n	  }\r\n	  .fl-short-form .nf-form-fields-required{\r\n		text-align: center !important;\r\n	  }\r\n	}\r\n	@media (min-width: 600px){\r\n	.fl-short-form .nf-row .nf-cell:nth-child(3) {padding-right: 0px!important;}\r\n	}\r\n	.fl-short-form .nf-error-msg,.fl-short-form .ninja-forms-req-symbol {color:#000 !important;}\r\n	@media (max-width: 600px){\r\n	.fl-short-form .form-links,.fl-disclaimer.active {\r\n	  float: left!important;\r\n	  text-align:left !important;}\r\n	  .fl-short-form .nf-form-content input[type=button]{padding:15px 35px !important;\r\n		font-size:18px !important; \r\n	  float:none !important;}\r\n	}\r\n	.fl-short-form .nf-form-content .list-select-wrap .nf-field-element>div, .fl-short-form .nf-form-content input:not([type=button]), .fl-short-form .nf-form-content textarea{\r\n	  border-width: 1px!important;\r\n		border-color: #c4c4c4 !important;\r\n		background: #fff !important;\r\n		color: #000 !important;\r\n	}\r\n	@media (max-width:350px){\r\n	  .fl-short-form .nf-form-content input[type=button]{\r\n		padding: 15px 10px!important;\r\n		font-size: 14px!important;\r\n	  }\r\n	}\r\n	.fl-short-form input[type=email], .fl-long-form input[type=email]{padding-right:50px !important;}\r\n	.fl-short-form .nf-form-content label {\r\n		font-size: 14px !important;\r\n	}\r\n	@media (min-width:980px){\r\n	  .page-id-46220 #contactform .et_pb_row {\r\n		max-width: 100% !important;\r\n	}\r\n	}\r\n	.fl-short-form .nf-field-container {\r\n		margin-bottom: 15px !important;\r\n	}\r\n@media (max-width:980px){\r\n	.fl-short-form .nf-row:nth-child(3) .nf-cell {\r\n    width: 100%!important;\r\n}\r\n	.fl-short-form .nf-form-content input[type=button]{\r\n		float: none !important;\r\n	}\r\n}\r\n	 /*\r\n	|--------------------------------------------------------------------------\r\n	| Form Disclaimer iCOn Fix\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n	.dashicons-info:before {\r\n	   content: \"\\70\" !important;\r\n	font-weight: 900 !important;\r\n	font-family: \'ETmodules\' !important;\r\n	}\r\n	.dashicons-no-alt:before {\r\n	content: \"\\4d\" !important;\r\n	  font-weight: 900 !important;\r\n	font-family: \'ETmodules\' !important;\r\n	}\r\n	.fl-disclaimer__close {\r\n	font-family: ETmodules !important;\r\n	}\r\n	.fl-disclaimer__icon {\r\n	font-family: ETmodules !important;\r\n	font-weight: 900 !important;\r\n	}\r\n	@media(max-width:450px){\r\n	  h1,h2,h3,h4{\r\n		word-break:keep-all;\r\n	  }\r\n	  .fl-cta-button{\r\n		font-size:18px !important;\r\n	  }\r\n	  .fl-image {\r\n		max-width: 250px!important;\r\n	}\r\n	}\r\n	/*\r\n	|------------------------------------------------------------------\r\n	|      animation setting css\r\n	|------------------------------------------------------------------\r\n	*/\r\n	@media (max-width: 768px) {\r\n	.et_had_animation, .et_animated {\r\n	   animation: none!important;\r\n	   transform: none!important;\r\n	   opacity: 1!important;\r\n	}\r\n	}\r\n	.fl-attorney .et_pb_blurb_container {\r\n		padding: 18px 0 0!important;\r\n	}\r\n	/*\r\n		|--------------------------------------------------------------------------\r\n		| Innerpage\r\n		|--------------------------------------------------------------------------\r\n		*/\r\n	/* Show parent pages */\r\n	  .fl-sidebar .menu-practice-areas-container > ul > li {\r\n		display: block;\r\n	  margin-bottom: 12px !important;\r\n	  }\r\n\r\n	  /* Show related child pages */\r\n	  .fl-sidebar .menu-practice-areas-container .current-menu-item > ul > li,\r\n	  .fl-sidebar .menu-practice-areas-container .current-menu-parent > ul > li,\r\n	  .fl-sidebar .menu-practice-areas-container .current-menu-grandparent > ul > li  {\r\n		display: block;\r\n	  }\r\n	  .fl-sidebar .menu-item-has-children.current-menu-item > a::after,\r\n	  .fl-sidebar .menu-item-has-children.current-menu-parent > a::after {\r\n		  content: \"\";\r\n	  }\r\n\r\n	  /* style sub menu */\r\n	  .fl-sidebar .sub-menu {\r\n		margin-top: .5em;\r\n		text-transform: initial;\r\n		font-weight: 400;\r\n	  }\r\n\r\n	  /* style parent pages */\r\n	  .fl-sidebar .menu-practice-areas-container > ul > li {\r\n		font-weight: 400;\r\n	  }\r\n	.fl-sidebar .menu li:before,#fl-sidebar-blog ul li:before, #fl-sidebar-blog .textwidget p:before {\r\n	  content: \"\\39\";\r\n		font-family: ETmodules!important;\r\n		position: absolute;\r\n		margin: 0px -25px;\r\n	  color:#fff;\r\n	  }\r\n	.fl-sidebar ul.menu,#fl-sidebar-blog ul, #fl-sidebar-blog .textwidget p {\r\n		margin: 0px 0px 0px 22px;\r\n	}\r\n	.fl-sidebar li a{color:#fff !important;\r\n	  text-decoration:none !important;}\r\n	.fl-sidebar li.current-menu-item>a,.fl-sidebar li a:hover,.fl-sidebar .menu-practice-areas-container>ul>li.menu-item.menu-item-has-children.current-menu-parent.menu-item--depth-0>a, .fl-sidebar li.menu-item.menu-item-has-children.current-menu-parent.menu-item--depth-1>a {\r\n		color: #fff !important;\r\n	text-decoration:underline !important;}\r\n	.fl-sidebar h4.widgettitle {\r\n		border-bottom: 2px dotted #fff;\r\n		padding-bottom: 15px!important;\r\n		margin-bottom: 25px;\r\n	}\r\n	.fl-sidebar .menu-practice-areas-container>ul>li{\r\n	  margin-top: 12px !important;\r\n	}\r\n	.fl-inner-left .et_pb_section, .fl-inner-left .et_pb_row {\r\n		padding: 0;\r\n	}\r\n	.fl-inner-left h1,.fl-inner-left h2, .fl-inner-left h3 {\r\n		padding: 10px 0px 22px !important;\r\n	  line-height: 1.25em !important;\r\n	}\r\n	.fl-inner-left p,.fl-row-attorney p, .fl-row-attorney li ,.fl-inner-left li{\r\n		padding-bottom: 15px;\r\n	  font-size: 18px;\r\n		line-height: 1.5em;\r\n	}\r\n	.fl-inner-left ul {\r\n		padding-bottom: 15px;\r\n	}\r\n	.fl-inner-left .simple-sitemap-page .children{\r\n	  margin-top: 10px;\r\n	}\r\n	.et_pb_widget_area{\r\n	  border:3px solid #fff !important;\r\n	}\r\n	@media (max-width:980px){\r\n	  .fl-inner-left h1,.fl-inner-left h2, .fl-inner-left h3,.fl-row-attorney h1{\r\n		font-size: 30px !important;\r\n		line-height: 1.25em !important;\r\n	  }\r\n	  .fl-row-attorney h2,.fl-row-attorney h3{\r\n		font-size:24px !important;\r\n		line-height: 1.25em !important;\r\n	  }\r\n	}\r\n	@media (max-width:768px){\r\n	  .fl-inner-left h1, .fl-inner-left h2, .fl-inner-left h3, .fl-row-attorney h1{\r\n		font-size:28px !important;\r\n		line-height: 1.25em !important;\r\n	  }\r\n	  .fl-row-attorney h2,.fl-row-attorney h3{\r\n		font-size:24px !important;\r\n		line-height: 1.25em !important;\r\n	  }\r\n	}\r\n	.fl-sidebar h2.widgettitle {\r\n		padding-bottom: 10px !important;\r\n	}\r\n	/*\r\n		|--------------------------------------------------------------------------\r\n		| Contact Page\r\n		|--------------------------------------------------------------------------\r\n		*/\r\n	/************Hidden shortform in contact page*********************/\r\n	.page-id-45927 #contactform {\r\n		display: none !important;\r\n	}\r\n	.fl-long-form {\r\n		margin-top: 30px;\r\n	}\r\n	.fl-long-form .nf-form-content input[type=button],#email_attorney .nf-form-content input[type=button],body.et-db #et-boc .fl-email-btn .et_pb_button{\r\n		background: #211865 !important;\r\n		color: #fff !important;\r\n		font-size: 19px !important;\r\n		font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\r\n		padding: 15px 30px!important;\r\n		cursor: pointer;\r\n		line-height: 20px!important;\r\n		letter-spacing: 1px !important;\r\n	  	font-weight: 700;\r\n	  	text-transform: uppercase !important;\r\n	}\r\n	.fl-long-form .nf-form-content input[type=button]:hover,#email_attorney .nf-form-content input[type=button]:hover,body.et-db #et-boc .fl-email-btn .et_pb_button:hover{\r\n	    background:#000!important;\r\n		color:#fff   !important;\r\n	}\r\n	.checkbox-container .nf-field-element, .listcheckbox-container .nf-field-element input[type=\"checkbox\"]{\r\n	  opacity: 0;}\r\n	.fl-long-form .nf-form-content .ninja-forms-field{\r\n	  color:#000 !important;\r\n	}\r\n	#email_attorney .nf-form-content input:not([type=button]), #email_attorney .nf-form-content textarea{\r\n	  color:#000 !important;\r\n	}\r\n	.fl-email-me a.et_pb_button {\r\n		padding: 15px 30px !important;\r\n		color: #000!important;\r\n		border-radius: 60px 0 60px 60px!important;\r\n	}\r\n	.fl-email-me a.et_pb_button:hover {\r\n		padding: 15px 30px !important;\r\n		color: #000!important;\r\n		border-radius: 60px 60px 60px 60px!important;\r\n	}\r\n		#email_attorney {\r\n    background: #2e5591!important;\r\n}\r\n\r\n	 /* Remove duplicate checkboxes */\r\n	.fl-long-form .list-checkbox-wrap input[type=”checkbox”] {\r\n	   opacity: 0;\r\n	 }\r\n\r\n	 /* Correct line-height alignment issue after duplicate checkboxes have been removed */\r\n	.fl-long-form .list-checkbox-wrap li label{\r\n	  line-height:1.4em !important;\r\n	}\r\n	.fl-long-form .nf-form-fields-required,.fl-long-form .form-links,.fl-short-form .form-links,.fl_people_single a {\r\n		font-size: 18px !important;\r\n	}\r\n\r\n\r\n	/* --------------------------------\r\n	Blog Right side content\r\n	--------------------------------- */\r\n	@media (min-width: 981px){\r\n	  #fl-sidebar-blog{ width: 30% !important; }\r\n	  .et_pb_column #fl-sidebar-blog{ width: 100% !important; }\r\n	  #fl-sidebar-blog .et_pb_widget.widget_media_image img{ max-width: 95% !important;}\r\n	}\r\n	#fl-sidebar-blog { padding: 30px !important; margin-bottom: 0px;}\r\n	#fl-sidebar-blog .et_pb_widget{ float: none; width: 100%; margin-bottom: 30px;}\r\n\r\n	#fl-sidebar-blog a{ color: #fff !important;\r\n	  text-decoration:none !important;}\r\n	#fl-sidebar-blog a:hover { color: #fff !important;\r\n	text-decoration:underline !important;}\r\n	/* Sidebar WidgetTitle */\r\n	#fl-sidebar-blog .widgettitle { font-weight: 600; font-size: 32px; color: #fff;\r\n	padding-bottom: 17px !important;}\r\n\r\n	/* Sidebar List */\r\n	#fl-sidebar-blog .et_pb_widget ul{ list-style-type: circle; padding-left: 20px;}\r\n	#fl-sidebar-blog .et_pb_widget ul li { padding-left: 0px; position: relative; color: #fff;\r\n	margin-bottom: 25px;}\r\n	#fl-sidebar-blog .et_pb_widget ul li a { color: #fff;\r\n	text-decoration:none !important;}\r\n	#fl-sidebar-blog .et_pb_widget ul li a:hover { color: #fff !important;\r\n	text-decoration:underline !important;}\r\n\r\n	/* Sidebar Search Bar */\r\n	#fl-sidebar-blog input.search-field{\r\n	  padding: 0 14px;\r\n	  border: none !important;\r\n		width: 63%;\r\n	  height:50px;\r\n	  margin-right: 5px;\r\n	}\r\n	#fl-sidebar-blog input[type=\'submit\']{\r\n	   width:32%;\r\n		 height:50px !important;\r\n		 font-size:14px;\r\n		 line-height: 20px !important;\r\n		 cursor: pointer!important;\r\n		background: #fff !important;;\r\n		color: #211865 !important;\r\n		font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\r\n	  vertical-align: middle;\r\n		letter-spacing: 1px;\r\n	  border:1px solid transparent !important;\r\n	}\r\n	#fl-sidebar-blog input[type=\'submit\']:hover{\r\n	  background: #318bb4 !important;\r\n	  color: #fff !important;\r\n	}\r\n	#fl-sidebar-blog::-webkit-input-placeholder {\r\n	  color: #333 !important;\r\n	  font-size:16px;\r\n	  line-height:20px;\r\n	}\r\n	#fl-sidebar-blog :-ms-input-placeholder { \r\n	  color: #333 !important;\r\n	  font-size:16px;\r\n	  line-height:20px;\r\n	}\r\n	#fl-sidebar-blog ::placeholder {\r\n	  color: #333  !important;\r\n	  font-size:16px;\r\n	  line-height:20px;\r\n	}\r\n	.fl-blog-left article {\r\n		margin-bottom: 30px !important;\r\n	}\r\n	.fl-blog-left .post-content-inner {\r\n		padding-bottom: 7px !important;\r\n	}\r\n	.fl-blog-left article p.post-meta {\r\n		margin-bottom: 8px !important;\r\n	}\r\n	.fl-blog-left h2.entry-title {\r\n		padding: 0 0 18px !important;\r\n	}\r\n	.fl-blog-left h1 {\r\n		padding: 0 0 18px !important;\r\n	  font-size: 40px !important;\r\n	}\r\n	.fl-blog-left .et_social_inline {\r\n		margin-top: 25px !important;\r\n	}\r\n	@media (max-width:767px){\r\n	  .fl-blog-left h2{\r\n		font-size: 32px !important;\r\n	  }\r\n	  .fl-blog-left h1{\r\n		font-size: 35px !important;\r\n	  }\r\n	}\r\n	@media (max-width:400px){\r\n	 #fl-sidebar-blog input[type=\'submit\'] {\r\n		width: 40%;\r\n		font-size: 14px;\r\n		letter-spacing: 0px;\r\n		margin-top: 2px;\r\n	}\r\n	#fl-sidebar-blog input.search-field {\r\n		width: 45%;\r\n	}\r\n	}\r\n	.fl-row-attorney ul{\r\n	  padding-bottom:12px !important;\r\n	}\r\n	#email_attorney span.ninja-forms-req-symbol,.fl-long-form .ninja-forms-req-symbol {\r\n		color: #FF0000 !important;\r\n	}\r\n	#fl-sidebar-blog  input::placeholder{\r\n	color:#333 !important;\r\n	font-weight:600;\r\n	}\r\n	.fl-inner-left .alignright,.fl-inner-left article img,.fl-inner-left figure img,.fl-inner-left img {\r\n		margin: 5px 10px 15px !important;\r\n		display: block !important;\r\n		float: none !important;\r\n	}\r\n\r\n	.fl-cta-button-mobile .et_pb_text_inner{\r\n	  line-height:3em !important;\r\n	}\r\n\r\n	@media(max-width:450px){\r\n	  h1,h2,h3,h4{\r\n		word-break:keep-all;\r\n	  }\r\n	  .fl-cta-button{\r\n		font-size:18px !important;\r\n	  }\r\n	  .fl-image {\r\n		max-width: 250px!important;\r\n	}\r\n	}\r\n.mfp-close-btn-in .mfp-close {\r\n    color: #fff;\r\n    opacity: 1;\r\n}\r\n.fl-row-attorney h2 {\r\n    padding-bottom: 10px !important;\r\n}\r\n/*\r\n|--------------------------------------------------------------------------\r\n          Banner\r\n|--------------------------------------------------------------------------\r\n*/\r\n.fl-banner-slider .et-pb-active-slide .et_pb_slide_description {\r\nanimation-name: none;}\r\n\r\n.fl-banner-slider .et-pb-controllers a {\r\n   width: 14px !important;\r\n   height: 14px !important;\r\n   opacity: 1 !important;\r\n   background-color: 000 !important;\r\n   border: 2px solid #fff !important;\r\n	color:#fff !important;\r\n}\r\n.fl-banner-slider .et-pb-controllers a.et-pb-active-control {\r\n   background-color: #fff !important;\r\n	color:#000 !important;\r\n}\r\n.fl-banner-slider .et-pb-controllers {\r\n   position: absolute;\r\n   bottom: 60px;\r\n   left: 0;\r\n   width: 100%;\r\n   text-align: center;\r\n   z-index: 10;\r\n}\r\n.fl-banner-slider .et_pb_slide_description\r\n{\r\n	padding:19% 0 !important;\r\n}\r\n/*Mobile Slider */\r\n.fl-disable-lightbox .et-pb-controllers a{\r\n	background-color: #fff !important;\r\n}\r\n.fl-disable-lightbox .et_pb_bg_layout_light .et-pb-controllers .et-pb-active-control{\r\n	background-color: #fff !important;\r\n}\r\n.fl-disable-lightbox .et-pb-slider-arrows{display: none !important;}\r\n.fl-disable-lightbox .et-pb-controllers{display:block !important;}\r\n/* Disable click effect of image */\r\n.fl-disable-lightbox a { pointer-events: none;}\r\n.fl-disable-lightbox .et_overlay {display: none !important;}\r\n/*Mobile Slider */\r\n.fl-disable-lightbox .et-pb-slider-arrows,\r\n.fl-disable-lightbox .et-pb-controllers{display:none !important;}\r\n/* Disable click effect of image */\r\n.fl-disable-lightbox a { pointer-events: none;}\r\n.fl-disable-lightbox .et_overlay {display: none !important;}\r\n@media(min-width:980px) and (max-width:1140px){\r\n	.fl-menu li{margin-left:14px !important;}\r\n}\r\n@media all and (max-width: 350px){\r\n	.fl-border-style-left .et_pb_image_wrap:after{display:none !important}\r\n	.fl-border-style-right .et_pb_image_wrap:after{display:none !important;}\r\n}\r\n\r\n\r\n.nf-form-content .nf-field-container .nf-field .nf-field-element input[type=button]:focus {\r\n    outline: #000 2px dotted!important;\r\n    outline-offset: 0!important;\r\n    box-shadow: 0 0 0 2px #fff!important;\r\n    border-radius: 0!important; }\r\n\r\n\r\n/*---call btn misalign for text spacing*/\r\n.fl-3-column a{\r\n    line-height: 2.5!important;\r\n}\r\n\r\n#fl-template .mobile_menu_bar:after{\r\n	font-size: 16px!important;\r\n}\r\n\r\n.mobile_menu_bar{\r\n	top:-6px!important;\r\n}\r\n.parent-pageid-45925 #main-content .fl-inner-left.fl-darklinks h2{\r\n	font-size: 23px !important;\r\n	padding-top: 5px !important;\r\n	padding-bottom: 10px !important;\r\n}\r\n.et_pb_post_content_0_tb_body.et_pb_post_content a.btn-email-staff {\r\n	display: inline-block;\r\n    background: #211865!important;\r\n    color: #fff!important;\r\n    font-size: 19px!important;\r\n    font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif!important;\r\n    padding: 15px 30px!important;\r\n    cursor: pointer;\r\n    line-height: 20px!important;\r\n    letter-spacing: 1px!important;\r\n    font-weight: 700;\r\n    text-transform: uppercase!important;\r\n    text-decoration: none !important;\r\n    text-align: center;\r\n	margin-bottom: 20px;\r\n}\r\n.et_pb_post_content_0_tb_body.et_pb_post_content a.btn-email-staff:hover,\r\n.et_pb_post_content_0_tb_body.et_pb_post_content a.btn-email-staff:focus{\r\n	background: #000 !important;\r\n	color: #fff !important;\r\n}\r\n@media only screen and (min-width: 981px) {\r\nbody .et_pb_button {\r\n	font-size: 35px!important;\r\n}\r\n}','divi_child','','publish','closed','closed','','divi_child','','','2022-01-12 20:21:56','2022-01-13 01:21:56','',0,'https://im-template.findlaw5.flsitebuilder.com/2019/07/26/divi_child/',0,'custom_css','',0),(6,26,'2019-07-29 11:00:10','2019-07-29 15:00:10','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" disabled_on=\"off|off|off\" admin_label=\"BANNER\" module_class=\"fl-banner-slider\" _builder_version=\"4.18.0\" z_index=\"1\" custom_margin=\"||||false|false\" custom_margin_tablet=\"-330px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||true|false\" bottom_divider_color=\"#ffffff\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" background_color_gradient_start_tablet_preview_tablet=\"rgba(0,35,51,0)\" sticky_enabled=\"0\"][et_pb_row module_class=\"fl-banner-row\" _builder_version=\"4.18.0\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" disabled_on=\"off|off|off\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_slider show_pagination=\"off\" disabled_on=\"off|off|off\" module_class=\"fl-fullwidth-slider\" _builder_version=\"4.18.0\" background_color=\"#211865\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(33,24,101,0.36) 0%|rgba(33,24,101,0.36) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(33,24,101,0.36)\" background_color_gradient_end=\"rgba(33,24,101,0.36)\" background_enable_image=\"off\" module_alignment=\"center\" height_tablet=\"500px\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"4000\" global_colors_info=\"{}\" background__hover_enabled=\"off|desktop\"][et_pb_slide _builder_version=\"4.18.0\" background_enable_color=\"off\" background_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/bannerslide1-2.jpg\" background_enable_image=\"on\" background_last_edited=\"off|desktop\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/AdobeStock_344563317-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/AdobeStock_344563317-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" background_position_tablet=\"center_left\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.18.0\" background_enable_color=\"off\" background_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/bannerslide3.jpeg\" background_enable_image=\"on\" background_last_edited=\"off|desktop\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/AdobeStock_362306286-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/AdobeStock_362306286-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.18.0\" background_enable_color=\"off\" background_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/bannerslid2.jpeg\" background_enable_image=\"on\" background_position=\"bottom_center\" background_last_edited=\"off|desktop\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/AdobeStock_258696218-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/AdobeStock_258696218-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|off|off\" _builder_version=\"4.16\" background_color=\"#211865\" custom_padding=\"||6px|||\" global_colors_info=\"{}\"][et_pb_row make_equal=\"on\" disabled_on=\"off|off|off\" admin_label=\"Banner\" _builder_version=\"4.16\" width=\"90%\" custom_margin=\"|auto|32px|auto||\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" module_class=\"fl-vertical-end\" _builder_version=\"4.16\" custom_padding=\"||||false|false\" custom_padding_last_edited=\"off|phone\" animation_direction=\"right\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Banner-heading\" module_class=\"fl-banner-heading\" _builder_version=\"4.18.0\" text_font=\"Lora|500||on|||||\" text_text_color=\"#ffffff\" text_font_size=\"35px\" text_letter_spacing=\"7.5px\" text_line_height=\"1.25em\" header_font=\"|300|||||||\" header_text_align=\"center\" header_text_color=\"#ffffff\" header_font_size=\"50px\" header_letter_spacing=\"5px\" text_orientation=\"center\" custom_margin=\"20px||0px||false|false\" custom_padding=\"||15px||false|false\" hover_enabled=\"0\" text_font_size_tablet=\"25px\" text_font_size_phone=\"\" text_font_size_last_edited=\"on|desktop\" text_letter_spacing_tablet=\"1px\" text_letter_spacing_phone=\"\" text_letter_spacing_last_edited=\"on|tablet\" header_text_align_tablet=\"center\" header_text_align_phone=\"\" header_text_align_last_edited=\"on|desktop\" header_font_size_tablet=\"37px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"1px\" header_letter_spacing_phone=\"0px\" header_letter_spacing_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1 style=\"padding-top: 0;\"><span style=\"color: #ffffff;\"><strong><span style=\"font-size: 24px;\">A Collaborative Approach To<br /></span></strong><strong>Workers\' Compensation Defense</strong></span></h1>[/et_pb_text][et_pb_divider color=\"#ffffff\" divider_weight=\"3px\" disabled_on=\"off|off|off\" _builder_version=\"4.16\" width=\"175px\" module_alignment=\"center\" min_height=\"3px\" height=\"3px\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_text admin_label=\"Content\" module_class=\"fl-banner-title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"#ffffff\" text_font_size=\"22px\" text_line_height=\"30px\" text_orientation=\"center\" max_width_tablet=\"100%\" max_width_phone=\"100%\" max_width_last_edited=\"on|phone\" module_alignment=\"left\" custom_margin=\"23px||0px||false|false\" custom_margin_last_edited=\"off|desktop\" text_font_size_tablet=\"20px\" text_font_size_phone=\"19px\" text_font_size_last_edited=\"on|desktop\" text_line_height_tablet=\"\" text_line_height_phone=\"\" text_line_height_last_edited=\"on|desktop\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>We believe the best way to successfully defend a workers’ compensation claim is to build strong working relationships with our clients rather than acting as third-party hired hands.</p>[/et_pb_text][et_pb_button button_url=\"/about/\" button_text=\"Why We\'re Better\" button_alignment=\"center\" button_alignment_tablet=\"center\" button_alignment_phone=\"center\" button_alignment_last_edited=\"on|desktop\" admin_label=\"Why We\'re Better\" module_class=\"fl-button\" _builder_version=\"4.18.0\" custom_button=\"on\" button_text_size=\"35px\" button_bg_color=\"#FFFFFF\" button_use_icon=\"off\" custom_margin=\"35px||||false|false\" custom_margin_last_edited=\"off|phone\" custom_padding=\"40px|55px|40px|55px|true|true\" custom_padding_tablet=\"|35px||35px|true|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" button_text_color_last_edited=\"off|desktop\" custom_css_main_element=\"font-size: 35px!important\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"off|hover\" button_text_color__hover_enabled=\"on|hover\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_enable_color__hover=\"on\" button_text_color__hover=\"#ffffff\" button_bg_color_gradient_start__hover=\"#211865\" button_bg_color_gradient_end__hover=\"#211865\" button_bg_color_gradient_stops__hover=\"#211865 0%|#211865 100%\" button_bg_color__hover=\"#2E5591\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"TAGLINE\" _builder_version=\"4.16\" background_color=\"#211865\" custom_margin=\"||||false|false\" custom_padding=\"60px||40px||false|false\" custom_padding_tablet=\"35px||35px||true|false\" custom_padding_phone=\"\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"off|desktop\" admin_label=\"Tagline\" _builder_version=\"4.16\" width=\"90%\" module_alignment=\"center\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider color=\"#ffffff\" divider_weight=\"3px\" disabled_on=\"off|off|off\" _builder_version=\"4.16\" width=\"175px\" module_alignment=\"center\" min_height=\"3px\" height=\"3px\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_text admin_label=\"At the Law Offices...\" _builder_version=\"4.18.0\" text_font=\"Playfair Display||||||||\" text_text_color=\"#ffffff\" text_font_size=\"30px\" text_line_height=\"1.3em\" text_orientation=\"center\" background_layout=\"dark\" max_width_last_edited=\"off|phone\" custom_margin=\"10px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"zoom\" text_font_size_tablet=\"28px\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" module_alignment_last_edited=\"off|phone\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">At The Law Offices of Melissa A. Day, our focus is on individual claims,<br />not trying to maximize hearings.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"PRACTICE AREAS-Desktop\" _builder_version=\"4.16\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"#211865 0%|#2e5591 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"#211865\" background_color_gradient_end=\"#2e5591\" background_enable_image=\"off\" custom_padding=\"100px||50px||false|false\" custom_padding_tablet=\"60px||50px||false|false\" custom_padding_phone=\"50px||50px||false|false\" background_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"4.16\" positioning=\"none\" width=\"90%\" module_alignment=\"center\" custom_margin=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"||||false|false\" global_colors_info=\"{}\"][et_pb_blurb_extended title=\"The Team\" url=\"/the-teams/\" image=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Hands-In-100x100-1-1.png\" image_max_width=\"90px\" title_hover_color=\"#ffffff\" text_hover_color=\"#ffffff\" animation=\"off\" admin_label=\"The Teams\" module_class=\"fl-prac-module\" _builder_version=\"4.18.0\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#211865\" header_font_size=\"21px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_text_align=\"center\" body_text_color=\"#211865\" body_font_size=\"16px\" body_line_height=\"1.6em\" background_color=\"#ffffff\" text_orientation=\"center\" min_height=\"100%\" custom_padding=\"50px|15px|50px|15px|true|true\" custom_padding_phone=\"|20px||20px|false|true\" custom_padding_last_edited=\"off|phone\" link_option_url=\"/the-teams/\" box_shadow_style=\"preset3\" box_shadow_vertical=\"54px\" box_shadow_blur=\"52px\" box_shadow_spread=\"-58px\" box_shadow_color=\"rgba(255,255,255,0.69)\" locked=\"off\" global_colors_info=\"{}\" background__hover_enabled=\"on|hover\" read_more_bg_color__hover_enabled=\"on|hover\" read_more_text_color__hover_enabled=\"on|hover\" transform_styles__hover_enabled=\"off|desktop\" transform_scale__hover_enabled=\"off|desktop\" transform_translate__hover_enabled=\"off|desktop\" transform_rotate__hover_enabled=\"off|desktop\" transform_skew__hover_enabled=\"off|desktop\" transform_origin__hover_enabled=\"off|desktop\" transform_scale__hover=\"103%|103%\" background_enable_color__hover=\"on\" background_color__hover=\"#211865\" use_background_color_gradient__hover=\"off\" background_color_gradient_start__hover=\"rgba(162,72,12,0.87)\" background_color_gradient_end__hover=\"rgba(162,72,12,0.87)\" background_color_gradient_overlays_image__hover=\"on\" background_enable_image__hover=\"off\" background_color_gradient_stops__hover=\"rgba(162,72,12,0.87) 0%|rgba(162,72,12,0.87) 100%\"][/et_pb_blurb_extended][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blurb_extended title=\"LOMAD Newsletter\" url=\"/blog/lomad-newsletter/\" image=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Newsletter-Blue-3.png\" alt=\"LOMAD newsletter\" image_max_width=\"90px\" title_hover_color=\"#ffffff\" text_hover_color=\"#ffffff\" animation=\"off\" admin_label=\"LOMAD Newsletter\" module_class=\"fl-prac-module\" _builder_version=\"4.18.0\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#211865\" header_font_size=\"21px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_text_align=\"center\" body_text_color=\"#211865\" body_font_size=\"16px\" body_line_height=\"1.6em\" background_color=\"#ffffff\" text_orientation=\"center\" min_height=\"100%\" custom_margin_tablet=\"10px||10px||true|false\" custom_margin_phone=\"10px||10px||true|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"50px|15px|50px|15px|true|true\" custom_padding_phone=\"|20px||20px|false|true\" custom_padding_last_edited=\"off|phone\" link_option_url=\"/blog/lomad-newsletter/\" box_shadow_style=\"preset3\" box_shadow_vertical=\"54px\" box_shadow_blur=\"52px\" box_shadow_spread=\"-58px\" box_shadow_color=\"rgba(255,255,255,0.69)\" locked=\"off\" global_colors_info=\"{}\" background__hover_enabled=\"on|hover\" read_more_bg_color__hover_enabled=\"on|hover\" read_more_text_color__hover_enabled=\"on|hover\" transform_styles__hover_enabled=\"off|desktop\" transform_scale__hover_enabled=\"off|desktop\" transform_translate__hover_enabled=\"off|desktop\" transform_rotate__hover_enabled=\"off|desktop\" transform_skew__hover_enabled=\"off|desktop\" transform_origin__hover_enabled=\"off|desktop\" transform_scale__hover=\"103%|103%\" background_enable_color__hover=\"on\" background_color__hover=\"#211865\" use_background_color_gradient__hover=\"off\" background_color_gradient_start__hover=\"rgba(162,72,12,0.87)\" background_color_gradient_end__hover=\"rgba(162,72,12,0.87)\" background_color_gradient_overlays_image__hover=\"on\" background_enable_image__hover=\"off\" background_color_gradient_stops__hover=\"rgba(162,72,12,0.87) 0%|rgba(162,72,12,0.87) 100%\"][/et_pb_blurb_extended][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blurb_extended title=\"LOMAD-TV\" url=\"/webinars/\" image=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LOMAD-Icons-TV-blue-100-x-100.png\" image_max_width=\"90px\" title_hover_color=\"#ffffff\" text_hover_color=\"#ffffff\" animation=\"off\" admin_label=\"LOMAD TV\" module_class=\"fl-prac-module\" _builder_version=\"4.18.0\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#211865\" header_font_size=\"21px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_text_align=\"center\" body_text_color=\"#211865\" body_font_size=\"16px\" body_line_height=\"1.6em\" background_color=\"#ffffff\" text_orientation=\"center\" min_height=\"100%\" custom_padding=\"50px|15px|50px|15px|true|true\" custom_padding_phone=\"|20px||20px|false|true\" custom_padding_last_edited=\"off|phone\" link_option_url=\"/webinars/\" box_shadow_style=\"preset3\" box_shadow_vertical=\"54px\" box_shadow_blur=\"52px\" box_shadow_spread=\"-58px\" box_shadow_color=\"rgba(255,255,255,0.69)\" locked=\"off\" global_colors_info=\"{}\" background__hover_enabled=\"on|hover\" read_more_bg_color__hover_enabled=\"on|hover\" read_more_text_color__hover_enabled=\"on|hover\" transform_styles__hover_enabled=\"off|desktop\" transform_scale__hover_enabled=\"off|desktop\" transform_translate__hover_enabled=\"off|desktop\" transform_rotate__hover_enabled=\"off|desktop\" transform_skew__hover_enabled=\"off|desktop\" transform_origin__hover_enabled=\"off|desktop\" transform_scale__hover=\"103%|103%\" background_enable_color__hover=\"on\" background_color__hover=\"#211865\" use_background_color_gradient__hover=\"off\" background_color_gradient_start__hover=\"rgba(162,72,12,0.87)\" background_color_gradient_end__hover=\"rgba(162,72,12,0.87)\" background_color_gradient_overlays_image__hover=\"on\" background_enable_image__hover=\"off\" background_color_gradient_stops__hover=\"rgba(162,72,12,0.87) 0%|rgba(162,72,12,0.87) 100%\"][/et_pb_blurb_extended][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"CONTENT MODULE 1\" _builder_version=\"4.16\" background_color=\"#2e5591\" custom_padding=\"50px||50px||true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"50px||50px||true|false\" locked=\"off\" global_colors_info=\"{}\" background_color_gradient_start_tablet_preview_tablet=\"#333333\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Module 1\" _builder_version=\"4.16\" width=\"90%\" width_last_edited=\"off|phone\" max_width_last_edited=\"off|phone\" custom_margin_last_edited=\"off|phone\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" module_class=\"fl-vertical-center\" _builder_version=\"4.16\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"5%\" background_enable_color_tablet=\"off\" use_background_color_gradient_tablet=\"off\" background_enable_image_tablet=\"off\" global_colors_info=\"{}\" custom_padding__hover_enabled=\"off|desktop\"][et_pb_text admin_label=\"A Better Approach\" _builder_version=\"4.16\" text_font=\"Playfair Display||||||||\" text_font_size=\"25px\" header_font=\"||||||||\" header_2_font=\"|600|||||||\" header_2_text_align=\"left\" header_2_text_color=\"#ffffff\" header_2_font_size=\"38px\" header_3_font=\"|600|||||||\" header_4_font=\"|600|||||||\" header_5_font=\"|600|||||||\" header_6_font=\"|600|||||||\" width_last_edited=\"off|phone\" max_width_last_edited=\"off|phone\" custom_margin=\"||0px||false|false\" custom_padding=\"||15px||false|false\" custom_padding_tablet=\"||||false|false\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"off|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|phone\" header_text_align_last_edited=\"off|phone\" header_font_size_last_edited=\"off|tablet\" header_2_text_align_tablet=\"center\" header_2_text_align_phone=\"\" header_2_text_align_last_edited=\"on|desktop\" header_2_font_size_tablet=\"35px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\" header_2_2_font_size_phone=\"32px\" header_3_2_font_size_phone=\"32px\" header_4_2_font_size_phone=\"32px\" header_5_2_font_size_phone=\"32px\" header_6_2_font_size_phone=\"32px\" header_2_2_font_size_tablet=\"35px\" header_3_2_font_size_tablet=\"35px\" header_4_2_font_size_tablet=\"35px\" header_5_2_font_size_tablet=\"35px\" header_6_2_font_size_tablet=\"35px\" header_2_2_font_size_last_edited=\"on|phone\" header_3_2_font_size_last_edited=\"on|phone\" header_4_2_font_size_last_edited=\"on|phone\" header_5_2_font_size_last_edited=\"on|phone\" header_6_2_font_size_last_edited=\"on|phone\"]<p style=\"padding-bottom: 10px !important; color: #fff;\">A Better Approach To</p>\n<h2 style=\"padding-top:0px !important;\">Workers’ Compensation Defense</h2>[/et_pb_text][et_pb_divider color=\"#ffffff\" divider_weight=\"3px\" disabled_on=\"off|off|on\" _builder_version=\"4.16\" width=\"175px\" module_alignment=\"left\" min_height=\"3px\" height=\"3px\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-vertical-center\" _builder_version=\"4.16\" custom_padding=\"|||50px|false|false\" custom_padding_tablet=\"0px|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"5%\" border_width_left=\"2px\" border_color_left=\"#ffffff\" border_width_left_tablet=\"0px\" border_width_left_phone=\"\" border_width_left_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"In the new landscape...\" _builder_version=\"4.18.0\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.55em\" width_last_edited=\"off|phone\" max_width_last_edited=\"off|phone\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" link_text_color_last_edited=\"off|desktop\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"]<p>In the new landscape of defending workers’ compensation claims in New York, our belief is that employers, TPAs and carriers need claim-based representation, not hearing-based representation. Our philosophy is to minimize your risk exposure by coordinating a strategy with defense counsel throughout the life of the claim: from filing of the C-3 or EC-84 to final resolution.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"CONTENT MODULE 2\" _builder_version=\"4.16\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"#2e5591 0%|#211865 100%\" background_color_gradient_start=\"#2e5591\" background_color_gradient_end=\"#211865\" custom_padding=\"50px||50px||true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"50px||50px||true|false\" background_color_tablet=\"#2e5591\" background_last_edited=\"on|phone\" background_enable_color_tablet=\"on\" use_background_color_gradient_tablet=\"off\" background_color_gradient_stops_tablet=\"#ffffff 0%|#211865 100%\" background_color_gradient_start_tablet=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_5,2_5\" make_equal=\"on\" admin_label=\"Module 2\" _builder_version=\"4.16\" width=\"90%\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" module_class=\"fl-vertical-center\" _builder_version=\"4.16\" custom_padding=\"|50px|||false|false\" custom_padding_tablet=\"|0px|35px|0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_direction=\"right\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Applying the\" _builder_version=\"4.16\" text_font=\"Playfair Display||||||||\" text_text_color=\"#ffffff\" text_font_size=\"25px\" header_font=\"||||||||\" header_2_font=\"|600|||||||\" header_2_text_align=\"left\" header_2_text_color=\"#ffffff\" header_2_font_size=\"38px\" header_3_font=\"|600|||||||\" header_4_font=\"|600|||||||\" header_5_font=\"|600|||||||\" header_6_font=\"|600|||||||\" width_last_edited=\"off|phone\" max_width_last_edited=\"off|phone\" custom_margin=\"||0px||false|false\" custom_padding=\"||15px||false|false\" custom_padding_tablet=\"||||false|false\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"off|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|phone\" header_text_align_last_edited=\"off|phone\" header_font_size_last_edited=\"off|tablet\" header_2_text_align_tablet=\"center\" header_2_text_align_phone=\"\" header_2_text_align_last_edited=\"on|desktop\" header_2_font_size_tablet=\"35px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\" header_2_2_font_size_phone=\"32px\" header_3_2_font_size_phone=\"32px\" header_4_2_font_size_phone=\"32px\" header_5_2_font_size_phone=\"32px\" header_6_2_font_size_phone=\"32px\" header_2_2_font_size_tablet=\"35px\" header_3_2_font_size_tablet=\"35px\" header_4_2_font_size_tablet=\"35px\" header_5_2_font_size_tablet=\"35px\" header_6_2_font_size_tablet=\"35px\" header_2_2_font_size_last_edited=\"on|phone\" header_3_2_font_size_last_edited=\"on|phone\" header_4_2_font_size_last_edited=\"on|phone\" header_5_2_font_size_last_edited=\"on|phone\" header_6_2_font_size_last_edited=\"on|phone\"]<p style=\"padding-bottom: 10px !important; color: #ffffff;\">Applying the 5 Cs Of</p>\n<h2 style=\"padding-top:0px !important;\">Client Service Business Model</h2>[/et_pb_text][et_pb_divider color=\"#ffffff\" divider_weight=\"3px\" disabled_on=\"off|off|off\" admin_label=\"Client Service Business Model\" _builder_version=\"4.16\" width=\"175px\" module_alignment=\"left\" min_height=\"3px\" height=\"3px\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_text admin_label=\"At LOMAD...\" _builder_version=\"4.18.0\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.55em\" custom_padding=\"20px||15px||false|false\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<p>At The Law Offices of Melissa A. Day, we are not like other New York workers’ compensation defense firms. Our legal team is focused on customer relationships and best in class service. Our business model is best understood by understanding the 5 Cs of client service:</p>[/et_pb_text][et_pb_text ul_type=\"none\" ul_position=\"inside\" ul_item_indent=\"1px\" admin_label=\"5 C\'s\" module_class=\"fl-list\" _builder_version=\"4.18.0\" text_text_color=\"#333333\" text_font_size=\"18px\" text_line_height=\"1.55em\" ul_text_color=\"#ffffff\" ul_font_size=\"18px\" custom_padding=\"||15px||false|false\" text_orientation_tablet=\"left\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>Collaboration – We partner with our clients on their claims.</li>\n<li>Current – We stay current on changes in the law.</li>\n<li>Creative – We don’t just do what has always been done; we make law.</li>\n<li>Comprehensive – We provide exhaustive analyses rather than being knee jerk, ad hoc mouthpieces.</li>\n<li>Candor – We believe that the strongest relationships grow as a result of trust, which can only be cultivated through rigorous honesty.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"If your current atty...\" _builder_version=\"4.16\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.55em\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<p>If your current attorney is not delivering on these principles, it is time to get <strong>M.A.D.</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.16\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_209705558.jpeg\" custom_padding_last_edited=\"off|phone\" animation_direction=\"left\" background_last_edited=\"on|phone\" background_enable_image_tablet=\"off\" box_shadow_style=\"preset3\" box_shadow_vertical=\"53px\" box_shadow_blur=\"52px\" box_shadow_spread=\"-58px\" box_shadow_color=\"rgba(255,255,255,0.69)\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_209705558.jpeg\" alt=\"New York City skyline and Statue of Liberty\" title_text=\"AdobeStock_209705558\" admin_label=\"Statue of Liberty photo\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_padding=\"70px|||||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"CONTENT MODULE 3\" _builder_version=\"4.16\" background_color=\"#211865\" custom_padding=\"50px||100px||false|false\" custom_padding_tablet=\"||50px||false|false\" custom_padding_phone=\"||50px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" make_equal=\"on\" admin_label=\"Module 2\" _builder_version=\"4.16\" background_color=\"#211865\" width=\"90%\" custom_padding=\"0px||0px||true|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_443605491-1.jpg\" custom_padding_last_edited=\"off|phone\" animation_direction=\"left\" background_last_edited=\"on|phone\" background_enable_image_tablet=\"off\" box_shadow_style=\"preset3\" box_shadow_vertical=\"54px\" box_shadow_blur=\"52px\" box_shadow_spread=\"-58px\" box_shadow_color=\"rgba(255,255,255,0.69)\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_443605491-1.jpg\" title_text=\"AdobeStock_443605491-1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"fl-vertical-center\" _builder_version=\"4.16\" background_color=\"#211865\" custom_padding=\"|||50px|false|false\" custom_padding_tablet=\"35px|0px||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_direction=\"right\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Don\'t Settle\" _builder_version=\"4.18.0\" text_font=\"Playfair Display||||||||\" text_font_size=\"25px\" header_font=\"||||||||\" header_2_font=\"|600|||||||\" header_2_text_align=\"left\" header_2_text_color=\"#ffffff\" header_2_font_size=\"38px\" header_3_font=\"|600|||||||\" header_4_font=\"|600|||||||\" header_5_font=\"|600|||||||\" header_6_font=\"|600|||||||\" width_last_edited=\"off|phone\" max_width_last_edited=\"off|phone\" custom_margin=\"||0px||false|false\" custom_padding=\"||15px||false|false\" custom_padding_tablet=\"||||false|false\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"off|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|phone\" header_text_align_last_edited=\"off|phone\" header_font_size_last_edited=\"off|tablet\" header_2_text_align_tablet=\"center\" header_2_text_align_phone=\"\" header_2_text_align_last_edited=\"on|desktop\" header_2_font_size_tablet=\"35px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\" header_2_2_font_size_phone=\"32px\" header_3_2_font_size_phone=\"32px\" header_4_2_font_size_phone=\"32px\" header_5_2_font_size_phone=\"32px\" header_6_2_font_size_phone=\"32px\" header_2_2_font_size_tablet=\"35px\" header_3_2_font_size_tablet=\"35px\" header_4_2_font_size_tablet=\"35px\" header_5_2_font_size_tablet=\"35px\" header_6_2_font_size_tablet=\"35px\" header_2_2_font_size_last_edited=\"on|phone\" header_3_2_font_size_last_edited=\"on|phone\" header_4_2_font_size_last_edited=\"on|phone\" header_5_2_font_size_last_edited=\"on|phone\" header_6_2_font_size_last_edited=\"on|phone\"]<p style=\"padding-bottom: 10px !important; color: #fff;\">Don’t Settle For Mediocrity,</p>\n<h2 style=\"padding-top: 0px !important;\">Get M.A.D.</h2>[/et_pb_text][et_pb_divider color=\"#ffffff\" divider_weight=\"3px\" disabled_on=\"off|off|off\" _builder_version=\"4.16\" width=\"175px\" module_alignment=\"left\" min_height=\"3px\" height=\"3px\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_text admin_label=\"Content-1\" _builder_version=\"4.16\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.55em\" custom_padding=\"20px||15px||false|false\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<p>It is not that difficult to find a workers’ compensation defense firm in New York. However, finding a workers’ compensation defense firm that is truly committed to representing your organization and gives each claim the time and attention it deserves is not so easy. Most firms will simply ask you to submit information and then update you as the process goes on. We believe that the best pathway to success involves working with our clients, not just for our clients. That means our clients can expect us to be highly responsive and to work with them to build the best strategies for success.</p>[/et_pb_text][et_pb_text ul_type=\"none\" ul_position=\"inside\" ul_item_indent=\"1px\" admin_label=\"Content-2\" module_class=\"fl-lightlinks\" _builder_version=\"4.18.0\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.55em\" ul_text_color=\"#333\" ul_font_size=\"18px\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<p>If you are ready to get M.A.D., contact us today by calling (716) 616-1111 or filling out our <a href=\"/contact/\">online contact form</a>.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"BADGES\" _builder_version=\"4.16\" background_color=\"#f5f5f5\" custom_padding=\"100px||100px||true|false\" custom_padding_tablet=\"60px||60px||true|false\" custom_padding_phone=\"50px||50px||true|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" make_equal=\"on\" disabled_on=\"on|on|off\" admin_label=\"Accolades - Desktop\" _builder_version=\"4.16\" width=\"90%\" max_width=\"1000px\" custom_margin=\"0px||||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2022-Largest-Buffalo-law-firms.jpg\" alt=\"buffalo badge\" title_text=\"2022 Largest Buffalo law firms\" align=\"center\" disabled_on=\"on|on|off\" _builder_version=\"4.18.0\" max_width=\"200px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/MULTI-114764-1-ap3.jpg\" title_text=\"MULTI-114764-1-ap3\" align=\"center\" disabled_on=\"on|on|off\" _builder_version=\"4.18.0\" max_width=\"200px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/CUSTOM-975884-1.jpg\" title_text=\"CUSTOM-975884-1\" align=\"center\" disabled_on=\"on|on|off\" _builder_version=\"4.18.0\" max_width=\"200px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/CUSTOM-1069294-Badge-1.jpg\" title_text=\"CUSTOM-1069294-Badge\" align=\"center\" disabled_on=\"on|on|off\" _builder_version=\"4.18.0\" max_width=\"200px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" make_equal=\"on\" disabled_on=\"on|on|off\" admin_label=\"Accolades 2 - Desktop\" _builder_version=\"4.16\" width=\"90%\" max_width=\"1000px\" custom_margin=\"20px||||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/CUSTOM-870784-cmyk.png\" title_text=\"CUSTOM-870784-cmyk\" align=\"center\" disabled_on=\"on|on|off\" _builder_version=\"4.18.0\" max_width=\"200px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/women2020-1.jpg\" title_text=\"women2020\" align=\"center\" disabled_on=\"on|on|off\" _builder_version=\"4.18.0\" max_width=\"200px\" custom_padding=\"5px|||||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/101814-cmyk-1.png\" title_text=\"101814-cmyk-1\" align=\"center\" disabled_on=\"on|on|off\" _builder_version=\"4.18.0\" max_width=\"200px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" custom_padding=\"|10px||10px|false|true\" custom_padding_tablet=\"||20px||false|true\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][ba_image_carousel disabled_on=\"off|off|on\" admin_label=\"Accolades - Mobile (carousel)\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][ba_image_carousel_child admin_title=\"Largest firms 2022\" photo=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/03/badge.jpg\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/ba_image_carousel_child][ba_image_carousel_child admin_title=\"Best places 2021\" photo=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/MULTI-114764-1-ap3.jpg\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/ba_image_carousel_child][ba_image_carousel_child admin_title=\"Largest firms 2021\" photo=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/CUSTOM-975884-1.jpg\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/ba_image_carousel_child][ba_image_carousel_child admin_title=\"Largest women-owned 2021\" photo=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/CUSTOM-1069294-Badge-1.jpg\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/ba_image_carousel_child][ba_image_carousel_child admin_title=\"Largest firms 2020\" photo=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/CUSTOM-870784-cmyk.png\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/ba_image_carousel_child][ba_image_carousel_child admin_title=\"Largest women-owned 2020\" photo=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/women2020-1.jpg\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/ba_image_carousel_child][ba_image_carousel_child admin_title=\"Largest women-owned\" photo=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/101814-cmyk-1.png\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/ba_image_carousel_child][/ba_image_carousel][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"TESTIMONIAL\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0.8) 0%|rgba(255,255,255,0.8) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.8)\" background_color_gradient_end=\"rgba(255,255,255,0.8)\" background_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_108033031-D.jpg\" background_size=\"initial\" custom_padding=\"100px||100px||true|false\" custom_padding_tablet=\"70px||70px||true|false\" custom_padding_phone=\"50px||50px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_108033031-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_108033031-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" width=\"90%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Heading (H2)\" _builder_version=\"4.16\" text_font=\"Playfair Display||||||||\" text_font_size=\"25px\" header_font=\"||||||||\" header_2_font=\"|600|||||||\" header_2_text_align=\"center\" header_2_text_color=\"#211865\" header_2_font_size=\"38px\" header_3_font=\"|600|||||||\" header_4_font=\"|600|||||||\" header_5_font=\"|600|||||||\" header_6_font=\"|600|||||||\" text_orientation=\"center\" width_last_edited=\"off|phone\" max_width_last_edited=\"off|phone\" custom_margin=\"||0px||false|false\" custom_padding=\"||15px||false|false\" custom_padding_tablet=\"||||false|false\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"off|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|phone\" header_text_align_last_edited=\"off|phone\" header_font_size_last_edited=\"off|tablet\" header_2_text_align_tablet=\"center\" header_2_text_align_phone=\"\" header_2_text_align_last_edited=\"on|desktop\" header_2_font_size_tablet=\"35px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\" header_2_2_font_size_phone=\"32px\" header_3_2_font_size_phone=\"32px\" header_4_2_font_size_phone=\"32px\" header_5_2_font_size_phone=\"32px\" header_6_2_font_size_phone=\"32px\" header_2_2_font_size_tablet=\"35px\" header_3_2_font_size_tablet=\"35px\" header_4_2_font_size_tablet=\"35px\" header_5_2_font_size_tablet=\"35px\" header_6_2_font_size_tablet=\"35px\" header_2_2_font_size_last_edited=\"on|phone\" header_3_2_font_size_last_edited=\"on|phone\" header_4_2_font_size_last_edited=\"on|phone\" header_5_2_font_size_last_edited=\"on|phone\" header_6_2_font_size_last_edited=\"on|phone\"]<p style=\"padding-bottom: 10px !important; color: #333;\">Testimonials</p>\n<h2 style=\"padding-top:0px !important;\">What Clients Are Saying</h2>[/et_pb_text][et_pb_divider color=\"#2e5591\" divider_weight=\"3px\" disabled_on=\"off|off|off\" _builder_version=\"4.16\" width=\"175px\" module_alignment=\"center\" min_height=\"3px\" height=\"3px\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_slider show_arrows=\"off\" dot_nav_custom_color=\"#211865\" module_class=\"fl-testimonials\" _builder_version=\"4.18.0\" background_color=\"rgba(0,0,0,0)\" width=\"100%\" custom_padding=\"|0px||0px||\" auto=\"on\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide admin_title=\"Slide 01\" _builder_version=\"4.16\" header_text_align=\"center\" body_text_align=\"center\" body_text_color=\"#000000\" body_font_size=\"18px\" body_line_height=\"1.6em\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"center\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>“… I enjoy and greatly appreciate all of the work done on any of my cases by your firm…Your office is super!”<br /><strong>– Anonymous </strong><strong>– </strong></p>[/et_pb_slide][et_pb_slide admin_title=\"Slide 02\" _builder_version=\"4.16\" header_text_align=\"center\" body_text_align=\"center\" body_text_color=\"#000000\" body_font_size=\"18px\" body_line_height=\"1.6em\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>“…You guys are amazing and probably one of the few attorney firms that actually think outside the box. Our whole relationship started because another firm that shall go nameless did not recommend an appeal and I thought it needed an appeal and I sent it over to your office and your office appealed it and we prevailed and so started our 4+ years working together…”<br /><strong>– Anonymous – </strong></p>[/et_pb_slide][et_pb_slide admin_title=\"Slide 02\" _builder_version=\"4.18.0\" header_text_align=\"center\" body_text_align=\"center\" body_text_color=\"#000000\" body_font_size=\"18px\" body_line_height=\"1.6em\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p><span style=\"color: #000000;\">“Melissa is directing [local] counsel at our request, since she knows more than they do. You may quote me…in fact, no other firm we have used even approaches what you guys are able to do with these cases. I hope you all make millions and buy your own skyscraper to accommodate growth.”</span><br /><span style=\"color: #000000;\"><strong>– William Daciuk, Senior Workers’ Compensation Claims Examiner </strong><strong>– </strong></span></p>[/et_pb_slide][et_pb_slide _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p><span style=\"color: #000000;\">I just have to tell you that, while I enjoy working with all of the attorneys in your office and I have very high opinions of them all, I LOVE working with Brian! You might recall the file in metro NY that I asked if you would take over from the other firm. Brian’s Memorandum of Law is beautiful! I will not be at all surprised if the Judge chooses to award this claimant a 0% SLU. In my humble opinion, if I had left this file in the hands of the prior firm, I believe that the claimant would have been awarded a 30% SLU which would have been a split between the treating provider and our IME. I wanted to make sure that you are aware of what an amazing job he does!</span><br /><span style=\"color: #000000;\"><strong>– Annette Delahooke, Workers\' Compensation Claim Analyst – </strong></span></p>[/et_pb_slide][/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','publish','closed','closed','','home','','','2022-09-19 15:17:14','2022-09-19 19:17:14','',0,'https://im-template.findlaw5.flsitebuilder.com/?page_id=6',0,'page','',0),(45904,12,'2019-04-09 09:50:47','2019-04-09 14:50:47','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"section\" _builder_version=\"3.22.3\" background_color=\"#000000\" custom_padding=\"80px||80px||true\" custom_padding_phone=\"50px||50px||true\"][et_pb_row admin_label=\"row\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Address + Copyright\" _builder_version=\"3.24\" text_font=\"||||||||\" text_text_color=\"#ffffff\" link_font=\"||||||||\" link_text_color=\"#ffffff\" text_orientation=\"center\"]<p style=\"text-align: center;\">[nap_names id=\"FIRM-NAME-1\"] | [nap_address id=\"ADDRESS-1\" line1=\"true\" line2=\"true\"] | [nap_address id=\"ADDRESS-1\" city=\"true\" state=\"true\" postcode=\"true\" ] | Phone: [nap_phone id=\"LOCAL-PPC-CT-NUMBER-1\"]</p>\n<p style=\"text-align: center;\">[FLFooterLPTag]</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Footer - Landing Page','','publish','closed','closed','','footer-landing-page','','','2019-08-30 12:12:46','2019-08-30 17:12:46','',0,'https://im-template.findlaw5.flsitebuilder.com/blog/et_pb_layout/footer-landing-page/',0,'et_pb_layout','',0),(45905,12,'2019-04-09 09:49:03','2019-04-09 14:49:03','[et_pb_section fb_built=\"1\" _builder_version=\"3.21\" background_color=\"#f5f5f5\" custom_padding=\"20px||20px||true|false\"][et_pb_row _builder_version=\"3.21\"][et_pb_column type=\"4_4\" _builder_version=\"3.21\"][et_pb_image src=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" admin_label=\"Logo\" _builder_version=\"3.21\" max_width=\"200px\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Header - Landing Page','','publish','closed','closed','','landing-page-header','','','2019-04-09 09:49:03','2019-04-09 14:49:03','',0,'https://im-template.findlaw5.flsitebuilder.com/blog/et_pb_layout/landing-page-header/',0,'et_pb_layout','',0),(45906,12,'2018-08-20 13:08:02','2018-08-20 18:08:02','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.21\" custom_padding=\"80px||80px||true\" custom_padding_phone=\"50px||50px||true\" background_color=\"#f5f5f5\"][et_pb_row _builder_version=\"3.21\"][et_pb_column type=\"4_4\" _builder_version=\"3.21\"][et_pb_text text_orientation=\"center\" _builder_version=\"3.21\" text_font=\"||||||||\"]<h2>How Can We Help?</h2>\n[/et_pb_text][et_pb_text max_width=\"600px\" _builder_version=\"3.21\" custom_margin=\"50px||\" module_alignment=\"center\"]<p class=\"p1\">[nf_tp_form redirect_id=0 form_id=2]</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.21\" custom_padding=\"80px||80px||true\" custom_padding_phone=\"50px||50px||true\"][et_pb_row _builder_version=\"3.21\"][et_pb_column type=\"4_4\" _builder_version=\"3.21\"][et_pb_text _builder_version=\"3.21\" text_font=\"||||||||\" text_orientation=\"center\"]<h2>Office Location</h2>\n<p class=\"p1\">[nap_names id=\"FIRM-NAME-1\"]<br />[nap_address id=\"ADDRESS-1\" line1=\"true\" line2=\"true\" city=\"true\" state=\"true\" postcode=\"true\" ]<br />Phone: [nap_phone id=\"LOCAL-CT-NUMBER-1\"]<br /><a href=\"#\">Map &amp; Directions</a></p>[/et_pb_text][et_pb_button url_new_window=\"on\" button_text=\"Review The Firm\" button_alignment=\"center\" _builder_version=\"3.21\" custom_margin=\"50px||\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.21\" background_color=\"#000000\" custom_padding=\"50px||50px||true|false\" custom_padding_phone=\"30px||30px||true\"][et_pb_row _builder_version=\"3.0.48\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Copyright\" _builder_version=\"3.21\" text_orientation=\"center\" background_layout=\"dark\" text_font=\"||||||||\" text_font_size=\"15px\"]<p>[FLFooterTag]</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Footer','','publish','closed','closed','','generic-footer','','','2018-08-20 13:08:02','2018-08-20 18:08:02','',0,'https://im-template.findlaw5.flsitebuilder.com/blog/et_pb_layout/generic-footer/',0,'et_pb_layout','',0),(45907,12,'2018-08-20 12:56:23','2018-08-20 17:56:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#f5f5f5\" custom_padding=\"20px||20px||true\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\" column_structure=\"1_4,3_4\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" url=\"/\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"4.16\" global_colors_info=\"{}\" align_phone=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_2_text_color=\"#000000\" text_orientation=\"right\" custom_margin_tablet=\"20px||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>Call Today For A Free Consultation!</p>\n<p>000-000-0000</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_menu menu_id=\"4\" submenu_direction=\"downwards\" fullwidth_menu=\"on\" active_link_color=\"#ffffff\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#ffffff\" dropdown_menu_text_color=\"#ffffff\" mobile_menu_bg_color=\"#000000\" _builder_version=\"4.18.0\" menu_text_color=\"#ffffff\" menu_font_size=\"18px\" background_color=\"#000000\" background_layout=\"dark\" hover_enabled=\"0\" menu_font_size_tablet=\"\" menu_font_size_phone=\"\" menu_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]&nbsp;\r[/et_pb_fullwidth_menu][/et_pb_section]','Header','','publish','closed','closed','','generic-header','','','2022-08-29 15:39:05','2022-08-29 19:39:05','',0,'https://im-template.findlaw5.flsitebuilder.com/blog/et_pb_layout/generic-header/',0,'et_pb_layout','',0),(45925,6,'2019-07-29 11:53:23','2019-07-29 16:53:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.18.0\" text_text_color=\"#000000\" header_text_color=\"#000000\" header_2_text_color=\"#000000\" header_3_text_color=\"#000000\" header_4_text_color=\"#000000\" header_5_text_color=\"#000000\" header_6_text_color=\"#000000\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"]<h1>A Workers’ Compensation Defense Built On Partnerships And Communication</h1>\n<p><strong>The Law Offices of Melissa A. Day are “Western New York’s Premier Workers’ Compensation Defense Firm.”</strong><strong><em> – Mark Jay, CPCU AIC</em></strong></p>\n<p>If you, like many in New York, have become dissatisfied with the traditional New York workers’ compensation defense business model or what we refer to as “the assembly line defense,\" perhaps it is time for you to stop getting frustrated and to GET MAD instead.</p>\n<p>For years, the standard operating procedure for New York workers\' compensation defense firms has been predicated on volume. Each morning defense attorneys picked up the 15-20 files for the hearings that they were expected to handle that day, lined them up, spent five minutes reviewing the file, attended the hearing, dictated the report and then moved on to the next file. A report was typed and the file was sent back to the adjuster – frequently without the attorney and the adjuster ever having any real communication. There would be little to no contact before the hearing, at most terse telephone discussions on the day of the hearing for authority for an agreement so that defense counsel would not have to thoroughly analyze the file and provide a thoughtful defense of the claim; there was certainly no ongoing dialogue after or between hearings.</p>\n<h2>A Winning Formula Built on Experience and Client Relationships</h2>\n<p>Our philosophy at The Law Offices of Melissa A. Day represents what we believe is a dramatic departure from the assembly line workers’ compensation defense: claim-based defense partnerships. Our clients refer claims to us, not hearings. We develop relationships with our clients that are proactive rather than reactive; ones that foster ongoing conversations between client and counsel to develop strategies to meet specific goals as opposed to simply appearing at hearings, sending a report, and leaving the employer or TPA to fend for themselves in between board appearances.</p>\n<p>Additionally, when you choose us to represent you, you can trust that you will have access to the most recent cutting-edge developments in New York workers’ compensation law. We pride ourselves on staying current with the most recent changes in the law in substance and in practice. We accomplish this by running a forum on LinkedIn called the New York Workers’ Compensation Forum, which we invite you to join. Additionally, we hold webinars, Lawyers and Friends, every 4th Friday on the month, which you are welcome to join as well!</p>\n<h2>Using Technology To Better Serve Our Clients</h2>\n<p>As early proponents of the board’s exciting new virtual technology, we represented clients throughout New York state before the pandemic. Since COVID-19 has forced everyone into the virtual system, we have expanded our practice and are now a true statewide New York firm. Many clients appreciate the convenience of retaining attorneys who will take a <u>real</u> fight to the <u>virtual</u> landscape.</p>\n<h2>Contact The Law Offices of Melissa A. Day</h2>\n<p>If you are tired of not having an attorney who is your partner, don’t get angry,<strong> GET MAD. </strong>Contact us by calling <strong><a href=\"tel:7166160111\">(716) 616-0111</a></strong> or fill out our <a href=\"/contact/\"><strong>online contact form</strong></a>.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','publish','closed','closed','','about','','','2022-09-19 11:35:53','2022-09-19 15:35:53','',6,'https://im-template.findlaw5.flsitebuilder.com/about/',0,'page','',0),(45926,26,'2019-07-29 11:53:27','2019-07-29 16:53:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#ffffff\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" background_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text module_class=\"fl-lightlinks fl-inner-left fl-blog-left\" _builder_version=\"4.16\" header_text_color=\"#211865\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"]<h1>LOMAD News, Events, and Articles</h1>[/et_pb_text][et_pb_blog show_more=\"on\" module_class=\"fl-inner-left fl-blog-left\" _builder_version=\"4.18.0\" header_text_color=\"#211865\" body_text_color=\"#000000\" body_font_size=\"18px\" meta_text_color=\"#000000\" meta_font_size=\"18px\" read_more_text_color=\"#211865\" read_more_font_size=\"18px\" pagination_text_color=\"#ffffff\" pagination_font_size=\"18px\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" disabled_on=\"on|on|off\" admin_label=\"Blog - Desktop\" sticky_enabled=\"0\"][/et_pb_blog][et_pb_blog posts_number=\"5\" show_more=\"on\" module_class=\"fl-inner-left fl-blog-left\" _builder_version=\"4.18.0\" header_text_color=\"#211865\" body_text_color=\"#000000\" body_font_size=\"18px\" meta_text_color=\"#000000\" meta_font_size=\"18px\" read_more_text_color=\"#211865\" read_more_font_size=\"18px\" pagination_text_color=\"#ffffff\" pagination_font_size=\"18px\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" disabled_on=\"off|off|on\" admin_label=\"Blog -  Mobile\" sticky_enabled=\"0\" excerpt_length=\"85\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','LOMAD News, Events, and Articles','','publish','closed','closed','','news-events-articles','','','2022-09-14 14:34:09','2022-09-14 18:34:09','',0,'https://im-template.findlaw5.flsitebuilder.com/blog/',0,'page','',0),(45927,26,'2019-07-29 11:53:37','2019-07-29 16:53:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.18.0\" text_text_color=\"#211865\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" text_font=\"Playfair Display||||||||\" text_font_size=\"19px\" sticky_enabled=\"0\"]<h1>Contact</h1>\n<p>While this website provides general information, it does not constitute legal advice. The best way to get guidance on your specific legal issue is to contact a lawyer. To schedule a meeting with an attorney, please call the firm or complete the intake form below.</p>[/et_pb_text][et_pb_text disabled_on=\"on|on|off\" admin_label=\"Long Contact form - Desktop\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_text_color=\"#211865\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>[ninja_form id=1]</p>[/et_pb_text][et_pb_text disabled_on=\"off|off|on\" admin_label=\"Long contact form - Mobile\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_text_color=\"#211865\" global_colors_info=\"{}\"]<table class=\"nf-table-display\">\n<tbody class=\"forms-collection\">\n<tr>\n<td>[ninja_form id=7]</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Contact','','publish','closed','closed','','contact','','','2022-09-20 12:17:08','2022-09-20 16:17:08','',0,'https://im-template.findlaw5.flsitebuilder.com/contact/',0,'page','',0),(45966,12,'2022-08-16 11:40:53','2019-07-29 17:24:07','','','','publish','closed','closed','','45966','','','2022-08-16 11:40:53','2022-08-16 15:40:53','',0,'https://im-template.findlaw5.flsitebuilder.com/?p=45966',19,'nav_menu_item','',0),(45967,12,'2022-08-16 11:40:47','2019-07-29 17:24:06','','','','publish','closed','closed','','45967','','','2022-08-16 11:40:47','2022-08-16 15:40:47','',0,'https://im-template.findlaw5.flsitebuilder.com/?p=45967',15,'nav_menu_item','',0),(45968,12,'2022-08-16 11:40:18','2019-07-29 17:24:06','','','','publish','closed','closed','','45968','','','2022-08-16 11:40:18','2022-08-16 15:40:18','',0,'https://im-template.findlaw5.flsitebuilder.com/?p=45968',2,'nav_menu_item','',0),(45969,12,'2022-08-16 11:40:15','2019-07-29 17:24:06','','','','publish','closed','closed','','45969','','','2022-08-16 11:40:15','2022-08-16 15:40:15','',0,'https://im-template.findlaw5.flsitebuilder.com/?p=45969',1,'nav_menu_item','',0),(45970,1927,'2019-07-29 12:43:53','2019-07-29 17:43:53','[FLDisclaimerTag]','Disclaimer','','publish','closed','closed','','disclaimer','','','2021-11-30 05:56:14','2021-11-30 10:56:14','',0,'https://im-template.findlaw5.flsitebuilder.com/?post_type=landing-page&#038;p=45970',0,'landing-page','',0),(45971,1927,'2019-07-29 12:45:19','2019-07-29 17:45:19','<h1>Privacy Policy</h1>\r\nOur law firm partners with FindLaw, a Thomson Reuters business. To learn more about the Thomson Reuters privacy policy and the data that might be collected, please visit: <a href=\"https://thelomad.com/getmad.today/wp-contentwww.thomsonreuters.com/en/privacy-statement.html\" target=\"_blank\" rel=\"noopener noreferrer\">Thomson Reuters Privacy Statement</a>.','Privacy Policy','','publish','closed','closed','','privacy','','','2021-11-30 05:56:16','2021-11-30 10:56:16','',0,'https://im-template.findlaw5.flsitebuilder.com/?post_type=landing-page&#038;p=45971',0,'landing-page','',0),(45972,1927,'2019-07-29 12:47:54','2019-07-29 17:47:54','<h1>Thank You</h1>\r\nThank you for contacting [nap_names id=\"FIRM-NAME-1\"]. Your message has been sent.','Thank You - Landing Page','','publish','closed','closed','','thank-you','','','2021-11-30 05:56:18','2021-11-30 10:56:18','',0,'https://im-template.findlaw5.flsitebuilder.com/?post_type=landing-page&#038;p=45972',0,'landing-page','',0),(46070,1156,'2021-08-11 18:20:04','2021-08-11 22:20:04','','buehler_vicki_l','','inherit','closed','closed','','buehler_vicki_l','','','2021-08-11 18:20:04','2021-08-11 22:20:04','',0,'/wp-content/uploads/sites/1503150/2021/08/buehler_vicki_l.jpg',0,'attachment','image/jpeg',0),(46071,1,'2022-05-04 10:50:20','2022-05-04 14:50:20','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-scaled.jpeg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.3.2\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.3.2\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.3.2\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/Cassie_Christman_pp.jpg\" _builder_version=\"4.3.2\" custom_margin=\"||20px||false|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Full Name\" module_class=\"fl-attorney-title\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h1>Cassandra E. Christman</h1>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_text_color=\"#211865\" global_colors_info=\"{}\"]<p>Nickname: Cassie</p>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.3.2\" text_font=\"|600|||||||\" text_text_color=\"#027acb\" text_font_size=\"24px\" header_font=\"||||||||\" header_2_text_color=\"#211865\" header_3_font=\"||||||||\" header_3_text_color=\"#000000\" custom_padding=\"5px||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Me:</h2>[/et_pb_text][fl_people_single element=\"phone\" admin_label=\"Person Detail Element - Phone Number\" module_class=\"fl-darklinks\" _builder_version=\"4.3.2\" module_text_color=\"#211865\" custom_margin=\"0px||10px\" custom_padding=\"0px||0px\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Email Button - Short Code\" module_class=\"fl-email-btn\" _builder_version=\"4.3.2\" link_font=\"||||||||\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||25px||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>[email_me_form form_id=\"3\" post_id=\"46071\"]</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.29.3\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Practice Areas\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"||20px\" custom_padding_tablet=\"0px||26px||false\" custom_padding_phone=\"0px||20px||false\" custom_padding_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h2>Practice Areas</h2>[/et_pb_text][fl_people_single element=\"practice_areas\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Practice Areas\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Current Employment Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Current Employment Position</h2>[/et_pb_text][fl_people_single element=\"current_positions\" admin_label=\"Person Detail Element - Current Employment Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Bar Admissions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Bar Admissions</h2>[/et_pb_text][fl_people_single element=\"bar_admissions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Bar Admissions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Verdict Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Verdicts/Settlements/Cases of Note/Favorite Win</h2>[/et_pb_text][et_pb_text admin_label=\"Verdict Content\" _builder_version=\"4.11.4\" text_text_color=\"#ffffff\" ul_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>My other favorite win was a disallowance for a claimant who was alleging chemical exposure in the work place, but was never exposed to the chemical. This was a favorite win because all the doctors, including the IME, unanimously gave causal relationship. However, just in time for writing the Memorandum of Law,  a new Third Department case came down stating that if the doctor’s opinions are based on a faulty premise, they are not credible. The case had a very similar fact pattern including an IME which also gave causal relationship. Through witness testimony we were able to prove the chemical exposure claimant alleged occurred never actually occurred, and therefore every doctor in the claim based their opinion of the faulty premise that there was an exposure. The claim was ultimately disallowed, as the WCLJ credited the testimony of the lay witnesses over the claimant.</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Education\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Education</h2>[/et_pb_text][fl_people_single element=\"education\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Education\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Pro-Bono Activities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pro-Bono Activities</h2>[/et_pb_text][fl_people_single element=\"pro_bonos\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Pro-Bono Activities\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Label\" _builder_version=\"4.11.4\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Tenure at firm</h2>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_text_color=\"#ffffff\" ul_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Joined the firm 11/12/2019</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Legal Superpower label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Your Legal Superpower</h2>[/et_pb_text][et_pb_text admin_label=\"Legal superpower content\" _builder_version=\"4.3.2\" text_text_color=\"#ffffff\" ul_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>The power of Transparency, which is the power to see through a claimant’s façade and seek justice where due.</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Pets label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pets and Hobbies</h2>[/et_pb_text][et_pb_text admin_label=\"Pets content\" _builder_version=\"4.3.2\" text_text_color=\"#ffffff\" ul_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>No pets. Hobbies include traveling, spending time with family, and playing softball.</li>\n</ul>\n</li>\n</ul>[/et_pb_text][fl_people_single element=\"bio\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Biography\" _builder_version=\"4.3.2\" text_orientation=\"left\" custom_padding=\"||15px||false|false\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Biography\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Biography</h2>[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Published Works\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Published Works</h2>[/et_pb_text][fl_people_single element=\"published_works\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Published Works\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Cases\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Cases</h2>[/et_pb_text][fl_people_single element=\"representative_cases\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Cases\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Fraternities or Sororities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Fraternities or Sororities</h2>[/et_pb_text][fl_people_single element=\"fraternity_sororities\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Fraternities or Sororities\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Professional Associations\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Associations</h2>[/et_pb_text][fl_people_single element=\"professional_assoc\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Professional Associations\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Certified Legal Specialties\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Certified Legal Specialties</h2>[/et_pb_text][fl_people_single element=\"specialties\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Certified Legal Specialties\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Honors\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Honors</h2>[/et_pb_text][fl_people_single element=\"honors\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Honors\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Classes & Seminars\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Classes & Seminars</h2>[/et_pb_text][fl_people_single element=\"classes_seminars\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Classes & Seminars\" _builder_version=\"3.24\" text_orientation=\"left\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Clients\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Clients</h2>[/et_pb_text][fl_people_single element=\"representative_clients\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Clients\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"References\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>References</h2>[/et_pb_text][fl_people_single element=\"references\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - References\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Past Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Past Positions</h2>[/et_pb_text][fl_people_single element=\"past_positions\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Past Positions\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Languages\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Languages</h2>[/et_pb_text][fl_people_single element=\"languages\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Languages\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Ancillary Businesses\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Ancillary Businesses</h2>[/et_pb_text][fl_people_single element=\"ancillary_businesses\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Ancillary Businesses\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][/et_pb_column][/et_pb_row][/et_pb_section]','Christman, Cassandra E.','','publish','closed','closed','','christman-cassandra-e','','','2022-08-11 15:15:48','2022-08-11 19:15:48','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/attorney/christman-cassandra-e/',0,'people','',0),(46072,1156,'2021-08-11 18:20:08','2021-08-11 22:20:08','','christman_cassandra_e','','inherit','closed','closed','','christman_cassandra_e','','','2021-08-11 18:20:08','2021-08-11 22:20:08','',46071,'/wp-content/uploads/sites/1503150/2021/08/christman_cassandra_e.jpg',0,'attachment','image/jpeg',0),(46073,19,'2022-05-04 10:50:27','2022-05-04 14:50:27','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-scaled.jpeg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.3.2\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.3.2\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.3.2\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" alt=\"photo of attorney James B. Cousins\" _builder_version=\"4.3.2\" custom_margin=\"||20px||false|false\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Full Name\" module_class=\"fl-attorney-title\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h1>James B. Cousins</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.3.2\" text_font=\"|600|||||||\" text_text_color=\"#027acb\" text_font_size=\"24px\" header_font=\"||||||||\" header_2_text_color=\"#211865\" header_3_font=\"||||||||\" header_3_text_color=\"#000000\" custom_padding=\"5px||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Me:</h2>[/et_pb_text][fl_people_single element=\"phone\" admin_label=\"Person Detail Element - Phone Number\" module_class=\"fl-darklinks\" _builder_version=\"4.3.2\" module_font=\"||||on||||\" module_text_color=\"#211865\" custom_margin=\"0px||10px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Email Button - Short Code\" module_class=\"fl-email-btn\" _builder_version=\"4.3.2\" link_font=\"||||||||\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||25px||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>[email_me_form form_id=\"3\" post_id=\"46073\"]</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.29.3\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Practice Areas\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"||20px\" custom_padding_tablet=\"0px||26px||false\" custom_padding_phone=\"0px||20px||false\" custom_padding_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h2>Practice Areas</h2>[/et_pb_text][fl_people_single element=\"practice_areas\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Practice Areas\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Current Employment Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Current Employment Position</h2>[/et_pb_text][fl_people_single element=\"current_positions\" admin_label=\"Person Detail Element - Current Employment Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Bar Admissions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Bar Admissions</h2>[/et_pb_text][fl_people_single element=\"bar_admissions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Bar Admissions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Professional Associations\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Associations</h2>[/et_pb_text][fl_people_single element=\"professional_assoc\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Professional Associations\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Representative Cases\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Cases</h2>[/et_pb_text][fl_people_single element=\"representative_cases\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Representative Cases\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Education\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Education</h2>[/et_pb_text][fl_people_single element=\"education\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Education\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Pro-Bono Activities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pro-Bono Activities</h2>[/et_pb_text][fl_people_single element=\"pro_bonos\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Pro-Bono Activities\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Honors\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Honors</h2>[/et_pb_text][fl_people_single element=\"honors\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Honors\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Published Works\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Published Works</h2>[/et_pb_text][fl_people_single element=\"published_works\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Published works\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Tenure Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Tenure at firm</h2>[/et_pb_text][et_pb_text admin_label=\"Tenure Content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>2013 to present – 8 years</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Legal Superpower label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Your Legal Superpower</h2>[/et_pb_text][et_pb_text admin_label=\"Legal superpower content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Each and every one of them.    </li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Pets label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pets and Hobbies</h2>[/et_pb_text][et_pb_text admin_label=\"Pets content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>1 “track adopted” greyhound “Jed” fka PowerAid in his racing days. </li>\n<li>I love to play golf, but don’t get to as often. </li>\n<li>Service to others is a hobby – I spend a lot of my free time – such as it is – serving the State of New York in the Guard and serving my congregation at my church.</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Biography\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Biography</h2>[/et_pb_text][fl_people_single element=\"bio\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Biography\" _builder_version=\"4.3.2\" text_orientation=\"left\" custom_padding=\"||15px||false|false\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Fraternities or Sororities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Fraternities or Sororities</h2>[/et_pb_text][fl_people_single element=\"fraternity_sororities\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Fraternities or Sororities\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Certified Legal Specialties\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Certified Legal Specialties</h2>[/et_pb_text][fl_people_single element=\"specialties\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Certified Legal Specialties\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Classes & Seminars\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Classes & Seminars</h2>[/et_pb_text][fl_people_single element=\"classes_seminars\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Classes & Seminars\" _builder_version=\"3.24\" text_orientation=\"left\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Clients\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Clients</h2>[/et_pb_text][fl_people_single element=\"representative_clients\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Clients\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"References\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>References</h2>[/et_pb_text][fl_people_single element=\"references\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - References\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Past Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Past Positions</h2>[/et_pb_text][fl_people_single element=\"past_positions\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Past Positions\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Languages\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Languages</h2>[/et_pb_text][fl_people_single element=\"languages\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Languages\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Ancillary Businesses\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Ancillary Businesses</h2>[/et_pb_text][fl_people_single element=\"ancillary_businesses\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Ancillary Businesses\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][/et_pb_column][/et_pb_row][/et_pb_section]','Cousins, James B.','','publish','closed','closed','','cousins-james-b','','','2022-05-04 10:50:27','2022-05-04 14:50:27','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/attorney/cousins-james-b/',0,'people','',0),(46074,1156,'2021-08-11 18:20:13','2021-08-11 22:20:13','','cousins_james_b','','inherit','closed','closed','','cousins_james_b','','','2021-08-11 18:20:13','2021-08-11 22:20:13','',46073,'/wp-content/uploads/sites/1503150/2021/08/cousins_james_b.jpg',0,'attachment','image/jpeg',0),(46075,19,'2022-05-04 10:50:33','2022-05-04 14:50:33','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-scaled.jpeg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.3.2\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.3.2\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.3.2\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Melanie_Daly-1_pp.jpg\" _builder_version=\"4.3.2\" custom_margin=\"||20px||false|false\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Full Name\" module_class=\"fl-attorney-title\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_text_color=\"#211865\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h1>Melanie A. Daly</h1>[/et_pb_text][et_pb_text admin_label=\"Nickname\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<p>Nicknames</p>\n<ul>\n<li>Melly Cat (derived from Smelly Cat)</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.3.2\" text_font=\"|600|||||||\" text_text_color=\"#027acb\" text_font_size=\"24px\" header_font=\"||||||||\" header_text_color=\"#211865\" header_2_text_color=\"#211865\" header_3_font=\"||||||||\" header_3_text_color=\"#211865\" custom_padding=\"5px||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Me:</h2>[/et_pb_text][fl_people_single element=\"phone\" admin_label=\"Person Detail Element - Phone Number\" module_class=\"fl-darklinks\" _builder_version=\"4.3.2\" module_font=\"||||on||||\" module_text_color=\"#211865\" custom_margin=\"0px||10px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Email Button - Short Code\" module_class=\"fl-email-btn\" _builder_version=\"4.3.2\" link_font=\"||||||||\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||25px||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>[email_me_form form_id=\"3\" post_id=\"46075\"]</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.29.3\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Practice Areas\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"||20px\" custom_padding_tablet=\"0px||26px||false\" custom_padding_phone=\"0px||20px||false\" custom_padding_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h2>Practice Areas</h2>[/et_pb_text][fl_people_single element=\"practice_areas\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Practice Areas\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Current Employment Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Current Employment Position</h2>[/et_pb_text][fl_people_single element=\"current_positions\" admin_label=\"Person Detail Element - Current Employment Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Bar Admissions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Bar Admissions</h2>[/et_pb_text][fl_people_single element=\"bar_admissions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Bar Admissions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Professional Associations\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Associations</h2>[/et_pb_text][fl_people_single element=\"professional_assoc\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Professional Associations\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Verdict Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Verdicts/Settlements/Cases of Note/Favorite Win</h2>[/et_pb_text][et_pb_text admin_label=\"Verdict Content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Shutting down the winged scapula that came from left field.</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Education\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_text_color=\"#211865\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Education</h2>[/et_pb_text][fl_people_single element=\"education\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Education\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Pro-Bono Activities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pro-Bono Activities</h2>[/et_pb_text][fl_people_single element=\"pro_bonos\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Pro-Bono Activities\" _builder_version=\"4.14.2\" module_text_color=\"#000000\" text_orientation=\"left\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/fl_people_single][et_pb_text admin_label=\"Tenure Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Tenure at firm</h2>[/et_pb_text][et_pb_text admin_label=\"Tenure Content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>I started 01/13/2020.</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Legal Superpower label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Your Legal Superpower</h2>[/et_pb_text][et_pb_text admin_label=\"Legal superpower content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Extrasensory Perception for Inconsistencies</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Pets label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pets and Hobbies</h2>[/et_pb_text][et_pb_text admin_label=\"Pets content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>My favorite hobbies include spending time with my six children, ages ranging 1-9 which includes two sets of twins, making sure every one of them laugh at least once every day.</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Published Works\" _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Published Works</h2>[/et_pb_text][fl_people_single element=\"published_works\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Published Works\" _builder_version=\"4.14.2\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Cases\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Cases</h2>[/et_pb_text][fl_people_single element=\"representative_cases\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Cases\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Fraternities or Sororities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Fraternities or Sororities</h2>[/et_pb_text][fl_people_single element=\"fraternity_sororities\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Fraternities or Sororities\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Certified Legal Specialties\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Certified Legal Specialties</h2>[/et_pb_text][fl_people_single element=\"specialties\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Certified Legal Specialties\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Honors\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Honors</h2>[/et_pb_text][fl_people_single element=\"honors\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Honors\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Classes & Seminars\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Classes & Seminars</h2>[/et_pb_text][fl_people_single element=\"classes_seminars\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Classes & Seminars\" _builder_version=\"3.24\" text_orientation=\"left\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Biography\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Biography</h2>[/et_pb_text][fl_people_single element=\"bio\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Biography\" _builder_version=\"4.3.2\" text_orientation=\"left\" custom_padding=\"||15px||false|false\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Clients\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Clients</h2>[/et_pb_text][fl_people_single element=\"representative_clients\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Clients\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"References\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>References</h2>[/et_pb_text][fl_people_single element=\"references\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - References\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Past Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Past Positions</h2>[/et_pb_text][fl_people_single element=\"past_positions\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Past Positions\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Languages\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Languages</h2>[/et_pb_text][fl_people_single element=\"languages\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Languages\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Ancillary Businesses\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Ancillary Businesses</h2>[/et_pb_text][fl_people_single element=\"ancillary_businesses\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Ancillary Businesses\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][/et_pb_column][/et_pb_row][/et_pb_section]','Daly, Melanie A.','','publish','closed','closed','','daly-melanie-a','','','2022-05-04 10:50:33','2022-05-04 14:50:33','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/attorney/daly-melanie-a/',0,'people','',0),(46076,1156,'2021-08-11 18:20:18','2021-08-11 22:20:18','','daly_melanie_a','','inherit','closed','closed','','daly_melanie_a','','','2021-08-11 18:20:18','2021-08-11 22:20:18','',46075,'/wp-content/uploads/sites/1503150/2021/08/daly_melanie_a.jpg',0,'attachment','image/jpeg',0),(46077,19,'2022-05-04 10:50:46','2022-05-04 14:50:46','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-scaled.jpeg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.3.2\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.3.2\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.3.2\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Melissa_Ann_Day_pp.jpg\" _builder_version=\"4.3.2\" custom_margin=\"||20px||false|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Full Name\" module_class=\"fl-attorney-title\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h1>Melissa A. Day</h1>[/et_pb_text][et_pb_text admin_label=\"Nickname\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" global_colors_info=\"{}\"]<p>Nicknames</p>\n<ul>\n<li>Childhood: Missy - but do not EVER call me that</li>\n<li>Current: MADness, Melicious</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.3.2\" text_font=\"|600|||||||\" text_text_color=\"#027acb\" text_font_size=\"24px\" header_font=\"||||||||\" header_2_text_color=\"#211865\" header_3_font=\"||||||||\" header_3_text_color=\"#000000\" custom_padding=\"5px||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Me:</h2>[/et_pb_text][fl_people_single element=\"phone\" admin_label=\"Person Detail Element - Phone Number\" module_class=\"fl-darklinks\" _builder_version=\"4.3.2\" module_text_color=\"#211865\" custom_margin=\"0px||10px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Email Button - Short Code\" module_class=\"fl-email-btn\" _builder_version=\"4.3.2\" link_font=\"||||||||\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||25px||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>[email_me_form form_id=\"3\" post_id=\"46077\"]</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.29.3\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Practice Areas\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"||20px\" custom_padding_tablet=\"0px||26px||false\" custom_padding_phone=\"0px||20px||false\" custom_padding_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h2>Practice Areas</h2>[/et_pb_text][fl_people_single element=\"practice_areas\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Practice Areas\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Current Employment Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Current Employment Position</h2>[/et_pb_text][fl_people_single element=\"current_positions\" admin_label=\"Person Detail Element - Current Employment Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Bar Admissions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Bar Admissions</h2>[/et_pb_text][fl_people_single element=\"bar_admissions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Bar Admissions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Professional Associations\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Associations and Memberships</h2>[/et_pb_text][fl_people_single element=\"professional_assoc\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element -Professional Associations\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Pro-Bono Activities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"0px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pro-Bono Activities</h2>[/et_pb_text][fl_people_single element=\"pro_bonos\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Pro-Bono Activities\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Verdict Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Verdicts/Settlements/Cases of Note/Favorite Win</h2>[/et_pb_text][et_pb_text admin_label=\"Verdict Content\" _builder_version=\"4.14.2\" text_text_color=\"#000000\" custom_margin=\"||-52px|||\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li><u>Burns v. Varriale</u>, 9 N.Y. 3d 207 (2007). Perfecting an argument proposed by Steven M. Licht, Esq., and successfully arguing this influential case at the Court of Appeals is the highlight of my career as an attorney, but having the privilege or working with the team at LOMAD is the highlight of my entire professional career. <a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/676362013\">Click here</a> to see a video of the oral argument.</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Education\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Education</h2>[/et_pb_text][fl_people_single element=\"education\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Education\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" custom_margin=\"||-61px|||\" custom_padding=\"||0px|||\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Honors\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Honors</h2>[/et_pb_text][fl_people_single element=\"honors\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Honors\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Published Works\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Published Works</h2>[/et_pb_text][fl_people_single element=\"published_works\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Published Works\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Tenure at firm</h2>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>I was there at the LOMAD Big Bang on 01/01/2013</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Legal Superpower label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" custom_padding=\"15px||15px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Your Legal Superpower</h2>[/et_pb_text][et_pb_text admin_label=\"Legal superpower content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist.</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Pets label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pets and Hobbies</h2>[/et_pb_text][et_pb_text admin_label=\"Pets content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Pets\n<ul>\n<li>Mush, the incorrigible Husky</li>\n<li>Bear, the Lab-mix Galoot</li>\n<li>Poof, the One-Eyed Calico</li>\n<li>Sweet Pea, the Drain Bamaged Taco Cat</li>\n<li>Herbie, the Love Bug</li>\n</ul>\n</li>\n<li>Hobbies\n<ul>\n<li>Theater - movies and musicals</li>\n<li>Professional Figure Skater in a past life</li>\n<li>Kayaking and Biking</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Fraternities or Sororities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Fraternities or Sororities</h2>[/et_pb_text][fl_people_single element=\"fraternity_sororities\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Fraternities or Sororities\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Biography\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Biography</h2>[/et_pb_text][fl_people_single element=\"bio\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Biography\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" custom_padding=\"||15px||false|false\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Certified Legal Specialties\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Certified Legal Specialties</h2>[/et_pb_text][fl_people_single element=\"specialties\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Certified Legal Specialties\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Classes & Seminars\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Classes & Seminars</h2>[/et_pb_text][fl_people_single element=\"classes_seminars\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Classes & Seminars\" _builder_version=\"3.24\" text_orientation=\"left\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Clients\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Clients</h2>[/et_pb_text][fl_people_single element=\"representative_clients\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Clients\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"References\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>References</h2>[/et_pb_text][fl_people_single element=\"references\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - References\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|off|on\" admin_label=\"Past Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Past Positions</h2>[/et_pb_text][fl_people_single element=\"past_positions\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Past Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Languages\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Languages</h2>[/et_pb_text][fl_people_single element=\"languages\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Languages\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Ancillary Businesses\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Ancillary Businesses</h2>[/et_pb_text][fl_people_single element=\"ancillary_businesses\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Ancillary Businesses\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][/et_pb_column][/et_pb_row][/et_pb_section]','Day, Melissa A.','','publish','closed','closed','','day-melissa-a','','','2022-05-04 10:50:46','2022-05-04 14:50:46','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/attorney/day-melissa-a/',0,'people','',0),(46078,1156,'2021-08-11 18:20:23','2021-08-11 22:20:23','','day_melissa_a','','inherit','closed','closed','','day_melissa_a','','','2021-08-11 18:20:23','2021-08-11 22:20:23','',46077,'/wp-content/uploads/sites/1503150/2021/08/day_melissa_a.jpg',0,'attachment','image/jpeg',0),(46079,19,'2022-05-04 10:50:51','2022-05-04 14:50:51','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-scaled.jpeg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.3.2\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.3.2\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.3.2\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_image src=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9mZWF0dXJlZF9pbWFnZSIsInNldHRpbmdzIjp7fX0=@\" admin_label=\"Attorney Image\" _builder_version=\"4.3.2\" _dynamic_attributes=\"src\" max_width=\"75%\" max_width_tablet=\"30%\" max_width_phone=\"40%\" max_width_last_edited=\"on|phone\" module_alignment=\"left\" custom_margin=\"0px||0px\" custom_padding=\"0px||18px||false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" always_center_on_mobile=\"off\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Full Name\" module_class=\"fl-attorney-title\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_text_color=\"#211865\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h1>Neil A. Diegelman</h1>\r[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.3.2\" text_font=\"|600|||||||\" text_text_color=\"#027acb\" text_font_size=\"24px\" header_font=\"||||||||\" header_text_color=\"#211865\" header_2_text_color=\"#211865\" header_3_font=\"||||||||\" header_3_text_color=\"#211865\" custom_padding=\"5px||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Me:</h2>\r[/et_pb_text][fl_people_single element=\"phone\" admin_label=\"Person Detail Element - Phone Number\" module_class=\"fl-darklinks\" _builder_version=\"4.3.2\" custom_margin=\"0px||10px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Email Button - Short Code\" module_class=\"fl-email-btn\" _builder_version=\"4.3.2\" link_font=\"||||||||\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||25px||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][email_me_form form_id=\"3\" post_id=\"46079\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.29.3\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Practice Areas\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"||20px\" custom_padding_tablet=\"0px||26px||false\" custom_padding_phone=\"0px||20px||false\" custom_padding_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h2>Practice Areas</h2>\r[/et_pb_text][fl_people_single element=\"practice_areas\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Practice Areas\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Biography\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Biography</h2>\r[/et_pb_text][fl_people_single element=\"bio\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Biography\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" custom_padding=\"||15px||false|false\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Education\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Education</h2>\r[/et_pb_text][fl_people_single element=\"education\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Education\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Bar Admissions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Bar Admissions</h2>\r[/et_pb_text][fl_people_single element=\"bar_admissions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Bar Admissions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Published Works\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Published Works</h2>\r[/et_pb_text][fl_people_single element=\"published_works\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Published Works\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Cases\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Cases</h2>\r[/et_pb_text][fl_people_single element=\"representative_cases\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Cases\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Fraternities or Sororities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Fraternities or Sororities</h2>\r[/et_pb_text][fl_people_single element=\"fraternity_sororities\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Fraternities or Sororities\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Professional Associations\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Associations</h2>\r[/et_pb_text][fl_people_single element=\"professional_assoc\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Professional Associations\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Certified Legal Specialties\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Certified Legal Specialties</h2>\r[/et_pb_text][fl_people_single element=\"specialties\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Certified Legal Specialties\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Current Employment Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Current Employment Position</h2>\r[/et_pb_text][fl_people_single element=\"current_positions\" admin_label=\"Person Detail Element - Current Employment Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Honors\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Honors</h2>\r[/et_pb_text][fl_people_single element=\"honors\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Honors\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Classes & Seminars\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Classes &amp; Seminars</h2>\r[/et_pb_text][fl_people_single element=\"classes_seminars\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Classes & Seminars\" _builder_version=\"3.24\" text_orientation=\"left\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Pro-Bono Activities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pro-Bono Activities</h2>\r[/et_pb_text][fl_people_single element=\"pro_bonos\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Pro-Bono Activities\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Clients\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Clients</h2>\r[/et_pb_text][fl_people_single element=\"representative_clients\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Clients\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"References\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>References</h2>\r[/et_pb_text][fl_people_single element=\"references\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - References\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Past Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Past Positions</h2>\r[/et_pb_text][fl_people_single element=\"past_positions\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Past Positions\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Languages\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Languages</h2>\r[/et_pb_text][fl_people_single element=\"languages\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Languages\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Ancillary Businesses\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Ancillary Businesses</h2>\r[/et_pb_text][fl_people_single element=\"ancillary_businesses\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Ancillary Businesses\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Tenure Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Tenure at firm</h2>\r[/et_pb_text][et_pb_text admin_label=\"Tenure Content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>As of 8/30/21, 581 days, or, 1 year 7 months 3 days !!!</li>\r\n</ul>\r\n</li>\r\n</ul>\r[/et_pb_text][et_pb_text admin_label=\"Verdict Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Verdicts/Settlements/Cases of Note/Favorite Win</h2>\r[/et_pb_text][et_pb_text admin_label=\"Verdict Content\" _builder_version=\"4.11.4\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>My first disallowance when I first started Workers\' Compensation for a claimant who requested time off work, was denied, and just so happened to have an accident the day before the time she previously requested off is one of my favorite wins. We were able to get concessions from her PA that she never disclosed a work accident to him, but actually denied any accident. This was my favorite case because it was my first time taking claimant testimony and I got plenty of objections which would make me stumble and more nervous, and I felt humiliated for asking so many questions about the inconsistencies in the record because “asked and answered” was a frequent objection. However, my intuition was correct and I prevailed on the same inconsistencies claimant’s counsel continued to object to questions regarding.</li>\r\n 	<li>One of my favorite wins at the trial level involved an established right ankle injury (crush) and the claimant was also alleging a direct injury to the back. The claimant was working in construction and was assigned to dump bins of debris out into a waiting garbage truck. The claimant’s foot was injured by the garbage truck and the debris bin. The claimant alleged that after he injured his foot, he fell backwards striking his back causing injuries. We took the deep dive and contacted other employees who were working with the claimant on the accident date. Every employer-eyewitness testified that the claimant injured his right foot and then sat down to await medical attention. Further, the medical reports did not state a direct back injury until months later. Based on the overwhelming evidence that we were able to produce, we prevailed on having the back injury disallowed from the claim. The WCLJ found our three employer witnesses were more credible than the claimant in describing the accident, and that the claimant did not have the complaints until a few months later. This was a great win as the claim was then limited to the right ankle injury without expanding the sites of injury.</li>\r\n</ul>\r\n</li>\r\n</ul>\r[/et_pb_text][et_pb_text admin_label=\"Legal Superpower label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Your Legal Superpower</h2>\r[/et_pb_text][et_pb_text admin_label=\"Legal superpower content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>The ability to catch fraudsters!</li>\r\n</ul>\r\n</li>\r\n</ul>\r[/et_pb_text][et_pb_text admin_label=\"Pets label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pets and Hobbies</h2>\r[/et_pb_text][et_pb_text admin_label=\"Pets content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>My wife and I foster pit bull dogs through Queen City Pitties, a foster to adoption dog-rescue agency. So, we have a revolving door of dogs in and out.</li>\r\n 	<li>My hobbies include travel, hiking, woodwork, house remodel and renovation work. I am an avid cyclist and enjoy kayaking. Beyond my personal and professional life, I enjoy quiet, peaceful meditation time with a view of the sunset, a few clouds and a breeze</li>\r\n</ul>\r\n</li>\r\n</ul>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Diegelman, Neil A.','','publish','closed','closed','','diegelman-neil-a','','','2022-05-04 10:50:51','2022-05-04 14:50:51','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/attorney/diegelman-neil-a/',0,'people','',0),(46080,1156,'2021-08-11 18:20:27','2021-08-11 22:20:27','','diegelman_neil_a','','inherit','closed','closed','','diegelman_neil_a','','','2021-08-11 18:20:27','2021-08-11 22:20:27','',46079,'/wp-content/uploads/sites/1503150/2021/08/diegelman_neil_a.jpg',0,'attachment','image/jpeg',0),(46081,6,'2022-05-04 10:51:09','2022-05-04 14:51:09','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-scaled.jpeg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.3.2\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.3.2\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.3.2\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Katrina_Gray_pp.jpg\" _builder_version=\"4.3.2\" custom_margin=\"||20px||false|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Full Name\" module_class=\"fl-attorney-title\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_text_color=\"#211865\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h1>Katrina Gray</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.3.2\" text_font=\"|600|||||||\" text_text_color=\"#027acb\" text_font_size=\"24px\" header_font=\"||||||||\" header_text_color=\"#211865\" header_2_text_color=\"#211865\" header_3_font=\"||||||||\" header_3_text_color=\"#211865\" custom_padding=\"5px||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Me:</h2>[/et_pb_text][fl_people_single element=\"phone\" admin_label=\"Person Detail Element - Phone Number\" module_class=\"fl-darklinks\" _builder_version=\"4.3.2\" custom_margin=\"0px||10px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Email Button - Short Code\" module_class=\"fl-email-btn\" _builder_version=\"4.3.2\" link_font=\"||||||||\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||25px||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>[email_me_form form_id=\"3\" post_id=\"46081\"]</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.29.3\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Practice Areas\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"||20px\" custom_padding_tablet=\"0px||26px||false\" custom_padding_phone=\"0px||20px||false\" custom_padding_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h2>Practice Areas</h2>[/et_pb_text][fl_people_single element=\"practice_areas\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Practice Areas\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Biography\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Biography</h2>[/et_pb_text][fl_people_single element=\"bio\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Biography\" _builder_version=\"4.3.2\" text_orientation=\"left\" custom_padding=\"||15px||false|false\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Current Employment Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Current Employment Position</h2>[/et_pb_text][fl_people_single element=\"current_positions\" admin_label=\"Person Detail Element - Current Employment Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Bar Admissions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_text_color=\"#211865\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#211865\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Bar Admissions</h2>[/et_pb_text][fl_people_single element=\"bar_admissions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Bar Admissions\" _builder_version=\"4.3.2\" module_text_color=\"#211865\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Verdict Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Verdicts/Settlements/Cases of Note/Favorite Win</h2>[/et_pb_text][et_pb_text admin_label=\"Verdict Content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Fraud case with Mandatory and Discretionary penalties applied based on misrepresentation of medical condition</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Education\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Education</h2>[/et_pb_text][fl_people_single element=\"education\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Education\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][fl_people_single element=\"published_works\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Published Works\" _builder_version=\"4.3.2\" module_text_color=\"#211865\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Legal Superpower label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Your Legal Superpower</h2>[/et_pb_text][et_pb_text admin_label=\"Legal superpower content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Medical investigation</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Pets label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pets and Hobbies</h2>[/et_pb_text][et_pb_text admin_label=\"Pets content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>I have three beloved pets: Big dog (very well behaved boy), little dog (not at all well behaved), cat (doesn’t care whether I think he’s well behaved).</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Cases\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Cases</h2>[/et_pb_text][fl_people_single element=\"representative_cases\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Cases\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Fraternities or Sororities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Fraternities or Sororities</h2>[/et_pb_text][fl_people_single element=\"fraternity_sororities\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Fraternities or Sororities\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Professional Associations\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Associations</h2>[/et_pb_text][fl_people_single element=\"professional_assoc\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Professional Associations\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Certified Legal Specialties\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Certified Legal Specialties</h2>[/et_pb_text][fl_people_single element=\"specialties\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Certified Legal Specialties\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Classes & Seminars\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Classes & Seminars</h2>[/et_pb_text][fl_people_single element=\"classes_seminars\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Classes & Seminars\" _builder_version=\"3.24\" text_orientation=\"left\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Clients\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Clients</h2>[/et_pb_text][fl_people_single element=\"representative_clients\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Clients\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"References\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>References</h2>[/et_pb_text][fl_people_single element=\"references\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - References\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Past Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Past Positions</h2>[/et_pb_text][fl_people_single element=\"past_positions\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Past Positions\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Languages\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Languages</h2>[/et_pb_text][fl_people_single element=\"languages\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Languages\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Ancillary Businesses\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Ancillary Businesses</h2>[/et_pb_text][fl_people_single element=\"ancillary_businesses\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Ancillary Businesses\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][/et_pb_column][/et_pb_row][/et_pb_section]','Gray, Katrina','','publish','closed','closed','','gray-katrina','','','2022-05-09 09:53:30','2022-05-09 13:53:30','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/attorney/gray-katrina/',0,'people','',0),(46082,1156,'2021-08-11 18:20:32','2021-08-11 22:20:32','','gray_katrina','','inherit','closed','closed','','gray_katrina','','','2021-08-11 18:20:32','2021-08-11 22:20:32','',46081,'/wp-content/uploads/sites/1503150/2021/08/gray_katrina.jpg',0,'attachment','image/jpeg',0),(46084,1156,'2021-08-11 18:20:39','2021-08-11 22:20:39','','hatten_alexis_d','','inherit','closed','closed','','hatten_alexis_d','','','2021-08-11 18:20:39','2021-08-11 22:20:39','',0,'/wp-content/uploads/sites/1503150/2021/08/hatten_alexis_d.jpg',0,'attachment','image/jpeg',0),(46085,1,'2022-05-04 10:51:33','2022-05-04 14:51:33','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-scaled.jpeg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.3.2\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.3.2\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.3.2\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Paul_Kornacki_pp.jpg\" _builder_version=\"4.3.2\" custom_margin=\"||20px||false|false\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Full Name\" module_class=\"fl-attorney-title\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h1>Paul B. Kornacki</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.3.2\" text_font=\"|600|||||||\" text_text_color=\"#027acb\" text_font_size=\"24px\" header_font=\"||||||||\" header_2_text_color=\"#211865\" header_3_font=\"||||||||\" header_3_text_color=\"#000000\" custom_padding=\"5px||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Me:</h2>[/et_pb_text][fl_people_single element=\"phone\" admin_label=\"Person Detail Element - Phone Number\" module_class=\"fl-darklinks\" _builder_version=\"4.3.2\" module_text_color=\"#211865\" custom_margin=\"0px||10px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Email Button - Short Code\" module_class=\"fl-email-btn\" _builder_version=\"4.3.2\" link_font=\"||||||||\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||25px||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>[email_me_form form_id=\"3\" post_id=\"46085\"]</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.29.3\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Practice Areas\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"||20px\" custom_padding_tablet=\"0px||26px||false\" custom_padding_phone=\"0px||20px||false\" custom_padding_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h2>Practice Areas</h2>[/et_pb_text][fl_people_single element=\"practice_areas\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Practice Areas\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Current Employment Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Current Employment Position</h2>[/et_pb_text][fl_people_single element=\"current_positions\" admin_label=\"Person Detail Element - Current Employment Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Bar Admissions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Bar Admissions</h2>[/et_pb_text][fl_people_single element=\"bar_admissions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Bar Admissions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Professional Associations\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Associations</h2>[/et_pb_text][fl_people_single element=\"professional_assoc\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Professional Associations\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Verdict Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Verdicts/Settlements/Cases of Note/Favorite Win</h2>[/et_pb_text][et_pb_text admin_label=\"Verdict Content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Most recent, finding of 114-a with permanent disqualification.</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Education\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Education</h2>[/et_pb_text][fl_people_single element=\"education\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Education\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Tenure Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Tenure at firm</h2>[/et_pb_text][et_pb_text admin_label=\"Tenure Content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Joined the firm 4/22/2019</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Legal Superpower label\" _builder_version=\"4.3.2\" header_text_color=\"#211865\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Your Legal Superpower</h2>[/et_pb_text][et_pb_text admin_label=\"Legal superpower content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>20 plus years of experience in Workers’ Compensation</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Pets label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Hobbies</h2>[/et_pb_text][et_pb_text admin_label=\"Pets content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Watching/playing soccer</li>\n<li>Reading</li>\n<li>Hiking</li>\n</ul>\n</li>\n</ul>[/et_pb_text][fl_people_single element=\"pro_bonos\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Pro-Bono Activities\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Pro-Bono Activities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pro-Bono Activities</h2>[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Published Works\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Published Works</h2>[/et_pb_text][fl_people_single element=\"published_works\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Published Works\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Cases\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Cases</h2>[/et_pb_text][fl_people_single element=\"representative_cases\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Cases\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Fraternities or Sororities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Fraternities or Sororities</h2>[/et_pb_text][fl_people_single element=\"fraternity_sororities\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Fraternities or Sororities\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Biography\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Biography</h2>[/et_pb_text][fl_people_single element=\"bio\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Biography\" _builder_version=\"4.3.2\" text_orientation=\"left\" custom_padding=\"||15px||false|false\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Certified Legal Specialties\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Certified Legal Specialties</h2>[/et_pb_text][fl_people_single element=\"specialties\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Certified Legal Specialties\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Honors\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Honors</h2>[/et_pb_text][fl_people_single element=\"honors\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Honors\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Classes & Seminars\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Classes & Seminars</h2>[/et_pb_text][fl_people_single element=\"classes_seminars\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Classes & Seminars\" _builder_version=\"3.24\" text_orientation=\"left\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Clients\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Clients</h2>[/et_pb_text][fl_people_single element=\"representative_clients\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Clients\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"References\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>References</h2>[/et_pb_text][fl_people_single element=\"references\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - References\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Past Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Past Positions</h2>[/et_pb_text][fl_people_single element=\"past_positions\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Past Positions\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Languages\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Languages</h2>[/et_pb_text][fl_people_single element=\"languages\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Languages\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Ancillary Businesses\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Ancillary Businesses</h2>[/et_pb_text][fl_people_single element=\"ancillary_businesses\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Ancillary Businesses\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][/et_pb_column][/et_pb_row][/et_pb_section]','Kornacki, Paul B.','','publish','closed','closed','','kornacki-paul-b','','','2022-08-11 15:14:48','2022-08-11 19:14:48','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/attorney/kornacki-paul-b/',0,'people','',0),(46086,1156,'2021-08-11 18:20:43','2021-08-11 22:20:43','','kornacki_paul_b','','inherit','closed','closed','','kornacki_paul_b','','','2021-08-11 18:20:43','2021-08-11 22:20:43','',46085,'/wp-content/uploads/sites/1503150/2021/08/kornacki_paul_b.jpg',0,'attachment','image/jpeg',0),(46088,1156,'2021-08-11 18:20:47','2021-08-11 22:20:47','','machelor_kristin_m','','inherit','closed','closed','','machelor_kristin_m','','','2021-08-11 18:20:47','2021-08-11 22:20:47','',0,'/wp-content/uploads/sites/1503150/2021/08/machelor_kristin_m.jpg',0,'attachment','image/jpeg',0),(46089,19,'2022-05-04 10:51:55','2022-05-04 14:51:55','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-scaled.jpeg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.3.2\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.3.2\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.3.2\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Shannon_Mackey_pp.jpg\" alt=\"photo of associate attorney Shannan M. Mackey\" _builder_version=\"4.3.2\" custom_margin=\"||20px||false|false\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Full Name\" module_class=\"fl-attorney-title\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_text_color=\"#211865\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h1>Shannan M. Mackey</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.3.2\" text_font=\"|600|||||||\" text_text_color=\"#027acb\" text_font_size=\"24px\" header_font=\"||||||||\" header_2_text_color=\"#211865\" header_3_font=\"||||||||\" header_3_text_color=\"#000000\" custom_padding=\"5px||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Me:</h2>[/et_pb_text][fl_people_single element=\"phone\" admin_label=\"Person Detail Element - Phone Number\" module_class=\"fl-darklinks\" _builder_version=\"4.3.2\" custom_margin=\"0px||10px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Email Button - Short Code\" module_class=\"fl-email-btn\" _builder_version=\"4.3.2\" link_font=\"||||||||\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||25px||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>[email_me_form form_id=\"3\" post_id=\"46089\"]</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.29.3\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Practice Areas\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"||20px\" custom_padding_tablet=\"0px||26px||false\" custom_padding_phone=\"0px||20px||false\" custom_padding_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h2>Practice Areas</h2>[/et_pb_text][fl_people_single element=\"practice_areas\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Practice Areas\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Current Employment Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Current Employment Position</h2>[/et_pb_text][fl_people_single element=\"current_positions\" admin_label=\"Person Detail Element - Current Employment Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Bar Admissions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Bar Admissions</h2>[/et_pb_text][fl_people_single element=\"bar_admissions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Bar Admissions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Professional Associations\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Associations</h2>[/et_pb_text][fl_people_single element=\"professional_assoc\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Professional Associations\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Verdict Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Verdicts/Settlements/Cases of Note/Favorite Win</h2>[/et_pb_text][et_pb_text admin_label=\"Verdict Content\" _builder_version=\"4.11.4\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Favorite win was a fraud claim with a permanent disqualification in front of a notoriously picky WCLJ. Our firm was tapped into the case late and there were some issues with the prior litigation. The claimant was working at a laundromat, but claimed that she was not getting paid and was just in training. We had surveillance that helped with that issue but the Board lost the digital audio recording of the claimant’s testimony. So, the claimant essentially got a redo of her testimony after she had already seen all our evidence. She was thus able to change her testimony and tailor it to our proofs. Where we were able to focus was the claimant’s assertion that she was not paid until AFTER we raised fraud and she disclosed her work-activity because she was training without pay for four months. She at first asserted that she received retroactive checks, when we asked for a copy she then said it was direct deposit. The Judge directed her to provide banking records, and she gave incomplete records for a secondary account that showed very little activity. We pointed out that it also did not show the direct deposit of her Workers’ Compensation payments, and provided payment proofs and the information that she had that undisclosed account. We obtained a permanent disqualification despite fate interfering and giving her a second chance. The reason it is my favorite win though, is that while I do not like to judge people, her background check revealed several convictions for cruelty to animals due to her participation in a dog fighting ring. So, it was an unequivocal victory where even claimant’s counsel was happy we triumphed. (Although he gave a heck of a fight for a client he hated, and never let on he hated them until the end.)</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Education\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Education</h2>[/et_pb_text][fl_people_single element=\"education\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Education\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Pro-Bono Activities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pro-Bono Activities</h2>[/et_pb_text][fl_people_single element=\"pro_bonos\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Pro-Bono Activities\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Honors\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Honors</h2>[/et_pb_text][fl_people_single element=\"honors\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Honors\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Published Works\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Published Works</h2>[/et_pb_text][fl_people_single element=\"classes_seminars\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Classes & Seminars\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Tenure Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Tenure at firm</h2>[/et_pb_text][et_pb_text admin_label=\"Tenure Content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>October 2018</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Legal Superpower label\" _builder_version=\"4.3.2\" header_text_color=\"#211865\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Your Legal Superpower</h2>[/et_pb_text][et_pb_text admin_label=\"Legal superpower content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>My ability to see the entirety of a case, even last minute.  I can see the entire battlefield the way Payton Manning sees a defense.</li>\n<li>I am often underestimated in testimony.  I have been told that Claimant’s will often comment to that counsel about how they hope that nice attorney is there, this especially comes in handy for fraud claims when they assume that my kind smile, affirmative comments, and cordial nature means that I believe them.</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Pets label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pets and Hobbies</h2>[/et_pb_text][et_pb_text admin_label=\"Pets content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>\n<p>Noble- a 2.5 year old Chihuahua and Jack Russell Terrier we rescued 2 years ago</p>\n</li>\n<li>\n<p>Emmy Grace- a 3.5 year old Chihuahua and Miniature Pinscher mix we rescued 1 year ago</p>\n</li>\n<li>\n<p>Wojo – a 9 year old black cat we rescued as a kitten</p>\n</li>\n<li>\n<p>Adult tap dancing taught by a former Rockette who puts on a fantastic Christmas show</p>\n</li>\n<li>\n<p>Swimming and being a travel softball coach (happily recently demoted back to regular travel softball mom, which means I don’t have to fill in to run bases during practice and I can stop showing off the slides and dives that I always regret the next day)</p>\n</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Cases\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Cases</h2>[/et_pb_text][fl_people_single element=\"representative_cases\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Cases\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Fraternities or Sororities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Fraternities or Sororities</h2>[/et_pb_text][fl_people_single element=\"fraternity_sororities\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Fraternities or Sororities\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Certified Legal Specialties\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Certified Legal Specialties</h2>[/et_pb_text][fl_people_single element=\"specialties\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Certified Legal Specialties\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Classes & Seminars\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Classes & Seminars</h2>[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Biography\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Biography</h2>[/et_pb_text][fl_people_single element=\"bio\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Biography\" _builder_version=\"4.3.2\" text_orientation=\"left\" custom_padding=\"||15px||false|false\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Clients\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Clients</h2>[/et_pb_text][fl_people_single element=\"representative_clients\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Clients\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"References\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>References</h2>[/et_pb_text][fl_people_single element=\"references\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - References\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Past Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Past Positions</h2>[/et_pb_text][fl_people_single element=\"past_positions\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Past Positions\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Languages\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Languages</h2>[/et_pb_text][fl_people_single element=\"languages\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Languages\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Ancillary Businesses\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Ancillary Businesses</h2>[/et_pb_text][fl_people_single element=\"ancillary_businesses\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Ancillary Businesses\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][/et_pb_column][/et_pb_row][/et_pb_section]','Mackey, Shannan M.','','publish','closed','closed','','mackey-shannan-m','','','2022-05-04 10:51:55','2022-05-04 14:51:55','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/attorney/mackey-shannan-m/',0,'people','',0),(46090,1156,'2021-08-11 18:20:52','2021-08-11 22:20:52','','mackey_shannan_m','','inherit','closed','closed','','mackey_shannan_m','','','2021-08-11 18:20:52','2021-08-11 22:20:52','',46089,'/wp-content/uploads/sites/1503150/2021/08/mackey_shannan_m.jpg',0,'attachment','image/jpeg',0),(46091,19,'2022-05-04 10:52:08','2022-05-04 14:52:08','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-scaled.jpeg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.3.2\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.3.2\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.3.2\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Brian_Prince-1_pp.jpg\" alt=\"photo of attorney Brian K. Prince\" _builder_version=\"4.3.2\" custom_margin=\"||20px||false|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Full Name\" module_class=\"fl-attorney-title\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h1>Brian K. Prince</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.3.2\" text_font=\"|600|||||||\" text_text_color=\"#027acb\" text_font_size=\"24px\" header_font=\"||||||||\" header_2_text_color=\"#211865\" header_3_font=\"||||||||\" header_3_text_color=\"#000000\" custom_padding=\"5px||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Me:</h2>[/et_pb_text][fl_people_single element=\"phone\" admin_label=\"Person Detail Element - Phone Number\" module_class=\"fl-darklinks\" _builder_version=\"4.3.2\" module_font=\"||||on|||#211865|\" module_text_color=\"#211865\" custom_margin=\"0px||10px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Email Button - Short Code\" module_class=\"fl-email-btn\" _builder_version=\"4.3.2\" link_font=\"||||||||\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||25px||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>[email_me_form form_id=\"3\" post_id=\"46091\"]</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.29.3\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Practice Areas\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"||20px\" custom_padding_tablet=\"0px||26px||false\" custom_padding_phone=\"0px||20px||false\" custom_padding_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h2>Practice Areas</h2>[/et_pb_text][fl_people_single element=\"practice_areas\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Practice Areas\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Current Employment Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Current Employment Position</h2>[/et_pb_text][fl_people_single element=\"current_positions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Current Employment\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Bar Admissions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Bar Admissions</h2>[/et_pb_text][fl_people_single element=\"bar_admissions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Bar Admissions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Professional Associations\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Associations</h2>[/et_pb_text][fl_people_single element=\"professional_assoc\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Professional Associations\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Verdict Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" global_colors_info=\"{}\"]<h2>Verdicts/Settlements/Cases of Note/Favorite Win</h2>[/et_pb_text][et_pb_text admin_label=\"Verdict Content\" _builder_version=\"4.11.4\" text_text_color=\"#000000\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>My favorite win is Legacy Health Care (WCB# G0031412, January 4, 2021), which was my first Board Panel win on the issue of extreme hardship. Claimant tried to manipulate their income figures and expenses using an improper allocation of above and below the line expenses, and also threw their hands up instead of actually trying to do things on their end to reduce the amount of “hardship” they’d experience. Needless to say, we shined a light on all their tricks and the Board Panel wasn’t fooled by them.</li>\n<li>My first disallowance when I first started Workers\' Compensation for a claimant who requested time off work, was denied, and just so happened to have an accident the day before the time she previously requested off is one of my favorite wins. We were able to get concessions from her PA that she never disclosed a work accident to him, but actually denied any accident. This was my favorite case because it was my first time taking claimant testimony and I got plenty of objections which would make me stumble and more nervous, and I felt humiliated for asking so many questions about the inconsistencies in the record because “asked and answered” was a frequent objection. However, my intuition was correct and I prevailed on the same inconsistencies claimant’s counsel continued to object to questions regarding.</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Education\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Education</h2>[/et_pb_text][fl_people_single element=\"education\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Education\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Pro-Bono Activities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pro-Bono Activities</h2>[/et_pb_text][fl_people_single element=\"pro_bonos\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Pro-Bono Activities\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Honors\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Honors</h2>[/et_pb_text][fl_people_single element=\"honors\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Honors\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Published Works\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Published Works</h2>[/et_pb_text][fl_people_single element=\"published_works\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Published Works\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" global_colors_info=\"{}\"]<h2>Tenure at firm</h2>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>4 years, with a start date of 05/08/2017</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Legal Superpower label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" global_colors_info=\"{}\"]<h2>Your Legal Superpower</h2>[/et_pb_text][et_pb_text admin_label=\"Legal superpower content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Talking with my wife. Having been with my wife since the start of her second year of orthopedic surgery residency, we’ve discussed probably thousands of cases at this point: hers, mine, and the one case where she actually did the surgery on my case. As such I have familiarity with the medical jargon doctors use (so they can’t really try to “doctor speak” me to death on depositions as I can process it in real-time), a good understanding of how the human body operates, a knowledge of where to look for unfamiliar medical issues and, if all else fails, someone who’ll gladly talk about medical issues with me.</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Pets label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" global_colors_info=\"{}\"]<h2>Pets and Hobbies</h2>[/et_pb_text][et_pb_text admin_label=\"Pets content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>2 dogs, Lilly, a lab-mix and Eli, a hound-mix (and yes, realized after the fact that we have dogs Eli and Lilly) who visits the local dog park with me on a daily basis, when we’re not hanging out at home.</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Biography\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Biography</h2>[/et_pb_text][fl_people_single element=\"bio\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Biography\" _builder_version=\"4.3.2\" text_orientation=\"left\" custom_padding=\"||15px||false|false\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Cases\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Cases</h2>[/et_pb_text][fl_people_single element=\"representative_cases\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Cases\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Fraternities or Sororities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Fraternities or Sororities</h2>[/et_pb_text][fl_people_single element=\"fraternity_sororities\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Fraternities or Sororities\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Certified Legal Specialties\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Certified Legal Specialties</h2>[/et_pb_text][fl_people_single element=\"specialties\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Certified Legal Specialties\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Classes & Seminars\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Classes & Seminars</h2>[/et_pb_text][fl_people_single element=\"classes_seminars\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Classes & Seminars\" _builder_version=\"3.24\" text_orientation=\"left\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Clients\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Clients</h2>[/et_pb_text][fl_people_single element=\"representative_clients\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Clients\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"References\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>References</h2>[/et_pb_text][fl_people_single element=\"references\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - References\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Past Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Past Positions</h2>[/et_pb_text][fl_people_single element=\"past_positions\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Past Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Languages\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Languages</h2>[/et_pb_text][fl_people_single element=\"languages\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Languages\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Ancillary Businesses\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Ancillary Businesses</h2>[/et_pb_text][fl_people_single element=\"ancillary_businesses\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Ancillary Businesses\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][/et_pb_column][/et_pb_row][/et_pb_section]','Prince, Brian K.','','publish','closed','closed','','prince-brian-k','','','2022-05-04 10:52:08','2022-05-04 14:52:08','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/attorney/prince-brian-k/',0,'people','',0),(46092,1156,'2021-08-11 18:20:56','2021-08-11 22:20:56','','prince_brian_k','','inherit','closed','closed','','prince_brian_k','','','2021-08-11 18:20:56','2021-08-11 22:20:56','',46091,'/wp-content/uploads/sites/1503150/2021/08/prince_brian_k.jpg',0,'attachment','image/jpeg',0),(46094,2461,'2021-08-16 00:15:59','2021-08-16 04:15:59','','LogoColorTextBelow','','inherit','closed','closed','','logocolortextbelow','','','2021-11-23 15:07:38','2021-11-23 20:07:38','',0,'/wp-content/uploads/sites/1503150/2021/08/LogoColorTextBelow.png',0,'attachment','image/png',0),(46098,2461,'2021-08-16 00:18:52','2021-08-16 04:18:52','','0_0_0_0_177_236_csupload_64428384','','inherit','closed','closed','','0_0_0_0_177_236_csupload_64428384','','','2021-08-16 00:18:52','2021-08-16 04:18:52','',0,'/wp-content/uploads/sites/1503150/2021/08/0_0_0_0_177_236_csupload_64428384.jpg',0,'attachment','image/jpeg',0),(46101,26,'2021-08-16 00:26:40','2021-08-16 04:26:40','<h1>Daniel H. Flynn</h1>\r\n<img class=\"alignnone size-medium wp-image-47598\" src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Daniel_Flynn-1_pp-300x300.jpg\" alt=\"Deposition Coordinator Daniel H. Flynn\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Billing Clerk</strong>\r\n<h2>Contact Me:</h2>\r\n<a role=\"link\" href=\"tel:+1-716-650-5283\" data-wpel-link=\"internal\">(716) 650-5283</a>\r\n\r\n<a class=\"btn-email-staff\" role=\"link\" href=\"mailto:dflynn@madwcdefense.com\">Email Me</a>\r\n\r\n<span style=\"color: #211865;\">Daniel is originally from Syracuse, New York, and moved to Buffalo in 2013 to attend Buffalo State College. He graduated in 2017 with a bachelor’s degree in history. He is currently completing his master’s thesis, which concerns a British Naval officer during the Napoleonic Wars. He occasionally moonlights as a history tour guide in downtown Buffalo. He has a strong background in classical music and possesses an encyclopedic knowledge of trivia, especially when it concerns history.</span>\r\n\r\n<span style=\"color: #211865;\">He likes the smell of wet soil, gasoline, and hyacinth flowers. He hates karaoke and mayonnaise.</span>','Daniel H. Flynn','','publish','closed','closed','','daniel-h-flynn','','','2022-09-23 08:38:26','2022-09-23 12:38:26','',48410,'https://duplicate-3602675.findlaw5.flsitebuilder.com/daniel-flynn/',0,'page','',0),(46104,2461,'2021-08-16 00:28:15','2021-08-16 04:28:15','','DHF-webrdy-e1583244723703','','inherit','closed','closed','','dhf-webrdy-e1583244723703','','','2021-08-16 00:28:15','2021-08-16 04:28:15','',0,'/wp-content/uploads/sites/1503150/2021/08/DHF-webrdy-e1583244723703.png',0,'attachment','image/png',0),(46114,2461,'2021-08-16 00:41:36','2021-08-16 04:41:36','','KBD-e1560351563755','','inherit','closed','closed','','kbd-e1560351563755','','','2021-08-16 00:41:36','2021-08-16 04:41:36','',0,'/wp-content/uploads/sites/1503150/2021/08/KBD-e1560351563755.png',0,'attachment','image/png',0),(46115,2461,'2021-08-16 00:41:40','2021-08-16 04:41:40','','KG2-e1543856315349','','inherit','closed','closed','','kg2-e1543856315349','','','2021-08-16 00:41:40','2021-08-16 04:41:40','',0,'/wp-content/uploads/sites/1503150/2021/08/KG2-e1543856315349.jpg',0,'attachment','image/jpeg',0),(46116,2461,'2021-08-16 00:41:43','2021-08-16 04:41:43','','JLM-e1609438869666','','inherit','closed','closed','','jlm-e1609438869666','','','2021-08-16 00:41:43','2021-08-16 04:41:43','',0,'/wp-content/uploads/sites/1503150/2021/08/JLM-e1609438869666.png',0,'attachment','image/png',0),(46117,2461,'2021-08-16 00:41:47','2021-08-16 04:41:47','','JMC-e1602506319276','','inherit','closed','closed','','jmc-e1602506319276','','','2021-08-16 00:41:47','2021-08-16 04:41:47','',0,'/wp-content/uploads/sites/1503150/2021/08/JMC-e1602506319276.png',0,'attachment','image/png',0),(46118,2461,'2021-08-16 00:41:51','2021-08-16 04:41:51','','JLG-e1609438890826','','inherit','closed','closed','','jlg-e1609438890826','','','2021-08-16 00:41:51','2021-08-16 04:41:51','',0,'/wp-content/uploads/sites/1503150/2021/08/JLG-e1609438890826.png',0,'attachment','image/png',0),(46119,26,'2021-08-16 01:38:41','2021-08-16 05:38:41','<h1>Jillian M. Chavers</h1>\r\n<img class=\"alignnone size-medium wp-image-47578\" src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Jillian_Chavers_pp-300x300.jpg\" alt=\"Hearing Coordinator Jillian M. Chavers\" width=\"300\" height=\"300\" />\r\n<h3>Hearing Coordinator</h3>\r\n<h2>Contact Me:</h2>\r\n<a role=\"link\" href=\"tel:+1-716-204-7617\" data-wpel-link=\"internal\">(716) 204-7617</a>\r\n\r\n<a class=\"btn-email-staff\" role=\"link\" href=\"mailto:jchavers@madwcdefense.com\">Email Me</a>\r\n\r\n<span style=\"color: #211865;\">Jillian comes to us with extensive experience in the legal field. She holds an associate degree in paralegal studies from Bryan and Stratton College, where she graduated with the highest honors. She has been working in the legal field for more than 15 years in various areas of law including workers’ compensation, litigation and estates, and she is always eager to learn more. She enjoys being part of such a dynamic team and prides herself in working well with others.</span>\r\n\r\n<span style=\"color: #211865;\">Jill currently has resided in western New York her whole life. In her free time, she enjoys spending time with her family and friends, watching television, going to the movies, live music and collecting records.</span>','Jillian M. Chavers','','publish','closed','closed','','jillian-m-chavers','','','2022-09-23 08:37:45','2022-09-23 12:37:45','',48410,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46119',0,'page','',0),(46120,2461,'2021-08-16 00:41:56','2021-08-16 04:41:56','','JCW1-e1619123390972','','inherit','closed','closed','','jcw1-e1619123390972','','','2021-08-16 00:41:56','2021-08-16 04:41:56','',0,'/wp-content/uploads/sites/1503150/2021/08/JCW1-e1619123390972.png',0,'attachment','image/png',0),(46121,26,'2021-08-16 01:42:23','2021-08-16 05:42:23','<h1>Jody L. Guiher</h1>\r\n<img class=\"alignnone size-medium wp-image-47585\" src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Jody_Guiher_pp-300x300.jpg\" alt=\"legal assistant Jody L. Guiher\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Deposition Coordinator</strong>\r\n<h2>Contact Me:</h2>\r\n<a role=\"link\" href=\"tel:+1-716-650-5288\" data-wpel-link=\"internal\">(716) 650-5288</a>\r\n\r\n<a class=\"btn-email-staff\" role=\"link\" href=\"mailto:jguiher@madwcdefense.com\">Email Me</a>\r\n\r\n<span style=\"color: #211865;\">Jody is a retired Army combat veteran. Jody has served 13 years in the military with one combat tour in Baghdad, Iraq, and one combat tour in Afghanistan. In the military, Jody was a mechanic on and OH-58 Kiowa Warrior helicopter. She met her husband when they were both young in military entry-level training, and they have been married since 2004. Together, they have five children and two grandchildren. After retirement, Jody went back to school and earned both an associate\'s degree in liberal arts and social sciences and a bachelor’s in interdisciplinary studies, concentrating on legal studies.</span>\r\n\r\n<span style=\"color: #211865;\">When she is not spending time with her children playing Dungeons and Dragons, Jody enjoys crocheting, doing crafts with her youngest child, and playing with her two dogs or chickens.</span>','Jody L. Guiher','','publish','closed','closed','','jody-l-guiher','','','2022-09-23 08:39:15','2022-09-23 12:39:15','',48410,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46121',0,'page','',0),(46122,26,'2021-08-16 02:03:48','2021-08-16 06:03:48','<h1>Justice C. Williams</h1>\r\n<img class=\"wp-image-48329 alignnone size-medium\" src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/11/Justice-WIlliams-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Deposition Coordinator</strong>\r\n<h2>Contact Me:</h2>\r\n<a role=\"link\" href=\"tel:+1-716-650-5268\" data-wpel-link=\"internal\">(716) 650-5268</a>\r\n\r\n<a class=\"btn-email-staff\" role=\"link\" href=\"mailto:jwilliams@madwcdefense.com\">Email Me</a>\r\n\r\n<span style=\"color: #211865;\">Justice came to us fresh out of college with an associate’s degree in applied science: paralegal. She has always had a deep interest in law and is always excited to learn more.</span>\r\n\r\n<span style=\"color: #211865;\">Justice enjoys time spent with her children, family, and friends and loves exploring new places surrounded by her favorite people. She can be found relaxing while reading a good book or doing yoga to wind down. She is a movie lover and is usually watching something Disney, Marvel, fantasy or sci-fi related. Justice is, of course, a hardcore Buffalo Bills fan!</span>','Justice C. Williams','','publish','closed','closed','','justice-c-williams','','','2022-09-23 08:40:37','2022-09-23 12:40:37','',48410,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46122',0,'page','',0),(46123,2461,'2021-08-16 00:42:04','2021-08-16 04:42:04','','HEK-e1609439152814','','inherit','closed','closed','','hek-e1609439152814','','','2021-08-16 00:42:04','2021-08-16 04:42:04','',0,'/wp-content/uploads/sites/1503150/2021/08/HEK-e1609439152814.png',0,'attachment','image/png',0),(46124,2461,'2021-08-16 00:42:06','2021-08-16 04:42:06','','JBC-Partner-e1546283938157','','inherit','closed','closed','','jbc-partner-e1546283938157','','','2021-08-16 00:42:06','2021-08-16 04:42:06','',0,'/wp-content/uploads/sites/1503150/2021/08/JBC-Partner-e1546283938157.jpg',0,'attachment','image/jpeg',0),(46125,26,'2021-08-16 02:07:23','2021-08-16 06:07:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Katrina A. Gray\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Katrina_Gray_pp.jpg\" alt=\"photo of associate attorney Katrina Gray\" title_text=\"Katrina_Gray_pp\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - KAG\" _builder_version=\"4.18.0\" module_alignment=\"center\" custom_padding=\"|||15px|false|false\" custom_padding_tablet=\"||30px|0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|phone\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Katrina A. Gray\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">Katrina A. Gray</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:7166505289\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"KAG Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" hover_enabled=\"0\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<div class=\"et_pb_module et_pb_text et_pb_text_29  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Practice Areas</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_18\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\">Workers\' Compensation</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_31  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Current Employment Position</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_20\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\">Of Counsel</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_32  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Bar Admissions</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_21\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\">New York, 2013</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_33  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Verdicts/Settlements/Cases of Note/Favorite Win</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_34  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Fraud case with Mandatory and Discretionary penalties applied based on misrepresentation of medical condition</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_35  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Education</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_22\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\"><strong>University at Buffalo Law School</strong>, Buffalo, New York\n<ul>\n<li>J.D.</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_23\">\n<div class=\"et_pb_module_inner\"> </div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_36  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Your Legal Superpower</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_37  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Medical investigation</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_38  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pets and Hobbies</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_39  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>I have three beloved pets: Big dog (very well behaved boy), little dog (not at all well behaved), cat (doesn’t care whether I think he’s well behaved).</li>\n</ul>\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Katrina Gray','','publish','closed','closed','','katrina-gray','','','2022-09-23 08:33:34','2022-09-23 12:33:34','',46191,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46125',0,'page','',0),(46126,2461,'2021-08-16 00:42:11','2021-08-16 04:42:11','','ECamp1-e1527085139339','','inherit','closed','closed','','ecamp1-e1527085139339','','','2021-08-16 00:42:11','2021-08-16 04:42:11','',0,'/wp-content/uploads/sites/1503150/2021/08/ECamp1-e1527085139339.jpg',0,'attachment','image/jpeg',0),(46129,26,'2021-08-16 01:02:47','2021-08-16 05:02:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#211865\" sticky_enabled=\"0\"]<h1>Elena N. Camp</h1>\n<p><img class=\"wp-image-47575 alignnone size-medium\" src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp-300x300.jpg\" alt=\"Assistant Office Manager Elena N. Camp\" width=\"300\" height=\"300\" /></p>\n<p><strong>Billing Manager</strong></p>\n<h2>Contact Me:</h2>\n<p><a role=\"link\" href=\"tel:+1-716-650-5263\" data-wpel-link=\"internal\">(716) 650-5263</a></p>\n<p><a class=\"btn-email-staff\" role=\"link\" href=\"mailto:ecamp@madwcdefense.com\">Email Me</a></p>\n<p>Elena is excited to a part of a lively group whose foremost goal is to foster strong partnerships with their clients, leading to a proactive rather than a reactive approach to strategies and goals. She has extensive experience as a paralegal and legal assistant across the legal board – from workers’ compensation to property tax assessment, criminal, matrimonial, and beyond. Over the past few years, she has honed her customer service and organizational skills, becoming a detail-oriented, proactive and intelligent assistant to the attorneys with whom she worked. Elena is particularly adept at managing deadlines, ensuring not only that legal documentation is timely filed, but that clients’ expectations are met and exceeded.</p>\n<p>Though her roots originate in Erie, Pennsylvania, she spent her more formative years in western New York cultivating friendships and joining a church youth group where she was able to share her love for singing. Elena and her husband decided to stay in the area and are raising their children in true Buffalo style: on football and wings.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Elena N. Camp','','publish','closed','closed','','elena-n-camp','','','2022-09-23 08:36:26','2022-09-23 12:36:26','',48410,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46129',0,'page','',0),(46132,26,'2021-08-16 01:32:48','2021-08-16 05:32:48','<h1>Jenny L. Malkowski</h1>\r\n<img class=\"alignnone size-medium wp-image-47584\" src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Jenny_Malkowski_pp-300x300.jpg\" alt=\"legal assistant Jenny L. Malkowski\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Medical Records Coordinator</strong>\r\n<h2>Contact Me:</h2>\r\n<a role=\"link\" href=\"tel:+1-716-458-1822\" data-wpel-link=\"internal\">(716) 458-1822</a>\r\n\r\n<a class=\"btn-email-staff\" role=\"link\" href=\"mailto:jmalkowski@madwcdefense.com\">Email Me</a>\r\n\r\n<span style=\"color: #211865;\">Jenny graduated from Erie Community College with an associate degree in business administration. She has worked extensively in the legal field for more than 10 years in various areas of law including foreclosures and contract law. She is looking forward to learning more within the workers’ compensation area with our firm.</span>\r\n\r\n<span style=\"color: #211865;\">Jenny has resided in western New York her whole life. In her free time, she enjoys spending time with her children, catching up with friends, watching television and crafting with her Cricut machine.</span>','Jenny L. Malkowski','','publish','closed','closed','','jenny-l-malkowski','','','2022-09-23 08:39:52','2022-09-23 12:39:52','',48410,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46132',0,'page','',0),(46150,2461,'2021-08-16 02:29:55','2021-08-16 06:29:55','','VLB-webrdy-e1583244774191','','inherit','closed','closed','','vlb-webrdy-e1583244774191','','','2021-08-16 02:29:55','2021-08-16 06:29:55','',0,'/wp-content/uploads/sites/1503150/2021/08/VLB-webrdy-e1583244774191.png',0,'attachment','image/png',0),(46151,2461,'2021-08-16 02:29:59','2021-08-16 06:29:59','','TCleary-revised-e1564430301923','','inherit','closed','closed','','tcleary-revised-e1564430301923','','','2021-08-16 02:29:59','2021-08-16 06:29:59','',0,'/wp-content/uploads/sites/1503150/2021/08/TCleary-revised-e1564430301923.png',0,'attachment','image/png',0),(46152,2461,'2021-08-16 02:30:04','2021-08-16 06:30:04','','TXD1-e1542304527103','','inherit','closed','closed','','txd1-e1542304527103','','','2021-08-16 02:30:04','2021-08-16 06:30:04','',0,'/wp-content/uploads/sites/1503150/2021/08/TXD1-e1542304527103.jpg',0,'attachment','image/jpeg',0),(46153,2461,'2021-08-16 02:30:07','2021-08-16 06:30:07','','SMM2-e1543856304373','','inherit','closed','closed','','smm2-e1543856304373','','','2021-08-16 02:30:07','2021-08-16 06:30:07','',0,'/wp-content/uploads/sites/1503150/2021/08/SMM2-e1543856304373.jpg',0,'attachment','image/jpeg',0),(46154,2461,'2021-08-16 02:30:10','2021-08-16 06:30:10','','SLE-e1609438853360','','inherit','closed','closed','','sle-e1609438853360','','','2021-08-16 02:30:10','2021-08-16 06:30:10','',0,'/wp-content/uploads/sites/1503150/2021/08/SLE-e1609438853360.png',0,'attachment','image/png',0),(46155,2461,'2021-08-16 02:30:13','2021-08-16 06:30:13','','PBK-e1560351916512','','inherit','closed','closed','','pbk-e1560351916512','','','2021-08-16 02:30:13','2021-08-16 06:30:13','',0,'/wp-content/uploads/sites/1503150/2021/08/PBK-e1560351916512.png',0,'attachment','image/png',0),(46156,2461,'2021-08-16 02:30:16','2021-08-16 06:30:16','','RBrashear1-e1544211193771','','inherit','closed','closed','','rbrashear1-e1544211193771','','','2021-08-16 02:30:16','2021-08-16 06:30:16','',0,'/wp-content/uploads/sites/1503150/2021/08/RBrashear1-e1544211193771.jpg',0,'attachment','image/jpeg',0),(46157,2461,'2021-08-16 02:30:19','2021-08-16 06:30:19','','NWalker-1-e1625232413654','','inherit','closed','closed','','nwalker-1-e1625232413654','','','2021-08-16 02:30:19','2021-08-16 06:30:19','',0,'/wp-content/uploads/sites/1503150/2021/08/NWalker-1-e1625232413654.png',0,'attachment','image/png',0),(46158,2461,'2021-08-16 02:30:22','2021-08-16 06:30:22','','MAD-Copy1-e1614865430869','','inherit','closed','closed','','mad-copy1-e1614865430869','','','2021-08-16 02:30:22','2021-08-16 06:30:22','',0,'/wp-content/uploads/sites/1503150/2021/08/MAD-Copy1-e1614865430869.png',0,'attachment','image/png',0),(46159,2461,'2021-08-16 02:30:25','2021-08-16 06:30:25','','NAD-webrdy-e1583244759983','','inherit','closed','closed','','nad-webrdy-e1583244759983','','','2021-08-16 02:30:25','2021-08-16 06:30:25','',0,'/wp-content/uploads/sites/1503150/2021/08/NAD-webrdy-e1583244759983.png',0,'attachment','image/png',0),(46160,2461,'2021-08-16 02:30:27','2021-08-16 06:30:27','','KMM-e1527081490125','','inherit','closed','closed','','kmm-e1527081490125','','','2021-08-16 02:30:27','2021-08-16 06:30:27','',0,'/wp-content/uploads/sites/1503150/2021/08/KMM-e1527081490125.jpg',0,'attachment','image/jpeg',0),(46163,2461,'2021-08-16 02:39:03','2021-08-16 06:39:03','','MXD-webrdy-e1583244740263','','inherit','closed','closed','','mxd-webrdy-e1583244740263','','','2021-08-16 02:39:03','2021-08-16 06:39:03','',0,'/wp-content/uploads/sites/1503150/2021/08/MXD-webrdy-e1583244740263.png',0,'attachment','image/png',0),(46171,26,'2021-08-16 02:58:23','2021-08-16 06:58:23','<h1>Rebecca C. Brashear</h1>\r\n<img class=\"alignnone size-medium wp-image-47577\" src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Rebecca_Brashear_pp-300x300.jpg\" alt=\"legal assistant Rebecca C. Brashear\" width=\"300\" height=\"300\" />\r\n<h3><strong>Claims Supervisor</strong></h3>\r\n<h2>Contact Me:</h2>\r\n<a role=\"link\" href=\"tel:+1-716-250-2879\" data-wpel-link=\"internal\">(716) 250-2879</a>\r\n\r\n<a class=\"btn-email-staff\" role=\"link\" href=\"mailto:rbrashear@madwcdefense.com\">Email Me</a>\r\n\r\n<span style=\"color: #211865;\">Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants. When the opportunity arose for her to see workers’ compensation from the opposite end of the field, she was eager to start using her knowledge and skills with a different point of view. Always up for a challenge, Rebecca’s tough determination and solid work ethic are what keep her consistently motivated to contribute wherever possible and get the job done.</span>\r\n\r\n<span style=\"color: #211865;\">Rebecca also comes to us with a colorful educational and work history starting with obtaining a bachelor’s degree in technical theater from Buffalo State College. Working for several years as a stage hand, light and set designer, and technical director, Rebecca’s passion for live entertainment ultimately led her to working with professional fireworks for various pyrotechnic companies. With over a combined 2,000 shows launched between various holidays and events, her resume also includes approximately five years of shooting fireworks for the Darien Lake Laser Light Show.</span>\r\n\r\n<span style=\"color: #211865;\">Outside the office, Rebecca takes comfort in following in her late father’s footsteps by enjoying nature and photography. She also enjoys bike riding, reading, her extensive music collection and sports. It is also no surprise that Rebecca’s favorite holiday is Independence Day!</span>','Rebecca C. Brashear','','publish','closed','closed','','rebecca-c-brashear','','','2022-09-23 08:37:07','2022-09-23 12:37:07','',48410,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46171',0,'page','',0),(46179,26,'2021-08-16 03:10:41','2021-08-16 07:10:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#211865\" sticky_enabled=\"0\"]<h1>Thomas M. Dickinson</h1>\n<p><img class=\"wp-image-47572 alignnone size-medium\" src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Thomas_Dickinson_pp-300x300.jpg\" alt=\"legal analyst Thomas M. Dickinson\" width=\"300\" height=\"300\" /></p>\n<p><strong>Office Manager</strong></p>\n<h2>Contact Me:</h2>\n<p><a role=\"link\" href=\"tel:+1-716-250-9286\" data-wpel-link=\"internal\">(716) 250-9286</a></p>\n<p><a class=\"btn-email-staff\" role=\"link\" href=\"mailto:tdickinson@madwcdefense.com\">Email Me</a></p>\n<p>Prior to joining The Law Offices of Melissa A. Day, Tom worked for Special Funds Conservation Committee for 23 years. During his tenure at Special Funds, Tom defended the interests of the Fund at thousands of workers’ compensation hearings. During that time, Tom was also manager of the Albany office of Special Funds for two years and manager of the Buffalo office of Special Funds for eight years. During his time in management, and as a hearing representative, Tom gained valuable experience in claims analysis, litigation, legal research and writing, negotiation and resolution of issues. Over the years, Tom has worked closely and developed a strong working relationship with insurance carriers and their legal counsel as well as claimant’s attorneys.</p>\n<p>Tom graduated from SUNY Buffalo State with a bachelor’s degree in economics with a minor in management. He has worked in the NYS Workers Compensation field since 1995 and has continued to gain experience and hone his skills over those years.</p>\n<p>Tom grew up in Tonawanda, New York, and presently lives in Grand Island, New York, with his wife Jeannie, her dog and her chickens. He has three daughters: Jessika, age 26, has Prader Willi Syndrome and lives in a group home in Boston, New York, but is at home every weekend. Sari, age 20, is presently working at an aquaponics farm in Oahu, Hawaii. Isabel, age 18, is in New Orleans attending Loyola University. During his free time, Tom enjoys golf, skiing, reading and spending time with his wife.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Thomas M. Dickinson','','publish','closed','closed','','thomas-m-dickinson','','','2022-09-23 08:35:46','2022-09-23 12:35:46','',48410,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46179',0,'page','',0),(46189,26,'2021-08-16 03:32:24','2021-08-16 07:32:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#ffffff\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" background_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" background_color=\"#ffffff\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.18.0\" text_font=\"Playfair Display||||||||\" text_text_color=\"#211865\" header_text_color=\"#211865\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"600px\" width_tablet=\"600px\" width_phone=\"auto\" width_last_edited=\"on|phone\" module_alignment=\"center\" hover_enabled=\"0\" module_alignment_tablet=\"center\" module_alignment_phone=\"left\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" text_font_size=\"20px\" sticky_enabled=\"0\"]<h1 style=\"text-align: center;\">The Team</h1>\n<p style=\"text-align: center;\">The Law Offices of Melissa A. Day, PLLC has some of the most talented, interesting, and hardworking employees. Melissa has a unique talent for finding amazing people to help the office thrive and is proud of the work they do. Our attorneys bring well over 100 years of combined experience in the workers’ compensation field. All of our staff bring a variety of skills and experience to our ever-expanding crew, creating one of the best teams in New York state. Check out our attorneys or our staff by clicking below!</p>\n<p style=\"text-align: center;\"><strong><span style=\"text-decoration: underline;\"><a href=\"/the-teams/workers-compensation-team/\">Click here to learn more about our Attorneys!</a></span></strong></p>\n<p style=\"text-align: center;\"><strong><span style=\"text-decoration: underline;\"><a href=\"/support-staff/\">Click here to learn more about our Legal Assistants and Paralegals!</a></span></strong></p>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" disabled_on=\"off|off|on\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"100%\" width_tablet=\"100%\" width_phone=\"53%\" width_last_edited=\"on|phone\" module_alignment=\"left\" custom_margin=\"15px||-15px||false|false\" custom_margin_tablet=\"15px||-15px||false|false\" custom_margin_phone=\"||-15px||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"left\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.18.0\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|desktop\" admin_label=\"Attorney\" _builder_version=\"4.16\" background_color=\"#ffffff\" custom_margin=\"10px||||false|false\" custom_padding=\"0px||0px||true|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"off|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||0px||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Heading (H2)\" _builder_version=\"4.18.0\" text_font=\"Playfair Display||||||||\" text_font_size=\"25px\" header_font=\"||||||||\" header_2_font=\"|600|||||||\" header_2_text_align=\"left\" header_2_text_color=\"#211865\" header_3_font=\"|600|||||||\" header_4_font=\"|600|||||||\" header_5_font=\"|600|||||||\" header_6_font=\"|600|||||||\" width=\"37%\" width_last_edited=\"off|phone\" max_width_last_edited=\"off|phone\" module_alignment=\"center\" custom_margin=\"15px||15px||false|false\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||false|false\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"off|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|phone\" header_text_align_last_edited=\"off|phone\" header_font_size_last_edited=\"off|tablet\" header_2_text_align_tablet=\"left\" header_2_text_align_phone=\"\" header_2_text_align_last_edited=\"on|phone\" header_2_font_size_last_edited=\"off|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|phone\" module_alignment_last_edited=\"off|phone\" border_width_top=\"4px\" border_color_top=\"#211865\" border_style_top=\"double\" border_width_bottom=\"4px\" border_color_bottom=\"#211865\" border_style_bottom=\"double\" locked=\"off\" global_colors_info=\"{}\" header_2_2_font_size_phone=\"32px\" header_3_2_font_size_phone=\"32px\" header_4_2_font_size_phone=\"32px\" header_5_2_font_size_phone=\"32px\" header_6_2_font_size_phone=\"32px\" header_2_2_font_size_tablet=\"35px\" header_3_2_font_size_tablet=\"35px\" header_4_2_font_size_tablet=\"35px\" header_5_2_font_size_tablet=\"35px\" header_6_2_font_size_tablet=\"35px\" header_2_2_font_size_last_edited=\"on|phone\" header_3_2_font_size_last_edited=\"on|phone\" header_4_2_font_size_last_edited=\"on|phone\" header_5_2_font_size_last_edited=\"on|phone\" header_6_2_font_size_last_edited=\"on|phone\"]<h2 style=\"padding-top: 0px !important; text-align: center;\">LOMAD Featured Attorney</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|||0px|false|false\" custom_padding=\"30px|20px|30px|20px|true|true\" box_shadow_style=\"preset3\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Shannon_Mackey_pp.jpg\" alt=\"photo of associate attorney Shannan M. Mackey\" title_text=\"Shannon_Mackey_pp\" url=\"/attorney/prince-brian-k/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Playfair Display|600|||on|||#2e5591|\" text_text_color=\"#2e5591\" text_font_size=\"23px\" text_line_height=\"1.4em\" custom_margin=\"||10px||false|false\" link_option_url=\"/attorney/prince-brian-k/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>Shannan M. Mackey</p>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_text_color=\"#2e5591\" text_font_size=\"18px\" text_line_height=\"1.4em\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>My Legal Superpower: My ability to see the entirety of a case, even last minute. I can see the entire battlefield the way Payton Manning sees a defense. I am often underestimated in testimony…</p>[/et_pb_text][et_pb_button button_url=\"https://thelomad.com/getmad.today/the-team/workers-compensation-team/shannan-m-mackey/\" button_text=\"Read More\" button_alignment_tablet=\"center\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#2e5591\" button_use_icon=\"off\" custom_margin=\"20px||||false|false\" custom_padding=\"15px|30px|15px|30px|true|true\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ffffff\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','The Team','','publish','closed','closed','','the-team','','','2022-09-20 12:00:58','2022-09-20 16:00:58','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46189',0,'page','',0),(46191,1,'2021-08-16 04:16:33','2021-08-16 08:16:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Workers\' Compensation Team\" _builder_version=\"4.18.0\" _module_preset=\"default\" header_font=\"Playfair Display SC|700||||on|||\" header_text_color=\"#211865\" width=\"75%\" width_tablet=\"75%\" width_phone=\"75%\" width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"||40px||false|false\" custom_padding=\"15px||15px||false|false\" border_width_bottom=\"4px\" border_color_bottom=\"#211865\" border_style_bottom=\"double\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">Workers\' Compensation Team</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#ffffff\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Melissa A. Day\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Melissa_Ann_Day_pp.jpg\" alt=\"photo of attorney Melissa A. Day\" title_text=\"day_melissa_a\" url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjQ5MjM3In19@\" src_tablet=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Melissa_Ann_Day_pp.jpg\" src_phone=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Melissa_Ann_Day_pp.jpg\" src_last_edited=\"on|desktop\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" _dynamic_attributes=\"url\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Melissa A. Day</span></h2>\n<h2><span style=\"color: #003366;\">Managing Attorney</span></h2>\n<p>My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist.</p>\n<p><a href=\"https://thelomad.com/getmad.today/the-team/workers-compensation-team/melissa-a-day/\">More about Melissa</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"James B. Cousins\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" alt=\"photo of attorney James B. Cousins\" title_text=\"James_Cousins_pp\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">James B. Cousins</span></h2>\n<h2><span style=\"color: #003366;\">Partner</span></h2>\n<p>My Legal Superpower: Each and every one of them.</p>\n<p><a role=\"link\" href=\"https://thelomad.com/getmad.today/the-team/workers-compensation-team/james-cousins/\">More about James</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Brian K. Prince\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Brian_Prince-1_pp.jpg\" alt=\"photo of attorney Brian K. Prince\" title_text=\"Brian_Prince-1_pp\" url=\"/attorney/prince-brian-k/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Brian K. Prince</span></h2>\n<h2><span style=\"color: #003366;\">Associate Attorney</span></h2>\n<p>My Legal Superpower: Talking with my wife. Having been with my wife since the start of her second year of orthopedic surgery residency, we’ve discussed probably thousands of cases at this point.</p>\n<p><a role=\"link\" href=\"https://thelomad.com/getmad.today/the-team/workers-compensation-team/brian-k-prince/\">More about Brian</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Shannan M. Mackey\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Shannon_Mackey_pp.jpg\" alt=\"photo of associate attorney Shannan M. Mackey\" title_text=\"Shannon_Mackey_pp\" url=\"/attorney/mackey-shannan-m-/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Shannan M. Mackey</span></h2>\n<h2><span style=\"color: #003366;\">Associate Attorney</span></h2>\n<p>My Legal Superpower: My ability to see the entirety of a case, even last minute. I can see the entire battlefield the way Payton Manning sees a defense. I am often underestimated in testimony.</p>\n<p><a role=\"link\" href=\"https://thelomad.com/getmad.today/the-team/workers-compensation-team/shannan-m-mackey/\">More about Shannan</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Paul Kornacki\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Paul_Kornacki_pp.jpg\" alt=\"photo of associate attorney Paul B. Kornacki\" title_text=\"Paul_Kornacki_pp\" url=\"/attorney/kornacki-paul-b-/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Paul Kornacki</span></h2>\n<h2><span style=\"color: #003366;\">Associate Attorney</span></h2>\n<p>My Legal Superpower: 20 plus years of experience in Workers’ Compensation.</p>\n<p><a role=\"link\" href=\"https://thelomad.com/getmad.today/the-team/workers-compensation-team/paul-b-kornacki/\">More about Paul</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Cassandra E. Christman\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/Cassie_Christman_pp.jpg\" alt=\"photo of associate attorney Cassandra E. Christman\" title_text=\"Cassie_Christman_pp\" url=\"/attorney/christman-cassandra-e/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Cassandra E. Christman</span></h2>\n<h2><span style=\"color: #003366;\">Associate Attorney</span></h2>\n<p>My Legal Superpower: The power of Transparency, which is the power to see through a claimant’s façade and seek justice where due.</p>\n<p><a role=\"link\" href=\"https://thelomad.com/getmad.today/the-team/workers-compensation-team/cassandra-e-christman/\">More about Cassandra</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Melanie A. Daly\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Melanie_Daly-1_pp.jpg\" alt=\"photo of associate attorney Melanie A. Daly\" title_text=\"Melanie_Daly-1_pp\" url=\"/attorney/daly-melanie-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Melanie A. Daly</span></h2>\n<h2><span style=\"color: #003366;\">Associate Attorney</span></h2>\n<p>My Legal Superpower: Extrasensory Perception for Inconsistencies.</p>\n<p><a role=\"link\" href=\"https://thelomad.com/getmad.today/the-team/workers-compensation-team/melanie-a-daly/\">More about Melanie</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Neil A. Diegelman\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Neil_Deigelman-1_pp.jpg\" alt=\"photo of associate attorney Neil A. Diegelman\" title_text=\"Neil_Deigelman-1_pp\" url=\"/attorney/diegelman-neil-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Neil A. Diegelman</span></h2>\n<h2><span style=\"color: #003366;\">Associate Attorney</span></h2>\n<p>My Legal Superpower: The ability to catch fraudsters!</p>\n<p><a role=\"link\" href=\"https://thelomad.com/getmad.today/the-team/workers-compensation-team/neil-a-diegelman/\">More about Neil</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Brendan T. Shannon\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Brendan_Shannon_pp.jpg\" alt=\"photo of associate attorney Brendan T. Shannon\" title_text=\"Brendan_Shannon_pp\" url=\"/attorney/shannon-brendan-t/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Brendan T. Shannon</span></h2>\n<h2><span style=\"color: #003366;\">Associate Attorney</span></h2>\n<p>My Legal Superpower: Writing and Being Extremely Thorough.</p>\n<p><a role=\"link\" href=\"https://thelomad.com/getmad.today/the-team/workers-compensation-team/brendan-t-shannon/\">More about Brendan</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Andrew Gould\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/Andrew_Gould_pp.jpg\" alt=\"photo of associate attorney Andrew Gould\" title_text=\"Andrew_Gould_pp\" url=\"/attorney/gould-andrew/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Andrew Gould</span></h2>\n<h2><span style=\"color: #003366;\">Associate Attorney</span></h2>\n<p>My Legal Superpower: Teleportation—can jump from one case to the next as the situation calls.</p>\n<p><a role=\"link\" href=\"https://thelomad.com/getmad.today/the-team/workers-compensation-team/andrew-gould/\">More about Andrew</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Bingchen Huang\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Bing-Huang300x300.jpg\" alt=\"Photo of Bing-huang\" title_text=\"Bing-Huang300x300\" url=\"/attorney/huang-bingchen-x/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Bingchen Huang</span></h2>\n<h2><span style=\"color: #003366;\">Associate Attorney</span></h2>\n<p>My Legal Superpower: Enhanced Investigation - Detailed file review plus thorough legal research.</p>\n<p><a role=\"link\" href=\"https://thelomad.com/getmad.today/the-team/workers-compensation-team/bingchen-huang/\">More about Bingchen</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Satoko (Suki) Harada\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Suki-Harada-300x300-1.jpg\" alt=\"Photo of Suki-Harada\" title_text=\"Suki-Harada-300x300\" url=\"/attorney/harada-satoko-suki-x/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Satoko (Suki) Harada</span></h2>\n<h2><span style=\"color: #003366;\">Associate Attorney </span></h2>\n<p>My legal superpower: Subject Matter Reorientation -<br />Taking apart issues, closely examining the component parts then putting them back together into persuasive, critically analyzed arguments.</p>\n<p><a role=\"link\" href=\"https://thelomad.com/getmad.today/the-team/workers-compensation-team/satoko-suki-harada/\">More about Suki</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Maria C. Lua\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Maria-Lua300X300.jpg\" alt=\"Maria Lua\" title_text=\"Maria-Lua300X300\" url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wZW9wbGUiLCJzZXR0aW5ncyI6eyJwb3N0X2lkIjoiNDkwMTkifX0=@\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" _dynamic_attributes=\"url\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Maria Lua </span></h2>\n<h2><span style=\"color: #003366;\">Associate Attorney</span></h2>\n<p>My Legal Superpower: My legal superpower is I eat writing assignments for breakfast.</p>\n<p><a role=\"link\" href=\"https://thelomad.com/getmad.today/the-team/workers-compensation-team/maria-lua/\">More about Maria</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Vicki L. Buehler\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Vicki_L_Buehler-1_pp.jpg\" alt=\"associate attorney Vicki L. Buehler\" title_text=\"Vicki_L_Buehler-1_pp\" url=\"https://thelomad.com/getmad.today/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/buehler-vicki-l/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Vicki L. Buehler</span></h2>\n<h2><span style=\"color: #003366;\">Associate Attorney</span></h2>\n<p>My Legal Superpower: Heightened Perception - Prominence in analyzing cases, identifying potential issues and formulating a strategy</p>\n<p><a href=\"https://thelomad.com/getmad.today/the-team/workers-compensation-team/vicki-buehler/\">More about Vicki</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Tyler J. Eckert\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Tyler-J.-Eckert-300x300_3.jpg\" alt=\"placeholder\" title_text=\"Tyler J. Eckert - 300x300_3\" url=\"/attorney/huang-bingchen-x/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Tyler J. Eckert</span></h2>\n<h2><span style=\"color: #003366;\">Law Clerk</span></h2>\n<p><a role=\"link\" href=\"https://thelomad.com/getmad.today/the-team/workers-compensation-team/tyler-j-eckert/\">More about Tyler</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Kristin M. Machelor\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/female-placeholder300x300.png\" alt=\"placeholder\" title_text=\"female-placeholder300x300\" url=\"/attorney/machelor-kristin-m/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" hover_enabled=\"0\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2><span style=\"color: #003366;\">Kristin M. Machelor</span></h2>\n<h2><span style=\"color: #003366;\">Of Counsel</span></h2>\n<p><a role=\"link\" href=\"https://thelomad.com/getmad.today/kristin-m-machelor/\">More about Kristin</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" disabled_on=\"off|off|off\" admin_label=\"Mary Frances Schnorr\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Mary_Fran_Schnorr-1_pp.jpg\" alt=\"photo of attorney Mary Frances Schnorr\" title_text=\"Mary_Fran_Schnorr-1_pp\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" hover_enabled=\"0\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2><span style=\"color: #003366;\">Mary Frances Schnorr</span></h2>\n<h2><span style=\"color: #003366;\">Of Counsel</span></h2>\n<p>My Legal Superpower: Listening carefully.</p>\n<p><a role=\"link\" href=\"https://thelomad.com/getmad.today/mary-frances-schnorr/\">More about Mary Fran</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Katrina Gray\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Katrina_Gray_pp.jpg\" alt=\"photo of associate attorney Katrina Gray\" title_text=\"Katrina_Gray_pp\" url=\"/attorney/gray-katrina/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Katrina Gray </span></h2>\n<h2><span style=\"color: #003366;\">Of Counsel</span></h2>\n<p>My Legal Superpower: Medical investigation.</p>\n<p><a role=\"link\" href=\"https://thelomad.com/getmad.today/home/about/katrina-gray/\">More about Katrina</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Workers\' Compensation Team','','publish','closed','closed','','workers-compensation-team','','','2022-09-23 08:34:46','2022-09-23 12:34:46','',46189,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46191',0,'page','',0),(46193,26,'2021-08-16 04:31:29','2021-08-16 08:31:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><span style=\"color: #211865;\">Careers</span></h1>\n<p><span style=\"color: #211865;\">The Law Offices of Melissa A. Day is looking for talented people to join the “LOMAD” team. If you feel like this is you, then we encourage you to apply now!</span></p>\n<p><span style=\"color: #211865;\">Send a resume and cover letter to <span style=\"text-decoration: underline;\"><strong><a style=\"color: #211865; text-decoration: underline;\" href=\"mailto:Careers@madwcdefense.com\">Careers@madwcdefense.com</a></strong></span> to begin the process! You can see our list of benefits below.</span></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #211865;\"><strong>What do our employees say about working at LOMAD and the management?<br /></strong></span></h4>\n<h5><strong><span style=\"color: #211865;\">Employee to Supervisor:</span></strong></h5>\n<p><span style=\"color: #211865;\">\"...and in case I don’t say it enough, I so appreciate everything you guys do for us!!! When I applied for this job, I applied on a whim at around 4:00 am. I knew nothing about workers’ comp and didn’t even know whether I’d be interested, but I really felt like I knew you forever at that interview and I really wanted the job after I met you! You have become family to me and I’m so grateful you gave me the opportunity to work with you! Thanks for everything you do for us. You really do make it so easy to stay motivated because I truly feel so appreciated.\"</span></p>\n<h5><strong><span style=\"color: #211865;\">Employee to supervisor:</span></strong></h5>\n<p><span style=\"color: #211865;\">I wanted to tell you that it brings me so much joy being a part of your team here. The field of law you specialize in is certainly fascinating to me, but it’s not solely this line of work that uplifts me. The culture you’ve created here, the commitment to excellence in both your product and the quality of delivery, the emphasis on camaraderie and collaboration…I’m really amazed.</span></p>\n<p><span style=\"color: #211865;\">I wanted to share this today because I had been thinking about the fact that I’ve only been back one week and already made so many great memories! (and learned a ton!) I’m proud to be your employee and I am grateful to contribute to this company. Thank you for everything!</span></p>\n<h5><strong><span style=\"color: #211865;\">Employee to Supervisor:</span></strong></h5>\n<p><span style=\"color: #211865;\">“Thank you both for making this a great place to work... Great leadership makes for eager, useful, and happy employees and the leadership I have experienced here is the best. I\'m very grateful for you allowing me to grow with your firm!”</span></p>\n<h5><strong><span style=\"color: #211865;\">Employee to Supervisors:</span></strong></h5>\n<p><span style=\"color: #211865;\">\"A little more than seven years ago, Melissa thought she might need a “part time” staff member. She put some feelers out, and those feelers found me through an attorney I used to work with (who may have had an inkling that I was unhappy where I was).</span></p>\n<p><span style=\"color: #211865;\">I had a great phone interview with Melissa and then a fantastic in-person interview. During the in-person interview, I met James, who accused me of taking a shower, dressing too nice, and possibly being too nice to work for them. It was effortless; the conversation, the banter, the atmosphere.</span></p>\n<p><span style=\"color: #211865;\">After those interviews, I made the life-altering decision to give notice to my then employer. It was an easy decision to make, as I had been unhappy there for a LOOONG time.</span></p>\n<p><span style=\"color: #211865;\">When I was hired (full time, by the way), there were five attorneys and three staff members (including me) – 8 of us. We now have 35 employees in total (including our fearless leaders). It’s not very often that you get in on the “ground floor” of a company. I am so thankful to have had – and continue to have – the opportunity and privilege to witness both the growth and the growing pains. It has been the most incredible ride!</span></p>\n<p><span style=\"color: #211865;\">Melissa and James – thank you for taking that chance seven years ago in welcoming me into your work family! I said it earlier to Melissa, and I’ll say it again (because I mean it): I’ve loved you for seven long years!\"</span></p>\n<h5><strong><span style=\"color: #211865;\">Employee to Supervisor:</span></strong></h5>\n<p><span style=\"color: #211865;\">“Seeing your response (and your email) honestly helps me to understand some things I’ve seen at your firm that I found baffling. Attorneys who are respectful to legal staff? A supervisor who checks in on his employees? Staff climbing over each other to take the blame for a mistake? How eerie… I’ve had a rather short career, but it seems like cultivating this kind of work culture starts with leadership.</span></p>\n<p><span style=\"color: #211865;\">So thank you for your work.”</span></p>\n<h5><span style=\"color: #211865;\"><strong>Employee to Supervisors:</strong></span></h5>\n<p><span style=\"color: #211865;\">“Thank you! It’s not about the money (but it is) but you are both great bosses.</span></p>\n<p><span style=\"color: #211865;\">I don’t know what our new employee did and didn’t tell you, or what his/her former employer did or didn’t, but I know through the grapevine that our new employee’s experience was really bad there. When I heard he/she was looking, our new employee took some convincing to even apply because he/she wanted nothing more to do with comp. I told our new employee how great you both are as employers. About the culture you created. And that the reason I stayed in comp when I really wanted to pursue other employment was because of the awesome vibe I got from the firm. And how that vibe was correct.”</span></p>\n<h2><span style=\"color: #211865;\">Check Out All Our Benefits</span></h2>\n<h5><span style=\"color: #211865;\"><strong>Paid Time Off (PTO)</strong></span></h5>\n<p><span style=\"color: #211865;\">The firm offers Paid Time Off for all new hired employees. Employees who work at least 30 hours per week, accrue 10 days of PTO per year to start, with the option to \"borrow\" time. Additionally, non-exempt employees may request that all remaining PTO time as of December 31st, be brought back by the firm, with approval from the managing attorney.</span></p>\n<p><span style=\"color: #211865;\">Exempt employees are entitled to 15 days of PTO per calendar year.</span></p>\n<h5><span style=\"color: #211865;\"><b>Sick Time</b></span></h5>\n<p><span style=\"color: #211865;\">Even before NY mandated sick leave, LOMAD gave its employees time off for illness and other needs. Each employee is entitled to 5 days of sick time in accordance with NY Sick Leave.</span></p>\n<h5><span style=\"color: #211865;\"><strong>Holidays</strong></span></h5>\n<p><span style=\"color: #211865;\">The firm offers 10 paid holidays: New Year\'s Day, Martin Luther King, Jr., Presidents\' Day, Memorial Day, Independence Day, Labor Day, Thanksgiving Day, Day After Thanksgiving, Christmas Day and a floating holiday.</span></p>\n<h5><span style=\"color: #211865;\"><strong>Retirement/401(k)</strong></span></h5>\n<p><span style=\"color: #211865;\">The Law Offices of Melissa A. Day offers a competitive 401(k) plan that all staff and attorneys are eligible to participate in on the first day of the quarter following 90 days of employment with a 4% employer match for 5% employee contribution.</span></p>\n<h5><span style=\"color: #211865;\"><strong>Health Care Benefits</strong></span></h5>\n<p><span style=\"color: #211865;\">The firm currently provides local full-time staff and attorneys health coverage at no cost to the employee. Preventative health care services covered full in-network and hospital cash benefits.</span></p>\n<ul>\n<li><span style=\"color: #211865;\"><strong>Vision Plan: </strong>The firm provides full-time staff and attorneys vision coverage at no cost to the employee.</span></li>\n<li><span style=\"color: #211865;\"><strong>Dental Plan: </strong>The firm provides full-time staff and attorneys dental coverage at no cost to the employee.</span></li>\n</ul>\n<h5><span style=\"color: #211865;\"><strong>Short and Long Term Disability Benefits</strong></span></h5>\n<p><span style=\"color: #211865;\">The firm provides full-time staff and attorneys short-term and long-term disability benefits at no cost to the employee. Short-term disability begins after 7 days of the date of disability. Long-term benefits for up to age 65, or, if under age 60, on the date disability begins.</span></p>\n<h5><span style=\"color: #211865;\"><strong>Life Insurance</strong></span></h5>\n<p><span style=\"color: #211865;\">The firm provides full-time staff and attorneys life insurance benefits and accidental death benefits at no cost to the employee.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','publish','closed','closed','','careers','','','2022-09-23 08:54:37','2022-09-23 12:54:37','',46189,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46193',0,'page','',0),(46194,2461,'2021-08-16 03:38:34','2021-08-16 07:38:34','','VLB-webrdy-250x250','','inherit','closed','closed','','vlb-webrdy-250x250','','','2021-08-16 03:38:34','2021-08-16 07:38:34','',0,'/wp-content/uploads/sites/1503150/2021/08/VLB-webrdy-250x250-1.png',0,'attachment','image/png',0),(46195,2461,'2021-08-16 03:38:37','2021-08-16 07:38:37','','SMM2-250x250','','inherit','closed','closed','','smm2-250x250','','','2021-08-16 03:38:37','2021-08-16 07:38:37','',0,'/wp-content/uploads/sites/1503150/2021/08/SMM2-250x250-1.jpg',0,'attachment','image/jpeg',0),(46196,2461,'2021-08-16 03:38:41','2021-08-16 07:38:41','','PBK-250x250','','inherit','closed','closed','','pbk-250x250','','','2021-08-16 03:38:41','2021-08-16 07:38:41','',0,'/wp-content/uploads/sites/1503150/2021/08/PBK-250x250-1.png',0,'attachment','image/png',0),(46197,2461,'2021-08-16 03:38:44','2021-08-16 07:38:44','','NAD-webrdy-250x250','','inherit','closed','closed','','nad-webrdy-250x250','','','2021-08-16 03:38:44','2021-08-16 07:38:44','',0,'/wp-content/uploads/sites/1503150/2021/08/NAD-webrdy-250x250-1.png',0,'attachment','image/png',0),(46198,2461,'2021-08-16 03:38:47','2021-08-16 07:38:47','','MAD-Copy1-250x250','','inherit','closed','closed','','mad-copy1-250x250','','','2021-08-16 03:38:47','2021-08-16 07:38:47','',0,'/wp-content/uploads/sites/1503150/2021/08/MAD-Copy1-250x250-1.png',0,'attachment','image/png',0),(46199,2461,'2021-08-16 03:38:51','2021-08-16 07:38:51','','MXD-webrdy-250x250','','inherit','closed','closed','','mxd-webrdy-250x250','','','2021-08-16 03:38:51','2021-08-16 07:38:51','',0,'/wp-content/uploads/sites/1503150/2021/08/MXD-webrdy-250x250-1.png',0,'attachment','image/png',0),(46200,2461,'2021-08-16 03:38:55','2021-08-16 07:38:55','','KG2-250x250','','inherit','closed','closed','','kg2-250x250','','','2021-08-16 03:38:55','2021-08-16 07:38:55','',0,'/wp-content/uploads/sites/1503150/2021/08/KG2-250x250-1.jpg',0,'attachment','image/jpeg',0),(46201,2461,'2021-08-16 03:38:58','2021-08-16 07:38:58','','KMM-250x250','','inherit','closed','closed','','kmm-250x250','','','2021-11-30 08:07:17','2021-11-30 13:07:17','',0,'/wp-content/uploads/sites/1503150/2021/08/KMM-250x250-1.jpg',0,'attachment','image/jpeg',0),(46202,2461,'2021-08-16 03:39:01','2021-08-16 07:39:01','','JBC-Partner-250x250','','inherit','closed','closed','','jbc-partner-250x250','','','2021-08-16 03:39:01','2021-08-16 07:39:01','',0,'/wp-content/uploads/sites/1503150/2021/08/JBC-Partner-250x250-1.jpg',0,'attachment','image/jpeg',0),(46203,2461,'2021-08-16 03:39:04','2021-08-16 07:39:04','','CEC-webrdy-250x250','','inherit','closed','closed','','cec-webrdy-250x250','','','2021-08-16 03:39:04','2021-08-16 07:39:04','',0,'/wp-content/uploads/sites/1503150/2021/08/CEC-webrdy-250x250-1.png',0,'attachment','image/png',0),(46204,2461,'2021-08-16 03:39:07','2021-08-16 07:39:07','','BKP1-250x250','','inherit','closed','closed','','bkp1-250x250','','','2021-08-16 03:39:07','2021-08-16 07:39:07','',0,'/wp-content/uploads/sites/1503150/2021/08/BKP1-250x250-1.jpg',0,'attachment','image/jpeg',0),(46205,2461,'2021-08-16 03:39:10','2021-08-16 07:39:10','','BTS-250x250','','inherit','closed','closed','','bts-250x250','','','2021-08-16 03:39:10','2021-08-16 07:39:10','',0,'/wp-content/uploads/sites/1503150/2021/08/BTS-250x250-1.png',0,'attachment','image/png',0),(46206,2461,'2021-08-16 03:39:13','2021-08-16 07:39:13','','ADH-250x250','','inherit','closed','closed','','adh-250x250','','','2021-08-16 03:39:13','2021-08-16 07:39:13','',0,'/wp-content/uploads/sites/1503150/2021/08/ADH-250x250-1.png',0,'attachment','image/png',0),(46207,2461,'2021-08-16 03:48:48','2021-08-16 07:48:48','','SLE-250x250','','inherit','closed','closed','','sle-250x250','','','2021-08-16 03:48:48','2021-08-16 07:48:48','',0,'/wp-content/uploads/sites/1503150/2021/08/SLE-250x250-1.png',0,'attachment','image/png',0),(46208,2461,'2021-08-16 03:48:51','2021-08-16 07:48:51','','TXD1-250x250','','inherit','closed','closed','','txd1-250x250','','','2021-08-16 03:48:51','2021-08-16 07:48:51','',0,'/wp-content/uploads/sites/1503150/2021/08/TXD1-250x250-1.jpg',0,'attachment','image/jpeg',0),(46209,2461,'2021-08-16 03:48:54','2021-08-16 07:48:54','','RBrashear1-250x250','','inherit','closed','closed','','rbrashear1-250x250','','','2021-08-16 03:48:54','2021-08-16 07:48:54','',0,'/wp-content/uploads/sites/1503150/2021/08/RBrashear1-250x250-1.jpg',0,'attachment','image/jpeg',0),(46210,2461,'2021-08-16 03:48:56','2021-08-16 07:48:56','','JMC-250x250','','inherit','closed','closed','','jmc-250x250','','','2021-08-16 03:48:56','2021-08-16 07:48:56','',0,'/wp-content/uploads/sites/1503150/2021/08/JMC-250x250-1.png',0,'attachment','image/png',0),(46211,2461,'2021-08-16 03:48:59','2021-08-16 07:48:59','','NWalker-1-250x250','','inherit','closed','closed','','nwalker-1-250x250','','','2021-08-16 03:48:59','2021-08-16 07:48:59','',0,'/wp-content/uploads/sites/1503150/2021/08/NWalker-1-250x250-1.png',0,'attachment','image/png',0),(46212,2461,'2021-08-16 03:49:02','2021-08-16 07:49:02','','JLM-250x250','','inherit','closed','closed','','jlm-250x250','','','2021-08-16 03:49:02','2021-08-16 07:49:02','',0,'/wp-content/uploads/sites/1503150/2021/08/JLM-250x250-1.png',0,'attachment','image/png',0),(46213,2461,'2021-08-16 03:49:05','2021-08-16 07:49:05','','JLG-250x250','','inherit','closed','closed','','jlg-250x250','','','2021-08-16 03:49:05','2021-08-16 07:49:05','',0,'/wp-content/uploads/sites/1503150/2021/08/JLG-250x250-1.png',0,'attachment','image/png',0),(46214,2461,'2021-08-16 03:49:09','2021-08-16 07:49:09','','JCW1-250x250','','inherit','closed','closed','','jcw1-250x250','','','2021-11-17 16:21:29','2021-11-17 21:21:29','',0,'/wp-content/uploads/sites/1503150/2021/08/JCW1-250x250-1.png',0,'attachment','image/png',0),(46215,2461,'2021-08-16 03:49:12','2021-08-16 07:49:12','','HEK-250x250','','inherit','closed','closed','','hek-250x250','','','2021-08-16 03:49:12','2021-08-16 07:49:12','',0,'/wp-content/uploads/sites/1503150/2021/08/HEK-250x250-1.png',0,'attachment','image/png',0),(46216,2461,'2021-08-16 03:49:15','2021-08-16 07:49:15','','DHF-webrdy-250x250','','inherit','closed','closed','','dhf-webrdy-250x250','','','2021-08-16 03:49:15','2021-08-16 07:49:15','',0,'/wp-content/uploads/sites/1503150/2021/08/DHF-webrdy-250x250-1.png',0,'attachment','image/png',0),(46217,2461,'2021-08-16 03:49:17','2021-08-16 07:49:17','','ECamp1-250x250','','inherit','closed','closed','','ecamp1-250x250','','','2021-08-16 03:49:17','2021-08-16 07:49:17','',0,'/wp-content/uploads/sites/1503150/2021/08/ECamp1-250x250-1.jpg',0,'attachment','image/jpeg',0),(46218,2461,'2021-08-16 04:09:12','2021-08-16 08:09:12','','BTS-e1609438627154','','inherit','closed','closed','','bts-e1609438627154','','','2021-08-16 04:09:12','2021-08-16 08:09:12','',0,'/wp-content/uploads/sites/1503150/2021/08/BTS-e1609438627154.png',0,'attachment','image/png',0),(46222,1927,'2021-08-16 04:23:44','2021-08-16 08:23:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.3.2\" background_color=\"#ffffff\"][et_pb_row make_equal=\"on\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.3.2\" text_text_color=\"#211865\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>[nap_names id=\"FIRM-NAME-1\"], Litigation Team</h1>\n<p>Our Litigation Team approaches each case with a mindset of challenging the status quo by providing insightful and common sense legal representation to our clients. Our Litigation Team is dedicated to each client’s case, using creativity, attention to detail and a dogged persistence in the pursuit of success. To get results, we build partnerships with our clients and treat every case as if it were the only case we have.</p>\n<h2>Representing Clients At Every Stage Of The Legal Process</h2>\n<p>Defending actions in both state and federal courts throughout New York state, we are skilled in handling all aspects of litigation from investigation through trial. We also incorporate, when appropriate, alternatives to trial such as mediation and arbitration for successful resolution of cases. We find creative ways to resolve matters in an aggressive and cost-effective manner.</p>\n<p>Our experience, commitment to clients and track record of success have earned us a reputation as a  unique and dependable law firm. We handle a full range of legal matters including:</p>\n<ul>\n<li>Civil Defense Litigation, including General Negligence</li>\n<li>Motor Vehicle Accidents</li>\n<li>Toxic Torts</li>\n<li>Premise Liability</li>\n</ul>\n<p>To contact us, call [nap_phone id=\"LOCAL-REGULAR-NUMBER-1\"] or fill out our <a href=\"/contact/\">online contact form</a>.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Kristen_Degnan_pp.jpg\" url=\"/about/kristen-b-degnan/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/about/kristen-b-degnan/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h3>Kristen B. Degnan</h3>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h4>Of Counsel</h4>\n<p>Kristen Degnan is a trial attorney experienced in civil defense litigation in the areas of premises and automobile liability, lead paint, labor law, products liability, No-fault and toxic torts. <a role=\"link\" href=\"/about/kristen-b-degnan/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row3\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Teresa_Cleary_pp.jpg\" url=\"/about/teresa-cleary/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/about/teresa-cleary/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h3>Teresa Cleary</h3>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h4>Paralegal</h4>\n<p>Teresa is a certified paralegal and has a vast background of over 15 years in the legal field. She has had an opportunity to have had legal experience in many.. <a role=\"link\" href=\"/about/teresa-cleary/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Litigation Team','','draft','closed','closed','','litigation-team','','','2021-11-30 05:58:15','2021-11-30 10:58:15','',46189,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46222',0,'page','',0),(46223,2461,'2021-08-16 04:18:40','2021-08-16 08:18:40','','TCleary-revised-250x250','','inherit','closed','closed','','tcleary-revised-250x250','','','2021-08-16 04:18:40','2021-08-16 08:18:40','',0,'/wp-content/uploads/sites/1503150/2021/08/TCleary-revised-250x250-1.png',0,'attachment','image/png',0),(46224,2461,'2021-08-16 04:18:44','2021-08-16 08:18:44','','KBD-250x250','','inherit','closed','closed','','kbd-250x250','','','2021-08-16 04:18:44','2021-08-16 08:18:44','',0,'/wp-content/uploads/sites/1503150/2021/08/KBD-250x250-1.png',0,'attachment','image/png',0),(46227,2461,'2021-08-16 04:24:58','2021-08-16 08:24:58','','MULTI-114764-1-ap3','','inherit','closed','closed','','multi-114764-1-ap3','','','2021-11-17 16:23:16','2021-11-17 21:23:16','',0,'/wp-content/uploads/sites/1503150/2021/08/MULTI-114764-1-ap3.jpg',0,'attachment','image/jpeg',0),(46229,26,'2021-08-16 04:36:58','2021-08-16 08:36:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Client-Resources_Title.png\" title_text=\"Client Resources_Title\" align=\"center\" admin_label=\"Client Resources_Image\" _builder_version=\"4.18.0\" _module_preset=\"default\" animation_style=\"slide\" animation_duration=\"1800ms\" animation_delay=\"100ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"37%\" module_alignment=\"center\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_text admin_label=\"Client Resources Blurb\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_orientation=\"center\" width=\"72%\" module_alignment=\"center\" custom_padding=\"||25px||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"400ms\" animation_intensity_slide=\"35%\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#211865\" sticky_enabled=\"0\"]<h5>To better aid in claims handling, out team has made several valuable resources available to our clients that provide workers\' compensation defense information, education, relevant findings and current data. You can learn more about each of these resources by clicking the modules below.</h5>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" disabled_on=\"off|off|off\" admin_label=\"Desktop Row\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_color=\"#d8d8d8\" global_colors_info=\"{}\"][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"right\" front_content=\"Workers\' Compensation Practice Aids\" front_use_icon=\"on\" front_font_icon=\"&#xe021;||divi||400\" front_background_color=\"#211865\" back_background_color=\"#FFFFFF\" front_icon_color=\"#FFFFFF\" front_use_icon_font_size=\"on\" front_icon_font_size=\"123px\" front_style_icon=\"on\" front_shape_color=\"RGBA(255,255,255,0)\" content_max_width=\"260px\" animation=\"off\" disabled_on=\"on|on|off\" admin_label=\"Workers\' Compensation Practice Aids\" _builder_version=\"4.18.0\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" front_general_settings_text_align=\"center\" front_header_text_color=\"#000000\" front_body_font=\"Playfair Display SC|700|||||||\" front_body_text_color=\"#FFFFFF\" front_body_font_size=\"23px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display|500|||||||\" back_body_text_color=\"#211865\" back_body_font_size=\"18px\" custom_margin=\"|0px|0px||false|false\" custom_padding=\"|25px|||false|false\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjQ5NzA0In19@\" global_colors_info=\"{}\"]<h4>Current data related to PPD caps, max benefit rates and SLU/PHP</h4>[/el_advanced_flipbox][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_position=\"center\" divider_weight=\"4px\" disabled_on=\"on|on|off\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" global_colors_info=\"{}\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"right\" front_content=\"LOMAD News, Events & Articles\" front_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Calendar-Icon-White.png\" front_background_color=\"#211865\" back_background_color=\"#FFFFFF\" content_max_width=\"260px\" flipbox_min_height=\"290px\" disabled_on=\"on|on|off\" admin_label=\"LOMAD News, Events & Articles\" _builder_version=\"4.18.0\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" front_header_text_color=\"#000000\" front_body_font=\"Playfair Display SC|700|||||||\" front_body_text_color=\"#FFFFFF\" front_body_font_size=\"24px\" front_body_line_height=\"1.1em\" back_body_font=\"Playfair Display|500|||||||\" back_body_text_color=\"#211865\" custom_margin=\"|0px||0px|false|false\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjQ1OTI2In19@\" global_colors_info=\"{}\"]<h4>The latest updates from our firm and publications related to recent updates in worker\'s compensation law</h4>[/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"1_3\" disabled_on=\"off|off|off\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][ba_advanced_divider icon=\"&#xe012;||divi||400\" border_color=\"#211865\" icon_color=\"#211865\" disabled_on=\"on|on|off\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"47%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"8px||8px||false|false\" global_colors_info=\"{}\"][/ba_advanced_divider][ba_icon_box use_image=\"on\" icon_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Hands-In-2-blue-.png\" icon_size=\"95px\" icon_padding=\"0px|5px|0px|0px|false|false\" icon_spacing=\"0px\" disabled_on=\"on|on|off\" admin_label=\"Hands in\" _builder_version=\"4.18.0\" _module_preset=\"default\" border_color_all_icon=\"RGBA(255,255,255,0)\" border_width_all_box=\"0px\" global_colors_info=\"{}\"][/ba_icon_box][ba_icon_box use_image=\"on\" icon_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/ic1.png\" icon_size=\"80px\" icon_padding=\"0px|3px|0px|0px|false|false\" icon_spacing=\"0px\" disabled_on=\"on|on|off\" admin_label=\"Scales\" _builder_version=\"4.18.0\" _module_preset=\"default\" border_color_all_icon=\"RGBA(255,255,255,0)\" border_width_all_box=\"0px\" global_colors_info=\"{}\"][/ba_icon_box][ba_icon_box use_image=\"on\" icon_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Icon-Gavel-blue.png\" icon_size=\"140px\" icon_padding=\"0px|0px|0px|11px|false|false\" icon_spacing=\"0px\" disabled_on=\"on|on|off\" admin_label=\"Gavel\" _builder_version=\"4.18.0\" _module_preset=\"default\" border_color_all_icon=\"RGBA(255,255,255,0)\" border_width_all_box=\"0px\" global_colors_info=\"{}\"][/ba_icon_box][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_color=\"#d8d8d8\" global_colors_info=\"{}\"][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"left\" front_content=\"LOMADtv\" front_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Icons-TV-white-100-x-100.png\" front_background_color=\"#211865\" back_background_color=\"#FFFFFF\" content_max_width=\"260px\" flipbox_min_height=\"316px\" flipbox_min_height_last_edited=\"off|desktop\" disabled_on=\"on|on|off\" admin_label=\"LOMADtv\" _builder_version=\"4.18.0\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" front_header_text_color=\"#000000\" front_header_font_size=\"26px\" front_body_font=\"Playfair Display SC|700|||||||\" front_body_text_color=\"#FFFFFF\" front_body_font_size=\"32px\" back_body_font=\"Playfair Display|500|||||||\" back_body_text_color=\"#211865\" custom_margin=\"|0px||0px|false|false\" custom_padding=\"|0px||4px|false|false\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjQ5OTQ5In19@\" global_colors_info=\"{}\"]<h4>Our firm\'s exclusive video broadcasting platform</h4>[/el_advanced_flipbox][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_position=\"center\" divider_weight=\"4px\" disabled_on=\"on|on|off\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" global_colors_info=\"{}\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"left\" front_content=\"LOMAD Magazine\" front_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Newsletter-White.png\" front_background_color=\"#211865\" back_background_color=\"#FFFFFF\" content_max_width=\"260px\" flipbox_min_height=\"331px\" disabled_on=\"on|on|off\" admin_label=\"LOMAD Magazine\" _builder_version=\"4.18.0\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" front_header_text_color=\"#000000\" front_body_font=\"Playfair Display SC|700|||||||\" front_body_text_color=\"#FFFFFF\" front_body_font_size=\"29px\" front_body_line_height=\"1.1em\" back_body_font=\"Playfair Display|500|||||||\" back_body_text_color=\"#211865\" custom_margin=\"|0px|||false|false\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjQ2MjQ0In19@\" global_colors_info=\"{}\"]<h4>Current and past editions of our firm\'s monthly newsletter</h4>[/el_advanced_flipbox][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" disabled_on=\"off|off|off\" admin_label=\"Mobile/Tablet Row\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_color=\"#d8d8d8\" global_colors_info=\"{}\"][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" front_content=\"Workers\' Compensation Practice Aids\" front_use_icon=\"on\" front_font_icon=\"&#xe021;||divi||400\" front_background_color=\"#211865\" back_background_color=\"#FFFFFF\" front_icon_color=\"#FFFFFF\" front_use_icon_font_size=\"on\" front_icon_font_size=\"123px\" front_style_icon=\"on\" front_shape_color=\"RGBA(255,255,255,0)\" content_max_width=\"260px\" animation=\"off\" disabled_on=\"off|off|on\" admin_label=\"Workers\' Compensation Practice Aids\" _builder_version=\"4.18.0\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" front_general_settings_text_align=\"center\" front_header_text_color=\"#000000\" front_body_font=\"Playfair Display SC|700|||||||\" front_body_text_color=\"#FFFFFF\" front_body_font_size=\"23px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display|500|||||||\" back_body_text_color=\"#211865\" back_body_font_size=\"18px\" custom_margin=\"|0px|0px||false|false\" custom_padding=\"|25px|||false|false\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjQ5NzA0In19@\" global_colors_info=\"{}\"]<h4>Current data related to PPD caps, max benefit rates and SLU/PHP</h4>[/el_advanced_flipbox][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_position=\"center\" divider_weight=\"4px\" disabled_on=\"off|off|on\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" global_colors_info=\"{}\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" front_content=\"LOMAD News, Events & Articles\" front_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Calendar-Icon-White.png\" front_background_color=\"#211865\" back_background_color=\"#FFFFFF\" content_max_width=\"260px\" flipbox_min_height=\"290px\" disabled_on=\"off|off|on\" admin_label=\"LOMAD News, Events & Articles\" _builder_version=\"4.18.0\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" front_header_text_color=\"#000000\" front_body_font=\"Playfair Display SC|700|||||||\" front_body_text_color=\"#FFFFFF\" front_body_font_size=\"24px\" front_body_line_height=\"1.1em\" back_body_font=\"Playfair Display|500|||||||\" back_body_text_color=\"#211865\" custom_margin=\"|0px||0px|false|false\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjQ1OTI2In19@\" global_colors_info=\"{}\"]<h4>The latest updates from our firm and publications related to recent updates in worker\'s compensation law</h4>[/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"1_3\" disabled_on=\"off|off|off\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][ba_advanced_divider icon=\"&#xe012;||divi||400\" border_color=\"#211865\" icon_color=\"#211865\" disabled_on=\"off|off|on\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"47%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"8px||8px||false|false\" global_colors_info=\"{}\"][/ba_advanced_divider][ba_icon_box use_image=\"on\" icon_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Hands-In-2-blue-.png\" icon_size=\"95px\" icon_padding=\"0px|5px|0px|0px|false|false\" icon_spacing=\"0px\" disabled_on=\"on|on|on\" admin_label=\"Hands in\" _builder_version=\"4.18.0\" _module_preset=\"default\" border_color_all_icon=\"RGBA(255,255,255,0)\" border_width_all_box=\"0px\" disabled=\"on\" global_colors_info=\"{}\"][/ba_icon_box][ba_icon_box use_image=\"on\" icon_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/ic1.png\" icon_size=\"80px\" icon_padding=\"0px|3px|0px|0px|false|false\" icon_spacing=\"0px\" disabled_on=\"on|on|on\" admin_label=\"Scales\" _builder_version=\"4.18.0\" _module_preset=\"default\" border_color_all_icon=\"RGBA(255,255,255,0)\" border_width_all_box=\"0px\" disabled=\"on\" global_colors_info=\"{}\"][/ba_icon_box][ba_icon_box use_image=\"on\" icon_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Icon-Gavel-blue.png\" icon_size=\"140px\" icon_padding=\"0px|0px|0px|11px|false|false\" icon_spacing=\"0px\" disabled_on=\"on|on|on\" admin_label=\"Gavel\" _builder_version=\"4.18.0\" _module_preset=\"default\" border_color_all_icon=\"RGBA(255,255,255,0)\" border_width_all_box=\"0px\" disabled=\"on\" global_colors_info=\"{}\"][/ba_icon_box][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_color=\"#d8d8d8\" global_colors_info=\"{}\"][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" front_content=\"LOMADtv\" front_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Icons-TV-white-100-x-100.png\" front_background_color=\"#211865\" back_background_color=\"#FFFFFF\" content_max_width=\"260px\" flipbox_min_height=\"316px\" flipbox_min_height_last_edited=\"off|desktop\" disabled_on=\"off|off|on\" admin_label=\"LOMADtv\" _builder_version=\"4.18.0\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" front_header_text_color=\"#000000\" front_header_font_size=\"26px\" front_body_font=\"Playfair Display SC|700|||||||\" front_body_text_color=\"#FFFFFF\" front_body_font_size=\"32px\" back_body_font=\"Playfair Display|500|||||||\" back_body_text_color=\"#211865\" custom_margin=\"|0px||0px|false|false\" custom_padding=\"|0px||4px|false|false\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjQ5OTQ5In19@\" global_colors_info=\"{}\"]<h4>Our firm\'s exclusive video broadcasting platform</h4>[/el_advanced_flipbox][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_position=\"center\" divider_weight=\"4px\" disabled_on=\"off|off|on\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" global_colors_info=\"{}\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" front_content=\"LOMAD Magazine\" front_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Newsletter-White.png\" front_background_color=\"#211865\" back_background_color=\"#FFFFFF\" content_max_width=\"260px\" flipbox_min_height=\"331px\" disabled_on=\"off|off|on\" admin_label=\"LOMAD Magazine\" _builder_version=\"4.18.0\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" front_header_text_color=\"#000000\" front_body_font=\"Playfair Display SC|700|||||||\" front_body_text_color=\"#FFFFFF\" front_body_font_size=\"29px\" front_body_line_height=\"1.1em\" back_body_font=\"Playfair Display|500|||||||\" back_body_text_color=\"#211865\" custom_margin=\"|0px|||false|false\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjQ2MjQ0In19@\" global_colors_info=\"{}\"]<h4>Current and past editions of our firm\'s monthly newsletter</h4>[/el_advanced_flipbox][/et_pb_column][/et_pb_row][/et_pb_section]','Client Resources','','publish','closed','closed','','client-resources','','','2022-09-19 13:32:16','2022-09-19 17:32:16','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46229',0,'page','',0),(46231,26,'2021-08-16 04:47:51','2021-08-16 08:47:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#211865\" sticky_enabled=\"0\"]<h1>PPD Caps</h1>\n<table>\n<thead>\n<tr>\n<th>\n<div>% Loss of Wage Earning Capacity</div>\n</th>\n<th>\n<div>Maximum Weeks of PPD Benefits</div>\n</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Greater than 95%</td>\n<td>525</td>\n</tr>\n<tr>\n<td>Greater than 90% to 95%</td>\n<td>500</td>\n</tr>\n<tr>\n<td>Greater than 85% to 90%</td>\n<td>475</td>\n</tr>\n<tr>\n<td>Greater than 80% to 85%</td>\n<td>450</td>\n</tr>\n<tr>\n<td>Greater than 75% to 80%</td>\n<td>425</td>\n</tr>\n<tr>\n<td>Greater than 70% to 75%</td>\n<td>400</td>\n</tr>\n<tr>\n<td>Greater than 60% to 70%</td>\n<td>375</td>\n</tr>\n<tr>\n<td>Greater than 50% to 60%</td>\n<td>350</td>\n</tr>\n<tr>\n<td>Greater than 40% to 50%</td>\n<td>300</td>\n</tr>\n<tr>\n<td>Greater than 30% to 40%</td>\n<td>275</td>\n</tr>\n<tr>\n<td>Greater than 15% to 30%</td>\n<td>250</td>\n</tr>\n<tr>\n<td>0% to 15%</td>\n<td>225</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','PPD Caps','','publish','closed','closed','','ppd-caps','','','2022-09-19 13:46:07','2022-09-19 17:46:07','',49704,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46231',0,'page','',0),(46232,1927,'2021-08-16 04:59:32','2021-08-16 08:59:32','<h1>Life Awards</h1>\r\n<strong> 5% Interest\r\n(Accident on or after January 1, 2001)</strong>\r\n<table>\r\n<thead>\r\n<tr>\r\n<th>Age</th>\r\n<th>Present Value</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>15</td>\r\n<td>17,572</td>\r\n</tr>\r\n<tr>\r\n<td>16</td>\r\n<td>17,521</td>\r\n</tr>\r\n<tr>\r\n<td>17</td>\r\n<td>17,466</td>\r\n</tr>\r\n<tr>\r\n<td>18</td>\r\n<td>17,409</td>\r\n</tr>\r\n<tr>\r\n<td>19</td>\r\n<td>17,350</td>\r\n</tr>\r\n<tr>\r\n<td>20</td>\r\n<td>17,287</td>\r\n</tr>\r\n<tr>\r\n<td>21</td>\r\n<td>17,221</td>\r\n</tr>\r\n<tr>\r\n<td>22</td>\r\n<td>17,152</td>\r\n</tr>\r\n<tr>\r\n<td>23</td>\r\n<td>17,079</td>\r\n</tr>\r\n<tr>\r\n<td>24</td>\r\n<td>17,003</td>\r\n</tr>\r\n<tr>\r\n<td>25</td>\r\n<td>16,923</td>\r\n</tr>\r\n<tr>\r\n<td>26</td>\r\n<td>16,839</td>\r\n</tr>\r\n<tr>\r\n<td>27</td>\r\n<td>16,751</td>\r\n</tr>\r\n<tr>\r\n<td>28</td>\r\n<td>16,659</td>\r\n</tr>\r\n<tr>\r\n<td>29</td>\r\n<td>16,562</td>\r\n</tr>\r\n<tr>\r\n<td>30</td>\r\n<td>16,461</td>\r\n</tr>\r\n<tr>\r\n<td>31</td>\r\n<td>16,356</td>\r\n</tr>\r\n<tr>\r\n<td>32</td>\r\n<td>16,245</td>\r\n</tr>\r\n<tr>\r\n<td>33</td>\r\n<td>16,129</td>\r\n</tr>\r\n<tr>\r\n<td>34</td>\r\n<td>16,009</td>\r\n</tr>\r\n<tr>\r\n<td>35</td>\r\n<td>15,883</td>\r\n</tr>\r\n<tr>\r\n<td>36</td>\r\n<td>15,751</td>\r\n</tr>\r\n<tr>\r\n<td>37</td>\r\n<td>15,613</td>\r\n</tr>\r\n<tr>\r\n<td>38</td>\r\n<td>15,470</td>\r\n</tr>\r\n<tr>\r\n<td>39</td>\r\n<td>15,321</td>\r\n</tr>\r\n<tr>\r\n<td>40</td>\r\n<td>15,166</td>\r\n</tr>\r\n<tr>\r\n<td>41</td>\r\n<td>15,004</td>\r\n</tr>\r\n<tr>\r\n<td>42</td>\r\n<td>14,836</td>\r\n</tr>\r\n<tr>\r\n<td>43</td>\r\n<td>14,661</td>\r\n</tr>\r\n<tr>\r\n<td>44</td>\r\n<td>14,479</td>\r\n</tr>\r\n<tr>\r\n<td>45</td>\r\n<td>14,291</td>\r\n</tr>\r\n<tr>\r\n<td>46</td>\r\n<td>14,096</td>\r\n</tr>\r\n<tr>\r\n<td>47</td>\r\n<td>13,893</td>\r\n</tr>\r\n<tr>\r\n<td>48</td>\r\n<td>13,684</td>\r\n</tr>\r\n<tr>\r\n<td>49</td>\r\n<td>13,468</td>\r\n</tr>\r\n<tr>\r\n<td>50</td>\r\n<td>13,245</td>\r\n</tr>\r\n<tr>\r\n<td>51</td>\r\n<td>13,015</td>\r\n</tr>\r\n<tr>\r\n<td>52</td>\r\n<td>12,777</td>\r\n</tr>\r\n<tr>\r\n<td>53</td>\r\n<td>12,533</td>\r\n</tr>\r\n<tr>\r\n<td>54</td>\r\n<td>12,282</td>\r\n</tr>\r\n<tr>\r\n<td>55</td>\r\n<td>12,024</td>\r\n</tr>\r\n<tr>\r\n<td>56</td>\r\n<td>11,760</td>\r\n</tr>\r\n<tr>\r\n<td>57</td>\r\n<td>11,490</td>\r\n</tr>\r\n<tr>\r\n<td>58</td>\r\n<td>11,213</td>\r\n</tr>\r\n<tr>\r\n<td>59</td>\r\n<td>10,931</td>\r\n</tr>\r\n<tr>\r\n<td>60</td>\r\n<td>10,644</td>\r\n</tr>\r\n<tr>\r\n<td>61</td>\r\n<td>10,351</td>\r\n</tr>\r\n<tr>\r\n<td>62</td>\r\n<td>10,054</td>\r\n</tr>\r\n<tr>\r\n<td>63</td>\r\n<td>9,752</td>\r\n</tr>\r\n<tr>\r\n<td>64</td>\r\n<td>9,447</td>\r\n</tr>\r\n<tr>\r\n<td>65</td>\r\n<td>9,139</td>\r\n</tr>\r\n<tr>\r\n<td>66</td>\r\n<td>8,829</td>\r\n</tr>\r\n<tr>\r\n<td>67</td>\r\n<td>8,516</td>\r\n</tr>\r\n<tr>\r\n<td>68</td>\r\n<td>8,202</td>\r\n</tr>\r\n<tr>\r\n<td>69</td>\r\n<td>7,887</td>\r\n</tr>\r\n<tr>\r\n<td>70</td>\r\n<td>7,573</td>\r\n</tr>\r\n<tr>\r\n<td>71</td>\r\n<td>7,259</td>\r\n</tr>\r\n<tr>\r\n<td>72</td>\r\n<td>6,947</td>\r\n</tr>\r\n<tr>\r\n<td>73</td>\r\n<td>6,637</td>\r\n</tr>\r\n<tr>\r\n<td>74</td>\r\n<td>6,330</td>\r\n</tr>\r\n<tr>\r\n<td>75</td>\r\n<td>6,027</td>\r\n</tr>\r\n<tr>\r\n<td>76</td>\r\n<td>5,728</td>\r\n</tr>\r\n<tr>\r\n<td>77</td>\r\n<td>5,434</td>\r\n</tr>\r\n<tr>\r\n<td>78</td>\r\n<td>5,146</td>\r\n</tr>\r\n<tr>\r\n<td>79</td>\r\n<td>4,865</td>\r\n</tr>\r\n<tr>\r\n<td>80</td>\r\n<td>4,591</td>\r\n</tr>\r\n<tr>\r\n<td>81</td>\r\n<td>4,324</td>\r\n</tr>\r\n<tr>\r\n<td>82</td>\r\n<td>4,066</td>\r\n</tr>\r\n<tr>\r\n<td>83</td>\r\n<td>3,816</td>\r\n</tr>\r\n<tr>\r\n<td>84</td>\r\n<td>3,575</td>\r\n</tr>\r\n<tr>\r\n<td>85</td>\r\n<td>3,344</td>\r\n</tr>\r\n<tr>\r\n<td>86</td>\r\n<td>3,123</td>\r\n</tr>\r\n<tr>\r\n<td>87</td>\r\n<td>2,911</td>\r\n</tr>\r\n<tr>\r\n<td>88</td>\r\n<td>2,710</td>\r\n</tr>\r\n<tr>\r\n<td>89</td>\r\n<td>2,518</td>\r\n</tr>\r\n<tr>\r\n<td>90</td>\r\n<td>2,337</td>\r\n</tr>\r\n<tr>\r\n<td>91</td>\r\n<td>2,167</td>\r\n</tr>\r\n<tr>\r\n<td>92</td>\r\n<td>2,006</td>\r\n</tr>\r\n<tr>\r\n<td>93</td>\r\n<td>1,855</td>\r\n</tr>\r\n<tr>\r\n<td>94</td>\r\n<td>1,718</td>\r\n</tr>\r\n<tr>\r\n<td>95</td>\r\n<td>1,584</td>\r\n</tr>\r\n<tr>\r\n<td>96</td>\r\n<td>1,462</td>\r\n</tr>\r\n<tr>\r\n<td>97</td>\r\n<td>1,349</td>\r\n</tr>\r\n<tr>\r\n<td>98</td>\r\n<td>1,246</td>\r\n</tr>\r\n<tr>\r\n<td>99</td>\r\n<td>1,150</td>\r\n</tr>\r\n<tr>\r\n<td>100</td>\r\n<td>1,062</td>\r\n</tr>\r\n<tr>\r\n<td>101</td>\r\n<td>0.980</td>\r\n</tr>\r\n<tr>\r\n<td>102</td>\r\n<td>0.899</td>\r\n</tr>\r\n<tr>\r\n<td>103</td>\r\n<td>0.802</td>\r\n</tr>\r\n<tr>\r\n<td>104</td>\r\n<td>0.618</td>\r\n</tr>\r\n</tbody>\r\n</table>','Life Awards','','draft','closed','closed','','life-awards','','','2021-11-30 05:57:45','2021-11-30 10:57:45','',46229,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46232',0,'page','',0),(46233,26,'2021-08-16 05:06:11','2021-08-16 09:06:11','<h1><span style=\"color: #211865;\">Max Rates</span></h1>\r\n<table style=\"width: 81.695%; height: 506px;\">\r\n<thead>\r\n<tr style=\"height: 23px;\">\r\n<th style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">Time Frame</span></th>\r\n<th style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">Maximum Partial</span></th>\r\n<th style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">Maximum Total</span></th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1 of each succeeding year</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">2/3 of the NYS AWW</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">2/3 of the NYS AWW</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1, 2022, to June 30, 2023</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">$1,125.46</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">$1,125.46</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1, 2021, to June 30, 2022</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">$1,063.05</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">$1,063.05</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1, 2020, to June 30, 2021</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">$966.78</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">$966.78</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1, 2019, to June 30, 2020</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">$934.11</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">$934.11</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1, 2018, to June 30, 2019</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">$904.74</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">$904.74</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1, 2017, to June 30, 2018</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">$870.61</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">$870.61</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1, 2016, to June 30, 2017</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">$864.32</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">$864.32</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1, 2015, to June 30, 2016</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">$844.29</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">$844.29</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1, 2014, to June 30, 2015</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">$808.65</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">$808.65</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1, 2013, to June 30, 2014</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">$803.21</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">$803.21</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1, 2012, to June 30, 2013</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">$792.07</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">$792.07</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1, 2011, to June 30, 2012</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">$772.96</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">$772.96</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1, 2010, to June 30, 2011</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">$739.83</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">$739.83</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1, 2009, to June 30, 2010</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">$600</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">$600</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1, 2008, to June 30, 2009</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">$550</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">$550</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1, 2007, to June 30, 2008</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">$500</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">$500</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1, 1992, to June 30, 2007</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">$400</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">$400</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1, 1991, to June 30, 1992</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">$350</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">$350</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1, 1990, to June 30, 1991</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">$280</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">$340</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px; width: 41.5449%;\"><span style=\"color: #211865;\">July 1, 1985, to June 30, 1990</span></td>\r\n<td style=\"height: 23px; width: 28.1837%;\"><span style=\"color: #211865;\">$150</span></td>\r\n<td style=\"height: 23px; width: 62.0382%;\"><span style=\"color: #211865;\">$300</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<span style=\"color: #211865;\">Effective 5/1/13, the minimum compensation rate changed from $100.00 per week to $150.00 per week.</span>','Max Rates','','publish','closed','closed','','max-rates','','','2022-09-19 13:46:18','2022-09-19 17:46:18','',49704,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46233',0,'page','',0),(46234,26,'2021-08-16 05:11:12','2021-08-16 09:11:12','<h1><span style=\"color: #211865;\">SLU/PHP</span></h1>\r\n&nbsp;\r\n<table style=\"width: 38.7524%; height: 300px;\">\r\n<thead>\r\n<tr style=\"height: 47px;\">\r\n<th style=\"height: 47px;\"><span style=\"color: #211865;\">Member Lost</span></th>\r\n<th style=\"height: 47px;\"><span style=\"color: #211865;\">Weeks of Compensation</span></th>\r\n<th style=\"height: 47px;\"><span style=\"color: #211865;\">PHP</span></th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">Arm</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">312</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\"> 32</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">Leg</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">288</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\"> 40</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">Hand</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">244</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">32</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">Foot</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">205</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">32</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">Eye</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">160</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">20</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"color: #211865;\">Thumb</span></td>\r\n<td><span style=\"color: #211865;\">75</span></td>\r\n<td><span style=\"color: #211865;\">24</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">1st Finger</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">46</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">18</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">2nd Finger</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">30</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">12</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">3rd Finger</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">25</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">8</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">4th Finger</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">15</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">8</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">Great Toe</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">38</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">12</span></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">Other Toe</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">16</span></td>\r\n<td style=\"height: 23px;\"><span style=\"color: #211865;\">8</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!--[CP_CALCULATED_FIELDS id=”1″]-->','SLU/PHP','','publish','closed','closed','','slu-php','','','2022-09-19 13:47:06','2022-09-19 17:47:06','',49704,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46234',0,'page','',0),(46235,1927,'2021-08-16 05:27:42','2021-08-16 09:27:42','<h1>M&amp;T Rates</h1>\r\n<table>\r\n<thead>\r\n<tr>\r\n<th>Effective Date</th>\r\n<th>Rate (cents per mile)</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>1-1-82</td>\r\n<td>23</td>\r\n</tr>\r\n<tr>\r\n<td>2-27-89</td>\r\n<td>24</td>\r\n</tr>\r\n<tr>\r\n<td>2-20-90</td>\r\n<td>26</td>\r\n</tr>\r\n<tr>\r\n<td>1-1-91</td>\r\n<td>27.5</td>\r\n</tr>\r\n<tr>\r\n<td>1-1-92</td>\r\n<td>28</td>\r\n</tr>\r\n<tr>\r\n<td>1-1-94</td>\r\n<td>29</td>\r\n</tr>\r\n<tr>\r\n<td>1-3-95</td>\r\n<td>30</td>\r\n</tr>\r\n<tr>\r\n<td>1-2-96</td>\r\n<td>31</td>\r\n</tr>\r\n<tr>\r\n<td>1-1-97</td>\r\n<td>31.5</td>\r\n</tr>\r\n<tr>\r\n<td>1-1-98</td>\r\n<td>32.5</td>\r\n</tr>\r\n</tbody>\r\n</table>','M&T Rates','','draft','closed','closed','','mt-rates','','','2021-11-30 05:57:45','2021-11-30 10:57:45','',46229,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46235',0,'page','',0),(46236,26,'2021-08-16 05:31:34','2021-08-16 09:31:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Case Law Updates\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"50%\" module_alignment=\"center\" custom_margin=\"45px||30px||false|false\" custom_padding=\"15px||15px||false|false\" border_width_bottom=\"4px\" border_color_bottom=\"#211865\" border_style_bottom=\"double\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\"><span style=\"color: #211865;\">Case Law Updates</span></h1>[/et_pb_text][et_pb_text admin_label=\"Overview\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||30px||false|false\" custom_padding=\"||0px||false|false\" border_width_bottom=\"4px\" border_color_bottom=\"#211865\" border_style_bottom=\"double\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #211865;\">Every year, LOMAD’s attorneys practice on the cutting edge of the New York Workers’ Compensation Law. We wouldn’t be doing our part for the profession, or our clients, if we didn’t share that knowledge.</span></p>\n<p style=\"text-align: center;\"><span style=\"color: #211865;\">LOMAD’s case law update has been presented far and wide, including at the prestigious NYSIA Annual Meeting in New York City!</span></p>\n<p style=\"text-align: center;\"><span style=\"color: #211865;\">To obtain access to this valuable and expansive resource, please email <a style=\"color: #211865;\" href=\"mailto:jcousins@madwcdefense.com\"><span style=\"text-decoration: underline;\">jcousins@madwcdefense.com</span></a></span></p>\n<p style=\"text-align: center;\">[/et_pb_text][et_pb_text disabled_on=\"off|off|on\" admin_label=\"Case Law Updates (Links)\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><span style=\"color: #211865;\"><a style=\"color: #211865; text-decoration: underline;\" href=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2016CaseLawUpdate.pdf\">LOMAD Case Law Update 2016</a></span></span></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><span style=\"color: #211865;\"><a style=\"color: #211865; text-decoration: underline;\" href=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2017CaseLawUpdate.pdf\">LOMAD Case Law Update 2017</a></span></span></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><span style=\"color: #211865;\"><a style=\"color: #211865; text-decoration: underline;\" href=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2018CaseLawUpdate.pdf\">LOMAD Case Law Update 2018</a></span></span></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><span style=\"color: #211865;\"><a style=\"color: #211865; text-decoration: underline;\" href=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2019CaseLawUpdate.pdf\">LOMAD Case Law Update 2019</a></span></span></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><span style=\"color: #211865;\"><a style=\"color: #211865; text-decoration: underline;\" href=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/02/2020CaseLawUpdate.pdf\">LOMAD Case Law Update 2020</a></span></span></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><span style=\"color: #211865;\"><a style=\"color: #211865; text-decoration: underline;\" href=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2021CaseLawUpdate.pdf\">LOMAD Case Law Update 2021</a></span></span></p>[/et_pb_text][ba_image_carousel is_autoplay=\"off\" use_pagi=\"on\" slide_count=\"4\" nav_height=\"42px\" nav_color=\"#FFFFFF\" nav_bg=\"#211865\" nav_border_width=\"1px\" nav_border_color=\"#696969\" pagi_bg=\"#211865\" pagi_bg_active=\"#696969\" _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][ba_image_carousel_child admin_title=\"2016 Case Law Update\" photo=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2016-Case-Law-Update-Cover.png\" content_alignment=\"center\" content_padding=\"15px||17px|0px|false|false\" image_hover_animation=\"zoom-in\" btn_spacing_top=\"-25px\" overlay_bg_color=\"rgba(105,105,105,0.21)\" overlay_on_hover=\"on\" overlay_icon=\"&#xf518;||fa||900\" overlay_icon_color=\"#211865\" overlay_icon_size=\"64px\" overlay_icon_opacity=\"0.8\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#211865\" button_border_color=\"RGBA(255,255,255,0)\" button_font=\"Playfair Display SC||||||||\" button_custom_margin=\"||||false|false\" button_custom_padding=\"||||false|false\" custom_margin=\"||||false|false\" custom_padding=\"|||0px|false|false\" custom_padding_tablet=\"||32px|0px|false|false\" custom_padding_phone=\"||32px|0px|false|false\" custom_padding_last_edited=\"on|desktop\" link_option_url=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2016CaseLawUpdate.pdf\" link_option_url_new_window=\"on\" hover_enabled=\"0\" border_width_all_item=\"5px\" border_color_all_item=\"#696969\" border_style_all_item=\"inset\" button_text_shadow_style=\"preset1\" box_shadow_style_button=\"preset3\" box_shadow_vertical_button=\"8px\" box_shadow_blur_button=\"5px\" global_colors_info=\"{}\" title=\"2016\" sticky_enabled=\"0\" title_level=\"h2\" title_text_shadow_style=\"preset1\" title_text_shadow_vertical_length=\"0.07em\"][/ba_image_carousel_child][ba_image_carousel_child admin_title=\"2017 Case Law Update\" photo=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2017-Case-Law-Update-Cover.png\" content_alignment=\"center\" image_hover_animation=\"zoom-in\" btn_spacing_top=\"-25px\" content_bg_color=\"RGBA(255,255,255,0)\" overlay_bg_color=\"rgba(105,105,105,0.28)\" overlay_on_hover=\"on\" overlay_icon=\"&#xf518;||fa||900\" overlay_icon_color=\"#211865\" overlay_icon_size=\"64px\" overlay_icon_opacity=\"0.8\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#211865\" button_font=\"Playfair Display SC|||on|||||\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2017CaseLawUpdate.pdf\" hover_enabled=\"0\" border_width_all_item=\"5px\" border_color_all_item=\"#696969\" border_style_all_item=\"inset\" global_colors_info=\"{}\" title=\"2017\" sticky_enabled=\"0\" content_padding=\"15px||17px||false|false\" title_level=\"h2\" title_text_shadow_style=\"preset1\" title_text_color=\"#211865\"][/ba_image_carousel_child][ba_image_carousel_child admin_title=\"2018 Case Law Update\" photo=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2018-Case-Law-Update-Cover.png\" image_hover_animation=\"zoom-in\" overlay_bg_color=\"rgba(105,105,105,0.28)\" overlay_on_hover=\"on\" overlay_icon=\"&#xf518;||fa||900\" overlay_icon_color=\"#211865\" overlay_icon_size=\"64px\" overlay_icon_opacity=\"0.8\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" custom_margin=\"||||false|false\" custom_padding=\"||3px||false|false\" link_option_url=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2018CaseLawUpdate.pdf\" hover_enabled=\"0\" border_width_all_item=\"5px\" border_color_all_item=\"#696969\" border_style_all_item=\"inset\" global_colors_info=\"{}\" title=\"2018\" content_alignment=\"center\" sticky_enabled=\"0\" title_text_shadow_style=\"preset1\" title_text_shadow_vertical_length=\"0.07em\" title_letter_spacing=\"0px\" title_level=\"h2\"][/ba_image_carousel_child][ba_image_carousel_child admin_title=\"2019 Case Law Update \" photo=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2019-Case-Law-Update-Cover.png\" image_hover_animation=\"zoom-in\" overlay_bg_color=\"rgba(105,105,105,0.28)\" overlay_on_hover=\"on\" overlay_icon=\"&#xf518;||fa||900\" overlay_icon_color=\"#211865\" overlay_icon_size=\"64px\" overlay_icon_opacity=\"0.8\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_enable_color=\"off\" custom_padding=\"||4px||false|false\" link_option_url=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2019CaseLawUpdate.pdf\" link_option_url_new_window=\"on\" hover_enabled=\"0\" border_width_all_item=\"5px\" border_color_all_item=\"#696969\" border_style_all_item=\"inset\" global_colors_info=\"{}\" title=\"2019\" content_alignment=\"center\" title_level=\"h2\" title_text_shadow_style=\"preset1\" title_text_shadow_vertical_length=\"0.07em\" sticky_enabled=\"0\"][/ba_image_carousel_child][ba_image_carousel_child admin_title=\"2020 Case Law Update\" photo=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2020-Case-Law-Update-Cover.png\" content_alignment=\"center\" image_hover_animation=\"zoom-in\" overlay_bg_color=\"rgba(105,105,105,0.28)\" overlay_on_hover=\"on\" overlay_icon=\"&#xf518;||fa||900\" overlay_icon_color=\"#211865\" overlay_icon_size=\"64px\" overlay_icon_opacity=\"0.8\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_enable_color=\"off\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/02/2020CaseLawUpdate.pdf\" link_option_url_new_window=\"on\" hover_enabled=\"0\" border_width_all_item=\"5px\" border_color_all_item=\"#696969\" border_style_all_item=\"inset\" global_colors_info=\"{}\" title=\"2020\" title_level=\"h2\" title_text_shadow_style=\"preset1\" title_text_shadow_vertical_length=\"0.07em\" title_bottom_spacing=\"0px\" content_padding=\"15px||18px||false|false\" custom_margin=\"||||false|false\" sticky_enabled=\"0\"][/ba_image_carousel_child][ba_image_carousel_child admin_title=\"2021 Case Law Update\" photo=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2021-Case-Law-Update-Cover.png\" image_hover_animation=\"zoom-in\" overlay_bg_color=\"rgba(105,105,105,0.28)\" overlay_on_hover=\"on\" overlay_icon=\"&#xf518;||fa||900\" overlay_icon_color=\"#211865\" overlay_icon_size=\"64px\" overlay_icon_opacity=\"0.8\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_enable_color=\"off\" custom_padding=\"||3px||false|false\" link_option_url=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2021CaseLawUpdate.pdf\" hover_enabled=\"0\" border_width_all_item=\"5px\" border_color_all_item=\"#696969\" border_style_all_item=\"inset\" global_colors_info=\"{}\" title=\"2021\" content_alignment=\"center\" title_level=\"h2\" title_text_shadow_style=\"preset1\" content_padding=\"15px||13px||false|false\" sticky_enabled=\"0\"][/ba_image_carousel_child][/ba_image_carousel][/et_pb_column][/et_pb_row][/et_pb_section]','LOMAD Case Law Updates','','publish','closed','closed','','lomad-case-law-updates','','','2022-09-20 14:28:40','2022-09-20 18:28:40','',46229,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46236',0,'page','',0),(46244,26,'2021-08-16 05:49:13','2021-08-16 09:49:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"LOMAD Magazine Blurb\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#211865\" sticky_enabled=\"0\"]<h1>LOMAD Magazine</h1>\n<h2><strong>Check out the LOMAD Magazine by clicking on any of the volumes below!</strong></h2>\n<p><strong>Want to be a part of our mailing list? Email us at <a href=\"mailto:Mail@Madwcdefense.com\">Mail@Madwcdefense.com</a>!</strong></p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LOMADMagazineVol13July2022Cover.png\" title_text=\"LOMADMagazineVol13July2022Cover\" url=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LOMADMagazineVol13July2022.pdf\" url_new_window=\"on\" admin_label=\"July 2022\" _builder_version=\"4.18.0\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LOMADMagazineVolume12June2022Cover.png\" title_text=\"LOMADMagazineVolume12June2022Cover\" url=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LOMADMagazineVolume12June2022.pdf\" url_new_window=\"on\" admin_label=\"June 2022\" _builder_version=\"4.18.0\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LOMADMagazineVolume11May2022Cover.png\" title_text=\"LOMADMagazineVolume11May2022Cover\" url=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LOMADMagazineVolume11May2022.pdf\" url_new_window=\"on\" admin_label=\"May 2022\" _builder_version=\"4.18.0\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','LOMAD Newsletter','','publish','closed','closed','','lomad-newsletter','','','2022-09-19 14:06:56','2022-09-19 18:06:56','',45926,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=46244',0,'page','',0),(46245,2461,'2021-08-16 05:40:37','2021-08-16 09:40:37','','102398183','','inherit','closed','closed','','102398183','','','2021-08-16 05:40:37','2021-08-16 09:40:37','',0,'/wp-content/uploads/sites/1503150/2021/08/102398183.jpg',0,'attachment','image/jpeg',0),(46246,2461,'2021-08-16 05:40:41','2021-08-16 09:40:41','','970001773','','inherit','closed','closed','','970001773','','','2021-08-16 05:40:41','2021-08-16 09:40:41','',0,'/wp-content/uploads/sites/1503150/2021/08/970001773.jpg',0,'attachment','image/jpeg',0),(46247,2461,'2021-08-16 05:40:45','2021-08-16 09:40:45','','1787479011','','inherit','closed','closed','','1787479011','','','2021-08-16 05:40:45','2021-08-16 09:40:45','',0,'/wp-content/uploads/sites/1503150/2021/08/1787479011.jpg',0,'attachment','image/jpeg',0),(46248,2461,'2021-08-16 05:40:48','2021-08-16 09:40:48','','3006688682','','inherit','closed','closed','','3006688682','','','2021-08-16 05:40:48','2021-08-16 09:40:48','',0,'/wp-content/uploads/sites/1503150/2021/08/3006688682.jpg',0,'attachment','image/jpeg',0),(46249,2461,'2021-08-16 05:41:07','2021-08-16 09:41:07','','LOMAD-Newsletter-March-2021','','inherit','closed','closed','','lomad-newsletter-march-2021','','','2021-08-16 05:41:07','2021-08-16 09:41:07','',0,'/wp-content/uploads/sites/1503150/2021/08/LOMAD-Newsletter-March-2021.pdf',0,'attachment','application/pdf',0),(46250,2461,'2021-08-16 05:41:18','2021-08-16 09:41:18','','LOMAD-Newsletter-Volume-2','','inherit','closed','closed','','lomad-newsletter-volume-2','','','2021-08-16 05:41:18','2021-08-16 09:41:18','',0,'/wp-content/uploads/sites/1503150/2021/08/LOMAD-Newsletter-Volume-2.pdf',0,'attachment','application/pdf',0),(46251,2461,'2021-08-16 05:41:30','2021-08-16 09:41:30','','LOMAD-newsletter-Volume-3','','inherit','closed','closed','','lomad-newsletter-volume-3','','','2021-08-16 05:41:30','2021-08-16 09:41:30','',0,'/wp-content/uploads/sites/1503150/2021/08/LOMAD-newsletter-Volume-3.pdf',0,'attachment','application/pdf',0),(46252,2461,'2021-08-16 05:41:37','2021-08-16 09:41:37','','LOMAD-newsletter-Volume-4-August-1','','inherit','closed','closed','','lomad-newsletter-volume-4-august-1','','','2022-02-04 11:44:12','2022-02-04 16:44:12','',0,'/wp-content/uploads/sites/1503150/2021/08/LOMAD-newsletter-Volume-4-August-1.pdf',0,'attachment','application/pdf',0),(46270,1251,'2021-08-17 08:09:26','2021-08-17 12:09:26','','AdobeStock_140260471_Preview','','inherit','closed','closed','','adobestock_140260471_preview','','','2021-08-17 08:09:26','2021-08-17 12:09:26','',6,'/wp-content/uploads/sites/1503150/2021/08/AdobeStock_140260471_Preview.jpg',0,'attachment','image/jpeg',0),(46273,1251,'2021-08-17 08:22:50','2021-08-17 12:22:50','','logo','','inherit','closed','closed','','logo','','','2021-11-23 15:07:28','2021-11-23 20:07:28','',6,'/wp-content/uploads/sites/1503150/2021/08/logo.png',0,'attachment','image/png',0),(46300,1251,'2021-08-17 09:00:03','2021-08-17 13:00:03','','AdobeStock_297103193_Preview','','inherit','closed','closed','','adobestock_297103193_preview','','','2021-08-17 09:00:03','2021-08-17 13:00:03','',6,'/wp-content/uploads/sites/1503150/2021/08/AdobeStock_297103193_Preview.jpg',0,'attachment','image/jpeg',0),(46311,1251,'2021-08-17 09:54:40','2021-08-17 13:54:40','','icon1','','inherit','closed','closed','','icon1','','','2021-08-17 09:54:40','2021-08-17 13:54:40','',6,'/wp-content/uploads/sites/1503150/2021/08/icon1.png',0,'attachment','image/png',0),(46312,1251,'2021-08-17 09:54:43','2021-08-17 13:54:43','','icon','','inherit','closed','closed','','icon','','','2021-11-17 16:20:47','2021-11-17 21:20:47','',6,'/wp-content/uploads/sites/1503150/2021/08/icon.png',0,'attachment','image/png',0),(46313,1251,'2021-08-17 09:54:46','2021-08-17 13:54:46','','icon2','','inherit','closed','closed','','icon2','','','2021-11-17 16:20:38','2021-11-17 21:20:38','',6,'/wp-content/uploads/sites/1503150/2021/08/icon2.png',0,'attachment','image/png',0),(46317,1251,'2021-08-17 10:05:28','2021-08-17 14:05:28','','AdobeStock_447848300_Preview','','inherit','closed','closed','','adobestock_447848300_preview','','','2021-08-17 10:05:28','2021-08-17 14:05:28','',6,'/wp-content/uploads/sites/1503150/2021/08/AdobeStock_447848300_Preview.jpg',0,'attachment','image/jpeg',0),(46327,25,'2021-08-09 00:00:00','2021-08-09 04:00:00','In a recent claim, we obtained surveillance of a claimant performing activities well outside of their doctor’s restrictions. From there, we obtained social media sweep-reports.\r\n\r\nOf note, the carrier’s obligation to disclose surveillance materials applies not just before the carrier’s questioning of the claimant, but also prior to when the carrier prompts the WCLJ’s questioning of the claimant. <u>See Matter of Moreilli v. Tops Mkts.</u>, 107 AD3d 1231 (3d 2013). <u>See also Matter of Aeropostale</u>, 2012 NY Wrk Comp G0410425, wherein the Board Panel held that the carrier does not need to disclose the evidence from social media before questioning the claimant.\r\n\r\nAt our hearing, awards were updated. However, the WCLJ did not confirm the work status during that period. Therefore, we had to prompt the Judge to ask the work-related questions before updating awards. Upon doing so, we had to disclose the surveillance to avoid preclusion. While our litigation strategy was to hold off on disclosure of the surveillance, we did not want to lose the opportunity to use the surveillance under a fraud claim.\r\n\r\nUpon conclusion of the claim, we received a call from claimant’s counsel – advising that they were interested in a section 32 full and final agreement – as the claimant, fully admitted to activities that their attorney was not aware of.\r\n\r\nFrom there, we used an evidence based MSA to finalize the medical portion of the claim under the full and final Section 32 agreement. We were able to reduce the indemnity portion of the claim based upon the surveillance and social media reports, prior to the claim moving forward with fraud.\r\n\r\nOverall, it is important to remember when we must disclose surveillance (not social media). Once we disclosed the surveillance, without any specifics given to claimant/claimant’s counsel, they knelt to our request and we settled on a full and final agreement saving countless dollars on litigation of fraud. While LOMAD was ready to proceed and aggressively push the issue of fraud, once it was properly disclosed we were able to settle the claim in our favor.  This was a great win for LOMAD’s client.\r\n\r\nThe use of surveillance and social media sweep has been increasingly useful. Here at LOMAD, once we take the deep dive and determine the need for surveillance and/or a social media sweep, the results carry the Day.','Surveillance, Social Media…Section 32?','','publish','closed','closed','','surveillance-social-mediasection-32','','','2022-08-31 09:17:02','2022-08-31 13:17:02','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/08/surveillance-social-mediasection-32/',0,'post','',0),(46329,25,'2021-08-16 23:52:50','2021-08-17 03:52:50','One of the greatest things the Board ever did for carriers was include a provision in the 2018 Workers’ Compensation Guidelines for Determining Impairment (“Guidelines”) that providers need to measure range of motion of unaffected contralateral limb and use that as a baseline, if appropriate. Section 1.3 of the Guidelines state that using the contralateral limb is not appropriate where the opposite side has been previously injured or is not otherwise available for comparison (in cases of amputation, for example).\r\n\r\nSo that brings us to the fun part. As we know, it’s virtually impossible to prove apportionment to pre-existing arthritis/degenerative conditions without proof that the prior condition was “disabling in a compensation sense”. That’s often impossible because most claimants have either been living with it without treatment, or they’ve treated with their primary care doctor and don’t disclose it because it wasn’t the result of an “injury”. And unless we know the treatment records are out there, you’re stuck. You can’t ask for what you don’t know exists and no Judge will authorize a fishing expedition.\r\n\r\nTHIS IS A WAY AROUND THAT! People typically develop arthritis symmetrically. While one side may have slightly more advanced arthritis if it’s the dominant side, it can generally be assumed that if one side has arthritis, the other side does as well. If that arthritis has resulted in loss of motion on the contralateral side, then we’re cooking! The Board’s provision essentially allows us to assume that if pre-existing degenerative arthritis caused losses in range of motion on one side, it did on the other as well. And if the contralateral limb was not injured in any other accident, you can cause that as the baseline instead of the normal values listed in the Guidelines. So it’s a way of apportioning out the prior degenerative condition without going through the torture of trying to prove apportionment. It’s simple: The provider measures both sides. If the unaffected limb has abnormal range of motion and no injuries, that has to be used as the baseline. PERIOD.\r\n\r\nYou may be saying to yourself, d’uh! We know that. But some providers don’t! I’ve personally had many depositions where providers think they just have to measure the contralateral side and not actually use it as a baseline. Which brings me to my helpful hint: BE SURE TO ASK THE DOCTOR IF THEY NOT ONLY MEASURED THE CONTRALATERAL LIMB, BUT WHETHER THEY USED IT AS A BASELINE AS WELL! If the answer to that is no, you pretty much instantly discredit their Schedule Loss of Use (SLU) opinion.\r\n\r\nBut what about cases where our own IME doesn’t do that either, you ask? Well that should never happen because we should not be using IMEs that don’t know the Guidelines! But under the general principle that everyone gets it wrong sometimes, YOU can figure out what the proper SLU should be by using the contralateral limb measurement yourself and applying the Board’s “formula” to use it as the baseline. Remember, the doctors are only qualified to take range of motion findings and render an OPINION on schedule loss of use, but the ultimate determination rests with the Judges who CAN take the measurements and apply them to the Guidelines sua sponte if both doctors misapply them. You should be pointing out to the Judge that both doctors made that error, and while the physical exam findings may be accurate, the conclusion as to percentage SLU is not. Then put forth the alternative number, and you should be good to go.\r\n\r\nYou can find how the appropriate formula for using the contralateral extremity as a baseline on the Board’s website on the page for “Impairment Guidelines: Scheduled Loss of Use Frequently Asked Questions”. <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/hcpp/ImpairmentGuidelines/SLU-FAQs.jsp\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/hcpp/ImpairmentGuidelines/SLU-FAQs.jsp</a>','Using the Contralateral Limb as a Baseline for Calculating Schedule Loss of Use','','publish','closed','closed','','using-the-contralateral-limb-as-a-baseline-for-calculating-schedule-loss-of-use','','','2022-08-31 09:17:02','2022-08-31 13:17:02','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=46329',0,'post','',0),(46331,25,'2021-07-26 00:00:00','2021-07-26 04:00:00','The issue of apportionment is confusing.  Many attorneys apply the wrong standard, the wrong timing, or both which can lead to a hodgepodge of contradicting decisions by Judge’s and also sometimes by the Board.\r\n\r\nOne type of apportionment is “legal apportionment.”  Legal apportionment is a principle that may apply when the claimant has a preexisting injury that was <em>not</em> the subject of a NYS Workers’ Compensation injury.  Unlike apportionment between two NYS Workers’ Compensation claims, legal apportionment generally only applies at permanency.  To demonstrate legal apportionment, the previous condition has to contribute to the disability and must be “disabling in a compensation sense.”  For many claimants and sometimes Judges, the fact that the claimant was working without restrictions at the time of injury is <em>the</em> dispositive factor.  That fact, of course, makes it extremely difficult to obtain legal apportionment.  People need to be working to have an injury at all, and unless the claimant was hired under a list of restrictions or working light duty, the issue of ongoing restrictions is usually just based on their testimony.  There are seldom stories of victory on these files, and more often than not they are the ones that leave the sourest of tastes because it is a loophole that can lead to abuse of the system.\r\n\r\nIt was undisputed that the claimant in this victory was working without restrictions at the time of her injury.  She had to pass a physical demonstrating she was able to perform the job prior to being hired.  She was injured on her third day, the first day any physical work was required.  At that time, she was not injured enough to stop working, and only sought some treatment.\r\n\r\nThe claimant eventually went out of work.  After a hard-litigated controversy the claim was established but she was found unattached.  She was required to demonstrate attachment, and in that attempt she produced a resume and gave testimony regarding her prior application for Social Security Disability.  The claimant testified she stopped working after her MVA and did not work again for five years until she started this new job.\r\n\r\nThe claimant’s treating doctor opined that there was no apportionment.  He felt that the claimant’s MVA five years before this instant injury was too far removed in time.  Furthermore, the claimant indicated she did not have ongoing treatment at the time of her Workers’ Compensation injury and was completely healed.  He indicated it was not relevant to her current disability.\r\n\r\nWe obtained the medical records.  The medical records clearly demonstrated no ongoing history of treatment due to the earlier MVA.  We did not however, leave it at that.\r\n\r\nWe also obtained the claimant’s pleadings in her lawsuit for the MVA, where she opined a permanent and severe disability to her sites of injury.\r\n\r\nWe also obtained the claimant’s insurance claim history.  From that we were able to determine that the claimant had over a dozen lawsuits due to injuries in the past few years.  Our site of injury was not directly implicated, but it was still not a good look.\r\n\r\nIn a strange reversal, we argued that the standard was not whether the claimant’s condition was active and symptomatic.  All evidence indicated it was not.  We argued that the standard was whether the claimant was disabled in a compensation sense.  We used all of her prior attachment testimony against her to demonstrate that she was disabled in a compensation sense based on the totality of the evidence.  The WCLJ found that 50% of the claim was unrelated.\r\n\r\nThe shocked claimant’s counsel filed an appeal, but the Board upheld the decision of the WCLJ noting that the treating doctor’s information from the claimant directly contradicted the facts in evidence that the claimant used in order to reattach.  They upheld the 50% apportionment noting that the claimant left work due to her 2014 MVA, did not return for years, and only worked for a couple of days prior to her new accident.  They also made note of the claimant’s lengthy history of lawsuits and her prior filings.  They agreed that apportionment applied as a matter of law based on the totality of the record and the story we told.\r\n\r\nAs an added bonus, we also obtained a 65% LWEC, which was fairly low giving the mitigating factors on this file.','An Exploration of “Legal Apportionment”','','publish','closed','closed','','an-exploration-of-legal-apportionment','','','2022-08-31 09:17:02','2022-08-31 13:17:02','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/07/an-exploration-of-legal-apportionment/',0,'post','',0),(46332,25,'2021-07-19 00:00:00','2021-07-19 04:00:00','There have been several cases recently where Carpal Tunnel Syndrome (“CTS”) was determined by providers as causally related to the accident of record in the file.  At first, this determination of causal relationship  seemed pretty straight forward, but a “deep dive” into the file made it clear that the issue of causal relationship was not so clear-cut.\r\n\r\nIn  one case, the treating physician determined  causally related CTS by  attributing the claimant’s condition  to damage in  the median nerve from the accident of record.  A review of the file uncovered an associated MRI report which noted a “ganglion cyst” located along a particular anatomical pathway in the wrist area. As such, we did some research, and were able to find medical journal literature supporting the phenomenon of ganglion cysts in this area causing compression of the median nerve – so as to cause Carpal Tunnel Syndrome. As such, we could argue that the unrelated ganglion cyst was a preexisting condition which likely caused the CTS.\r\n\r\nIn another file, the claimant raised bilateral carpal tunnel syndrome as consequential to a broken left humerus she had sustained in a fall, in the accident of record. During testimony, the treating  provider explained that the claimant’s “extensive treatment” of the left shoulder had led to swelling in the left upper extremity – which then led to nerve damage – which then led to her carpal tunnel on the left side.  He further theorized that carpal tunnel on the<em> right</em> side resulted from resultant overuse of her right hand – based on the left sided carpal tunnel syndrome damaging her left hand. During deposition, however, we were able to get the provider to concede that the claimant’s “extensive treatment,”  which he had blamed for causing the swelling in her left upper extremity, had involved treatment (including radiation)  for unrelated tumors in the shoulder. As such, we ended up with a reasonably strong argument that the claimant had not sufficiently shown any of the claimant’s carpal tunnel syndrome to be causally related.\r\n\r\nAs such, a diagnosis of CTS should be looked at from all angles, as one might be surprised at the different theories of causation one might uncover.','Carpal Tunnel and Causal Relation Not Always So Clear-Cut','','publish','closed','closed','','carpal-tunnel-and-causal-relation-not-always-so-clear-cut','','','2022-08-31 09:17:02','2022-08-31 13:17:02','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/07/carpal-tunnel-and-causal-relation-not-always-so-clear-cut/',0,'post','',0),(46335,25,'2021-08-02 23:57:40','2021-08-03 03:57:40','As everyone probably knows, Workers’ Compensation Law §21(4) presumes that a work-related accident isn’t only due to an employee’s intoxication on the job, <em>unless</em> there is substantial evidence to the contrary.  Workers’ Compensation Law §10(1) similarly says that an employer must compensate employees for a work-related injury regardless of fault unless the injury was solely caused by intoxication from alcohol or a controlled substance.  The World Health Organization defines intoxication as a condition following administration of a psychoactive substance and results in disturbances in the level of consciousness, cognition, perception, effect or behavior or other psycho-physiological functions and responses.  The Court has upheld this, finding that intoxication may overcome the presumption of §21.  “The documentary and testimonial evidence presented by the employer as to decedent’s intoxication, the circumstances preceding the accident and the manner in which it occurred sufficiently rebutted the presumption contained in Workers’ Compensation Law § 21(4) and established that decedent’s intoxication was the sole cause of the accident.”  <u>Purcell v. American Sip Corp</u>.  248 A.D.2d 844 (1998), citing  <u>Matter of Majune v. Good Humor Corp</u>., 26 A.D.2d 849, 849–850, 273 N.Y.S.2d 819; <u>Matter of Bowers v. Long Is. Light. Co</u>., 1 A.D.2d 719, 720, 146 N.Y.S.2d 860; <u>Matter of Calka v. Mamaroneck Lodge BPOE</u>, 285 App.Div. 1093, 139 N.Y.S.2d 316;  <u>Matter of Balk v. Austin Ford Logan,</u> 221 A.D.2d 795, 633 N.Y.S.2d 675)<em> .  </em>In other words, if a claimant is drunk or drugged, you may have a viable intoxication defense.\r\n\r\nWe had a recent case where a worker fell 150 feet off a cell tower.  (Yes, he survived.)  After being notified of the accident, the carrier sent an investigator to interview the owner of the company, who confirmed that he had personally checked over the safety gear two days before the accident and it was in perfect working condition.  That employer also said that the claimant had a longstanding history of drug abuse.  He hadn’t had the claimant take a urine drug screen when he hired him because it was while the state was largely locked down, and he hadn’t gotten a drug screen when the restrictions lifted because he trusted the claimant’s word that he wasn’t using.  (Pro tip to any employers reading this: Never take their word.  <em>Always</em> get a drug screen!)  The employer also said he had been the first one to reach the claimant after he fell, and the claimant apologized to him and said he “screwed up.”  The carrier very sensibly subpoenaed the emergency department records, which revealed that the hospital performed a urine drug screen upon admission which tested positive for an assortment of illegal drugs, including cocaine and marijuana.  (Second pro tip: always get the emergency room records and make sure your subpoena covers tox screens.  Hospitals don’t always conduct them, but a lot of EDs will run a tox screen upon admission.  And it’s always useful to see what the injured worker has to say right after the accident compared to what s/he tells their own doctor a few weeks or months later!)\r\n\r\nSo now we had a positive drug screen and a seething employer ready to testify that the safety equipment was working.  We still had to overcome the §21 presumption and show that this accident was solely caused by the claimant’s use of controlled substances.  We deposed the ED doctor, who confirmed that the positive tox screen was performed on the day of accident and conceded that the drugs shown in the tox screen could cause altered cognition, altered coordination, euphoria, dizziness and altered consciousness.  He also confirmed that the drugs administered by the hospital for pain control wouldn’t flag as any of the illicit substances on the tox screen.  We now had a medical opinion which strongly suggested the claimant was in an altered state at the time of the accident and confirmation that his positive tox screen was taken on the date of the accident and was not, despite the claimant’s attorney claimed, a result of the medications provided by his doctors.\r\n\r\nIt was a good start, but we still needed to convince the judge that there wasn’t any other cause for the claimant’s accident.   Here, that was relatively straightforward.  He fell off a cell phone tower and it wasn’t because the tower broke, so either he’d screwed up with his safety gear, or the gear itself had failed.  In order to win, we had to prove that the gear hadn’t failed.  We reached out to the employer witness, who was the owner of the company, to prepare him to testify.  While talking to him, we focused heavily on the usual safety requirements and how they worked to make sure that we had a solid understanding of what precautions would have applied if the claimant had properly used his safety gear. We even had the employer hop into a set of gear himself and send us pictures so we understood what each piece of gear was and how it worked!  We built a timeline to make it clear to the judge that the safety gear was checked by our witness two days prior to the accident, checked by the injured worker himself on the day of the accident before he went up the tower, and checked by our witness after the accident before it was confiscated by OSHA as part of their investigation.  We also made sure our witness understood why this timeline was so important, and why we needed the judge to conclude that the safety gear couldn’t possibly be the reason the claimant fell.\r\n\r\nAt the trial, the claimant asserted that he fell after leaning out too far to push a boom away, which was part of his job duties, and vehemently denied taking any drugs.  However, he couldn’t explain away the positive tox screen on cross and he had to concede that he hadn’t reported any problems with his safety gear before he went up the tower.  Because we’d gone over it with him beforehand, our witness kept his cool and was able to discuss the safety equipment and how it worked in detail.  He explained that if the claimant had properly used his safety gear, he would only have fallen about 9 inches.  Then, in a coup de grâce, he testified that while kneeling over the claimant on the ground, he looked up and saw the safety gear still properly attached to the tower.  He confirmed that he had personally checked it before OSHA took it, and it worked perfectly.  The only explanation for the fall was user error.\r\n\r\nThe judge agreed with us, and disallowed the case completely under §10(1).','Disallowance Due to Intoxication','','publish','closed','closed','','disallowance-due-to-intoxication','','','2022-08-31 09:17:02','2022-08-31 13:17:02','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=46335',0,'post','',0),(46337,25,'2021-07-05 00:00:00','2021-07-05 04:00:00','One fateful morning, white smoke appeared over a street in New York City following the explosion of an underground pipe insulated with asbestos, bits of which littered the scene. And where was the claimant? At home, having worked the night shift, and wouldn’t return to the scene for another 36 hours or so. When they eventually turned up for work, they saw notices on some of the buildings regarding an evacuation, and there were folks on the street in hasmat suits engaged in clean-up activities. After all, the news said there was asbestos involved. Claimant got torqued and wanted to speak with HR about what’s being done to protect them, but got no response.\r\n\r\nMonths pass, and Claimant begins to complain of headaches, difficulty concentrating, and other cognitive dysfunctions. Of course, when they begin to see doctors, they tell every single one they were exposed to asbestos in the aftermath of this explosion. Who cares if the MRI he eventually received was suggestive of a traumatic brain injury? The doctors stick to their theory of toxic encephalopathy due to this asbestos. An IME was secured and, while the most likely diagnosis was still toxic encephalopathy, it was specifically noted that the newspaper articles supplied declared the air around the incident “safe to breathe” before the claimant ever returned to work, so no causal relationship was found. Litigation precipitated, and the only information claimant’s doctors had regarding exposure was that provided by the claimant. One doctor was so bold as to stick with his conclusion “until something’s put in front of him that would controvert it.”\r\n\r\nAn almost hour and a half long trial followed, wherein the testimony of the claimant and two lay witnesses took place, the latter of which wrecked our timely notice defense to shreds. However, the claimant testified poorly. While they testified they worked the day of the explosion and the 2 days that followed, surrounded by dust that wasn’t properly cleaned-up, their timecard (already in eCase) cried foul; the first time the claimant worked after the explosion was closer to 36 hours than 12. The claimant testified the only information they had regarding their exposure was “probably” the news, conceding they’d never reviewed the environmental report, wherein samples were taken the day after the explosion, before the claimant returned to work, and analysis thereof showed no asbestos. And, if shameless citations to exactly where in the eCase that information could be viewed while we asked the claimant some other questions, like how the onset of his symptoms wasn’t until over a year after the alleged exposure, who’s to say.\r\n\r\nSummations followed, with claimant’s attorney alleged they inhaled “something toxic,” and Claimant believed there may have been asbestos in the air, but “something” blanketed the whole area. They continued by noting inhalation issues are slow moving issues before going off on a tangent about how, as we know from 9-11, even just breathing dust is harmful. They’d clearly been caught unprepared by the environmental report. We argued, not only was there proof there was no asbestos in the building when Claimant alleged they were exposed, but there were significant issues with Claimant’s testimony and memory, with proof Claimant made numerous misstatements to their doctors; while the doctors found causal relationship based on those statements, medical reports are only as good as the facts they’re based on, and those not in accordance with the true facts should be set aside.\r\n\r\nUltimately, the WCLJ disallowed the claim, noting that while there’s been notice to the employer, there was no accident here, as the claimant wasn’t exposed to asbestos. As the claimant has to prove all the elements of accident, notice, and causal relationship, and there was no accident here, the claim was disallowed. It was no accident.','It’s No Accident','','publish','closed','closed','','its-no-accident','','','2022-08-31 09:17:02','2022-08-31 13:17:02','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/07/its-no-accident/',0,'post','',0),(46338,25,'2021-06-28 00:00:00','2021-06-28 04:00:00','At LOMAD, we monitor the Third Department for case law updated to stay on the cutting-edge of workers’ compensation law in New York. This month we noted an interesting decision in <u>Allen v. CPP-Syracuse</u>, that provides a helpful reminder to all of us when we are disputing causal relationship.\r\n\r\n<strong><u>Allen v CPP–Syracuse</u></strong><strong>, 2021 N.Y. Slip Op. 03226 (3d Dept., May 20, 2021)</strong>\r\n\r\n<em>Decision Below</em>: claimant’s generalized anxiety disorder was consequential to his established claim for injuries to his left shoulder and neck.\r\n\r\n<em>Affirmed</em>: The Third Department affirmed the Board’s decision to uphold the establishment of consequential anxiety where the IME doctor and the treating doctor found causal relationship. The carrier argued that their causal relationship opinions should not stand in support of establishment as they did not account for claimant’s treatment records relating to a prior MVA. However, these treatment records were not in the Board file and, while carrier applied to reopen the case to get them put into the Board file, the Board denied their application as they knew about the records for some time and thus did not meet the “within a reasonable time after the applicant has had knowledge of the facts” standard. Therefore, the Third Department agreed with the Board that, where the doctors reviewed claimant’s medical records in the Board file and met with the claimant, the Board’s decision to establish consequential anxiety was supported by substantial evidence.\r\n\r\nThis decision is significant, in light of recent Third Department case law that we use to dispute doctors’ opinions on causal relationship. Critically, the Third Department requires physicians to have a complete and accurate understanding of the history of the accident and the claimant’s medical records and history before making an opinion in a workers’ compensation case. <u>See</u> <u>Fox v. Altmar, –Parish–Williamstown Central School District</u>, 175 A.D.3d 1728, 1729-1730 (3d Dept. 2019) (finding the doctor’s opined causal relationship insufficient to establish the employee’s claim where the doctor did not personally examine the claimant and, most importantly, did not examine claimant’s prior medical records); <u>see also</u> <u>Matter of Johnson v. Borg Warner</u>, 186 A.D.3d 1772, 1773 (3d Dept. 2020) (finding claimant’s medical evidence insufficient to support a claim for an allegedly causally-related meniscal tear where the doctor testified that it is “very reasonable that something could have happened at work that exacerbated a chronic condition” or that there was a “strong possibility” that the claimant suffered an acute meniscal tear).\r\n\r\nThus, what <u>Allen</u> show us, is that we need to remain vigilant of potentially relevant medical records that predate the date of accident, as we need to quickly obtain them and submit them to the Board file to preserve our argument that a doctor’s causal relationship opinion cannot stand due to the doctor’s incomplete or inaccurate understanding of the claimant’s medical history.\r\n\r\nFor more updates on developments in New York workers’ compensation law, stay tuned to our NY WC Blog, please join the New York Workers’ Compensation Forum on LinkedIn, and attend our monthly webinar series, LOMAD &amp; Friends, on the fourth Friday of every month!','Third Deparment Decision: Disputing Causal Relationship','','publish','closed','closed','','third-deparment-decision-disputing-causal-relationship','','','2022-08-31 09:17:02','2022-08-31 13:17:02','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/06/third-deparment-decision-disputing-causal-relationship/',0,'post','',0),(46339,25,'2021-06-01 00:00:00','2021-06-01 04:00:00','In a case was established for the right knee, the claimant ultimately underwent right total knee replacement surgery. At a hearing, various awards were made, credit to New York State, and a $3,500 attorney fee was awarded, to be taken out of the reimbursement to the employer.\r\n\r\nThe parties stipulated to a 40% schedule loss of use, with the carrier allowed to take credit for all prior payments, and allowed the carrier to deduct the remaining amount of reimbursement to the employer in the sum of $20,149.34.  A Notice of Stipulated Decision was thereafter filed.\r\n\r\nThe claimant appealed the Stipulated Decision, arguing that there had been no meeting of the minds on the issue of the amount of the prior payments. The claimant alleged that the carrier took credit for the prior $3,500 attorney fee, and also deducted the full amount of the remaining reimbursement. Claimant alleged that he was underpaid by $3,500 as a result.  A Rebuttal was timely filed, noting that all parties had signed the stipulation and had agreed to the figures therein.\r\n\r\nThe Board Panel agreed with the claimant. The remaining amount of the reimbursement to the employer should have been reduced by the $3,500 previously taken from the reimbursement for an attorney fee. The Board Panel directed the carrier to pay the outstanding balance of $3,500 to the claimant. Carriers need to be aware that, even though they are entitled to full reimbursement for wages paid from a schedule loss of use award, they have to be careful not to double count on the prior wages already paid to the employer.','Stipulations, Reimbursements, Underpayments. Oh My!','','publish','closed','closed','','stipulations-reimbursements-underpayments-oh-my','','','2022-08-31 09:17:02','2022-08-31 13:17:02','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/06/stipulations-reimbursements-underpayments-oh-my/',0,'post','',0),(46340,25,'2021-07-12 00:13:51','2021-07-12 04:13:51','It’s well known in the Workers Compensation community that the threshold for meeting Prima Facie Medical Evidence (PFME) is extremely low. However, one argument that the Board has found to be quite compelling, is that “pain” is not an injury. There have been some past Board Panel decision which touch upon this argument, but in a very recent Board Panel decision the Board made very clear where they stand on the issue. In EMPLOYER: CONGRGATION MACHNE CHAIM INC, the board found that the diagnosis of “back pain” did not suffice to meet the threshold of PFME. WCB # G281 4719, June 07, 2021. The Board found in that matter that, “The claimant was not diagnosed with a back injury, but rather just with back pain. Pain is a symptom and not a diagnosis and, as such, medical reports that only reference or diagnose pain are not sufficient to constitute PFME of an injury, trauma or illness.” Notably, the Board found that pain was  not sufficient for PFME, despite positive clinical findings, which claimant’s counsel argued were indicative of an injury. Since PFME is an issue which is usually never revisited, as it is interlocutory, it is important to be aggressive at the outset of the claim and recognizing that just because a diagnosis is given with statement of causal relationship, that diagnosis may not be an actual “injury,” and a finding of PFME should be argued against accordingly.','Pain is Not Enough for Prima Facie Medical Evidence','','publish','closed','closed','','pain-is-not-enough-for-prima-facie-medical-evidence','','','2022-08-31 09:17:02','2022-08-31 13:17:02','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=46340',0,'post','',0),(46341,25,'2021-05-24 00:00:00','2021-05-24 04:00:00','In a contentious hearing, LOMAD prevailed proving that a claimant voluntarily retired, effectively removing herself from the labor market and the claimant’s subsequent part-time job did not support any claim for reduced earnings. The claimant, who worked at a hospital, was injured and continued to work for a period of time and then took regular retirement. A few months later the claimant got a part-time job at a deli. Claimant was seeking lost time and reduced earnings.\r\n\r\nAt the trial level, claimant testified. Upon conclusion of the testimony, we aggressively argued that the claimant had voluntarily retired – as no doctor suggested or advised to retire, and the claimant testified that it was time for her to retire from the hospital. Further, we argued that the claim for reduced earnings while working at the deli was improper. Specifically, there were no doctors providing any work restrictions and therefore the claimant’s reduced earnings were due solely to the claimant’s own decision to work part-time.\r\n\r\nThe WCLJ agreed with our position and found that the claimant had voluntarily retired from her job at the hospital and was not entitled to lost time. Further, the WCLJ sided with our position that the claim for reduced earnings was based on the claimant’s decision to work part-time, not due to any work restrictions placed on her. Overall, no awards were paid.\r\n\r\nIn this claim, LOMAD took another deep dive into the record which revealed no doctor was advising to retire or provided any work restrictions. With the facts in our corner, we went into the hearing knowing the answers, but needed the claimant to confirm – which she did. This was an excellent win for our client and LOMAD!','Labor Market Attachment and Retirement','','publish','closed','closed','','labor-market-attachment-and-retirement','','','2022-08-31 09:17:02','2022-08-31 13:17:02','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/labor-market-attachment-and-retirement/',0,'post','',0),(46342,25,'2021-05-17 00:00:00','2021-05-17 04:00:00','This was a controverted claim for chemical exposure for an accident which occurred in 2019. The claimant was working as a bus driver and alleged that she was exposed to fuel additives somehow coming out of the heating vents, and that she has been subject to repeat exposures. The history of the accident provided to each of the claimant’s providers, as well as the independent medical examiner, what that she was exposed to chemicals repeatedly while working and developed certain symptoms each time she was exposed. Given the history provided, it was unanimous among medical providers, including the independent medical examiner, that causal relationship existed. Upon taking testimony of the medical providers, the providers conceded the claimant suffered other medical conditions which may be causing her to be symptomatic but are not necessarily related to work. Then, upon taking lay witness testimony, the various witnesses testified that it was impossible for the claimant to have been exposed to the fuel additive, as she never came in contact with it and the vents are not connected to the gas tank, so it would be impossible for it to have come out of the vents. They also testified the additive was only added once, and would have dissipated the same day, which is inconsistent with the history the claimant was giving which claimed that the additive was added on multiple occasions subjecting her to repeat exposures.\r\n\r\nThe Carrier relied heavily on a recent Third Department decision which have very similar facts and found that “the lack of objective findings to support claimant’s complaints, coupled with the employer’s contrary testimony regarding claimant’s working conditions and the inconsistencies in claimant’s disclosures to [the medical providers], raise issues with claimant’s credibility that the Board was free to resolve against her. For all of these reasons, the Board’s decision finding that claimant failed to meet her burden of establishing a causal relationship between her employment and her claimed disability [was] supported by substantial evidence.” <u>Matter of Collen Hanely v. Trustees of Columbia University</u>, 189 A.D.3d 1847 (3<sup>rd</sup> Dept. 2020).\r\n\r\nThe WCLJ ultimately found that the lay witnesses had direct knowledge of when the fuel additive was added and that the evidence established that there were no additional exposures to explain the claimant’s symptoms. The WCLJ also found that the claimant’s medical providers admitted the claimant had unrelated conditions which could have accounted for claimant’s symptoms. The claim was disallowed as a result.','Claim Disallowance With Unanimous Medical Opinion Giving Causal Relationship','','publish','closed','closed','','claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship','','','2022-08-31 09:17:02','2022-08-31 13:17:02','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/',0,'post','',0),(46343,25,'2021-05-10 00:00:00','2021-05-10 04:00:00','Workers’ Compensation Law § 18 provides that the claimant must give written notice of an injury to his employer within 30 days of the accident. However, the statute further provides that the failure to give timely written notice may be excused by the Board if it finds that the claimant had a sufficient reason for the failure to provide timely written notice, the employer had actual knowledge of the accident or the employer was not prejudiced by the lack of timely notice. The courts have further found that the claimant has the burden of showing that the delay in notification did not prejudice the employer, particularly where the accident was unwitnessed. (<em>Zraunig v New York Telephone Company</em>, 32 A.D2d 686 [3rd Dept 1969]). The Court has found prejudice when the delay aggravates the injury or prevents the employer from properly investigating the claim. (<em>Yagaloff v Lincoln Hall,</em> 137 AD2d 955 [3rd Dept 1988]; <em>Pierce v New York Telephone Company</em>, 99 A.D.2d 898  [3rd Dept 1984]).\r\n\r\nWe were successful in getting the Board to reverse a finding of the WCLJ who established an untimely noticed claim.  In this claim, it was undisputed that the claimant did not provide any notice of the injury to the employer within 30 days of the accident, either written or oral.  We argued that the delay prevented the employer from properly investigating the claim.  We provided employer testimony that the employer has a procedure for keeping closed circuit video of the specific work area for the 30-day notice period.  When there is an unwitnessed accident that is not accepted, the employer testified that they do preserve and review these videos once notice is provided.  The employer produced clear evidence of prejudice.\r\n\r\nIt was also undisputed that this was an unwitnessed accident.  It was the claimant’s burden to demonstrate that the delay in notification did not prejudice the employer.\r\n\r\nIn an effort to shift the burden of proof claimant’s counsel made a ridiculous argument that the employer should keep all videos on file in perpetuity in case there is a late notification.  Claimant’s counsel further made a circular argument that because there was no surveillance the employer could not prove that there was anything even relevant on the surveillance.  (Honestly, if we knew that there would not be prejudice- that was the entire point of our argument.)  The claimant essentially indicated that his own unreasonable delay should be held against the employer.\r\n\r\nIf that was not enough to get it reversed, we had diligently attempted to obtain medical records from a non-compensation provider who had first treated the claimant since we first learned of their existence. Even though the claim was established by the WCLJ, we did not give up on those records, and those records actually stated there was no accident.  We alleged further prejudice because if the claimant had not delayed in reporting this accident the employer would have been able to review the records and would have been able to see that there was no accident that occurred.\r\n\r\nThe Board admitted the newly obtained evidence as the record was clear that the we had diligently and timely pursued it, and as it was clear they were very relevant.  The Board found that the employer was extremely prejudiced by the late notice, and further noted that if the claim had not been untimely filed the investigation would have demonstrated that there was no accident.','Employers Do Not Have to Prove Prejudice by Late Notice, but it Certainly Doesn’t Hurt To Do So!','','publish','closed','closed','','employers-do-not-have-to-prove-prejudice-by-late-notice-but-it-certainly-doesnt-hurt-to-do-so','','','2022-08-31 09:17:02','2022-08-31 13:17:02','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/employers-do-not-have-to-prove-prejudice-by-late-notice-but-it-certainly-doesnt-hurt-to-do-so/',0,'post','',0),(46344,25,'2021-05-03 00:00:00','2021-05-03 04:00:00','In the case of <u>Patrick Feeney, WCB G2489270</u>, we recently had a victory in front of Judge Snyder Haas on the issue of causal relationship of the claimant’s left shoulder and elbow injuries.  This is an established claim per an Amended Proposed Conciliation Decision for the left small finger involving a now 62-year-old man as a result of an injury which occurred on 12/27/19. Per his C-3.0, claimant was working as a Parks Utility Worker for the City of Buffalo when he was taking down the tailgate of his dump-truck while raining, slipped, and crushed fingers on his left hand.  The claimant appeared at Buffalo Surgery Center on 01/13/20 and underwent closed reduction and percutaneous pin stabilization of the left small finger middle phalanx shaft fracture with Dr. Callahan.  Six months following surgery, the claimant started reported pain and frozen shoulder in his left shoulder and elbow.  The claimant underwent serious open heart surgery before the pain in the shoulder and elbow began where he was in the hospital for an extended stay and was directed not to move his arms due to complications with his chest wall (surgery on 3/16/20).\r\n\r\nTestimony of the claimant as well as the treating physician and IME consultant were conducted.  The treating physician causally related the shoulder and elbow to the work accident, but also admitted on cross-examination that the injuries could also be caused by the claimant’s open heart surgery as the muscles involved in the shoulder injury align with the chest wall that had to be disturbed for the heart surgery.  The Law Judge noted in a reserved decision that the claimant proceeded on the theory of consequential injuries and not direct injuries.  The Judge noted that it was the claimant’s burden to establish a causal relationship of the consequential injury to the underlying injury and the work accident.  The Judge noted that the treating physician admitted that the injuries could have been caused by immobilization following heart surgery.  Therefore, the Law Judge disallowed the claim for consequential injuries.','The Claimant’s Burden: Proving the Causal Relationship of an Injury','','publish','closed','closed','','the-claimants-burden-proving-the-causal-relationship-of-an-injury','','','2022-08-31 09:17:02','2022-08-31 13:17:02','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/',0,'post','',0),(46345,25,'2021-04-26 00:00:00','2021-04-26 04:00:00','When we talk about surveillance, we’re usually talking about investigators staking out a claimant, taking videos, trying to catch them doing something outside their restrictions.  It’s an incredibly useful and important tool in our arsenal, especially when it comes to fraud.  But what about social media?\r\n\r\nWe live in a time when nearly everybody has at least one social media account, and most of us have several: Facebook, Instagram, TikTok, Twitter, the list goes on and grows by the day!  I was once involved in a case where we realized the claimant was working as a clown (no, I’m not kidding!) and although she tried to say it was therapeutic, her social media was full of posts advertising her various gigs and discussing her rates.  On another case, a claimant didn’t disclose that he was selling guns.  His social media was clean – but his wife’s Facebook posts were full of videos of the claimant and his family at gun shows, the claimant sitting behind a sales booth and demonstrating various guns for sale, sales advertisements, and directions to call the claimant’s cell phone to arrange appointments.  The judge was less than amused.\r\n\r\nWe also live in an era when a lot of people may have side gigs which don’t involve working at an actual physical location.  This matters because a claimant who isn’t observed leaving her house may still be engaging in fraudulent activities online, and we may be able to find that out by searching through her social media.  We’ve seen claimants trying to build up a client base for everything from scented melts to homemade items on Etsy.  In one case, the claimant posted about her new carpet-cleaning business on Facebook, trying to drum up interest.  We went digging and were able to turn up further posts about a business the claimant started, which led us to a business license in her name.  Our investigators then set up a sting operation and were able to film the claimant engaging in work activities.  We raised fraud.  The claimant tried to say that she hadn’t disclosed the business because she didn’t think of it as her own business because she had “opened the business for her family” and her brother did the actual cleaning work, but she admitted that the business license was in her name, she had bought tickets to go out of state for training, she had purchased the products and rented storage space to store them, the commercial vehicle was in her name, and she was the only person who could access the business bank accounts.  The judge implemented a lifetime ban.  So check social media – you never know what you’ll find!','Social Media and Fraud – You’d Be Surprised What People Post!','','publish','closed','closed','','social-media-and-fraud-youd-be-surprised-what-people-post','','','2022-08-31 09:17:02','2022-08-31 13:17:02','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/04/social-media-and-fraud-youd-be-surprised-what-people-post/',0,'post','',0),(46346,25,'2021-04-19 00:00:00','2021-04-19 04:00:00','We got a win disallowing a right shoulder claim in a 01/18/2020 established claim for the upper back and neck. The claimant’s C-3, filed approximately 3 weeks later, listed the right shoulder as a claimed injury. The right shoulder MRI showed bursitis and a partial tear of the supraspinatus and AC degenerative joint disease. The doctor requested surgery. Our IME disputed causal relationship, stating the claimant’s complaints were really radicular from the cervical spine.\r\n\r\nHowever, on cross-examination, we were able to elicit several highly damaging concessions from the treating provider, who admitted the findings on MRI could be age-related, and that they are common findings even in asymptomatic people. She admitted she could not relate findings on MRI, or the need for surgery, to the 01/18/2020 injury within a reasonable degree of medical certainty. She also admitted that reports closer in time to the date of injury are generally more accurate, that she never reviewed a 02/03/2020 report, finding no evidence of an injury to the right shoulder, and confirmed that would have been relevant in forming her opinion on causal relationship.\r\n\r\nIn defending the file, we did some research on the prevalence of partial tears and bursitis in shoulders, which helped in questioning the doctor on cross-examination. The takeaway here is to not throw in the towel even if there are positive findings on diagnostic imaging studies, and even when the claimed injury is reported relatively soon after the date of injury. Delve into what those findings mean, whether they can truly be distinguished as being related to trauma, and if those findings are prevalent in the general population. Happy Hunting!','Never Give In! Disallowance Win!','','publish','closed','closed','','never-give-in-disallowance-win','','','2022-08-31 09:17:02','2022-08-31 13:17:02','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/04/never-give-in-disallowance-win/',0,'post','',0),(46347,25,'2021-04-12 00:00:00','2021-04-12 04:00:00','We recently handled a claim in which we were attempting to get a finding of 50% degree of disability with regard to temporary rates in the record. Our IME had given an opinion of 50% based on her examination, but the treating physician had consistently opined 100%.   We deposed the treating provider, who testified that his recent examinations were done through telemedicine, and that he was able to view the claimant sufficiently  in order to make determinations for his exam report. We were ultimately able to get the treating physician to concede that  telemedicine visits are less credible than in- person visits,  and “compromised” for a variety of reasons – including that they are not “hands-on” with regard to testing for muscle spasm/tension during range of motion measurements, etc.\r\n\r\nAt the hearing which followed, the judge referenced our deposition transcript as “interesting,” and chose not to make any compromise on degree, but rather made a finding of 50% for all TR rates addressed.','An “Interesting” IME Development','','publish','closed','closed','','an-interesting-ime-development','','','2022-08-31 09:17:02','2022-08-31 13:17:02','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/04/an-interesting-ime-development/',0,'post','',0),(46348,25,'2021-04-05 00:00:00','2021-04-05 04:00:00','The claim was established for occupational disease to the bilateral hands and ankles and the claimant, a landscaper, was ultimately awarded a loss of use of 15% for the hands and 10% for the ankles.   In an attempt to invoke Section 44 apportionment, the carrier on risk obtained the claimant’s social security employment records for all employers over the course of 10+ years to alleviate their financial liability.  The Law Judge set the date of contracture based on medical records dating back to 2010, which allegedly reported the claimant’s first complaints of pain in his hands.\r\n\r\nAll employers since that date were then placed on notice, based on a rather speculative IME who could not apportion the occupational disease objectively, rather he was forming an opinion of “fairness” for all carriers.   The claimant testified to the pain in his bilateral wrists and ankles and that the pain didn’t <em>really </em>start until he was hardscaping and working full-time for the originally liable employer.   Moreover, he testified that he was using a jackhammer in 2010, had pain in the bilateral hands for a few days, and then did not have pain again for at least 6 years.  The Law Judge changed the date of contracture based on this new testimony, as it became clear that the 2010 complaints were not related.\r\n\r\nApportionment under Section 44 was not appropriate.  Notably, the same IME who “fairly” apportioned the injuries over the course of 10 years, also indicated he did not know why any loss of use was found for the hands.  In retrospect, the original carrier should have disputed the SLU instead of attempting to apportion.  Hindsight is 2020, not 44.','Section 44: Not Even a Portion of Liability For The Occupational Disease','','publish','closed','closed','','section-44-not-even-a-portion-of-liability-for-the-occupational-disease','','','2022-08-31 09:17:03','2022-08-31 13:17:03','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/04/section-44-not-even-a-portion-of-liability-for-the-occupational-disease/',0,'post','',0),(46350,25,'2021-03-15 00:00:00','2021-03-15 04:00:00','As we approach the one-year anniversary of the beginning of the COVID-19 pandemic, many employers still require their employees to work from home. However, most employers likely do not realize the implications this responsible decision can have on potential workers’ compensation claims.\r\n\r\nOn October 22, 2020, the Third Department overturned the Workers’ Compensation Board’s decision in <u>Matter of Matrix Absence Management</u>, 2019 NY Wrk Comp G1953353, in which the Board Panel held that the claimant did not suffer a compensable accident where his injuries did not arise out of and in the course of his employment. <u>Capraro v. Matrix Absence Management</u>, 187 A.D.3d 1395 (3d Dept., Oct. 22, 2020). In <u>Capraro</u>, the employer hired the claimant to work from home. Thereafter, the claimant requested authorization and reimbursement for office furniture to perform his job, but the employer denied the claimant’s requests. Nonetheless, the claimant ordered the furniture and had it delivered during business hours on a workday, where, on his lunch break, the claimant moved the furniture into his home. Unsurprisingly, the claimant injured himself while moving the furniture into his home office. In holding that the claimant did not suffer a compensable accident, the Board Panel instead ruled that injuries suffered while working from home are only compensable where the claimant was actually performing work (i.e., not away from his/her desk for any reason, including using the restroom).\r\n\r\nSubsequently, the Third Department reversed and remitted the matter to determine whether the claimant injured himself in the scope and course of his employment. In overturning the Board’s decision, the Third Department seemingly was not all that concerned that claimant was working from home, on his lunch break, and moving furniture into his home (i.e., office furniture that was not paid for, nor approved, by claimant’s employer). Instead, the Court relied on longstanding precedent that injuries sustained during brief breaks at work are generally still compensable, unless they were purely personal (i.e., not sufficiently work related). In fact, the Court indicated that it believed that the Board Panel ignored these basic principles in favor of a more stringent standard for employees working from home. That is, the Board Panel only would find claimant’s injuries compensable if they had occurred both during working hours and while performing work activities. Significantly, the Court stated that a consistent pattern of working from home makes the employee’s home a place of employment, equivalent to a traditional workspace.\r\n\r\nHere at LOMAD, we have developed an argument that the Third Department’s decision in <u>Capraro</u> should not apply to employees who work from home solely due to the COVID-19 pandemic. Much of the Third Department’s decision in <u>Capraro</u> hinges on the claimant’s <u>consistent pattern of working from home</u> converting the claimant’s home into the functional equivalent of the employer’s primary place of business. However, the COVID-19 pandemic <u>unexpectedly</u> required most employers to transition to having their employees work remotely, either all or in-part. Employers made this change both to: (a) comply with government directives and recommendations; and (b) ensure their employee’s safety. What is more, many employers either did, or hope to, return to the office as soon as it is safe to do so. Therefore, it would be unfair and inaccurate to characterize employees working from home due to the COVID-19 pandemic as engaged in a “consistent pattern of working from home.” Thus, the Board and the Third Department should not apply the broad standard in <u>Capraro</u>, in which employers face liability for virtually any injuries suffered by claimants working from home, so long as they occur during business hours.\r\n\r\nInstead, we contend that the Board should apply its decision in <u>Matter of Matrix Absence Management</u> to cases where claimants injure themselves while working from home due to the COVID-19 pandemic.  The pandemic placed employers in a difficult situation; requiring them to drastically alter their preferred business models to ensure both their employee’s and the community’s safety. Applying the Third Department’s standard in <u>Capraro</u> will unnecessarily increase the number of workers’ compensation claims that these very same employers will face, despite their best intentions. Conversely, the Board Panel’s underlying decision in <u>Mater of Matrix Absence Management</u> guarantees that employees can still pursue workers’ compensation claims for injuries suffered at work, but not for injuries suffered while, for example, emptying the dishwasher.\r\n\r\nAdditionally, we believe that our argument supports public policy. The Third Department’s decision in <u>Capraro</u> will lead to employers choosing to bring their employees back into the office, despite understandable trepidation in light of the ongoing concerns of community spread. Moreover, while some employers may choose to continue working remotely, they may institute various tracking technologies, such as keystroke trackers and webcams, to ensure that their employees stay at their workstation all day. This invasion of privacy benefits nobody and places an undue burden on employers and employees alike.\r\n\r\nLastly, the long-established case law, pertaining to whether an accident occurred in the scope and course of employment, is implicitly founded upon an understanding that employers maintain significant control over their offices. That is, employers provide ADA compliant facilities that take the needs of various employees into consideration. However, employers maintain no such control over their employees’ homes. What if the claimant’s stairs do not have railings? What happens when the claimant slips while doing laundry? Who is liable when the claimant burns himself making a grilled cheese sandwich? These questions highlight the absurdity of the Third Department’s decision in <u>Capraro</u> and, we believe, support our argument that the Board should apply its more stringent decision in <u>Matter of Matrix Absence Management</u> to claims for workers’ compensation benefits related to injuries suffered at home while working from home to avoid the spread of COVID-19.\r\n\r\nIf you find one (or twenty) of these claims coming your way . . . don’t get angry, <strong><u>GET M.A.D.</u></strong>','When Do Work From Home Accidents Occur in the Scope and Course of Employment?','','publish','closed','closed','','when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment','','','2022-08-31 09:17:03','2022-08-31 13:17:03','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/',0,'post','',0),(46351,25,'2021-03-08 00:00:00','2021-03-08 05:00:00','Listening to the news earlier today, I heard a talking-head explain she was a member of a law firm which she also described as a “Think Tank.”  Now, this lawyer’s firm had strong political ties as well as, I’m sure, a practice focused on cases with political import.  I wondered, however, why she took the time to identify her law firm as a Think Tank – all good law firms <em>should </em>be Think Tanks, right?\r\n\r\nBy its most basic definition, a Think Tank is a body of experts providing advice and ideas on a specific topic or topics – a law firm takes that concept a step further where we provide advice and ideas and, frequently, bring those to fruition in the courtroom, or in written agreements, or through negotiations.  Law Firms – lawyers generally – have been operating under that definition since before the term “Think Tank” was coined.  Maybe because Think Tanks are have evolved from a political ideology we don’t connect them to other professional ventures.  In reality, aren’t most of the large, well-established consulting practices Think Tanks?  Is it because we expect only advice, and not action, that law firms aren’t offered up in comparison?\r\n\r\nThe funny part is, the term “Think Tank” is packed with undertones of scholarship – the phrase literally includes the work “think”!  In that limited sense, Law Firms should be assessed by their clients in this way – does a  lawyer demonstrate the kind of thoughtfulness, wisdom and scholarship that is evoked by merely uttering the phrase “Think Tank.”\r\n\r\nRhetorical questions aside, the Think Tank concept throws light on what we feel is the most important part of a law practice:  expertise, advice and ideas.  LOMAD’s philosophy is embodied in the “5 C’s” – collaboration, current, creative, comprehensive and candor – elements that establish a deeper client relationship and better communication.  No lawyer can guarantee a result, but they can provide the very best, very latest and most thoughtful approach to practice available there is scholarship to law, and thinking critically is not just reserved for Think Tanks!','Thoughts on Thinking:  A Strange Title About Practicing Law','','publish','closed','closed','','thoughts-on-thinking-a-strange-title-about-practicing-law','','','2022-08-31 09:17:21','2022-08-31 13:17:21','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/03/thoughts-on-thinking-a-strange-title-about-practicing-law/',0,'post','',0),(46352,25,'2021-03-01 00:00:00','2021-03-01 05:00:00','By now, we’re all well aware that <u>Matter of Genduso v, New York City Dept. of Edu</u>., 164 A.D.3d 1509 (3d Dept. 2018), affirmed the principle that schedule awards are not given for particular injuries, but rather “for the residual physical and functional impairments”. <u>Matter of Empara v. New Rochelle Sch. Dist.</u>, 130 A.D.3d 1127, 1129, 12 N.Y.S.3d 391 [3d Dept. 2015], <em>lv denied</em> 26 N.Y.3d 911, 2015 WL 7288984 [2015]; <em>see</em> New York State Guidelines for Determining Permanent Impairment and Loss of Wage Earning Capacity § 1.5, at 10 [2012].\r\n\r\nIn <u>Genduso</u>, the Court elaborated that “consistent with this observation, neither the statute nor the Board’s guidelines lists the ankle or the knee as body parts lending themselves to separate SLU awards. Rather, impairments to these extremities are encompassed by awards for the loss of use of the leg (see Workers’ Compensation Law § 15[3][b]; New York State Guidelines for Determining Permanent Impairment and Loss of Wage Earning Capacity § 8, at 43 [2012]).” For that reason, The Court determined the Board properly deducted prior schedules for the claimant’s right knee and ankle to arrive at the claimant’s overall schedule loss of use of the right leg.\r\n\r\nThis case has been instrumental in forcing the Judges to account for <em>all</em> prior schedule loss of use awards to a particular extremity, rather than schedules for the same part of the extremity? But what about total joint replacements…?\r\n\r\nThe 2018 Guidelines for Determining Permanent Impairment, for example, state that for a “good result” following a total knee replacement, a claimant could expect a 35% schedule loss of use award. <em>See</em> Workers’ Compensation Guidelines for Determining Permanent Impairment § 7.5, at 44 (2017). Claimant’s attorney frequently argue that these provisions mean the claimant automatically get at least a 35% schedule just for undergoing a total knee replacement. The Guidelines after, all <em>say</em> 35% for a total knee replacement without regard to any other prior schedule. Surely, that means if there was a prior schedule considering other conditions and range of motion deficits, the 35% should be added to it.\r\n\r\nBut NO! DO NOT FALL FOR THAT TRAP! The Board Panel has specifically found that <u>Genduso</u> applies to total replacements. In <u>Matter of State University at Purchase</u>, 2020 NY Wrk. Comp. G07778237, the claimant was previously found to have a 17.5% schedule loss of use of the right leg. The claimant then had a total knee replacement, with his doctor opining a 40% schedule loss of use of the right leg. The Board affirmed the WCLJ’s determination that the claimant was entitled to an overall 22.5% increase in schedule loss of use.\r\n\r\nSo, if a claimant has prior schedule for an extremity and then undergoes a joint replacement, we still get to take credit for the prior schedule to arrive at the overall percentage allowed under the Guidelines. If anyone says otherwise, well, you know where to find us!','Genduso and Total Joint Replacement Schedules','','publish','closed','closed','','genduso-and-total-joint-replacement-schedules','','','2022-08-31 09:17:21','2022-08-31 13:17:21','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/03/genduso-and-total-joint-replacement-schedules/',0,'post','',0),(46367,25,'2021-02-15 00:00:00','2021-02-15 05:00:00','This was an established neck and back claim.  The issue for litigation was further causally related lost time.  The claimant sustained an unrelated motor vehicle accident in February involving various body sites, including her neck and back.\r\n\r\nAs we reviewed the file, we realized that the claimant’s medical evidence had changed dramatically after her accident.  Six days before the accident, the claimant’s treating doctor opined that she had a moderate lumbar disability, with mild to moderate motion deficits in her thoracic and low back.   After the accident, she was given a temporary total disability by her doctors.  Her providers testified that that after the accident, the claimant reported tenderness to her spine and her range of motion had decreased in both her neck and her low back.  During cross-examination, they conceded that she had injured her neck and re-injured her back in the MVA and admitted that the MVA had exacerbated her back injury.  They also confirmed that her MRI findings had changed following the MVA. They agreed that it would be difficult to attribute her current condition specifically to her Workers’ Compensation claim.\r\n\r\nWe argued that the claimant had suffered a new and unrelated accident, and that her subsequent disability was not causally related to her Workers’ Compensation claim.  In our memorandum, we cited <u>Employer: Wedgewood Care Center</u>.  In this case, the Board Panel upheld the Judge’s decision that the claimant suffered a new, intervening and superseding back injury as a result of an unrelated motor vehicle accident and found that the claimant did not have a further causally related disability to her back after that accident.  <u>Employer: Wedgewood Care Center</u>, 20401097 New York Work. Comp. Bd. 2009.\r\n\r\nThe Judge agreed with us and found that the claimant had no compensable disability after her MVA.  The judge also found the disputed bills in our favor on the grounds that the treatment was related to the MVA, not the claimant’s Workers’ Compensation claim.','No Further Causally Related Disability Due to Intervening Unrelated Accident','','publish','closed','closed','','no-further-causally-related-disability-due-to-intervening-unrelated-accident','','','2022-08-31 09:17:21','2022-08-31 13:17:21','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/',0,'post','',0),(46368,25,'2021-02-08 00:00:00','2021-02-08 05:00:00','One issue that I have come across several times in my legal career is whether or not a claimant qualifies as an independent contractor or an employee.  The Board Panel recently reviewed this issue in the case of <u>Matter of Clare Hayduscko</u>, 219 N.Y. Wrk. Comp. 40708094 (2019).  In that case, the claimant injured her right ankle when she slipped on a wet floor while working as a home health aid.  The claimant indicated that her employer was Clare Hayduscko, who was not insured on the date of accident.  Clare Hayduscko asserted that the claimant was not an employee, but rather an independent contractor.  The claimant was working helping to take care of Clare Hayduscko’s elderly mother 7 hours a day, 5 days a week.  The claimant testified that she originally took care of the elderly mother through her work with another agency, but then Clare Hayduscko approached the claimant and offered to pay her privately, which is what had been happening proceeding the date of accident.  The claimant performed the same duties when working for Ms. Hayduscko as she did when she worked for the agency.  She cooked, cleaned, did light laundry and helped with the elderly mother.  The board panel found that this qualified the claimant as a domestic worker.  The board panel found that the claimant was an employee of Clare Hayduscko and not an independent contractor.  Clare Hayduscko was assessed a fine for not maintaining workers’ compensation insurance.  The board panel noted that home health aids are considered to be domestic workers.','Independent Contractor or Employee','','publish','closed','closed','','independent-contractor-or-employee','','','2022-08-31 09:17:21','2022-08-31 13:17:21','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/02/independent-contractor-or-employee/',0,'post','',0),(46369,25,'2021-02-01 00:00:00','2021-02-01 05:00:00','This was a claim which was established in 2018, where despite substantial opportunity with her own medical providers, the claimant failed to report that she had returned to work after the accident of this file. The issue was aggressively litigated for fraud, as the claimant made numerous misrepresentations about her work to the WCLJ and her medical providers. The WCLJ correctly found the evidence submitted overwhelmingly demonstrated claimant was actively earning income and the claimant’s failure to disclose the employment barred the claimant from receiving any future indemnity benefits for the claim\r\n\r\nClaimant then filed an appeal of the decision. Notably, claimant’s counsel resubmitted to the Board Panel the same exact argument which was submitted to the WCLJ by memorandum of law. The Board affirmed the WCLJ’s Decision in a unanimous decision, making any request for review of the Board Panel decision by a Full Board Review discretionary. Of note, upon application for Full Board Review, claimant’s counsel submitted, yet again, the same exact argument which was submitted to both the WCLJ and Board Panel.\r\n\r\nWe argued that where no errors of fact or law are present in the decision below, discretionary Full Board review is must be denied. <em>See e.g. </em><u>Matter of Levine v. Health First</u>, 140 AD3d 1417 [2016].  We further argued the claimant merely suggested that the Board Panel and WCLJ drew incorrect or improper inferences from the largely undisputed facts of the claim and that such a position does not rise to the level of imputing an error of fact or law, and as such, Full Board Review in the matter must be denied. The Full Board ultimately decided that our position that no error of law or fact was made was accurate and denied the discretionary Full Board Review accordingly.','No Error of Law or Fact In An Application For Full Board Review','','publish','closed','closed','','no-error-of-law-or-fact-in-an-application-for-full-board-review','','','2022-08-31 09:17:21','2022-08-31 13:17:21','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/02/no-error-of-law-or-fact-in-an-application-for-full-board-review/',0,'post','',0),(46370,25,'2021-02-22 00:30:54','2021-02-22 05:30:54','In <u>Matter of Darcon Construction, Inc</u>., 2011 NY Wrk Comp. G0223167, the Board stated that the liable carrier in an occupational disease situation would be the employer’s general workers’ compensation carrier, thereby relieving carriers on wrap-up policies of liability. Following several cases in which the Board began to chip away at that decision, the Board expressly disavowed the case in <u>Matter of Pinnacle Industries II, LLC</u>, 2019 NY Wrk Comp G2020587. The Board stated,\r\n\r\n<em>In hearing loss cases, pursuant to Workers’ Compensation Law § 49-ee(1), “[t]he last employer in whose employment the employee was exposed to harmful noise … [is] liable for the payment of the total compensation due the employee for his loss of hearing caused by all of his employments in which he was exposed to harmful noise.”(<u>Woodruff v Goulds Pumps/ITT Indus</u>., 18 A.D.3d 1063 [2005]).</em>\r\n\r\n<em>Neither statute indicates that liability is contingent on the type of policy in effect on the date of disablement. Therefore, it is the opinion of the Board that liability in these occupational disease claims is appropriately placed on the carrier whose policy was in effect on the date of disablement, and whose coverage included the site at which the claimant was working on the disablement date, without distinction as to whether the policy in effect on that date was a wrap up policy. Pursuant to the foregoing finding, the Board expressly disavows its prior finding, in Matter of Darcon Construction Inc., to the extent that it found that wrap up policies do not cover occupational disease claims.</em>\r\n\r\nGood news for carriers with the general policy for employers, but bad news for wrap-up carriers. General policy carriers should now be looking for wrap-up policies that cover the claimant’s work location on every occupational disease claim filed. We’ve seen some wrap-up carriers argue that public policy would dictate that the Board should reverse this disavowal, as <u>Pinnacle Industries</u> requires them to take on unfunded liability because their policies would have been written with the understanding that they wouldn’t be liable for occupational diseases, and so they wouldn’t have charged premiums sufficient to cover this liability. We think that’s likely to go nowhere. A similar argument had already been shot down by the Court of Appeals when carriers tried to argue that closing the door on Section 25-a transfer of liability required them to assume unfunded liability. So far, the Board hasn’t taken that bait. But a prudent carrier should have counter-arguments at the ready to defeat such arguments. Namely, that the contract between the carrier and the insured consistently assumes the risk of legislative change and that liability for any benefit required of employers by the WCL ultimately rested with the carrier. At most, the contract became less profitably, and there’s always a risk of premiums being insufficient to cover a carrier’s liability, which is a risk inherent in the insurance market.\r\n\r\nIn other words, them’s the breaks!','Occupational Disease Claims after Matter of Pinnacle Industries II, LLC (2019 NY Wrk Comp G2020587)','','publish','closed','closed','','occupational-disease-claims-after-matter-of-pinnacle-industries-ii-llc-2019-ny-wrk-comp-g2020587','','','2022-08-31 09:17:21','2022-08-31 13:17:21','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=46370',0,'post','',0),(46371,25,'2021-01-25 00:00:00','2021-01-25 05:00:00','The claimant injured his back working as a mechanic for a car dealership.\r\n\r\nIn November 2019 his wife’s niece requested on Facebook for recommendations for someone who could remodel her bathroom. The claimant’s wife responds that her husband, the claimant, is really good at it and would be happy to do it. He was receiving benefits at the total rate at the time, unknown to the niece.\r\n\r\nThe claimant’s wife is also currently in the process of purchasing the home they are living in from the niece, under some primitive land contract. The claimant’s wife told her niece that they are having some trouble paying the property taxes, and maybe the claimant could do the work to the bathroom if the niece paid the property taxes.\r\n\r\nThe niece paid the property taxes, and gives an additional $600 in cash to the claimant’s wife.\r\n\r\nThe claimant began work on the bathroom in December 2019 while receiving benefits at the total rate. New tiles were installed. A new vanity was installed. A wall was removed.  Late in December, the claimant and his wife split up. The claimant stopped working on the bathroom. The niece hired another contractor to finish the job.\r\n\r\nThe niece learned that the claimant was receiving Workers’ Compensation benefits when he was working on her bathroom. She contacted the State Insurance Fund fraud hotline. An investigator came to her home and took a statement. She explained the barter/payment situation.  Surveillance was placed on the claimant.\r\n\r\nWe are still waiting for the Judge’s decision on WCL 114-a, but confident in a finding of fraud based on the testimony of the niece, the investigator, and the claimant. The lesson: never underestimate the information that can be obtained from angry family (or former family) members.','Fraud in the Family – Claimant Doing Other Work while Receiving Comp Benefits','','publish','closed','closed','','fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits','','','2022-08-31 09:17:21','2022-08-31 13:17:21','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/',0,'post','',0),(46372,25,'2021-01-19 00:00:00','2021-01-19 05:00:00','<em>Matter of Jacobi </em>is a case that drastically altered how change in conditions for classified claimants are handled.  If you recall, for a period of time once a claimant was classified their rate didn’t change to total – even if their doctor said they were totally disabled, or had a surgery.  We all rejoiced, but the Third Department ruined our joy when they decided <em>Sanchez v Jacobi Medical Center </em>on February 20, 2020 and stated that claimants could be Temporarily Totally Disabled, Permanently Partially Disabled, and possibly all matter of in-between.\r\n\r\nThe Board however limited this holding by consistently finding that <em>Matter of Jacobi,</em> only stands for the proposition that a claimant who has been classified as permanently partially disabled is entitled to benefits at a temporary total disability rate following causally-related surgery.”  (<em>NYS Dept of Motor Vehicles, </em>50101459 NYS Wrk Comp 2020).  The Board specifically noted that <em>Jacobi</em> does not apply where the change is not due to surgery.  (<em>Fahs Construction Corp, </em>2020 NY Wrk Comp G0055809).  For example, an exacerbation or a fall does not entitle a claimant to a period of temporary total disability.\r\n\r\nUsing that same logic, the Board reversed a finding of total disability in <em>Employer: CVS.</em>  (49903741 NY Wrk Comp 2020).  In that claim the claimant was classified with a permanent partial disability, and subsequently underwent a surgery.  The Board found that following the initial period from the surgery, “the record contained insufficient evidence to show that the claimant has low back disability greater than that which he had at the time of the . . . PPD finding.  Specifically, neither physician has explained a basis under the Board’s Guidelines for Determining Permanent Impairment, with consideration to the claimant’s permanent disability at the time of the prior PPD finding as compared to the claimant’s present physical condition and disability.”  The Board specifically noted that evidence of this change was the “claimant’s burden.”  The Board noted that the claimant must provider evidence of the change in condition.  (<em>Id.</em>).\r\n\r\nThe Board has also consistently found post-Jacobi that an opinion of total from a doctor’s office post-surgery is meaningless when the doctor continuously opined that the claimant was totally disabled from all employment despite Board decisions to the contrary in the files.  For example, in <em>Ellicott Development, </em>the treating doctor always opined throughout the file that the claimant was totally disabled from all employment.  The Board discussed that the Reserved Decision finding that the uncontroverted opinion of total from that treating was not sufficient to keep the claimant at a total disability for more than a post-surgical period because it was not credible evidence of post-surgery total disability.  (2020 NY Wrk Com G0365096).\r\n\r\nSimilarly, in <em>Buffalo Psychiatric Center, </em>the Board found that for a brief period following surgery the claimant was totally disabled per the medical opinion, but that upon her return to symptomatic treatment the claimant had a less than total disability despite Dr. Roger’s continued <em>and uncontroverted </em>opinion that the claimant has a total disability.  (2020 NY Wrk Comp G0363881]).\r\n\r\nHere, the treating doctors opined a total disability throughout the period the claimant was classified and paid with a permanent partial disability.  The treating doctor’s office opined a total disability in 2014 and the issue of whether the claimant should be reclassified to a permanent total disability was litigated and decided in a 2015 Reserved Decision.  The opinion of the treating doctor of a total disability is not sufficient to continue the awards at total, because the treating doctor’s opinion that the claimant is permanently totally disabled is well-known and unchanged from  before the prior litigation.\r\n\r\nAccording to the claimant’s providers, he is actually better <em>after</em> the surgery than he was prior to the surgery when the 2015 Reserved Decision found there was no change in condition.  The Board has noted that when making this determination the opinion of the doctor, even if uncontroverted must be supported by substantial evidence.  (<em>Bluepoint Concrete, </em>2020 NY Wrk Comp 40604317).  In <em>Bluepoint,</em> the Board found that the “sum of substance of the report [did] not demonstrate a TTD” despite the doctor’s uncontroverted opinion of TTD.','How Change in Conditions for Classified Claimants Changed Drastically','','publish','closed','closed','','how-change-in-conditions-for-classified-claimants-changed-drastically','','','2022-08-31 09:17:21','2022-08-31 13:17:21','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/how-change-in-conditions-for-classified-claimants-changed-drastically/',0,'post','',0),(46373,25,'2021-01-11 00:00:00','2021-01-11 05:00:00','Recently, we have been successful in getting claims dismissed for failing to comply with WCL Section 18.  As part and parcel of those determinations, the Board has to make a determination that the employer was prejudiced by the late notice.  It is the claimant’s burden to demonstrate that the employer was not prejudiced.\r\n\r\nHowever, in an effort to show prejudice, it is always helpful to be able to demonstrate that normally there is an investigation that would be undertaken after a reported accident.  By being able to demonstrate that a proper investigation was not able to have taken place because of the late notice, we are in a better position to show prejudice.\r\n\r\nBased upon same, we recommend that investigations be completed after reports of an accident and that said investigations be made part of the normal process after each and every report of an accident.','Success with WCL Section 18','','publish','closed','closed','','success-with-wcl-section-18','','','2022-08-31 09:17:21','2022-08-31 13:17:21','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/success-with-wcl-section-18/',0,'post','',0),(46374,25,'2021-01-04 00:00:00','2021-01-04 05:00:00','What do you do when a claimant makes a claim for both noise-induced hearing loss AND traumatic hearing loss, under the theory of, “well, it’s gotta be one of those two,” and your Independent Medical Examination on causal relationship’s been precluded under §137? The answer is to get the both disallowed. These were, of course medically driven claims, but thankfully the claimant’s doctor testified that they were causally relating the loss to an incident rather than over time, so the noise-induced claim falls away. Disallowed because no doctor was opining causally related noise-induced hearing loss.\r\n\r\nAs for the traumatic hearing loss, the doctor didn’t review any medical reports besides the audiogram, and noted the statements about the claimant having a concussion were “absolutely” based on the claimant’s representations to them. The doctor also testified that, as this type of hearing loss would have precipitated rather early on relative to this type of injury and there isn’t anything she’d expect to cause a delay in the onset, and in our case there was no indicating of hearing loss for well over a year post accident. However, the nail in the coffin was that, of age, genetics, noise, and concussion, claimant’s doctor couldn’t “tease out which one of those things would have caused or combination of those things have led to this audiogram.”\r\n\r\nThe 3rd Department in Johnson v. Borg Warner, Inc, 2020 NY Slip OP 04897 (2020) held that “even an opinion ‘that it was ‘highly possible’ that the injury was causally related to work, falls short of the reasonable probability that is required to establish a causal relationship between the claimant’s employment and his injury.’” Here, not only did the symptom presentation not conform with what the doctor would expect from a trauma, she couldn’t testify that the trauma was even a contributing factor, which led to the Workers’ Compensation Law Judge disallowing this claim as well.\r\n\r\nIt’s cases like these which highlight that an Independent Medical Examination on causal relationship isn’t the end-all and be all of claims defense, and how clever cross-examination can be the key to success.','Doubling Down – 2 Hearing Loss Claims for the Same Claimant Denied on the Same Day','','publish','closed','closed','','doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day','','','2022-08-31 09:17:21','2022-08-31 13:17:21','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/',0,'post','',0),(46375,25,'2020-07-26 00:00:00','2020-07-26 04:00:00','This was a controverted claim by an employee for an alleged injury to the left knee. The issue for litigation which ultimately led to a disallowance of the claim was causal relationship. The claimant claimed to have injured his knee while working. The claimant did not seek treatment until 2 years following the alleged accident, and indicated that he did not seek treatment earlier because he avoids doctors, which raised suspicion for the type of injury being claimed and the typical pain and issues that injury would likely cause an individual. As we reviewed the case further, the history of the accident which was being provided to different physicians, as well as the history provided in claimant’s own testimony, began to create even more inconsistencies, as none of the histories appeared to be the same. In one report the claimant alleged he tripped over an object, in another he alleged he twisted his body when his knee was injured, in another he alleged he was squatting down when he injured his knee, and the inconsistencies continued from there. The diagnoses which claimant had were all diagnoses that could have been caused from other preexisting conditions or by other means, such as running or playing basketball, which were also included in reports from various physicians. The treating physician conceded in cross examination that he was only assuming the claimant’s condition was casually related due to the history provided, and then further conceded that there are many other explanations for which claimant could have these knee conditions which would NOT be work related. The IME doctor was able to maintain their position that the claim is not causally related. We highlighted the inconsistencies in both a memo of law and summations. The Judge ended up finding that the claimant had failed to demonstrate his complaints were causally related to a work injury noting the multiple inconsistencies in the claim. The Judge noted that due to the multiple inconsistencies the claimant’s treating doctor’s opinion on causal relationship was not credible. Additionally, the Judge noted that the fact that the claimant waited two years to treat was not credible. As such the claim was disallowed.','Successful Disallowance!','','publish','closed','closed','','successful-disallowance','','','2022-08-31 09:17:21','2022-08-31 13:17:21','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2020/07/successful-disallowance/',0,'post','',0),(46376,25,'2020-07-22 00:00:00','2020-07-22 04:00:00','In a Reserved Decision, Judge Balogun ruled that a claimant was not entitled to multiple SLU awards or loss of wage earning capacity as there was no permanency or schedule assignable for the injuries sustained. The claimant suffered work injuries to the neck, back and bilateral shoulders when they were rear-ended. The claimant had minimal lost time, no surgeries, little to no conservative treatment and was managed on over-the-counter medications, and was released back to work three days after the injuries. The Judge reasoned that there was sparse evidence of treatment or lost time on the claim and found the carrier’s IME more credible than the treating physician. We took the deep dive into the file to explore the claimant’s treatment pattern and modalities as well as lost time from work. In doing so we were able to layout for the Judge that the claimant did not have any attributable permanency or schedule loss of uses based on the detailed history outlined in our memorandum of law.','Another Win for The Law Offices of Melissa A. Day!','','publish','closed','closed','','another-win-for-the-law-offices-of-melissa-a-day','','','2022-08-31 09:17:21','2022-08-31 13:17:21','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2020/07/another-win-for-the-law-offices-of-melissa-a-day/',0,'post','',0),(46377,25,'2020-07-21 00:00:00','2020-07-21 04:00:00','By Reserved Decision, the presiding Worker’s Compensation Law Judge in the Watertown, NY hearing location found that no employer-employee relationship existed between the claimant and our client, or another individual who owns the property where the alleged injury occurred and for whom our client performs work. In this matter, the claimant filed a Workers’ Compensation claim against our client after alleging multiple injuries after she reportedly fell backwards in May 2019 while performing landscaping services on a specific property where our client was responsible for property management services. Our client did not maintain any Workers’ Compensation insurance as she operated a LLC with no employees under which she maintained her property management services. Our office was retained to defend the matter and immediately pursued an aggressive defense that there was no employee-employer relationship  – i.e. claimant was an independent contractor and not an employee.\r\n\r\nSeveral hearings occurred where multiple parties appeared to properly posture the claim before litigation began, including the owner of the property (our client’s employer) and the Uninsured Employers’ Fund. The parties then engaged in trials where the claimant, our client, and the property owner all testified in length. We also demanded that the claimant produce her tax documents from 2018 and 2019 in order to confirm her income from our client and the property owner – but more importantly from other individuals during the same time period she claimed “employment” by our client. We note that the claimant received a 1099 from our client in 2018 for her services, which included landscaping, gardening, and docent services at a museum operated on one of the properties managed by our client. Throughout lengthy testimony, the record was developed to reflect that while our client told the claimant what services to provide on a certain day, the claimant-maintained control over the manner in which to perform the work. Furthermore, the claimant would set her own hours (with no attendance requirements), use her personal vehicle to get to a specific properly, use mostly her own tools to perform the work, and then would submit an invoice for her services after the work was performed. Significantly, the record was established on the fact that the claimant performed similar services for others in 2018 and 2019 without needing permission to do so from our client or the property owner. The claimant also maintained her own business on the side during the relevant time periods developed in the record. The claimant was paid biweekly and no taxes were withheld from her payments.\r\n\r\nUltimately, the Judge relied upon the above record to find that no employer-employee relationship between the claimant and our client, or the property owner. The claim was disallowed.','A Win for The Law Offices of Melissa A. Day','','publish','closed','closed','','a-win-for-the-law-offices-of-melissa-a-day','','','2022-08-31 09:17:21','2022-08-31 13:17:21','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2020/07/a-win-for-the-law-offices-of-melissa-a-day/',0,'post','',0),(46378,25,'2020-06-29 00:00:00','2020-06-29 04:00:00','<strong><u>NEW PROCEDURE FOR RECOUPING OVERPAYMENTS AND EDI</u></strong>\r\nOn 6/10/20, the board published proposed changes to 12 NYCRR 300.22 and 300.23, “to reflect updates to the eClaims process that incorporate EDI version 3.1.”\r\n\r\nThe proposed changes address the procedure following a disability event when compensation controverted and when no controversy (12 NYCRR 300.22) and the Requirements relative to suspension or reduction of compensation benefits (12 NYCRR 300.23).\r\n\r\nThe change to the language in 12 NYCRR 300.22(f) is a change to the Second Reports of Injury that carriers, TPAs and employers file and specific to a situation where there is a resumption of benefits.\r\n\r\nIn 12 NYCRR 300.22(f)(2), the significant change is that if a payor is not making payments in a situation where payments would otherwise be due but for a credit or an overpayment on the file, the payor must indicate on the SROI, “the amount of such total amount claimed and the amount credited by the carrier, special fund or third-party administrator from the payment due.” Hence, where an employer or carrier takes the position that it has an overpayment on the file the SROI which relieves it of an otherwise ongoing obligation to make payments, the SROI must now indicate the amount of the overpayment and how much is being credited against the payment that is otherwise due.\r\n\r\nThe second substantial change to §300.22 addresses summary reports of payments. As was the case before the changes, the reports must include compensation payments, payments for medical care and wages pain instead of compensation where the claim is not disputed.\r\n\r\nThe new language of 12 NYCRR 300.22(f)(3)(i) requires a payor to file an Initial Summary Report:\r\n<ul>\r\n 	<li>Within 180 days of the date of the disability event or, if there is no known date of disability event, the date of the initial first report of injury; or,</li>\r\n 	<li>If the board directed continuing payments prior to 180 days of (A) herein, then within 180 days of such award. If the case is closed with no continuing payments, a summary is due within 180 days of closure. The initial summary shall be due within 180 days of the initial direction to continue payments or the initial closure.</li>\r\n</ul>\r\nHence, the Initial Summary Report must be filed within 6 months of the “disability event” or FROI, or within 6 months of a CCP if the award is before expiration of 6 months after the disability event or FROI, or within 6 months of the closure.\r\n\r\nSubsequent Summary Reports, of 12 NYCRR 300.22(f)(3)(ii), must be electronically filed:\r\n<ul>\r\n 	<li>Every 180 days from the initial award directing payment while such benefits continue.</li>\r\n 	<li>Additionally, following a reopening of the case in accordance with section 300.14 of this Part when payment(s) have been directed pursuant to such reopening, a summary report shall be due within 180 days of the subsequent closing of the case following direction of the Board; or if awards are continuing, every 180 days from the initial award directing payment while such benefits continue.</li>\r\n</ul>\r\nSubsequent Summary Reports must be filed within 6 months of an initial payment and every 6 months thereafter, or within 6 months of the closing of a case that is reopened pursuant to §300.14, or within 6 months of an award after a reopening under §300.14.\r\n\r\nThe proposed change to the requirements relative to suspension or reduction of compensation benefits, (12 NYCRR 300.23), is the addition of a new subsection which creates a regulatory framework for recouping an overpayment.\r\n\r\nThe new 12 NYCRR 300.23(g) provides:\r\n\r\nIn the event that the carrier, self-insured employer or third-party-administrator seeks to recover for an alleged overpayment of benefits to the claimant, such carrier, self-insured employer or third-party administrator must file notice to the Board in the format prescribed by the Chair that identifies the amount of such overpayment. Such prescribed notice shall be due as follows:\r\n<ul>\r\n 	<li>When a request for further action is submitted to the Board by the carrier, self-insured employer or third-party administrator, such prescribed notice requesting recovery of an overpayment shall be submitted on the same day as the request for further action.</li>\r\n 	<li>When a hearing is scheduled and the carrier, self- insured employer or third-party administrator will request recovery of an overpayment at the scheduled hearing, the carrier, self- insured employer or third-party administrator must file the prescribed notice identifying the amount of the overpayment no less than ten days before the date of the hearing. The Workers’ Compensation Law Judge will not consider any requests to direct recovery of an overpayment that are not timely made.</li>\r\n 	<li>When the Board directs recovery of an overpayment, the carrier, self- insured employer or third-party administrator must file the prescribed notice identifying the amount of the overpayment within ten days of such decision.</li>\r\n</ul>\r\nHence, in a situation where there is an overpayment, a Board promulgated form will have to be filed.\r\n\r\nIf the payor is requesting a hearing on the overpayment by filing a Request for Further Action, RFA-2, the overpayment notice must be submitted on the same day as the RFA.\r\n\r\nIf a payor is going to be requesting a recovery at a hearing, the notice identifying the amount of the overpayment must be filed at least 10 days prior to the hearing. Judges are directed not to address overpayments if the requisite notice is not filed at least 10 days prior to the hearing.\r\n\r\nLastly, if the Board directs recovery of an overpayment, the payor must file the notice identifying the amount of the overpayment within 10 days of the decision establishing the overpayment.\r\n\r\nThe proposed changes to the regulations are subject to a public comment period for 60 days after publication.  To submit comments email <a href=\"mailto:regulations@wcb.ny.gov\" target=\"_blank\" rel=\"noopener\">regulations@wcb.ny.gov</a>. The 60 day comment period will end on August 7, 2020.','Proposed Changes to §§300.22 and 300.23 – Overpayments','','publish','closed','closed','','proposed-changes-to-%c2%a7%c2%a7300-22-and-300-23-overpayments','','','2022-08-31 09:17:21','2022-08-31 13:17:21','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2020/06/proposed-changes-to-%c2%a7%c2%a7300-22-and-300-23-overpayments/',0,'post','',0),(46380,25,'2019-07-30 00:00:00','2019-07-30 04:00:00','<em>Buffalo Business First Leadership Trust is an Invitation-Only Community for Top Business Decision Makers in the Buffalo Niagara area.</em>\r\n\r\nAmherst, New York, July 29, 2019 — Melissa A. Day, Owner and Managing Attorney of The Law Offices of Melissa A. Day, PLLC, has been invited to join Buffalo Business First Leadership Trust, an exclusive community for influential business leaders, executives and entrepreneurs in the Buffalo Niagara area.\r\n\r\nMelissa was chosen for membership by the Buffalo Business First Leadership Trust Selection Committee due to her experience, leadership and influence in the local business landscape and beyond. Melissa began her practice defending workers’ compensation <a href=\"/about/melissa-a-day/\">insurance carriers</a> and self-insured employers since shortly after she was admitted to the Bar in 1997. She has over 20 years of general workers’ compensation defense experience, and has extensive appellate experience at various appellate divisions, including successfully arguing <a href=\"https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/reporter/3dseries/2007/2007_07498.htm\" target=\"_blank\" rel=\"noopener\">Burns v. Varialle, 9 N.Y.3d 207, 879 N.E.2d 140, 849 N.Y.S.2d 1.</a> Melissa is extremely well versed in workers’ compensation subrogation issues and general liability defense and also frequently lectures on and blogs about recent developments in Workers’ Compensation Law. She is the Founder, Owner and Moderator of the Linkedin Group, New York Workers’ Compensation Forum which currently boasts nearly 1,600 members. She is a member of several legal professional memberships, including, New York Self Insured Association, Buffalo Clams Association, Self-Insured Association of the Niagara Frontier and Notre Dame Club of Buffalo/Western NY. Melissa’s degrees are from Canisius College where she received a B.A. in English and from Notre Dame Law School where she earned her J.D.\r\n\r\n“Buffalo’s thriving business community is powered by leaders like Melissa,” said John Tebeau, publisher of Buffalo Business First. “We’re honored to be creating a space where the region’s business influencers come together to increase their impact on the community, build their businesses and connect with and strengthen one another.”\r\n\r\nAs an invited member, Melissa will contribute articles to the Buffalo Business First website and participate alongside fellow members in Expert Panels. She will connect and collaborate with a vetted network of local leaders in a members-only directory and a private forum on the group’s mobile app. Melissa will also benefit from leadership and business coaching, an Executive Profile on the Buffalo Business First website, select partner discounts and services and ongoing support from the community’s concierge team.\r\n\r\n<strong>In response to being accepted for membership, Melissa said, “I am grateful to be a member of Buffalo Business First Leadership Trust because I am a firm believer in the power of collective experience and collaborative intelligence and talents.  How exciting to find a place to learn from other entrepreneurs and share my own success – right in our backyard!”</strong>\r\n\r\nThe Buffalo Business First Leadership Trust team is honored to welcome Melissa A. Day to the community and looks forward to helping her elevate her personal brand, strengthen her circle of trusted advisors and position her to further impact the Buffalo Niagara business community and beyond.\r\n\r\n<strong>About Business Journals Leadership Trust</strong>\r\n\r\nBuffalo Business First Leadership Trust is a part of Business Journals Leadership Trust — a collective of invitation-only networks of influential business leaders, executives and entrepreneurs in your community. Membership is based on an application and selection committee review. Benefits include private online forums, the ability to publish insights on bizjournals.com, business and executive coaching and a dedicated concierge team. To learn more and find out if you qualify, visit trust.bizjournals.com.\r\n\r\nMarketing Department\r\nThe Law Offices of Melissa A. Day, PLLC\r\n636 North French Road\r\nSuite 3\r\nAmherst, New York 14228-1900\r\n[nap_phone id=\"LOCAL-REGULAR-NUMBER-1\"]\r\nWebsite: getMAD.today','Melissa A. Day, Esq. invited to join Buffalo Business First Leadership Trust','','publish','closed','closed','','melissa-a-day-esq-invited-to-join-buffalo-business-first-leadership-trust','','','2022-08-31 09:17:21','2022-08-31 13:17:21','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2019/07/melissa-a-day-esq-invited-to-join-buffalo-business-first-leadership-trust/',0,'post','',0),(46381,25,'2019-05-31 00:00:00','2019-05-31 04:00:00','In <u>Stone v. Saulsbury/Federal Signal</u>, the carrier argued that upon the claimant’s release from prison following conviction of unlawful manufacture of methamphetamine that the claimant violated WCL §114 – a by failing to report his illegal work activities. The judge found insufficient evidence to establish that the claimant performed any work or made any false statements regarding his work and the Board affirmed that decision.\r\n\r\nThe Third Department affirmed the board’s decision finding that because the definition of unlawful manufacture of methamphetamine doesn’t require the actual manufacture but only the intent to manufacture, that substantial evidence supported the Board’s determination that the claimant was not involved in any work activity and did not receive any type of remuneration. So apparently crime can pay.\r\n\r\n<u>Stone v. Saulsbury/Federal Signal</u>, <a href=\"https://thelomad.com/getmad.today/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527345.pdf\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527345.pdf</a>','Claimant’s conviction of unlawful manufacture of methamphetamine does not amount to a violation under WCL 114-a.','','publish','closed','closed','','claimants-conviction-of-unlawful-manufacture-of-methamphetamine-does-not-amount-to-a-violation-under-wcl-114-a','','','2022-08-31 09:17:21','2022-08-31 13:17:21','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2019/05/claimants-conviction-of-unlawful-manufacture-of-methamphetamine-does-not-amount-to-a-violation-under-wcl-114-a/',0,'post','',0),(46383,25,'2019-05-31 00:00:00','2019-05-31 04:00:00','Amendments to law in 2017, which relieved a PPD claimant from demonstrating LMA  after classification are retroactive if the employee is found attached at the time permanency is established, applies retroactively to a claimant classified with a PPD prior to the amendment if the claimant involuntarily withdrew from the labor market (i.e. – retired due to disability), <em>See </em><u>O’Donnell v. Erie County</u>, 162 AD3d 1280 (3<sup>rd</sup> Dept. 2018), but does not apply retroactively to relieve a claimant who was found to be unattached to the labor market from having to demonstrate attachment to the labor market to be entitled to benefits.\r\n\r\n<u>Scott v. Visiting Nurses Home Care, </u><a href=\"https://thelomad.com/getmad.today/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527808.pdf\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527808.pdf</a>.','Amendments to 2017 not retroactive if PPD claimant was not attached to labor market','','publish','closed','closed','','amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market','','','2022-08-31 09:17:21','2022-08-31 13:17:21','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/',0,'post','',0),(46384,25,'2019-05-28 00:00:00','2019-05-28 04:00:00','It must have been 12<sup>th</sup> grade where I first became acquainted with incontinence. And no, it was through studying Dante’s Inferno and not some kind of bathroom emergency; back in the day, incontinence used to refer to the inability to control one’s self. A lack of self-restraint. The 2<sup>nd</sup> through 5<sup>th</sup> circles were thus populated: the panderers and seducers, the gluttons, the greedy and the spendthrifts, the angry and the sullen. It wasn’t until years later that I learned that polite euphemism had overtaken the original definition, such that many people only knew the term incontinence in the context of adult diapers.\r\n\r\nIn Workers’ Compensation, it’s a fact of life that some patients experience damage to the spinal cord, either as a result of their initial injury, an age-based progression thereof, or as a consequence of spinal surgery. As a result, some claimants end up with either diminished or outright loss of control of their bladder and/or bowel. While some claimant’s attorneys believe having such a consequential problem is a golden ticket to a total disability, and incontinence is clearly an aggravating factor, whether the claimant would have a total disability really depends on the other circumstances surrounding the claim.\r\n\r\nIn <u>Aspen Dental</u>, (WCB# G0484701, June 9, 2015), the Board didn’t do much beyond look at the claimant’s severity ranking (G) and the diagnosis of cauda equina syndrome with associated bladder and bowel incontinence before finding a permanent total disability. It probable helped that claimant’s doctor opined it would be reasonable for the claimant not to return to the workforce given her orthopedic, bladder, and bowel impairments, but the Board didn’t even look at the claimant’s age, let along any other mitigating factor despite containing them in the decision.\r\n\r\nOf the 9 Board Panel Decisions since then which provided an opinion on LWEC/TID, 6 cases found a partial disability, 2 found a total disability, and 1 found TID. Citing our sources, the cases indicating a less than 100% LWEC were: <u>Thomas J. Keohane, DDS</u>, (WCB# G0483822, February 26, 2016), <u>School Settlement</u>, (WCB# G0383561, June 2, 2016), <u>The Resource Center</u>, (WCB# 80803428, July 12, 2016), <u>NYC Housing Authority/NYCHA</u>, (WCB# G0305567, August 11, 2016), <u>Starwod Hotels &amp; Resorts</u>, (WCB# G0964480, February 14, 2017), and <u>Episcopal Health Services Inc</u>, (WCB# G0669626, May 24, 2017). In <u>School Settlement</u>, <em>supra</em>, the finding was in spite of the claimant having a bout of urinary incontinence while sitting on the examination table at the permanency exam.\r\n\r\nIn the first case the claimant was found to have a total disability, <u>Mabsota</u>, (WCB# G0304748, April 3, 2017), the claimant was previously classified with a 65% LWEC. A claim for consequential depression was thereafter made, and the carrier asked for an opinion on permanency in addition to causal relationship; their IME gave up a total disability, and neither the WCL or Board would let them wiggle out of it.\r\n\r\nThe second of the PTD cases is <u>Nova Development, Inc.</u>, (WCB# 40604815, November 4, 2016). The claim was established for the back, a right inguinal hernia, consequential neurogenic bladder, urinary incontinence, along with consequential bilateral wrist and hand injuries. What sunk the carrier here was taking the deposition of the claimant’s pain management doctor, who didn’t even file a C-4.3, and opined a total disability on deposition. The Board found that doctor to be most credible because he saw the claimant in the context of all of his injuries. Also, as there was credible medical of a total disability, the Board didn’t have to take vocational factors into consideration.\r\n\r\nIn <u>Collins Building Services Inc</u>, (WCB# G1025058, April 13, 2018), the Board reiterated its prior holdings that a finding of a permanent total disability must be made on the medical evidence alone, and while the claimant had significant problems, he is physically capable of sitting and standing, although for limited periods of time, and can drive for limited periods of time as part of work duties. Turning to the claimant’s LWEC, the 66 year old man was born in Ecuador, where he didn’t finish high school, had limited English proficiency, and didn’t know how to use a computer, all on top of his urinary incontinence. In light of such aggravating circumstances, it’s little wonder a TID finding was made.\r\n\r\nThe most surprising thing from my review of these cases, beyond the low percentage resulting in a PTD or TID finding, was that strategic mishaps resulted in twice the number of findings as otherwise. To me, this is a good thing. It means that if we’re smart about the way we handle our cases, our chances of a total finding at permanency drops from 1:3 to 1:9 even when faced with a claimant with bladder/bowel issues. So play smart and don’t get angry, get MAD.','LWEC & Incontinence','','publish','closed','closed','','lwec-incontinence','','','2022-08-31 09:17:21','2022-08-31 13:17:21','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2019/05/lwec-incontinence/',0,'post','',0),(46385,25,'2019-05-21 00:00:00','2019-05-21 04:00:00','I made the mistake of seeing Avengers Endgame twice in a week before doing a major memo involving an LWEC determination (spoiler alert) and had a crazy idea to first map and then analyze the decisional framework that is LWEC. The entire point of stare decisis is so that cases aren’t decided based on an arbitrary interpretation of the statute/regulation each time, but that prior decisions are used to guide future determinations. There are well over a thousand decisions out there within the past 5 years which make findings on LWEC and only a handful are ever used again.\r\n\r\nBut I’m going to see them all, record the relevant information the Board used to reach its conclusion on LWEC, and try to develop a useful tool to help navigate the chaos that is LWEC. There was also the hope of finding some helpful case law around the way, but as I’m starting in 2015 (so there will only be new cases on one side of the analysis) subsequent confirmation will be required.\r\n\r\nOne such tidbit is from the week of 05/25/2015, indicating that Severity E &amp; F for the neck and E for the lumbar spine are all considered in the moderate impairment range. <u>Staples Inc</u> (WCB# G0349242, 05/28/2015), <u>Mcquay</u> (WCB# G0063261, 05/28/2015) &amp; <u>NYCHA</u> (WCB# 00809250, 05/29/2015).\r\n\r\nBe sure to check back for further updates!','A New Quest Begins','','publish','closed','closed','','a-new-quest-begins','','','2022-08-31 09:17:21','2022-08-31 13:17:21','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2019/05/a-new-quest-begins/',0,'post','',0),(46386,25,'2018-12-17 00:00:00','2018-12-17 05:00:00','On November 23, 2018, Clarissa M. Rodriguez, Chair of the WCB issued Subject 046-1119, <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_1119.jsp\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_1119.jsp</a>, touting the Board’s dubious accomplishment in having reduced the appeals inventory to 3,297 applications awaiting a determination and brandishing a statistic that 92% were decided in less than 6 months.\r\n\r\nIn my opinion, and I believe many practitioners would agree with me, the Board primarily accomplished this feat by implementing drastic and Draconian rules providing it with the fodder to deny the parties’ rights to be heard. Over the past year the Board used this cudgel to deny an entire generation of appeals on the back of due process.  It is my understanding that challenges to some of these denials will be adjudicated at the Appellate Division and at least one Commissioner of the Board agrees that when the appeal involves a substantial property right and a minor technical problem, the Board should not elevate form over substance and deny the appeal. We applaud that Commissioner.\r\n\r\nAs the dust settles the Board has changed the RB-89 and RB-89.1 and instructions, AGAIN, to “aid parties” and “eliminate any possible confusion.” It also issued 15 pages of guidance to provide “additional support” to the all parties in complying with the procedures. Undoubtedly, failure to use the new forms will again lead to the denial of appeals filed by the unwary after 2/1/19 and potentially permit the Board to bully its way to its stated goal of deciding all appeals on average in less than 6 months, for the time being.\r\n\r\nHowever, as the parties adjust and bring their procedures into compliance with the Board’s highly technical and persnickety demands, my colleagues and I see no reason that the same number of appeals which the Board must address will increase again unless the Board made changes and improved its ability to decide appeals. If it has not, presumably another backlog will develop.\r\n\r\nAlternatively, the Board could keep changing the rules of the game <em>ad infinitum</em> to continue to avoid addressing the merits of many legitimate challenges and to keep its appeal inventory low. We sincerely hope that this is not the plan.\r\n\r\nMAD 12/17/18','Appeals Inventory and Forms','','publish','closed','closed','','appeals-inventory-and-forms','','','2022-08-31 09:17:36','2022-08-31 13:17:36','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/12/appeals-inventory-and-forms/',0,'post','',0),(46387,25,'2018-12-17 00:00:00','2018-12-17 05:00:00','The New York State Workers Compensation Board issued updated Workers Compensation Guidelines for Determining Impairment on November 22, 2017. The Board also issued Schedule Loss of Use Frequently Asked Questions on 10/04/18 which can be found on the NYS Workers Compensation Board Website.\r\n\r\nThe 2018 Impairment Guidelines are to be used regardless of the date of injury. If the schedule loss of use examination was done prior to 01/01/18 the 2012 Impairment Guidelines should be used. For Permanency evaluations done after 01/01/18 the 2018 Impairment Guidelines must be used. Even if the claimant was awarded a SLU for the same body part using the 2012 Impairment Guidelines, when a new SLU evaluation is done after 01/01/18 on that same site the doctor must use the2018 Guidelines. If the doctor uses the 2012 guidelines for a permanency exam after 01/01/18, if not challenged, they will be considered. However, the report may be afforded little or no evidentiary value.\r\n\r\nThe doctor is to provide the schedule loss of use opinion only for the work-related injury. If the claimant’s range of motion is limited by a nonoccupational condition such as obesity the doctor should offer an opinion as to the functional loss and resulting SLU that is causally related to the work injury and not other factors. Where a claimant has preexisting osteoarthritis, which is exacerbated by a work injury, the measurement of the contralateral extremity should be used as a baseline whenever possible. Reductions in range of motion for the non-injured contralateral extremity are deducted from the loss of range of motion for the injured extremity. The attending doctor should report the range of motion measurement findings on the contralateral side at the time of the first examination and report those measurements on the C-4 form.\r\n\r\nPer the 2018 Impairment Guidelines the doctor must list range of motion finding for the injured site and range of motion findings for the contralateral side.  The doctor is required to take three measurements for each range of motion and the doctor is to use the highest measurement when calculating the SLU. The three measurements are to include the injured site and the contralateral side. The WCB will not bar reports that do not contain the range of motion findings consistent with the guidelines. However, if the doctor does not provide the correct documentation per the Impairment Guidelines to support his opinion. They will be given little or no evidentiary value.\r\n\r\nThe doctor is required to document the range of motion findings on the contralateral side however if there was prior injury to the contralateral side which affects the range of motion the doctor should use the normal range of motion as indicated in the guidelines as a baseline. If the range of motion on the injured part is limited by other factors such as obesity the doctor should evaluate using his or her judgement and offer an opinion on functional loss and resulting SLU that are causally related to the work injury.\r\n\r\nThe doctors are required to use goniometers when taking range of motion measurements (2018 Impairment Guidelines Section 1.3, p.7). The active range of motion must be used not passive.\r\n\r\nUnder the 2018 Impairment Guidelines SLU’s are based on permanent impairments involving anatomical or function loss, not on the mechanism of injury, absent a Special Consideration in the guidelines.\r\n\r\nRegarding the shoulder if a deficit of both flexion (forward elevation) and abduction are documented, the greater of the two deficits must be utilized, not both. However, if both range of motions are moderate or higher, and the measures are within 10 degrees of each other up to10% may be added to the overall schedule loss of use not to exceed ankylosis. The guidelines allow for an added 10 to 15% for marked defects of rotation and muscle atrophy. In order to add the 10-15% there must be defects in both rotation and muscle atrophy. Internal and external rotation benefits are only considered when no other ROM exists.\r\n\r\nIf the claimant complains of severe pain on the first ROM measurement the examiner should use his or her medical judgement and if reasonable ask the claimant to repeat the maneuver that is acceptable and document the evaluation limitations in detail. The examiner should not push the patient beyond tolerable limits.\r\n\r\nIf the patient was previously awarded a SLU based on the earlier guidelines and subsequently sufferers a new injury, the examining physician should evaluate based on the 2018 guidelines to determine the SLU that resulted from the relevant work-related injury as opposed to other causes. To obtain an increase over the SLU previously awarded and based on the earlier guidelines there must be objective medical evidence that the claimant’s anatomical or functional loss (e.g. ROM) has increased since the prior SLU and the evaluation under the 2018 Guidelines results in a higher SLU than the one previously awarded. No increased SLU should be awarded if claimant’s anatomical or functional loss is substantially the same as it was at the time of the prior SLU, even if an assessment pursuant to the 2018 guidelines would result in a higher SLU percentage.\r\n\r\nIf the claimant has surgery and achieves full range of motion and strength and there is no SLU unless a specific special consideration applies. If the claimant has an injury for an extremity not covered by the guidelines which results in loss of range of motion to an adjacent joint the Guidelines for the affected joint should be consulted. Multiple range of motion deficits when added together should not exceed the total SLU for the affected body site and should be reduced to the total SLU of the body part.\r\n\r\nWith respect to apportionment the examining physician should offer an opinion of the SLU that resulted from the relevant work-related injury, as opposed to other causes. This can be done by using the contralateral side as a baseline and by reviewing reports concerning prior injuries to the same site.\r\n\r\nIf both schedule and non-schedule body parts are involved the IME doctor can give both a SLU opinion and a non-schedule opinion in the same report. The doctor should fill out both the IME-4 A and B forms. If the claimant is non-compliant with ROM testing the examiner should note this belief in there port and may decline to offer a SLU opinion if claimant’s failure to cooperate makes doing so impossible. The Board has previously found that when a claimant is uncooperative or clearly not giving a full effort during the IME evaluation that this is tantamount to refusing to appear for an IME and as a result no schedule loss of use could be made until the claimant fully cooperates with an IME, Montefiore Medical Center, G1027185 (September 19, 2016).\r\n\r\nIt is not acceptable for a nurse practitioner and presumably a physician’s assistant to file out the permanency form C4.3 even if countersigned by the doctor. The permanency evaluation must be conducted by the physician.\r\n\r\nThe claimant’s attending physician is required to use a form C4.3 for a SLU opinion. The provider who has treated the injury is expected to conduct the SLU exam. A treating physician can submit a narrative rather than a C4.3 as long as it contains all of the information requested in the form. If the claimant obtains an IME to comment on SLU, the doctor must use form IME-4 (the report is subject to the provisions of Section 137). For an IME the evaluator must fill out the IME-4 cover sheet along with the appropriate listed attachments for either schedule loss of use and/or non-schedule permanent partial disability. All three elements (form IME-4 with attachments and narrative) are required for a complete IME report.\r\n\r\nThe Workers Compensation Board has also promulgated new forms for permanency evaluations (See Subject No. 046-1067A 05/16/18). The form C4.3 has been revised to include attachments A and B. Attachment A requires the examiner to provide three range of motion measurement, contralateral range of motion, if the contralateral is applicable and if not, the examiner needs to explain why, special considerations and impairment percentages for all affected body sites.\r\n\r\nAttachment B of the new form C4.3 is used for all body parts for which a non-schedule award (classification) is appropriate. The examiner should use both attachment A and B when evaluating a patient with injuries that involve both schedule and non-schedule body parts and/or conditions.\r\n\r\nThe form IME-4 has been modified to capture information on the duration of the exam and medical documentation review. Per the SLU FAQS failure to note the start and end time at present will not result in the report being barred.\r\n\r\nThe IME-5 has been changed to capture the IME entity that is scheduling the exam.\r\n\r\nThe Board Issued an Announcement regarding implementation of the new forms on05/22/18\r\n\r\n<strong>Implementation of Forms Associated with SLU Evaluations</strong>\r\n\r\nDate: May 22, 2018\r\n\r\nThe Board has received a number of inquiries associated with <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_1067.jsp\" target=\"_blank\" rel=\"noopener\">Subject Number 046-1067</a>, specifically related to the timing of the implementation of forms associated with Schedule Loss of Use evaluations.\r\n\r\nWe understand that the new forms may take sometime to implement due to programming requirements. However, the guidelines are not new, and the associated requirements were released and effective 1/1/18. Until such time that users can get the new forms programmed into their systems, all required elements should be captured on the existing forms and/or included in the submitted narrative.\r\n\r\nAs you are aware, new paper forms are available for use now and have been posted on the Board’s website. The revised electronic C4.3 should be available by mid-July. We ask that all users totally transition to and utilize the new forms by mid-July. Until that time no forms will be precluded as long as all the required elements are either included on the forms and/or incorporated into the narrative.\r\n\r\nReview of the Boards announcement does not give a solid cutoff date but does indicate that all users transition to and utilize the new forms by mid-July. It has now been over six months since the new forms were issued by the WCB and at this point I think it is safe to say that you can make the argument that a permanency evaluation may be precluded if the provider (IME or attending physician) used the old permanency forms.\r\n\r\nThe carrier should carefully evaluate the ROM findings and determine whether the provider has included all measurement as required under the 2018 Impairment Guidelines and whether the provider properly calculated the SLU opinion based on the 2018 Impairment Guidelines. If the Board issues an EC-81.7 or you receive a doctor’s report which does not properly use the 2018 guidelines you can object to the need to obtain an IME or schedule depositions.\r\n\r\nThe carrier should investigate whether the claimant had prior injuries or conditions that may affect in range of motion. Review the post-employment physical or records from the primary care physician.  The carrier should investigate whether the claimant had any prior work-related or non-work-related injuries/conditions and or SLU’s to the injured extremity. This information should be provided to your IME.\r\n\r\nThere is more information in the Workers Compensation Boards Frequently Asked Questions and you should review those as the FAQS as they are quite helpful. This is only a brief outline of the information contained therein.','Review of Workers Compensation Board Schedule Loss of Use Frequently Asked Questions and New Permanency Forms','','publish','closed','closed','','review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms','','','2022-08-31 09:17:21','2022-08-31 13:17:21','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/',0,'post','',0),(46388,25,'2018-05-25 00:00:00','2018-05-25 04:00:00','Justice delayed is not always justice denied; and waiting can make it more satisfying than you might imagine.  The Law Offices of Melissa Day won a reversal of the Board before the Appellate Division, Third Department on March 28, 2018 in Matter of Yonkosky v. Town of Hamburg, 2018 NY Slip Op 00586, 158 AD3d 860 (3d Dept. 2018) which may be viewed in its entirety here:  <a href=\"https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/reporter/3dseries/2018/2018_00586.htm\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/reporter/3dseries/2018/2018_00586.htm</a>.\r\n\r\nClaimant, a seasonal summer worker with the Town’s Highway Department was, apparently, injured while lifting wheelbarrow loads of asphalt and suffered a “rare” rotator cuff tear – rare because the claimant is a young, healthy male.  The claimant treated for this condition, but never reported it to the employer, and even lost time from his employment; and when presenting his doctor’s excuse, did not inform the Town his lost time was related to a work-injury.  Whether the lost time and treatment were, in fact, related to the claimant’s employment could be debated, but the claimant took the position at trial that it was related.  The claimant also sought to prove that, although the condition had allegedly resolved, and then resurfaced months later during a game of basketball with friends, his injury was in the nature of an occupational disease, thus smoothing over the various breaks in temporal causation, and curing a potentially fatal notice defect as the claimant did not notify the Town of his work related injury until at least seven months after the accident occurred, when he filed his C-3 with the Workers’ Compensation Board.  This litigation strategy was certainly thoughtful, but it was equally transparent where the claimant’s own physician could not clearly ascribe causation to a disease process, or even repetitive stress when under intense cross-examination.\r\n\r\nThe WCLJ, and Board, bit at this quite obvious charade, and in both decisions rendered by the Board demonstrated that they didn’t even bother to consider the Town’s argument that the claimant, having reported the case as an accident on his C-3, described an accident to his physician, and testified under oath to a specific happening – and accident.\r\n\r\nThe Third Department, the first Court to actually articulate any analysis on the question of “accident versus OD” agreed with the Town that the claimant’s effort to characterize the claim as an OD was not supported by the record, and that the injuries sustained by the claimant, even assuming they were the result of work activity, supported the conclusion that they were not the result of a disease process, or even repetitive stress, and could not be characterized as an occupational disease, but rather the result of an obvious accident.\r\n\r\nIt was a long haul, but dogged determination and confidence between client and counsel can win the day.  It  is worth noting as a practice point that under the WCL, the Board is obligated to reimburse employers/carriers/SIEs for claims that are, like this one,  established by the Board, but later quashed by higher judicial review since WCL Sec. 23 does not permit a stay on benefits during the pendency of an appeal to the Third Department.   Closing this post, we wonder how many poor decisions rendered by the WCB, decisions begging for higher appellate review, go un-appealed to the Third Department, owing to the time and cost involved.  How many of these poor decisions, by virtue of remaining unchallenged, and thus wrongly reinforced as “settled precedent.”','You’re claiming what?!?','','publish','closed','closed','','youre-claiming-what','','','2022-08-31 09:17:36','2022-08-31 13:17:36','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/05/youre-claiming-what/',0,'post','',0),(46413,25,'2018-05-23 00:00:00','2018-05-23 04:00:00','Here are some questions that were answered, and some that were not, during the Board’s presentation on the new SLU Guidelines.\r\n\r\n<strong><u>Question:</u></strong>\r\n\r\nPlease clarify – should claimant’s attorneys and carriers provide both of the new C-4.3 forms to doctors to avoid an appearance that they are suggesting a permanency outcome to the medical provider?\r\n\r\n<strong><u>Answer:</u></strong>\r\n\r\nDr. Sobol-Berger suggested that this was not necessary.  However, this would make me nervous.  I think all forms should be provided to avoid the appearance that we are suggesting an outcome.\r\n\r\n<strong><u>Question:</u></strong>\r\n\r\nIf a claim includes injuries for both schedulable and non-schedulable injuries, which forms should the doctor use?\r\n\r\n<strong><u>Answer:</u></strong>\r\n\r\nDr. Sobol-Berger said that both forms should be used.  It is up to the judge to take information regarding the SLU injury and the classifiiable injury and make rulings on that information (presumable about LWEC).\r\n\r\n<strong><u>Question:</u></strong>\r\n\r\nIf a medical record provides the ROM of a contralateral side which is not “available” at the time of the permanency evaluation, i.e., because of recent non-causally related injury or surgery, can a previous measurement of the ROM of the contralateral side, or the injured side, be used as a baseline?\r\n\r\n<strong><u>Answer:</u></strong>\r\n\r\nThis question was not answered.\r\n\r\n<strong><u>Question:</u></strong>\r\n\r\nThe Board has held in Board Panel decisions that suggesting to an IME doctor in a cover letter that permanency should result in a SLU is an improper attempt to influence the doctor’s opinion on permanency.  Hence wouldn’t providing a doctor with only the SLU forms be an improper attempt to influence the doctor’s opinion?  The doctor could conclude that an extremity condition should be classified?\r\n\r\n<strong><u>Answer:</u></strong>\r\n\r\nThis question was not answered.\r\n\r\n<strong><u>Question:</u></strong>\r\n\r\nIf a claimant has multiple injuries to extremities from one claim should the doctors use a SLU form for each schedulable body part?\r\n\r\n<strong><u>Answer:</u></strong>\r\n\r\nDr. Sobol-Berger noted that Part B to the C-4.3 has room for multiple extremities and SLU values.\r\n\r\n<strong><u>Question:</u></strong>\r\n\r\nIf a doctor reviews the permanent impairment guidelines and decides that the decision should be classifiable instead of scheduled should he or she change forms?\r\n\r\n<strong><u>Answer:</u></strong>\r\n\r\nThis question was not answered.\r\n\r\n<strong><u>Question:</u></strong>\r\n\r\nHow are doctors supposed to assess the severity of an impairment to an extremity which he or she decides should be classifiable instead of scheduable?\r\n\r\n<strong><u>Answer:</u></strong>\r\n\r\nThis question was not answered.','New SLU Guidelines Presentation by the Board','','publish','closed','closed','','new-slu-guidelines-presentation-by-the-board','','','2022-08-31 09:17:36','2022-08-31 13:17:36','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/05/new-slu-guidelines-presentation-by-the-board/',0,'post','',0),(46414,25,'2018-05-23 00:00:00','2018-05-23 04:00:00','Plaintiffs in the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.supremecourt.gov/DocketPDF/17/17-1179/25081/20171226172748924_Liberty%20Mutual%20-%20APPENDIX%20-%20cert.%20extension%20application.pdf\" target=\"_blank\" rel=\"noopener\"><em>American Economy Insurance Company</em></a> case have filed a <a href=\"https://thelomad.com/getmad.today/wp-contentwww.supremecourt.gov/DocketPDF/17/17-1179/36170/20180221174511203_17-____%20--%20AEIC%20v.%20NY%20--%20cert.%20petition.pdf\" target=\"_blank\" rel=\"noopener\">Petition for a Writ of Certiorari in the United States Supreme Court</a>.  The petition is the mechanism by which plaintiffs request Supreme Court review of the Court of Appeals’ decision finding that the amendment to the statute in 2013 which closed the fund for reopened cases to any claim after 1/1/14 was constitutional.\r\n\r\nPlaintiffs seek to present their arguments to the Supreme Court that the 2013 amendment violates the U.S. Constitution in the following ways:\r\n<ul>\r\n 	<li>The amendment violates the contracts clause by impairing pre-existing contractual relationships between carriers and employers;</li>\r\n 	<li>The amendment violates due process as it bears no rational relationship to a legitimate government purpose and amounts to a simple transfer of wealth; and,</li>\r\n 	<li>The amendment amounts to an unconstitutional taking as carriers face liabilities for which they were unable to charge premiums.</li>\r\n</ul>\r\nIn addition to providing the court with a synopsis of the arguments that plaintiffs intend upon presenting to the Supreme Court, plaintiffs are required to provide a rationale for why the court should accept the case for review. Plaintiffs note the following with respect to why the court should grant certiorari:\r\n<ul>\r\n 	<li>There is a dispute among the lower circuits regarding laws which expand liability under pre-existing insurance policies; and,</li>\r\n 	<li>The issues are important to the insurance industry and other highly regulated industries as a result of the “massive and disruptive economic consequences threatened by the amendment”.</li>\r\n</ul>\r\nAccording to information on the Supreme Court’s website, <a href=\"https://thelomad.com/getmad.today/wp-contentwww.supremecourt.gov/search.aspx?filename=/docket/docketfiles/html/public/17-1179.html\" target=\"_blank\" rel=\"noopener\">the case has been distributed for Conference on 5/31/18</a>.\r\n\r\n<a href=\"https://thelomad.com/getmad.today/wp-contentwww.supremecourt.gov/about/images/CourtBuilding.jpg\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2018/05/CourtBuilding-300x167-1.jpg\" /></a>','United States Supreme Court is Considering a Petition for a Writ of Certiorari Of the American Economy Decision','','publish','closed','closed','','united-states-supreme-court-is-considering-a-petition-for-a-writ-of-certiorari-of-the-american-economy-decision','','','2022-08-31 09:17:36','2022-08-31 13:17:36','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/05/united-states-supreme-court-is-considering-a-petition-for-a-writ-of-certiorari-of-the-american-economy-decision/',0,'post','',0),(46415,25,'2018-03-31 00:00:00','2018-03-31 04:00:00','I am so tired of seeing claimants get schedule loss of use awards. They do not represent lost time. They are windfalls. I am in the process of drafting a stipulation for a woman who is going to get $15,000 when she had no lost time from work. It’s a gift to her.\r\n\r\nI will be having left CTS release in a couple of weeks. I also had the right done 3 years ago. I didn’t miss any time from work. The surgery made me better. I proably won’t miss any time from work this time either. I did not file a claim – I have the risk factors for CTS – I am a 51 year old overweight woman. If I put this through workers’ compensation, and I believe I could have established a compensable claim if I sought to, I would receive awards for approximately $53,000. (Two 15% SLU awards at $850.00) Why? I am not going to ever lose time from work for this condition. I am typing now and I will continue to type. It will not affect my ability to earn a living.\r\n\r\nAnd then there are some people with conditions that are schedulable who end up worse off because of this crazy system. I believe that those people should be able to continue to get payment if their condition keeps them from being able to work. Disability exceeds the schedule? How is that possible? It is possible because the SLU process is completely divorced from realty. It is a fiction that really needs to be changed.','Schedule Loss of Use Awards – Grrrrrrrrr','','publish','closed','closed','','schedule-loss-of-use-awards-grrrrrrrrr','','','2022-08-31 09:17:36','2022-08-31 13:17:36','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/',0,'post','',0),(46416,2461,'2021-08-18 01:03:07','2021-08-18 05:03:07','','CourtBuilding-300x167-1','','inherit','closed','closed','','courtbuilding-300x167-1','','','2021-08-18 01:03:07','2021-08-18 05:03:07','',46414,'/wp-content/uploads/sites/1503150/2018/05/CourtBuilding-300x167-1.jpg',0,'attachment','image/jpeg',0),(46418,25,'2018-03-31 00:00:00','2018-03-31 04:00:00','Rick Costner, Sr. honors the life of his 18 year old son and co-worker, Ricky Costner Jr., after he was murdered in front of him at work by creating and raising funds for the Ricky Costner Jr. College Scholarship Fund\r\n\r\nI have had the pleasure of attending a benefit at the Buffalo, NY home of Rick Costner, Sr., to raise money for the Ricky Costner Jr. College Scholarship Fund for a number of years now.\r\n\r\nI met Rick Costner, Sr., sometime near the end of January, 2010. I never had the pleasure of meeting Ricky Costner, Jr. because he was murdered at work on January 16, 2010 by a deranged coworker in front of his father who was also shot twice.\r\n\r\nRick Costner, Sr. was the manager of Merge Restaurant in Buffalo, NY, and his only son, Ricky, Jr., had recently started working with him as a sous chef. Ricky, Jr., just 18 years old at the time and full of life, was an aspiring chef planning on attending Erie Community College’s Culinary Arts Program. He liked to flirt and play video games and had dreams of opening his own restaurant one day. See “Teen’s tragic death leads to triumph for other students: Teen’s slaying is impetus for scholarship program”, Buffalo News, By Jay Rey, News Staff Reporter on March 10, 2013, https://thelomad.com/getmad.today/wp-contentwww.buffalonews.com/apps/pbcs.dll/article?AID=/20130310/CITYANDREGION/130319954/1010.\r\n\r\nJanuary 16, 2010 started like many others, until Ernesto Arechavaleta-Taureaux, at the time a 51 year old dishwasher at the restaurant, arrived at work. Shortly after getting to the restaurant Arechavaleta-Taureaux opened fire with a 9 mm hand gun, shot Ricky, Jr. once, and Rick, Sr. twice. Ricky, Jr. collapsed. While wounded and bleeding from two gunshot wounds to the chest, Rick, Sr. watched his only son as he lay dying right before his eyes.\r\n\r\nTwo NY compensation claims arose out of this tragedy for the Costner family: Rick Costner, Sr.’s claim and the claim for the estate of Ricky, Jr. If the purpose of workers’ compensation is to award, “that sum of money which will put the party who has been injured in the same position as he would have been if he had not sustained the wrong for which he is now getting his compensation…” that obviously was not possible in this case. See Livingstone v. Rawyards Coal Co., (1880), 5 App.Cas. 25, 39.\r\n\r\nThe criminal justice system has proven equally ineffectual as Ernesto Arechavaleta-Taureaux was found mentally ill and not responsible for these heinous acts.\r\n\r\nInstead of wallowing in their grief and railing at the systems’ impotency to redress these wrongs, Rick, Sr. and his wife Catalina, their children, grandson Ricky Costner, III, family, friends and neighbors, transcend their sorrow and celebrate and honor Ricky, Jr.’s life by raising money for students to pursue the dream that Ricky, Jr. was denied: pursuit of a degree at Erie Community College’s Culinary Art’s Program. I have had the privilege of attending the yearly benefit for this scholarship at the Costner’s home and am always filled with gratitude as I contemplate the event.\r\n\r\nI am grateful for the obvious. My 21 year old son has worked with me in my office. He may want to finish his college career someday. He likes to flirt with girls and play video games. He has dreams about becoming an electronic music producer. I am grateful that no psychotic mad man has forcibly dispossessed my son of his dreams and taken part of my heart with him.\r\n\r\nI am also grateful in a less selfish way. I am humbled by the Costners’ response to their loss in choosing to help other students achieve what their son was denied. I am filled with gratitude at having a peripheral vantage point to observe the love and perseverance of a remarkable family. The scholarships are a testament to a young man who inspires not only those who knew him before January 16, 2010, but also many who have seen what a remarkable young man he was through the selfless efforts of his family and friends.\r\n\r\nIf you too feel some gratitude about the blessings in your life, and would like to express it through a donation to the Ricky Costner Jr. College Scholarship Fund, please click on the link below:\r\n\r\n<a href=\"https://thelomad.com/getmad.today/wp-contentwww.crowdrise.com/rickycostnerjrculina/fundraiser/melissaday1/setup_success/member\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.crowdrise.com/rickycostnerjrculina/fundraiser/melissaday1/setup_success/member</a>.','Ricky Costner Jr., 18 Year Old Slain by a Deranged Co-Worker, Honored by Family and Friends','','publish','closed','closed','','ricky-costner-jr-18-year-old-slain-by-a-deranged-co-worker-honored-by-family-and-friends','','','2022-08-31 09:17:36','2022-08-31 13:17:36','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2018/03/ricky-costner-jr-18-year-old-slain-by-a-deranged-co-worker-honored-by-family-and-friends/',0,'post','',0),(46419,25,'2018-05-25 01:03:24','2018-05-25 05:03:24','On May 23, 2018 in the published New York State Register, the Workers’ Compensation Board submitted proposed changes to Section 302-1.6 of 12 NYCRR in an effort to try and expand its legal internship program. The purpose of these changes is to allow for a more expansive group of law students and legal interns to represent parties in Board proceedings. The Board’s rationale behind these amendments, as provided with the proposed changes, is to decrease the total number of unrepresented claimants, especially in cases where only medical benefits are being sought as opposed to indemnity benefits.\r\n\r\nThe commentary provided by the Board with the proposed amendments state: “The proposed regulation will permit the Board to directly hire and supervise law school and legal interns, who will represent parties of interest in Board proceedings.” The Board goes on to state it intends to hire these interns through work-for-credit programs working with law schools, and there would not be monetary compensation.\r\n\r\nCurrently, the regulations allow for legal or law school interns associated with a legal aid organization to represent a party in Board proceedings. However, currently the definition of “legal or law interns” is subject to the Third Department Appellate Division’s rules. Part of the proposed amendment would allow for the Appellate Department where the intern’s activities are taking place to make the determination about whether or not to permit the intern to practice.  However, this raises an interesting question for this author – how does this proposed amendment account for the growing accessibility to a statewide Workers’ Compensation practice due to introduction of virtual hearings? Theoretically, a legal intern’s practice activities could encompass appearances in each Appellate Division. Neither the proposed amendments nor the commentary provided by the Board seems to address this jurisdictional question.\r\n\r\nAdditionally, the proposed amendments would now provide a definition for “legal aid organization”, which is not currently defined under the existing regulation. The specific language of the proposed amendment defining this term is as follows: <em>“including programs that provide assistance to persons who are financially unable to pay for legal services and are eligible to qualify for free legal services in accordance with the standards and guidelines of the organization or program in which they are engaged.”</em>\r\n\r\nLastly, the proposed amendments explicitly expand the range of services these interns can provide. Specifically, the amendments would allow the interns – under general supervision of an attorney – to fully participate in informal proceedings, prepare and enter into stipulations other than waiver agreements, and prepare and file applications for review/full board review or rebuttals. The regulations would allow these interns to enter into waiver agreements under immediate supervision of an attorney – which is already defined by the regulation to mean that the attorney be personally present with the intern throughout the hearing. The regulations already allow these interns to perform numerous activities in front of the Board under both general and immediate supervision of an attorney.\r\n\r\nThere is a 60-day public comment period from the day of the publication of this notice.','Proposed Changes Submitted Seeking to Expand the Board’s Legal Internship Program','','publish','closed','closed','','proposed-changes-submitted-seeking-to-expand-the-boards-legal-internship-program','','','2022-08-31 09:17:36','2022-08-31 13:17:36','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=46419',0,'post','',0),(46420,25,'2017-10-26 00:00:00','2017-10-26 04:00:00','On October 24, 2017, the Court of Appeals in <u>American Economy Insurance Co. v. State of New York</u>, — N.E.3d —-, 2017 WL 4779421 (N.Y. Ct. of App., Oct. 24, 2017), effectively marked the end of The Fund for Reopened Cases by holding the 2013 amendment to WCL § 25-a is constitutional in light of any retroactive effect the amendment could have on prior cases or issued Workers’ Compensation policies.\r\n\r\nThis case initially arose as a result of the New York Legislature’s enactment of an amendment to WCL § 25-a in 2013, which mandated The Fund for Reopened Cases would be closed to new applications after January 1, 2014. Shortly thereafter, approximately twenty insurance companies who issued Workers’ Compensation policies in New York (hereinafter “Plaintiffs”) banded together to challenge the constitutionality of the 2013 amendment. Specifically, the Plaintiffs argued that the amendment retroactively imposed unfunded liability upon them in connection with future reopened cases in violation of the Contract Clause of the Federal Constitution and the Takings Clause and Due Process Clause of the Federal and State Constitutions. At the Supreme Court level, the State of New York as defendant motioned to dismiss the complaint. The Supreme Court granted the State’s motion, concluding that the amendment to § 25-a operated prospectively as it closed the Fund only to new applications, and rejected Plaintiffs’ constitutional arguments. On appeal, the Appellate Division, First Department reversed, and held that the 2013 amendment to § 25-a was unconstitutional “as retroactively applied to policies issued before October 1, 2013.” Additionally, the First Department held that the amendment, applied retroactively, violates the Contracts Clause and the Takings Clause, but did not address the Due Process arguments.\r\n\r\nSubsequently, the State appealed as of right (pursuant to CPLR § 5601(b)(1)) to the Court of Appeals. The issue on appeal was whether the 2013 amendment to WCL § 25-a created a retroactive effect which is unconstitutional in light of the Contracts Clause, Takings Clause, and the Due Process Clause. Justice Fahey, writing for a unanimous Court, reversed the First Department and held that the amendment is constitutional in light of any retroactive effect.\r\n\r\nThe Court initially examined whether or not the amendment had a retroactive effect. Without affirmatively holding either way, the Court proceeded with their analysis assuming Plaintiffs’ argument was accurate insofar as there was a retroactive effect which would impose additional liability on the Plaintiffs.\r\n\r\nMoving to the constitutional arguments, the Court first addressed the Contracts Clause. The Court acknowledged that there is a three-part initial inquiry when analyzing a Contracts Clause constitutionality issue: “whether there is a contractual relationship, whether a change in law impairs that contractual relationship, and whether the impairment is substantial.” The Court found that the amendment does not impair the contractual relationship between the Plaintiffs and their insured, and therefore the amendment does not violate the Contracts Clause. Specifically, the court noted that the amendment did not change the legal enforceability of the insurance contracts and the parties still have the same ability to enforce the bargained-for terms of the contracts that they did prior to the amendment. Additionally, the insurance policies at issue expressly assumed the risk of legislative change.\r\n\r\nNext, in analyzing Plaintiffs’ Takings Clause argument, the Court identified that the threshold analysis is to determine whether a vested property interest has been identified. Plaintiffs asserted that they have a protected interest in the value of their contracts with their insured, and the alleged diminution in the value of those contracts would be a taking. However, the Court found that “as a general matter, the government does not ‘take’ contract rights pertaining to a contract between two private parties simply by engaging in lawful action that affects the value of one of the parties’ contract rights.” Accordingly, since the Plaintiffs could not identify any vested property interest impaired by the amendment, the Court held that their argument fails.\r\n\r\nFinally, the Court addressed the Plaintiffs’ Due Process argument. In the context of a substantive due process challenge to retroactive legislation, the Court applies a rational basis scrutiny test. This test requires a “legitimate legislative purpose furthered by rational means.” For retroactive legislation, this test “is met simply by showing that the retroactive application of the legislation is itself justified by a rational legislative purpose.” Accordingly, the Court held that the State’s contention that the amendment’s retroactive effect was to prevent substantial liabilities for many years after the effective date of the amendment constituted a sufficient showing that the retroactive effect was justified by a rational legislative purpose. Therefore, the Court rejected this argument.\r\n\r\n—\r\n\r\nThe entire <u>American Economy</u> decision can be found here:   <a href=\"https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/ctapps/Decisions/2017/Oct17/96opn17-Decision.pdf\">https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/ctapps/Decisions/2017/Oct17/96opn17-Decision.pdf</a>','Court of Appeals Upholds 2013 Amendment to Section 25-a – Marking the End for The Fund for Reopened Cases','','publish','closed','closed','','court-of-appeals-upholds-2013-amendment-to-section-25-a-marking-the-end-for-the-fund-for-reopened-cases','','','2022-08-31 09:17:36','2022-08-31 13:17:36','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/10/court-of-appeals-upholds-2013-amendment-to-section-25-a-marking-the-end-for-the-fund-for-reopened-cases/',0,'post','',0),(46421,25,'2017-10-12 00:00:00','2017-10-12 04:00:00','Happy Friday the 13<sup>th</sup> to all! First off, I would like to introduce myself, as this is my first contribution for this blog. My name is Rob Caggiano, and I was recently brought into the LOMAD family as a Law Clerk as I await my bar results and (hopefully) my pending admission to the New York State Bar. Now that we have introductions out of the way, my goal today is to provide some insight into many of those pesky time constraints which both sides of the aisle should be mindful of while handling a New York State Workers’ Compensation claim. If I do my job right, all of my readers will walk away being able to avoid stepping on any “cracks” in the system which will undoubtedly break their client’s back.\r\n\r\n<u>WCL § 18 – Employee’s Obligation to Report an Injury </u>\r\n\r\nOh no, an employee just walked under a ladder at work – and well, it fell on him. Looks like his bad luck did not waste any time coming. This employee will now have an impending Workers’ Compensation claim, however, he must comply with WCL § 18. This section of the WCL statute places a burden on an employee who sustains an injury at work to report said injury to his employer <strong><u>within 30 days of its occurrence</u></strong>. Now technically, § 18 requires that this notice be in writing, with certain enumerated requirements. However, the Board will often find no harm, no foul, if the employer was found to be put on sufficient notice of the accident via oral notice from the injured employee, notice from another employee, or witnessed the accident themselves. Hey claimant’s attorney, your client’s luck is already turning around!\r\n\r\n<u>WCL § 28 – Employee’s Requirement for Reporting to the Board</u>\r\n\r\nBack to that injured employee with a ladder bruise. Having already given notice to his employer within 30 days, he must also inform someone else – the Board. WCL § 28 requires that all claims for Workers’ Compensation be filed with the Chair of the Board <strong><u>within two years after the date of the accident</u></strong>.  This injured employee may have dodged his back luck from the ladder if he did not strictly comply with § 18 notice, but he may want to clean up his act dealing with § 28. A failure to comply with this two-year requirement will bar an injured worker from claiming any benefits.\r\n\r\n<u>WCL §§ 18 and 28 for Occupational Diseases – WCL § 45</u>\r\n\r\nNext, we have a pretty superstitious employee. She is so superstitious in fact, for years she chucks bags of salt over her shoulder at work in order avoid some bad mojo. Well, unsurprisingly, her back seems to hurt a lot, so she wants to claim an occupational disease. You may be thinking about that 30 day notice requirement, but the WCL handles § 18 notice in a more lax way for occupational diseases. WCL § 45 states that the § 18 notice period is extended to <strong><u>two years after the claimant becomes disable, or after the claimant knew or should have known the disease was due to the nature of the employment, whichever is later</u></strong>. Please note, this time constraint <strong>is the same to comply with § 28</strong> in the context of making a claim to the Board for occupational diseases. All of that salt swingin’ protected this employee for an additional 23 months, not bad.\r\n\r\n<u>FROI-04/SROI-04 Notice of Controversy – WCL § 25(2)(b)</u>\r\n\r\nSo my carrier readers out there, you happened to get a Notice of Indexing for a claim, let’s say 26 calendar days ago. Well, I am willing to bet you also crossed paths with an ominous-looking black cat on your way to work that morning, because you just missed your WCL § 25(2)(b) window. Pursuant to §25(2)(b), a carrier is required to file a response (aka SROI-04 Notice of Controversy) to a Notice of Indexing with the Board <strong><u>within 25 days of receipt of a Notice of Indexing</u></strong>. Unfortunately, that black cat gets the last laugh, because on Day 26 the carrier just lost the ability to raise the defenses that no employee-employer relationship existed, no accident occurred, and the injury did not arise out of and in the course of employment.\r\n\r\n<u>Sub-Annual Report Filing – SROI-SA</u>\r\n\r\nHey defense attorneys and carriers; let’s put our heads together to figure out who broke a mirror. Someone must of, because the Board has rolled out a brand new filing requirement as part of its eClaims system – SROI-SA. This filing is a new sub-annual report, pursuant to 12 NYCRR §300.22(f)(3), which is due on all open cases, or closed cases with continuing indemnity payments. These reports are <strong><u>due 180 days from the date of accident </u></strong>(or date of FROI filing where date of accident is partial or unknown); and <strong><u>then every 180 thereafter</u></strong>. The SROI-SA must include summary of all payments made to a claimant during the preceding 180 days. I’m thinking the broken mirror belonged to the Chair of the Board . . . .\r\n\r\n<u>Board Directed and WCL § 25(1) Payments</u>\r\n\r\n. . . Yeah . . . the mirror definitely belonged to the Chair of the Board. How do I know you ask? Elementary, my dear Watson – let’s look at another addition of the eClaims system. When directed by the Board or payments are made pursuant to § 25(1), a carrier must submit a SROI filing following certain events: a modification to a claimant’s indemnity payments or wages paid by the employer, a suspension of payments or wages, or payments following acquisition of the claim from another carrier. This requirement, codified as 12 NYCRR § 300.22(f)(1), states these filing be done <strong><u>within 16 days following the aforementioned events</u></strong>. It must have been an expensive mirror.\r\n\r\n<u>FROI-00 and SROI-IP </u>\r\n\r\nPreviously, when a carrier received a Notice of Indexing from the Board for a case it had already accepted, the carrier need not do anything short of forwarding all relevant documents to the Board. However, here we are, in the world with eClaims, short one expensive mirror, and the carrier is now responsible for a few more filings. Now, when a carrier receives a Notice of Indexing for a case it has accepted, it must file a FROI-00 and a SROI-IP (if payments have already been made). These filings are to be made <strong><u>on or before the 18<sup>th</sup> day after the disability event, or within 10 days after the employer has knowledge of the event, whichever period is greater</u></strong>. Apparently breaking a mirror gets you 7 new filings!\r\n\r\n<u>Suspending Payments – WCL § 25(1)(d) </u>\r\n\r\nAs we wrap up here, beware carriers! That black cat from way back when is still running around causing all kinds of bad luck shenanigans (she has exceptional cardio). This time, you see her walking while on your way to the parking lot after work – <em>17 days</em> after ceasing payments on a Workers’ Compensation claim. That cat has a crooked smile, and here’s why: WCL § 25(1)(d) requires a carrier who ceases payments on a claim for any reason to file with the Board a SROI announcing this action <strong><u>within 16 days</u></strong>. When you get back into work on that 18<sup>th</sup> day, you won’t see the black cat, but rather a penalty from the Board in the amount of $300.','How to Avoid Bad Luck in Your Comp Claims This Friday the 13th – Some Basic Time Constraints for New York State Workers’ Compensation Claims to Keep in Mind','','publish','closed','closed','','how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind','','','2022-08-31 09:17:36','2022-08-31 13:17:36','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/',0,'post','',0),(46422,25,'2017-06-07 00:00:00','2017-06-07 04:00:00','In a stunning <em>sua sponte</em> reversal of its prior decisions, the Board has found that the Medical Treatment Guidelines apply to out of state treatment.\r\n\r\nIn the case, <u>Hospice Inc.</u>, WCB# 5951 3410, the workers compensation law judge found objections to medical treatment in favor of the providers. The carrier appealed that finding conceding that the Medical Treatment Guidelines do not apply to out-of-state treatment based on the Board’s previous interpretation of application of the guidelines.\r\n\r\nThe Board, on its own motion and pursuant to its continuing jurisdiction under WCL §123, revisited its prior decisions finding that the Medical Treatment Guidelines did not apply to medical treatment provided to claimants living outside the state. Noting that the guidelines had previously been found to be “instructive” for treatment rendered to claimants living outside the state, and relying on the decision in <em>Kigin v. State of New York Worker’s Compensation Board</em>, 24 NY3d 459 (2014), the board expressly overruled any prior authority to the contrary and found that the guidelines applied to a nonresident claimant’s treatment out-of-state.\r\n<p style=\"padding-left: 30px;\">The MTGs provide an evidence based medical standard for appropriate medical care. The standards for treatment contained in the MTG ensure that claimants receive the most effective medical care as recommended by best practices in the medical community, and as adopted by the Board in consultation with medical specialists. Such recommended treatment and care should be rendered without regard to the location of the claimant’s home or the medical provider’s practice. As such, the Board Panel finds that the MTGs apply regardless of where or by whom the treatment is rendered.</p>\r\nGiven this holding, the board also found that the variance procedure also applies to out-of-state treatment although it refused to require out-of-state providers to use New York Worker’s Compensation board forms. While those are certainly preferred, treatment should not be denied solely as a result of the failure of an out-of-state provider to use the proper form.\r\n\r\nObviously this is favorable from a defense perspective as we can now challenge out-of-state treatment which does not comply with the medical treatment guidelines. Additionally, a provider must satisfy our authorization or variance procedures even though they will not be held to strictly comply with filing of the proper forms.\r\n\r\nFor a copy of the decision please click on the following link: <a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/06/EBRB-1-finding-that-MTGs-apply-out-of-state_Redacted.pdf\" target=\"_blank\" rel=\"noopener\">EBRB-1 finding that MTGs apply out of state_Redacted</a>.','Board Finds that Medical Treatment Guidelines Apply to Out of State Claimants','','publish','closed','closed','','board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants','','','2022-08-31 09:17:36','2022-08-31 13:17:36','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/',0,'post','',0),(46423,25,'2017-02-05 00:00:00','2017-02-05 05:00:00','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/02/image002.jpg\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/02/image002.jpg\" /></a>By – Melissa A. Day and James B. Cousins\r\n\r\nRight now, WCL §35 is a unknown quantity for WC practitioners.  Section 35(3) allows for an “Extreme hardship redetermination” which allows any claimant, classified with an LWEC of “greater than 80 percent” to apply “within the year prior to the scheduled exhaustion” of the cap, and ask that the Board “reclassify the claimant to permanent total disability or TID due to factors reflecting extreme hardship.”    Notably too, §35(2) states specifically that no provision of the section shall be read to “derogate or impair”  existing case law on TID, nor a claimant’s right to obtain such a status.\r\n\r\nThe effect of this amendment is unknown because the panel has reported no cases discussing such a redetermination, and it is fair to assume, based on the age of the amendment, that cases are not yet, or only just now, becoming ripe on this issue (the cap is 8.65 years, and LWEC, and §35, apply for all claims after 2007 – so allowing for time for treatment, surgery, etc, plus the litigation time for classification, in theory, 81% claimants may just now be approaching the end of their caps.)\r\n\r\nIn our opinion, §35(3) is going to have many of the same growing pains that the rest of the reforms have had.  From our view, we think the two clearest factors of relevance are the (1) timing of the application and (2) burden of proof resting on the claimant.  Reading the statute, we think any application made after the caps expire is late and thus not actionable.  Further, we think it will be up to the claimant to prove “extreme hardship.”\r\n\r\nSheldon Silver wrote a Memorandum in Support for Bill A6163 (2007 Reforms) which was dated 03/13/2007 and in relevant part it stated:\r\nSection 5 of the bill adds a new section 35 to the Workers’ Compensation Law to establish a safety net for permanent partial disability claimants who surpass their number of maximum benefit weeks. Section 35 requires the Commissioner of Labor to survey and recommend best practices for return-to-work programs. In addition, this section incorporates existing case law on total industrial disability. For those with loss of wage earning capacity of 80 percent or greater, <strong>the bill additionally allows claimants to seek an exemption on extreme hardship grounds. This provision provides an exemption for extreme financial hardship, while allowing judges to take into account factors in addition to claimants’ income and other available resources.</strong> Finally, the Commissioner of Labor is directed to track those who are classified as permanently partially disabled over time.\r\nThis makes us believe the inquiry will look at the claimant’s financial status which seems to be a necessary component of proving an entitlement to the safety net but that “factors in addition to claimants’ income and other available resources”, such as change in medical condition, non-occupational medical conditions, aging and other factors can also be considered in proving “extreme hardship.”\r\n\r\nLooking to way other laws have used that term may be useful in preparing a defense and shaping the application of the law in terms of developing favorable case law driven factors.  “Extreme hardship” is used in immigration law, and those courts have rejected “common results” of deportation as extreme hardship saying that the to qualify, the results would need to be unusual or beyond what would normally be expected.  Federal bankruptcy law carries the term “undue hardship” which, if proved, allows the debtor to discharge student loans.  It is also a very high standard which considers near penury to not be “undue” and that a hardship is only “undue” is repayment would require the debtor to live below a “minimal” standard of living for a long period of time.  It also requires evidence that the debtor made a good faith effort to repay the loan before declaring bankruptcy.  New York criminal law allows conditional driver’s licenses for those convicted of drug and alcohol crimes if they show “extreme hardship.”  In that context, extreme hardship cannot be based entirely on the licensee’s testimony – he or she must give some corroborating evidence.  Generally, the licensee must show that they have employment, or schooling to attend that would be otherwise harmed by an inability to travel.  In that way, quite a few people likely qualify for, and receive, such conditional licenses.\r\n\r\nConsidering those few examples (we are sure there are more, but this is a quick review of low-hanging fruit) we would argue that the claimant’s burden should meet several tests/factors like those above, and that the claimant be required to produce vocational data, and some other corroborating proof including the possibility of medical evidence reflecting a deterioration, to establish entitlement.  Our analysis reflects that financial hardship will be a threshold test.\r\n\r\nThat said, expect the Board and WCLJs to apply the section liberally, because as a “remedial statute serving humanitarian purposes, the Workers’ Compensation Law should be liberally construed (see Matter of Merchant v Pinkerton’s Inc., 50 N.Y.2d 492, 495; Matter of Husted v Seneca Steel Serv., 41 N.Y.2d 140, 145; Matter of Wolfe v Sibley, Lindsay Curr Co., 36 N.Y.2d 505, 508).” Burns v. Miller Contruction, Inc., 55 N.Y.2d 501 (1982), and that proper standards won’t be set until there are at least a handful of appellate rulings on the matter.  We suspect that if the claimant can establish that they live at or below the poverty level that it is quite likely that the Board will grant ongoing benefits to the person.','Permanent Partial Disability “Safety Net”…What to Expect from WCL §35','','publish','closed','closed','','permanent-partial-disability-safety-netwhat-to-expect-from-wcl-%c2%a735','','','2022-08-31 09:17:36','2022-08-31 13:17:36','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/02/permanent-partial-disability-safety-netwhat-to-expect-from-wcl-%c2%a735/',0,'post','',0),(46424,2461,'2021-08-18 01:03:59','2021-08-18 05:03:59','','EBRB-1-finding-that-MTGs-apply-out-of-state_Redacted','','inherit','closed','closed','','ebrb-1-finding-that-mtgs-apply-out-of-state_redacted','','','2021-08-18 01:03:59','2021-08-18 05:03:59','',46422,'/wp-content/uploads/sites/1503150/2017/06/EBRB-1-finding-that-MTGs-apply-out-of-state_Redacted.pdf',0,'attachment','application/pdf',0),(46426,25,'2017-01-18 00:00:00','2017-01-18 05:00:00','The Board’s now-longstanding process re-engineering has hit on some very good ideas (Desk 32s for example) and some duds (Binding Arbitration). That being said, at their own admission, the Board has been seeking out cases where hearings are unnecessary and trying, with as much success as failure in this author’s experience, to resolve cases using Proposed Decisions and administrative “orders” as much as possible. The number of EC-81.7s — so-called “scheduling orders” — for litigation on permanency (usually SLUs) has noticeably increased; as has the Board’s use of PD-NSLs to resolve medical objections, even sometimes in cases where the issue is more complex than simply MTG compliance.\r\nWhen used properly, these tools can cut back on unnecessary hearings and reduce the cost of workers’ compensation claims for both parties and the WCB.\r\nThe increased activity in PD-NSLs has also resurrected an old problem: when a medical provider tries to intervene in the legal proceedings before the Board.\r\nBecause the Board has selected medical issues as one topic for increased use of Proposed Decisions, and because medical providers are copied on those decisions, the provider, having a copy of the decision in hand, and sometimes reading it through, thinks he or she can lodge an objection. Any why shouldn’t they? The language of the decision seems clear:\r\n<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/01/image001.png\"><img class=\"aligncenter wp-image-1674 size-full\" src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/01/image001.png\" /></a>\r\nIn fact, the last page of these decisions contain a handy blank where the objecting party can write in their objection and return it to the Board:\r\n<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/01/image002.png\"><img class=\"size-full wp-image-1675 aligncenter\" src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/01/image002.png\" /></a>\r\n\r\nHowever, this text is not meant for the medical provider, it is meant for the claimant or the carrier/SIE, and it seems clear that the provider, no matter how much actual interest he or she has in the decision, has no standing to object to it.\r\n\r\nWCL Section 25(2-b)(f) permits “any party” to object to a conciliation (proposed) decision provided the format and timeliness criteria are met. However, the Board has clearly stated, on more than one occasion, that a medical provider is neither a party, nor a “party in interest” (a WC term of art for these purposes). Indeed, the Board calls the case law “well settled” that a medical provider is not a party pursuant to WCL Sec. 23 and thus cannot appeal, or rebut an appeal, from a WCLJ’s decision. <u>Matter of Bausch &amp; Lomb</u>, 2000 NY Wrk Comp 79613525. The Board has held that a medical provider is not a “party” for the purpose of WCL Sec. 114-a(3) and thus cannot be penalized for presenting a frivolous argument to the Board through a variance or authorization request. , 2016 NY Wrk. Comp. 1500020. In fact, the Board has gone so far as to say that a medical provider, even when his or her own treatment is at issue, need not be served a copy of an appeal relating to that treatment. <u>Metropolitan Hospital</u>, 2014 NY Wrk. Comp. 0428844. If you are not subject to the jurisdiction of the Board for the purpose of a penalty for a frivolous objection, and if for all other enumerated purposes you are not a “party” or a “party in interest,” then you cannot lodge an objection to a Proposed Decision.','Back to the Future:  The Return of WCL 25(2-b): Fact-Finding without Judges and Legal Reasoning without Lawyers','','publish','closed','closed','','back-to-the-future-the-return-of-wcl-252-b-fact-finding-without-judges-and-legal-reasoning-without-lawyers','','','2022-08-31 09:17:36','2022-08-31 13:17:36','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2017/01/back-to-the-future-the-return-of-wcl-252-b-fact-finding-without-judges-and-legal-reasoning-without-lawyers/',0,'post','',0),(46427,2461,'2021-08-18 01:04:05','2021-08-18 05:04:05','','image002','','inherit','closed','closed','','image002','','','2021-08-18 01:04:05','2021-08-18 05:04:05','',46423,'/wp-content/uploads/sites/1503150/2017/02/image002.jpg',0,'attachment','image/jpeg',0),(46429,2461,'2021-08-18 01:04:10','2021-08-18 05:04:10','','image001','','inherit','closed','closed','','image001','','','2021-08-18 01:04:10','2021-08-18 05:04:10','',46426,'/wp-content/uploads/sites/1503150/2017/01/image001.png',0,'attachment','image/png',0),(46431,25,'2016-12-08 00:00:00','2016-12-08 05:00:00','It’s the Holiday Season!  Pay Your 32s Early Without Worry!  (Or Another Rhyme at Christmas Time)\r\nWorkers’ Compensation Settlements rev up this time of year; claimants and carriers/SIEs are looking to close files and the volume of 32 approvals from October through January is noticeably up.  A friendly reminder from the team at LOMAD that the Board recently finalized a series of amendments under 12 NYCRR 300.36 one of which opened up the option to early payment of 32 proceeds during, or even at the beginning, of the 10-day cooling off period.\r\n300.36(e)(3) now states that “A claimant who cashes or deposits a check made pursuant to the agreement may not request that the agreement be disapproved by the board” but goes on to note that the claimant remains entitled to recourse for late or incorrect payments.\r\nWe’ve had clients come to us, especially during the holidays, telling us that the payment window for a 32 was opened when they were on vacation, or otherwise unavailable.  This amendment now offers you the safety of paying before the payment window opens because the claimant’s “acceptance” by cashing the check, ends the 10-day waiting period, and thus closes the case earlier.','It’s the Holiday Season!','','publish','closed','closed','','its-the-holiday-season','','','2022-08-31 09:17:36','2022-08-31 13:17:36','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2016/12/its-the-holiday-season/',0,'post','',0),(46432,2461,'2021-08-18 01:04:16','2021-08-18 05:04:16','','image002','','inherit','closed','closed','','image002-2','','','2021-08-18 01:04:16','2021-08-18 05:04:16','',46426,'/wp-content/uploads/sites/1503150/2017/01/image002.png',0,'attachment','image/png',0),(46433,25,'2016-10-31 00:00:00','2016-10-31 04:00:00','HAPPY HALLO-WEAN!\r\n\r\nToday the Board issued Subject Number 064 – 892 which creates a “hearing process” for addressing opioid weaning issues. In support of this new process the Board recognizes that the Non-Acute Pain Medical Treatment Guidelines clearly indicate that long-term opioid use is recommended in only limited circumstances, involves constant clinical monitoring and reevaluation, and requires best practices for safe weaning of workers from opioid medications. To further effectuate this goal the Board has created a process for hearings addressing opioid medications.\r\n\r\nInitially, the process is commenced with the filing of an RFA-2 for which the Board has created a new checkbox, which indicates opioid weaning under Non-Acute Pain Medical Treatment Guidelines.  Attached to the RFA-2 must be either an IME or record review, which addresses weaning goals, a weaning program, or weaning resource.\r\n\r\nClaimants are now directed to submit a medical report in response to the carrier’s RFA-2 within 45 days after of the Board’s notice to the claimant.\r\n\r\nTranscripts of testimony of both the independent medical examiner and the claimant’s treating provider, if contrary medical evidence is submitted, are due to the Board prior to the opioid hearing.\r\n\r\nOnce the record has been fully developed, the Judge will issue a decision finding either:\r\n\r\n<img class=\"alignleft size-full wp-image-1594\" src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2016/10/pic.png\" sizes=\"(max-width: 1607px) 100vw, 1607px\" alt=\"pic\" width=\"100%\" height=\"auto\" />\r\n\r\nFinally, once there is a ruling that weaning is required the insurer is to cover the costs of the claimant’s addiction treatment program, weaning protocol, and medications through the duration of the weaning process.\r\n\r\nThis effectively places whether a claimant’s opioid medication treatment is within the Non-Acute Pain Medical Treatment Guidelines on the expedited hearing calendar.  A link to the subject number is below.\r\n\r\n<a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_892.jsp\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_892.jsp</a>','HAPPY HALLO-WEAN!','','publish','closed','closed','','happy-hallo-wean','','','2022-08-31 09:17:36','2022-08-31 13:17:36','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2016/10/happy-hallo-wean/',0,'post','',0),(46435,2461,'2021-08-18 01:04:30','2021-08-18 05:04:30','','pic','','inherit','closed','closed','','pic','','','2021-08-18 01:04:30','2021-08-18 05:04:30','',46433,'/wp-content/uploads/sites/1503150/2016/10/pic.png',0,'attachment','image/png',0),(46436,25,'2016-10-25 00:00:00','2016-10-25 04:00:00','<strong>TO WEAN, OR NOT TO WEAN, THAT IS THE QUESTION.</strong>\r\n\r\nThe Board Panel, in a recent October 2016 Decision, considered the issue of whether a Claimant’s opioid medications were appropriate.\r\n\r\nSignificantly, in this case the claimant was classified with a permanent total disability. He was also on opioid medications since the inception of the claim in 2002.  He had rotated through a number of pain management treatment providers with the most recent provider, Dr. Salcedo, starting treatment in 2011. While with this practice group, the claimant was rotated through numerous opioid medications with none providing any objective functional improvement in his condition.  The claimant’s current medications were: Soma 250mg, Lunesta 3mg, Exalgo 16mg, Fentora 800mg, and Klonopin.\r\n\r\nA record review was completed by Dr. Grammar, which found that the claimant’s treatment deviated from the NAP Guidelines for a number of reasons, but most significantly that the Morphine equivalent dose was in excess of 100mg per day.  The recommendation was to wean the opioid medications with a two-month extinction, along with the discontinuance of the muscle relaxer, Soma.\r\n\r\nInterestingly, Dr. Salcedo sought authorization for Evzio, which temporarily reverses the side effects of opioid medications in situations of overdose.\r\n\r\nDr. Salcedo’s testimony was taken, and he indicated that the claimant had chronic opioid use and pain tolerance, along with dependency.  The doctor indicated he was in the process of weaning, but then described a generic plan to reduce the claimant’s intake. He also testified that the claimant failed to demonstrate any functional gains. The described plan was to circulate and rotate new opioids to determine claimant’s best functionality.\r\n\r\nAt a hearing in January 2016, the judge found that weaning was medically necessary and directed Dr. Salcedo to implement a weaning program or refer the claimant to an appropriate rehabilitation program. An appeal was filed to this decision.  The basis of the appeal was that the judge should have directed a weaning program in conformity with the consultant’s weaning recommendation.\r\n\r\nThereafter, Dr. Salcedo recommended rotating the claimant’s opioid medications by shifting the claimant from Exalgo to Belbuca and then weaning the claimant off of Fentora.  The provider’s reasoning for the transition of medications was that the current regimen does not provide any functional gains.\r\n\r\nAn addendum was sought from Dr. Grammar, who reiterated his opinion that the medications deviated from the NAP Guidelines, and that weaning could take six to eight weeks, with prolonged weaning taking a period of six to eight months.\r\n\r\nA second record review was sought by a new consultant, who indicated the opioids could be weaned at a rate of 10% to 15% per month over six to nine months.\r\n\r\nAt a hearing in June 2016, the Judge found that Dr. Salcedo’s plan to rotate medications addresses the current concerns of tolerance and escalation of symptoms due to opioid tolerance.  The judge then directed Dr. Salcedo to continue with the weaning program. Again, an appeal of this decision was filed. The basis for this appeal was that opioid rotation was inappropriate in the absence of objective functional improvement from the use of opioid medications.\r\n\r\nAfter a thorough review of the facts of both appeals, the Board noted, importantly, that long term opioid users, although given the protection of Subject Number 046 – 457, were still required to come into compliance with the NAP Guidelines.  The Board specifically held that the Subject Number and the Guidelines are not in conflict with each other, but rather the Guidelines make clear that the goal for long-term opioid users is to be transitioned into the standards of care set forth within the NAP Guidelines.\r\n\r\nThe Board specifically indicated there was not enough evidence to demonstrate that Dr. Salcedo was transitioning this claimant’s care into the standards set forth within the NAP Guidelines.  The Board also held that the Guideline’s standards of care require a multi-disciplinary approach to pain management that is function-oriented and goal-specific.  The goal of opioid therapy is functional restoration – not merely pain elimination.  The Board discussed that the NAP Guidelines provide that weaning from opioids can be done at a decrease of 10% per week without significant health risks to the claimant.  It was also discussed that in complicated cases, a referral to an addiction specialist should be made to assist with detoxification and withdrawal symptoms.\r\n\r\nWhen rendering a final conclusion in this claim, they noted that the Office of Alcoholism and Substance Abuse Services in the State of New York provides a list of certified inpatient and outpatient treatment facilities for addiction management.  They directed the carrier to cover the costs of the claimant addiction treatment program, 30 days’ worth of medication fill following the Decision, and payment for any narcotic prescription thereafter, only if written by an addiction treatment program provider.\r\n\r\nThe Board specifically found the claimant’s current medications were not in compliance with NAP Guidelines, that any further opioid use must be consistent with the NAP Guidelines, and that compliance must be insured through urine screening.\r\n\r\nSo what is our take away?\r\n<ol>\r\n 	<li>Well, to answer our initial question regarding whether to wean or not, the Board is clearly moving toward weaning when there is no functional improvement from the opioid medications.</li>\r\n</ol>\r\n<ol>\r\n 	<li>If you have a claimant who is a long-term opioid user, you should review the medical records to determine whether there is objective functional improvement being demonstrated from the continued use of opioid medications. If not, obtain a record review to determine if the claimant’s medications are in compliance with the NAP Guidelines.</li>\r\n</ol>\r\n<ol>\r\n 	<li>Push for weaning that is in compliance with the NAP Guidelines. The Board is standing by the criteria within the NAP Guidelines even when the claimant has been prescribed opioid medications for an extensively long period of time.</li>\r\n</ol>\r\n<ol>\r\n 	<li>The Board is directing claimants to take action on behalf of themselves for their own care. The Decision also indicates that once non-compliance with the NAP Guidelines has been found that Carriers are liable for the payment of one last time-specific fill, and only for scripts filled by an authorized addiction specialist thereafter, along with the cost of the addiction treatment program.  Based on the language of this Decision, payment of the program and the scripts through the program, even if it is not a WC authorized provider, is required.</li>\r\n</ol>\r\nBelow are links to both the Decision, as well as the New York State Office of Alcoholism and Substance Abuse Services’ list of certified treatment facilities.\r\n\r\nhttps://thelomad.com/getmad.today/wp-contentwww.oasas.ny.gov/providerDirectory/index.cfm?search_type=2\r\n\r\n<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2016/10/Opioid-Decision.pdf\" target=\"_blank\" rel=\"noopener\">Decision</a>','TO WEAN, OR NOT TO WEAN, THAT IS THE QUESTION.','','publish','closed','closed','','to-wean-or-not-to-wean-that-is-the-question','','','2022-08-31 09:17:36','2022-08-31 13:17:36','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2016/10/to-wean-or-not-to-wean-that-is-the-question/',0,'post','',0),(46438,2461,'2021-08-18 01:04:39','2021-08-18 05:04:39','','Opioid-Decision','','inherit','closed','closed','','opioid-decision','','','2021-08-18 01:04:39','2021-08-18 05:04:39','',46436,'/wp-content/uploads/sites/1503150/2016/10/Opioid-Decision.pdf',0,'attachment','application/pdf',0),(46439,25,'2016-04-15 00:00:00','2016-04-15 04:00:00','THE NEWLY REOPENED FUND FOR REOPENED CASES – THE FIRST DEPARTMENT DECLARES THE RETROACTIVE APPLICATION OF 25-A UNCONSTITUTIONAL!\r\n\r\nYesterday, in a dramatic reversal, the First Department declared retroactive application of the sunsetting of the Fund for Reopened Cases created under WCL 25-a unconstitutional under both the US and New York Constitutions.\r\n\r\nIn the declaratory judgment action brought by plaintiff insurers, the First Department found that because premiums prior to 10/1/13, when the Department of Financial Services authorized an increase in the amount that insurers could charge in light of the closing of the Fund for Reopened Cases, were calculated based on the availability of funds from the Fund for Reopened Cases, elimination of insurers’ right to seek reimbursement from the fund was an unconstitutional taking under the US and New York Constitutions and violated the Contracts Clause of the US Constitution.\r\n\r\nThe Fund for Reopened Cases is reopen again.\r\n\r\nContact us to discuss how we can use this information to your advantage!!!  We have three former Special Funds attorneys on staff and our entire team is itching to see how we can use this to your advantage!\r\n\r\n<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2016/04/25-a-Unconstitutional.pdf\" target=\"_blank\" rel=\"noopener\">THE NEWLY REOPENED FUND FOR REOPENED CASES – THE FIRST DEPARTMENT DECLARES THE RETROACTIVE APPLICATION OF 25-A UNCONSTITUTIONAL!</a>','Reopened Cases','','publish','closed','closed','','reopened-cases','','','2022-08-31 09:17:36','2022-08-31 13:17:36','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2016/04/reopened-cases/',0,'post','',0),(46441,2461,'2021-08-18 01:04:48','2021-08-18 05:04:48','','25-a-Unconstitutional','','inherit','closed','closed','','25-a-unconstitutional','','','2021-08-18 01:04:48','2021-08-18 05:04:48','',46439,'/wp-content/uploads/sites/1503150/2016/04/25-a-Unconstitutional.pdf',0,'attachment','application/pdf',0),(46442,25,'2015-11-28 00:00:00','2015-11-28 05:00:00','NY Allows Employer to Utilize a Preferred Provider Organization (PPO) for the First 30 Days of Treatment\r\n\r\nIn NY either the carrier or self-insured employer may contract with a PPO and care is limited to the PPO for treatment within the first 30 days.\r\n\r\nThe employer cannot create the panel but it can choose a PPO with which it contracts if it is self-insured or obtain insurance from a carrier which has a contract with a PPO.\r\n\r\nPursuant to 12 NYCRR § 325-8.2(a), the employer must notify its employees in writing “of the preferred provider organization arrangement for the treatment of all workers’ compensation injuries and illnesses. Such written notice shall also advise potential claimants that they may obtain more detailed informational materials regarding the preferred provider organization from the employer.”  <em>See </em><span style=\"text-decoration: underline;\">Headway Corporate Staffing,</span> 2002 NY Wrk. Comp. 9926360, 2002 NY Wrk. Comp. LEXIS 96994 (10/23/2002).  “In addition, the record is completely devoid of any evidence regarding whether the employer properly provided the claimant with written notice that she was covered by a PPO prior to her accident.” The regulation does not specifically state when the notice should be provided but it seems that one could infer from the language requiring that notice be given to all employees that it is disassociated from the occurrence of an accident and therefore should be provided before an injury.\r\n\r\nAlso, proof of the notice should be retained to challenge treatment obtained outside the network.  A link to the active PPOs can be found <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/hcpp/PrefProviderOrg/ActivePPOList.pdf\" target=\"_blank\" rel=\"noopener\">here</a>.','NY Allows Employer to…','','publish','closed','closed','','ny-allows-employer-to','','','2022-08-31 09:17:37','2022-08-31 13:17:37','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/11/ny-allows-employer-to/',0,'post','',0),(46444,25,'2015-11-23 00:00:00','2015-11-23 05:00:00','FULL BOARD HOLDS THAT AN EMPLOYEE CANNOT BE CONSIDERED A SIX-DAY WORKER MERELY BECAUSE HE HAS WORKED MORE THAN 270 DAYS\r\n\r\nIn a recent Mandatory Full Board Appeal filed by the Law Offices of Melissa A. Day, PLLC, the Board held that when deciding a claimant’s average weekly wage the initial determination in any case is whether an employee is deemed to be a five or six day worker. Although this is not a new concept in the Workers’ Compensation arena the Full Board has made one significant clarification: whether an employee is deemed to be a five or six-day worker is a determination that is made independently based on the facts of the case prior to determining which multiple under WCL § 14 is appropriate for calculating the average weekly wage.\r\n\r\nThis is an excellent decision from the Full Board on this issue. The Full Board has specifically found within this Decision that “[i]n so far as this decision is in conflict with any earlier decision addressing this issue, the board disavows such other decisions in favor of the explanation and interpretation contained herein.” The significance of the Decision lies in the specific facts of the case and the prior Board Panel Decisions.\r\n\r\nPreviously, there were numerous Board Panel decisions that were summarily relying upon the number of days worked by an employee as reflected on the C-240 to make the determination of whether a worker was a five or six day worker. <u>Rosina Foods</u>, 2013 NY Wrk. Comp. 0602001 (NY Wrk. Comp. 2013). In <u>Rosina Foods,</u> the Board affirmatively stated:\r\n<blockquote>[T]he C-240 provides a guideline that the 260 multiple is to be used for claimants who worked at least 234 days and the 300 multiple is to be used for claimants who worked at least 270 days in the 52 weeks prior to the date of the accident.</blockquote>\r\n<u>Id</u>. <em>See also</em>, <u>Nutreco USA, Inc.,</u> 2014 NY Wrk. Comp. 0416882 (NY Wrk. Comp. 2014).\r\n\r\nIn <u>Kistner Concrete</u>, the C-240 indicated that the claimant worked 271 days the year preceding the accident.  A closer review of the C-240 illustrated that in the 52 weeks preceding the injury of record, the claimant worked a five-day week for 41 weeks, and 11 six-day weeks.  When setting the AWW the WCLJ noted that the claimant had “past two seventy, he gets the three hundred multiple” and set the average weekly wage using a 300 multiple.\r\n\r\nOf note, and raised on Appeal, only 10 weeks of reported payroll exceed the 300 multiple AWW set by the WCLJ. For the balance of 42 weeks, the claimant earned an average of $100 less than the 300 multiple calculation used by the WCLJ.   Despite these facts, the two members of the Board Panel still <em>affirmed</em> the WCLJ’s use of a 300 multiple. In affirming, the two member Panel noted the that C-240 creates a “guideline that the 300 multiple is to be used for claimants who worked at least 270 days in the 52 weeks prior to the date of accident.” The one member dissent felt this was a misinterpretation of the plain language of the form C-240 that created an overinflated average weekly wage.\r\n\r\nOn Mandatory Appeal to the Full Board it was argued successfully by the self-insured employer that this is an erroneous interpretation of the plain language contained within the C-240. It was argued by the self-insured employer that the above referenced decisions, along with their progeny, misinterpret the instructions on a form C-240. The form makes clear that similar worker payroll is necessary when a five-day worker has worked less than 234 days in a 260 day work year and that similar worker payroll is necessary when a six-day worker has worked less than 270 days in a 300 day work year. There is no conclusion drawn nor guideline created by the C-240 that an employee who is a five-day worker is entitled to a six-day worker calculation.  Rather, the C-240 provides instruction as to what constitutes a substantial portion of the year for a five-day worker and a substantial portion of the year for a six-day worker so that similar worker payroll can be provided, if necessary. However, the guideline for when to submit similar worker payroll is not a mandate of the Board in determining when a 260 multiple or 300 multiple pursuant to WCL § 14 (1) is applicable. Instead, determination as to the appropriate multiple is required on a case by case and fact by fact basis.\r\n\r\nThe Full Board has resolved this erroneous interpretation of the C-240 by this decision and specifically noted that the first test is an independent review of the facts to determine whether an employee is a five or six-day worker.  Although the C-240 is a factor to be reviewed in that determination of whether an employee is a five or six-day worker it is not the sole factor.  Once there is a determination of the claimant’s status as a five or six-day worker then the calculation of the average weekly wage using the appropriate multiple can be completed.\r\n\r\nLinks to the decision is below:\r\n\r\nhttps://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/wclaws/Decisions/2015July/KistnerConcreteProductsInc.jsp','An Employee Cannot be…','','publish','closed','closed','','an-employee-cannot-be','','','2022-08-31 09:17:37','2022-08-31 13:17:37','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/11/an-employee-cannot-be/',0,'post','',0),(46445,25,'2015-10-27 00:00:00','2015-10-27 04:00:00','WHEN DOES VOCATIONAL AND FUNCTIONAL CONSIDERATIONS, SUCH AS A CLAIMANT’S AGE, EDUCATION, TRAINING, EXPERIENCE, ETC. HAVE AN INFLUENCE ON A CLAIMANT’S BENEFITS?\r\n\r\nIn <em>Matter of Canales</em> the claimant argued that her vocational factors should have been considered in combination with her medical impairment to determine the compensation rate for her temporary disability and as such would have rendered her unemployable. However, it was found that the 2007 reforms were not intended to change the Board’s reliance on the claimant’s actual earnings or degree of physical impairment as supported by the medical evidence to determine wage earning capacity for the purposes of WCL 15 (5) (a). In fact, the phrase “loss of wage earning capacity” was added to WCL §15(3)(w) with the specific intention to establish a new duration limit on non-schedule permanent partial disability benefits and was therefore relevant only to the determination of the duration of permanent partial disability benefits at the time of classification. Thus, vocational and functional factors should not be considered to determine the compensation rate for temporary disability. Matter of <em>Canales v. Pinnacle Foods Group LLC</em>, 117 A.D.3d 1271\r\nHowever, it is well established that vocational factors are considered to determine loss of wage earning capacity in PPD claimants. What is less clear is the difference between claimants that returned to work and is consequently earning wages and claimants that did not return to work at the time of the classification.\r\nIn case of permanent partial disability when the claimant did not return to work, it is up to the WCLJ/Board to determine the claimant’s wage earning capacity. In <em>Matter Weinhart v Motors Holding</em>, 245 A.D.2d 577 (1997) The Board considers the nature and degree of the claimant’s disability, vocational opportunities and corresponding salaries available to the claimant, the claimant’s work restrictions etc. to determine the loss of wage earning capacity. Thus, for the non-working claimant vocational factors are considered to determine the loss of wage earning capacity and consequentially the wage earning capacity to calculate the weekly rate. “The loss of wage earning capacity will determine the maximum number of benefit weeks available pursuant to WCL §15(3)(w), and its inverse, the wage earning capacity will be used to calculate the weekly rate. <em>Matter of Buffalo Auto Recovery</em>, 2009 NY Wrk Comp 80703905.\r\nHowever, it seems that things get murky when a claimant is working at the time of classification. When a claimant remains attached to the labor market a claimant’s wage earning capacity for a permanent partial disability, according to <em>Buffalo auto</em>, should be determined based on the difference between the claimant’s earnings at the time of his classification and his former average weekly wage. <em>Matter of Buffalo Auto Recovery</em>, 2009 NY Wrk Comp 80703905. Thus, according to <em>Matter of Buffalo</em>, there are two different methods for calculating the loss of wage earning capacity of a claimant with permanent partial disability, depending on whether the claimant was working or not.\r\nHowever, in <em>Matter of Longley Jones</em>, the Full Board found that a distinction should not be drawn between a working and non-working claimants. It found that considering a working claimant‘s temporary sometimes partial job earnings, could ultimately lead to an unjust result between working and non-working claimants with exactly the same impairment. Thus, the Full Board did not favor a distinction between working and non-working claimants, but did emphasize that a claimant’s wages at the time of classification remains an important factor that should be considered with all the other factors in determining a claimant’s loss of wage earning capacity. <em>Matter of Longley Jones Management Corp,</em> 2012 NY Wrk. Comp. 60704882.\r\nIn <em>Matter of Baczuk</em> it was recently found that, where actual earnings during a period of disability are established, wage earning capacity must be determined exclusively by the actual earnings of the injured employee without evidence of capacity to earn more/less during such a disability period. Vocational and functional considerations must be considered with respect to loss of wage earning capacity and as such are only relevant as to the duration of a claimant’s permanent partial disability benefits. <em>Matter of Baczuk v. Good Samaritan Hosp</em>., 2015 N.Y. App. Div. LEXIS 7255. This decision is consistent with Buffalo Auto. It supports again a distinction between working and non-working claimants.','Vocational and Functional…','','publish','closed','closed','','vocational-and-functional','','','2022-08-31 09:17:37','2022-08-31 13:17:37','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/10/vocational-and-functional/',0,'post','',0),(46446,25,'2015-09-19 00:00:00','2015-09-19 04:00:00','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/09/Crossword-EXF-Puzzle-and-Clues.png\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/09/Crossword-EXF-Puzzle-and-Clues.png\" alt=\"Crossword EXF Puzzle and Clues\" /></a>\r\n\r\nFor a copy of the answers, please email Elana Fourie at efourie@getmad.today.','Challenge Yourself','','publish','closed','closed','','challenge-yourself','','','2022-08-31 09:17:37','2022-08-31 13:17:37','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/09/challenge-yourself/',0,'post','',0),(46447,2461,'2021-08-18 01:05:36','2021-08-18 05:05:36','','Crossword-EXF-Puzzle-and-Clues','','inherit','closed','closed','','crossword-exf-puzzle-and-clues','','','2021-08-18 01:05:36','2021-08-18 05:05:36','',46446,'/wp-content/uploads/sites/1503150/2015/09/Crossword-EXF-Puzzle-and-Clues.png',0,'attachment','image/png',0),(46448,25,'2015-09-16 00:00:00','2015-09-16 04:00:00','To demonstrate attachment to the labor market, a Claimant must submit evidence consistent with the requirements laid out in <u>American Axle</u>, 2010 WL 438153, 2010 NY Wrk. Comp. LEXIS 2560, WCB # 8030 3659 that he is:\r\n<ol>\r\n 	<li>Actively seeking work within her restrictions that is timely diligent and persistent;</li>\r\n 	<li>Actively participating in a vocational rehabilitation program;</li>\r\n 	<li>Actively participating in a job location search service such as a One-Stop Career Center; or,</li>\r\n 	<li>Actively participating in a job service commonly used to secure work within a specific industry.</li>\r\n</ol>\r\n<u>Erie County Medical Ctr. Corp.</u>, <a href=\"https://thelomad.com/getmad.today/wp-contentadvance.lexis.com/Auth/Replay?targetUrl=/ContentViewExternalAccess%3FdocId%3D%2Fshared%2Fdocument%2Fadministrative-materials%2Furn%3AcontentItem%3A539Y-D7R0-01WV-S0YJ-00000-00%26Hcsi%3D271075%26title%3D2011%20NY%20Wrk.%20Comp.%20LEXIS%202999%26vendorreportId%3D%26pageno%3D10%26activeRptr%3DPAGE_7559\" target=\"_blank\" rel=\"noopener\">2011 NY Wrk. Comp. LEXIS 2999, 10-14</a>.\r\n\r\n<strong><u>1.) The claimant has failed to produce evidence that she is actively seeking work within her restrictions that is timely, diligent and persistent.</u></strong>\r\n\r\nIf the independent job search is <strong><u>in person</u></strong> documentary evidence should provide\r\n<ul>\r\n 	<li>the day, month, and year of the contact;</li>\r\n 	<li>the name and address of the employer;</li>\r\n 	<li>the name and telephone number of the person with whom employment was discussed;</li>\r\n 	<li>the type of job sought; and</li>\r\n 	<li>the response of the potential employer.</li>\r\n</ul>\r\n<u>American Axle</u>, at p. 7.\r\n\r\nIf the contact was <strong><u>written</u></strong>,\r\n<ul>\r\n 	<li>copies of the resume submitted if any;</li>\r\n 	<li>the inquiry letter or e-mail communication; or</li>\r\n 	<li>the application completed is necessary along with the day, month, and year submitted,</li>\r\n 	<li>the nature of employment sought,</li>\r\n 	<li>name and address of the employer and</li>\r\n 	<li>the response of the potential employer.</li>\r\n</ul>\r\n<u>American Axle</u>, at p. 7.\r\n\r\n<strong><u>2.) The claimant has not produced any evidence that she is actively participating in a vocational rehabilitation program.</u></strong>\r\n\r\nAs is noted in <u>Erie County Medical Ctr. Corp.</u>:\r\n\r\nA claimant may be found to be attached to the labor market if she is actively participating in a vocational rehabilitation program through VESID\r\n\r\nIn the instant case, there is no evidence that the claimant is actively participating in a vocational rehabilitation program.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>3.) </strong></span><u style=\"font-weight: bold;\"><strong>The c</strong>laimant has not actively participated in a job location service such as a One-Stop Career Center</u>.\r\n\r\nA claimant may be found to be attached to the labor market if she is actively participating in a job location service such as a One-Stop Career Center (Matter of American Axle, 2010 NY Wrk Comp 80303659).\r\n\r\nActive participation with a One-Stop Career Center “… means\r\n<ul>\r\n 	<li>calling for an appointment;</li>\r\n 	<li>attending an orientation session;</li>\r\n 	<li>meeting with a One-Stop counselor to develop a resume;</li>\r\n 	<li>registering a resume in the One-Stop system;</li>\r\n 	<li>following up to determine whether there were any job matches; and</li>\r\n 	<li>following up on all job referrals and matches</li>\r\n</ul>\r\n<u>Erie County Medical Ctr. Corp.</u> <em>citing </em><u>American Axle</u>.\r\n\r\n<strong><u>4.) The claimant has not produce sufficient documentation that she is actively participating in a job service used to secure work within a specific industry</u></strong>.\r\n\r\nJust like it sounds.','Labor Market Attachment Refresher','','publish','closed','closed','','labor-market-attachment-refresher','','','2022-08-31 09:17:52','2022-08-31 13:17:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/09/labor-market-attachment-refresher/',0,'post','',0),(46450,25,'2015-09-07 00:00:00','2015-09-07 04:00:00','Seasonal Employees Back to Work – Or Not : Part 2 on Calculating AWW\r\n\r\nWelcome to the second installment of our serial blog on the issue of Average Weekly Wages!  When we last left our intrepid hero, he had plummeted to his apparent death in the Reichenbach Falls grappling with his mortal enemy and mastermind criminal, Professor James Moriarty… wait … wrong serial … sorry.\r\n\r\nActually, when we signed off last time we left you with a quiz question to illustrate the finer points of the “multiple method” of AWW calculation with the following fact-pattern:\r\n\r\nThe C-240 filed indicated that the claimant was a four-day a week hourly worker. Out of the 52 weeks preceding his injury, the claimant work four-days a week for 36 weeks; six-days a week for 8 weeks; five-days a week for 4 weeks; three days a week for 2 weeks; two-days a week for 1 week; and 0 days for 1 week. The gross amount paid to the claimant was $28,782.88. The total number of days worked was 220 days.  There are no other facts relevant to the issue of AWW in the record.\r\n\r\nThe Board in <u>VIP Health Care Services Inc.</u>, 2015 NY Wrk. Comp. 0810813 held that the worker described above was entitled to an average weekly wage based off of a “224 multiple” after reminding the carrier that “there is no statutory authority supporting the calculation of the claimant’s average weekly wage” using a “divsor.”  In support of its ruling, the Board noted that it agreed with the carrier that the claimant “did not work substantially the whole of the year pereceidng his accident” and that the use of the 224 multiple “reasonably represents the claimant’s annual earning capacity in the year immediately before the injury.”  The keen reader will recognize that the fact-pattern her recounts on 220 days worked in the year preceding the accident and calculating out the figures specifically denoted in the decision still gives us a 220-day work-year.  How the Board Panel got 224 days is beyond comprehension given the limited analysis in the decision except the Board notes that “the carrier, by requesting a $564.37 average weekly wage, has essentially conceded a 224 multiple for the claimant in its application for review.”  Does that mean that the carrier here did its math wrong on the Application for Review?  That’s a mystery that even Mr. Holmes might not be able to solve.\r\n\r\nThe other mystery left by our first installment was the use of the 300 and 200 multiples.  When we started that post you were told that the 200, 260 and 300 multiples were the three most common methods of calculating an AWW and that drives us right into the heart of our next topic:  part-time-seasonal and sporadic workers, which generally fall under the same case-law driven analysis.\r\n\r\nWCL § 14(1) gives us the 260  multiple-method of calculation.  § 14(2) provides the option of a “similar worker” payroll (which we will get to later on in our serials) and § 14(3) is the statutory provision that gives us the starting line for today’s topic.\r\n\r\nIn the event that neither of the methods provided in WCL § 14(1) and § 14(2) can be reasonably and fairly applied, WCL § 14(3) provides that the annual average earnings shall be such sum as:\r\n\r\n<em>having regard to the previous earnings of the injured employee and of other employees of the same or most similar class, working in the same or most similar employment…shall reasonably represent the annual earning capacity of the injured employee in the employment in which he was working at the time of the accident, provided, however, [her] average annual earnings shall consist of not less than [200] times the average daily wage or salary which [s]he shall have earned in such employment during the days when so employed…</em>\r\n\r\nSection 14(3) is an archetypal legal “catchall” favored by lawmakers that, with broad stokes, closees loopholes and otherwise sets thresholds: ceilings or floors.  Although § 14(3) grants what seems to be broad discretion to set a wage without any reference to the means of calculation provided it “reasonably represent[s]” the workers’ earning capacity, it also sets a floor: <em>in no event shall an AWW work out to less than a 200 multiple.</em>\r\n\r\nWhen part-time, seasonal and sporadic workers are injured, this provision of § 14(3) is most often in play, whether the parties realize it or not.  What you may not realize, however, is that this “floor” is also subject to a massive exception that seems to be under-utilized.  Namely, the Board has held that the 200-multiple minimum can only be employed “where there has been a finding that the employee was ‘fully available’ for the employment at issue.”  <u>Matter of Pease v Anchor Motor Frgt.</u>, 158 AD2d 820 (3d Dept. 1990) <em>lv dismissed</em> 76 NY2d 772 (1990), <em>quoting</em> <u>Matter of Pfeffer v Parkside Caterers</u>, 42 NY2d 59 (3d Dept. 1977).  We’re talking Third-Department case-law here, not the more malleable and far less reliable Board Panel opinions scattered throughout our first installment.\r\n\r\nA ready example where a 200 multiple may not apply is an already-retired worker taking on a post-retirement job for a few days a week.  Provided the employer can establish that the claimant’s work-schedule was driven more by the claimant’s request for work hour than the employer’s needs or offer of work, a 200 multiple may not be applied.\r\n\r\nWhat is also very notable is that the law requires an affirmative finding that the claimant was “fully available” for more employment.  Using a 200 multiple, or even a 260 multiple for a part-time worker may be should be reversed by the Board where a finding regarding the worker’s availability is absent from the record.  <em>See </em><u>NEWSDAY, LLC</u>, 2015 NY Wrk Comp 0816290 (189 days worked with only 11 five-day weeks, imposing a 260 multiple is not warranted and case is remanded for additional proofs including testimony on claimant’s availability for work with the employer).\r\n\r\nWhen getting down to the nitty gritty of evidence, testimony from the claimant is of course vital, but so is employer testimony.  Some very recent examples of cases where a claimant was found “not fully available should illustrate this point nicely:\r\n\r\n<u>John R. Kearney, M.D., P.C.</u>, 2014 NY Wrk. Comp. 0556851:\r\n\r\nClaimant was a <em>per diem</em> employee called in when he was needed by the employer.  The employer witness testified by letter to the Court that the claimant had no set hours or schedule and that “many times the claimant did decline our offer of work” sometimes because it was on too short notice, but sometimes because the claimant didn’t like the particular assignment offered.  Claimant testified that he had never refused work from the employer, but also conceded that his job was “primarily for the purpose of supplementing his Social Security income and that he was not allowed to exceed the $10,000 supplemental income limit although he denied that this limit played any role in his work schedule.  The WCLJ found the claimant did not self-limit but the Board reversed:  <em>“Here, contrary to the statement by the employer, the claimant testified that the he did not refuse work. However, the claimant also indicated that through his employment he “probably wouldn’t have” exceeded the $10,000.00 Social Security threshold. As such, the Board Panel finds that while the claimant may not have refused work, he cannot under these circumstances be characterized as fully available for the employment in question.”</em>\r\n\r\n<u>University Of Rochester</u>, 2012 NY Wrk. Comp. 47370:\r\n\r\nClaimant’s C-240 showed a “sporadic” work pattern and that the claimant typically worked one or two days per week for 29 of the 52 weeks preceding the accident.  The claimant conceded that ” I generally worked one day a week when I was available and if they needed extra days like if someone . . . was scheduled to work and had an unexpected emergency or sick call, I would work additional shifts to fill in.” The claimant denied self-limiting her hour, but on cross she conceded that when she applied for her job she specifically sough only <em>per diem </em>work but that she specifically was hire to work one day a week and she was generally availbe to work on the other week days and that when she applied for the job she was not interested in part-time or full-time work.  The Board Panel agreed with the WCLJ that the claimant was not fully available for more work and that the 200-multiple minimum did not apply:  <em>“The claimant’s own testimony demonstrates that she had applied for and accepted per diem work. She testified that she was not interested in a full-time or more traditional part-time schedule. As noted above, the C-240 further indicates that the claimant worked sporadically during 29 weeks out of the 52-week period in question. Further, the C-240 reflects that the claimant typically worked one to two days per week during those 29 weeks.</em>”\r\n\r\n“Intermittent” employment can also be described as employment under contract for a set-term (college TAs, election workers etc.).  Specifically, workers in an election monitoring position, which generally lasts only a few days or a few weeks do not get the benefit of a 200-multiple and must instead rely on the prevailing statutory minimum.  <em>See </em><u>Matter of Jacob v Town of Glenville</u><em>, </em>43 AD2d 409 (3d Dept. 1974).\r\n\r\nMoreover, the proper analysis of whether a claimant is “self-limiting” or “available” for employment is not to be limited to the specific job in question, but instead to the labor market in general. <u>Matter of Kellish v Kellish Tire Sales, Inc.</u>, 12 AD3d 804 (3d Dept. 2004).  As such, an employer need not necessarily have made more hours available to the employee, nor must the employee have refused such an offer.  If the terms of the employment are fairly well defined by the parties, the Board (and Appellate Division) can find that an employee was “not fully available” if they did not take steps to supplement their work for the insured to fill in their empty hours/days.\r\n\r\nFor example, a claimant hired for a job that will last only a short time cannot claim “full availability” by suggesting that, had the position been of longer duration or more hours they could have worked more.  Instead, the claimant must show that he or she was looking for work outside the hours/days of the employment in question.  <em>See also </em><u>NYC Board of Election</u>, 2015 NY Wrk. Comp. 0519004; <u>Matter of Winter v. Camp Scatico</u>, 7 AD2d 812 (3d Dept. 1958)(Summer camp worker who did 10-weeks over the summer every year for six straight years not entitled to 200 multiple where he testified that he no other work because “I’m too old.).\r\n\r\nIn at least one recent case, the Board held that where the employer established that a claimant, an otherwise full-time worker, habitually took off summers to go travel outside the country, the claimant was self-limiting her employment and could not avail herself of a 200-multiple calculation because “the claimant would reap the benefit of a higher average weekly wage . . . during a time period when she typically removes herself from employment and has no wages to loss” <u>The Unity Hospital</u>, 2015 NY Wrk. Comp. 0674976.\r\n\r\nFinally, we will talk about teachers and the 10-month work-year that I personally covet (just ask my wife!).  Working 10 months of the year, and considering holidays, most teachers generate a C-240 hovering right around, but usually below, 200 days worked in the preceding work-year.  Moreover, every year they work, they are off for roughly two months.\r\n\r\nWhen one of the ‘known and recognized incidents’ of a claimant’s job is the fact that he or she is predictably laid off for several months each year, due to the nature of the particular employment, that factor should be taken into account in determining the claimant’s average annual earnings pursuant to Workers’ Compensation Law 14 .  <u>Matter of Littler v Fuller Co.</u>, 223 NY 369 (1918).  When such an employment circumstance exists, the formula outlined in Workers’ Compensation Law § 14(1), which is based on the approximate number of days worked by a five or six-day employee during an entire year, cannot ‘reasonably and fairly be applied’ to determine the claimant’s earnings . . . Accordingly, [the] average weekly wage must be calculated pursuant to subdivisions (3) and (4) of Workers’ Compensation Law 14.” <u>Matter of Till v Opportunities, Inc.</u>, 252 AD2d 619 (3d Dept. 1998).\r\n\r\nAvailability is usually not at issue in this matters because a 200 multiple or an actual multiple are generally very close, and, of course, <u>Till</u> appears to have created a case-law driven exception for teachers. Chosing a 200-multiple as against a “actual multiple” (the sly way the Board imposes divisors while still chiding us lawyers for calling it a divisor) will depend upon the number of days worked and whether the result is favorable to the claimant.  A seasonal payroll showing more than 200 days worked gets a “divisor” and less than 200 days gets the threshold multiple.  <u>Matter of Atlantic Express Escorts</u>, 2009 NY Wrk Comp 649820; <u>Floral Park-Bellerose Union</u>, 2015 NY Wrk. Comp. 1071162.\r\n\r\nWe will end on a point that many of you might be thinking about in the context of a teacher or other seasonal employee:  can the collect comp for the months/times of year where they would otherwise have been unemployed?  Can we suspend during the “off months?”\r\n\r\nThe short answer is, mostly probably not:\r\n\r\nWhere an employment is seasonal, a carrier cannot suspend compensation benefits during the summer months when the claimant would not usually be receiving wages because the averaging provisions that determine AWW spread seasonal wages over an entire year.  Having properly calculated the claimant’s average weekly wage under the statutory formula provided by <a href=\"https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&amp;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&amp;_butType=4&amp;_butStat=0&amp;_butNum=7&amp;_butInline=1&amp;_butinfo=NY%20WORK%20COMP%2014&amp;_fmtstr=FULL&amp;docnum=3&amp;_startdoc=1&amp;wchp=dGLzVzB-zSkAb&amp;_md5=7d957a56f4603e2ea6acfc6d96284951\" target=\"_blank\" rel=\"noopener\">WCL § 14(3)</a> and <a href=\"https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&amp;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&amp;_butType=4&amp;_butStat=0&amp;_butNum=8&amp;_butInline=1&amp;_butinfo=NY%20WORK%20COMP%2014&amp;_fmtstr=FULL&amp;docnum=3&amp;_startdoc=1&amp;wchp=dGLzVzB-zSkAb&amp;_md5=75bec0b2ce1d16a3c6da61614f25c57b\" target=\"_blank\" rel=\"noopener\">WCL § 14(4)</a> for calculating an employee’s average weekly wage, seasonal periods of unemployment, such as are customarily experienced by school teachers and other school district employees, are fully accounted for by using a 200 multiple, instead of the 260 multiple or 300 multiple provided by <a href=\"https://thelomad.com/getmad.today/wp-contentwww.lexis.com/research/buttonTFLink?_m=4a71373fc4286b3769bffee9b62c30db&amp;_xfercite=%3ccite%20cc%3d%22USA%22%3e%3c%21%5bCDATA%5b2015%20NY%20Wrk.%20Comp.%20LEXIS%205965%5d%5d%3e%3c%2fcite%3e&amp;_butType=4&amp;_butStat=0&amp;_butNum=9&amp;_butInline=1&amp;_butinfo=NY%20WORK%20COMP%2014&amp;_fmtstr=FULL&amp;docnum=3&amp;_startdoc=1&amp;wchp=dGLzVzB-zSkAb&amp;_md5=26730495bb8eb27dee66bf357766c397\" target=\"_blank\" rel=\"noopener\">WCL § 14(1)</a> for full time, year round five or six day workers. If the employee was denied compensation benefits during the summer months, the fact that a claimant was not regularly employed during that time period would be accounted for twice; once in the calculation of average weekly wage, and then again in determining the compensable periods of disability. Thus, even if the claimant did not work during the summer months immediately preceding the injury of this file, the claimant would be entitled to compensation benefits during the summer months.\r\n\r\n<u>Mt. Vernon Central School</u>, 2015 NY Wrk. Comp. 0774783; <u>Marlboro CSD</u>, 2015 NY Wrk. Comp. 0977561; <u>Floral Park-Bellerose Union</u>, 2015 NY Wrk. Comp. 1071162.','Summer is Almost Over!','','publish','closed','closed','','summer-is-almost-over','','','2022-08-31 09:17:52','2022-08-31 13:17:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/09/summer-is-almost-over/',0,'post','',0),(46478,25,'2015-08-23 01:41:29','2015-08-23 05:41:29','COMPLIANCE MONITORING, AKA “CLAIMS HANDLING PERFORMANCE” – THE BOARD IS WATCHING YOU PART I\r\n\r\nThe board has created a new Monitoring Unit with a stated mission of promoting excellence and claims handling practices and to provide system participants in the general public with information as to claims handling performance.\r\n\r\nRole of the Board’s newly created Monitoring Unit which will be monitoring the following\r\n<ul>\r\n 	<li>Timeliness of the First Report of Injury (FROI)</li>\r\n 	<li>Timeliness of Initial SROI showing Initial Payment</li>\r\n 	<li>Timeliness of Initial Payment of Compensation</li>\r\n 	<li>Timeliness of Controversy</li>\r\n 	<li>Percentage of Claims Controverted</li>\r\n</ul>\r\n<strong><u>Timeliness of the First Report of Injury (FROI)</u></strong>\r\n\r\nWCL § 110(2):\r\n\r\nAn employer…shall file with the..board and with the carrier if the employer is insured, upon a form prescribed by the chair, a report of any accident resulting in personal injury which has caused or will cause a loss of time from regular duties of one day beyond the working day or shift on which the accident occurred, or which has required or will require medical treatment beyond ordinary first aid or more than two treatments by a person rendering first aid…\r\n\r\nThis is the C-2F.\r\n\r\nRule 300.22 also requires a FROI:\r\n\r\nThe First Report of Injury, FROI, must be filed electronically:\r\n\r\nOn or before the 18th day after the <strong>disability event</strong> or within 10 days after the employer has knowledge of the <strong>disability event,</strong> whichever period is the greater\r\n\r\n300.22(a)(1) defines “disability event”\r\n\r\n…any accident, including death resulting therefrom, occurring in the course of employment or any alleged accident, including death resulting therefrom, that results in personal injury which has caused or will cause a loss of time from regular duties of one day beyond the working day or shift on which the accident or alleged accident occurred, or which has required or will require medical treatment beyond ordinary first aid or more than two treatments by a person rendering first aid; or any disease or alleged disease, including death resulting therefrom, claimed to have been caused by the nature of the employment and contracted therein.\r\n\r\nThe Board will only be measuring timeliness of the FROI on <strong><u>lost time claims</u></strong> and is interpreting the time limitations from 300.22 as giving up to the <strong><u>GREATEST</u></strong> following to file the FROI when there is lost time:\r\n<ul>\r\n 	<li>18 days from Date of Accident</li>\r\n 	<li>10 days from Date Employer had Knowledge of Injury</li>\r\n 	<li>10 days from Initial Date of Disability,</li>\r\n</ul>\r\nHence on lost time cases it appears that the Board will not be finding a FROI untimely if the claim results in lost time and the FROI is filed within 10 days of when the employer knew there was lost time even though it might be filed more than 18 days after the disability event or more than 10 days after the employer knew that the injury was going to “require medical treatment beyond ordinary first aid or more than two treatments by a person rendering first aid.”\r\n\r\nThe fields on the FROI that capture these dates are:\r\n<ul>\r\n 	<li>DN0040 Date Employer Had Knowledge of the Injury and</li>\r\n 	<li>DN0281 Date Employer Had Knowledge of Disability.</li>\r\n</ul>\r\nIt also appears that the Board will impute knowledge based on the filing of a Notice of Case Assembly and Notice of Indexing.\r\n\r\nHere is the math measured from the received date of the FROI:\r\n<ul>\r\n 	<li>Date Of Accident + 18 Days;</li>\r\n 	<li>DN0040 Date Employer Had Knowledge of the Injury + 10 Days;</li>\r\n 	<li>DN0281 Date Employer Had Knowledge of Disability + 10 Days;</li>\r\n 	<li>Assembly Notice Date + 10 Days;</li>\r\n 	<li>Index Notice Date + 10 Days;</li>\r\n 	<li>DN0056 Initial Date Disability Began + 10 Days.</li>\r\n</ul>\r\nThe latest of these days will be used to determine of the FROI is timely.\r\n\r\n<strong>PRACTICE TIP:  “Disability” should be narrowly construed.</strong>','Claims Handling Performance','','publish','closed','closed','','claims-handling-performance','','','2022-08-31 09:17:52','2022-08-31 13:17:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=46478',0,'post','',0),(46479,25,'2015-08-10 00:00:00','2015-08-10 04:00:00','<strong>Test Your NY Workers’ Compensation Chops</strong>\r\n\r\n<strong>As promised, here are the answers to the quiz posted last week.  How did you do?  Do you have M.A.D. skills?</strong>\r\n\r\n1.  What is the Special Funds WCL § 15(8)(d) reimbursement form and what are the time frames for seeking reimbursement once WCL § 15(8)(d) is established?\r\n<ul>\r\n 	<li>C-251 is the request for reimbursement</li>\r\n 	<li>When § 15(8) is established the carrier has one year from the date of establishment to submit a claim for all post 260 week benefit</li>\r\n 	<li>Thereafter, Carrier pays and then submits reimbursement every six months if requesting reimbursement</li>\r\n 	<li>Claims are not allowed if it is for an illegally employed minor.</li>\r\n</ul>\r\n2.  What is the percentage of medical impairment for a claimant whose provider has opined a class II severity E impairment?\r\n<ul>\r\n 	<li>33% medical impairment. <em>See</em>, <u>Nastasi &amp; Associates Inc.</u>, 2014 NY Wrk. Comp. 0005952, 2014 NY Wrk. Comp. LEXIS 5088 (NY Wrk. Comp. 2014) the Board specifically noted that<strong> “</strong>an E lumbar spine permanent impairment severity ranking . . . equates to a 33.33% medical impairment . . .pursuant to theMedical Impairment Severity Crosswalk.”)</li>\r\n</ul>\r\n3.  What are the three exceptions to written notice under WCL § 18?\r\n<ul>\r\n 	<li>There was no reason for failing to provide timely notice;</li>\r\n 	<li>The employer had actual knowledge of the event; and</li>\r\n 	<li>There was no prejudice to the employer due to the lack of notice.</li>\r\n</ul>\r\n4.  When do the medical treatment guidelines apply?\r\n<ol>\r\n 	<li>When claimant lives in state and the doctor treats in state?</li>\r\n 	<li>When claimant lives out of state and the doctor treats in state?</li>\r\n 	<li>When claimant lives in state and the doctor treats out of state?</li>\r\n 	<li>When claimant lives out of state and the doctor treats out of state?</li>\r\n</ol>\r\n<ul>\r\n 	<li>a, b, and c.</li>\r\n</ul>\r\n5.  What is needed in a Chiropractor’s report for there to be a well-documented exacerbation to allow for treatment in the absence of a variance?\r\n<ul>\r\n 	<li>When and how the exacerbation occurred;</li>\r\n 	<li>Objective changes from the baseline function;</li>\r\n 	<li>Expected type and frequency of treatment believed necessary to return the patient to baseline function; and</li>\r\n 	<li>The response to treatment through measures of objective functional improvement.</li>\r\n</ul>\r\n6.  Under what circumstances can a carrier deny a variance without contrary medical evidence?\r\n<ul>\r\n 	<li>Not an established injury site;</li>\r\n 	<li>Burden of proof not met</li>\r\n 	<li>Substantially similar request</li>\r\n</ul>\r\n7.  If the carrier commences payment of temporary compensation, how much time do they have to electronically file a notice of controversy before they would be deemed to have admitted liability for the claim and a decision would be issued establishing the claim?\r\n<ul>\r\n 	<li>Within one year from the commencement of payment.</li>\r\n</ul>\r\n8.  An IME report must be filed within 10 business days after the examination with the Board. Does a holiday within the period count as a business day and does only a holiday that falls on the 10<sup>th</sup> day count as a holiday that requires that the IME report be submitted on the next business day?\r\n<ul>\r\n 	<li>A holiday is not a business day.</li>\r\n</ul>\r\n9.  If the claim is not controverted, when is a SROI late and what is the penalty?\r\n<ul>\r\n 	<li>The 18/10/ day rule: Pay and report to chair within 18 days of disability or 10 days after employer first has knowledge of the alleged accident, which ever period is greater. Failure to comply will result in a penalty of $50 pursuant to §25(3)(e).</li>\r\n</ul>\r\n10.  What is the significance of the filing of notice of indexing?\r\n<ul>\r\n 	<li>If the claim is going to be controverted, it must be controverted no later than within 25 days of the filing of the notice of indexing.</li>\r\n</ul>\r\n11.  When the employer or carrier is under a direction to continue payments to the claimant following a hearing or issuance of a decision pursuant to rule 300.23, it is permissible to suspend benefits without a hearing under certain circumstances. True or false?\r\n<ul>\r\n 	<li>Normally the carrier has to file an RFA-2 notice to suspend/reduce accompanied by supporting evidence.  Copy to claimant/his/her attorney/licensed representative within 1 day if submitted electronically to Board.</li>\r\n</ul>\r\n<ul>\r\n 	<li>The Rule provides 4 exceptions when payments can be suspended without a hearing.</li>\r\n</ul>\r\nNotwithstanding any provision to the contrary in this subdivision, the employer or carrier upon the filing of an electronic notice as prescribed in section 300.22(f) of this Part may suspend or reduce such payments:\r\nWhere a notice of return to work, or other written substantial legal evidence of claimant’s return to work, has been submitted to the board in the format prescribed by the chair together with or on the same day that the notice to suspend or reduce is electronically filed; or\r\nWhere the supporting evidence submitted to the board in the format prescribed by the chair together with or on the same day that the notice to suspend or reduce is electronically filed includes payroll records for at least two calendar weeks which warrant such suspension or reduction; or\r\nWhere the claimant’s medical evidence indicates that the claimant has no disability. When such medical evidence is not part of the official board file, it shall be submitted to the board in the format prescribed by the chair together with or on the same day that the notice to suspend or reduce is electronically filed; or\r\nWhere supporting evidence submitted to the board in the format prescribed by the chair together with or on the same day that the notice to suspend or reduce is electronically filed includes proof of incarceration upon conviction of a felony.\r\n12.  How are actual reduced earnings calculated?\r\n<ul>\r\n 	<li>(AWW – RTW wages) * 2/3 not subject to the minimum.</li>\r\n</ul>\r\n13.  When can MMI be determined?\r\n<ul>\r\n 	<li>In cases that do not involve surgery or fractures, MMI cannot be determined prior to 6 months from the date of injury or disablement, unless otherwise agreed to by the parties.</li>\r\n</ul>\r\n14.  How long does a self-insured employer have to make the mandatory deposit into the ATF following classification with a PPD for a claim with a date of accident after 7/1/07?\r\n<ul>\r\n 	<li>None because self-insureds do not have to make payment into the ATF.</li>\r\n</ul>\r\n<strong>Oh ho!  A trick question at the end!  Hope you enjoyed brushing up on/confirming your comp chops.</strong>','Answers to the Quiz','','publish','closed','closed','','answers-to-the-quiz','','','2022-08-31 09:17:52','2022-08-31 13:17:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/answers-to-the-quiz/',0,'post','',0),(46480,25,'2015-08-07 00:00:00','2015-08-07 04:00:00','Average Wages?  Cost-Containment by Controlling the Fundamentals\r\n\r\nThis posting began with the goal of presenting a simple primer on calculating average weekly wages.  We spend a great deal of time looking for cost-containment and mitigation measures in every claim that crosses our desks, and sometimes the fundamentals, like AWW, are the best place to start reigning in costs.\r\n\r\nSimple enough of a topic, right?  Well, after writing for a while, and then writing some more, it became clear that this issue, like almost every issue in New York workers’ compensation claims may be basic, but it nevertheless carries around a lot of baggage in the form of rules, exceptions to rules, unique circumstances and even sometimes exceptions to exceptions of rules.  The legal aspects of calculating and setting an AWW don’t fit into a neat box, and the topic sprawls without any hope of control.\r\n\r\nWe changed gear and, like the serials of the 1900s, we intend to present this issue in installments throughout the year beginning with basic calculations (today) and moving on to part-time, seasonal and sporadic workers, including teachers with known and regular periods of unemployment (summers off!) and then moving into vacation pay and holiday pay, similar workers and their payrolls, concurrent employment, and ending with Minor’s Wage Expectancy.  We hope you enjoy!\r\n~\r\nThe Average Weekly Wage (“AWW”) is one of the most basic, and often-times overlooked findings made in a workers’ compensation claim.  Given the skyrocketing maximum rates, huge schedule awards and, of course, the often-present ATF deposit, controlling and minimizing an average weekly wage findings can pay dividends down the road when benefits are awarded in periods of weeks, months or even years.\r\n\r\nMy elementary school math classes tell me that to average a dataset, we take the gross value of that dataset and divide by the number of data points: simple addition and division.  Could you imagine something so basic, or rational, making its way into New York law?  I certainly can’t, and of course that’s not what we’ve got here.  But let’s take a half-step back before hurtling into a political commentary.\r\n\r\nFrom a claims handling perspective, the jumping-off point for calculating an AWW is always a C-240.  This ubiquitous form shows up in nearly every claim before the Board:\r\n\r\n<a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/forms/c240.pdf\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/forms/c240.pdf</a>\r\n\r\nExperienced claims-handlers will tell you that obtaining a C-240 can sometimes be a slow and painful process, and obtaining a fully-completed form can oftentimes be impossible.\r\n\r\nForm C-240 requires not only gross yearly wage, as well as the weekly wages for each of the 52 weeks preceding the accident, it also requires a weekly tally of “days worked” which, as we will see, is the basic metric for calculating an AWW.\r\n\r\nUnder WCL § 14, a claimant’s wage is calculated using a “multiple” method of averaging a claimant’s wages by using the wage data provided by the employer/carrier to first determine a claimant’s average daily wage.  Once the daily wage is established, a “multiple” is selected from among the three available depending upon the “type” of worker in question.\r\n\r\nWCL § 14(1) states that if a worker was hired to work 6 days a week, than his or her daily wage is to be multiplied by 300 and then 1/52 of that wage is to be calculated (under WCL §14(4)) to generate the correct AWW.\r\n\r\nTo those of you who have seen AWWs set by “divisor” and who may be asking “what is this multiple nonsense?”  the Board has taken great pains to repeatedly, and often with overtones of frustration, remind us that “there is no provision under WCL § 14 to calculate a claimant’s average weekly wage by using straight division of a claimant’s gross yearly earnings by the number of weeks worked.”  <u>Atlantic Express,</u> 2014 NY Wrk Comp. 0728592.\r\n\r\nDespite this admonition, the Board has repeatedly utilized WCL § 14(3) to generate AWWs which, mathematically, match the use of a divisor.  WCL § 14(3) permits the calculation of an AWW “based on the claimant’s previous earnings . . . during the year before the injury”  if the use of a multiple “cannot be fairly applied.”  For example, in <u>Waterfront Health Care</u> <u>Center</u>, 2014 NY Wrk. Comp. 0601971 the AWW was set, over the carrier’s objection, using a 260 multiple.  On appeal, the carrier argued that the use of a 260 multiple artificially inflated the claimant’s average weekly wage rendering a 260 multiple an “unfair” representation of the claimant’s earnings.  Ruling for the carrier on appeal, the Board Panel invoked WCL § 14(3) to institute a “205-day multiple” which just-so happened to be the exact number of days worked by the claimant on her C-240.  Applying this multiple, then applying the 1/52 provision of WCL § 14(4) resulted in an AWW identical to the AWW obtained by using a 52-week divisor.\r\n\r\nAt this point you must be asking (because I’m asking it myself all the time!) what does all this nonsense about multiple have to do with keeping workers’ compensation costs down?  The simple answer is: sometimes everything.  Calculating an AWW using a daily-rate multiple can artificially inflate, or deflate, a claimant’s AWW in an ironic way.  A typical 5-day a week worker, if he worked 5-days a week for the entire year, would work 260 days.  However, most 5-day workers take a vacation, get sick leave, bereavement, you name it.  The result?  They work less, and sometime far less, than 260 days in the year preceding their accident, but they benefit from their time off when the file a comp claim.  And if they do file that claim, you’re going to pay for those 260 full days anyway when the AWW is calculated unless you take steps to defend yourself.  The opposite is true for the worker who manages to put in more than his or her 260 days, they actually lose credit for those days using a multiple calculation.  Let’s look at a common example:\r\n\r\nEmployee A, a five-day worker, is injured on the job, and in the 52 weeks preceding the accident she worked 237 days and earned $35,000.00.  To use a 260 multiple, we would first calculate a daily wage ($35K/237 days) which is $147.68.  We then multiple that daily wage by 260 to generate an adjusted gross yearly wage of $38,396.80 and; then divide by 52 to generate an AWW of $738.40.\r\n\r\n<em>Employee A is getting an average weekly wage that is premised on an annual income here that is artificially (mathematically) inflated by crediting the claimant for some 23 days of work (and extra $3,396.64)  that he simply didn’t perform and he simply didn’t earn</em>.  Imposing a straight divisor (or WCL § 14(3)) on the same facts generates an AWW of $673.08.\r\n\r\nThe increase in an employer/carrier’s exposure to Employee A is an increase in the effective maximum rate of $43.55/week.  In the long run, this difference can be substantial.  Just take a look at the costs added to the claim of Employee A by this increased effective rate in several very common case results:\r\n\r\nModerate Permanent Partial Disability :  Increased Exposure of $6,532.50\r\n\r\n25% Schedule Loss of Use of an Arm:  Increased Exposure of $3,396.90\r\n\r\n25% Schedule loss of Use of a Leg: Increased Exposure of $3,1365.60\r\n\r\nIf you aggregate the benefits awarded across an entire desk of claims, the enhanced exposure of a miscalculated or unfavorable AWW calculation can be potentially staggering.  What’s more, exposure on a week-to-week basis for all awards of temporary disability (not counted as a credit against an ultimate PPD award) will add to a carrier/employer’s exposure.\r\n\r\nSo, if we’re going to be using this multiple-method of averaging wages, how do we know which method to use?  How can we use the method most beneficial?  Not all workers neatly fit into three categories of workers considered under WCL § 14 and, we want to keep the rates as low as reasonably possible.\r\n\r\nMany of you might jump to form C-240, which carries a nifty reference for guiding employers and carriers about which method of calculation they should use:\r\n\r\n<img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/08/poop.png\" />\r\n\r\nDon’t be fooled into thinking there is some legal basis for these “instructions.”  Neither the WCL, nor the entire Code of Rules and Regulations make any reference to any of the figures or guideposts.  The threshold of 234 days for a 5-day worker is not a creature of statute, and the best we can say is that it is a guideline followed by Board case law; but as with so much case law published by the Board, there is little pattern to their application of these “instructional” figures.  <em>See</em> <u>Matter of New Era Cap</u>, 2007 NY\r\n\r\nWrk Comp 80600990; <em>citing</em> <u>Matter of Wegmans Food Markets, Inc.</u>, 2006 NY Wrk Comp 70410307.\r\n\r\nWhat the Board can, and oftentimes does, do, is look deeper into the claimant’s wage statement to see if the claimant’s pattern of employment matches the schedule of a five-day or six-day worker.  Usually, and as you might expect, this deeper analysis predominantly gives the claimant a benefit, and the Board has disregarded its own guidelines to grant a 260 multiple to workers who didn’t even come close to their own guidelines.  <u>New Era Cap</u>, 2007 NY Wrk Comp 80600990 (223 days worked gets a 260 multiple); <u>Matter of Carrier Coach Inc.</u>, 2008 NY Wrk Comp 80702783 (226 days gets a 260 multiple);<u> Norampac Industries</u>, 2014 NY Wrk. Comp. 0605684 (216 days gets a 260 multiple).\r\n\r\nIn each of these cases the Board’s analysis turned on the number of five-day, four-day, three-day etc. weeks worked by a claimant.  In <u>Norampac</u>, for example, the Board reported that the claimant’s payroll showed 29 “five-day” weeks, 13 “four-day” weeks and 4 “three-day weeks” while the balance of the payroll was absence due to disability or vacation.  The Board held that “clearly the majority of the weeks worked by the claimant during the year preceding his work accident were five-day weeks” and imposed a 260 multiple.\r\n\r\nOkay, so that’s admittedly a lot of case law, and you’re eyes might be glazing over; but don’t leave yet.  All that law was cited to illustrate the point that AWW is an issue literally chocked-full of exceptions, unique circumstances and oftentimes contradictory results.  In 2014 alone the Board reviewed and ruled on the issue of AWW in no fewer than 80 decisions and through August of 2015 another 47 decisions have been published.\r\n\r\nIn our next installment we’ll cover part-time, seasonal and sporadic workers and the so-called “200-multuiple minimum” method of calculation.  For now, we leave you with a quiz based on one of the Board’s more recent rulings.  Which method of calculation should apply here?\r\n<em>The C-240 filed indicated that the claimant was a four-day a week hourly worker. Out of the 52 weeks preceding his injury, the claimant work four-days a week for 36 weeks; six-days a week for 8 weeks; five-days a week for 4 weeks; three days a week for 2 weeks; two-days a week for 1 week; and 0 days for 1 week. The gross amount paid to the claimant was $28,782.88. The total number of days worked was 220 days.  There are no other facts relevant to the issue of AWW in the record. </em>\r\nIf you can’t wait until the next installment for the answer, <em>see</em> <u>VIP Health Care Services Inc.</u>, 2015 NY Wrk. Comp. 0810813.','Average Wages?','','publish','closed','closed','','average-wages','','','2022-08-31 09:17:52','2022-08-31 13:17:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/average-wages/',0,'post','',0),(46481,2461,'2021-08-18 01:41:56','2021-08-18 05:41:56','','poop','','inherit','closed','closed','','poop','','','2021-08-18 01:41:56','2021-08-18 05:41:56','',46480,'/wp-content/uploads/sites/1503150/2015/08/poop.png',0,'attachment','image/png',0),(46482,25,'2015-08-05 00:00:00','2015-08-05 04:00:00','WE NOW HAVE THE NON-ACUTE PAIN TREATMENT GUIDELINES BUT WHAT DOES THAT MEAN?\r\n\r\nYou may be asking, why would the implementation of the Non-Acute Pain Treatment Guidelines even matter?  Why would you want to ensure a pain management treatment provider comes into compliance with the Non-Acute Pain Guidelines?  The answer is easy – it matters because of the cost.\r\n\r\nSignificantly, the Workers Compensation Research Institute (WCRI) reported in its publication <u>Interstate Variations In The Use Of Narcotics</u>, Second Edition, following an investigation of 25 states, that it found that New York and Louisiana had the highest amount of narcotic use within Workers’ Compensation cases.<a href=\"#_ftn1\" name=\"_ftnref1\">[1]</a>   A July 2014 report by the CDC indicates that each day 46 people die from an overdose of prescription painkillers in the United States.<a href=\"#_ftn2\" name=\"_ftnref2\">[2]</a>  Finally, as reported by the CDC in 2007, the costs of opioid abuse totaled “about $55.7 billion with 46% attributable to workplace costs (i.e. lost productivity), 45% to healthcare costs (i.e. abuse treatment), and 9% to criminal justice costs.” <a href=\"#_ftn3\" name=\"_ftnref3\">[3]</a>  Even the introduction to the Non-Acute Pain Guidelines indicates that the Guidelines were drafted in response to the dramatic increase in use of opioids to treat chronic non-cancer pain.  The significant cost of opioid medications is not only borne by carriers, but also by claimants.  The medication itself is expensive, the risks of use of these medications are significant; add to that the possibility of overdose, and the personal and financial costs become immeasurable.  All of these reasons fashioned the backdrop for the implementation of the Non-Acute Pain Treatment Guidelines.\r\n\r\nInitially, case files should be reviewed to determine whether or not a particular claimant is being treated for acute pain (treatment following an injury or surgery) or non-acute pain (pain that lasts longer than what would be considered normal healing).\r\n\r\nIf the claimant is currently being treated for acute pain, treatment is governed by the body-site-specific Medical Treatment Guideline.  By way of example, when the claimant undergoes a lumbar surgical procedure, Medical Treatment Guidelines for the low back provide that narcotics should be primarily reserved for the treatment of severe back pain with the optimum duration of 3 to 7 days and a maximum duration of two weeks, with use beyond this period only in appropriate cases and any use beyond the maximum two weeks should be documented and justified based on the diagnosis and/or invasive procedures.  <em>See</em>, <u>New York State Workers’ Compensation Board, Mid And Low Back Injury Medical Treatment Guidelines</u>, Third Edition, September 15, 2014, Section D.7.g.  Pursuant to section D.7.g.i, routine use of opioids for acute, subacute, or chronic pain is not recommended.  However, the Guidelines do provide for limited use of opioids in acute situations when there is severe pain and, in conjunction, two or more efficacious treatment modalities.  <em>See</em>, § D.7.g.ii.  Finally, the body-site-specific Medical Treatment Guidelines specifically address when discontinuation is appropriate with one of the factors noted to be use beyond two weeks.  See, § D.7.g.ii.  The body-site-specific Guidelines also reference brief use following postoperative pain management, but again, note that use beyond 2 to 3 weeks for minor procedures, and 6 weeks for extensive surgical procedures, is the outside limit for use of opioids to treat acute pain.  <em>See</em>, § D.7.g.iii.\r\n\r\nBased upon the body-site-specific Medical Treatment Guidelines, pain management that lasts longer than 2 weeks in nonsurgical claimants, 2 to 3 weeks in minor surgical claimants, and 6 weeks for invasive surgical candidates would be governed by the Non-Acute Treatment Guidelines.  Arguably, there is a gray area for the few week period following the outer limits of allowed treatment based upon the provision in § D.7.g stating, “use beyond two weeks is acceptable in appropriate cases.”  Any use beyond maximum should be documented and justified based on the diagnosis and/or invasive procedures.”  However, once you reach the specific outer limits of the acute treatment phase, the treating provider that is prescribing the opiates should be contacted by written correspondence and advised that compliance with the Non-Acute Pain Treatment Guidelines is required.\r\n\r\nThis correspondence to the prescribing provider should be copied to all necessary parties and the Workers’ Compensation Board so there is compliance with WCB Subject No. 046-124 (November 24, 2003), which provides in relevant part, as follows:\r\n<blockquote>“Guidelines for Communications with Health Care Professionals”\r\nIn addition to strictly complying with the requirements of WCL § 13-a(6), 137(1)(b) and (c) and Board Rule 300.2(b)(11), parties and their representatives should make every effort to avoid even the appearance that they are attempting to influence the opinion of a health care professional.  Contact with health care professionals should be limited to relevant inquiries pertaining to a claimant’s condition and treatment.  Questions should be carefully crafted so as not to be ambiguous or suggest the response desired.\r\nAlso, to avoid even the appearance that they are not acting in good faith, parties and their representatives are required to send a copy of any written communication with a health care professional to the opposing parties and their legal representative.\r\n\r\nWCB Subject No. 046-124.</blockquote>\r\nTo ensure compliance with all appropriate statutory provisions, be sure to copy all necessary parties to the action (claimant, claimant’s counsel, Workers’ Compensation Board, etc.) and request information related to the provider’s pain management treatment being rendered.  To this end we recommend a few paragraphs addressing:\r\n<ul>\r\n 	<li>Who you are and why you’re writing the letter (demand the claimant’s treatment be brought into compliance with the Non-Acute Pain Medical Treatment Guidelines);</li>\r\n 	<li>Brief explanation of the Non-Acute Pain Guidelines, their effective date, and where the doctor can locate the Guidelines on the Board’s website;</li>\r\n 	<li>The specific provisions regarding existing prescriptions being brought into compliance with the new Guidelines (§ F.2.b.i), and the requirements for an examination under the new Guidelines (D.1 <em>et seq</em>.); and,</li>\r\n 	<li>A specific request that the next scheduled visit be a full assessment pursuant to the Non-Acute Pain Guidelines, and indicate that failure to comply will result in objections to the visit bill, as well as the prescribed medications, as allowed pursuant to Workers’ Compensation.</li>\r\n</ul>\r\nNow comes the fun part – you’ve sent your letter to the treating provider requesting compliance with the Non-Acute Pain Medical Treatment Guidelines and you’ve received your first billed treatment from that provider since your letter was sent.  So, it’s time to review the medical report for compliance with the Non-Acute Pain Guidelines.\r\n\r\nInitially, all providers, whether treating a claimant who has been prescribed opioid medications for the last 20 years or treating a newly injured claimant with pain management, are required to bring claimants into compliance with the Non-Acute Pain Guidelines.  <em>See</em>, Section F.2.b, New York State Workers’ Compensation Board, New York Non-Acute Pain Medical Treatment Guidelines, First Edition, September 15, 2014.  This is important because an objection can be filed to the treatment and the continuing medications based upon the provider’s failure to comply with the Non-Acute Pain Medical Treatment Guidelines.  However, it is important to keep in mind that the Guidelines do not provide for complete cessation of opioids, but rather a transition of the claimant’s prior medication regime to one that is in compliance with the standards of the Non-Acute Guidelines.  <em>See</em>, § F.2.b.i.  As such, although you can raise issue to continued medications by filing the appropriate objection, you cannot just stop payment of these medications in the absence of a judicial order.  (<strong><em>Practitioner’s point:</em> </strong>At this point, objections can be made to the doctor’s bill for noncompliance with the Non-Acute Pain Medical Treatment Guidelines, as well as any script the claimant seeks to fill following this appointment, if the provider has not indicated whether the treatment is for acute or non-acute pain.)\r\n\r\nSo, with that, we begin our review of the provider’s medical report to determine whether the provider is in compliance with the Non-Acute Pain Treatment Guidelines.  Initially, the provider is required to perform a medical evaluation that consists of three components: 1) history taking and physical examination; 2) personality/psychological and psychosocial; and, 3) diagnostic studies.\r\n\r\nWhen reviewing the medical report for the history taking and physical examination, the doctor should address: 1) pain history, history of present illness; 2) past medical history; and, 3) conduct a physical examination.  <em>See,</em> § D.1, <em>et seq</em>.  The Guidelines specifically state, “medical records should document the following,” and then layout 16 criteria for pain history and history of present illness – 13 criteria for past medical history and 9 criteria for the physical examination.  Based upon the specific language in the Guidelines that, “the medical records <strong><u>should</u></strong> document the following,” the provider should comment on substantially all of the criteria within his or her report.  (<strong><em>Practitioner’s point:</em></strong> At this point, objections can be made to the doctor’s bill for noncompliance with the Non-Acute Pain Medical Treatment Guidelines, as well as any script the claimant seeks to fill following this appointment, if the provider fails to document the required criteria.)\r\n\r\nWhen reviewing the medical report for personality/psychological and psychosocial, the Guidelines state, “a psychiatrist or psychologist should perform a clinical evaluation, which includes” a history of the injury (nine separate criteria); health history (five separate criteria); psychosocial history (11 separate criteria); mental status exam; assessment of danger posed to self or others; test results from psychological testing if same are performed; current psychiatric diagnosis; pre-existing psychiatric conditions; and treatment recommendations with “specific goals, frequency, time frames, and expected outcomes.”  <em>See</em>, § D.2.a.  The Guidelines even go so far as to make recommendations in Appendix B for specific psychometric testing to assist in a patient assessment.  (<strong><em>Practitioner’s point:</em></strong> At this point, objections can be made to the doctor’s bill for noncompliance with the Non-Acute Pain Medical Treatment Guidelines, as well as any script the claimant seeks to fill following this appointment, if the provider fails to document the required criteria.)\r\n\r\nWhen reviewing the medical report for diagnostic studies, obviously existing tests should be referenced, or recommendations for further testing stated, pursuant to the body-site-specific Medical Treatment Guidelines.  <em>See</em>, § D.3.  (<strong><em>Practitioner’s point:</em></strong> At this point, objections can be made to the doctor’s bill for noncompliance with the Non-Acute Pain Medical Treatment Guidelines, as well as any script the claimant seeks to fill following this appointment, if the provider fails to document the required criteria.)\r\n\r\nOnce the provider has properly done a full evaluation, the provider should state what method of treatment the provider plans to pursue, i.e. nonpharmacological, pharmacological, or surgically-implanted pain control.\r\n\r\nEach of the above treatment options is specifically governed by the Non-Acute Pain Treatment Guidelines with specific requirements for goals, frequency, time frames, and expected outcomes.  For the sake of brevity, these will not be restated herein, but should be referenced for each specific treatment a provider wishes to pursue per the Non-Acute Pain Treatment Guidelines.\r\n\r\nSome significant changes made by the Guidelines are that nutraceuticals (vitamins), topical, oral, and/or systemic compound medications are not recommended.  Moreover, the Guidelines make clear that brand-name drugs have no proof of increased efficacy over those of generic.  Skeletal muscle relaxants are not recommended unless for acute treatment, and hypnotics and sedatives are generally not recommended.  (<strong><em>Practitioner’s point</em></strong>: if the doctor seeks to treat with any of these, a variance will be required.  If the provider fails to submit a variance, same can be denied outright as not within the Guidelines.)\r\n\r\nA significant change to the Guidelines is that when considering opioid use in an opioid-naïve patient, certain criteria <u>must</u> be met before an opioid trial can be commenced.  The patient must fail pain management alternatives before opioids can be considered.  Specifically, § F.2.a.iv states:\r\n\r\n<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/08/pic-1.jpg\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/08/pic-1-300x115-1.jpg\" alt=\"pic 1\" /></a>\r\n\r\nAs such, in the situation of a new-to-opiates claimant, there must be failed pain management alternatives attempted by the provider prior to moving to pharmacological treatment with opioid medications.  (<strong>Practitioner’s point</strong>: Failure of the provider to make such a showing, or if the claimant has not undergone appropriate alternatives, an immediate objection to the billed treatment and an objection to any attempt to fill opioid medication should be filed.)\r\n\r\nIf the claimant has undergone pain management alternatives which have been unsuccessful and opioid medications are pursued, a trial is to be conducted.  <em>See,</em> § F.2.  A trial lasts 30 to 60 days, at which time there is to be demonstrated sustained improvement in function and pain with the patient monitored weekly.  The goal is a 30% reduction in pain, return to work, an increase in activities of daily living, no significant adverse side effects, and no aberrant drug-related behaviors.  <em>See</em>, § F.2.a.ii.  Significantly, this section makes clear that if the goals are not met within the 30 to 60-day period, the trial should be discontinued and opioids tapered/discontinued and an alternative approach taken to treating the pain.  The Guidelines further make clear that discontinuance should be done as soon as it becomes clear the patient is not responding to the treatment modality and that there is no requirement of a full 60-day trial period.  (<strong><em>Practitioner’s point</em></strong>: If the reports do not demonstrate improvement using the criteria noted above, an objection to treatment should be filed and the carrier should push for discontinuance/tapering if no improvement is demonstrated.)\r\n\r\nWhen a provider considers an opioid trial, they must determine the opioid risk for that particular patient by utilizing Table 2 at page 41 of the Guidelines.  The risk assessment consists of five questions, which yield a score depending on the answers.  That score creates a claimant’s risk assessment for opioid use.  Importantly, if the doctor is considering an opioid trial or even continued use of opioids in a patient that is being brought into compliance with the Non-Acute Guidelines, the assessment should be referenced in the provider’s medical report.  (<strong>Practitioner’s point</strong>: Failure to provide the opioid risk assessment in the medical report would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.)\r\n\r\nThe Guidelines also require that the patient complete a “Patient Informed Consent for Opioid Treatment Form” contained at Appendix F, which is signed by both the patient and the doctor.  Additionally, the Guidelines require the “Patient Understanding for Opioid Treatment Form” contained at Appendix G, which is again signed by the patient and the physician.  These forms are both required documents per the Non-Acute Pain Treatment Guidelines.  As these are Board-required forms, these forms should be filed with the Workers’ Compensation Board at the time the provider seeks to begin the opioid trial or continue opioid medications for a claimant being brought into compliance with the Guidelines.  (<strong>Practitioner’s point</strong>: A provider’s failure to submit one or both of these forms would be a proper basis to file an objection to the treatment and deny any opioid medication claimant attempts to fill per that evaluation/provider.)\r\n\r\nThere should also be indication in the report that I-STOP (NYS Internet System for Tracking Over-Prescribing-Prescription Monitoring Program).  This is as simple is indicating that I-STOP/PMP was consulted.  A provider, as of August 27, 2013, when writing prescriptions for schedule II, III, and IV controlled substances, is required by New York State to consult and report medications in these classes which are being prescribed.\r\n\r\nIf a trial is effective, the provider can then begin the transition from trial to long-term treatment with opioid medications.  At the time of the transition from trial to long-term use, a full reassessment/reevaluation is to be completed.  The failure of the provider to do a reassessment/reevaluation would be a valid basis to file an objection to the treatment and raise objection to continuing and transitioning the patient from trial to long-term opioid use.  Section F.2.b.ii provides the criteria necessary for a full reevaluation, which includes but is not limited to: physical and psychological assessment; appropriate referrals based upon complications of the clinical presentation; identifying concurrent non-opioid therapies which are appropriate; a schedule for monitoring and reevaluating the opioid use; compliance with federal and state standards; and, consideration of appropriate referrals for co-morbidities.\r\n\r\nThe Guidelines specifically limit the use of opioids to a maximum of two, consisting of a long-acting and short-acting opioid medication.  See, § F.2.c.ii.  When there is consideration of more than two opioids, a second opinion from a specialist who is Board-certified in addiction medication or pain medicine is strongly recommended.  (<strong>Practitioner’s point</strong>: there is no indication as to who is to obtain a second opinion, so arguably the carrier can schedule and demand compliance with this provision).\r\n\r\nPer the Guidelines, buccal-delivered medications (drugs which diffuse through tissues lining the mouth and enter directly into the bloodstream) “should not be used in this population.”  (<strong>Practitioner’s point</strong>: a denial should be filed if the practitioner fails to seek this treatment by variance.)\r\n\r\nOnce a patient has been on chronic opioid therapy, there should be a regular monitoring as well as reevaluation at each patient visit to measure the patient’s adherence and progress with treatment goals.  <em>See</em>, § F.3.a.  The Guidelines then lay out the criteria and factors a doctor should assess when performing this reevaluation.  See, § F.3.b.i.  Evidence of significant adverse effects requires the physician to reduce the opioid dose and reassess the patient.  See, § F.3.b.ii.  The Guidelines also provide, at page 50, Table 3, a detailing of adverse effects from opioids.  Obviously, a failure to decrease and reevaluate in the presence of these adverse effects, as well as a failure to complete reevaluations at each visit, would be a valid basis for objection to the treating provider’s medical bill and continued medication.  It would also be a valid basis to raise objection and seek litigation on continued opioid medications.\r\n\r\nFinally, depending on the risk assessment results, the doctor is required to do urine toxicology screenings.  The risk assessment determines how frequently the screenings are to be completed. Per the Non-Acute Guidelines, the provider must affirm the findings of the urine toxicology screening in his report, but the screening is not to be released to the carrier, employer, or the Workers’ Compensation Board.  <em>See</em>, F.3.d.ii.  Finally, a patient can refuse a urine drug test, but once refused, will receive no further prescriptions for opioid medications as a consequence of the refusal.  (<strong>Practitioner’s point</strong>: If a claimant refuses a urine toxicology screening, medications should be denied if prescribed at that appointment.)\r\n\r\nIt is significant that Section F.3.d.ii specifically notes that the results are not be disclosed, as this demonstrates that the other required forms and assessments are required to be disclosed, as there is no such specificity stated in the Guidelines for those forms and tools.\r\n\r\nHere, it is clear that there is significant room for error when a provider is treating for non-acute pain.  The reports of these providers should be reviewed carefully, and any and all objections raised immediately.  It is easier to ensure a claimant never receives opioid medications for non-acute pain than it is to attempt to limit, taper, or discontinue opioids once they have been started to treat non-acute pain.\r\n\r\nFinally, Section F.3.e.iii details the reasons to discontinue opioid medications, and Section F.3.e.iv provides the process to be followed for discontinuing and tapering a claimant’s opioid medications.  If a provider indicates that discontinuing and tapering of the claimant’s opioids is an appropriate process, then that weaning should be in compliance with the Non-Acute Pain Guidelines.\r\n\r\nIf you have any questions about the information contained in this article, or about the Non-Acute Pain Guidelines, please do not hesitate to contact me.\r\n\r\n<a href=\"#_ftnref1\" name=\"_ftn1\">[1]</a> https://thelomad.com/getmad.today/wp-contentwww.wcrinet.org/result/use_narcotics2_result.html.\r\n\r\n<a href=\"#_ftnref2\" name=\"_ftn2\">[2]</a> https://thelomad.com/getmad.today/wp-contentwww.cdc.gov/vitalsigns/opioid-prescribing/\r\n\r\n<a href=\"#_ftnref3\" name=\"_ftn3\">[3]</a> https://thelomad.com/getmad.today/wp-contentwww.cdc.gov/drugoverdose/data/overdose.html','Non-Acute Pain Treatment Guidelines','','publish','closed','closed','','non-acute-pain-treatment-guidelines','','','2022-08-31 09:17:52','2022-08-31 13:17:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/non-acute-pain-treatment-guidelines/',0,'post','',0),(46483,1251,'2021-08-18 01:41:58','2021-08-18 05:41:58','','AdobeStock_448704256_Preview','','inherit','closed','closed','','adobestock_448704256_preview','','','2021-08-18 01:41:58','2021-08-18 05:41:58','',6,'/wp-content/uploads/sites/1503150/2021/08/AdobeStock_448704256_Preview.jpg',0,'attachment','image/jpeg',0),(46485,2461,'2021-08-18 01:42:06','2021-08-18 05:42:06','','pic-1-300x115-1','','inherit','closed','closed','','pic-1-300x115-1','','','2021-08-18 01:42:06','2021-08-18 05:42:06','',46482,'/wp-content/uploads/sites/1503150/2015/08/pic-1-300x115-1.jpg',0,'attachment','image/jpeg',0),(46486,25,'2015-08-03 00:00:00','2015-08-03 04:00:00','Here is a quiz to test your NY Workers’ Compensation knowledge.  Do you have MAD skills?  Answers will be published as a separate post in one week.  To obtain an answer key immediately, contact <a href=\"mailto:mday@getMAD.today\" target=\"_blank\" rel=\"noopener\">mday@getMAD.today</a>.\r\n<ol>\r\n 	<li>What is the Special Funds WCL § 15(8)(d) reimbursement form and what are the time frames for seeking reimbursement once WCL § 15(8)(d) is established?</li>\r\n 	<li>What is the percentage of medical impairment for a claimant whose provider has opined a Class II severity E impairment?</li>\r\n 	<li>What are the three exceptions to written notice under WCL § 18?</li>\r\n 	<li>When do the medical treatment guidelines apply?\r\n<ol>\r\n 	<li>When claimant lives in state and the doctor treats in state?</li>\r\n 	<li>When claimant lives out of state and the doctor treats in state?</li>\r\n 	<li>When claimant lives in state and the doctor treats out of state?</li>\r\n 	<li>When claimant lives out of state and the doctor treats out of state?</li>\r\n</ol>\r\n</li>\r\n 	<li>What is needed in a chiropractor’s report for there to be a well-documented exacerbation to allow for treatment in the absence of a variance?</li>\r\n 	<li>Under what circumstances can a carrier deny a variance without contrary medical evidence?</li>\r\n 	<li>If the carrier commences payment of temporary compensation without admitting liability pursuant to WCL § 21-a, how much time does it have to electronically file a notice of controversy before it would be deemed to have admitted liability for the claim and a decision would be issued establishing the claim?</li>\r\n 	<li>An IME report must be filed within 10 business days after the examination with the Board. Does a holiday within the period count as a business day and does only a holiday that falls on the 10<sup>th</sup> day count as a holiday that requires that the IME report be submitted on the next business day?</li>\r\n 	<li>If a claim is not controverted, when is a SROI late and what is the penalty?</li>\r\n 	<li>What is the significance of the filing of notice of indexing?</li>\r\n 	<li>When the employer or carrier is under a direction to continue payments to the claimant following a hearing or issuance of a decision pursuant to rule 300.23, it is permissible to suspend benefits without a hearing under certain circumstances. True or false?</li>\r\n 	<li>How are actual reduced earnings calculated?</li>\r\n 	<li>When can MMI be determined?</li>\r\n 	<li>How long does a self-insured employer have to make the mandatory deposit into the ATF following classification with a PPD for a claim with a date of accident after 7/1/07?</li>\r\n</ol>\r\nGood luck and have fun!','Test Your NY Workers’ Compensation Chops','','publish','closed','closed','','test-your-ny-workers-compensation-chops','','','2022-08-31 09:17:52','2022-08-31 13:17:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/08/test-your-ny-workers-compensation-chops/',0,'post','',0),(46488,2461,'2021-08-18 01:42:12','2021-08-18 05:42:12','','pic-1','','inherit','closed','closed','','pic-1','','','2021-08-18 01:42:12','2021-08-18 05:42:12','',46482,'/wp-content/uploads/sites/1503150/2015/08/pic-1.jpg',0,'attachment','image/jpeg',0),(46489,25,'2015-07-21 00:00:00','2015-07-21 04:00:00','WCL §13-f only permits treatment of workers compensation claimants by physicians or other qualified individuals authorized by the statute.  WCL §13-m(2)(a) identifies individuals who are considered qualified to provide psychological care to injured workers and limits that treatment to persons who are qualified licensed psychologist upon the referral from a physician.  Hence, the board has repeatedly held that social workers are not authorized medical providers under the WCL.\r\n\r\nNonetheless, social workers may treat and be paid for their services if performed under the direct supervision of a medical doctor/psychiatrist.  <em>See</em> Office of Children and Family, 2014 NY Wrk Comp G026 8017 (June 13, 2014).\r\n\r\nWhat if the social worker performs the services under the supervision of a psychologist?\r\n\r\nWhether bills for the treatment will be found compensable appears to hinge on whether the referral to the psychologist in the first instance complied with WCL §13-m(2)(a) .  That section requires that psychotherapy be initiated upon the referral of an authorized physician. As a result, where a chiropractor referred a claimant for psychotherapy, and a licensed social worker then treated the claimant under the supervision of that psychotherapist, objections to medical bills were found in favor of the carrier because a chiropractor is not an authorized physician pursuant to WCL §13-m(2)(a). <em>See </em>Bletsas Plumbing &amp; Heating, 2014 N.Y.Wrk.Comp. G042 6651 (7/2/14).','Liability for Treatment by Social Workers','','publish','closed','closed','','liability-for-treatment-by-social-workers','','','2022-08-31 09:17:52','2022-08-31 13:17:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/07/liability-for-treatment-by-social-workers/',0,'post','',0),(46492,25,'2015-07-13 00:00:00','2015-07-13 04:00:00','A work-related injury that prevents a claimant from working could qualify the claimant for awards at the temporary total disability (TTD) rate.  The claimant’s treating provider is expected to establish if the claimant is temporary totally disabled and should express his opinion in his medical reports.\r\n\r\nShould the carrier disagree with the treating provider’s opinion the carrier can schedule an IME, in compliance with WCL § 137 and 12 NYCRR § 300.2, to reassess the claimant’s degree of disability.\r\n\r\nTemporary total disability becomes especially relevant when the claimant suffered a schedulable injury.  WCL § 15 provides for an enhanced schedule loss of use award when the claimant’s temporary total period of disability exceeds that what is considered the normal healing period for the injury to the claimant’s body part.\r\n\r\nTherefore, a determination of temporary total disability could have a significant impact on a claimant’s SLU award.  What is less clear is what the criteria for temporary total disability are?  Is it speculative and dependent on the treating provider’s subjective disposition?  Or, should there be demonstrable criteria that will guide the treating provider to an objective opinion that an IME, if requested, could confirm?\r\n\r\nTo be temporary “TOTALLY” disabled we picture a claimant in a wheelchair paralyzed and unable to function without assistance.  But, in reality the picture is frequently very different and often as follows:\r\n\r\nThe claimant jump up and made his way to the door of the court room.  He appeared healthy and happy.  There was no sign of any kind of impairment and we had to consult our file to reaffirm the injury.  On his C-3 the claimant claimed that a piece of steel fell on his right finger cutting it. The claimant only noted a right pointer finger injury.\r\n\r\nHowever, on his C-3 a month later he alleged that a piece of steel fell, causing him to fall with it.  He not only stated that he cut his finger, he also alleged injuries to his lower back.\r\n\r\nWithout reference to any objective criteria or observations (in fact, X-rays were negative), but simply referring to and reiterating the claimant’s allegations as to his condition, the treating physician confirmed the claimant’s claim that he was temporary totally disabled.\r\n\r\nAs said above, the determination of temporary total disability falls for the most part, at least initially, within the province of the claimant’s treating provider.  However, there seems to be a lack of guidance and demonstrable formulated criteria to assist treating providers to objectively determine temporary total degree of disability, especially with regard to injuries to the extremities.\r\n\r\nThe 1996 Medical Impairment Guidelines provide objective criteria to assess a claimant’s degree of disability.  However, these guidelines focus on the assessment of degree of disability relative to back injuries.  Furthermore, the 1996 Guidelines were replaced by the 2012 Guidelines which went into effect on Januarys 2012.\r\n\r\nThe 2012 Guidelines provides criteria for the evaluation of permanent disabilities, but it does not refer to temporary disabilities.\r\n\r\nIn order to make a determination of total disability, Section “G” of the 1996 Medical Impairment Guidelines provides five additional objective criteria that should, over and above the criteria used to evaluate marked partial disability, be present.  The criteria for total disability include:  1) Use of an assistive device to ambulate for more than two years duration;  2) Needs assistance to undress or disrobe and unable to get up to the examination table without assistance;  3) Needs assistance to perform activities of daily living such as self-care, personal hygiene and transportation;  4) Severe neurological deficit such as marked muscle weakness, paraplegia, and paraparesis;  5) Disturbance of bladder, bowel and/or sexual function.  See, Medical Guidelines June 1996 p. 27.\r\n\r\nIt is well established that differing medical opinions is a matter that is within the New York Workers’ Compensation Board’s discretion to resolve. See <u>Matter of Raffiani v. Allied Sys</u>., Ltd., 27 A.D.3d 983 (2006)  and <u>Ciafone v. Consolidated Edison of N.Y</u>., 54 A.D.3d 1135 (3<sup>rd</sup> Dept. 2008).\r\n\r\nIn <u>Medicab/Rochester Inc.</u> the Board Panel, confronted with contrasting medical opinions, considered the 1996 Medical Impairment Guidelines to evaluate degree of disability finding that the claimant did not in fact had a temporary total degree of disability, but a temporary partial disability. <u>Medicab/Rochester Inc., </u>2015 NY Wrk Comp. 0990585.\r\n\r\nIn another recent Full Board Review, the claimant’s chiropractor continued to opine a TTD.  However, he testified that the claimant did not require an assistance device to walk, did not need assistance to get on the examination table and he had no knowledge of any bladder, bowel or sexual dysfunction.  No issues with the claimant’s ability to sit, walk or perform daily activities such as driving, cooking, cleaning or personal hygiene was indicated.  Consequently, the Board found that the claimant was not temporary totally disabled. <u>Matter of Our Lady of Victory Baker,</u> 2015 NY Wrk. Comp. 0730636.\r\n\r\nIn <u>Wakefern Food Corp NY</u>, the Board found that the claimant’s provider admitted under testimony that she “elicited inadequate and/or limited information from the claimant in reference to whether the claimant satisfies several of the criteria for a total disability finding as set forth in the Board’s 1996 Medical Guidelines.” As a result the Board found her testimony of temporary total disability unpersuasive. <u>Wakefern Food Corp NY,</u> 2015 NY Wrk. Comp. 30505506.\r\n\r\nAll the case law referenced above involved claims with back injuries.  Would it not be more efficient if there were definite criteria for treating providers to use to determine temporary degree of disability, especially where injuries could result in SLU awards?  Medical opinions based on objective criteria could significantly reduce the amount of independent medical examinations and subsequent litigation on degree of disability.\r\n\r\nTherefore, medical providers are advised to objectively evaluate their patients and, according to the NY Workers’ Compensation Board website, continue to determine temporary disability as they have done before the implementation of the 2012 Guidelines.','MDs, JDs AND TTDs','','publish','closed','closed','','mds-jds-and-ttds','','','2022-08-31 09:17:52','2022-08-31 13:17:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/07/mds-jds-and-ttds/',0,'post','',0),(46493,25,'2015-07-01 00:00:00','2015-07-01 04:00:00','For this week’s blog post, I decided to pull a case from the archives in honor of our Day of Independence.  In honor of the upcoming holiday, and in hopes that it will be a guiding principle throughout your Fourth of July events and the year to come, we review the case of <u>East Village</u>, 2014 NY Wrk. Comp. LEXIS 3639, 061 7908 (Carrier ID No. – W207633).\r\n\r\nIn <u>East Village</u>, the claimant filed a C-3 in August 2012 which alleged that he fractured his ankle on July 4, 2012, while working as a building superintendent.  The claimant further indicated that he was supervising tenants and guests when he fell down a staircase.\r\n\r\nThe carrier fully controverted the claim alleging no accident arising out of and in the course of employment and that the claimant willfully intended to bring about the injury pursuant to WCL § 10.  The carrier based its WCL § 10 defense upon the fact that prior to the altercation which resulted in the injury, the claimant’s dog had been struck by a firework that one tenant threw off the roof.\r\n\r\nThe claimant and his fiancée testified on the claimant’s behalf.  However, the claimant’s supervisor/employer failed to appear at the hearing, advising that he did not feel it important enough to show up to testify.  Based upon the employer’s failure to appear, the judge did find a negative inference.\r\n\r\nThe claimant’s testimony, which was bolstered by his fiancée, supplied the following facts to the claimant’s case: (1) that the claimant contacted his supervisor to advise that there were tenants and guests throwing fireworks off the roof and that the claimant’s supervisor instructed the claimant to ignore the events taking place on the roof and clean up the mess the next day; (2) that the claimant’s dog had been struck by a firework thrown from the roof and that was when the claimant went up to the roof and instructed the tenants and guests to leave the roof; (3) those individuals did clear the roof as requested and the claimant went back downstairs to get a garbage bag so he could clean the roof area; (4) on his way back to the roof to clean, he encountered four people which were guests of a tenant; and, (5) when he told the individuals he was going to call the police, one man knocked the cell phone out of the claimant’s hand and the claimant attempted to physically restrain the man and both fell down the stairs resulting in the claimant’s injury.\r\n\r\nIn analyzing the facts of the claim, the Board did note that under “Workers’ Compensation Law an accidental injury must have arisen out of and in the course of employment.”  The presumption was also addressed by the Board that accidents which arise in the course of employment are presumed to arise out of such accident and that this presumption is rebuttable only by substantial evidence to the contrary.  Finally, the Board also analyzed WCL § 21(1) noting that an assault that occurs at work is presumed to arise out of employment unless there is substantial evidence that it was “motivated by purely personal animosity.” [<em>Internal citations omitted</em>].\r\n\r\nThe Board ultimately determined that the claim was compensable.  In reaching its Decision, the Board found that the claimant did concede that one of the individuals on the roof threw a firework that struck his dog, but that the assault which occurred on the stairs happened not due to the confrontation over the dog incident, but after the claimant told the people on the roof he was going to call the police.\r\n\r\nUsing these facts, the Board found the claim compensable based upon the nexus between the claimant’s work activities as the superintendent of the property and the assault occurring as he was in the process of going to clean the roof in fulfilment of those work activities.\r\n\r\nDo you think the Board was correct?\r\n\r\nAs a carrier’s representative, stressing the importance of an employer testimony is always a top priority so that the witness fully appreciates the significance of their presence at the Workers’ Compensation hearing.  Do you think the Decision would have been different if the employer had testified?\r\n\r\nHope you have a safe and happy holiday and that this holiday your hot dogs are <em>Ball Parks</em>.\r\n\r\n<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/07/Hot-Dog-Dog-Costume1-300x196-1.jpg\"><img src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/07/Hot-Dog-Dog-Costume1-300x196-300x196-1.jpg\" alt=\"Hot-Dog-Dog-Costume1-300x196\" /></a>\r\n\r\nHappy Fourth of July from The Law Offices of Melissa A. Day, PLLC!','HOT DOGS OR HAMBURGERS?','','publish','closed','closed','','hot-dogs-or-hamburgers','','','2022-08-31 09:17:52','2022-08-31 13:17:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/07/hot-dogs-or-hamburgers/',0,'post','',0),(46495,2461,'2021-08-18 01:42:57','2021-08-18 05:42:57','','Hot-Dog-Dog-Costume1-300x196-300x196-1','','inherit','closed','closed','','hot-dog-dog-costume1-300x196-300x196-1','','','2021-08-18 01:42:57','2021-08-18 05:42:57','',46493,'/wp-content/uploads/sites/1503150/2015/07/Hot-Dog-Dog-Costume1-300x196-300x196-1.jpg',0,'attachment','image/jpeg',0),(46496,25,'2015-06-29 00:00:00','2015-06-29 04:00:00','IMEs are vital in the defense of most workers’ compensation claims, and the legislature and Board has spent a great deal of effort to ensure their impartiality and uniformity; at least for timely service on all the parties.  A lesser known aspect of both the Workers’ Compensation Law, and the regulations, is that these examinations can be videotaped by one, or both, parties.  To lay it all out, we need to start, surprisingly, with the regulations, not the WCL.\r\n\r\n12 NYCRR § 300.2 (d)(7) entitled “Conduct at Examination” specifically permits either the examinee or the examiner the “right” to videotape an examination:\r\n\r\n(7) Conduct at examination. The claimant or the examiner may videotape or otherwise record the examination. An independent medical examiner may not refuse to conduct an independent medical examination because the claimant intends to videotape or otherwise record such examination when the claimant has appeared for such examination as scheduled. The claimant and the independent medical examiner and their agents shall not alter or misrepresent the content of the recording and shall not distribute publicly the recording beyond its use in a hearing of the Board. The claimant may be accompanied to the examination by an individual or individuals of his or her own choosing. However, neither the examiner nor the claimant may disrupt or interfere with the examination by such recording or as a result of the presence of such companion or companions.\r\n\r\nJumping back up to the WCL,  § 137(7) is clear that an employer/carrier and/or the examiner must give the same seven-business-day notice of the intent to record the examination as of the examination itself.  Board form IME-5 contains a handy check-box for that purpose.\r\n\r\nA claimant, however, is bound by no such notice requirement. 12 NYCRR § 300.2 (d)(7) says that a claimant can record his or her own examination, but it makes no mention of any need to give advance notice to the consultant or the employer/carrier, and the Board has picked up on that distinction. <em>See  </em><u>Nautica Enterprises</u>, 2014 NY Wrk. Comp. 0383137.\r\n\r\nOne can imagine that having a video camera – or in the 21st century an iPhone – whipped out moments before he or she is going to begin an examination could unnerve even the stoutest consultant. A few have gone so far as to refuse to allow the recording, leading to a line of cases confirming that, although emanating from a regulation alone, a claimant has a “right” to videotape an exam and the consultant’s refusal to allow such a recording is sufficient grounds to support preclusion of the IME report. <em>See e.g.</em> <span style=\"text-decoration: underline;\">Urban Foundation Engineering</span>, 2014 NY Wrk. Comp. 0683989; <u>Bottling Group LLC</u>, 2013 NY Wrk Comp 0503117; <u>Dept of Buildings</u>, 2013 NY Wrk. Comp 0423387.\r\n\r\nIf the consultant’s refusal to permit videotaping prevents the exam from even taking place, a carrier may be given additional time, or another opportunity to produce an exam provided that they move quickly and make substantial efforts to timely reschedule the IME.  <span style=\"text-decoration: underline;\">St Regis Hotel</span>, 2013 NY Wrk. Comp. 00421340 (the “right to videotape is absolute and disallowing the claimant this right was the consultant’s direct noncompliance with the law, but is not tantamount to waiver by the carrier”).\r\n\r\nSurprisingly, (or unsurprisingly depending upon what side of the bar your practice on) a claimant, apparently, need never give notice that he or she is recording an examination; or at least not give notice until they intend to produce the footage and submit it into evidence.  In <u>NYC Housing Authority</u>, 2015 NY Wrk. Comp 0768798.  claimant’s sister, who was also present at an IME, surreptitiously, and without the knowledge of the consultant, videotaped the entire examination.  Notice of that recording was not given until two months later, after defense counsel had opened litigation on the issue of ongoing disability premised upon that consultant’s report.  The WCLJ directed the claimant to turn over a copy of the video to defense counsel, but due to a failed mailing, defense counsel and the carrier were not provided with the footage, or even able to view it, until a second hearing, held nearly a month later, which was scheduled for oral summations on the pending issues.  The WCLJ ruled that the IME was not credible based in part on the footage, which apparently raised some doubt as to whether certain body sites were actually examined.   On appeal, the Board found nothing wrong with claimant’s late notice, and even excused the failed mailing noting that “the WCLJ acted within the scope of discretion by allowing the video to be admitted into evidence.”\r\n\r\nTo recap, if a consultant refuses to allow video recording, that IME will likely be precluded.  But what if a claimant refuses to be taped?  Case law is eerily silent on that specific issue.  However, the Board has been consistent that a claimant has a “statutory duty to attend an exam by the carrier’s consultant”  and that a employer/carrier can obtain a suspension of benefits where a claimant’s activities “frustrate[] the employer’s or carrier’s right to engage an independent medical consultant.”   <u>Jet Blue Airways Corporation</u>, 2013 NY Wrk Comp 00451162; <u>NYC Health and Hospital Corp</u>, 2014 NY Wrk Comp 0770787 <em>citing </em><u>Matter of Jasime v. Rainbow Grill</u>, 115 AD2d 862 (3d Dept 1985). <span style=\"text-decoration: underline;\">Dept. of Parks and Recreation</span>, 2013 NY Wrk. Comp. 0206209 (pursuant to WCL § 13-(a)(4) the claimant is not entitled to awards where appearing at IMEs but refusing to allow examination of certain body sites in issue at those exams).\r\n\r\nSo, will your next IME be a Box Office hit, or will it go bust?','IMEs : The Next Summer Movie Blockbuster or Just Another IME Gone Bust?','','publish','closed','closed','','imes-the-next-summer-movie-blockbuster-or-just-another-ime-gone-bust','','','2022-08-31 09:17:52','2022-08-31 13:17:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/06/imes-the-next-summer-movie-blockbuster-or-just-another-ime-gone-bust/',0,'post','',0),(46498,2461,'2021-08-18 01:43:05','2021-08-18 05:43:05','','Hot-Dog-Dog-Costume1-300x196-1','','inherit','closed','closed','','hot-dog-dog-costume1-300x196-1','','','2021-08-18 01:43:05','2021-08-18 05:43:05','',46493,'/wp-content/uploads/sites/1503150/2015/07/Hot-Dog-Dog-Costume1-300x196-1.jpg',0,'attachment','image/jpeg',0),(46499,25,'2015-06-14 00:00:00','2015-06-14 04:00:00','New York State Workers’ Compensation Board’s Regulatory Agenda May Include Significant Changes to Limit an Employer’s Right to Cross-Examination.\r\n\r\nAlmost two weeks ago I published a copy of the Board’s Regulatory Agenda on my group, New York Workers’ Compensation Forum. Among the items in the agenda was the following proposed change:\r\n6. Add a new part 300.39 to establish rules for the cross-examination of medical witnesses and to repeal section 300.10(c).\r\n12 NYCRR §300.10(c), as most defense attorneys know, is one of the last tools remaining in our dwindling tool chest. It requires a judge to permit an employer or carrier to cross examine a claimant’s doctor:\r\n(c) When the employer or its carrier or special fund desires to produce for cross-examination an attending physician whose report is on file, the referee shall grant an adjournment for such purpose…\r\nThe Board has not yet published a draft of the regulation it intends to propose so we do not yet know what the new rule will require. However, in 2010, a similar change was contemplated and a draft of a new regulation, to be implemented after repeal of 300.10(c), was circulated by organizations like WorkComp Central and the NY Business Council.\r\n\r\nThe 2010 draft regulation would have created procedural requirements like filing a written request to cross examine a physician whose report is in eCase within 45 days of the filing of the report. It would also give the judge the power to “determine whether the requested cross-examination is reasonably necessary for the full presentation of the case or issue.” Additionally, appeals of a denial would be considered interlocutory.\r\n\r\nA copy of the 2010 draft is reproduced below and can also be found at the following link: <a href=\"https://thelomad.com/getmad.today/wp-contentwww.bcnys.org/inside/wc/2010/crossexamregs.pdf\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.bcnys.org/inside/wc/2010/crossexamregs.pdf</a>.\r\n\r\n300.39 Cross examination of medical witnesses in accepted or established claims.\r\n(a) All requests for cross-examination of a treating medical provider, independent medical examiner, or a physician designated by the Board to examine a claimant pursuant to section 13(e) of the Workers’ Compensation Law, shall be made in writing using the form prescribed by the Chair to request further action or on the record at a hearing no later than forty-five days from the date the Board received the medical report(s) which is the subject of the cross-examination. All requests shall specify\r\n(1) the name and address of the medical witness the party requests to cross-examine;\r\n(2) the date of the report(s) which forms the basis for the cross examination, and\r\n(3) the basis for requesting cross-examination, including any specific facts reasonably likely to be elicited on cross-examination that would undermine the witness’s medical opinion relative to the report(s).\r\n(b) Except as provided in Workers’ Compensation Law Section 13 (e), the Workers’ Compensation Law Judge shall determine whether the requested cross-examination is reasonably necessary for the full presentation of the case or issue. If a party identifies specific evidence that, if credited by the Worker’s Compensation Law Judge, would likely result in rejection of the witness’s medical opinion, cross-examination shall be granted. If a party fails to timely request cross-examination or to identify specific evidence that would likely result in rejection of the witness’s medical opinion, cross-examination shall be denied. Where the party has produced a medical opinion that contains a viable difference from or is contrary to the witness’s medical opinion with respect to the particular issue to be determined, the party shall presumptively be entitled to cross-examination.\r\n(c) Cross-examination shall be taken at a hearing or by deposition within forty-five days of the order granting the cross-examination; provided however that if the claimant is not represented by legal counsel, the cross-examination shall be taken at a hearing.\r\n(d) If the medical witness for the insurance carrier fails to appear for cross-examination as scheduled, the insurance carrier’s right to introduce its independent medical report from the witness or to have the witness testify at a hearing or by deposition shall be deemed waived, unless the insurance carrier shows by affidavit good cause why the witness failed to appear, and that it acted in good faith and with due diligence.\r\n(e) If the medical witness for the claimant does not appear for cross-examination as scheduled, then an extension of time to take testimony shall be granted only where the Worker’s Compensation Law Judge finds that the witness could not have appeared within that period because of good cause, and that the party seeking the extension acted in good faith and with due diligence. If the extension is granted, the testimony shall be taken by deposition at the earliest date practicable but not more than thirty days after the date the witness was originally scheduled to testify. Such deposition may be taken by telephone. The insurance carrier is solely responsible for enforcing a subpoena to compel the appearance of the witness at the deposition. In the event that the insurance carrier fails to enforce a subpoena to compel appearance of the witness at the deposition, the report of the witness shall remain in evidence. For any such medical witness authorized by the Chair to treat or conduct independent medical examination of injured workers or both, the Board shall promptly direct the witness to appear at such deposition. If the medical witness does not appear at such deposition, the testimony of the witness shall not be rescheduled and the Chair shall take such action as deemed appropriate with respect to the witness’s authorization to treat or conduct independent medical examinations of injured workers or both.\r\n(f) Any order granting or denying cross-examination under this section shall be interlocutory and shall not be reviewable by the Board under Workers’ Compensation Law Section 23 until a final decision on the substantive disputed issue(s) has been made by the Workers’ Compensation Law Judge.\r\n(g) Requests for cross-examination under this section that have been instituted or continued without reasonable ground are subject to assessments under Workers’ Compensation Law Section 114-a (3) in addition to any other penalty permitted under the Workers’ Compensation Law.\r\n(h) For purposes of this section, “insurance carrier” shall include those entities under Workers’ Compensation Law Section 2 (12), the Uninsured Employers’ Fund under Workers’ Compensation Law Section 26-a (2), and the Fund for Reopened Cases under Workers’ Compensation Law Section 25-a (3).\r\nAs indicated by the Board in connection with its publication ‘in the NYS Register of its 2015 Regulatory Agenda you can get additional information or <strong>submit written comments</strong> concerning this and other items on the Regulatory Agenda by contacting Heather M. MacMaster, Associate Attorney, Workers’ Compensation Board, 328 State St., Schenectady, NY 12305-2318, (518) 486-9564, e-mail: <a href=\"mailto:regulations@wcb.ny.gov\" target=\"_blank\" rel=\"noopener\">regulations@wcb.ny.gov</a>.','WCB’s Regulatory Agenda May Include…','','publish','closed','closed','','wcbs-regulatory-agenda-may-include','','','2022-08-31 09:17:52','2022-08-31 13:17:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/06/wcbs-regulatory-agenda-may-include/',0,'post','',0),(46500,25,'2015-02-05 00:00:00','2015-02-05 05:00:00','WCL Section 52 (1)(D) states that:\r\n\r\nIf at any time an employer intentionally and materially understates or conceals payroll, or intentionally and materially misrepresents or conceals employee duties so as to avoid proper classification for calculation of premium paid to secure compensation, or intentionally and materially misrepresents or conceals information pertinent to the calculation of premium paid to secure compensation, such employer shall be deemed to have failed to secure compensation and shall be subject to the sanctions applicable to this section.\r\n\r\nThe “sanctions” laid out on the balance of the section include fines, penalties, stop-work orders, criminal prosecution and personal liability for all penalties and fines by the president, secretary and treasurer of the violating corporation.\r\n\r\nIn Urbano v. Bletsas Plumbing &amp; Heating, 2015 NY Slip Op 00416 (3d Dept. 2015) the Third Department considered this very provision of the WCL where the carrier raised WCL 52(1)(D) claiming that because Bletsas had defrauded it by underreporting the number of employees (one of which was the claimant) and paying those employees “off the books” the employer should be “deemed to have failed to secure compensation” and thus the UEF, and not the carrier, should be liable for the claim.\r\n\r\nThe Appellate Division unfortunately disagreed with the carrier’s interpretation of the phrase “deemed to have failed to secure compensation” holding that in context of the balance of WCL it was clear that the defense of “coverage” would only have been properly raised had the carrier timely cancelled coverage under WCL 54(5) before the work injury took place, and that the legislative history of this 2007 Amendment provision clearly illustrated that it was “designed to punish fraud perpetrated by the employer, not to rescind coverage or release the carrier from liability to an injured employee.”\r\n\r\nThe AD ruling in Urbano forces this carrier to cover a loss for a risk against which is received no premium. The remedy of an action commenced on the policy was unaddressed by the Court, but we would assume that the carrier’s chance of recovering from its insured is slim to none given that the penalties imposed by the Board for the fraud under WCL Sec. 52 are nondischargable and would prime any judgment lien the carrier could eventually obtain.','An Underwriting Nightmare Come True','','publish','closed','closed','','an-underwriting-nightmare-come-true','','','2022-08-31 09:17:52','2022-08-31 13:17:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/02/an-underwriting-nightmare-come-true/',0,'post','',0),(46501,25,'2015-02-05 00:00:00','2015-02-05 05:00:00','Occupational Hearing Loss claims are hard to defend. To prove injurious exposure to workplace noise, the standard of proof can be as low as a claimant’s testimony that his or her workplace was “loud.” Even where the employer has an extensive hearing conservation program, complete with mandatory hearing protection use, annual hearing tests, and, even complex soundmapping, a claimant testifying that his or her workplace was “loud,” even though he or she wore hearing protection, is enough, without a good defense, to establish an occupational hearing loss claim under the WCL.\r\n\r\nTherein lies the first real problem in defending a hearing loss claim: an employer’s preventative measures are guided by OSHA regulations which are specific –specific to the point of expressing “safe” decibel levels of exposure in time-weighted averages — and the WCL simply tells us the “injurious exposure” to loud noise causes hearing loss. Evidence about a workers’ regular use of hearing protection, according to case law, can be probative evidence on the issue of exposure, but as with almost every line of precedent issued by the Board, cases are fact sensitive. That fact is most clearly demonstrated by the Appellate Division’s ruling in Zham v. National Fuel, 72 AD3d 1311 (3d Dept. 2010). Zham is a rare example of an employer prevailing on an occupational hearing loss claim, by establishing that the claimant, a customer service representative who spent much of her day on the telephone, had not established that having customers “scream at her” on the phone for several hours a day was compelling proof of injurious exposure where the employer’s consultant opined that the hearing tests he conducted showed a loss of hearing inconsistent with noise exposure. The mantra of “good facts make good law” could not be better illustrated in this context.\r\n\r\nThis month, The Law Office of Melissa A. Day won a disallowance of an occupational hearing loss claim involving a 45-year employee of a large manufacturing employer who alleged hearing loss due to exposure to presses, grinding machines and other heavy fabricating equipment. The employer in this matter had taken painstaking efforts to implement and enforce an OSHA-compliant hearing conservation program and required all workers to utilize hearing protection “wall to wall” and conducted annual screenings and annual soundmapping to confirm that noise levels and sound-damping measures were safe for its employees. The claimant testified that for the bulk of her employment, she worked in a room adjacent to the plant floor that was “quiet” and she confirmed her normal workplace was comparable to the WCB courtroom where her testimony was being taken. Although the claimant testified she had spent time on a daily basis around the “loud” machines, she had strictly complied with the employer’s hearing conservation program and had worn hearing protection without fail for the last thirty years of her employment. Claimant’s treating physician found a minimal loss of hearing, while the employer’s consultant found even less hearing – less than 0% according to the Board’s formula.\r\n\r\nUnder cross-examination both doctor’s agreed that their hearing test results were nearly identical and well within any variation they would expect to see between any two hearing tests. The WCLJ, in a lengthy decision, noted that because the hearing tests were nearly identical, the claimant’s work history (exposure) was therefore “a critical factor in determining this claim.” The WCLJ went on to note that “The claimant did testify that she had spent . . . much of her recent time [at work] in an office setting” and that the treating physician’s history of exposure did not include the use of hearing protection for the last 30+ years, only the last 6, and there was insufficient evidence of a causally related occupational hearing loss.\r\n\r\nHearing Loss claims can be won, but what this case illustrates is that a well-coordinated defense is absolutely necessary; and marshalling the facts necessary to present a successful defense requires a close working relationship with the employer and its personnel. Good facts do make good law, but knowing your client is the only way to get either.','Hearing Loss becomes Hearing Win','','publish','closed','closed','','hearing-loss-becomes-hearing-win','','','2022-08-31 09:17:52','2022-08-31 13:17:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2015/02/hearing-loss-becomes-hearing-win/',0,'post','',0),(46502,25,'2014-11-24 00:00:00','2014-11-24 05:00:00','The Board has announced the adoption of the <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/hcpp/MedicalTreatmentGuidelines/Non-AcutePainMTG2014.pdf\" target=\"_blank\" rel=\"noopener\">Non-Acute Pain Medical Treatment Guidelines (“NAP MTG”)</a>. As with the other MTGs for the neck, back, knee, shoulder and carpal tunnel syndrome, there are 22 guiding principles which provide a general framework for all the MTGs. The emphasis is on FUNCTIONAL ABILITIES, OBJECTIVE EVIDENCE of the treatment’s efficacy and ACTIVE INTERVENTIONS. These guiding principles also apply to the NAP MTGs. Two surgical procedures which are directed at NAP are on the list of procedures which require prior authorization: implantation of a spinal cord stimulator and a pain pump.\r\n\r\nThe NAP MTGs employ a Biopsychosocial, not a Biomedical approach to addressing Non-Acute Pain. Thus there is extensive discussion in the NAP MTGs about evaluating and treating the many disciplines which may contribute to the employee’s Non-Acute Pain.\r\n\r\nThe NAP MTGs also discuss specific pharmacological treatments. For example, many employers and carriers will be thrilled to learn that compound creams are not recommended for the treatment of Non-Acute Pain. Additionally, buccally (via the lining of the mouth) delivered fentanyl products, like Actiq ® and Subsys ® are not recommended.\r\n\r\nOpioids are only continued after a successful trial and require demonstration of objective positive patient response and functional improvement. Urine drug testing based on the employee’s risk for potential abuse is evaluated is recommended, although the results are confidential and not to be shared with the employer, carrier or the Board. Weaning for a variety of clinical indications, i.e., evidence of abuse, lack of efficacy, hyperalagesia, side effects, etc., is discussed.\r\n\r\nThe bottom line is that treatment of chronic pain must now demonstrate objective results, both in pain reduction and improvement in function, not simply subjective reports of improvement in pain, to be implemented and continued. This appears to be very positive development to me.\r\n\r\nFor additional information, please feel free to <a href=\"mailto:mday@getMAD.today\" target=\"_blank\" rel=\"noopener\">contact us</a> for an in-house or online presentation about the new on-Acute Pain Medical Treatment Guidelines.','Non Acute Pain Medical Treatment Guidelines Offer a Framework for Controlling Costs Associated with Chronic Pain Management, Especially Opioid Use','','publish','closed','closed','','non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use','','','2022-08-31 09:17:52','2022-08-31 13:17:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/',0,'post','',0),(46503,25,'2014-11-23 00:00:00','2014-11-23 05:00:00','By decision drafted by Justice Pigott (Justices Read, Smith and Abdus-Salaam concur) the New York Court of Appeals affirms that the Workers’ Compensation Board did not exceed its statutory authority when it promulgated portions of the Medical Treatment Guidelines.\r\n\r\nThe facts involved a claimant who sustained injuries to her neck and back. The carrier of record was Special Funds Conservation Committee under the Fund for Reopened Cases (WCL § 25-a). The claimant was receiving acupuncture treatment three times per week for a period of six weeks in 2009. After the implementation of the Medical Treatment Guidelines the claimant’s Doctor sought authorization for three acupuncture treatments per week for a period of six months to the cervical and lumbar spine. In response to the newly created Medical Treatment Guidelines, claimant’s Doctor submitted two variance requests for the acupuncture treatment, one under the neck Medical Treatment Guidelines and one under the back Medical Treatment Guidelines.\r\n\r\nThe carrier in response to the variance requests obtained an independent medical examination [“IME”] that found further acupuncture treatments were not medically necessary. Based on the IME examiner’s findings the carrier denied both variance requests.\r\n\r\nThe claimant sought review by a Law Judge of the carrier’s denials.\r\nBoth medical providers then testified as to whether the variances should be granted or denied as to the additional acupuncture treatment. Claimant’s treating medical provider testified that the claimant had undergone other treatment modalities but that acupuncture was the only modality that helped maintain her functional level. The IME examiner testified that claimant’s treatment provider failed to meet the burden of proof when seeking the variance in that he did not include the claimant’s response to treatment or any improvement in her range of motion from the treatment.\r\n\r\nThe Worker’s Compensation law judge affirmed the carrier’s denials of the treatment determining that the provider failed to show that additional acupuncture treatments were medically necessary. The Law Judge specifically noted that the earlier treatments provided no evidence of objective improvement of functional outcomes.\r\n\r\nThe claimant filed an administrative appeal of the Law Judge’s decision, which ultimately affirmed the Workers’ Compensation Law Judge’s determination and further found that the variance application failed to meet the burden of proof in that there was no demonstration that additional acupuncture treatment was medically necessary within the Medical Treatment Guidelines.\r\n\r\nThe claimant appealed the board’s decision to the Third Appellate Department arguing: (1) the Board lacked the authority to promulgate the regulations and incorporate the guidelines; (2) the variance procedure improperly shifts the burden of proof to the claimant’s physician to prove medical necessity of a treatment modality; and (3) the Guidelines violate claimant’s due process rights to a meaningful hearing.\r\n\r\nUltimately, the Third Appellate Department affirmed holding\r\nthe Board acted within its legislatively conferred authority when it devised a list of preapproved medical care deemed in advance to be medically necessary for specified conditions, and did so in a manner consistent with Workers’ Compensation Law § 13(a) and overall statutory scheme.\r\n\r\nIn rendering its opinion the Third Appellate Department also held medical necessity and appropriateness are always prerequisites to an employer’s obligation to pay and the legislature purposefully conferred the authority on the Board to predetermine medical necessity for medical care, and its scope in duration, consistent with best medical practices.\r\n\r\nSignificantly, the Third Appellant Department in rendering this opinion also concluded that medical treatments falling outside the treatment guidelines are predetermined and presumed not to be medically necessary. See, Matter of Kigin v. State of N.Y. Workers’ Compensation Bd., 109 A.D.3d 299 (3 Dept. 2013)(Emphasis Added).\r\n\r\nThe claimant then sought leave to appeal to the Court of Appeals, which was granted. Matter of Kigin v. State of N.Y. Workers’ Compensation Bd., 22 N.Y.3d 854 (N.Y. 2013).\r\n\r\nThe Court of Appeals held that the Board’s promulgation of the guidelines was proper and lawful act. They held that the Board’s Act of creating the Guidelines was a reasonable supplement to WCL § 13 to promote an overall statutory framework intended to provide medical care to injured workers. Significantly, the New York Court of Appeals noted that the board was authorized to issue a list of pre-authorized procedures pursuant to WCL § 13-a. In rendering its analysis Court of Appeals commented that determination necessarily meant that the Board consider what is not best practice and what may not be medically necessary.\r\nThe Court of Appeals then noted for treatments not in accord with the medical treatment guidelines “may nevertheless be approved” through the variance process.\r\nIn response to the claimant’s argument that the Board’s Guidelines have shifted the burden of proof from the employer to the carrier the Court held that there was nothing with in the Worker’s Compensation Law that ever precluded the Board from requiring proof of medical necessity from the claimant’s health care provider. In fact, the Court of Appeals went further to noting that WCL § 13-a presupposes that the treating medical provider has already submitted a first opinion for the needed treatment. Regarding the presumption under WCL § 21(5), the Court of Appeals held that the presumption remains as to the facts contained in medical report, but that a claimant must first demonstrate medical necessity for the treatment.\r\n\r\nFinally, the Court of Appeals held the variance process does afford claimant’s meaningful opportunity to be heard on any denial of a variance and as such due process has not been denied.\r\n\r\nThere was a dissenting opinion drafted by Justice Riviera (Justices Lippman and Graffeo join). Justice Riviera would reverse the Appellate Division’s decision based on the variance scheme pre-determining that all treatment not included on the preauthorized list of services is presumptively not medically necessary, thereby imposing a burden on claimants that’s inconsistent with the statute’s language an underlying purpose of protecting workers.\r\n\r\nThe Court of Appeals has confirmed that the Board did have the authority to create the Medical Treatment Guidelines, that treatments not contained in the Medical Treatment Guidelines are predetermined and presumed to not be medically necessary, and that the burden of proof for medical necessity initially rests with the claimant’s treating medical provider.\r\n\r\nSee, <a href=\"https://thelomad.com/getmad.today/wp-contentwww.nycourts.gov/ctapps/Decisions/2014/Nov14/181opn14-Decision.pdf\" target=\"_blank\" rel=\"noopener\">Matter of Maureen Kigin, Appellant, v. State of New York Workers’ Compensation Board et al</a>., Respondents. No. 181. Argued 10/14/14 and Decided 11/20/14 .','In Kigin v. WCB, the Court of Appeals upholds the presumption that treatment outside the MTGs is not medically necessary and the attending physician has the burden of proof of the need for a variance.','','publish','closed','closed','','in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance','','','2022-08-31 09:17:52','2022-08-31 13:17:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-',0,'post','',0),(46504,25,'2014-11-22 00:00:00','2014-11-22 05:00:00','Following the Board’s decision in Matter of Longley Jones, 2012 NY Wrk Comp 60704882, which held that a claimant’s wages cannot be the sole factor for determining Loss of Wage Earning Capacity, a finding of a 0% Loss of Wage Earning Capacity seemed to be a thing of the past. Certainly judges stopped classifying claimants with having a 0% LWEC even when the claimant had returned to work earning in excess of the at injury AWW.\r\n\r\nThis month, The Law Offices of Melissa A. Day won a finding of a 0% Loss of Wage Earning Capacity against a claimant who sustained a neck and left shoulder injury in the course of his employment as a private security guard at a local amusement park. After undergoing a cervical fusion procedure, the claimant was ultimately able to return to work at his primary employment as a deputy sheriff without a loss of earnings; and in fact was earning more than he was before the accident. While litigating the issue of Loss of Wage Earning Capacity, the claimant produced an FCE indicating that he was capable of what the Board defines as medium, and some heavy-duty work but that he could “safely perform all the critical work demands required for the job of Deputy Sheriff.” The claimant’s treating physician opined a permanent impairment under Table 11.2, Severity E and also opined a physical capability of “medium to heavy demand work.” The Carrier’s consultant opined an impairment under Table 11.2, Severity B and also agreed the claimant could perform medium to heavy work.\r\n\r\nAt the hearing level, the WCLJ classified the claimant with a physical impairment, severity “E” and ruled that the claimant sustained a 35% loss of wage earning capacity when considering his age, education, English proficiency, work experience and present employment, even though he was presently suffering no loss of earnings as a result of the accident.\r\n\r\nOn appeal, The Law Office of Melissa A. Day argued that the credible and unanimous medical evidence indicated that the claimant’s injuries did not prevent him from returning to his pre-injury work duties, and he was, in fact, earning more income after the accident than he was before. It was further argued that the 35% LWEC was by default an “arbitrary and capricious” ruling insofar as the Board has failed to provide any rational method for converting the severity of the medical impairment and the vocational factors of any one claimant into a percent loss of wage earning capacity. In failing to do so, the Board was forcing the parties to take a “blind leap across an inscrutable chasm filled with the various factors” and to thereafter arrive at a completely arbitrary loss of wage earning capcaity that could never be properly quantified.\r\n\r\nThe Board, in reversing the WCLJ, concluded that the claimant’s age, education and work experience were factors that should have “a mitigating impact on [the claimant’s] loss of wage earning capacity.” The Board went on to cite Matter of Longley Jones, 2012 NY Wrk Comp 60704882 for the proposition that post-accident earnings could not be the sole factor considered in assessing a claimant’s LWEC, but went on to rule that “this does not mean that a permanent partially disabled claimant’s wages at the time of classification are irrelevant. They are an important factor . . .”\r\n\r\nThe Board concluded that the claimant suffered from a 0% loss of wage earning capacity ruling that “the evidence indicates that the claimant was able to perform all his critical work demands, had the ability to perform medium to heavy work, and has returned to work without loss of wages, warrant an conclusion that the claimant had a 0% loss of wage earning capacity.” In so ruling, the Board distinguished FedEx Express, 2014 NY Wrk Comp 0275408 which previously stood for the proposition that a claimant, even after returning to work full duty work, without restrictions and without further loss of wages could be granted a minimal LWEC finding (10% in that case) solely on the ongoing subjective complaints stemming from the injury.\r\n\r\nWelcome back 0%.\r\n\r\n<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2014/11/ZERO-PERCENT-LWEC-Redacted-.pdf\" target=\"_blank\" rel=\"noopener\">ZERO PERCENT LWEC Redacted</a>','The Law Offices of Melissa A. Day, PLLC Won a Finding of a 0% Loss of Wage Earning Capacity','','publish','closed','closed','','the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity','','','2022-08-31 09:17:52','2022-08-31 13:17:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/',0,'post','',0),(46505,2461,'2021-08-18 01:44:01','2021-08-18 05:44:01','','ZERO-PERCENT-LWEC-Redacted-','','inherit','closed','closed','','zero-percent-lwec-redacted','','','2021-08-18 01:44:01','2021-08-18 05:44:01','',46504,'/wp-content/uploads/sites/1503150/2014/11/ZERO-PERCENT-LWEC-Redacted-.pdf',0,'attachment','application/pdf',0),(46506,25,'2014-09-12 00:00:00','2014-09-12 04:00:00','On December 1, 2010, 12 N.Y.C.R.R. § 324, known as the Medical Treatment Guidelines, became effective. See, 12 N.Y.C.R.R. § 324. The Medical Treatment Guidelines [hereinafter “Guidelines”] became effective on December 1, 2010. 12 N.Y.C.R.R. § 324. The Guidelines specifically limit the amount, frequency, and treatment that can be provide to a claimant in a workers’ compensation claim and the procedure to follow when treatment falls outside the Guidelines. 12 N.Y.C.R.R. § 324. Pursuant to the Guidelines a treatment provider, when it is determined that care which varies from the treatment guidelines is appropriate and medically necessary for the claimant, must file a variance for treatment sought from the Carrier or Special Fund. 12 N.Y.C.R.R. § 324.3. In fact, 12 N.Y.C.R.R. § 324.3 is explicit:\r\nA variance must be requested before medical care that varies from the Medical Treatment Guidelines is provided to the claimant and a request for a variance will not be considered if the medical has already been provided.\r\n12 N.Y.C.R.R. § 324.3(a)(1). Further pursuant to 12 N.Y.C.R.R. 325-1.25, “the employer or insurance carrier shall not be obligated to pay for any medical care that is not within the criteria of the Medical Treatment Guidelines or is not based on correct application of the Medical Treatment Guidelines.” See, 12 N.Y.C.R.R. 325-1.25.\r\nUnder 12 N.Y.C.R.R. § 324.3(a)(2) the Burden of Proof for demonstrating that the claimant requires the treatment rests with the treating medical provider. To make the requisite demonstration the medical provider must indicate on the variance that:\r\n(i) for all variances:\r\n(a) a medical opinion by the Treating Medical Provider, including the basis for the opinion that the proposed medical care that varies from the Medical Treatment Guidelines is appropriate for the claimant and medically necessary, and\r\n(b) a statement that the claimant agrees to the proposed medical care, and\r\n(c) an explanation of why alternatives under the Medical Treatment Guidelines are not appropriate or sufficient; and\r\n(ii) for appropriate claims:\r\n(a) a description of any signs or symptoms which have failed to improve with previous treatments provided in accordance with the Medical Treatment Guidelines; or\r\n(b) if the variance involves frequency or duration of a particular treatment, a description of the functional outcomes that, as of the date of the variance request, have continued to demonstrate objective improvement from that treatment and are reasonably expected to further improve with additional treatment.\r\nSee, 12 N.Y.C.R.R. § 324.3(a)(3).\r\nFurther, the guidelines make clear that under the June 30, 2010, First Edition, guidelines for low back § D.10.a.i that:\r\nManipulation is recommended for treatment of acute and sub-acute back pain when tied to objective measures of improvement.\r\nTime to produce effect for all types of manipulative treatment: 1 to 6 treatments.\r\nFrequency: Up to 3 times per week for the first 4 weeks as indicated by the severity of involvement and the desired effect, then up to 2 treatments per week for the next 4 weeks with re-evaluation for evidence of functional improvement or need for further workup. Continuance of treatment will depend upon functional improvement.\r\nOptimum Duration: 8 to 12 weeks.\r\nMaximum Duration: 3 months. Extended durations of care beyond what is considered “maximum” may be necessary in cases of re-injury, interrupted continuity of care, exacerbation of symptoms, and in those patients with comorbidities.\r\n(Emphasis Added). Medical Treatment Guidelines, First Edition, June 30, 2010, page 49.\r\nWhat constitutes a well-documented exacerbation has been further clarified in Matter of Livingston County, 2011 (NY WC Case No. 7990538). In Matter of Livingston County the Board made clear that in order for a provider to demonstrate a well-documented exacerbations under the medical treatment guidelines the provider must document: (1) when and how the exacerbation occurred; (2) objective changes from the baseline function; (3) expected type and frequency of treatment believed necessary to return the patient to baseline function; and (4) the response to treatment through measures of objective functional improvement.\r\nWhat this means is that if a variance is not sought after 12 weeks of treatment the doctor must show that there is an exacerbation or another basis such as a comorbidity that warrants the treatment beyond the initial 12 weeks. If the medical reports fail to list the criteria as outlined by Livingston County above, file C-8.1s as the provider has failed to adhere to the MTGs.\r\nThe amendments to the Medical Treatment Guidelines of 1/14/13, as effective 3/1/13, allowed for a maintenance program for chiropractic treatment. See, D.10.a.ii. Recent amendments to the Regulations and the Guidelines allow ongoing maintenance care in specific situations after “(A) the Board has made a legal determination that the claimant has a permanent disability, or (B) a medical provider submits a medical opinion evidencing that the claimant has reached maximum medical improvement and has a permanent impairment, in the format prescribed by the Chair for such purpose, and the Board has not yet made a legal determination on maximum medical improvement or permanent disability.” 12 NYCRR § 324.3(a)(5)(ii). Once specific criteria have been met the claimant would be eligible for a maximum of up to 10 visits per year.\r\nThe requirements for satisfying the maintenance care program of spinal manipulation is delineated at § D.11. Pursuant to § D.11 the claimant must be at maximum medical improvement and\r\n<ol>\r\n 	<li>Specific objective goals are identified and measured;</li>\r\n 	<li>Longer trials of withdrawal are attempted to ascertain whether therapeutic goals can be maintained;</li>\r\n 	<li>Within a year and annually thereafter, a trial without maintenance treatment should be instituted;</li>\r\n 	<li>ongoing patient self-management program to encourage physical activity and/or work activities despite residual pain, with the goal of preserving function;</li>\r\n 	<li>self-directed pain management plan should be developed which can be initiated by the patient in the event that symptoms worsen and function decreases.</li>\r\n</ol>','Navigating the Low Back Medical Treatment Guidelines for Chiropractic Care','','publish','closed','closed','','navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care','','','2022-08-31 09:17:52','2022-08-31 13:17:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/',0,'post','',0),(46508,25,'2013-12-17 00:00:00','2013-12-17 05:00:00','A Brief Summary:\r\n\r\nZamora reshaped the landscape of New York workers’ compensation law and opened PPD claims to challenges on labor market attachment (provided you can get the case reopened). It also dramatically tightened the legal standards for claimant’s seeking an involuntary withdrawal finding, or those seeking the much vaunted third-leg of the trifecta: pension benefits, Social Security benefits and a compensable retirement under the WCL.\r\n\r\nUnder the old standards, a PPD claimant only needed to show that he or she retired, at least in part, due to a work-related disability in order to secure ongoing benefits that were immune to suspension under American Axle. After Zamora, the Board has conformed its rulings to place a higher burden on claimants seeking a finding of involuntary withdrawal or involuntary retirement. After a brief evolution in legal analyses, the Board confirmed that even after a finding of involuntary withdrawal, a claimant’s benefits are still subject to a challenge under American Axle provided the claim is properly before the Board. Recent Board Panel case law established that a finding of involuntary withdrawal, or involuntary retirement only opens the door to post-separation indemnity benefits; and to get through that door the claimant must make a showing of attachment to the labor market in the first instance, and also as benefits continue provided that the case is reopened. County of Nassau, 2013 NY Wrk Comp. 20702386; Monroe Muffler &amp; Brake, 2013 NY Wrk. Comp. 99506849.\r\n\r\nWhen confronted with a claim on involuntary withdrawal or involuntary retirement, carriers and self-insured employers should be prepared to challenge the claimant by demanding proof of labor market attachment in the wake of the claimant’s separation from employment and try to avoid the invocation of Zamora’s “permissible inference” about ongoing lost wages after separation. Even losing at that point, however, carrier’s and SIEs can nonetheless demand ongoing proof of attachment to justify a continuing payment order or the updating of awards when a PPD case is reopened.\r\n\r\nEmployers who can control the terms of their retirement policies and plans should seek to close out the first leg of the trifecta by including terms offsetting retirement payments or pension payments against cotemporaneous workers’ compensation awards, and requiring all employees to certify under penalty of perjury that they are not retiring due to a work-related injury before being granted a retirement or pension. Incentive retirement offers should be similarly structured and should also require a claimant’s certification for his reason to retire to act as a disincentive to a subsequent claim for a compensable retirement through the Workers’ Compensation Board.\r\n\r\nThe Details:\r\n\r\nUntil recently Board Panels and the Third Department held the standard for involuntary withdrawal from the labor market shockingly low. “As a general rule, a withdrawal is not voluntary where there is evidence that the claimant’s disability caused or contributed to the retirement.” Matter of Bury v. Great Neck UFSD, 14 AD3d 786 (3d Dept. 2005). Once the presiding Law Judge was satisfied that a claimant had retired due to his or her work injury, often even with the most remote of links, the claimant automatically received the benefit of an inference that his or her ongoing lost wages after retirement were attributable to his or her work-related injury. Matter of Pittman v. ABM Indus., Inc., 24 A.D.3d 1056, 1057 (3d Dept 2005); Matter of Dudlo v Polytherm Plastics, 125 AD2d 792, 793 (3d Dept. 1986). Taken together, these legal principles created what practitioners sometimes call a “compensable retirement.”\r\n\r\nA carrier did have a defense to such a claim, but the standard of proof was practically unreachable in most cases. To rebut the mandatory inference of Pittman a carrier had to produce direct and positive proof that something other than the disability was the sole cause of claimant’s reduced earning capacity after retirement. Pittman, 24 A.D.3d 1056, 1058.\r\n\r\nPractically, cases in this line followed a fairly common fact pattern. Usually, a claimant from a fairly large employer that provided a pension or retirement plan would be injured at work. Medical treatment would begin and at some point the claimant, a treating doctor, or both, would determine that the claimant’s former work duties were unmanageable given the work injury and the claimant would “retire.” A savvy claimant’s counsel would then step into the case and raise “involuntary withdrawal” and a claimant would, in short order, appear and testify that their doctor recommended retirement, or they simply couldn’t return to their former employment due to a work injury. Even where a claimant took an incentive-based retirement, or a regular service-based retirement, such statements were usually sufficient to satisfy the Bury standard of proof; and the Law Judge would then turn to the carrier or self-insured employer and ask them to produce proof that the claimant’s ongoing lost wages were solely due to something other than the claimant’s work injury. Usually, the best proof a carrier could offer was proof of poor economic conditions, which only occasionally was sufficient to overcome the mandatory “inference” laid out in Pittman.\r\n\r\nAt many large employers, self-insured municipalities and basically any employer that offered some type of retirement package, the “compensable retirement” became the third-leg of what is commonly referred to as the “trifecta” – a claimant obtaining a pension, Social Security benefits, and a compensable retirement from the Workers’ Compensation Board. With no offset against old-age Social Security benefits, and with retirement contracts that usually provided no offset provisions, these claimants could retire and earn more money than they did working full duty.\r\n\r\nI can tell you from experience, defense attorneys met claims for a compensable retirement under Pittman with a great deal of frustration. The claimant’s burden was almost laughably low while the defense carried a burden almost impossible to meet.\r\n\r\nThankfully, in 2012 the Court of Appeals handed down its decision in Zamora v. New York Neurologic Associates, 19 N.Y.3d 186 (2012). Everyone active in New York workers’ compensation has probably seen a dozen articles on the sea change this case made in New York workers’ compensation law. Permanent Partial Disability claimant’s lost a layer of protection against labor market attachment challenges and cases that sat paying out lifetime PPD benefits suddenly had hope, and a chance, to reign in benefits and force a claimant to produce labor market attachment proofs.\r\n\r\nApart from providing hope, Zamora threw out Pittman and the its progeny and replaced the mandatory presumption regarding the cause of lost wages with a permissible inference. To get this inference, a claimant now needed to set forth evidence showing that his or her ongoing lost wages were indeed causally related to the claim. The Court of Appeals went further, and by example softened the defense standards for a compensable retirement:\r\n\r\nBy finding alternative work consistent with his or her physical limitations, or at least showing reasonable efforts at finding such work, the claimant can prove to the Board that the cause of his or her reduced income is a disability, rather than unwillingness to work again . . .\r\n\r\nIf . . . the Board considers a disability to be one that prevents the claimant from pursuing the trade in which she was engaged at the time of the accident, while allowing her to undertake many other jobs that pay as well, it will likely not make the inference.\r\n\r\nIn the wake of Zamora, the Board revised its approach to involuntary withdrawal analyses in two phases. Ossing, 2012 NY Wrk. Comp. 30501462 is solid example of the Board’s first evolution beyond Pittman and its approach to claimants with a permanent disability.\r\n\r\nIn Ossing the Board considered a claimant who was found to have a permanent disability and was later sent a letter by his employer informing him that he would be “removed from payroll” because he had missed more than one year of work. The claimant subsequently retired, apparently to preserve what vested retirement rights he had at the time, and turned to the workers’ compensation Board seeking a compensable retirement. At the trial level, the Law Judge found that the claimant voluntarily withdrew from the labor market and closed the case. On appeal, the Board reversed, ruling that Zamora now required claimant’s to both show that the work-related disability was the reason for separation from employment and that the claimant has found “alternate work consistent with his or her physical limitations, or at least [show] reasonable efforts at finding such work.” Id. citing Zamora. Further citing Zamora, the Board noted that “[t]his evidentiary burden, if carrier, can prove to the Board that the cause of his or her reduced income is a disability, rather than an unwillingness to work again. Id.\r\n\r\nIn applying this analysis, the Board found that the letter from the employer about the claimant’s impending termination was the claimant’s impetus for taking a retirement and that his withdrawal was involuntary. However, the Board went on to rule, citing Zamora, “that to compel an inference of causally related lost earnings from …an involuntary separation would illogically constrain the ability of the Board to find facts, and would shift the burden of proof from claimant to employer. As such any inference is applied is based on the Board’s evaluation of the evidence on disability and attachment.” Finding that the record contained no evidence of post-retirement attachment, the Board returned the case to the hearing level for development of the record on “whether and to what extent the claimant looked for work…even through the claimant need not meet the standard of American Axle (2010 NY Wrk Comp 80303659).”\r\n\r\nOssing represents an intermediate step in the Board’s use of Zamora on the issue of involuntary withdrawal. Compared to Pittman, the Board now insisted that the claimant bear the burden in the first instance of proving not only the circumstances of his retirement, but also whether he was simply unwilling to continue working. The Board also adopted a “something-less-than-American Axle” standard that confounded practitioners insofar as the Board simply stated that the claimant had to make a showing of a post-retirement job search, but how genuine that search needed to be was left open-ended. The Ossing interpretation of Zamora left open the possibility that a claimant could, after making some decidedly more significant showings, still end up with a guaranteed stream of benefits unencumbered by the obligation to remain attached under American Axle.\r\n\r\nIn dealing with unclassified claimants, the Board provided a much simpler analysis that remains unchanged. In Endicott, 2013 NY Wrk. Comp. 0254179, the Board, after following much the analysis it laid out in Ossing, noted in no uncertain terms that only classified claimant’s had any hope of protection.\r\n\r\nWhile an inference of causation may be drawn from a disability-related withdrawal when there has been a finding of permanent partial disability, a claimant with a temporary partial disability must look for work within the limits of his or her partial disability.\r\n\r\nId. (internal citations omitted). So while a PPD claimant might be able to shake off American Axle, an unclassified claimant gets no benefit from a finding of involuntary withdrawal and must continue to seek employment or otherwise remain attached.\r\n\r\nThe final evolution of the Board’s assimilation of Zamorafor PPD cases is illustrated in County of Nassau, 2013 NY Wrk Comp. 20702386. In Nassau the Board held that although the record demonstrated that the claimant’s permanent partial disability “cause or contributed to her retirement . . . the claimant’s [subsequent] loss of wages is due to her lack of demonstrated attachment to labor market.” In reciting the facts, the Board noted that:\r\n\r\nThe record in this case reflects that since the claimant stopped working in October 2010 and by her own admission she has not conducted a regular work search. Her work search, such as it was, was sporadic and casual, consisting of few inquiries to business owners of her acquaintance; an occasional review of the newspaper classifieds every now and then; and an occasional internet search. While the claimant testified that she registered with Hempstead Works, there is no evidence of an active participation; the claimant conceded that she conducted a work search on less than a monthly basis and she testified that, in the last year she has applied for a total of five or six jobs. While the claimant stated she maintained a written work search listing, no such listing appears in the record for review by the Board.\r\n\r\nThe Board went on to note that the claimant could “reattach” to regain ongoing benefits provided she produced proof of attachment meeting the standards of American Axle.\r\n\r\nIn the same track, in Monroe Muffler &amp; Brake, 2013 NY Wrk. Comp. 99506849 the Board considered a claimant, classified with a PPD in 2000, and his claim for an involuntary withdrawal back in 1995 when he stopped working for the employer of record. At the trial level, the Law Judge held that the claimant was involuntarily withdrawn in 1995 and that, pursuant to Zamora, was thereafter entitled to ongoing benefits without further analysis.\r\n\r\nOn appeal, the Board affirmed, but for different reasons:\r\n\r\nWhile the Board Panel concurs in the WCLJ’s finding that the claimant’s cessation/separation from employment in 1995 was due at least in part to his crushed foot injury and disability, and while this means that the claimant’s separation from employment was not voluntary, this fact alone no longer compels the application of an inference that the claimant’s subsequent loss of earnings necessarily resulted from the disability. That said, the Board Panel must now evaluate the record on the issue of whether the claimant has shown sufficient attachment to the labor market subsequent to his involuntary removal from the labor market in August 1995 so as to remain entitled to indemnity awards.\r\n\r\nThe Board went on to analyze the claimant’s post-separation attachment efforts and found them sufficient to justify post withdrawal awards.\r\n\r\nIn Monroe Muffler and Nassau the Board has reversed its former holdings under Pittman completely.\r\n\r\nClaimants can no longer rely on low standards of proof and improperly shifted burdens to claim ongoing benefits after a separation from employment simply because they are classified. When litigating involuntary withdrawal and compensable retirement claims, counsel can now force the claimant to make a higher showing at the outset and, even if initially unsuccessful, can nonetheless force a claimant to produce proof of attachment to the labor market each time the claim reopens.\r\n\r\n<strong>To discuss how you can prevent the compensable retirement claim or revisit your existing compensable retirement/pension claims, please feel free to contact me.</strong>','DID YOU KNOW? THE BOARD HAS RETIRED THE CONCEPT OF THE COMPENSABLE RETIREMENT. The Death Knell of the Trifecta: Zamora and the so-called “Compensable Retirement”','','publish','closed','closed','','did-you-know-the-board-has-retired-the-concept-of-the-compensable-retirement-the-death-knell-of-the-trifecta-zamora-and-the-so-called-compensable-retirement','','','2022-08-31 09:17:52','2022-08-31 13:17:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/12/did-you-know-the-board-has-retired-the-concept-of-the-compensable-retirement-the-death-knell-of-the-trifecta-zamora-and-the-so-called-compensable-retirement/',0,'post','',0),(46509,25,'2013-11-30 00:00:00','2013-11-30 05:00:00','Please consider the following excerpt from an Application for Review recently submitted to the Board on an appeal of a LWEC finding. In this claim the claimant was able to return to work as a law enforcement officer without any reduction in earnings following cervical surgery.\r\n\r\nTHE DECISION THAT THE CLAIMANT HAS A 35% LWEC IS ARBITRARY AND CAPRICIOUS.\r\n\r\nThe Board is fully aware that it has not provided any rational method for converting the severity of the medical impairment and the vocational factors into a percent loss of wage earning capacity. Indeed, the term loss of wage earning capacity has yet to be defined despite General Counsel’s promise that regulations would be promulgated providing this kind of clarification.\r\n\r\nThe fact is that in its decisions interpreting LWEC findings, the Board and judges are merely reciting the factors which should be taken into account – severity of the medical impairment, Functional and Exertional Abilities and Losses, Age, Education, Transferable Skills and English Language Proficiency – and generating a LWEC percent without any explanation for how the adjudicator reached his or her penultimate number. The judge forces the parties to take a blind leap across an inscrutable chasm filled with the above factors to arrive at a LWEC percentage. This is what happened in this case.\r\n\r\nAs the Permanent Impairment Guidelines provide, the inquiry into loss of wage earning capacity:\r\n\r\n…seeks to quantify how much earning power an injured worker has lost in light of his or her medical impairment, functional limitations, prior work history, education, skills, and aptitudes.\r\n\r\nPILWECG at p. 46.\r\n\r\nIn this claim, the WCLJ found that the Claimant has a 35% LWEC. Hence, using the Board’s description above, the Claimant has lost 35% of his earning power. There is simply no support in the record for the conclusion that the claimant is only earning or will only earn 65% of what he would have earned without the accident.\r\n\r\nAs a result, finding that the Claimant’s LWEC can be quantified at 35% is not based on reason or evidence – the very definition of arbitrary and capricious.\r\n\r\nDo you agree or disagree?','A Blind Leap across an Inscrutable Chasm – Arbitrary and Capricious Loss of Wage Earning Capacity (LWEC) Determinations','','publish','closed','closed','','a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations','','','2022-08-31 09:17:52','2022-08-31 13:17:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/',0,'post','',0),(46511,25,'2013-10-10 00:00:00','2013-10-10 04:00:00','According to Board Subject #046-630, there are five mechanisms by which the issue of WCL §25-a may be raised prior to January 1, 2014:\r\n1.) The claimant’s filing of a written application for compensation;\r\n2.) The filing of a medical report indicating a change of condition;\r\n3.) The carrier’s filing of a request, on a form RFA-2, to transfer liability to Special Funds when there is proof that further medical or indemnity benefits are payable;\r\n4.) Any party’s raising the issue of WCL § 25-a liability at a hearing; or\r\n5.) The Board’s raising the issue on its own motion. Matter of DEL Labs, 2009 NY Wrk Comp 2940 8739.\r\nSee <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_630.jsp#!\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_630.jsp#!</a>\r\n\r\nBased on this language, there may be an argument that shifting liability to the Fund for Reopened Cases under WCL §25-a does not require an affirmative application by the carrier or employer prior to 1/1/14, but certainly this is the safest and best course of action.\r\n\r\nBoard Subject #046-630 also sets forth “principles” for the submission of “proper and complete” applications for WCL §25-a applications and indicates that “incomplete” applications will not be considered as of the December 31, 2013 deadline.\r\n\r\nLeaving for the moment the issue of whether the Board has the authority to create “principles” which could affect the substantial rights of the parties by issuing a Subject Number, to avoid having this argument with the Board it appears that the employer or carrier must now submit an application with a detailed factual and legal offer of proof as to how the claim qualifies for WCL §25-a relief or risk having an application determined to be incomplete and thus a defective application for WCL §25-a relief.\r\n\r\nNow, in addition to having a case where there is a claim (an application for payment by the claimant or a health care provider) made more than seven years after the date of injury and more than three years after the last payment of compensation on a claim that has been truly closed, it appears that the employer or carrier must also submit a complete written application which will require the following to minimize the risk of having an application be deemed incomplete:\r\n\r\n<strong>CARRIER OR EMPLOYER’S COMPLETE WRITTEN APPLICATION</strong>\r\n\r\n1.) The carrier must support its application with an offer of proof as to why § 25-a relief should be granted as of the date of the application. The Request for Further Action (RFA-2) application must include the factual and legal basis for the application, and refer specifically to Board documents and/or attachments.\r\n\r\n2.) The factual and legal requirements of § 25-a transfer must exist at the time of that application. Therefore preemptive applications or subsequently cured applications will not suffice.\r\n\r\n3.) Affirmative support for the carrier’s application for WCL § 25-a relief includes:\r\n\r\na. Claimant has not lost any time since the true closing of the case;\r\n\r\nb. No advance payments of compensation have been made;\r\n\r\nc. If same employer, claimant working at full salary and not under light duty;\r\n\r\nd. No medical report demonstrating a change in condition or that could be taken as a medical provider’s request to reopen;\r\n\r\ne. At time of closure, there were no foreseeable ongoing issues.\r\n\r\nSee <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_630.jsp#!\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_630.jsp#!</a>\r\n\r\nThese requirements are troublesome and potentially onerous and one has to assume that the Board is going to require strict adherence to these “principles” or run the risk that the application will be deemed “incomplete.”\r\n\r\nA complete application thus must include some proof or assertion that two basic criteria for obtaining WCL §25-a are met:\r\n\r\n1.) The case was truly closed;\r\n2.) There has not been a reopening within the prohibited time frame.\r\n\r\n<strong>These are frequently complicated and mixed questions of law and fact and employers or carriers would likely best be served by referring such applications during the remaining weeks of 2012 to defense counsel.</strong>\r\nA. SHOW THAT THERE HAS BEEN PAYMENT OF COMPENSATION WITHIN THREE YEARS OF THE REOPENING.\r\ni. Claimant Return to Work at the Employer of Record:\r\nIf the Claimant has returned to work at the employer of record, the Board appears to be requiring proof that there has been no advance payment of compensation. It is not clear what proof will suffice. At a minimum it would appear that the RFA-2 should have the following attached to it:\r\n\r\n· A statement/correspondence/letter from the employer on its letterhead indicating that the claimant has not had any lost time as a result of the injury, and that no advance payment of compensation has been made, and that the claimant has been working at full salary and not under light duty would likely suffice. Alternatively, an affidavit could be prepared.\r\n\r\n· A C-25, or the Claimant’s Application for Reopening of Claim, More Than Seven Years after Accident, which indicates that the claimant has not had any lost time as a result of the injury, has not received an advance payment of compensation from the employer of record, and that the claimant has been working at full salary and not under light duty would also in all likelihood be sufficient.\r\n\r\nIf the Claimant retired from the employer of record litigation might ensure on the issue of whether this was DB or regular retirement, and in either event, whether the claimant was attached to the labor market.\r\nii. Claimant Returned to Work at another Employer\r\nWhen the claimant has returned to work at a different employer the issue of advance payment of compensation is generally not as likely of an impediment to WCL §25-a relief, although if the claimant return to work at the employer of record at all after the closing, the employer or carrier should still be concerned about advance payment of compensation.\r\n\r\nHowever, it appears that the Board will be requiring the carrier or employer to submit affirmative “support” with the application demonstrating that the claimant did not have any lost time or reduced earnings as a result of the injury. As a result, the employer or carrier should attach either a C-25 or some other evidence demonstrating that the claimant has not had any lost time to its RFA-2 in a claim where the claimant returned to work for a different employer.\r\n\r\nThe C-25 is supposed to provide evidence that the claimant has not had any lost time as a result of the injury or that the claimant has been working at full salary and not under light duty. The challenge will be on those claims when the claimant returned to work at another employer and is unresponsive to requests for completion of a C-25 or submits an incomplete form. There are several possible mechanisms for addressing this contingency such as subpoena, attorney affirmation after reviewing eCase, affidavit of an adjuster who spoke to the claimant which might provide the requisite affirmative showing that the\r\nB. SHOW THAT THERE HAS BEEN A TRUE CLOSING AND THAT NO MEDICAL REPORT REOPENED THE CASE WITHIN SEVEN OR THREE.\r\nIn addition to providing evidence that there has been no payment of compensation during the prohibited time period, the RFA-2 should also probably include a letter or other statement asserting that the medical reports do not demonstrate a change in condition or that could be taken as a medical provider’s request to reopen and that there were no open ongoing issues at time of closure such that the case was truly closed.\r\n\r\nGiven these new requirements, the most prudent employers and carriers will likely have defense counsel obtain the requisite evidence and then prepare a letter making arguments about the legal and factual reasons that liability should be shifted to the Fund for Reopened Cases in support of applications for WCL §25-a before 1/1/14.','LESS THAN TWELVE WEEKS REMAINING FOR WCL §25-a! Because Subject # 046-630 Contains Stricter Requirements for Reopening a Claim on the Issue of §25-a, Prudent Carriers and Employers May Want to Refer Applications to Defense Counsel','','publish','closed','closed','','less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want','','','2022-08-31 09:18:11','2022-08-31 13:18:11','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-ma',0,'post','',0),(46512,25,'2013-09-13 00:00:00','2013-09-13 04:00:00','I would really appreciate it if the members of the New York WC Forum, and visitors to this page, would request that the Board reach out to the NY Workers’ Compensation Forum as part of its plans to, ” reach out to stakeholders through several means, including face–to–face meetings, video conferences, conference calls, broad–based surveys, and email.”\r\n\r\nGiven that there are currently 929 members/stakeholders in the forum, we seem like a natural place for the BPR team to look for input.\r\n\r\nTo encourage the BPR to include our voices in the re-engineering process, I would ask that the group members e-mail the BPR Team and encourage them to include us in the dialogue. For your convenience, you can copy and paste the following message and send it to the address below:\r\n\r\nGreetings BPR Team!\r\n\r\nWe are very excited that the Board has commenced a Business Process Re-engineering Project and look forward to implementation of process and technological improvements following the BPR Team’s recommendations.\r\n\r\nGiven the indication that the BPR team plans to “reach out to stakeholders through several means, including face–to–face meetings, video conferences, conference calls, broad–based surveys, and email” we would ask that the New York Workers’ Compensation Forum be included in that dialogue. The group’s membership is currently at 929 members/stakeholders and thus seems to be a natural place to look for suggestions for improvements.\r\n\r\nThe vision of the NY Workers Compensation Forum has always been that our collective knowledge and experience are so much more powerful than any one individual’s and the Board appears to recognize this maxim in acknowledging that, “The workers’ compensation community has many constructive, intelligent ideas for improving the system, and the Board is eager to hear them.”\r\n\r\nAs a result, we would encourage the BPR Team to reach out to the NY WC Forum’s members by posting discussions in the group!\r\n\r\nEagerly Anticipating the Improved Processes,\r\n\r\nA New York Workers’ Compensation Forum Member\r\n\r\n<a href=\"mailto:bpr@wcb.ny.gov\" target=\"_blank\" rel=\"noopener\">bpr@wcb.ny.gov</a>\r\n\r\nLET’S MAKE SURE THAT WE ARE HEARD!!!!!','BOARD PROCESS RE-ENGINEERING (“BPR”) – NY WORKERS’ COMPENSATION FORUM MEMBERS SHOULD BE INCLUDED IN THE DIALOGUE','','publish','closed','closed','','board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue','','','2022-08-31 09:18:11','2022-08-31 13:18:11','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/',0,'post','',0),(46540,25,'2013-08-14 02:07:11','2013-08-14 06:07:11','The United States Court of Appeals for the 2nd Circuit has certified a question of law to New York’s Court of Appeals on whether a defendant may maintain an action for contribution from the owner of motor vehicle when the driver is protected by the exclusivity provisions of NY WCL?\r\n\r\nIn the decision of Isabella v. Hallock (v. Koubek), decided yesterday by the Second Circuit Court of Appeals, the Court certified the following question to New York’s Court of Appeals as it is permitted to do pursuant to the Court’s local rules:\r\n\r\nWhether a defendant may pursue a third-party contribution claim under New York Vehicle and Traffic Law § 388 against the owner of a vehicle, where the vehicle driver’s negligence was a substantial factor in causing the plaintiff’s injuries, but the driver is protected from suit by the exclusive remedy provisions of New York Workers’ Compensation Law §29(6)?\r\n\r\nIn this case, the plaintiff was a passenger in a car owned by his employer which was driven by a co-employee. Both the driver/co-employee and the owner/employer were immune from direct suit by the injured passenger/employee by the exclusivity provisions of the WCL. The employee/passenger sued defendants who were the driver and owner of the other vehicle involved in the accident. Defendants filed a 3 party action against the employer/owner for contribution for the injuries sustained by his employee.\r\n\r\nThe Court noted that the driver/co-employee was immune from a suit by defendants against her because of the exclusivity provisions of the WCL §29(6) which provides:\r\n\r\nThe right to compensation or benefits under this chapter, shall be the exclusive remedy to an employee…when such employee is injured or killed by the negligence or wrong of another in the same employ…The limitation of liability of an employer set forth in section eleven of this article for the injury or death of an employee shall be applicable to another in the same employ…\r\n\r\nThe Court also noted that the employer’s and co-employee’s liability for a claim for contribution is limited by WCL §11:\r\n\r\nThe liability of an employer prescribed by the last preceding section shall be exclusive and in place of any other liability whatsoever, to such employee . . . or any person otherwise entitled to recover damages, contribution or indemnity, at common law or otherwise, on account of such injury or death or liability arising therefrom…\r\n\r\n…An employer shall not be liable for contribution or indemnity to any third person based upon liability for injuries sustained by an employee acting within the scope of his or her employment for such employer unless such third person proves through competent medical evidence that such employee has sustained a “grave injury”…\r\n\r\nHowever, NY’s Vehicle &amp; Traffic Law §388 provides:\r\n\r\nEvery owner of a vehicle used or operated in this state shall be liable and responsible for death or injuries to person or property resulting from negligence in the use or operation of such vehicle, in the business of such owner or otherwise, by any person using or operating the same with the permission, express or implied, of such owner.\r\n\r\nHence WCL §§29(6) and 11 would prevent a claim for contribution whereas V &amp; TL §388 would permit the action.\r\n\r\nAlthough the 2 Circuit notes that there is case law in NY which suggests that the owner of the vehicle should be immune from liability for the negligent acts of its employee which caused a co-employee’s injuries, it found that the two competing policy interests of statutes in question – the exclusivity provisions of the WCL and the vicarious liability of the owner of a negligently operated vehicle, cannot be reconciled by either the statutory language nor in case law directly on point.\r\n\r\nA copy of the 2nd Circuit’s analysis in the decision can be found at the link below.\r\n\r\n<a href=\"https://thelomad.com/getmad.today/wp-contentgetmad.today/wp-content/uploads/2014/12/hallock_v._koubek.pdf\" target=\"_blank\" rel=\"noopener\">hallock_v._koubek</a>','DID YOU KNOW? The 2nd Circuit certified a question to the NY Court of Appeals on the exclusivity provision of the WCL?','','publish','closed','closed','','did-you-know-the-2nd-circuit-certified-a-question-to-the-ny-court-of-appeals-on-the-exclusivity-provision-of-the-wcl','','','2022-08-31 09:18:11','2022-08-31 13:18:11','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=46540',0,'post','',0),(46541,25,'2013-08-03 00:00:00','2013-08-03 04:00:00','In an action filed in New York County Supreme Court on July 30, 2013, twenty workers’ compensation insurance carriers seek a declaratory judgment that the recent amendments to WCL §25-a which eliminates the Fund for Reopened Cases is unconstitutional.\r\n\r\nThe plaintiffs, which include Liberty Mutual Insurance Company, Peerless Insurance Company and the Employers Insurance Company of Wausau, assert that the elimination of the Fund for Reopened Cases violates the contract clause of the United States Constitution, amounts to a deprivation of a property interest in violation of the due process clauses of the United States and New York State constitutions, and amounts to an improper taking of plaintiff’s property without just compensation in violation of the takings clauses under the United States and New York State constitutions. The State of New York, the New York State Department of Financial Services and the New York Worker’s Compensation Board are named as defendants.\r\n\r\nSimilar constitutional challenges were raised following enactment of the mandatory deposits into the Aggregate Trust Fund following the 2007 reforms to the Worker’s Compensation Law and were unsuccessful. In the Matter of Raynor v. Landmark Chrysler, 18 N.Y.3d 48 (2012), New York’s Court of Appeals from there was no violation of the Takings Clause because the statute did not increase the amount of compensation owed to the claimant and did not appropriate the carrier’s assets for use by the state.\r\n\r\nThe Court also found the statute did not violate the contracts clause of the United States Constitution finding no substantial impairment to the insurance contract despite an acknowledgment that the carrier’s contract may have become less profitable as a result of the mandatory deposit into the Aggregate Trust Fund.\r\n\r\nIn addition, in Raynor, the Court of Appeals found no violation of substantive or procedural due process rights because there was no vested property right in as much as the amendment did not increase the amount that the carriers owed, and the carrier failed to show that the statute was without legal justification or supported by a rational legislative purpose.\r\n\r\nInterestingly, plaintiffs filed suit in New York County, not Albany County. Following a decision by the Supreme Court an appeal would be taken to the First Department, not the Third Department. The latter hears all appeals from adverse decisions of the Workers’ Compensation Board and the Board has historically enjoyed a favorable affirmance rate in the Third Department.\r\n\r\nI would expect further litigation in connection with the amendments to WCL §25-a with respect to its retroactive application once the amendment becomes effective on January 1, 2014. Given the language in the statute permitting an application for WCL-25-a relief to be filed for those claims which are ripe for adjudication of the issue prior to the effective date of the amendment, the legislature may have solved the retroactivity problem which was adjudicated in the decision of the Matter of Mills v. Staffking, 271 A.D.2d 146 (3 Dept. 2000) following the change in the retention period for reimbursement from the Special Disability Fund under WCL § 15(8) from 104 to 260 weeks. In Mills, the Third Department held that the retention period could not be changed from 104 to 260 weeks for those claims where the entitlement to WCL §15(8) relief was established as of the effective date of the amendment.\r\n\r\nStay tuned. A copy of the complaint can be accessed below.\r\n\r\n<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/08/Challenge-to-the-Closing-of-the-25-a-Fund.pdf\" target=\"_blank\" rel=\"noopener\">Challenge to the Closing of the 25-a Fund</a>','DID YOU KNOW? Twenty Insurance Carriers Have Filed an Action Seeking to Obtain a Declaration that the Elimination of The Fund for Reopened Cases Is Unconstitutional.','','publish','closed','closed','','did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional','','','2022-08-31 09:18:11','2022-08-31 13:18:11','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/',0,'post','',0),(46542,2461,'2021-08-18 02:07:27','2021-08-18 06:07:27','','Challenge-to-the-Closing-of-the-25-a-Fund','','inherit','closed','closed','','challenge-to-the-closing-of-the-25-a-fund','','','2021-08-18 02:07:27','2021-08-18 06:07:27','',46541,'/wp-content/uploads/sites/1503150/2013/08/Challenge-to-the-Closing-of-the-25-a-Fund.pdf',0,'attachment','application/pdf',0),(46543,25,'2013-07-20 00:00:00','2013-07-20 04:00:00','In a lengthy decision handed down by a divided court on July 18, 2013, the Third Department held that medical treatment which is not specifically included in the MTG is presumptively unnecessary and it is Claimant’s burden to overcome this presumption by proving medical necessity when a variance is sought.\r\nThe decision and an article from the New York Law Journal can be accessed below.\r\n<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/07/Treatment-Outside-MTG-is-Pre-Determined-as-Not-Medically-Necessary.pdf\" target=\"_blank\" rel=\"noopener\">Treatment Outside MTG is Pre-Determined as Not Medically Necessary</a>\r\nNew York Law Journal_ Workers Comp Reform Named Approved Procedures Judges Say','DID YOU KNOW? THE THIRD DEPARTMENT HOLDS THAT MEDICAL TREATMENT WHICH IS NOT SPECIFICALLY INCLUDED IN THE MTG IS PRESUMPTIVELY NOT MEDICALLY NECESSARY.','','publish','closed','closed','','did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary','','','2022-08-31 09:18:11','2022-08-31 13:18:11','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/',0,'post','',0),(46545,2461,'2021-08-18 02:07:34','2021-08-18 06:07:34','','New-York-Law-Journal_-Workers-Comp-Reform-Named-Approved-Procedures-Judges-Say','','inherit','closed','closed','','new-york-law-journal_-workers-comp-reform-named-approved-procedures-judges-say','','','2021-08-18 02:07:34','2021-08-18 06:07:34','',46543,'/wp-content/uploads/sites/1503150/2013/07/New-York-Law-Journal_-Workers-Comp-Reform-Named-Approved-Procedures-Judges-Say.pdf',0,'attachment','application/pdf',0),(46546,25,'2013-07-13 00:00:00','2013-07-13 04:00:00','It used to be nearly impossible to reopen a claim based on a defense of labor market attachment when a unemployed claimant had been classified with having a Permanent Partial Disability and entitled to ongoing benefits.  Although there are still challenges in getting these claims reopened on the issue of labor market attachment, the Board has articulated circumstances under which a claim involving ongoing PPD benefits to a claimant who is not working can be reopened on the issue of labor market attachment.\r\n\r\nWhen an employer or carrier wants to challenge ongoing PPD benefits, simply sending out job search letters will likely not be sufficient to reopen a claim on the issue of labor market attachment.\r\n\r\nHere’s what the Board looks at when reviewing an RFA to reopen a PPD claim:\r\n\r\nWhile a claimant’s failure to respond to a work search inquiry without something more may not constitute sufficient evidence of a triable issue of fact upon which a reopening may be based, a claimant’s response, or lack thereof, to other communications from the employer or its carrier may meet the employer’s burden of producing evidence that something other than a claimant’s disability is the reason for the post-classification loss of wage earning capacity. These communications include, but are not limited to:\r\n<ul>\r\n 	<li>An employer’s offer of light duty work within the claimant’s medical restrictions, or</li>\r\n</ul>\r\n<ul>\r\n 	<li>An actual offer of retraining or job search assistance by a firm in the business of providing such services.</li>\r\n</ul>\r\nAn unemployed claimant’s failure to respond to such offers, or an unexplained rejection of such offers, raises an issue of fact that something other than the claimant’s disability may be the reason for the continued loss of wages.\r\n\r\n(For an employed claimant – evidence of claimant’s retirement, leaving a light duty job, or a change in the claimant’s condition may also raise a triable issue of fact sufficient to reopen the case.)\r\n\r\nSimply sending a letter indicating that the carrier or employer is willing to provide such services does not appear to be sufficient.  Based on the Board Panel decisions, the offer of assistance must an actual offer of retraining, or a specific offer of job search assistance through a company which provides such services, not simply an indication that the carrier will offer such services.\r\n\r\nThus, the likely best practice if a carrier or employer wants to challenge a PPD claimant’s entitlement to ongoing benefits is to retain a retraining or job search assistance company and have the company send a correspondence to the claimant detailing the services that will be provided.  Of course, the letter should be simultaneously copied to the Claimant’s attorney.  Simultaneously sending job search letters may bolster an eventual RFA-2 on the issue of labor market attachment.  All such submissions must comply with Rule 300.23(c)(1).\r\n\r\nA carrier or employer may want to weigh the chances that such an individual could make a claim for a total industrial disability when challenging his or her entitlement to PPD benefits.  Thus, having a vocational firm perform a preliminary assessment of the claimant’s employability may be advisable before making a decision to employ this kind of strategy.  Additionally, carriers and employers should be mindful that the disability rate at which a claimant is being paid may be lower than an actual reduced earnings rate if the claimant’s wage earning capacity is significantly compromised and he or she successfully returns to work.\r\n\r\nIf an employer or carrier is prepared to actually help a claimant find work by utilizing a retraining or job search assistance company, both it and/or the claimant may benefit – either through a defense based on labor market attachment, or, the panacea of good results for an industrially disabled individual, through a job which accommodates the employee’s Permanent Partial Disability.','DID YOU KNOW? AN EMPLOYER OR CARRIER MAY BE ABLE TO REOPEN A PPD CLAIM ON THE ISSUE OF LABOR MARKET ATTACHMENT.','','publish','closed','closed','','did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment','','','2022-08-31 09:18:11','2022-08-31 13:18:11','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/',0,'post','',0),(46548,2461,'2021-08-18 02:07:40','2021-08-18 06:07:40','','Treatment-Outside-MTG-is-Pre-Determined-as-Not-Medically-Necessary','','inherit','closed','closed','','treatment-outside-mtg-is-pre-determined-as-not-medically-necessary','','','2021-08-18 02:07:40','2021-08-18 06:07:40','',46543,'/wp-content/uploads/sites/1503150/2013/07/Treatment-Outside-MTG-is-Pre-Determined-as-Not-Medically-Necessary.pdf',0,'attachment','application/pdf',0),(46549,25,'2013-04-30 00:00:00','2013-04-30 04:00:00','<a href=\"https://thelomad.com/getmad.today/wp-contentassembly.state.ny.us/leg/?default_fld=&amp;bn=S00076&amp;term=2013&amp;Summary=Y&amp;Actions=Y&amp;Votes=Y&amp;Memo=Y&amp;Text=Y\" target=\"_blank\" rel=\"noopener\">BILL NUMBER: S76</a>\r\n\r\nTITLE OF BILL:\r\nAn act to amend the workers’ compensation law, in relation to permanent total disability\r\n\r\nPURPOSE OR GENERAL IDEA OF BILL:\r\nThis bill will create a presumption of permanent total disability for claimants who are found eligible for federal social security disability benefits.\r\n\r\nSUMMARY OF SPECIFIC PROVISIONS:\r\n\r\nSection one of the bill amends Section 15(1) of the workers’ compensation law to allow claimants who are approved for social security disability benefits to be considered permanently totally disabled in the absence of conclusive proof to the contrary.\r\n\r\nJUSTIFICATION:\r\n\r\nWorkers who are injured or become ill on the job often apply for federal social security disability benefits after suffering such a condition. The federal eligibility standard for these benefits is that the claimant is “unable to engage in substantial gainful activity.” This standard requires that an injured worker must be unable to perform any work activity on a full-time sustained basis and is essentially considered “totally disabled” by the social Security Administration. A claimant whose condition is severe enough to meet this disability standard should be eligible for permanent total disability benefits under the workers’ compensation law.\r\n<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/04/Senate-Bill-S76.pdf\" target=\"_blank\" rel=\"noopener\">Senate Bill S76</a>','DID YOU KNOW? A bill being considered by the NY State Legislature which would create a presumption of permanent total disability for claimants who are found eligible for social security?','','publish','closed','closed','','did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security','','','2022-08-31 09:18:11','2022-08-31 13:18:11','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/',0,'post','',0),(46550,2461,'2021-08-18 02:07:50','2021-08-18 06:07:50','','Senate-Bill-S76','','inherit','closed','closed','','senate-bill-s76','','','2021-08-18 02:07:50','2021-08-18 06:07:50','',46549,'/wp-content/uploads/sites/1503150/2013/04/Senate-Bill-S76.pdf',0,'attachment','application/pdf',0),(46551,25,'2013-04-06 00:00:00','2013-04-06 04:00:00','As a former attorney for Special Funds’ Conservation Committee, I noted with great interest that on March 29, 2013, NY’s Workers’ Compensation Law Section 25-a was amended to close the Fund for Reopened Cases to new claims where applications are filed after 1/1/14:\r\n(1-A). NO APPLICATION BY A SELF-INSURED EMPLOYER OR AN INSURANCE CARRIER FOR TRANSFER OF LIABILITY OF A CLAIM TO THE FUND FOR REOPENED CASES SHALL BE ACCEPTED BY THE BOARD ON OR AFTER THE FIRST DAY OF JANUARY, TWO THOUSAND FOURTEEN EXCEPT THAT THE BOARD MAY MAKE A FINDING AFTER SUCH DATE PURSUANT TO SECTION TWENTY-THREE OF THIS ARTICLE UPON A TIMELY APPLICATION FOR REVIEW.\r\nWhat does this mean? Based on this language, self-insured employers and carriers need to get their applications in for 25-a relief in BEFORE 1/1/14.\r\n\r\nIf you are a self-insured employer or carrier, you are going to need to be very aggressive in identifying these claims during the next 9 months to ferret out all claims which might qualify for such relief before the 1/1/14 deadline.\r\n\r\nYou should immediately start running reports to identify the following claims:\r\n\r\n<strong>7 Years from the Date of Accident or Injury Have Elapsed.</strong> The threshold is a there must be a claim that is reopened more than 7 years after the date of accident or injury.\r\n\r\n<strong>3 Years from the Last Payment of Compensation.</strong> A claim that is reopened more than 3 years after the last payment of compensation – which refers specifically to lost wage benefits, not to medical.\r\n\r\n<strong>There must be a claim for benefits after the requisite time period has lapsed.</strong> There mere lapse of time is not sufficient. There must be a claim for benefits after the requisite time has elapsed either for medical treatment or lost wages.\r\n<strong>Applications can be retroactive.</strong> If you have a claim that meets these criteria, you can request 25-a relief, even if the qualifying claim for benefits was made in the past – i.e. you received a bill for medical treatment a year ago which when received, met the time thresholds described above you can request that liability be shifted as long as the claim can be still be considered “reopened”, i.e., there has not been a reopening and a closure and then the request for a transfer is made.\r\nTherefore, reports to identify claims which could qualify for 25-a relief should look for claims where: 1.) the date of accident or injury is more than 7 years ago; 2.) where there has been no indemnity payment in 3 years; and, 3.) where there is a claim (for lost time of medical) more than 7 years after the date of accident/injury or more than 3 years after the last payment of compensation.\r\n\r\nOnce you identify these claims, you need to investigate the following additional requirements:\r\n\r\n<strong>There must have been a prior “true closure” of the claim.</strong>\r\n\r\nThis is a legal argument – the standard is generally whether further proceedings were contemplated. Unaddressed issues such as temporary rates, an unresolved site of injury, evidence of permanency that was not addressed, or an unresolved medical bill among other things can prevent a finding that the claim was “truly closed”.\r\n\r\n<strong>GET THESE CASES REOPENED, ADDRESS THE ISSUES THAT HAVE NOT BEEN ADDRESSED, GET THE CLAIM CLOSED AGAIN AND THEN REQUEST 25-A.</strong>\r\n\r\nThese are claims that could qualify for 25-a if the impediment to 25-a relief, i.e, the claim’s not having been “closed” is addressed and then there is a subsequent reopening.\r\n\r\n<strong>There cannot have been a “reopening” w/in 7 years after the date of accident or injury or w/in 3 years after the last payment of compensation.</strong>\r\n\r\nThis is another legal argument – there can be no submissions within 7 or 3 which should have led to a “reopening” such as a surgical request or medical evidence of lost time among other things.\r\n\r\n<strong>AGAIN, GET THESE CASES REOPENED, ADDRESS THE ISSUES WHICH CONSTITUTE A REOPENING, GET THE CLAIM CLOSED AGAIN AND THEN REQUEST 25-A.</strong>\r\n\r\nAgain, these are claims that could qualify for 25-a if the impediment to 25-a relief, i.e, the “reopening” issue is addressed, and then there is a closure and subsequent reopening.\r\n\r\n<strong>WE WOULD BE GLAD TO HELP YOU WITH THESE CLAIMS.</strong>\r\n\r\nI was Assistant Attorney for Special Funds for 7 years from May of 2000 to July of 2007. I worked for Steven M. Licht, Esq., Attorney for Special Funds Conservation Committee, and performed the following duties:\r\n<ul>\r\n 	<li>Researched legal issues to assist Attorney/CEO in determining policy involving liability of the funds and myriad other legal issues;</li>\r\n 	<li>Made recommendations about whether appeals were taken to the Appellate Division and Court of Appeals for all workers’ compensation claims and third-party actions involving Special Funds;</li>\r\n 	<li>Extensive appellate experience, drafting, filing, responding to, perfecting and administering Appellate Division and Court of Appeals filings for all claims involving Special Funds;</li>\r\n 	<li>Orally argued Special Funds’ position before the Court of Appeals, Appellate Division, numerous Supreme and District Courts, and the Workers’ Compensation Board;</li>\r\n 	<li>Drafted and filed administrative appeals and memoranda of law for all four SFCC district offices: Albany, Buffalo, Dewitt and New York; and,</li>\r\n 	<li>Instructed, advised and trained SFCC staff statewide on the applicable law and SFCC’s internal procedures through seminars and authoring of Claims Manual and Hearing Representative Manual.</li>\r\n</ul>\r\nAs you can surmise, as a result of this experience, I have considerable knowledge regarding the requirements for shifting liability to the Fund for Reopened Cases and I believe I am uniquely qualified to assist you with these applications.\r\n\r\nAdditionally, we added an attorney to our staff who has considerable experience with WCL §25-a liability as a result of his work for Special Funds Conservation Committee during the last several years to further assist our clients who will be aggressively seeking this relief during the remainder of the year.\r\n\r\nIf we can be of assistance, either by screening claims for eligibility, filing RFA-2s to ensure that your applications are timely, or in identifying potential impediments to the successful shift of liability to the Fund for Reopened Cases, we would be glad to help. Our contact information is:\r\n\r\nThe Law Offices of Melissa A. Day, PLLC\r\n2390 North Forest Rd, Suite 10\r\nAmherst, New York 14068\r\nPhone [nap_phone id=\"LOCAL-REGULAR-NUMBER-1\"]\r\nFax: [nap_phone id=\"FAX-REGULAR-NUMBER-2\"]\r\nmday@getmad.today\r\n\r\nRegardless, take full advantage of the time we have left to shift liability on as many of these claims as possible. Good luck!','DID YOU KNOW? 25-A IS GOING AWAY.','','publish','closed','closed','','did-you-know-25-a-is-going-away','','','2022-08-31 09:18:11','2022-08-31 13:18:11','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/04/did-you-know-25-a-is-going-away/',0,'post','',0),(46553,25,'2013-03-13 00:00:00','2013-03-13 04:00:00','A chiropractic variance request based on alleged functional improvements and expected continued improvements may not be granted if the chiropractor continues to find that the claimant is totally disabled despite the alleged improvements.\r\n\r\nIn Hudson Valley DDSO, 2013 NY Wrk. Comp. LEXIS 2315, decided on 3/5/13, a three-member panel of commissioners found that a chiropractic variance request should not be approved despite the chiropractor’s submission which alleged that the claimant’s range of motion, endurance, numbness and tingling had all improved by 30%, and the claimant had an improved quality of life, needed less medication and was getting better sleep. The variance was denied in part because the chiropractor continued to certify to a total disability.\r\n\r\nThe carrier, the State Insurance Fund, successfully argued that the chiropractor’s report was internally inconsistent given that he asserted that the claimant had various degrees of improvement in her functional abilities as a result of the treatment, and yet remained 100% disabled. As a result, the board panel found the chiropractor failed to meet the burden of proof under the Medical Treatment Guidelines and denied the requested treatment.\r\n\r\nA link to copy of the decision can be found below.\r\n\r\n<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/03/Hudson-Valley-DDSO.pdf\" target=\"_blank\" rel=\"noopener\">Hudson Valley DDSO</a>','DID YOU KNOW? A chiropractic variance request based on alleged functional improvements and expected continued improvements may not be granted if the chiropractor continues to find that the claimant is totally disabled.','','publish','closed','closed','','did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is','','','2022-08-31 09:18:11','2022-08-31 13:18:11','',0,'',0,'post','',0),(46554,2461,'2021-08-18 02:08:10','2021-08-18 06:08:10','','Hudson-Valley-DDSO','','inherit','closed','closed','','hudson-valley-ddso','','','2021-08-18 02:08:10','2021-08-18 06:08:10','',46553,'/wp-content/uploads/sites/1503150/2013/03/Hudson-Valley-DDSO.pdf',0,'attachment','application/pdf',0),(46555,25,'2013-02-23 00:00:00','2013-02-23 05:00:00','I recently encountered what I found to be a fascinating fact pattern while defending a local town on what was otherwise a standard claim involving competing opinions on permanency from an attending physician and an IME.\r\n\r\nOn June 14, 2011, the DEA and local Western New York law enforcement personnel,200 in all, sought to arrest 17 members of the violent “The Camp street Boys”gang. For more on this story see, WKBW News, “Drug Raids In Buffalo”, <a href=\"https://thelomad.com/getmad.today/wp-contentwww.wkbw.com/news/crime/Drug-Raids-In-Buffalo-123833394.html\" target=\"_blank\" rel=\"noopener\">https://thelomad.com/getmad.today/wp-contentwww.wkbw.com/news/crime/Drug-Raids-In-Buffalo-123833394.html</a>. Also see, https://thelomad.com/getmad.today/wp-contentwww.justice.gov/dea/divisions/nyc/2011/nyc061611a.shtml.\r\n\r\nThe Claimant, a town narcotics officer and one of the 200 who helped make these arrests, sustained an injury to his left arm while on “loan” to the Drug Enforcement Agency. The officer, whose weapon was drawn in his right hand, fell onto his outstretched left arm,\r\n\r\nIt appears that although the town paid the officer’s wages, the DEA reimbursed the town for the officer’s wages from the day of the raid/accident. Presumably, given that this was the DEA’soperation, it directed and controlled the manner in which the officer performed his duties on the day of the injury.\r\n\r\nThere were certainly sufficient indicia of a general/special employment arrangement that if the coordinated effort had been spearheaded by another municipal entity, such as the City of Buffalo, the issue could have been raised at the Workers’Compensation Board. In this hypothetical scenario, the town could have argued that its liability should be shared with the City of Buffalo.\r\n\r\nHowever, the special employer in his situation was the Federal Government – the DEA. The following questions arose:\r\n\r\n1.) Could the town apportion part of its liability to the DEA on a theory of general/special employment?\r\n\r\n2.) Could the Claimant make a claim against the DEA under the Federal Employment Compensation Act, FECA?\r\n\r\n3.) If a claim could be made under FECA could the town bring it on the Claimant’sbehalf? and,\r\n\r\n4.) Could it benefit the town to bring such an action on the Claimant’s behalf?\r\n\r\nAnswers:\r\n\r\n1.) The town would not be successful in requiring the United States to submit to the jurisdiction of the New York Workers’ Compensation Board and thus would face significant challenges in apportioning any liability to the special employment.\r\n\r\nAccording to the Federal Employees’Compensation Act, 5 USC §8116(c), the liability of the United States with respect to an injury of an “employee” is limited to the benefits available under that act:\r\n\r\n§8116(c). The liability of the United States…under this subchapter or any extension thereof with respect to the injury or death of an employee is exclusive and instead of all other liability of the United States…to the employee…and any other person otherwise entitled to recover damages from the United States…because of the injury or death in a direct judicial proceeding, in a civil action, or in admiralty, or by an administrative or judicial proceeding under a workmen’s compensationstatute…\r\n\r\nThe town could argue that liability should be apportioned to the special employer even though the DEA would not be subject to the NY WCB’s jurisdiction, but in my opinion, the Board would be unlikely to apportion any liability to the special employment unless it was assured that the Claimant would be entitled to recover against the special employer, the DEA, in another venue.\r\n\r\n2.) The Claimant appears to have a viable claim against the United States as an“employee” pursuant to a provision of FECA that allows for such claims by law enforcement officers who are not employees of the United States:\r\n<strong>5USC 8191. Determination of eligibility</strong>\r\nThe benefits of this subchapter are available as provided in this subchapter to eligible law enforcement officers (referred to in this subchapter as “eligible officers”) and their survivors. For the purposes of this subchapter, an eligible officer is any person who is determined by the Secretary of Labor in his discretion to have been on any given occasion–\r\n(1) a law enforcement officer and to have been engaged on that occasion in the apprehension or attempted apprehension of any person–\r\n(A) for the commission of a crime against the United States…\r\nThe Claimant herein certainly appears to fit this description and thus likely has a claim under FECA.\r\n\r\n3.) As noted by the 9th Circuit Court in City of Whittier v. U.S. Dept.of Justice, 598 F.2d 561 (9 Cir. 1979):\r\n\r\nIn 1968 Congress adopted 5 U.S.C. §8191,which extended the benefits of the Federal Employees Compensation Act to state and local law enforcement officers who are injured while engaged in the apprehension of persons committing federal crimes. The purpose for enacting section 8191 was to provide such injured local law enforcement officers with the same benefits as are available to federal employees under the Federal Employees Compensation Act…A companion section, 5U.S.C. § 8192, provides that the benefits received should be reduced by the amount of benefits paid by state or local governmental sources, including workmen’s compensation benefits. 5 U.S.C. § 8192(a).\r\n\r\nIn the City of Whittier, the 9th Circuit found that the City could not bring a Federal Tort Claims Act against the United States because FECA is the exclusive remedy, and therefore “any possible claims of the City must be brought under that Act.” Hence, the Court envisioned that the employer could bring a claim against the United States under FECA.\r\n\r\n4.) However,because 5 U.S.C. § 8192 only provides for benefits under FECA in excess of those that an employee receives pursuant to New York State Law, there would need to be a finding by the NY WC Board that liability should be apportioned to the DEA as a special employer. Hence, it seems probable that recovery under FECA would be deferred until a determination was made by the NY WCB re: apportionment to a special employer. And, as is noted above, in my opinion, the Board would be unlikely to make such a finding unless it was assured that the Claimant had another avenue of relief. Hence the general employer, the town,would be in a Catch-22 in its efforts to apportion liability to a special employer under these facts.\r\n\r\nOther thoughts – Such an action might make sense for the Claimant if he could recover greater benefits under FECA then he has under NY Compensation Law. FECA has a Compensation Schedule similar to NY’s schedule loss of use provisions. For example, under FECA, compensation for loss of an arm entitles a claimant to 312 weeks of benefits, identical to NY’s schedule for an arm. It does not appear that there is a maximum on the weekly benefit under FECA like there is in NY. However, based on my research, loss of use findings under FECA, which are determined using the 6 Edition of the American Medical Association’s Guides to the Evaluation of Permanent Impairment are much more modest that schedule loss of use findings in NY and thus it would be highly unlikely that he Claimant would be entitled to a greater benefit under FECA then he would be in NY, unless he was a very high wage earner.','DID YOU KNOW? The Federal Government Is Not Subject to the Jurisdiction of the NY Workers’ Compensation Board on a Theory of General/Special Employment?','','publish','closed','closed','','did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment','','','2022-08-31 09:18:11','2022-08-31 13:18:11','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/',0,'post','',0),(46557,25,'2013-02-05 00:00:00','2013-02-05 05:00:00','Governor Cuomo’s 2013 – 2014 Budget Proposal, includes legislation which, in addition to proposing simplification of employer assessments, closing the Fund for Reopened Cases, issuing bonds to cover the deficits of failed self-insured trusts and raising the minimum weekly benefits from $100.00 to $150.00, also includes the elimination of mandatory deposits into the Aggregate Trust Fund (ATF) and immediate closure of the ATF to new deposits. The Governor’s proposed legislation eliminating deposits would be effective immediately. (The legislation closing the Fund for Reopened Cases would close the Fund for new cases as of 1/1/14.)\r\n\r\nDeposits into the ATF which have been directed prior to the effective date of the legislation would still be required. That would appear to include directions to make the deposit even though a specific amount has not been determined as of the effective date. A link to the proposed legislation can be found below.\r\n\r\n<a href=\"https://thelomad.com/getmad.today/wp-contentpublications.budget.ny.gov/eBudget1314/fy1314artVIIbills/PPGGArticleVII.pdfhttps://thelomad.com/getmad.today/wp-content\" target=\"_blank\" rel=\"noopener\">Public Protection and General Government Bill</a>','DID YOU KNOW? GOVERNOR CUOMO’S BUDGET PROPOSES TO ELIMINATE MANDATORY DEPOSITS INTO THE ATF AND TO CLOSE THE FUND TO NEW DEPOSITS?','','publish','closed','closed','','did-you-know-governor-cuomos-budget-proposes-to-eliminate-mandatory-deposits-into-the-atf-and-to-close-the-fund-to-new-deposits','','','2022-08-31 09:18:11','2022-08-31 13:18:11','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/02/did-you-know-governor-cuomos-budget-proposes-to-eliminate-mandatory-deposits-into-the-atf-and-to-close-the-fund-to-new-deposits/',0,'post','',0),(46559,25,'2013-01-22 00:00:00','2013-01-22 05:00:00','<a href=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/01/SummaryRegChanges.pdf\" target=\"_blank\" rel=\"noopener\">Summary Regarding Changes (PDF)</a>\r\n\r\nHighlights of the changes to the MTG include the addition of CTS Guidlines, the addition of provisions related to “Maintenance Care,” and the elimination of anterior acromioplasty and chondroplasty from the list of procedures requiring prior authorization.','DID YOU KNOW? IMPLEMENTATION OF THE CHANGES TO THE MTG HAS BEEN DELAYED UNTIL MARCH 1, 2013.','','publish','closed','closed','','did-you-know-implementation-of-the-changes-to-the-mtg-has-been-delayed-until-march-1-2013','','','2022-08-31 09:18:11','2022-08-31 13:18:11','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/01/did-you-know-implementation-of-the-changes-to-the-mtg-has-been-delayed-until-march-1-2013/',0,'post','',0),(46560,2461,'2021-08-18 02:08:38','2021-08-18 06:08:38','','SummaryRegChanges','','inherit','closed','closed','','summaryregchanges','','','2021-08-18 02:08:38','2021-08-18 06:08:38','',46559,'/wp-content/uploads/sites/1503150/2013/01/SummaryRegChanges.pdf',0,'attachment','application/pdf',0),(46561,25,'2013-01-22 00:00:00','2013-01-22 05:00:00','A good friend recently shared a Board Panel decision with me where the Board found that unlike the situation where the carrier has surveillance materials, the existence of which must be disclosed before a Claimant testifies, a carrier does not need to disclose information gathered from someone’s Facebook page before the Claimant testifies. Although the decision is not in Lexis’ database yet, it can be found on this website on the Client Resources page.','DID YOU KNOW? FACEBOOK PAGES ARE NOT CONSIDERED “SURVEILLANCE” THAT HAS TO BE DISCLOSED BEFORE A CLAIMANT TESTIFIES.','','publish','closed','closed','','did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies','','','2022-08-31 09:18:11','2022-08-31 13:18:11','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/',0,'post','',0),(46563,25,'2013-01-14 00:00:00','2013-01-14 05:00:00','WCL §15(3)(v) which permits claimants with SLUs greater than 50% for possible additional payments of compensation following exhaustion of the schedule, should be subject to the new PPD caps found in WCL §15(3)(w) because the statute indicates, among other requirements, that the additional benefits “shall be determined in accordance with paragraph w of this subdivision.”','DID YOU KNOW? WCL §15(3)(v) BENEFITS MAY NOW BE CAPPED UNDER WCL §15(3)(w)','','publish','closed','closed','','did-you-know-wcl-%c2%a7153v-benefits-may-now-be-capped-under-wcl-%c2%a7153w','','','2022-08-31 09:18:11','2022-08-31 13:18:11','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/01/did-you-know-wcl-%c2%a7153v-benefits-may-now-be-capped-under-wcl-%c2%a7153w/',0,'post','',0),(46564,25,'2013-01-10 00:00:00','2013-01-10 05:00:00','I have a claim where the judge directed submission of briefs on the outstanding issues on a very complicated case including compensability and fraud, which came and went four weeks ago without a submission from Claimant’s counsel. The original date was earlier, but neither the claimant’s attorney nor I were able to meet that deadline because one of the transcripts was not ready, so I prepared a joint request for an extension of time which was granted by Notice of Decision.\r\n\r\nI dutifully submitted my brief on behalf of the employer, but have yet to see one from Claimant. I have since asked for preclusion, but it doesn’t seem likely that that remedy will be granted.\r\n\r\nI understand that people are very busy, but it seems to me that a unilateral request for an extension of time could have and should have been requested by Claimant’s counsel. Yet that was not done, and I don’t think that will ultimately affect whether the law judge accepts and considers Claimant’s position paper if and when one is submitted. This laxity likely leads Claimants’ attorneys to treat deadlines as suggestions rather than as absolutes.\r\n\r\nI am also annoyed because Claimant has had my Brief for four weeks and has the advantage of being able to respond to my position instead of having to advance his position independently. I intend upon asking for an opportunity to reply if and when a brief is submitted.\r\n\r\nI could file an RFA and request for a hearing, and if I really wanted to be aggressive, a request for a hearing on the issue of 114-a could be submitted, on the basis that the conduct is dilatory, but that would likely just lead to another “deadline” for submission being set and runs the risk of annoying the judge.\r\n\r\nThe failure to adhere to a deadline without requesting an extension should come with some real threat of repercussion, such as reduction of the fee if one is granted, or a penalty to be paid by Claimant’s counsel. There are avenues available to request these very remedies, but in the 15 years I have been practicing I have not seen these provisions enforced. If they were this might help change the character of a”deadline” from a mere hope to something meaningful.','WHY? Why do judge’s even set deadlines for the submission of Memoranda of Law?','','publish','closed','closed','','why-why-do-judges-even-set-deadlines-for-the-submission-of-memoranda-of-law','','','2022-08-31 09:18:11','2022-08-31 13:18:11','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/01/why-why-do-judges-even-set-deadlines-for-the-submission-of-memoranda-of-law/',0,'post','',0),(46565,25,'2013-01-05 00:00:00','2013-01-05 05:00:00','CLAIMANTS WHO HAVE A 0% LWEC, LOSS OF WAGE EARNING CAPACITY, ARE ENTITLED TO 225 WEEKS OF CAPPED PPD BENEFITS.\r\n\r\nIn more than one Board Panel Decision, including Wegmans, 2012 NY Wrk. Comp. 32313, G003 2313 and Great Meadow Correctional, 2012 NY Wrk. Comp. 114439, G011 4439, the Board has found that a Claimant who has returned to work earning in excess of their established weekly wage has a 0% loss of wage earning capacity but is still entitled to 225 weeks of capped PPD benefits in the event that they are wages fall below their former AWW.\r\n\r\nI recently argued that this principle should apply to a non-working Claimant. I posited that the Claimant, who has an impairment which limits her to light or sedentary work, should be found to have a 0% loss of wage earning capacity. A vocational rehabilitation expert opined that the claimant was capable of returning to work earning in excess of her former average weekly wage despite her impairment because of her vocational history and educational achievements. We will see what happens.','DID YOU KNOW?','','publish','closed','closed','','did-you-know','','','2022-08-31 09:18:11','2022-08-31 13:18:11','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/2013/01/did-you-know/',0,'post','',0),(46613,1251,'2021-08-18 04:51:27','2021-08-18 08:51:27','','quote-bg','','inherit','closed','closed','','quote-bg','','','2021-08-18 04:51:27','2021-08-18 08:51:27','',6,'/wp-content/uploads/sites/1503150/2021/08/quote-bg.png',0,'attachment','image/png',0),(46668,1251,'2022-08-16 11:40:27','2021-08-18 12:58:22','','','','publish','closed','closed','','46668','','','2022-08-16 11:40:27','2022-08-16 15:40:27','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=46668',6,'nav_menu_item','',0),(46669,1251,'2022-08-16 11:40:20','2021-08-18 12:58:22','','','','publish','closed','closed','','46669','','','2022-08-16 11:40:20','2022-08-16 15:40:20','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=46669',3,'nav_menu_item','',0),(46670,1251,'2022-08-16 11:40:52','2021-08-18 12:58:22','','','','publish','closed','closed','','46670','','','2022-08-16 11:40:52','2022-08-16 15:40:52','',45926,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=46670',18,'nav_menu_item','',0),(46748,1251,'2021-08-19 05:11:11','2021-08-19 09:11:11','','AdobeStock_221755833-D','','inherit','closed','closed','','adobestock_221755833-d','','','2021-08-19 05:11:11','2021-08-19 09:11:11','',6,'/wp-content/uploads/sites/1503150/2021/08/AdobeStock_221755833-D.jpg',0,'attachment','image/jpeg',0),(46765,1251,'2021-08-19 06:14:44','2021-08-19 10:14:44','','ic2','','inherit','closed','closed','','ic2','','','2021-08-19 06:14:44','2021-08-19 10:14:44','',6,'/wp-content/uploads/sites/1503150/2021/08/ic2.png',0,'attachment','image/png',0),(46766,1251,'2021-08-19 06:14:46','2021-08-19 10:14:46','','ic3','','inherit','closed','closed','','ic3','','','2021-11-17 16:20:13','2021-11-17 21:20:13','',6,'/wp-content/uploads/sites/1503150/2021/08/ic3.png',0,'attachment','image/png',0),(46767,1251,'2021-08-19 06:14:49','2021-08-19 10:14:49','','ic1','','inherit','closed','closed','','ic1','','','2021-11-17 16:20:07','2021-11-17 21:20:07','',6,'/wp-content/uploads/sites/1503150/2021/08/ic1.png',0,'attachment','image/png',0),(46773,1251,'2021-08-19 06:25:20','2021-08-19 10:25:20','','logo_a','','inherit','closed','closed','','logo_a','','','2021-11-23 15:07:14','2021-11-23 20:07:14','',6,'/wp-content/uploads/sites/1503150/2021/08/logo_a.png',0,'attachment','image/png',0),(46788,1251,'2021-08-19 06:51:15','2021-08-19 10:51:15','','AdobeStock_387392035','','inherit','closed','closed','','adobestock_387392035','','','2021-08-19 06:51:15','2021-08-19 10:51:15','',6,'/wp-content/uploads/sites/1503150/2021/08/AdobeStock_387392035.jpg',0,'attachment','image/jpeg',0),(46824,1251,'2021-08-19 07:51:44','2021-08-19 11:51:44','','AdobeStock_432435637','','inherit','closed','closed','','adobestock_432435637','','','2021-08-19 07:51:44','2021-08-19 11:51:44','',6,'/wp-content/uploads/sites/1503150/2021/08/AdobeStock_432435637.jpg',0,'attachment','image/jpeg',0),(46833,1251,'2021-08-19 10:04:31','2021-08-19 14:04:31','','logo_icon','','inherit','closed','closed','','logo_icon','','','2021-11-23 15:07:20','2021-11-23 20:07:20','',6,'/wp-content/uploads/sites/1503150/2021/08/logo_icon.png',0,'attachment','image/png',0),(46836,1251,'2021-08-19 10:11:37','2021-08-19 14:11:37','','Default Website Template','','publish','closed','closed','','default-website-template-5','','','2021-11-30 02:36:57','2021-11-30 07:36:57','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_template/default-website-template-5/',0,'et_template','',0),(46837,1251,'2021-08-19 10:11:38','2021-08-19 14:11:38','','Two Column Layout','','publish','closed','closed','','two-column-layout-5','','','2021-11-30 02:36:59','2021-11-30 07:36:59','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_template/two-column-layout-5/',0,'et_template','',0),(46838,1251,'2021-08-19 10:11:38','2021-08-19 14:11:38','','Single Column Layout','','publish','closed','closed','','single-column-layout-5','','','2021-11-30 02:37:00','2021-11-30 07:37:00','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_template/single-column-layout-5/',0,'et_template','',0),(46839,1251,'2021-08-19 10:11:38','2021-08-19 14:11:38','','Blog','','publish','closed','closed','','blog-5','','','2021-11-30 02:37:02','2021-11-30 07:37:02','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_template/blog-5/',0,'et_template','',0),(46840,1251,'2021-08-19 10:11:38','2021-08-19 14:11:38','','Blog Posts','','publish','closed','closed','','blog-posts-5','','','2021-11-30 02:37:03','2021-11-30 07:37:03','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_template/blog-posts-5/',0,'et_template','',0),(46841,1251,'2021-08-19 10:11:38','2021-08-19 14:11:38','','Category and Search Results','','publish','closed','closed','','category-and-search-results-5','','','2021-11-30 02:37:08','2021-11-30 07:37:08','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_template/category-and-search-results-5/',0,'et_template','',0),(46842,1251,'2021-08-19 10:11:38','2021-08-19 14:11:38','','404','','publish','closed','closed','','404-5','','','2021-11-30 02:37:13','2021-11-30 07:37:13','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_template/404-5/',0,'et_template','',0),(46843,1251,'2021-08-19 10:11:38','2021-08-19 14:11:38','','PPC Landing Pages','','publish','closed','closed','','ppc-landing-pages-5','','','2021-11-30 02:37:14','2021-11-30 07:37:14','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_template/ppc-landing-pages-5/',0,'et_template','',0),(46844,1251,'2021-08-19 10:11:38','2021-08-19 14:11:38','','Landing Pages [privacy, disclaimer, thank you]','','publish','closed','closed','','landing-pages-privacy-disclaimer-thank-you-5','','','2021-11-30 02:37:16','2021-11-30 07:37:16','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_template/landing-pages-privacy-disclaimer-thank-you-5/',0,'et_template','',0),(46845,1251,'2021-08-19 10:11:38','2021-08-19 14:11:38','','Custom Home Layout','','publish','closed','closed','','custom-layout-1-5','','','2021-11-30 02:37:19','2021-11-30 07:37:19','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_template/custom-layout-1-5/',0,'et_template','',0),(46860,1251,'2021-08-19 10:27:16','2021-08-19 14:27:16','','AdobeStock_432435637-T','','inherit','closed','closed','','adobestock_432435637-t','','','2021-08-19 10:27:16','2021-08-19 14:27:16','',6,'/wp-content/uploads/sites/1503150/2021/08/AdobeStock_432435637-T.jpg',0,'attachment','image/jpeg',0),(46875,1251,'2021-08-19 10:54:50','2021-08-19 14:54:50','','AdobeStock_221755833-T','','inherit','closed','closed','','adobestock_221755833-t','','','2021-08-19 10:54:50','2021-08-19 14:54:50','',6,'/wp-content/uploads/sites/1503150/2021/08/AdobeStock_221755833-T.jpg',0,'attachment','image/jpeg',0),(46876,1251,'2021-08-19 10:54:53','2021-08-19 14:54:53','','AdobeStock_221755833-M','','inherit','closed','closed','','adobestock_221755833-m','','','2021-08-19 10:54:53','2021-08-19 14:54:53','',6,'/wp-content/uploads/sites/1503150/2021/08/AdobeStock_221755833-M.jpg',0,'attachment','image/jpeg',0),(46879,1251,'2021-08-23 01:12:38','2021-08-23 05:12:38','','AdobeStock_180103616-D','','inherit','closed','closed','','adobestock_180103616-d','','','2021-08-23 01:12:38','2021-08-23 05:12:38','',6,'/wp-content/uploads/sites/1503150/2021/08/AdobeStock_180103616-D.jpg',0,'attachment','image/jpeg',0),(46880,1251,'2021-08-23 01:12:43','2021-08-23 05:12:43','','AdobeStock_180103616-M','','inherit','closed','closed','','adobestock_180103616-m','','','2021-08-23 01:12:43','2021-08-23 05:12:43','',6,'/wp-content/uploads/sites/1503150/2021/08/AdobeStock_180103616-M.jpg',0,'attachment','image/jpeg',0),(46881,1251,'2021-08-23 01:12:48','2021-08-23 05:12:48','','AdobeStock_180103616-T','','inherit','closed','closed','','adobestock_180103616-t','','','2021-08-23 01:12:48','2021-08-23 05:12:48','',6,'/wp-content/uploads/sites/1503150/2021/08/AdobeStock_180103616-T.jpg',0,'attachment','image/jpeg',0),(46882,1251,'2021-08-23 01:20:44','2021-08-23 05:20:44','','AdobeStock_108033031-D','','inherit','closed','closed','','adobestock_108033031-d','','','2021-08-23 01:20:44','2021-08-23 05:20:44','',6,'/wp-content/uploads/sites/1503150/2021/08/AdobeStock_108033031-D.jpg',0,'attachment','image/jpeg',0),(46883,1251,'2021-08-23 01:20:48','2021-08-23 05:20:48','','AdobeStock_108033031-M','','inherit','closed','closed','','adobestock_108033031-m','','','2021-08-23 01:20:48','2021-08-23 05:20:48','',6,'/wp-content/uploads/sites/1503150/2021/08/AdobeStock_108033031-M.jpg',0,'attachment','image/jpeg',0),(46884,1251,'2021-08-23 01:20:51','2021-08-23 05:20:51','','AdobeStock_108033031-T','','inherit','closed','closed','','adobestock_108033031-t','','','2021-08-23 01:20:51','2021-08-23 05:20:51','',6,'/wp-content/uploads/sites/1503150/2021/08/AdobeStock_108033031-T.jpg',0,'attachment','image/jpeg',0),(46930,1731,'2021-09-09 16:21:02','2021-09-09 20:21:02','','Silhouette of business people work together in office. Concept of teamwork and partnership. double exposure with light effects','Business people collaborate together in office. Double exposure effects','inherit','closed','closed','','silhouette-of-business-people-work-together-in-office-concept-of-teamwork-and-partnership-double-exposure-with-light-effects','','','2021-09-09 16:21:02','2021-09-09 20:21:02','',6,'/wp-content/uploads/sites/1503150/2021/09/AdobeStock_236812913.jpeg',0,'attachment','image/jpeg',0),(46937,1251,'2021-09-10 05:45:36','2021-09-10 09:45:36','','AdobeStock_236812913','','inherit','closed','closed','','adobestock_236812913','','','2021-09-10 05:45:36','2021-09-10 09:45:36','',6,'/wp-content/uploads/sites/1503150/2021/09/AdobeStock_236812913.jpg',0,'attachment','image/jpeg',0),(46938,1251,'2021-09-10 05:45:54','2021-09-10 09:45:54','','AdobeStock_236812913-T','','inherit','closed','closed','','adobestock_236812913-t','','','2021-09-10 05:45:54','2021-09-10 09:45:54','',6,'/wp-content/uploads/sites/1503150/2021/09/AdobeStock_236812913-T.jpg',0,'attachment','image/jpeg',0),(46939,1251,'2021-09-10 05:45:57','2021-09-10 09:45:57','','AdobeStock_236812913-M','','inherit','closed','closed','','adobestock_236812913-m','','','2021-09-10 05:45:57','2021-09-10 09:45:57','',6,'/wp-content/uploads/sites/1503150/2021/09/AdobeStock_236812913-M.jpg',0,'attachment','image/jpeg',0),(46969,1251,'2021-09-10 07:16:12','2021-09-10 11:16:12','','AdobeStock_298378097','','inherit','closed','closed','','adobestock_298378097','','','2021-09-10 07:16:12','2021-09-10 11:16:12','',6,'/wp-content/uploads/sites/1503150/2021/09/AdobeStock_298378097.jpg',0,'attachment','image/jpeg',0),(46976,1251,'2021-09-10 07:33:13','2021-09-10 11:33:13','','tv','','inherit','closed','closed','','tv','','','2021-11-17 16:19:36','2021-11-17 21:19:36','',6,'/wp-content/uploads/sites/1503150/2021/09/tv.png',0,'attachment','image/png',0),(46988,1251,'2021-09-10 08:30:21','2021-09-10 12:30:21','','logo_b','','inherit','closed','closed','','logo_b','','','2021-11-23 15:07:09','2021-11-23 20:07:09','',6,'/wp-content/uploads/sites/1503150/2021/09/logo_b.png',0,'attachment','image/png',0),(47028,1251,'2021-09-10 10:47:37','2021-09-10 14:47:37','','map-tab','','inherit','closed','closed','','map-tab','','','2021-11-17 16:19:17','2021-11-17 21:19:17','',6,'/wp-content/uploads/sites/1503150/2021/09/map-tab.png',0,'attachment','image/png',0),(47029,1251,'2021-09-10 10:47:41','2021-09-10 14:47:41','','map-desk','','inherit','closed','closed','','map-desk','','','2021-11-17 16:19:13','2021-11-17 21:19:13','',6,'/wp-content/uploads/sites/1503150/2021/09/map-desk.png',0,'attachment','image/png',0),(47076,1731,'2021-09-10 14:53:43','2021-09-10 18:53:43','','AdobeStock_443605491-1','','inherit','closed','closed','','adobestock_443605491-1','','','2021-09-10 14:53:43','2021-09-10 18:53:43','',6,'/wp-content/uploads/sites/1503150/2021/09/AdobeStock_443605491-1.jpg',0,'attachment','image/jpeg',0),(47095,1251,'2021-09-13 04:22:25','2021-09-13 08:22:25','','logo_c','','inherit','closed','closed','','logo_c','','','2021-11-23 15:07:05','2021-11-23 20:07:05','',6,'/wp-content/uploads/sites/1503150/2021/09/logo_c.png',0,'attachment','image/png',0),(47099,1251,'2021-09-13 04:37:22','2021-09-13 08:37:22','','ic3','','inherit','closed','closed','','ic3-2','','','2021-11-17 16:18:56','2021-11-17 21:18:56','',6,'/wp-content/uploads/sites/1503150/2021/09/ic3.png',0,'attachment','image/png',0),(47100,1251,'2021-09-13 04:37:25','2021-09-13 08:37:25','','ic1','','inherit','closed','closed','','ic1-2','','','2021-11-30 08:01:28','2021-11-30 13:01:28','',6,'/wp-content/uploads/sites/1503150/2021/09/ic1.png',0,'attachment','image/png',0),(47101,1251,'2021-09-13 04:37:28','2021-09-13 08:37:28','','ic2','','inherit','closed','closed','','ic2-2','','','2021-11-17 16:18:37','2021-11-17 21:18:37','',6,'/wp-content/uploads/sites/1503150/2021/09/ic2.png',0,'attachment','image/png',0),(47118,1251,'2021-09-13 05:31:21','2021-09-13 09:31:21','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.18.0\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(46,85,145,0.8) 0%|#211865 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913.jpg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" hover_enabled=\"0\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" saved_tabs=\"all\" locked=\"off\" template_type=\"section\" collapsed=\"on\" global_colors_info=\"{}\" title_text=\"AdobeStock_236812913-M\" sticky_enabled=\"0\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.16\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Internal Page Banner','','publish','closed','closed','','internal-page-banner','','','2022-08-29 13:30:49','2022-08-29 17:30:49','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_pb_layout/internal-page-banner/',0,'et_pb_layout','',0),(47119,1251,'2021-09-13 05:31:51','2021-09-13 09:31:51','[et_pb_section fb_built=\"1\" disabled_on=\"on|on|off\" admin_label=\"FILE PATH\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" custom_padding=\"15px||0px||false|false\" hover_enabled=\"0\" border_width_bottom=\"1px\" border_color_bottom=\"#211865\" saved_tabs=\"all\" locked=\"off\" template_type=\"section\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row admin_label=\"File Path\" _builder_version=\"4.18.0\" width=\"90%\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\" collapsed=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][lwp_divi_breadcrumbs link_color=\"#211865\" separator_color=\"#211865\" current_text_color=\"#211865\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/lwp_divi_breadcrumbs][/et_pb_column][/et_pb_row][/et_pb_section]','Breadcrumbs','','publish','closed','closed','','breadcrumbs','','','2022-09-09 10:30:23','2022-09-09 14:30:23','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_pb_layout/breadcrumbs/',0,'et_pb_layout','',0),(47121,1251,'2021-09-13 05:33:46','2021-09-13 09:33:46','[et_pb_sidebar area=\"et_pb_widget_area_1\" admin_label=\"Sidebar\" module_class=\"fl-sidebar fl-lightlinks\" _builder_version=\"4.18.0\" header_font=\"|600|||||||\" header_text_align=\"left\" header_text_color=\"#ffffff\" header_font_size=\"35px\" body_font_size=\"18px\" background_color=\"#211865\" custom_margin_tablet=\"20px||||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"40px|45px|40px|45px|true|true\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" scroll_vertical_motion=\"19|63|63|100|4|0|-4\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_color_right_tablet=\"\" border_color_right_phone=\"\" border_color_right_last_edited=\"on|desktop\" box_shadow_style=\"preset1\" box_shadow_vertical=\"0px\" box_shadow_blur=\"0px\" box_shadow_spread=\"3px\" box_shadow_color=\"#211865\" saved_tabs=\"all\" template_type=\"module\" global_colors_info=\"{}\" disabled_on=\"on|on|off\" sticky_enabled=\"0\"][/et_pb_sidebar]','Sidebar-PA','','publish','closed','closed','','sidebar-pa','','','2022-09-14 13:29:30','2022-09-14 17:29:30','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_pb_layout/sidebar-pa/',0,'et_pb_layout','',0),(47123,1251,'2021-09-13 05:38:47','2021-09-13 09:38:47','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|desktop\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-scaled.jpeg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"-330px||||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"420px||100px||false|false\" custom_padding_phone=\"\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.3.2\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\" background_enable_color=\"off\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|off|off\" admin_label=\"FILE PATH\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" custom_padding=\"15px||0px||false|false\" border_width_bottom=\"1px\" border_color_bottom=\"#211865\" global_module=\"47119\" saved_tabs=\"all\" locked=\"off\"][et_pb_row admin_label=\"File Path\" _builder_version=\"4.3.2\" width=\"90%\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\"][et_pb_dcsbcm_divi_breadcrumbs_module separator=\"sep-pipe\" admin_label=\"Breadcrumbs\" module_class=\"fl-darklinks\" _builder_version=\"4.3.2\" body_text_color=\"#211865\" body_font_size=\"18px\" fontsseparator_text_color=\"#211865\" fontsseparator_font_size=\"18px\" fontsbreadcrumblinks_text_color=\"#211865\" fontsbreadcrumblinks_font_size=\"19px\" fontsbreadcrumblinks_line_height=\"1.5em\" custom_padding=\"0px||0px||true|false\"][/et_pb_dcsbcm_divi_breadcrumbs_module][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"INTERNAL PAGE CONTENT\" _builder_version=\"4.3.2\" background_enable_color=\"off\" custom_padding=\"55px||55px||true|false\"][et_pb_row admin_label=\"Internal Page Content\" _builder_version=\"4.3.2\" width=\"90%\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.3.2\" custom_padding_last_edited=\"off|desktop\"][et_pb_post_content quote_border_color=\"#2e5591\" module_class=\"fl-darklinks fl-inner-left\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" text_font_size=\"18px\" link_text_color=\"#211865\" header_text_color=\"#211865\" header_2_text_color=\"#211865\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#211865\" header_6_text_color=\"#211865\" background_enable_color=\"off\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#000000\"][/et_pb_post_content][/et_pb_column][/et_pb_row][/et_pb_section]','Single Column Layout','','publish','open','closed','','theme-builder-layout-11','','','2022-09-09 10:23:07','2022-09-09 14:23:07','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_body_layout/theme-builder-layout-11/',0,'et_body_layout','',0),(47138,1251,'2021-09-13 05:40:40','2021-09-13 09:40:40','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.18.0\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(46,85,145,0.8) 0%|#211865 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913.jpg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.16\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|off\" admin_label=\"FILE PATH\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" custom_padding=\"15px||0px||false|false\" border_width_bottom=\"1px\" border_color_bottom=\"#211865\" global_module=\"47119\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row admin_label=\"File Path\" _builder_version=\"4.18.0\" width=\"90%\" custom_padding=\"0px||0px||true|false\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][lwp_divi_breadcrumbs link_color=\"#211865\" separator_color=\"#211865\" current_text_color=\"#211865\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/lwp_divi_breadcrumbs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"INTERNAL PAGE CONTENT\" _builder_version=\"4.16\" custom_padding=\"55px||55px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Internal Page Content\" _builder_version=\"4.18.0\" width=\"90%\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|50px|||false|false\" custom_padding_tablet=\"|0px|30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_post_content quote_border_color=\"#2e5591\" module_class=\"fl-darklinks fl-inner-left\" _builder_version=\"4.16\" text_font_size=\"18px\" link_text_color=\"#ffffff\" header_text_color=\"#211865\" header_2_text_color=\"#211865\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#211865\" header_6_text_color=\"#211865\" global_colors_info=\"{}\"][/et_pb_post_content][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.18.0\" custom_padding=\"|0px||28px|false|false\" global_colors_info=\"{}\"][et_pb_search placeholder=\"Looking for a topic?\" placeholder_color=\"#FFFFFF\" admin_label=\"LOMAD Blog Search\" module_class=\"lm-ignore\" _builder_version=\"4.18.0\" _module_preset=\"default\" button_font=\"Playfair Display||||||||\" button_font_size=\"16px\" form_field_font=\"Playfair Display|500|||||||\" form_field_font_size=\"17px\" background_color=\"#211865\" background_layout=\"dark\" custom_margin=\"||21px||false|false\" custom_padding=\"1em||1em||false|false\" hover_enabled=\"0\" border_radii=\"on||||\" global_colors_info=\"{}\" custom_margin_last_edited=\"on|phone\" sticky_enabled=\"0\" custom_margin_phone=\"|22px|||false|false\" form_field_font_size_last_edited=\"on|phone\" form_field_font_size_phone=\"15px\" width=\"310px\" custom_margin_tablet=\"||21px||false|false\" form_field_font_size_tablet=\"17px\"][/et_pb_search][et_pb_accordion open_toggle_text_color=\"#211865\" open_toggle_background_color=\"#d8d8d8\" closed_toggle_text_color=\"#211865\" closed_toggle_background_color=\"#d8d8d8\" toggle_icon=\"&#x3b;||divi||400\" icon_color=\"#211865\" _builder_version=\"4.18.0\" _module_preset=\"default\" toggle_text_color=\"#211865\" toggle_font=\"|700|||||||\" toggle_font_size=\"17px\" closed_toggle_font=\"|700|||||||\" body_text_color=\"#211865\" background_color=\"#211865\" module_alignment=\"left\" hover_enabled=\"0\" border_color_all=\"#211865\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"|0px|||false|false\" custom_padding=\"|12px|||false|false\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"||||false|false\" width_last_edited=\"on|phone\" width_phone=\"310px\" custom_margin_tablet=\"|0px|||false|false\"][et_pb_accordion_item title=\" May 2021\" open=\"off\" open_toggle_background_color=\"#d8d8d8\" closed_toggle_background_color=\"#d8d8d8\" icon_color=\"#211865\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/labor-market-attachment-and-retirement/\" data-wpel-link=\"internal\" role=\"link\">Labor Market Attachment and Retirement</a><br /></strong><em>May 24, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\" data-wpel-link=\"internal\" role=\"link\">Claim Disallowance With Unanimous Medical Opinion Giving Causal Relationship</a><br /></strong><em>May 17, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/employers-do-not-have-to-prove-prejudice-by-late-notice-but-it-certainly-doesnt-hurt-to-do-so/\" data-wpel-link=\"internal\" role=\"link\">Employers Do Not Have to Prove Prejudice by Late Notice, but it Certainly Doesn’t Hurt To Do So!</a><br /></strong><em>May 10, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\" data-wpel-link=\"internal\" role=\"link\">The Claimant’s Burden: Proving the Causal Relationship of an Injury</a><br /></strong><em>May 3, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"April 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" open=\"on\" sticky_enabled=\"0\"]<ul>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/social-media-and-fraud-youd-be-surprised-what-people-post/\" data-wpel-link=\"internal\" role=\"link\">Social Media and Fraud – You’d Be Surprised What People Post!</a><br /></strong><em>April 26, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/never-give-in-disallowance-win/\" data-wpel-link=\"internal\" role=\"link\">Never Give In! Disallowance Win!</a><br /></strong><em>April 19, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/an-interesting-ime-development/\" data-wpel-link=\"internal\" role=\"link\">An “Interesting” IME Development</a></strong><strong><br /></strong><em>April 12, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/section-44-not-even-a-portion-of-liability-for-the-occupational-disease/\" data-wpel-link=\"internal\" role=\"link\">Section 44: Not Even a Portion of Liability For The Occupational Disease</a><br /></strong><em>April 5, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"March 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">When Do Work From Home Accidents Occur in the Scope and Course of Employment?</a><br /></strong><em>March 15, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/03/thoughts-on-thinking-a-strange-title-about-practicing-law/\">Thoughts on Thinking: A Strange Title About Practicing Law</a><br /></strong><em>March 8, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/03/genduso-and-total-joint-replacement-schedules/\">Genduso and Total Joint Replacement Schedules</a><br /></strong><em>March 1, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"February 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/occupational-disease-claims-after-matter-of-pinnacle-industries-ii-llc-2019-ny-wrk-comp-g2020587/\">Occupational Disease Claims after Matter of Pinnacle Industries II, LLC (2019 NY Wrk Comp G2020587)</a><br /></strong><em>February 22, 2021</em><strong><br /></strong></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/\">No Further Causally Related Disability Due to Intervening Unrelated Accident</a><br /></strong><em>February 15, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/independent-contractor-or-employee/\">Independent Contractor or Employee</a><br /></strong><em>February 8, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/no-error-of-law-or-fact-in-an-application-for-full-board-review/\">No Error of Law or Fact In An Application For Full Board Review</a><br /></strong><em>February 1, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"January 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">Fraud in the Family – Claimant Doing Other Work while Receiving Comp Benefits</a></strong><br /><em>January 25, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/how-change-in-conditions-for-classified-claimants-changed-drastically/\">How Change in Conditions for Classified Claimants Changed Drastically</a></strong><br />January 19, 2021</h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/success-with-wcl-section-18/\">Success with WCL Section 18</a></strong><br /><em>January 11, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">Doubling Down – 2 Hearing Loss Claims for the Same Claimant Denied on the Same Day</a></strong><br /><em>January 4, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2020\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2020/07/successful-disallowance/\"><strong>Successful Disallowance!</strong></a><br /><em>July 26, 2020</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2020/07/another-win-for-the-law-offices-of-melissa-a-day/\"><strong>Another Win for The Law Offices of Melissa A. Day!</strong></a><br /><em>July 22, 2020</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2020/07/a-win-for-the-law-offices-of-melissa-a-day/\"><strong>A Win for The Law Offices of Melissa A. Day</strong></a><br /><em>July 21, 2020</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2019\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/07/melissa-a-day-esq-invited-to-join-buffalo-business-first-leadership-trust/\"><strong>Melissa A. Day, Esq. invited to join Buffalo Business First Leadership Trust</strong></a><br /><em>July 30, 2019</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/05/claimants-conviction-of-unlawful-manufacture-of-methamphetamine-does-not-amount-to-a-violation-under-wcl-114-a/\"><strong>Claimant’s conviction of unlawful manufacture of methamphetamine does not amount to a violation under WCL 114-a.</strong></a><br /><em>May 31, 2019</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/\">Amendments to 2017 not retroactive if PPD claimant was not attached to labor market</a><br /></strong><em>May 31, 2019</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/05/lwec-incontinence/\"><strong>LWEC &amp; Incontinence</strong></a><br /><em>May 28, 2019</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/05/a-new-quest-begins/\"><strong>A New Quest Begins</strong><strong></strong></a><br /><em>May 21, 2019</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2018\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/12/appeals-inventory-and-forms/\"><strong>Appeals Inventory and Forms</strong></a><br /><em>December 17, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\"><strong>Review of Workers Compensation Board Schedule Loss of Use Frequently Asked Questions and New Permanency Forms</strong></a><br /><em>December 17, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/proposed-changes-submitted-seeking-to-expand-the-boards-legal-internship-program/\"><strong>Proposed Changes Submitted Seeking to Expand the Board’s Legal Internship Program</strong></a><br /><em>May 25, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/youre-claiming-what/\"><strong>You’re claiming what?!?</strong></a><br /><em>May 25, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/new-slu-guidelines-presentation-by-the-board/\"><strong>New SLU Guidelines Presentation by the Board</strong></a><br /><em>May 23, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/united-states-supreme-court-is-considering-a-petition-for-a-writ-of-certiorari-of-the-american-economy-decision/\"><strong>United States Supreme Court is Considering a Petition for a Writ of Certiorari Of the American Economy Decision</strong></a><br /><em>May 23, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/03/ricky-costner-jr-18-year-old-slain-by-a-deranged-co-worker-honored-by-family-and-friends/\"><strong>Ricky Costner Jr., 18 Year Old Slain by a Deranged Co-Worker, Honored by Family and Friends</strong></a><br /><em>March 31, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\"><strong>Schedule Loss of Use Awards – Grrrrrrrrr</strong></a><br /><em>March 31, 2018</em><br /><em></em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2017\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/10/court-of-appeals-upholds-2013-amendment-to-section-25-a-marking-the-end-for-the-fund-for-reopened-cases/\"><strong>Court of Appeals Upholds 2013 Amendment to Section 25-a – Marking the End for The Fund for Reopened Cases</strong></a><br /><em>October 26, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\"><strong>How to Avoid Bad Luck in Your Comp Claims This Friday the 13th – Some Basic Time Constraints for New York State Workers’ Compensation Claims to Keep in Mind</strong></a><br /><em>October 12, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\"><strong>Board Finds that Medical Treatment Guidelines Apply to Out of State Claimants</strong></a><br /><em>June 7, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/02/permanent-partial-disability-safety-netwhat-to-expect-from-wcl-%c2%a735/\"><strong>Permanent Partial Disability “Safety Net”…What to Expect from WCL §35</strong></a><br /><em>February 5, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/01/back-to-the-future-the-return-of-wcl-252-b-fact-finding-without-judges-and-legal-reasoning-without-lawyers/\"><strong>Back to the Future: The Return of WCL 25(2-b): Fact-Finding without Judges and Legal Reasoning without Lawyers</strong></a><br /><em>January 18, 2017</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2016\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/12/its-the-holiday-season/\"><strong>It’s the Holiday Season!</strong></a><br /><em>December 8, 2016</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/10/happy-hallo-wean/\"><strong>HAPPY HALLO-WEAN!</strong></a><br /><em>October 31, 2016</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/10/to-wean-or-not-to-wean-that-is-the-question/\"><strong>TO WEAN, OR NOT TO WEAN, THAT IS THE QUESTION.</strong></a><br /><em>October 25, 2016</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/04/reopened-cases/\"><strong>Reopened Cases</strong></a><br /><em>April 15, 2016</em><em></em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2015\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/11/ny-allows-employer-to/\"><strong>NY Allows Employer to…</strong></a><br /><em>November 28, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/11/an-employee-cannot-be/\"><strong>An Employee Cannot be…</strong></a><br /><em>November 23, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/10/vocational-and-functional/\"><strong>Vocational and Functional…</strong></a><br /><em>October 27, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/09/challenge-yourself/\"><strong>Challenge Yourself</strong></a><br /><em>September 19, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/09/labor-market-attachment-refresher/\"><strong>Labor Market Attachment Refresher</strong></a><br /><em>September 16, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/09/summer-is-almost-over/\"><strong>Summer is Almost Over!</strong></a><br /><em>September 7, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/claims-handling-performance/\"><strong>Claims Handling Performance</strong></a><br /><em>August 23, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/answers-to-the-quiz/\"><strong>Answers to the Quiz</strong></a><br /><em>August 10, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/average-wages/\"><strong>Average Wages?</strong></a><br /><em>August 7, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/non-acute-pain-treatment-guidelines/\"><strong>Non-Acute Pain Treatment Guidelines</strong></a><br /><em>August 5, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\"><strong>Test Your NY Workers’ Compensation Chops</strong></a><br />August 3, 2015</h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/07/liability-for-treatment-by-social-workers/\"><strong>Liability for Treatment by Social Workers</strong></a><br /><em>July 21, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/07/mds-jds-and-ttds/\"><strong>MDs, JDs AND TTDs</strong></a><br /><em>July 13, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/07/hot-dogs-or-hamburgers/\"><strong>HOT DOGS OR HAMBURGERS?</strong></a><br /><em>July 1, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/06/imes-the-next-summer-movie-blockbuster-or-just-another-ime-gone-bust/\"><strong>IMEs : The Next Summer Movie Blockbuster or Just Another IME Gone Bust?</strong></a><br /><em>June 29, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/06/wcbs-regulatory-agenda-may-include/\"><strong>WCB’s Regulatory Agenda May Include…</strong></a><br /><em>June 14, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/02/an-underwriting-nightmare-come-true/\"><strong>An Underwriting Nightmare Come True</strong></a><br /><em>February 5, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/02/hearing-loss-becomes-hearing-win/\"><strong>Hearing Loss becomes Hearing Win</strong></a><br /><em>February 5, 2015</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2014\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\"><strong>Non Acute Pain Medical Treatment Guidelines Offer a Framework for Controlling Costs Associated with Chronic Pain Management, Especially Opioid Use</strong></a><br /><em>November 24, 2014</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\"><strong>In Kigin v. WCB, the Court of Appeals upholds the presumption that treatment outside the MTGs is not medically necessary and the attending physician has the burden of proof of the need for a variance.</strong></a><br /><em>November 23, 2014</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\"><strong>The Law Offices of Melissa A. Day, PLLC Won a Finding of a 0% Loss of Wage Earning Capacity</strong></a><br /><em>November 22, 2014</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">Navigating the Low Back Medical Treatment Guidelines for Chiropractic Care</a><br /><em>Sseptember 12, 2014</em><br /></strong></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2013\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/12/did-you-know-the-board-has-retired-the-concept-of-the-compensable-retirement-the-death-knell-of-the-trifecta-zamora-and-the-so-called-compensable-retirement/\"><strong>DID YOU KNOW? THE BOARD HAS RETIRED THE CONCEPT OF THE COMPENSABLE RETIREMENT. The Death Knell of the Trifecta: Zamora and the so-called “Compensable Retirement”</strong></a><br /><em>December 17, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\"><strong>A Blind Leap across an Inscrutable Chasm – Arbitrary and Capricious Loss of Wage Earning Capacity (LWEC) Determinations</strong></a><br /><em>November 30, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\"><strong>LESS THAN TWELVE WEEKS REMAINING FOR WCL §25-a! Because Subject # 046-630 Contains Stricter Requirements for Reopening a Claim on the Issue of §25-a, Prudent Carriers and Employers May Want to Refer Applications to Defense Counsel</strong></a><br /><em>October 10, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\"><strong>BOARD PROCESS RE-ENGINEERING (“BPR”) – NY WORKERS’ COMPENSATION FORUM MEMBERS SHOULD BE INCLUDED IN THE DIALOGUE</strong></a><br /><em>September 13, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/08/did-you-know-the-2nd-circuit-certified-a-question-to-the-ny-court-of-appeals-on-the-exclusivity-provision-of-the-wcl/\"><strong>DID YOU KNOW? The 2nd Circuit certified a question to the NY Court of Appeals on the exclusivity provision of the WCL?</strong></a><br /><em>August 14, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\"><strong>DID YOU KNOW? Twenty Insurance Carriers Have Filed an Action Seeking to Obtain a Declaration that the Elimination of The Fund for Reopened Cases Is Unconstitutional.</strong></a><br /><em>August 3, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\"><strong>DID YOU KNOW? THE THIRD DEPARTMENT HOLDS THAT MEDICAL TREATMENT WHICH IS NOT SPECIFICALLY INCLUDED IN THE MTG IS PRESUMPTIVELY NOT MEDICALLY NECESSARY.</strong></a><br /><em>July 30 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\"><strong>DID YOU KNOW? AN EMPLOYER OR CARRIER MAY BE ABLE TO REOPEN A PPD CLAIM ON THE ISSUE OF LABOR MARKET ATTACHMENT.</strong></a><br /><em>July 13, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\"><strong>DID YOU KNOW? A bill being considered by the NY State Legislature which would create a presumption of permanent total disability for claimants who are found eligible for social security?</strong></a><br /><em>April 30, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/04/did-you-know-25-a-is-going-away/\"><strong>DID YOU KNOW? 25-A IS GOING AWAY.</strong></a><br /><em>April 6, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">DID YOU KNOW? A chiropractic variance request based on alleged functional improvements and expected continued improvements may not be granted if the chiropractor continues to find that the claimant is totally disabled.</a><br /><em>March 13, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\"><strong>DID YOU KNOW? The Federal Government Is Not Subject to the Jurisdiction of the NY Workers’ Compensation Board on a Theory of General/Special Employment?</strong></a><br /><em>February 23, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/02/did-you-know-governor-cuomos-budget-proposes-to-eliminate-mandatory-deposits-into-the-atf-and-to-close-the-fund-to-new-deposits/\"><strong>DID YOU KNOW? GOVERNOR CUOMO’S BUDGET PROPOSES TO ELIMINATE MANDATORY DEPOSITS INTO THE ATF AND TO CLOSE THE FUND TO NEW DEPOSITS?</strong></a><br />February 5, 2013</h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know-implementation-of-the-changes-to-the-mtg-has-been-delayed-until-march-1-2013/\"><strong>DID YOU KNOW? IMPLEMENTATION OF THE CHANGES TO THE MTG HAS BEEN DELAYED UNTIL MARCH 1, 2013.</strong></a><br /><em>January 22, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\"><strong>DID YOU KNOW? FACEBOOK PAGES ARE NOT CONSIDERED “SURVEILLANCE” THAT HAS TO BE DISCLOSED BEFORE A CLAIMANT TESTIFIES.</strong></a><br /><em>January 22, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know-wcl-%c2%a7153v-benefits-may-now-be-capped-under-wcl-%c2%a7153w/\"><strong>DID YOU KNOW? WCL §15(3)(v) BENEFITS MAY NOW BE CAPPED UNDER WCL §15(3)(w)</strong></a><br /><em>January 14, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/why-why-do-judges-even-set-deadlines-for-the-submission-of-memoranda-of-law/\"><strong>WHY? Why do judge’s even set deadlines for the submission of Memoranda of Law?</strong></a><br /><em>January 10, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know/\"><strong>DID YOU KNOW?</strong></a><br /><em>January 5, 2013</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section]','Blog','','publish','open','closed','','theme-builder-layout-12','','','2022-09-14 14:43:25','2022-09-14 18:43:25','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_body_layout/theme-builder-layout-12/',0,'et_body_layout','',0),(47151,1251,'2021-09-13 05:42:38','2021-09-13 09:42:38','[et_pb_sidebar area=\"sidebar-1\" admin_label=\"Sidebar\" module_id=\"fl-sidebar-blog\" module_class=\"fl-lightlinks\" _builder_version=\"4.18.0\" header_font=\"|600|||||||\" header_text_align=\"left\" header_text_color=\"#ffffff\" header_font_size=\"35px\" body_font_size=\"18px\" background_color=\"#211865\" custom_padding=\"40px|45px|40px|45px|true|true\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" box_shadow_vertical=\"0px\" box_shadow_blur=\"0px\" box_shadow_spread=\"3px\" box_shadow_color=\"#211865\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"module\"][/et_pb_sidebar]','Sidebar-Blog','','publish','closed','closed','','sidebar-blog','','','2022-08-30 09:11:43','2022-08-30 13:11:43','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_pb_layout/sidebar-blog/',0,'et_pb_layout','',0),(47166,1251,'2021-09-13 05:44:05','2021-09-13 09:44:05','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.18.0\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(46,85,145,0.8) 0%|#211865 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913.jpg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.16\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|off\" admin_label=\"FILE PATH\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" custom_padding=\"15px||0px||false|false\" hover_enabled=\"0\" border_width_bottom=\"1px\" border_color_bottom=\"#211865\" global_module=\"47119\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row admin_label=\"File Path\" _builder_version=\"4.18.0\" width=\"90%\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\" collapsed=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][lwp_divi_breadcrumbs link_color=\"#211865\" separator_color=\"#211865\" current_text_color=\"#211865\" _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/lwp_divi_breadcrumbs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"INTERNAL PAGE CONTENT\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_padding=\"55px||55px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Internal Page Content\" _builder_version=\"4.16\" width=\"90%\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|50px|||false|false\" custom_padding_tablet=\"|0px|30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_post_title module_class=\"fl-darklinks fl-inner-left fl-blog-left\" _builder_version=\"4.16\" title_text_color=\"#211865\" meta_text_color=\"#211865\" meta_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\"][/et_pb_post_title][et_pb_post_content quote_border_color=\"#2e5591\" module_class=\"fl-darklinks fl-inner-left\" _builder_version=\"4.16\" text_text_color=\"#000000\" text_font_size=\"18px\" header_text_color=\"#211865\" header_2_text_color=\"#211865\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#211865\" header_6_text_color=\"#211865\" background_enable_color=\"off\" global_colors_info=\"{}\"][/et_pb_post_content][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_search placeholder=\"Looking for a topic?\" placeholder_color=\"#FFFFFF\" admin_label=\"LOMAD Blog Search\" module_class=\"lm-ignore lm-ignore-mas\" _builder_version=\"4.18.0\" _module_preset=\"default\" button_font=\"Playfair Display||||||||\" button_font_size=\"16px\" form_field_font=\"Playfair Display|500|||||||\" form_field_font_size=\"17px\" background_color=\"#211865\" background_layout=\"dark\" custom_margin=\"||21px||false|false\" custom_padding=\"1em||1em||false|false\" hover_enabled=\"0\" border_radii=\"on||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_search][et_pb_accordion open_toggle_text_color=\"#211865\" open_toggle_background_color=\"#d8d8d8\" closed_toggle_text_color=\"#211865\" closed_toggle_background_color=\"#d8d8d8\" toggle_icon=\"&#x3b;||divi||400\" icon_color=\"#211865\" _builder_version=\"4.18.0\" _module_preset=\"default\" toggle_text_color=\"#211865\" toggle_font=\"|700|||||||\" toggle_font_size=\"17px\" closed_toggle_font=\"|700|||||||\" body_text_color=\"#211865\" background_color=\"#211865\" border_color_all=\"#211865\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_accordion_item title=\" May 2021\" open=\"on\" open_toggle_background_color=\"#d8d8d8\" closed_toggle_background_color=\"#d8d8d8\" icon_color=\"#211865\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/labor-market-attachment-and-retirement/\" data-wpel-link=\"internal\" role=\"link\">Labor Market Attachment and Retirement</a><br /></strong><em>May 24, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\" data-wpel-link=\"internal\" role=\"link\">Claim Disallowance With Unanimous Medical Opinion Giving Causal Relationship</a><br /></strong><em>May 17, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/employers-do-not-have-to-prove-prejudice-by-late-notice-but-it-certainly-doesnt-hurt-to-do-so/\" data-wpel-link=\"internal\" role=\"link\">Employers Do Not Have to Prove Prejudice by Late Notice, but it Certainly Doesn’t Hurt To Do So!</a><br /></strong><em>May 10, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\" data-wpel-link=\"internal\" role=\"link\">The Claimant’s Burden: Proving the Causal Relationship of an Injury</a><br /></strong><em>May 3, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"April 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\" theme_builder_area=\"post_content\"]<ul>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/social-media-and-fraud-youd-be-surprised-what-people-post/\" data-wpel-link=\"internal\" role=\"link\">Social Media and Fraud – You’d Be Surprised What People Post!</a><br /></strong><em>April 26, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/never-give-in-disallowance-win/\" data-wpel-link=\"internal\" role=\"link\">Never Give In! Disallowance Win!</a><br /></strong><em>April 19, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/an-interesting-ime-development/\" data-wpel-link=\"internal\" role=\"link\">An “Interesting” IME Development</a></strong><strong><br /></strong><em>April 12, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/section-44-not-even-a-portion-of-liability-for-the-occupational-disease/\" data-wpel-link=\"internal\" role=\"link\">Section 44: Not Even a Portion of Liability For The Occupational Disease</a><br /></strong><em>April 5, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"March 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\" theme_builder_area=\"post_content\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">When Do Work From Home Accidents Occur in the Scope and Course of Employment?</a><br /></strong><em>March 15, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/03/thoughts-on-thinking-a-strange-title-about-practicing-law/\">Thoughts on Thinking: A Strange Title About Practicing Law</a><br /></strong><em>March 8, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/03/genduso-and-total-joint-replacement-schedules/\">Genduso and Total Joint Replacement Schedules</a><br /></strong><em>March 1, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"February 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\" theme_builder_area=\"post_content\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/occupational-disease-claims-after-matter-of-pinnacle-industries-ii-llc-2019-ny-wrk-comp-g2020587/\">Occupational Disease Claims after Matter of Pinnacle Industries II, LLC (2019 NY Wrk Comp G2020587)</a><br /></strong><em>February 22, 2021</em><strong><br /></strong></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/\">No Further Causally Related Disability Due to Intervening Unrelated Accident</a><br /></strong><em>February 15, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/independent-contractor-or-employee/\">Independent Contractor or Employee</a><br /></strong><em>February 8, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/no-error-of-law-or-fact-in-an-application-for-full-board-review/\">No Error of Law or Fact In An Application For Full Board Review</a><br /></strong><em>February 1, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"January 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\" theme_builder_area=\"post_content\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">Fraud in the Family – Claimant Doing Other Work while Receiving Comp Benefits</a></strong><br /><em>January 25, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/how-change-in-conditions-for-classified-claimants-changed-drastically/\">How Change in Conditions for Classified Claimants Changed Drastically</a></strong><br />January 19, 2021</h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/success-with-wcl-section-18/\">Success with WCL Section 18</a></strong><br /><em>January 11, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">Doubling Down – 2 Hearing Loss Claims for the Same Claimant Denied on the Same Day</a></strong><br /><em>January 4, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2020\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\" theme_builder_area=\"post_content\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2020/07/successful-disallowance/\"><strong>Successful Disallowance!</strong></a><br /><em>July 26, 2020</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2020/07/another-win-for-the-law-offices-of-melissa-a-day/\"><strong>Another Win for The Law Offices of Melissa A. Day!</strong></a><br /><em>July 22, 2020</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2020/07/a-win-for-the-law-offices-of-melissa-a-day/\"><strong>A Win for The Law Offices of Melissa A. Day</strong></a><br /><em>July 21, 2020</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2019\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\" theme_builder_area=\"post_content\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/07/melissa-a-day-esq-invited-to-join-buffalo-business-first-leadership-trust/\"><strong>Melissa A. Day, Esq. invited to join Buffalo Business First Leadership Trust</strong></a><br /><em>July 30, 2019</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/05/claimants-conviction-of-unlawful-manufacture-of-methamphetamine-does-not-amount-to-a-violation-under-wcl-114-a/\"><strong>Claimant’s conviction of unlawful manufacture of methamphetamine does not amount to a violation under WCL 114-a.</strong></a><br /><em>May 31, 2019</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/\">Amendments to 2017 not retroactive if PPD claimant was not attached to labor market</a><br /></strong><em>May 31, 2019</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/05/lwec-incontinence/\"><strong>LWEC &amp; Incontinence</strong></a><br /><em>May 28, 2019</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/05/a-new-quest-begins/\"><strong>A New Quest Begins</strong><strong></strong></a><br /><em>May 21, 2019</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2018\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\" theme_builder_area=\"post_content\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/12/appeals-inventory-and-forms/\"><strong>Appeals Inventory and Forms</strong></a><br /><em>December 17, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\"><strong>Review of Workers Compensation Board Schedule Loss of Use Frequently Asked Questions and New Permanency Forms</strong></a><br /><em>December 17, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/proposed-changes-submitted-seeking-to-expand-the-boards-legal-internship-program/\"><strong>Proposed Changes Submitted Seeking to Expand the Board’s Legal Internship Program</strong></a><br /><em>May 25, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/youre-claiming-what/\"><strong>You’re claiming what?!?</strong></a><br /><em>May 25, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/new-slu-guidelines-presentation-by-the-board/\"><strong>New SLU Guidelines Presentation by the Board</strong></a><br /><em>May 23, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/united-states-supreme-court-is-considering-a-petition-for-a-writ-of-certiorari-of-the-american-economy-decision/\"><strong>United States Supreme Court is Considering a Petition for a Writ of Certiorari Of the American Economy Decision</strong></a><br /><em>May 23, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/03/ricky-costner-jr-18-year-old-slain-by-a-deranged-co-worker-honored-by-family-and-friends/\"><strong>Ricky Costner Jr., 18 Year Old Slain by a Deranged Co-Worker, Honored by Family and Friends</strong></a><br /><em>March 31, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\"><strong>Schedule Loss of Use Awards – Grrrrrrrrr</strong></a><br /><em>March 31, 2018</em><br /><em></em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2017\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\" theme_builder_area=\"post_content\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/10/court-of-appeals-upholds-2013-amendment-to-section-25-a-marking-the-end-for-the-fund-for-reopened-cases/\"><strong>Court of Appeals Upholds 2013 Amendment to Section 25-a – Marking the End for The Fund for Reopened Cases</strong></a><br /><em>October 26, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\"><strong>How to Avoid Bad Luck in Your Comp Claims This Friday the 13th – Some Basic Time Constraints for New York State Workers’ Compensation Claims to Keep in Mind</strong></a><br /><em>October 12, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\"><strong>Board Finds that Medical Treatment Guidelines Apply to Out of State Claimants</strong></a><br /><em>June 7, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/02/permanent-partial-disability-safety-netwhat-to-expect-from-wcl-%c2%a735/\"><strong>Permanent Partial Disability “Safety Net”…What to Expect from WCL §35</strong></a><br /><em>February 5, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/01/back-to-the-future-the-return-of-wcl-252-b-fact-finding-without-judges-and-legal-reasoning-without-lawyers/\"><strong>Back to the Future: The Return of WCL 25(2-b): Fact-Finding without Judges and Legal Reasoning without Lawyers</strong></a><br /><em>January 18, 2017</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2016\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\" theme_builder_area=\"post_content\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/12/its-the-holiday-season/\"><strong>It’s the Holiday Season!</strong></a><br /><em>December 8, 2016</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/10/happy-hallo-wean/\"><strong>HAPPY HALLO-WEAN!</strong></a><br /><em>October 31, 2016</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/10/to-wean-or-not-to-wean-that-is-the-question/\"><strong>TO WEAN, OR NOT TO WEAN, THAT IS THE QUESTION.</strong></a><br /><em>October 25, 2016</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/04/reopened-cases/\"><strong>Reopened Cases</strong></a><br /><em>April 15, 2016</em><em></em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2015\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\" theme_builder_area=\"post_content\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/11/ny-allows-employer-to/\"><strong>NY Allows Employer to…</strong></a><br /><em>November 28, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/11/an-employee-cannot-be/\"><strong>An Employee Cannot be…</strong></a><br /><em>November 23, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/10/vocational-and-functional/\"><strong>Vocational and Functional…</strong></a><br /><em>October 27, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/09/challenge-yourself/\"><strong>Challenge Yourself</strong></a><br /><em>September 19, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/09/labor-market-attachment-refresher/\"><strong>Labor Market Attachment Refresher</strong></a><br /><em>September 16, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/09/summer-is-almost-over/\"><strong>Summer is Almost Over!</strong></a><br /><em>September 7, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/claims-handling-performance/\"><strong>Claims Handling Performance</strong></a><br /><em>August 23, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/answers-to-the-quiz/\"><strong>Answers to the Quiz</strong></a><br /><em>August 10, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/average-wages/\"><strong>Average Wages?</strong></a><br /><em>August 7, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/non-acute-pain-treatment-guidelines/\"><strong>Non-Acute Pain Treatment Guidelines</strong></a><br /><em>August 5, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\"><strong>Test Your NY Workers’ Compensation Chops</strong></a><br />August 3, 2015</h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/07/liability-for-treatment-by-social-workers/\"><strong>Liability for Treatment by Social Workers</strong></a><br /><em>July 21, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/07/mds-jds-and-ttds/\"><strong>MDs, JDs AND TTDs</strong></a><br /><em>July 13, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/07/hot-dogs-or-hamburgers/\"><strong>HOT DOGS OR HAMBURGERS?</strong></a><br /><em>July 1, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/06/imes-the-next-summer-movie-blockbuster-or-just-another-ime-gone-bust/\"><strong>IMEs : The Next Summer Movie Blockbuster or Just Another IME Gone Bust?</strong></a><br /><em>June 29, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/06/wcbs-regulatory-agenda-may-include/\"><strong>WCB’s Regulatory Agenda May Include…</strong></a><br /><em>June 14, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/02/an-underwriting-nightmare-come-true/\"><strong>An Underwriting Nightmare Come True</strong></a><br /><em>February 5, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/02/hearing-loss-becomes-hearing-win/\"><strong>Hearing Loss becomes Hearing Win</strong></a><br /><em>February 5, 2015</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2014\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\" theme_builder_area=\"post_content\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\"><strong>Non Acute Pain Medical Treatment Guidelines Offer a Framework for Controlling Costs Associated with Chronic Pain Management, Especially Opioid Use</strong></a><br /><em>November 24, 2014</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\"><strong>In Kigin v. WCB, the Court of Appeals upholds the presumption that treatment outside the MTGs is not medically necessary and the attending physician has the burden of proof of the need for a variance.</strong></a><br /><em>November 23, 2014</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\"><strong>The Law Offices of Melissa A. Day, PLLC Won a Finding of a 0% Loss of Wage Earning Capacity</strong></a><br /><em>November 22, 2014</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">Navigating the Low Back Medical Treatment Guidelines for Chiropractic Care</a><br /><em>Sseptember 12, 2014</em><br /></strong></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2013\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\" theme_builder_area=\"post_content\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/12/did-you-know-the-board-has-retired-the-concept-of-the-compensable-retirement-the-death-knell-of-the-trifecta-zamora-and-the-so-called-compensable-retirement/\"><strong>DID YOU KNOW? THE BOARD HAS RETIRED THE CONCEPT OF THE COMPENSABLE RETIREMENT. The Death Knell of the Trifecta: Zamora and the so-called “Compensable Retirement”</strong></a><br /><em>December 17, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\"><strong>A Blind Leap across an Inscrutable Chasm – Arbitrary and Capricious Loss of Wage Earning Capacity (LWEC) Determinations</strong></a><br /><em>November 30, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\"><strong>LESS THAN TWELVE WEEKS REMAINING FOR WCL §25-a! Because Subject # 046-630 Contains Stricter Requirements for Reopening a Claim on the Issue of §25-a, Prudent Carriers and Employers May Want to Refer Applications to Defense Counsel</strong></a><br /><em>October 10, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\"><strong>BOARD PROCESS RE-ENGINEERING (“BPR”) – NY WORKERS’ COMPENSATION FORUM MEMBERS SHOULD BE INCLUDED IN THE DIALOGUE</strong></a><br /><em>September 13, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/08/did-you-know-the-2nd-circuit-certified-a-question-to-the-ny-court-of-appeals-on-the-exclusivity-provision-of-the-wcl/\"><strong>DID YOU KNOW? The 2nd Circuit certified a question to the NY Court of Appeals on the exclusivity provision of the WCL?</strong></a><br /><em>August 14, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\"><strong>DID YOU KNOW? Twenty Insurance Carriers Have Filed an Action Seeking to Obtain a Declaration that the Elimination of The Fund for Reopened Cases Is Unconstitutional.</strong></a><br /><em>August 3, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\"><strong>DID YOU KNOW? THE THIRD DEPARTMENT HOLDS THAT MEDICAL TREATMENT WHICH IS NOT SPECIFICALLY INCLUDED IN THE MTG IS PRESUMPTIVELY NOT MEDICALLY NECESSARY.</strong></a><br /><em>July 30 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\"><strong>DID YOU KNOW? AN EMPLOYER OR CARRIER MAY BE ABLE TO REOPEN A PPD CLAIM ON THE ISSUE OF LABOR MARKET ATTACHMENT.</strong></a><br /><em>July 13, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\"><strong>DID YOU KNOW? A bill being considered by the NY State Legislature which would create a presumption of permanent total disability for claimants who are found eligible for social security?</strong></a><br /><em>April 30, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/04/did-you-know-25-a-is-going-away/\"><strong>DID YOU KNOW? 25-A IS GOING AWAY.</strong></a><br /><em>April 6, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">DID YOU KNOW? A chiropractic variance request based on alleged functional improvements and expected continued improvements may not be granted if the chiropractor continues to find that the claimant is totally disabled.</a><br /><em>March 13, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\"><strong>DID YOU KNOW? The Federal Government Is Not Subject to the Jurisdiction of the NY Workers’ Compensation Board on a Theory of General/Special Employment?</strong></a><br /><em>February 23, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/02/did-you-know-governor-cuomos-budget-proposes-to-eliminate-mandatory-deposits-into-the-atf-and-to-close-the-fund-to-new-deposits/\"><strong>DID YOU KNOW? GOVERNOR CUOMO’S BUDGET PROPOSES TO ELIMINATE MANDATORY DEPOSITS INTO THE ATF AND TO CLOSE THE FUND TO NEW DEPOSITS?</strong></a><br />February 5, 2013</h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know-implementation-of-the-changes-to-the-mtg-has-been-delayed-until-march-1-2013/\"><strong>DID YOU KNOW? IMPLEMENTATION OF THE CHANGES TO THE MTG HAS BEEN DELAYED UNTIL MARCH 1, 2013.</strong></a><br /><em>January 22, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\"><strong>DID YOU KNOW? FACEBOOK PAGES ARE NOT CONSIDERED “SURVEILLANCE” THAT HAS TO BE DISCLOSED BEFORE A CLAIMANT TESTIFIES.</strong></a><br /><em>January 22, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know-wcl-%c2%a7153v-benefits-may-now-be-capped-under-wcl-%c2%a7153w/\"><strong>DID YOU KNOW? WCL §15(3)(v) BENEFITS MAY NOW BE CAPPED UNDER WCL §15(3)(w)</strong></a><br /><em>January 14, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/why-why-do-judges-even-set-deadlines-for-the-submission-of-memoranda-of-law/\"><strong>WHY? Why do judge’s even set deadlines for the submission of Memoranda of Law?</strong></a><br /><em>January 10, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know/\"><strong>DID YOU KNOW?</strong></a><br /><em>January 5, 2013</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section]','Blog Posts','','publish','open','closed','','theme-builder-layout-13','','','2022-09-09 10:30:40','2022-09-09 14:30:40','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_body_layout/theme-builder-layout-13/',0,'et_body_layout','',0),(47169,1251,'2021-09-13 05:46:10','2021-09-13 09:46:10','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.18.0\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(46,85,145,0.8) 0%|#211865 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913.jpg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.16\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|off\" admin_label=\"FILE PATH\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" custom_padding=\"15px||0px||false|false\" border_width_bottom=\"1px\" border_color_bottom=\"#211865\" global_module=\"47119\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row admin_label=\"File Path\" _builder_version=\"4.18.0\" width=\"90%\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][lwp_divi_breadcrumbs link_color=\"#211865\" separator_color=\"#211865\" current_text_color=\"#211865\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/lwp_divi_breadcrumbs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"INTERNAL PAGE CONTENT\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_padding=\"55px||55px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Internal Page Content\" _builder_version=\"4.16\" width=\"90%\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|50px|||false|false\" custom_padding_tablet=\"|0px|30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_post_title module_class=\"fl-darklinks fl-inner-left fl-blog-left\" _builder_version=\"4.16\" title_text_color=\"#211865\" meta_text_color=\"#211865\" meta_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\"][/et_pb_post_title][et_pb_blog use_current_loop=\"on\" show_more=\"on\" module_class=\"fl-darklinks fl-inner-left fl-blog-left\" _builder_version=\"4.16\" header_text_color=\"#211865\" body_font_size=\"18px\" meta_text_color=\"#211865\" meta_font_size=\"18px\" read_more_text_color=\"#211865\" read_more_font_size=\"18px\" pagination_text_color=\"#ffffff\" pagination_font_size=\"18px\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_search placeholder=\"Looking for a topic?\" placeholder_color=\"#FFFFFF\" admin_label=\"LOMAD Blog Search\" module_class=\"lm-ignore lm-ignore-more\" _builder_version=\"4.18.0\" _module_preset=\"default\" button_font=\"Playfair Display||||||||\" button_font_size=\"16px\" form_field_font=\"Playfair Display|500|||||||\" form_field_font_size=\"17px\" background_color=\"#211865\" background_layout=\"dark\" custom_margin=\"||21px||false|false\" custom_padding=\"1em||1em||false|false\" hover_enabled=\"0\" border_radii=\"on||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_search][et_pb_accordion open_toggle_text_color=\"#211865\" open_toggle_background_color=\"#d8d8d8\" closed_toggle_text_color=\"#211865\" closed_toggle_background_color=\"#d8d8d8\" toggle_icon=\"&#x3b;||divi||400\" icon_color=\"#211865\" _builder_version=\"4.18.0\" _module_preset=\"default\" toggle_text_color=\"#211865\" toggle_font=\"|700|||||||\" toggle_font_size=\"17px\" closed_toggle_font=\"|700|||||||\" body_text_color=\"#211865\" background_color=\"#211865\" border_color_all=\"#211865\" global_colors_info=\"{}\"][et_pb_accordion_item title=\" May 2021\" open=\"on\" open_toggle_background_color=\"#d8d8d8\" closed_toggle_background_color=\"#d8d8d8\" icon_color=\"#211865\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/labor-market-attachment-and-retirement/\" data-wpel-link=\"internal\" role=\"link\">Labor Market Attachment and Retirement</a><br /></strong><em>May 24, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\" data-wpel-link=\"internal\" role=\"link\">Claim Disallowance With Unanimous Medical Opinion Giving Causal Relationship</a><br /></strong><em>May 17, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/employers-do-not-have-to-prove-prejudice-by-late-notice-but-it-certainly-doesnt-hurt-to-do-so/\" data-wpel-link=\"internal\" role=\"link\">Employers Do Not Have to Prove Prejudice by Late Notice, but it Certainly Doesn’t Hurt To Do So!</a><br /></strong><em>May 10, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\" data-wpel-link=\"internal\" role=\"link\">The Claimant’s Burden: Proving the Causal Relationship of an Injury</a><br /></strong><em>May 3, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"April 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/social-media-and-fraud-youd-be-surprised-what-people-post/\" data-wpel-link=\"internal\" role=\"link\">Social Media and Fraud – You’d Be Surprised What People Post!</a><br /></strong><em>April 26, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/never-give-in-disallowance-win/\" data-wpel-link=\"internal\" role=\"link\">Never Give In! Disallowance Win!</a><br /></strong><em>April 19, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/an-interesting-ime-development/\" data-wpel-link=\"internal\" role=\"link\">An “Interesting” IME Development</a></strong><strong><br /></strong><em>April 12, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/section-44-not-even-a-portion-of-liability-for-the-occupational-disease/\" data-wpel-link=\"internal\" role=\"link\">Section 44: Not Even a Portion of Liability For The Occupational Disease</a><br /></strong><em>April 5, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"March 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">When Do Work From Home Accidents Occur in the Scope and Course of Employment?</a><br /></strong><em>March 15, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/03/thoughts-on-thinking-a-strange-title-about-practicing-law/\">Thoughts on Thinking: A Strange Title About Practicing Law</a><br /></strong><em>March 8, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/03/genduso-and-total-joint-replacement-schedules/\">Genduso and Total Joint Replacement Schedules</a><br /></strong><em>March 1, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"February 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/occupational-disease-claims-after-matter-of-pinnacle-industries-ii-llc-2019-ny-wrk-comp-g2020587/\">Occupational Disease Claims after Matter of Pinnacle Industries II, LLC (2019 NY Wrk Comp G2020587)</a><br /></strong><em>February 22, 2021</em><strong><br /></strong></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/\">No Further Causally Related Disability Due to Intervening Unrelated Accident</a><br /></strong><em>February 15, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/independent-contractor-or-employee/\">Independent Contractor or Employee</a><br /></strong><em>February 8, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/no-error-of-law-or-fact-in-an-application-for-full-board-review/\">No Error of Law or Fact In An Application For Full Board Review</a><br /></strong><em>February 1, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"January 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">Fraud in the Family – Claimant Doing Other Work while Receiving Comp Benefits</a></strong><br /><em>January 25, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/how-change-in-conditions-for-classified-claimants-changed-drastically/\">How Change in Conditions for Classified Claimants Changed Drastically</a></strong><br />January 19, 2021</h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/success-with-wcl-section-18/\">Success with WCL Section 18</a></strong><br /><em>January 11, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">Doubling Down – 2 Hearing Loss Claims for the Same Claimant Denied on the Same Day</a></strong><br /><em>January 4, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2020\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2020/07/successful-disallowance/\"><strong>Successful Disallowance!</strong></a><br /><em>July 26, 2020</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2020/07/another-win-for-the-law-offices-of-melissa-a-day/\"><strong>Another Win for The Law Offices of Melissa A. Day!</strong></a><br /><em>July 22, 2020</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2020/07/a-win-for-the-law-offices-of-melissa-a-day/\"><strong>A Win for The Law Offices of Melissa A. Day</strong></a><br /><em>July 21, 2020</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2019\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/07/melissa-a-day-esq-invited-to-join-buffalo-business-first-leadership-trust/\"><strong>Melissa A. Day, Esq. invited to join Buffalo Business First Leadership Trust</strong></a><br /><em>July 30, 2019</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/05/claimants-conviction-of-unlawful-manufacture-of-methamphetamine-does-not-amount-to-a-violation-under-wcl-114-a/\"><strong>Claimant’s conviction of unlawful manufacture of methamphetamine does not amount to a violation under WCL 114-a.</strong></a><br /><em>May 31, 2019</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/\">Amendments to 2017 not retroactive if PPD claimant was not attached to labor market</a><br /></strong><em>May 31, 2019</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/05/lwec-incontinence/\"><strong>LWEC &amp; Incontinence</strong></a><br /><em>May 28, 2019</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/05/a-new-quest-begins/\"><strong>A New Quest Begins</strong><strong></strong></a><br /><em>May 21, 2019</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2018\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/12/appeals-inventory-and-forms/\"><strong>Appeals Inventory and Forms</strong></a><br /><em>December 17, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\"><strong>Review of Workers Compensation Board Schedule Loss of Use Frequently Asked Questions and New Permanency Forms</strong></a><br /><em>December 17, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/proposed-changes-submitted-seeking-to-expand-the-boards-legal-internship-program/\"><strong>Proposed Changes Submitted Seeking to Expand the Board’s Legal Internship Program</strong></a><br /><em>May 25, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/youre-claiming-what/\"><strong>You’re claiming what?!?</strong></a><br /><em>May 25, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/new-slu-guidelines-presentation-by-the-board/\"><strong>New SLU Guidelines Presentation by the Board</strong></a><br /><em>May 23, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/united-states-supreme-court-is-considering-a-petition-for-a-writ-of-certiorari-of-the-american-economy-decision/\"><strong>United States Supreme Court is Considering a Petition for a Writ of Certiorari Of the American Economy Decision</strong></a><br /><em>May 23, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/03/ricky-costner-jr-18-year-old-slain-by-a-deranged-co-worker-honored-by-family-and-friends/\"><strong>Ricky Costner Jr., 18 Year Old Slain by a Deranged Co-Worker, Honored by Family and Friends</strong></a><br /><em>March 31, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\"><strong>Schedule Loss of Use Awards – Grrrrrrrrr</strong></a><br /><em>March 31, 2018</em><br /><em></em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2017\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/10/court-of-appeals-upholds-2013-amendment-to-section-25-a-marking-the-end-for-the-fund-for-reopened-cases/\"><strong>Court of Appeals Upholds 2013 Amendment to Section 25-a – Marking the End for The Fund for Reopened Cases</strong></a><br /><em>October 26, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\"><strong>How to Avoid Bad Luck in Your Comp Claims This Friday the 13th – Some Basic Time Constraints for New York State Workers’ Compensation Claims to Keep in Mind</strong></a><br /><em>October 12, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\"><strong>Board Finds that Medical Treatment Guidelines Apply to Out of State Claimants</strong></a><br /><em>June 7, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/02/permanent-partial-disability-safety-netwhat-to-expect-from-wcl-%c2%a735/\"><strong>Permanent Partial Disability “Safety Net”…What to Expect from WCL §35</strong></a><br /><em>February 5, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/01/back-to-the-future-the-return-of-wcl-252-b-fact-finding-without-judges-and-legal-reasoning-without-lawyers/\"><strong>Back to the Future: The Return of WCL 25(2-b): Fact-Finding without Judges and Legal Reasoning without Lawyers</strong></a><br /><em>January 18, 2017</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2016\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/12/its-the-holiday-season/\"><strong>It’s the Holiday Season!</strong></a><br /><em>December 8, 2016</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/10/happy-hallo-wean/\"><strong>HAPPY HALLO-WEAN!</strong></a><br /><em>October 31, 2016</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/10/to-wean-or-not-to-wean-that-is-the-question/\"><strong>TO WEAN, OR NOT TO WEAN, THAT IS THE QUESTION.</strong></a><br /><em>October 25, 2016</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/04/reopened-cases/\"><strong>Reopened Cases</strong></a><br /><em>April 15, 2016</em><em></em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2015\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/11/ny-allows-employer-to/\"><strong>NY Allows Employer to…</strong></a><br /><em>November 28, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/11/an-employee-cannot-be/\"><strong>An Employee Cannot be…</strong></a><br /><em>November 23, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/10/vocational-and-functional/\"><strong>Vocational and Functional…</strong></a><br /><em>October 27, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/09/challenge-yourself/\"><strong>Challenge Yourself</strong></a><br /><em>September 19, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/09/labor-market-attachment-refresher/\"><strong>Labor Market Attachment Refresher</strong></a><br /><em>September 16, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/09/summer-is-almost-over/\"><strong>Summer is Almost Over!</strong></a><br /><em>September 7, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/claims-handling-performance/\"><strong>Claims Handling Performance</strong></a><br /><em>August 23, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/answers-to-the-quiz/\"><strong>Answers to the Quiz</strong></a><br /><em>August 10, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/average-wages/\"><strong>Average Wages?</strong></a><br /><em>August 7, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/non-acute-pain-treatment-guidelines/\"><strong>Non-Acute Pain Treatment Guidelines</strong></a><br /><em>August 5, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\"><strong>Test Your NY Workers’ Compensation Chops</strong></a><br />August 3, 2015</h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/07/liability-for-treatment-by-social-workers/\"><strong>Liability for Treatment by Social Workers</strong></a><br /><em>July 21, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/07/mds-jds-and-ttds/\"><strong>MDs, JDs AND TTDs</strong></a><br /><em>July 13, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/07/hot-dogs-or-hamburgers/\"><strong>HOT DOGS OR HAMBURGERS?</strong></a><br /><em>July 1, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/06/imes-the-next-summer-movie-blockbuster-or-just-another-ime-gone-bust/\"><strong>IMEs : The Next Summer Movie Blockbuster or Just Another IME Gone Bust?</strong></a><br /><em>June 29, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/06/wcbs-regulatory-agenda-may-include/\"><strong>WCB’s Regulatory Agenda May Include…</strong></a><br /><em>June 14, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/02/an-underwriting-nightmare-come-true/\"><strong>An Underwriting Nightmare Come True</strong></a><br /><em>February 5, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/02/hearing-loss-becomes-hearing-win/\"><strong>Hearing Loss becomes Hearing Win</strong></a><br /><em>February 5, 2015</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2014\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\"><strong>Non Acute Pain Medical Treatment Guidelines Offer a Framework for Controlling Costs Associated with Chronic Pain Management, Especially Opioid Use</strong></a><br /><em>November 24, 2014</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\"><strong>In Kigin v. WCB, the Court of Appeals upholds the presumption that treatment outside the MTGs is not medically necessary and the attending physician has the burden of proof of the need for a variance.</strong></a><br /><em>November 23, 2014</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\"><strong>The Law Offices of Melissa A. Day, PLLC Won a Finding of a 0% Loss of Wage Earning Capacity</strong></a><br /><em>November 22, 2014</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">Navigating the Low Back Medical Treatment Guidelines for Chiropractic Care</a><br /><em>Sseptember 12, 2014</em><br /></strong></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2013\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/12/did-you-know-the-board-has-retired-the-concept-of-the-compensable-retirement-the-death-knell-of-the-trifecta-zamora-and-the-so-called-compensable-retirement/\"><strong>DID YOU KNOW? THE BOARD HAS RETIRED THE CONCEPT OF THE COMPENSABLE RETIREMENT. The Death Knell of the Trifecta: Zamora and the so-called “Compensable Retirement”</strong></a><br /><em>December 17, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\"><strong>A Blind Leap across an Inscrutable Chasm – Arbitrary and Capricious Loss of Wage Earning Capacity (LWEC) Determinations</strong></a><br /><em>November 30, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\"><strong>LESS THAN TWELVE WEEKS REMAINING FOR WCL §25-a! Because Subject # 046-630 Contains Stricter Requirements for Reopening a Claim on the Issue of §25-a, Prudent Carriers and Employers May Want to Refer Applications to Defense Counsel</strong></a><br /><em>October 10, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\"><strong>BOARD PROCESS RE-ENGINEERING (“BPR”) – NY WORKERS’ COMPENSATION FORUM MEMBERS SHOULD BE INCLUDED IN THE DIALOGUE</strong></a><br /><em>September 13, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/08/did-you-know-the-2nd-circuit-certified-a-question-to-the-ny-court-of-appeals-on-the-exclusivity-provision-of-the-wcl/\"><strong>DID YOU KNOW? The 2nd Circuit certified a question to the NY Court of Appeals on the exclusivity provision of the WCL?</strong></a><br /><em>August 14, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\"><strong>DID YOU KNOW? Twenty Insurance Carriers Have Filed an Action Seeking to Obtain a Declaration that the Elimination of The Fund for Reopened Cases Is Unconstitutional.</strong></a><br /><em>August 3, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\"><strong>DID YOU KNOW? THE THIRD DEPARTMENT HOLDS THAT MEDICAL TREATMENT WHICH IS NOT SPECIFICALLY INCLUDED IN THE MTG IS PRESUMPTIVELY NOT MEDICALLY NECESSARY.</strong></a><br /><em>July 30 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\"><strong>DID YOU KNOW? AN EMPLOYER OR CARRIER MAY BE ABLE TO REOPEN A PPD CLAIM ON THE ISSUE OF LABOR MARKET ATTACHMENT.</strong></a><br /><em>July 13, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\"><strong>DID YOU KNOW? A bill being considered by the NY State Legislature which would create a presumption of permanent total disability for claimants who are found eligible for social security?</strong></a><br /><em>April 30, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/04/did-you-know-25-a-is-going-away/\"><strong>DID YOU KNOW? 25-A IS GOING AWAY.</strong></a><br /><em>April 6, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">DID YOU KNOW? A chiropractic variance request based on alleged functional improvements and expected continued improvements may not be granted if the chiropractor continues to find that the claimant is totally disabled.</a><br /><em>March 13, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\"><strong>DID YOU KNOW? The Federal Government Is Not Subject to the Jurisdiction of the NY Workers’ Compensation Board on a Theory of General/Special Employment?</strong></a><br /><em>February 23, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/02/did-you-know-governor-cuomos-budget-proposes-to-eliminate-mandatory-deposits-into-the-atf-and-to-close-the-fund-to-new-deposits/\"><strong>DID YOU KNOW? GOVERNOR CUOMO’S BUDGET PROPOSES TO ELIMINATE MANDATORY DEPOSITS INTO THE ATF AND TO CLOSE THE FUND TO NEW DEPOSITS?</strong></a><br />February 5, 2013</h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know-implementation-of-the-changes-to-the-mtg-has-been-delayed-until-march-1-2013/\"><strong>DID YOU KNOW? IMPLEMENTATION OF THE CHANGES TO THE MTG HAS BEEN DELAYED UNTIL MARCH 1, 2013.</strong></a><br /><em>January 22, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\"><strong>DID YOU KNOW? FACEBOOK PAGES ARE NOT CONSIDERED “SURVEILLANCE” THAT HAS TO BE DISCLOSED BEFORE A CLAIMANT TESTIFIES.</strong></a><br /><em>January 22, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know-wcl-%c2%a7153v-benefits-may-now-be-capped-under-wcl-%c2%a7153w/\"><strong>DID YOU KNOW? WCL §15(3)(v) BENEFITS MAY NOW BE CAPPED UNDER WCL §15(3)(w)</strong></a><br /><em>January 14, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/why-why-do-judges-even-set-deadlines-for-the-submission-of-memoranda-of-law/\"><strong>WHY? Why do judge’s even set deadlines for the submission of Memoranda of Law?</strong></a><br /><em>January 10, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know/\"><strong>DID YOU KNOW?</strong></a><br /><em>January 5, 2013</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section]','Category and Search Results','','publish','open','closed','','theme-builder-layout-14','','','2022-09-09 10:28:34','2022-09-09 14:28:34','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_body_layout/theme-builder-layout-14/',0,'et_body_layout','',0),(47184,1251,'2021-09-13 05:49:46','2021-09-13 09:49:46','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|desktop\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-scaled.jpeg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"-330px||||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"420px||100px||false|false\" custom_padding_phone=\"\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.3.2\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\" background_enable_color=\"off\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"INTERNAL PAGE CONTENT\" _builder_version=\"4.3.2\" background_enable_color=\"off\" custom_padding=\"50px||60px||false|false\"][et_pb_row admin_label=\"Internal Page Content\" _builder_version=\"4.3.2\" custom_padding=\"0px||0px\"][et_pb_column type=\"4_4\" admin_label=\"Content\" _builder_version=\"4.3.2\" custom_padding=\"|0px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Content\" module_class=\"fl-darklinks  fl-inner-left\" _builder_version=\"4.3.2\" text_text_color=\"#ffffff\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" hover_enabled=\"0\"]<h1>Page Not Found</h1>\n<p><span>It looks like the page you\'re looking for is missing. This page may have moved. </span></p>\n<p>The following are other pages you may find helpful:</p>\n<ul>\n<li><a href=\"/\">Home</a></li>\n<li><a href=\"/about/\">About</a></li>\n<li><a href=\"/contact/\">Contact</a></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"/\" button_text=\"Return To Home\" button_alignment=\"left\" admin_label=\"Return To Home\" _builder_version=\"4.3.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#211865\" button_use_icon=\"off\" custom_margin=\"30px||||false|false\" custom_padding=\"18px|38px|18px|38px|true|true\" custom_padding_tablet=\"\" custom_padding_phone=\"13px|26px|13px|26px|true|true\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" button_bg_color_last_edited=\"off|desktop\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ffffff\" button_bg_color__hover=\"#2e5591\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','404','','publish','open','closed','','theme-builder-layout-15','','','2022-09-09 10:23:07','2022-09-09 14:23:07','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_body_layout/theme-builder-layout-15/',0,'et_body_layout','',0),(47198,1251,'2021-09-13 05:52:51','2021-09-13 09:52:51','','Unassigned','','publish','closed','closed','','all-people','','','2022-08-30 14:01:53','2022-08-30 18:01:53','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_template/all-people/',0,'et_template','',0),(47213,1251,'2022-09-15 10:10:42','2021-09-13 10:26:52',' ','','','publish','closed','closed','','47213','','','2022-09-15 10:10:42','2022-09-15 14:10:42','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47213',5,'nav_menu_item','',0),(47214,1251,'2022-09-15 10:10:41','2021-09-13 10:26:52',' ','','','publish','closed','closed','','47214','','','2022-09-15 10:10:41','2022-09-15 14:10:41','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47214',1,'nav_menu_item','',0),(47215,1251,'2022-09-15 10:10:42','2021-09-13 10:26:52',' ','','','publish','closed','closed','','47215','','','2022-09-15 10:10:42','2022-09-15 14:10:42','',45926,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47215',14,'nav_menu_item','',0),(47265,1251,'2021-09-13 09:38:30','2021-09-13 13:38:30','','favicon-c','','inherit','closed','closed','','favicon-c','','','2021-11-17 16:18:26','2021-11-17 21:18:26','',0,'/wp-content/uploads/sites/1503150/2021/09/favicon-c.png',0,'attachment','image/png',0),(47266,1251,'2021-09-13 09:38:33','2021-09-13 13:38:33','','Directory-icon','','inherit','closed','closed','','directory-icon','','','2021-11-17 16:18:20','2021-11-17 21:18:20','',0,'/wp-content/uploads/sites/1503150/2021/09/Directory-icon.png',0,'attachment','image/png',0),(47267,1251,'2021-09-13 09:38:37','2021-09-13 13:38:37','','OG','','inherit','closed','closed','','og','','','2021-11-23 15:07:03','2021-11-23 20:07:03','',0,'/wp-content/uploads/sites/1503150/2021/09/OG.png',0,'attachment','image/png',0),(47268,1251,'2021-09-13 09:38:38','2021-09-13 13:38:38','https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/cropped-favicon-c.png','cropped-favicon-c.png','','inherit','closed','closed','','cropped-favicon-c-png','','','2021-11-17 16:18:06','2021-11-17 21:18:06','',0,'/wp-content/uploads/sites/1503150/2021/09/cropped-favicon-c.png',0,'attachment','image/png',0),(47289,1731,'2021-09-13 14:02:55','2021-09-13 18:02:55','','0_0_0_0_177_236_csupload_64428384','','inherit','closed','closed','','0_0_0_0_177_236_csupload_64428384-2','','','2021-09-13 14:02:55','2021-09-13 18:02:55','',6,'/wp-content/uploads/sites/1503150/2021/09/0_0_0_0_177_236_csupload_64428384.jpg',0,'attachment','image/jpeg',0),(47292,1731,'2022-08-16 11:40:22','2021-09-13 18:27:28','','Workers’ Compensation Team','','publish','closed','closed','','workers-compensation-team','','','2022-08-16 11:40:22','2022-08-16 15:40:22','',46189,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47292',4,'nav_menu_item','',0),(47293,1731,'2022-08-16 11:40:50','2021-09-13 18:27:28','','Case Law Updates','','publish','closed','closed','','47293','','','2022-08-16 11:40:50','2022-08-16 15:40:50','',46229,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47293',17,'nav_menu_item','',0),(47294,1731,'2022-08-16 11:40:33','2021-09-13 18:27:28','','','','publish','closed','closed','','47294','','','2022-08-16 11:40:33','2022-08-16 15:40:33','',46229,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47294',9,'nav_menu_item','',0),(47295,1731,'2022-08-16 11:40:42','2021-09-13 18:27:28','','','','publish','closed','closed','','47295','','','2022-08-16 11:40:42','2022-08-16 15:40:42','',46229,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47295',13,'nav_menu_item','',0),(47296,1731,'2022-08-16 11:40:35','2021-09-13 18:27:28','','','','publish','closed','closed','','47296','','','2022-08-16 11:40:35','2022-08-16 15:40:35','',46229,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47296',10,'nav_menu_item','',0),(47297,1731,'2022-08-16 11:40:31','2021-09-13 18:27:28','','','','publish','closed','closed','','47297','','','2022-08-16 11:40:31','2022-08-16 15:40:31','',46229,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47297',8,'nav_menu_item','',0),(47298,1731,'2022-08-16 11:40:37','2021-09-13 18:27:28','','','','publish','closed','closed','','47298','','','2022-08-16 11:40:37','2022-08-16 15:40:37','',46229,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47298',11,'nav_menu_item','',0),(47299,1731,'2022-08-16 11:40:25','2021-09-13 18:27:28','','','','publish','closed','closed','','47299','','','2022-08-16 11:40:25','2022-08-16 15:40:25','',46189,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47299',5,'nav_menu_item','',0),(47301,1731,'2021-09-13 14:44:27','2021-09-13 18:44:27','','AdobeStock_235431862','','inherit','closed','closed','','adobestock_235431862','','','2021-09-13 14:44:27','2021-09-13 18:44:27','',6,'/wp-content/uploads/sites/1503150/2021/09/AdobeStock_235431862.jpeg',0,'attachment','image/jpeg',0),(47305,1731,'2022-09-15 10:10:42','2021-09-13 20:47:25',' ','','','publish','closed','closed','','47305','','','2022-09-15 10:10:42','2022-09-15 14:10:42','',46189,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47305',4,'nav_menu_item','',0),(47307,1731,'2022-09-15 10:10:41','2021-09-13 20:47:25','','Attorneys','','publish','closed','closed','','workers-compensation-team-2','','','2022-09-15 10:10:41','2022-09-15 14:10:41','',46189,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47307',2,'nav_menu_item','',0),(47308,1731,'2022-09-15 10:10:42','2021-09-13 20:47:26','','Case Law Updates','','publish','closed','closed','','47308','','','2022-09-15 10:10:42','2022-09-15 14:10:42','',46229,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47308',11,'nav_menu_item','',0),(47311,1731,'2022-09-15 10:10:42','2021-09-13 20:47:26',' ','','','publish','closed','closed','','47311','','','2022-09-15 10:10:42','2022-09-15 14:10:42','',49704,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47311',8,'nav_menu_item','',0),(47312,1731,'2022-09-15 10:10:42','2021-09-13 20:47:25',' ','','','publish','closed','closed','','47312','','','2022-09-15 10:10:42','2022-09-15 14:10:42','',49704,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47312',7,'nav_menu_item','',0),(47313,1731,'2022-09-15 10:10:42','2021-09-13 20:47:26',' ','','','publish','closed','closed','','47313','','','2022-09-15 10:10:42','2022-09-15 14:10:42','',49704,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47313',9,'nav_menu_item','',0);
INSERT INTO `cuB_posts` VALUES (47314,19,'2022-05-04 10:51:03','2022-05-04 14:51:03','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-scaled.jpeg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.3.2\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.3.2\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.3.2\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/Andrew_Gould_pp.jpg\" alt=\"photo of associate attorney Andrew Gould\" _builder_version=\"4.3.2\" custom_margin=\"||20px||false|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Full Name\" module_class=\"fl-attorney-title\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h1>Andrew Gould</h1>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_text_color=\"#211865\" global_colors_info=\"{}\"]<p>Please call me Andrew</p>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.3.2\" text_font=\"|600|||||||\" text_text_color=\"#027acb\" text_font_size=\"24px\" header_font=\"||||||||\" header_2_text_color=\"#211865\" header_3_font=\"||||||||\" header_3_text_color=\"#000000\" custom_padding=\"5px||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Me:</h2>[/et_pb_text][fl_people_single element=\"phone\" admin_label=\"Person Detail Element - Phone Number\" module_class=\"fl-darklinks\" _builder_version=\"4.3.2\" custom_margin=\"0px||10px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Email Button - Short Code\" module_class=\"fl-email-btn\" _builder_version=\"4.3.2\" link_font=\"||||||||\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||25px||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>[email_me_form form_id=\"3\" post_id=\"47314\"]</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.29.3\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Practice Areas\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"||20px\" custom_padding_tablet=\"0px||26px||false\" custom_padding_phone=\"0px||20px||false\" custom_padding_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h2>Practice Areas</h2>[/et_pb_text][fl_people_single element=\"practice_areas\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Practice Areas\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Biography\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Biography</h2>[/et_pb_text][et_pb_text admin_label=\"Current Employment Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Current Employment Position</h2>[/et_pb_text][fl_people_single element=\"current_positions\" admin_label=\"Person Detail Element - Current Employment Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Bar Admissions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Bar Admissions</h2>[/et_pb_text][fl_people_single element=\"bio\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Biography\" _builder_version=\"4.3.2\" text_orientation=\"left\" custom_padding=\"||15px||false|false\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][fl_people_single element=\"bar_admissions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Bar Admissions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Professional Associations\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Associations</h2>[/et_pb_text][fl_people_single element=\"professional_assoc\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Professional Associations\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Education\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Education</h2>[/et_pb_text][fl_people_single element=\"education\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Education\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Pro-Bono Activities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pro-Bono Activities</h2>[/et_pb_text][fl_people_single element=\"published_works\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Published Works\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][fl_people_single element=\"representative_cases\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Cases\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][fl_people_single element=\"fraternity_sororities\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Fraternities or Sororities\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][fl_people_single element=\"specialties\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Certified Legal Specialties\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][fl_people_single element=\"pro_bonos\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Pro-Bono Activities\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Honors\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Honors</h2>[/et_pb_text][fl_people_single element=\"honors\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Honors\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][fl_people_single element=\"classes_seminars\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Classes & Seminars\" _builder_version=\"3.24\" text_orientation=\"left\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Clients\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Clients</h2>[/et_pb_text][fl_people_single element=\"representative_clients\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Clients\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"References\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>References</h2>[/et_pb_text][fl_people_single element=\"references\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - References\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Past Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Past Positions</h2>[/et_pb_text][fl_people_single element=\"past_positions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Past Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Languages\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Languages</h2>[/et_pb_text][fl_people_single element=\"languages\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Languages\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Ancillary Businesses\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Ancillary Businesses</h2>[/et_pb_text][et_pb_text admin_label=\"Tenure Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" global_colors_info=\"{}\"]<h2>Tenure at firm</h2>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_text_color=\"#000000\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Since May 2021</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Verdict Label\" _builder_version=\"4.3.2\" disabled=\"on\" global_colors_info=\"{}\"]<h2>Verdicts/Settlements/Cases of Note/Favorite Win</h2>[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Verdict Content\" _builder_version=\"4.3.2\" disabled=\"on\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>teleportation—can jump from one case to the next as the situation calls</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Legal Superpower label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" global_colors_info=\"{}\"]<h2>Your Legal Superpower</h2>[/et_pb_text][et_pb_text admin_label=\"Legal superpower content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Teleportation—can jump from one case to the next as the situation calls</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Pets label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" global_colors_info=\"{}\"]<h2>Pets and Hobbies</h2>[/et_pb_text][et_pb_text admin_label=\"Pets content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Fishing, hunting, writing stories, hiking, kayaking , making balloon animals</li>\n</ul>\n</li>\n</ul>[/et_pb_text][fl_people_single element=\"ancillary_businesses\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Ancillary Businesses\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][/et_pb_column][/et_pb_row][/et_pb_section]','Gould, Andrew','','publish','closed','closed','','gould-andrew','','','2022-05-04 10:51:03','2022-05-04 14:51:03','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/attorney/gould-andrew/',0,'people','',0),(47336,1731,'2021-09-15 12:32:23','2021-09-15 16:32:23','','MULTI-114764-1-ap3','','inherit','closed','closed','','multi-114764-1-ap3-2','','','2021-11-17 16:23:33','2021-11-17 21:23:33','',6,'/wp-content/uploads/sites/1503150/2021/09/MULTI-114764-1-ap3.jpg',0,'attachment','image/jpeg',0),(47337,1731,'2021-09-15 12:35:41','2021-09-15 16:35:41','','CUSTOM-975884-1','','inherit','closed','closed','','custom-975884-1','','','2021-11-30 08:03:11','2021-11-30 13:03:11','',6,'/wp-content/uploads/sites/1503150/2021/09/CUSTOM-975884-1.jpg',0,'attachment','image/jpeg',0),(47338,1731,'2021-09-15 12:36:51','2021-09-15 16:36:51','','MWBE-Logo-300x141','','inherit','closed','closed','','mwbe-logo-300x141','','','2021-11-17 16:15:24','2021-11-17 21:15:24','',6,'/wp-content/uploads/sites/1503150/2021/09/MWBE-Logo-300x141-1.png',0,'attachment','image/png',0),(47395,1731,'2021-09-16 10:51:29','2021-09-16 14:51:29','','AdobeStock_209705558','','inherit','closed','closed','','adobestock_209705558','','','2021-11-23 15:08:27','2021-11-23 20:08:27','',6,'/wp-content/uploads/sites/1503150/2021/09/AdobeStock_209705558.jpeg',0,'attachment','image/jpeg',0),(47397,1731,'2021-09-16 10:53:09','2021-09-16 14:53:09','','AdobeStock_209705558-mobile','','inherit','closed','closed','','adobestock_209705558-mobile','','','2021-11-23 15:08:25','2021-11-23 20:08:25','',6,'/wp-content/uploads/sites/1503150/2021/09/AdobeStock_209705558-mobile.jpg',0,'attachment','image/jpeg',0),(47508,1731,'2021-09-29 07:38:03','2021-09-29 11:38:03','','AdobeStock_427849380','','inherit','closed','closed','','adobestock_427849380','','','2021-09-29 07:38:03','2021-09-29 11:38:03','',6,'/wp-content/uploads/sites/1503150/2021/09/AdobeStock_427849380.jpeg',0,'attachment','image/jpeg',0),(47513,1731,'2021-09-29 08:40:22','2021-09-29 12:40:22','','logo_new','','inherit','closed','closed','','logo_new','','','2021-11-23 15:06:59','2021-11-23 20:06:59','',0,'/wp-content/uploads/sites/1503150/2021/09/logo_new.png',0,'attachment','image/png',0),(47516,1731,'2022-09-15 10:10:42','2021-10-04 20:53:31',' ','','','publish','closed','closed','','47516','','','2022-09-15 10:10:42','2022-09-15 14:10:42','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47516',12,'nav_menu_item','',0),(47518,1731,'2022-09-15 10:10:42','2021-10-04 20:54:50','','LOMAD - TV','','publish','closed','closed','','lomad-tv','','','2022-09-15 10:10:42','2022-09-15 14:10:42','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47518',15,'nav_menu_item','',0),(47542,1251,'2021-10-05 09:57:01','2021-10-05 13:57:01','','Melissa_Ann_Day_pp','','inherit','closed','closed','','melissa_ann_day_pp','','','2021-11-30 08:22:45','2021-11-30 13:22:45','',46191,'/wp-content/uploads/sites/1503150/2021/10/Melissa_Ann_Day_pp.jpg',0,'attachment','image/jpeg',0),(47545,1251,'2021-10-05 09:58:54','2021-10-05 13:58:54','','James_Cousins_pp','','inherit','closed','closed','','james_cousins_pp','','','2021-11-30 08:22:21','2021-11-30 13:22:21','',46191,'/wp-content/uploads/sites/1503150/2021/10/James_Cousins_pp.jpg',0,'attachment','image/jpeg',0),(47548,1251,'2021-10-05 10:04:23','2021-10-05 14:04:23','','Katrina_Gray_pp','','inherit','closed','closed','','katrina_gray_pp','','','2021-11-30 08:09:14','2021-11-30 13:09:14','',46191,'/wp-content/uploads/sites/1503150/2021/10/Katrina_Gray_pp.jpg',0,'attachment','image/jpeg',0),(47551,1251,'2021-10-05 10:08:23','2021-10-05 14:08:23','','Paul_Kornacki_pp','','inherit','closed','closed','','paul_kornacki_pp','','','2021-11-30 08:21:08','2021-11-30 13:21:08','',46191,'/wp-content/uploads/sites/1503150/2021/10/Paul_Kornacki_pp.jpg',0,'attachment','image/jpeg',0),(47554,1251,'2021-10-05 10:12:15','2021-10-05 14:12:15','','Teresa_Cleary_pp','','inherit','closed','closed','','teresa_cleary_pp','','','2021-11-17 16:13:04','2021-11-17 21:13:04','',45925,'/wp-content/uploads/sites/1503150/2021/10/Teresa_Cleary_pp.jpg',0,'attachment','image/jpeg',0),(47562,1251,'2021-10-05 10:18:19','2021-10-05 14:18:19','','Cassie_Christman_pp','','inherit','closed','closed','','cassie_christman_pp','','','2021-11-30 08:20:35','2021-11-30 13:20:35','',46071,'/wp-content/uploads/sites/1503150/2021/09/Cassie_Christman_pp.jpg',0,'attachment','image/jpeg',0),(47567,1251,'2021-10-05 10:23:04','2021-10-05 14:23:04','','Brendan_Shannon_pp','','inherit','closed','closed','','brendan_shannon_pp','','','2021-11-30 08:08:48','2021-11-30 13:08:48','',46191,'/wp-content/uploads/sites/1503150/2021/10/Brendan_Shannon_pp.jpg',0,'attachment','image/jpeg',0),(47570,1251,'2021-10-05 10:24:53','2021-10-05 14:24:53','','Andrew_Gould_pp','','inherit','closed','closed','','andrew_gould_pp','','','2021-11-30 08:08:23','2021-11-30 13:08:23','',47314,'/wp-content/uploads/sites/1503150/2021/09/Andrew_Gould_pp.jpg',0,'attachment','image/jpeg',0),(47572,1251,'2021-10-05 10:26:48','2021-10-05 14:26:48','','Thomas_Dickinson_pp','','inherit','closed','closed','','thomas_dickinson_pp','','','2021-11-17 16:11:09','2021-11-17 21:11:09','',46191,'/wp-content/uploads/sites/1503150/2021/10/Thomas_Dickinson_pp.jpg',0,'attachment','image/jpeg',0),(47575,1251,'2021-10-05 10:28:19','2021-10-05 14:28:19','','Elena_Camp_pp','','inherit','closed','closed','','elena_camp_pp','','','2021-11-17 16:10:41','2021-11-17 21:10:41','',46191,'/wp-content/uploads/sites/1503150/2021/10/Elena_Camp_pp.jpg',0,'attachment','image/jpeg',0),(47577,1251,'2021-10-05 10:29:33','2021-10-05 14:29:33','','Rebecca_Brashear_pp','','inherit','closed','closed','','rebecca_brashear_pp','','','2021-11-17 16:10:11','2021-11-17 21:10:11','',46191,'/wp-content/uploads/sites/1503150/2021/10/Rebecca_Brashear_pp.jpg',0,'attachment','image/jpeg',0),(47578,1251,'2021-10-05 10:31:53','2021-10-05 14:31:53','','Jillian_Chavers_pp','','inherit','closed','closed','','jillian_chavers_pp','','','2021-11-17 16:09:35','2021-11-17 21:09:35','',46191,'/wp-content/uploads/sites/1503150/2021/10/Jillian_Chavers_pp.jpg',0,'attachment','image/jpeg',0),(47579,1251,'2021-10-05 10:32:53','2021-10-05 14:32:53','','Susan_Eick_pp','','inherit','closed','closed','','susan_eick_pp','','','2021-11-17 16:09:14','2021-11-17 21:09:14','',46191,'/wp-content/uploads/sites/1503150/2021/10/Susan_Eick_pp.jpg',0,'attachment','image/jpeg',0),(47583,1251,'2021-10-05 10:35:29','2021-10-05 14:35:29','','Hannah_Kim_pp','','inherit','closed','closed','','hannah_kim_pp','','','2021-11-17 16:08:50','2021-11-17 21:08:50','',46191,'/wp-content/uploads/sites/1503150/2021/10/Hannah_Kim_pp.jpg',0,'attachment','image/jpeg',0),(47584,1251,'2021-10-05 10:35:31','2021-10-05 14:35:31','','Jenny_Malkowski_pp','','inherit','closed','closed','','jenny_malkowski_pp','','','2021-11-17 16:08:27','2021-11-17 21:08:27','',46191,'/wp-content/uploads/sites/1503150/2021/10/Jenny_Malkowski_pp.jpg',0,'attachment','image/jpeg',0),(47585,1251,'2021-10-05 10:36:49','2021-10-05 14:36:49','','Jody_Guiher_pp','','inherit','closed','closed','','jody_guiher_pp','','','2021-11-17 16:07:54','2021-11-17 21:07:54','',46191,'/wp-content/uploads/sites/1503150/2021/10/Jody_Guiher_pp.jpg',0,'attachment','image/jpeg',0),(47586,1251,'2021-10-05 10:38:37','2021-10-05 14:38:37','','Danielle_Draschan_pp','','inherit','closed','closed','','danielle_draschan_pp','','','2021-11-17 16:07:08','2021-11-17 21:07:08','',46191,'/wp-content/uploads/sites/1503150/2021/10/Danielle_Draschan_pp.jpg',0,'attachment','image/jpeg',0),(47587,1251,'2021-10-05 10:40:18','2021-10-05 14:40:18','','Kristen_Degnan_pp','','inherit','closed','closed','','kristen_degnan_pp','','','2021-11-17 16:06:42','2021-11-17 21:06:42','',46191,'/wp-content/uploads/sites/1503150/2021/10/Kristen_Degnan_pp.jpg',0,'attachment','image/jpeg',0),(47590,1251,'2021-10-05 10:43:26','2021-10-05 14:43:26','','Shannon_Mackey_pp','','inherit','closed','closed','','shannon_mackey_pp','','','2021-11-30 08:21:32','2021-11-30 13:21:32','',46191,'/wp-content/uploads/sites/1503150/2021/10/Shannon_Mackey_pp.jpg',0,'attachment','image/jpeg',0),(47591,1251,'2021-10-05 10:43:28','2021-10-05 14:43:28','','Jessica_Stevens_pp','','inherit','closed','closed','','jessica_stevens_pp','','','2021-11-17 16:06:05','2021-11-17 21:06:05','',46191,'/wp-content/uploads/sites/1503150/2021/10/Jessica_Stevens_pp.jpg',0,'attachment','image/jpeg',0),(47592,1251,'2021-10-05 10:45:49','2021-10-05 14:45:49','','Melanie_Daly-1_pp','','inherit','closed','closed','','melanie_daly-1_pp','','','2021-11-30 08:10:24','2021-11-30 13:10:24','',46191,'/wp-content/uploads/sites/1503150/2021/10/Melanie_Daly-1_pp.jpg',0,'attachment','image/jpeg',0),(47593,1251,'2021-10-05 10:46:42','2021-10-05 14:46:42','','Neil_Deigelman-1_pp','','inherit','closed','closed','','neil_deigelman-1_pp','','','2021-11-30 08:10:02','2021-11-30 13:10:02','',46191,'/wp-content/uploads/sites/1503150/2021/10/Neil_Deigelman-1_pp.jpg',0,'attachment','image/jpeg',0),(47594,1251,'2021-10-05 10:48:47','2021-10-05 14:48:47','','Mary_Fran_Schnorr-1_pp','','inherit','closed','closed','','mary_fran_schnorr-1_pp','','','2021-11-30 08:07:56','2021-11-30 13:07:56','',46191,'/wp-content/uploads/sites/1503150/2021/10/Mary_Fran_Schnorr-1_pp.jpg',0,'attachment','image/jpeg',0),(47596,1251,'2021-10-05 10:51:18','2021-10-05 14:51:18','','Alexis_Hatten-1_pp','','inherit','closed','closed','','alexis_hatten-1_pp','','','2021-11-30 08:09:39','2021-11-30 13:09:39','',46191,'/wp-content/uploads/sites/1503150/2021/10/Alexis_Hatten-1_pp.jpg',0,'attachment','image/jpeg',0),(47597,1251,'2021-10-05 10:51:34','2021-10-05 14:51:34','','Vicki_L_Buehler-1_pp','','inherit','closed','closed','','vicki_l_buehler-1_pp','','','2021-11-17 16:04:52','2021-11-17 21:04:52','',46191,'/wp-content/uploads/sites/1503150/2021/10/Vicki_L_Buehler-1_pp.jpg',0,'attachment','image/jpeg',0),(47598,1251,'2021-10-05 10:57:27','2021-10-05 14:57:27','','Daniel_Flynn-1_pp','','inherit','closed','closed','','daniel_flynn-1_pp','','','2021-11-17 16:04:34','2021-11-17 21:04:34','',46191,'/wp-content/uploads/sites/1503150/2021/10/Daniel_Flynn-1_pp.jpg',0,'attachment','image/jpeg',0),(47599,1251,'2021-10-05 10:58:22','2021-10-05 14:58:22','','Brian_Prince-1_pp','','inherit','closed','closed','','brian_prince-1_pp','','','2021-11-30 08:21:56','2021-11-30 13:21:56','',46191,'/wp-content/uploads/sites/1503150/2021/10/Brian_Prince-1_pp.jpg',0,'attachment','image/jpeg',0),(47667,1731,'2021-10-06 11:42:27','2021-10-06 15:42:27','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.18.0\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(46,85,145,0.8) 0%|#211865 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913.jpg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.16\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|off|off\" admin_label=\"FILE PATH\" _builder_version=\"4.16\" background_color=\"#ffffff\" custom_padding=\"15px||0px||false|false\" border_width_bottom=\"1px\" border_color_bottom=\"#211865\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row admin_label=\"File Path\" _builder_version=\"4.16\" width=\"90%\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][lwp_divi_breadcrumbs before_text=\"  \" font_icon=\"&#x39;||divi||400\" use_before_icon=\"off\" link_color=\"#211865\" separator_color=\"#211865\" current_text_color=\"#211865\" _builder_version=\"4.18.0\" _module_preset=\"default\" module_font_size=\"18px\" global_colors_info=\"{}\"][/lwp_divi_breadcrumbs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"INTERNAL PAGE CONTENT\" _builder_version=\"4.16\" background_color=\"#ffffff\" custom_padding=\"55px||55px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_4,1_4\" admin_label=\"Internal Page Content\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"90%\" global_colors_info=\"{}\"][et_pb_column type=\"3_4\" _builder_version=\"4.16\" background_color=\"#ffffff\" custom_padding=\"|50px|||false|false\" custom_padding_tablet=\"|0px|30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_post_content quote_border_color=\"#2e5591\" module_class=\"fl-darklinks fl-inner-left\" _builder_version=\"4.16\" text_text_color=\"#000000\" text_font_size=\"18px\" link_text_color=\"#000000\" header_text_color=\"#211865\" header_2_text_color=\"#211865\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#211865\" header_6_text_color=\"#211865\" background_enable_color=\"off\" global_colors_info=\"{}\"][/et_pb_post_content][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Melissa-Day-Law-Headshots1.jpg\" alt=\"attorneys James B. Cousins and Melissa A. Day\" title_text=\"Melissa-Day-Law-Headshots1\" _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding=\"||14px||false|false\" box_shadow_style=\"preset3\" sticky_enabled=\"0\"][/et_pb_image][et_pb_sidebar area=\"et_pb_widget_area_1\" admin_label=\"Sidebar\" module_class=\"fl-sidebar fl-lightlinks\" _builder_version=\"4.18.0\" header_font=\"|600|||||||\" header_text_align=\"left\" header_text_color=\"#ffffff\" header_font_size=\"35px\" body_font_size=\"18px\" background_color=\"#211865\" custom_margin_tablet=\"20px||||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"40px|45px|40px|45px|true|true\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" scroll_vertical_motion=\"19|63|63|100|4|0|-4\" header_font_size_tablet=\"30px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_color_right_tablet=\"\" border_color_right_phone=\"\" border_color_right_last_edited=\"on|desktop\" box_shadow_style=\"preset1\" box_shadow_vertical=\"0px\" box_shadow_blur=\"0px\" box_shadow_spread=\"3px\" box_shadow_color=\"#211865\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"47121\" theme_builder_area=\"post_content\"][/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section]','About - light background','','publish','open','closed','','theme-builder-layout-2','','','2022-09-09 10:23:07','2022-09-09 14:23:07','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_body_layout/theme-builder-layout-2/',0,'et_body_layout','',0),(47691,1731,'2021-10-06 12:10:40','2021-10-06 16:10:40','','About - light background','','publish','closed','closed','','about-light-background-2','','','2021-11-30 02:37:22','2021-11-30 07:37:22','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_template/about-light-background-2/',0,'et_template','',0),(47694,1731,'2021-10-06 12:22:24','2021-10-06 16:22:24','','Melissa-Day-Law-Headshots1','','inherit','closed','closed','','melissa-day-law-headshots1','','','2021-11-17 16:03:42','2021-11-17 21:03:42','',0,'/wp-content/uploads/sites/1503150/2021/10/Melissa-Day-Law-Headshots1.jpg',0,'attachment','image/jpeg',0),(47697,1731,'2021-10-06 12:26:49','2021-10-06 16:26:49','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.18.0\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(46,85,145,0.8) 0%|#211865 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913.jpg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.16\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|off|off\" admin_label=\"FILE PATH\" _builder_version=\"4.18.0\" background_color=\"#FFFFFF\" custom_padding=\"15px||0px||false|false\" border_width_bottom=\"2px\" border_color_bottom=\"#211865\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row admin_label=\"File Path\" _builder_version=\"4.16\" width=\"90%\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][lwp_divi_breadcrumbs before_text=\"  \" font_icon=\"&#x39;||divi||400\" use_before_icon=\"off\" link_color=\"#211865\" separator_color=\"#211865\" current_text_color=\"#211865\" _builder_version=\"4.18.0\" _module_preset=\"default\" module_font_size=\"18px\" background_color=\"#FFFFFF\" global_module=\"49452\" global_colors_info=\"{}\"][/lwp_divi_breadcrumbs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"INTERNAL PAGE CONTENT\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_padding=\"55px||55px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_4,1_4\" admin_label=\"Internal Page Content\" _builder_version=\"4.16\" background_enable_color=\"off\" width=\"90%\" global_colors_info=\"{}\"][et_pb_column type=\"3_4\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_padding=\"|50px|||false|false\" custom_padding_tablet=\"|0px|30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_post_content quote_border_color=\"#2e5591\" module_class=\"fl-darklinks fl-inner-left\" _builder_version=\"4.16\" text_text_color=\"#000000\" text_font_size=\"18px\" header_text_color=\"#211865\" header_2_text_color=\"#211865\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#211865\" header_6_text_color=\"#211865\" background_enable_color=\"off\" global_colors_info=\"{}\"][/et_pb_post_content][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Melissa-Day-Law-Headshots1.jpg\" alt=\"attorneys James B. Cousins and Melissa A. Day\" title_text=\"Melissa-Day-Law-Headshots1\" _builder_version=\"4.18.0\" custom_margin=\"||20px||false|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_sidebar area=\"et_pb_widget_area_1\" admin_label=\"Sidebar\" module_class=\"fl-sidebar fl-lightlinks\" _builder_version=\"4.18.0\" header_font=\"|600|||||||\" header_text_align=\"left\" header_text_color=\"#ffffff\" header_font_size=\"35px\" body_font_size=\"18px\" background_color=\"#211865\" custom_margin_tablet=\"20px||||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"40px|45px|40px|45px|true|true\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" scroll_vertical_motion=\"19|63|63|100|4|0|-4\" header_font_size_tablet=\"30px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_color_right_tablet=\"\" border_color_right_phone=\"\" border_color_right_last_edited=\"on|desktop\" box_shadow_style=\"preset1\" box_shadow_vertical=\"0px\" box_shadow_blur=\"0px\" box_shadow_spread=\"3px\" box_shadow_color=\"#211865\" global_module=\"47121\" saved_tabs=\"all\" global_colors_info=\"{}\"][/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section]','Client Resources','','publish','open','closed','','theme-builder-layout-3','','','2022-09-09 10:23:07','2022-09-09 14:23:07','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_body_layout/theme-builder-layout-3/',0,'et_body_layout','',0),(47712,1731,'2021-10-06 12:27:28','2021-10-06 16:27:28','','Melissa-Day-Law-Headshots-2','','inherit','closed','closed','','melissa-day-law-headshots-2','','','2021-11-17 16:03:15','2021-11-17 21:03:15','',0,'/wp-content/uploads/sites/1503150/2021/10/Melissa-Day-Law-Headshots-2.jpg',0,'attachment','image/jpeg',0),(47715,1731,'2021-10-06 12:34:13','2021-10-06 16:34:13','','Client Resources','','publish','closed','closed','','client-resources-2','','','2021-11-30 02:37:26','2021-11-30 07:37:26','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_template/client-resources-2/',0,'et_template','',0),(47728,1731,'2022-08-16 11:40:29','2021-10-11 15:39:03','','Workers’ Compensation Practice Aids','','publish','closed','closed','','workers-comp-practice-aids-2','','','2022-08-16 11:40:29','2022-08-16 15:40:29','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47728',7,'nav_menu_item','',0),(47729,1731,'2021-10-11 12:05:14','2021-10-11 16:05:14','','logo_new-1','','inherit','closed','closed','','logo_new-1','','','2021-11-23 15:06:53','2021-11-23 20:06:53','',0,'/wp-content/uploads/sites/1503150/2021/10/logo_new-1.png',0,'attachment','image/png',0),(47835,1251,'2021-10-19 05:09:22','2021-10-19 09:09:22','','logo','','inherit','closed','closed','','logo-2','','','2021-11-23 15:06:51','2021-11-23 20:06:51','',0,'/wp-content/uploads/sites/1503150/2021/10/logo.png',0,'attachment','image/png',0),(47836,1251,'2021-10-19 05:09:33','2021-10-19 09:09:33','','logo_white','','inherit','closed','closed','','logo_white','','','2021-11-23 15:06:49','2021-11-23 20:06:49','',0,'/wp-content/uploads/sites/1503150/2021/10/logo_white.png',0,'attachment','image/png',0),(47838,1251,'2021-10-19 05:13:53','2021-10-19 09:13:53','','OgImage_New','','inherit','closed','closed','','ogimage_new','','','2021-11-23 15:06:46','2021-11-23 20:06:46','',0,'/wp-content/uploads/sites/1503150/2021/10/OgImage_New.png',0,'attachment','image/png',0),(47854,1731,'2022-08-16 11:40:45','2021-10-19 16:26:34','','LOMAD-TV','','publish','closed','closed','','lomad-tv-2','','','2022-08-16 11:40:45','2022-08-16 15:40:45','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=47854',14,'nav_menu_item','',0),(47855,1156,'2021-10-26 16:03:53','2021-10-26 20:03:53','','buehler_vicki_l','','inherit','closed','closed','','buehler_vicki_l-2','','','2021-11-30 08:00:41','2021-11-30 13:00:41','',0,'/wp-content/uploads/sites/1503150/2021/10/buehler_vicki_l.jpg',0,'attachment','image/jpeg',0),(47856,1156,'2021-10-26 16:03:59','2021-10-26 20:03:59','','christman_cassandra_e','','inherit','closed','closed','','christman_cassandra_e-2','','','2021-11-30 08:00:29','2021-11-30 13:00:29','',46071,'/wp-content/uploads/sites/1503150/2021/10/christman_cassandra_e.jpg',0,'attachment','image/jpeg',0),(47857,1156,'2021-10-26 16:04:06','2021-10-26 20:04:06','','cousins_james_b','','inherit','closed','closed','','cousins_james_b-2','','','2021-11-30 08:00:21','2021-11-30 13:00:21','',46073,'/wp-content/uploads/sites/1503150/2021/10/cousins_james_b.jpg',0,'attachment','image/jpeg',0),(47858,1156,'2021-10-26 16:04:09','2021-10-26 20:04:09','','daly_melanie_a','','inherit','closed','closed','','daly_melanie_a-2','','','2021-11-30 07:59:56','2021-11-30 12:59:56','',46075,'/wp-content/uploads/sites/1503150/2021/10/daly_melanie_a.jpg',0,'attachment','image/jpeg',0),(47859,1156,'2021-10-26 16:04:12','2021-10-26 20:04:12','','day_melissa_a','','inherit','closed','closed','','day_melissa_a-2','','','2021-11-30 07:59:46','2021-11-30 12:59:46','',46077,'/wp-content/uploads/sites/1503150/2021/10/day_melissa_a.jpg',0,'attachment','image/jpeg',0),(47860,1156,'2021-10-26 16:04:17','2021-10-26 20:04:17','','diegelman_neil_a','','inherit','closed','closed','','diegelman_neil_a-2','','','2021-11-30 07:59:40','2021-11-30 12:59:40','',46079,'/wp-content/uploads/sites/1503150/2021/10/diegelman_neil_a.jpg',0,'attachment','image/jpeg',0),(47861,19,'2022-05-04 10:50:57','2022-05-04 14:50:57','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-scaled.jpeg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.3.2\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.3.2\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.3.2\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Mary_Fran_Schnorr-1_pp.jpg\" _builder_version=\"4.3.2\" custom_margin=\"||20px||false|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Full Name\" module_class=\"fl-attorney-title\" _builder_version=\"4.14.2\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h1>Mary Frances Schnorr</h1>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_text_color=\"#000000\" global_colors_info=\"{}\"]<p>Nicknames</p>\n<ul>\n<li>Mary Fran</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.3.2\" text_font=\"|600|||||||\" text_text_color=\"#027acb\" text_font_size=\"24px\" header_font=\"||||||||\" header_2_text_color=\"#211865\" header_3_font=\"||||||||\" header_3_text_color=\"#000000\" custom_padding=\"5px||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Me:</h2>[/et_pb_text][fl_people_single element=\"phone\" admin_label=\"Person Detail Element - Phone Number\" module_class=\"fl-darklinks\" _builder_version=\"4.3.2\" module_text_color=\"#211865\" custom_margin=\"0px||10px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Email Button - Short Code\" module_class=\"fl-email-btn\" _builder_version=\"4.3.2\" link_font=\"||||||||\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||25px||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>[email_me_form form_id=\"3\" post_id=\"47861\"]</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.29.3\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Practice Areas\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"||20px\" custom_padding_tablet=\"0px||26px||false\" custom_padding_phone=\"0px||20px||false\" custom_padding_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h2>Practice Areas</h2>[/et_pb_text][fl_people_single element=\"practice_areas\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Practice Areas\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Current Employment Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Current Employment Position</h2>[/et_pb_text][fl_people_single element=\"current_positions\" admin_label=\"Person Detail Element - Current Employment Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Bar Admissions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Bar Admissions</h2>[/et_pb_text][fl_people_single element=\"bar_admissions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Bar Admissions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Professional Associations\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Associations and Memberships</h2>[/et_pb_text][fl_people_single element=\"professional_assoc\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element -Professional Associations\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Verdict Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Verdicts/Settlements/Cases of Note/Favorite Win</h2>[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Verdict Content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li><u>Burns v. Varriale</u>, 9 N.Y. 3d 207 (2007). Perfecting an argument proposed by Steven M. Licht, Esq., and successfully arguing this influential case at the Court of Appeals is the highlight of my career as an attorney, but having the privilege or working with the team at LOMAD is the highlight of my entire professional career.</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Education\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Education</h2>[/et_pb_text][fl_people_single element=\"education\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Education\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Pro-Bono Activities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pro-Bono Activities</h2>[/et_pb_text][fl_people_single element=\"pro_bonos\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Pro-Bono Activities\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Honors\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Honors</h2>[/et_pb_text][fl_people_single element=\"honors\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Honors\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Published Works\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Published Works</h2>[/et_pb_text][fl_people_single element=\"published_works\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Published Works\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Tenure at firm</h2>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>1.25 days and counting</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Legal Superpower label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" custom_padding=\"15px||15px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Your Legal Superpower</h2>[/et_pb_text][et_pb_text admin_label=\"Legal superpower content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Listening carefully</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Hobbies label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Hobbies</h2>[/et_pb_text][et_pb_text admin_label=\"Hobbies content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Sculling</li>\n<li>Stained Glass</li>\n<li>Family Geneology</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Cases\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Cases</h2>[/et_pb_text][fl_people_single element=\"representative_cases\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Cases\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Fraternities or Sororities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Fraternities or Sororities</h2>[/et_pb_text][fl_people_single element=\"fraternity_sororities\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Fraternities or Sororities\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Professional Associations\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Associations</h2>[/et_pb_text][fl_people_single element=\"professional_assoc\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Professional Associations\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Biography\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Biography</h2>[/et_pb_text][fl_people_single element=\"bio\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Biography\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" custom_padding=\"||15px||false|false\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Certified Legal Specialties\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Certified Legal Specialties</h2>[/et_pb_text][fl_people_single element=\"specialties\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Certified Legal Specialties\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Classes & Seminars\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Classes & Seminars</h2>[/et_pb_text][fl_people_single element=\"classes_seminars\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Classes & Seminars\" _builder_version=\"3.24\" text_orientation=\"left\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Clients\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Clients</h2>[/et_pb_text][fl_people_single element=\"representative_clients\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Clients\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"References\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>References</h2>[/et_pb_text][fl_people_single element=\"references\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - References\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Past Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Past Positions</h2>[/et_pb_text][fl_people_single element=\"past_positions\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Past Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Languages\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Languages</h2>[/et_pb_text][fl_people_single element=\"languages\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Languages\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Ancillary Businesses\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Ancillary Businesses</h2>[/et_pb_text][fl_people_single element=\"ancillary_businesses\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Ancillary Businesses\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][/et_pb_column][/et_pb_row][/et_pb_section]','Frances, Mary','','publish','closed','closed','','frances-mary','','','2022-05-04 10:50:57','2022-05-04 14:50:57','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/attorney/frances-mary/',0,'people','',0),(47862,1156,'2021-10-26 16:04:21','2021-10-26 20:04:21','','frances_mary','','inherit','closed','closed','','frances_mary','','','2021-11-30 07:59:28','2021-11-30 12:59:28','',47861,'/wp-content/uploads/sites/1503150/2021/10/frances_mary.jpg',0,'attachment','image/jpeg',0),(47863,1156,'2021-10-26 16:04:27','2021-10-26 20:04:27','','gould_andrew','','inherit','closed','closed','','gould_andrew','','','2021-11-30 07:59:03','2021-11-30 12:59:03','',47314,'/wp-content/uploads/sites/1503150/2021/10/gould_andrew.jpg',0,'attachment','image/jpeg',0),(47864,1156,'2021-10-26 16:04:31','2021-10-26 20:04:31','','gray_katrina','','inherit','closed','closed','','gray_katrina-2','','','2021-11-30 07:58:55','2021-11-30 12:58:55','',46081,'/wp-content/uploads/sites/1503150/2021/10/gray_katrina.jpg',0,'attachment','image/jpeg',0),(47865,1156,'2021-10-26 16:04:34','2021-10-26 20:04:34','','hatten_alexis_d','','inherit','closed','closed','','hatten_alexis_d-2','','','2021-11-30 07:58:48','2021-11-30 12:58:48','',0,'/wp-content/uploads/sites/1503150/2021/10/hatten_alexis_d.jpg',0,'attachment','image/jpeg',0),(47866,1156,'2021-10-26 16:04:38','2021-10-26 20:04:38','','kornacki_paul_b','','inherit','closed','closed','','kornacki_paul_b-2','','','2021-11-30 07:58:39','2021-11-30 12:58:39','',46085,'/wp-content/uploads/sites/1503150/2021/10/kornacki_paul_b.jpg',0,'attachment','image/jpeg',0),(47867,1156,'2021-10-26 16:04:44','2021-10-26 20:04:44','','mackey_shannan_m','','inherit','closed','closed','','mackey_shannan_m-2','','','2021-11-30 07:58:31','2021-11-30 12:58:31','',46089,'/wp-content/uploads/sites/1503150/2021/10/mackey_shannan_m.jpg',0,'attachment','image/jpeg',0),(47868,1156,'2021-10-26 16:04:47','2021-10-26 20:04:47','','prince_brian_k','','inherit','closed','closed','','prince_brian_k-2','','','2021-11-30 07:58:22','2021-11-30 12:58:22','',46091,'/wp-content/uploads/sites/1503150/2021/10/prince_brian_k.jpg',0,'attachment','image/jpeg',0),(47871,1251,'2021-10-27 01:48:00','2021-10-27 05:48:00','','AdobeStock_260182798','','inherit','closed','closed','','adobestock_260182798','','','2021-10-27 01:48:00','2021-10-27 05:48:00','',0,'/wp-content/uploads/sites/1503150/2021/10/AdobeStock_260182798.png',0,'attachment','image/png',0),(47874,1251,'2021-10-27 01:58:42','2021-10-27 05:58:42','','CUSTOM-870784-cmyk','','inherit','closed','closed','','custom-870784-cmyk','','','2021-11-30 08:03:50','2021-11-30 13:03:50','',6,'/wp-content/uploads/sites/1503150/2021/10/CUSTOM-870784-cmyk.png',0,'attachment','image/png',0),(47875,1251,'2021-10-27 01:58:50','2021-10-27 05:58:50','','101814-cmyk-1','','inherit','closed','closed','','101814-cmyk-1','','','2021-11-17 15:53:40','2021-11-17 20:53:40','',6,'/wp-content/uploads/sites/1503150/2021/10/101814-cmyk-1.png',0,'attachment','image/png',0),(47895,1251,'2021-10-27 02:15:11','2021-10-27 06:15:11','','AdobeStock_258696218','','inherit','closed','closed','','adobestock_258696218','','','2021-10-27 02:15:11','2021-10-27 06:15:11','',6,'/wp-content/uploads/sites/1503150/2021/10/AdobeStock_258696218.jpg',0,'attachment','image/jpeg',0),(47896,1251,'2021-10-27 02:15:18','2021-10-27 06:15:18','','AdobeStock_258696218-T','','inherit','closed','closed','','adobestock_258696218-t','','','2021-10-27 02:15:18','2021-10-27 06:15:18','',6,'/wp-content/uploads/sites/1503150/2021/10/AdobeStock_258696218-T.jpg',0,'attachment','image/jpeg',0),(47897,1251,'2021-10-27 02:15:21','2021-10-27 06:15:21','','AdobeStock_258696218-M','','inherit','closed','closed','','adobestock_258696218-m','','','2021-10-27 02:15:21','2021-10-27 06:15:21','',6,'/wp-content/uploads/sites/1503150/2021/10/AdobeStock_258696218-M.jpg',0,'attachment','image/jpeg',0),(47898,1251,'2021-10-27 02:22:25','2021-10-27 06:22:25','','AdobeStock_344563317','','inherit','closed','closed','','adobestock_344563317','','','2021-10-27 02:22:25','2021-10-27 06:22:25','',6,'/wp-content/uploads/sites/1503150/2021/10/AdobeStock_344563317.jpg',0,'attachment','image/jpeg',0),(47899,1251,'2021-10-27 02:22:32','2021-10-27 06:22:32','','AdobeStock_344563317-T','','inherit','closed','closed','','adobestock_344563317-t','','','2021-10-27 02:22:32','2021-10-27 06:22:32','',6,'/wp-content/uploads/sites/1503150/2021/10/AdobeStock_344563317-T.jpg',0,'attachment','image/jpeg',0),(47900,1251,'2021-10-27 02:22:35','2021-10-27 06:22:35','','AdobeStock_344563317-M','','inherit','closed','closed','','adobestock_344563317-m','','','2021-10-27 02:22:35','2021-10-27 06:22:35','',6,'/wp-content/uploads/sites/1503150/2021/10/AdobeStock_344563317-M.jpg',0,'attachment','image/jpeg',0),(47901,1251,'2021-10-27 02:35:15','2021-10-27 06:35:15','','AdobeStock_362306286','','inherit','closed','closed','','adobestock_362306286','','','2021-10-27 02:35:15','2021-10-27 06:35:15','',6,'/wp-content/uploads/sites/1503150/2021/10/AdobeStock_362306286.jpg',0,'attachment','image/jpeg',0),(47902,1251,'2021-10-27 02:35:20','2021-10-27 06:35:20','','AdobeStock_362306286-T','','inherit','closed','closed','','adobestock_362306286-t','','','2021-10-27 02:35:20','2021-10-27 06:35:20','',6,'/wp-content/uploads/sites/1503150/2021/10/AdobeStock_362306286-T.jpg',0,'attachment','image/jpeg',0),(47903,1251,'2021-10-27 02:35:24','2021-10-27 06:35:24','','AdobeStock_362306286-M','','inherit','closed','closed','','adobestock_362306286-m','','','2021-10-27 02:35:24','2021-10-27 06:35:24','',6,'/wp-content/uploads/sites/1503150/2021/10/AdobeStock_362306286-M.jpg',0,'attachment','image/jpeg',0),(48000,1731,'2021-11-03 18:30:56','2021-11-03 22:30:56','','women2020','','inherit','closed','closed','','women2020','','','2021-11-17 15:53:30','2021-11-17 20:53:30','',6,'/wp-content/uploads/sites/1503150/2021/11/women2020.jpg',0,'attachment','image/jpeg',0),(48007,1805,'2021-11-04 16:52:34','2021-11-04 20:52:34','','Atty_Kelesy-Kunze','','inherit','closed','closed','','atty_kelesy-kunze','','','2022-09-08 16:12:46','2022-09-08 20:12:46','',48823,'/wp-content/uploads/sites/1503150/2021/10/Atty_Kelesy-Kunze.jpg',0,'attachment','image/jpeg',0),(48012,1805,'2021-11-04 17:06:56','2021-11-04 21:06:56','','Atty_Francis-Christiano','','inherit','closed','closed','','atty_francis-christiano','','','2021-11-30 07:58:00','2021-11-30 12:58:00','',46191,'/wp-content/uploads/sites/1503150/2021/11/Atty_Francis-Christiano.jpg',0,'attachment','image/jpeg',0),(48013,1805,'2021-11-04 17:06:58','2021-11-04 21:06:58','','Atty_Jessica-Stevens','','inherit','closed','closed','','atty_jessica-stevens','','','2021-11-30 07:57:48','2021-11-30 12:57:48','',46191,'/wp-content/uploads/sites/1503150/2021/11/Atty_Jessica-Stevens.jpg',0,'attachment','image/jpeg',0),(48014,1805,'2021-11-04 17:07:58','2021-11-04 21:07:58','','Atty_Corrine-Newman','','inherit','closed','closed','','atty_corrine-newman','','','2021-11-30 07:57:41','2021-11-30 12:57:41','',46191,'/wp-content/uploads/sites/1503150/2021/11/Atty_Corrine-Newman.jpg',0,'attachment','image/jpeg',0),(48015,1805,'2021-11-04 17:08:00','2021-11-04 21:08:00','','Atty_Danielle-Draschan','','inherit','closed','closed','','atty_danielle-draschan','','','2021-11-30 07:57:31','2021-11-30 12:57:31','',46191,'/wp-content/uploads/sites/1503150/2021/11/Atty_Danielle-Draschan.jpg',0,'attachment','image/jpeg',0),(48020,26,'2021-11-04 17:49:15','2021-11-04 21:49:15','<h1>Corrine N. Newman</h1>\r\n<img class=\"alignnone size-medium wp-image-48014\" src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/Atty_Corrine-Newman-300x300.jpg\" alt=\"photo of Legal Assistant Corrine N. Newman\" width=\"300\" height=\"300\" />\r\n<h3><strong>Billing Clerk</strong></h3>\r\n<h2>Contact Me:</h2>\r\n<a role=\"link\" href=\"tel:+1-716-650-5266\" data-wpel-link=\"internal\">(716) 650-5266</a>\r\n\r\n<a class=\"btn-email-staff\" role=\"link\" href=\"mailto:cnewman@madwcdefense.com\">Email Me</a>\r\n\r\n<span style=\"color: #211865;\">Corrine is a born and raised Western New Yorker who just recently moved back home. She is part of a military family who has moved quite a bit over the last 15 years. She wanted to move back and give to those where she calls home and we are happy to have her! While she was away from WNY, she obtained her bachelor’s degree with honor in paralegal studies.</span>\r\n\r\n<span style=\"color: #211865;\">In her free time, she loves to spend time with her friends and family. Whether that is quality time with her dogs, bearded dragon and her fish. She also loves playing softball or volleyball, crafting or meeting to have a meal and watch the game. (Football: Go Bills! || Baseball: Go Yankees! || Hockey - Go Sabres!) Most importantly, Corrine loves to make memories and have a good time with those she loves.</span>','Corrine N. Newman','','publish','closed','closed','','corrine-n-newman','','','2022-09-23 08:42:53','2022-09-23 12:42:53','',48410,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=48020',0,'page','',0),(48022,26,'2021-11-04 17:51:45','2021-11-04 21:51:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Full Name\" module_class=\"fl-attorney-title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_text_color=\"#211865\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h1>Jessica M. Stevens</h1>[/et_pb_text][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/Atty_Jessica-Stevens.jpg\" alt=\"photo of Legal Assistant Jessica M. Stevens\" title_text=\"Atty_Jessica-Stevens\" _builder_version=\"4.18.0\" custom_margin=\"||20px||false|false\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text module_class=\"fl-attorney-title\" _builder_version=\"4.18.0\" text_font=\"||||||||\" text_text_color=\"#211865\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_text_color=\"#211865\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" hover_enabled=\"0\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong><span style=\"color: #000000;\">Legal Assistant</span></strong></p>\n<h2>Contact Me:</h2>\n<p><a role=\"link\" href=\"tel:+1-716-800-3833\" data-wpel-link=\"internal\">(716) 800-3833</a></p>\n<p><a class=\"btn-email-staff\" role=\"link\" href=\"mailto:jstevens@madwcdefense.com\">Email Me</a></p>\n<p><span style=\"color: #000000;\">Jessie Stevens is a Legal Assistant and the first person you see when you enter our office. In addition to reception, she provides support to our deposition and hearings teams.  Jessie believes that opportunity follows learning and will always be the first to volunteer for a project. Jessie came to us after completion of a 14-month COVID-19 mission with the State Guard, where she is a Sergeant (E-5).  Jessie is completing an Associates Degree in Paralegal Studies at Bryant &amp; Stratton College. She is on track to graduate in April 2023.</span></p>\n<p><span style=\"color: #000000;\">In her free time, Jessie enjoys walking and hiking in the summer.  In the winter, she cuddles up with her two cats and a hot chocolate or latte. Her favorite Netflix shows are <em>Law &amp; Order: SVU, Criminal Minds</em>, <em>The First 48</em>, and <em>YOU</em> to name just a few.  Despite living in Buffalo, she remains a die-hard Dallas Cowboys fan.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Jessica M. Stevens','','publish','closed','closed','','jessica-m-stevens','','','2022-09-23 08:42:05','2022-09-23 12:42:05','',48410,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=48022',0,'page','',0),(48023,26,'2021-11-04 17:48:33','2021-11-04 21:48:33','<h1>Danielle F. Draschan</h1>\r\n<img class=\"alignnone size-medium wp-image-48015\" src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/Atty_Danielle-Draschan-300x300.jpg\" alt=\"photo of Legal Assistant Danielle F. Draschan \" width=\"300\" height=\"300\" />\r\n<h3><strong>Legal Assistant</strong></h3>\r\n<h2>Contact Me:</h2>\r\n<a role=\"link\" href=\"tel:+1-716-250-9973\" data-wpel-link=\"internal\">(716) 250-9973</a>\r\n\r\n<a class=\"btn-email-staff\" role=\"link\" href=\"mailto:ddraschan@madwcdefense.com\">Email Me</a>\r\n\r\n<span style=\"color: #211865;\">Danielle graduated from Daemen College with a Bachelor’s Degree in Paralegal Studies. During her time in college, she enjoyed being a member of the Paralegal club, where she and the other club members would help educate the campus on the role of paralegals. She is very excited to continue to learn more about workers’ compensation law.</span>\r\n\r\n<span style=\"color: #211865;\">In her free time, Danielle enjoys hiking and spending time with her pets, friends, and family.</span>','Danielle F. Draschan','','publish','closed','closed','','danielle-f-draschan','','','2022-09-23 08:41:27','2022-09-23 12:41:27','',48410,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=48023',0,'page','',0),(48126,1805,'2021-11-05 15:37:26','2021-11-05 19:37:26','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|desktop\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-scaled.jpeg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"-330px||||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"420px||100px||false|false\" custom_padding_phone=\"\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.3.2\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\" background_enable_color=\"off\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"INTERNAL PAGE CONTENT\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" custom_padding=\"55px||55px||true|false\"][et_pb_row column_structure=\"3_4,1_4\" admin_label=\"Internal Page Content\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"90%\"][et_pb_column type=\"3_4\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" custom_padding=\"|50px|||false|false\" custom_padding_tablet=\"|0px|30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_post_content quote_border_color=\"#2e5591\" module_class=\"fl-darklinks  fl-inner-left\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" text_font_size=\"18px\" link_text_color=\"#000000\" header_text_color=\"#211865\" header_2_text_color=\"#211865\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#211865\" header_6_text_color=\"#211865\" background_color=\"#ffffff\"][/et_pb_post_content][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.3.2\" background_color=\"#ffffff\"][et_pb_sidebar area=\"et_pb_widget_area_1\" admin_label=\"Sidebar\" module_class=\"fl-sidebar fl-lightlinks\" _builder_version=\"4.3.2\" header_font=\"|600|||||||\" header_text_align=\"left\" header_text_color=\"#ffffff\" header_font_size=\"35px\" body_font_size=\"18px\" background_color=\"#211865\" custom_margin_tablet=\"20px||||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"40px|45px|40px|45px|true|true\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" header_font_size_tablet=\"30px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_color_right_tablet=\"\" border_color_right_phone=\"\" border_color_right_last_edited=\"on|desktop\" box_shadow_style=\"preset1\" box_shadow_vertical=\"0px\" box_shadow_blur=\"0px\" box_shadow_spread=\"3px\" box_shadow_color=\"#211865\" global_module=\"47121\" saved_tabs=\"all\"][/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section]','Two Column Layout Copy','','publish','open','closed','','theme-builder-layout-4','','','2022-09-09 10:23:07','2022-09-09 14:23:07','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_body_layout/theme-builder-layout-4/',0,'et_body_layout','',0),(48147,1805,'2021-11-05 15:40:15','2021-11-05 19:40:15','','Two Column Layout Copy','','publish','closed','closed','','two-column-layout-copy-2','','','2021-11-30 02:37:27','2021-11-30 07:37:27','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_template/two-column-layout-copy-2/',0,'et_template','',0),(48150,1251,'2021-11-08 01:20:21','2021-11-08 06:20:21','','AdobeStock_344563317-banner','','inherit','closed','closed','','adobestock_344563317-banner','','','2021-11-08 01:20:21','2021-11-08 06:20:21','',6,'/wp-content/uploads/sites/1503150/2021/11/AdobeStock_344563317-banner.jpg',0,'attachment','image/jpeg',0),(48151,1251,'2021-11-08 01:20:25','2021-11-08 06:20:25','','AdobeStock_258696218-banner','','inherit','closed','closed','','adobestock_258696218-banner','','','2021-11-08 01:20:25','2021-11-08 06:20:25','',6,'/wp-content/uploads/sites/1503150/2021/11/AdobeStock_258696218-banner.jpg',0,'attachment','image/jpeg',0),(48152,1251,'2021-11-08 01:20:29','2021-11-08 06:20:29','','AdobeStock_362306286-banner','','inherit','closed','closed','','adobestock_362306286-banner','','','2021-11-08 01:20:29','2021-11-08 06:20:29','',6,'/wp-content/uploads/sites/1503150/2021/11/AdobeStock_362306286-banner.jpg',0,'attachment','image/jpeg',0),(48166,1156,'2021-11-10 16:11:26','2021-11-10 21:11:26','','gray_katrina','','inherit','closed','closed','','gray_katrina-3','','','2021-11-10 16:11:26','2021-11-10 21:11:26','',46081,'/wp-content/uploads/sites/1503150/2021/11/gray_katrina.jpg',0,'attachment','image/jpeg',0),(48167,1156,'2021-11-10 16:11:46','2021-11-10 21:11:46','','machelor_kristin_m','','inherit','closed','closed','','machelor_kristin_m-2','','','2021-11-30 07:56:35','2021-11-30 12:56:35','',0,'/wp-content/uploads/sites/1503150/2021/11/machelor_kristin_m.jpg',0,'attachment','image/jpeg',0),(48168,1,'2022-05-04 10:52:14','2022-05-04 14:52:14','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-scaled.jpeg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.3.2\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.3.2\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.3.2\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Brendan_Shannon_pp.jpg\" _builder_version=\"4.3.2\" custom_margin=\"||20px||false|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Full Name\" module_class=\"fl-attorney-title\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h1>Brendan T. Shannon</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.3.2\" text_font=\"|600|||||||\" text_text_color=\"#027acb\" text_font_size=\"24px\" header_font=\"||||||||\" header_2_text_color=\"#211865\" header_3_font=\"||||||||\" header_3_text_color=\"#000000\" custom_padding=\"5px||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Me:</h2>[/et_pb_text][fl_people_single element=\"phone\" admin_label=\"Person Detail Element - Phone Number\" module_class=\"fl-darklinks\" _builder_version=\"4.3.2\" module_text_color=\"#211865\" custom_margin=\"0px||10px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Email Button - Short Code\" module_class=\"fl-email-btn\" _builder_version=\"4.3.2\" link_font=\"||||||||\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||25px||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>[email_me_form form_id=\"3\" post_id=\"48168\"]</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.29.3\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Practice Areas\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"||20px\" custom_padding_tablet=\"0px||26px||false\" custom_padding_phone=\"0px||20px||false\" custom_padding_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h2>Practice Areas</h2>[/et_pb_text][fl_people_single element=\"practice_areas\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Practice Areas\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Current Employment Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Current Employment Position</h2>[/et_pb_text][fl_people_single element=\"current_positions\" admin_label=\"Person Detail Element - Current Employment Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Bar Admissions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Bar Admissions</h2>[/et_pb_text][fl_people_single element=\"bar_admissions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Bar Admissions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Professional Associations\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Associations and Memberships</h2>[/et_pb_text][fl_people_single element=\"professional_assoc\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element -Professional Associations\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Education\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Education</h2>[/et_pb_text][fl_people_single element=\"education\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Education\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Pro-Bono Activities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pro-Bono Activities</h2>[/et_pb_text][fl_people_single element=\"pro_bonos\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Pro-Bono Activities\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Honors\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Honors</h2>[/et_pb_text][fl_people_single element=\"honors\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Honors\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Published Works\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Published Works</h2>[/et_pb_text][fl_people_single element=\"published_works\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Published Works\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Tenure at firm</h2>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Content\" _builder_version=\"4.14.8\" text_text_color=\"#000000\" custom_padding=\"|||15px|false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<ul>\n<li>Joined the firm 12/10/2020</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Legal Superpower label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" custom_padding=\"15px||15px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Your Legal Superpower</h2>[/et_pb_text][et_pb_text admin_label=\"Legal superpower content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Writing and Being Extremely Thorough</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Pets label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pets and Hobbies</h2>[/et_pb_text][et_pb_text admin_label=\"Pets content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Dogs &gt; Cats</li>\n<li>Hobbies: Movies, reading, and football (Go Bills!)</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Fraternities or Sororities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Fraternities or Sororities</h2>[/et_pb_text][fl_people_single element=\"fraternity_sororities\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Fraternities or Sororities\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Biography\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Biography</h2>[/et_pb_text][fl_people_single element=\"bio\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Biography\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" custom_padding=\"||15px||false|false\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Certified Legal Specialties\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Certified Legal Specialties</h2>[/et_pb_text][fl_people_single element=\"specialties\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Certified Legal Specialties\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Classes & Seminars\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Classes & Seminars</h2>[/et_pb_text][fl_people_single element=\"classes_seminars\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Classes & Seminars\" _builder_version=\"3.24\" text_orientation=\"left\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Clients\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Clients</h2>[/et_pb_text][fl_people_single element=\"representative_clients\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Clients\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"References\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>References</h2>[/et_pb_text][fl_people_single element=\"references\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - References\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|off|on\" admin_label=\"Past Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Past Positions</h2>[/et_pb_text][fl_people_single element=\"past_positions\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Past Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Languages\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Languages</h2>[/et_pb_text][fl_people_single element=\"languages\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Languages\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Ancillary Businesses\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Ancillary Businesses</h2>[/et_pb_text][fl_people_single element=\"ancillary_businesses\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Ancillary Businesses\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][/et_pb_column][/et_pb_row][/et_pb_section]','Shannon, Brendan T.','','publish','closed','closed','','shannon-brendan-t','','','2022-08-11 15:13:52','2022-08-11 19:13:52','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/attorney/shannon-brendan-t/',0,'people','',0),(48173,26,'2021-11-15 06:31:46','2021-11-15 11:31:46','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"LOMAD Tv Intro\" _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<h1>LOMADtv</h1>\n<h2>Check out LOMADtv – click on the picture below to join us live on the 4th Friday of each month at noon for our new series <strong><a href=\"https://v.ringcentral.com/conf/on/109954692\">“Lawyers and Friends”</a>!</strong></h2>[/et_pb_text][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/01/holiday-photo.png\" alt=\"holiday-photo\" title_text=\"holiday-photo\" url=\"https://v.ringcentral.com/conf/on/109954692\" url_new_window=\"on\" align=\"center\" admin_label=\"2021 Christmas Party\" _builder_version=\"4.18.0\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Link\" _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<h3>Having trouble clicking the link in the picture above? <a href=\"https://v.ringcentral.com/conf/on/109954692\"><strong>CLICK HERE</strong></a> instead.</h3>[/et_pb_text][et_pb_text admin_label=\"Testimonial 1\" _builder_version=\"4.18.0\" custom_margin=\"15px||15px||true|false\" custom_padding=\"20px|20px|20px|20px|true|true\" border_width_all=\"1px\" border_color_all=\"rgba(0,0,0,0.15)\" global_colors_info=\"{}\"]<h3><span style=\"text-decoration: underline;\">Studio Audience Reviews</span></h3>\n<h3>Insightful Webinar Series</h3>\n<p>The monthly webinar series on basic NY workers’ compensation compensability presented by the Law Offices of Melissa A. Day has been an educational, approachable and insightful look into the cornerstones of our profession.</p>\n<p>The material has given a straightforward introduction to those new to the industry while also providing a welcome refresher course to our seasoned adjusters.</p>\n<p>Most importantly, these webinars have opened up a dialogue in our office for continued discussion between our staff and have encouraged thoughtful questions, and a renewed passion for learning which has been truly invaluable to us.</p>\n<p>We at FCS greatly appreciate the time, research, dedication, and hard work that your attorneys have put into these presentations and we will continue to attend and enjoy them as they are presented.</p>\n<p>Thank you!<br />-Missy Krupka<br />Claims Manager, FCS Administrators, Inc.</p>[/et_pb_text][et_pb_text admin_label=\"Testimonial 2\" _builder_version=\"4.18.0\" custom_padding=\"20px|20px|20px|20px|true|true\" border_width_all=\"1px\" border_color_all=\"rgba(0,0,0,0.15)\" global_colors_info=\"{}\"]<h3>Really Good Informational Webinars</h3>\n<p>I sent this to our adjusters as I’ve attended a couple of their webinars…these are really good informational webinars. Email mday@getMAD.today to register for either or both series.</p>\n<p>The Breakfast Club are morning webinars that are held once a month on Friday.<br />The Basic Issues of Compensability series is a lunch time series happening monthly on a Monday.<br />They have different presenters and record the presentations as well and post them to this page for future viewing. If there is a specific webinar you want to view in the archives just email <a href=\"mailto:mday@getMAD.today\">mday@getMAD.today</a> for a password.<br />-Erin Greco<br />Service Improvement Specialist</p>[/et_pb_text][et_pb_text admin_label=\"Select a video below\" _builder_version=\"4.18.0\" custom_margin=\"48px|||||\" custom_padding=\"7px|||||\" global_colors_info=\"{}\"]<h3>Select a video below</h3>\n<p>If you missed one of our Monthly Webinar Series installments, don’t panic! You can still watch the re-run! Click on a link to one of the videos down below to see any video. The videos do require a password to view, however. You can request a password for any of the videos listed below by sending an e-mail to Melissa Day at <a href=\"mailto:mday@getMAD.today\">mday@getMAD.today</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Videos List\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"21px|||||\" global_colors_info=\"{}\"]<h3>Virtual Lawyers and Friends</h3>\n<ul class=\"fl-video-list\">\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentyoutu.be/L-Wk9fFB3iM\">July 2022, Comp 101: 101 Workers\' Compensation Rules</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentwww.youtube.com/watch?v=V0kejkSvfM0&amp;t\">June 2022, The Seven Deadly Sins and Workers\' Compensation</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/714575426\">May, 2022, Full Steam Ahead: All a-Board for On Board and the new MTGs</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/704646440\">April, 2022, Hunting for Easter Eggs, A LOMAD Holiday Special</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/693106474\">March 2022, It\'s a MAD, MAD, MAD, Mad World!</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/682840238\">February 2022, Don\'t Be Blindsided: Eye Disorders and the Guidelines</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/671957435\">January 2022, Year in Review: 2021 Case Law Update</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/659773009/ffaecbd94b\">December 2021, These are a Few of Our Favorite Things </a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/642833015\"> October 2021, Apocalypse Survival Tips: Cases that return from the beyond, with Melanie D. and Shannan M.</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/613808339\"> September 2021, Extra Considerations for the Special Considerations (Knee/Shoulder)</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/593425590\"> August 2021, We’re Going to Have to Run a Credit Check First- Protecting your Credit Score after 130 Weeks</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/578569851\"> July 2021, Permanent Total vs. Total Industrial – Does NOT Have to Cost an Arm and a Leg</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/567605105\"> June 2021, The Art of the Appointment to Closed and Non-Comp Claims</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/556319310\"> May 2021, EXTREME Hardship or Just the Mundane Kind?</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/541769199\"> April 2021, Workers’ Compensation and Work from Home</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/530285367\"> March 2021, Not Sure if You’re Liable? Learn if 21-a is Viable!</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/518176825\"> February 2021, Don\'t Play with MSAs!</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/504789212\"> January 2021, A Year in Review: 2020 Workers’ Compensation Case Law </a></li>\n</ul>\n<h3>Lawyers and Friends</h3>\n<ul class=\"fl-video-list\">\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/498451981\"> December 2020, Asthma Medical Treatment Guidelines</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/498448398\"> November 2020, Major Depressive Disorder</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/464255487\"> September 2020, New 2021 Medical Treatment Guidelines for Elbow Injuries </a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/453346873\"> August 2020, New 2021 Medical Treatment Guidelines for Hip and groin Injuries</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/444601396\"> July 2020, Every Breath You Take – New Medical Treatment Guidelines for Occupational Interstitial Lung Disease</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/437944348\"> July 2020, Hoffin’ It! Medical Treatment Guidelines for Ankle and Foot Injuries</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/377111450\"> November 2019, Third Party Action</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/370313135\"> October 2019, Permanency: A Perspective on New York’s Guidelines</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/363381167\"> September 2019, Loss Transfer</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/359563465\"> August 2019, Idiopathic Accidents</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/350803401\"> July 2019 Beyond Range of Motion</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/350799273\"> June 2019, The One with the Medical Records</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/338880584\"> May 2019, Son of a C-8 1B!</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/333760257\"> April 2019, Analyzing Proposed Changes to the NYS Pharmacy Formula</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/327348138\"> March 2019, Changes to the New Post Classification Standard and Extreme Hardship</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/319959621\"> February 2019, Independent Medical Examinations – The Ins and Outs from a Legal Perspective</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/314030160\"> January 2019, Fool “Proof” Claims – Using Evidence in NY Comp Claims</a></li>\n</ul>\n<h3>On the Bench</h3>\n<ul class=\"fl-video-list\">\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/308915043\"> December 2018, 2018 Year In Review: Case Law Update </a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/304160587\"> November 2018, These are a Few of our Favorite Things </a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/297971614\"> October 2018, PSST…Have You Heard the News? </a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/292696614\"> September 2018, Medication Litigation </a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/286903630\"> August 2018, Current Issues Regarding Labor Market Attachment in New York State Workers’ Compensation Law</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/282672404\"> July 2018, LOMAD News </a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/277149800\"> June 2018, Notice…The Difference: How to Win with a Section 18 Defense</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/272625799\"> May 2018, You Can’t Have Your Diaper Cake and Eat it Too</a></li>\n</ul>\n<h3>Advanced Issues in Workers’ Compensation</h3>\n<ul class=\"fl-video-list\">\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/241003762\"> October 2017, Fraud: Material Misrepresentations for the Purpose of Obtaining Compensation</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/240999793\"> September 2017, Indemnity Benefits</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/240889266\"> August 2017, Medical Benefits</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/240888065\"> July 2017, The “Average” Weekly Wage</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/223290459\"> June 2017, Advanced Labor Market Litigation</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/220481448\"> May 2017, Non-Acute Pain Medical Treatment Guidelines and Opioids</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/217209520\"> May 2017, Casual Relationship</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/220466726\"> April 2017, 2017 Workers’ Compensation Reforms…Now What? </a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/212925895\"> April 2017, Notice and Timely Claim Filing</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/208320036\"> March 2017, Essential Elements of an Occupational Disease</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/217894032\"> March 2017, Loss of Wage-Earning Capacity Including Survey of Board Panel Decisions</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/208848160\"> February 2017, Essential Elements of an Accident</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/205887099\"> February 2017, Serious Facial Disfigurement</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/202080503\"> January 2017, Case Law Update</a></li>\n</ul>\n<h3>Basic Issues in Workers’ Compensation</h3>\n<ul class=\"fl-video-list\">\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/196759298\"> December 2016, Third Party Actions: Happy Holidays and Lien Recoveries</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/191839307\"> November 2016, Settling Claims</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/188026298\"> October 2016, Fraud: Material Misrepresentations for the Purpose of Obtaining Compensation</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/182558581\"> September 2016, Indemnity Benefits</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/179095488\"> August 2016, Medical Benefits</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/199240781\"> July 2016, Average Weekly Wage</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/170522450\"> June 2016, Arising Out of and in the Course of Employment</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/182611635\"> May 2016, Casual Relationship</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/182578618\"> April 2016, Notice and Timely Claim Filing</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/157212463\"> February 2016, Basic Issues of Compensability</a></li>\n<li><a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/182574153\"> January 2016, Case Law Update</a></li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','LOMADtv - OLD','','draft','closed','closed','','lomadtv_old','','','2022-09-12 11:53:54','2022-09-12 15:53:54','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=48173',0,'page','',0),(48178,1251,'2021-11-15 06:37:15','2021-11-15 11:37:15','','Virtual-LF-Copy-1024x683','','inherit','closed','closed','','virtual-lf-copy-1024x683','','','2021-11-15 06:37:15','2021-11-15 11:37:15','',48173,'/wp-content/uploads/sites/1503150/2021/11/Virtual-LF-Copy-1024x683-1.jpg',0,'attachment','image/jpeg',0),(48180,1251,'2021-11-15 06:47:55','2021-11-15 11:47:55','','215921059','','inherit','closed','closed','','215921059','','','2021-11-15 06:47:55','2021-11-15 11:47:55','',48173,'/wp-content/uploads/sites/1503150/2021/11/215921059.jpg',0,'attachment','image/jpeg',0),(48181,1251,'2021-11-15 06:47:57','2021-11-15 11:47:57','','200051476','','inherit','closed','closed','','200051476','','','2021-11-15 06:47:57','2021-11-15 11:47:57','',48173,'/wp-content/uploads/sites/1503150/2021/11/200051476.jpg',0,'attachment','image/jpeg',0),(48182,1251,'2021-11-15 06:49:14','2021-11-15 11:49:14','','1042201467','','inherit','closed','closed','','1042201467','','','2021-11-15 06:49:14','2021-11-15 11:49:14','',48173,'/wp-content/uploads/sites/1503150/2021/11/1042201467.jpg',0,'attachment','image/jpeg',0),(48187,1251,'2021-11-15 07:02:23','2021-11-15 12:02:23','','1196623201','','inherit','closed','closed','','1196623201','','','2021-11-15 07:02:23','2021-11-15 12:02:23','',48173,'/wp-content/uploads/sites/1503150/2021/11/1196623201.png',0,'attachment','image/png',0),(48188,1251,'2021-11-15 07:03:05','2021-11-15 12:03:05','','1709938671','','inherit','closed','closed','','1709938671','','','2021-11-15 07:03:05','2021-11-15 12:03:05','',48173,'/wp-content/uploads/sites/1503150/2021/11/1709938671.png',0,'attachment','image/png',0),(48189,1251,'2021-11-15 07:03:38','2021-11-15 12:03:38','','3596348415','','inherit','closed','closed','','3596348415','','','2021-11-15 07:03:38','2021-11-15 12:03:38','',48173,'/wp-content/uploads/sites/1503150/2021/11/3596348415.png',0,'attachment','image/png',0),(48190,1251,'2021-11-15 07:04:51','2021-11-15 12:04:51','','3140641566','','inherit','closed','closed','','3140641566','','','2021-11-15 07:04:51','2021-11-15 12:04:51','',48173,'/wp-content/uploads/sites/1503150/2021/11/3140641566.png',0,'attachment','image/png',0),(48191,1251,'2021-11-15 07:05:27','2021-11-15 12:05:27','','1799585569','','inherit','closed','closed','','1799585569','','','2021-11-15 07:05:27','2021-11-15 12:05:27','',48173,'/wp-content/uploads/sites/1503150/2021/11/1799585569.png',0,'attachment','image/png',0),(48201,1251,'2021-11-15 09:17:05','2021-11-15 14:17:05','','95276588','','inherit','closed','closed','','95276588','','','2021-11-15 09:17:05','2021-11-15 14:17:05','',48173,'/wp-content/uploads/sites/1503150/2021/11/95276588.jpg',0,'attachment','image/jpeg',0),(48202,1251,'2021-11-15 09:20:12','2021-11-15 14:20:12','','3549288128','','inherit','closed','closed','','3549288128','','','2021-11-15 09:20:12','2021-11-15 14:20:12','',48173,'/wp-content/uploads/sites/1503150/2021/11/3549288128.png',0,'attachment','image/png',0),(48203,1251,'2021-11-15 09:22:00','2021-11-15 14:22:00','','2654753310','','inherit','closed','closed','','2654753310','','','2021-11-15 09:22:00','2021-11-15 14:22:00','',48173,'/wp-content/uploads/sites/1503150/2021/11/2654753310.png',0,'attachment','image/png',0),(48204,1251,'2021-11-15 09:22:38','2021-11-15 14:22:38','','919041395','','inherit','closed','closed','','919041395','','','2021-11-15 09:22:38','2021-11-15 14:22:38','',48173,'/wp-content/uploads/sites/1503150/2021/11/919041395.png',0,'attachment','image/png',0),(48205,1251,'2021-11-15 09:23:21','2021-11-15 14:23:21','','3299604788','','inherit','closed','closed','','3299604788','','','2021-11-15 09:23:21','2021-11-15 14:23:21','',48173,'/wp-content/uploads/sites/1503150/2021/11/3299604788.jpg',0,'attachment','image/jpeg',0),(48206,1251,'2021-11-15 09:24:22','2021-11-15 14:24:22','','3731920967','','inherit','closed','closed','','3731920967','','','2021-11-15 09:24:22','2021-11-15 14:24:22','',48173,'/wp-content/uploads/sites/1503150/2021/11/3731920967.png',0,'attachment','image/png',0),(48207,1251,'2021-11-15 09:25:08','2021-11-15 14:25:08','','3395494514','','inherit','closed','closed','','3395494514','','','2021-11-15 09:25:08','2021-11-15 14:25:08','',48173,'/wp-content/uploads/sites/1503150/2021/11/3395494514.png',0,'attachment','image/png',0),(48208,1251,'2021-11-15 09:26:06','2021-11-15 14:26:06','','3765780421','','inherit','closed','closed','','3765780421','','','2021-11-15 09:26:06','2021-11-15 14:26:06','',48173,'/wp-content/uploads/sites/1503150/2021/11/3765780421.png',0,'attachment','image/png',0),(48209,1251,'2021-11-15 09:27:14','2021-11-15 14:27:14','','3851629198','','inherit','closed','closed','','3851629198','','','2021-11-15 09:27:14','2021-11-15 14:27:14','',48173,'/wp-content/uploads/sites/1503150/2021/11/3851629198.jpg',0,'attachment','image/jpeg',0),(48210,1251,'2021-11-15 09:27:56','2021-11-15 14:27:56','','1250162963','','inherit','closed','closed','','1250162963','','','2021-11-15 09:27:56','2021-11-15 14:27:56','',48173,'/wp-content/uploads/sites/1503150/2021/11/1250162963.png',0,'attachment','image/png',0),(48211,1251,'2021-11-15 09:28:38','2021-11-15 14:28:38','','2527305273','','inherit','closed','closed','','2527305273','','','2021-11-15 09:28:38','2021-11-15 14:28:38','',48173,'/wp-content/uploads/sites/1503150/2021/11/2527305273.png',0,'attachment','image/png',0),(48212,1251,'2021-11-15 09:29:34','2021-11-15 14:29:34','','634697273','','inherit','closed','closed','','634697273','','','2021-11-15 09:29:34','2021-11-15 14:29:34','',48173,'/wp-content/uploads/sites/1503150/2021/11/634697273.png',0,'attachment','image/png',0),(48213,1251,'2021-11-15 09:30:18','2021-11-15 14:30:18','','4095797037','','inherit','closed','closed','','4095797037','','','2021-11-15 09:30:18','2021-11-15 14:30:18','',48173,'/wp-content/uploads/sites/1503150/2021/11/4095797037.png',0,'attachment','image/png',0),(48214,1251,'2021-11-15 09:31:23','2021-11-15 14:31:23','','3261310036','','inherit','closed','closed','','3261310036','','','2021-11-15 09:31:23','2021-11-15 14:31:23','',48173,'/wp-content/uploads/sites/1503150/2021/11/3261310036.png',0,'attachment','image/png',0),(48215,1251,'2021-11-15 09:32:43','2021-11-15 14:32:43','','405752026','','inherit','closed','closed','','405752026','','','2021-11-15 09:32:43','2021-11-15 14:32:43','',48173,'/wp-content/uploads/sites/1503150/2021/11/405752026.jpg',0,'attachment','image/jpeg',0),(48216,1251,'2021-11-15 09:33:25','2021-11-15 14:33:25','','240230510','','inherit','closed','closed','','240230510','','','2021-11-15 09:33:25','2021-11-15 14:33:25','',48173,'/wp-content/uploads/sites/1503150/2021/11/240230510.jpg',0,'attachment','image/jpeg',0),(48217,1251,'2021-11-15 09:34:04','2021-11-15 14:34:04','','971431146','','inherit','closed','closed','','971431146','','','2021-11-15 09:34:04','2021-11-15 14:34:04','',48173,'/wp-content/uploads/sites/1503150/2021/11/971431146.jpg',0,'attachment','image/jpeg',0),(48218,1251,'2021-11-15 09:34:49','2021-11-15 14:34:49','','2220697693','','inherit','closed','closed','','2220697693','','','2021-11-15 09:34:49','2021-11-15 14:34:49','',48173,'/wp-content/uploads/sites/1503150/2021/11/2220697693.jpg',0,'attachment','image/jpeg',0),(48219,1251,'2021-11-15 09:35:27','2021-11-15 14:35:27','','4061590130','','inherit','closed','closed','','4061590130','','','2021-11-15 09:35:27','2021-11-15 14:35:27','',48173,'/wp-content/uploads/sites/1503150/2021/11/4061590130.jpg',0,'attachment','image/jpeg',0),(48223,1251,'2021-11-15 09:40:53','2021-11-15 14:40:53','','2434380366','','inherit','closed','closed','','2434380366','','','2021-11-17 15:48:08','2021-11-17 20:48:08','',48173,'/wp-content/uploads/sites/1503150/2021/11/2434380366.jpg',0,'attachment','image/jpeg',0),(48224,1251,'2021-11-15 09:41:29','2021-11-15 14:41:29','','3894433199','','inherit','closed','closed','','3894433199','','','2021-11-17 15:47:21','2021-11-17 20:47:21','',48173,'/wp-content/uploads/sites/1503150/2021/11/3894433199.jpg',0,'attachment','image/jpeg',0),(48225,1251,'2021-11-15 09:42:02','2021-11-15 14:42:02','','1407033010','','inherit','closed','closed','','1407033010','','','2021-11-17 15:46:35','2021-11-17 20:46:35','',48173,'/wp-content/uploads/sites/1503150/2021/11/1407033010.jpg',0,'attachment','image/jpeg',0),(48226,1251,'2021-11-15 09:42:52','2021-11-15 14:42:52','','2092150080','','inherit','closed','closed','','2092150080','','','2021-11-17 15:44:58','2021-11-17 20:44:58','',48173,'/wp-content/uploads/sites/1503150/2021/11/2092150080.jpg',0,'attachment','image/jpeg',0),(48227,1251,'2021-11-15 09:43:32','2021-11-15 14:43:32','','1025514290','','inherit','closed','closed','','1025514290','','','2021-11-17 15:43:51','2021-11-17 20:43:51','',48173,'/wp-content/uploads/sites/1503150/2021/11/1025514290.jpg',0,'attachment','image/jpeg',0),(48228,1251,'2021-11-15 09:44:14','2021-11-15 14:44:14','','19691221','','inherit','closed','closed','','19691221','','','2021-11-17 15:41:08','2021-11-17 20:41:08','',48173,'/wp-content/uploads/sites/1503150/2021/11/19691221.jpg',0,'attachment','image/jpeg',0),(48229,1251,'2021-11-15 09:45:34','2021-11-15 14:45:34','','3356549231','','inherit','closed','closed','','3356549231','','','2021-11-17 15:38:55','2021-11-17 20:38:55','',48173,'/wp-content/uploads/sites/1503150/2021/11/3356549231.jpg',0,'attachment','image/jpeg',0),(48230,1251,'2021-11-15 09:46:08','2021-11-15 14:46:08','','1837654085','','inherit','closed','closed','','1837654085','','','2021-11-17 15:37:17','2021-11-17 20:37:17','',48173,'/wp-content/uploads/sites/1503150/2021/11/1837654085.jpg',0,'attachment','image/jpeg',0),(48234,1251,'2021-11-15 09:50:06','2021-11-15 14:50:06','','2161867666','','inherit','closed','closed','','2161867666','','','2021-11-17 15:36:10','2021-11-17 20:36:10','',48173,'/wp-content/uploads/sites/1503150/2021/11/2161867666.jpg',0,'attachment','image/jpeg',0),(48235,1251,'2021-11-15 09:50:32','2021-11-15 14:50:32','','1037121607','','inherit','closed','closed','','1037121607','','','2021-11-17 15:35:40','2021-11-17 20:35:40','',48173,'/wp-content/uploads/sites/1503150/2021/11/1037121607.jpg',0,'attachment','image/jpeg',0),(48236,1251,'2021-11-15 09:51:16','2021-11-15 14:51:16','','2010366152','','inherit','closed','closed','','2010366152','','','2021-11-17 15:35:21','2021-11-17 20:35:21','',48173,'/wp-content/uploads/sites/1503150/2021/11/2010366152.jpg',0,'attachment','image/jpeg',0),(48237,1251,'2021-11-15 09:52:05','2021-11-15 14:52:05','','3703037842','','inherit','closed','closed','','3703037842','','','2021-11-17 15:34:49','2021-11-17 20:34:49','',48173,'/wp-content/uploads/sites/1503150/2021/11/3703037842.jpg',0,'attachment','image/jpeg',0),(48238,1251,'2021-11-15 09:52:52','2021-11-15 14:52:52','','1351580429','','inherit','closed','closed','','1351580429','','','2021-11-17 15:32:20','2021-11-17 20:32:20','',48173,'/wp-content/uploads/sites/1503150/2021/11/1351580429.jpg',0,'attachment','image/jpeg',0),(48239,1251,'2021-11-15 09:54:48','2021-11-15 14:54:48','','2433087555','','inherit','closed','closed','','2433087555','','','2021-11-17 15:31:38','2021-11-17 20:31:38','',48173,'/wp-content/uploads/sites/1503150/2021/11/2433087555.jpg',0,'attachment','image/jpeg',0),(48240,1251,'2021-11-15 09:55:32','2021-11-15 14:55:32','','1469522131','','inherit','closed','closed','','1469522131','','','2021-11-17 15:30:42','2021-11-17 20:30:42','',48173,'/wp-content/uploads/sites/1503150/2021/11/1469522131.jpg',0,'attachment','image/jpeg',0),(48241,1251,'2021-11-15 09:56:20','2021-11-15 14:56:20','','2835185459','','inherit','closed','closed','','2835185459','','','2021-11-17 15:30:17','2021-11-17 20:30:17','',48173,'/wp-content/uploads/sites/1503150/2021/11/2835185459.jpg',0,'attachment','image/jpeg',0),(48242,1251,'2021-11-15 09:57:09','2021-11-15 14:57:09','','1448263289','','inherit','closed','closed','','1448263289','','','2021-11-17 15:29:33','2021-11-17 20:29:33','',48173,'/wp-content/uploads/sites/1503150/2021/11/1448263289.jpg',0,'attachment','image/jpeg',0),(48243,1251,'2021-11-15 09:57:55','2021-11-15 14:57:55','','473082777','','inherit','closed','closed','','473082777','','','2021-11-17 15:29:02','2021-11-17 20:29:02','',48173,'/wp-content/uploads/sites/1503150/2021/11/473082777.jpg',0,'attachment','image/jpeg',0),(48244,1251,'2021-11-15 09:58:37','2021-11-15 14:58:37','','2684734871','','inherit','closed','closed','','2684734871','','','2021-11-17 15:27:44','2021-11-17 20:27:44','',48173,'/wp-content/uploads/sites/1503150/2021/11/2684734871.jpg',0,'attachment','image/jpeg',0),(48245,1251,'2021-11-15 09:59:21','2021-11-15 14:59:21','','140405431','','inherit','closed','closed','','140405431','','','2021-11-17 15:26:55','2021-11-17 20:26:55','',48173,'/wp-content/uploads/sites/1503150/2021/11/140405431.jpg',0,'attachment','image/jpeg',0),(48246,1251,'2021-11-15 10:00:04','2021-11-15 15:00:04','','2624835932','','inherit','closed','closed','','2624835932','','','2021-11-17 15:26:18','2021-11-17 20:26:18','',48173,'/wp-content/uploads/sites/1503150/2021/11/2624835932.jpg',0,'attachment','image/jpeg',0),(48247,1251,'2021-11-15 10:00:47','2021-11-15 15:00:47','','2422755891','','inherit','closed','closed','','2422755891','','','2021-11-17 15:25:45','2021-11-17 20:25:45','',48173,'/wp-content/uploads/sites/1503150/2021/11/2422755891.jpg',0,'attachment','image/jpeg',0),(48251,1251,'2021-11-15 10:03:10','2021-11-15 15:03:10','','308086147','','inherit','closed','closed','','308086147','','','2021-11-17 15:25:26','2021-11-17 20:25:26','',48173,'/wp-content/uploads/sites/1503150/2021/11/308086147.jpg',0,'attachment','image/jpeg',0),(48252,1251,'2021-11-15 10:03:59','2021-11-15 15:03:59','','1342974363','','inherit','closed','closed','','1342974363','','','2021-11-17 15:25:07','2021-11-17 20:25:07','',48173,'/wp-content/uploads/sites/1503150/2021/11/1342974363.jpg',0,'attachment','image/jpeg',0),(48253,1251,'2021-11-15 10:04:42','2021-11-15 15:04:42','','3521851112','','inherit','closed','closed','','3521851112','','','2021-11-17 15:24:44','2021-11-17 20:24:44','',48173,'/wp-content/uploads/sites/1503150/2021/11/3521851112.jpg',0,'attachment','image/jpeg',0),(48254,1251,'2021-11-15 10:05:23','2021-11-15 15:05:23','','2646962494','','inherit','closed','closed','','2646962494','','','2021-11-17 15:23:48','2021-11-17 20:23:48','',48173,'/wp-content/uploads/sites/1503150/2021/11/2646962494.jpg',0,'attachment','image/jpeg',0),(48255,1251,'2021-11-15 10:06:07','2021-11-15 15:06:07','','1116742571','','inherit','closed','closed','','1116742571','','','2021-11-17 15:23:23','2021-11-17 20:23:23','',48173,'/wp-content/uploads/sites/1503150/2021/11/1116742571.jpg',0,'attachment','image/jpeg',0),(48256,1251,'2021-11-15 10:07:02','2021-11-15 15:07:02','','1379676566','','inherit','closed','closed','','1379676566','','','2021-11-17 15:23:00','2021-11-17 20:23:00','',48173,'/wp-content/uploads/sites/1503150/2021/11/1379676566.jpg',0,'attachment','image/jpeg',0),(48257,1251,'2021-11-15 10:07:54','2021-11-15 15:07:54','','1765430482','','inherit','closed','closed','','1765430482','','','2021-11-17 15:22:35','2021-11-17 20:22:35','',48173,'/wp-content/uploads/sites/1503150/2021/11/1765430482.jpg',0,'attachment','image/jpeg',0),(48258,1251,'2021-11-15 10:08:35','2021-11-15 15:08:35','','2686857844','','inherit','closed','closed','','2686857844','','','2021-11-17 15:21:37','2021-11-17 20:21:37','',48173,'/wp-content/uploads/sites/1503150/2021/11/2686857844.jpg',0,'attachment','image/jpeg',0),(48259,1251,'2021-11-15 10:09:15','2021-11-15 15:09:15','','59943168','','inherit','closed','closed','','59943168','','','2021-11-17 15:21:05','2021-11-17 20:21:05','',48173,'/wp-content/uploads/sites/1503150/2021/11/59943168.jpg',0,'attachment','image/jpeg',0),(48260,1251,'2021-11-15 10:10:13','2021-11-15 15:10:13','','3435574119','','inherit','closed','closed','','3435574119','','','2021-11-17 15:20:27','2021-11-17 20:20:27','',48173,'/wp-content/uploads/sites/1503150/2021/11/3435574119.jpg',0,'attachment','image/jpeg',0),(48261,1251,'2021-11-15 10:10:19','2021-11-15 15:10:19','','3435574119','','inherit','closed','closed','','3435574119-2','','','2021-11-17 15:20:11','2021-11-17 20:20:11','',48173,'/wp-content/uploads/sites/1503150/2021/11/3435574119-1.jpg',0,'attachment','image/jpeg',0),(48262,1251,'2021-11-15 10:11:09','2021-11-15 15:11:09','','296491289','','inherit','closed','closed','','296491289','','','2021-11-17 15:19:31','2021-11-17 20:19:31','',48173,'/wp-content/uploads/sites/1503150/2021/11/296491289.jpg',0,'attachment','image/jpeg',0),(48263,1251,'2021-11-15 10:11:46','2021-11-15 15:11:46','','3240569157','','inherit','closed','closed','','3240569157','','','2021-11-17 15:18:54','2021-11-17 20:18:54','',48173,'/wp-content/uploads/sites/1503150/2021/11/3240569157.jpg',0,'attachment','image/jpeg',0),(48280,1251,'2021-11-17 03:05:43','2021-11-17 08:05:43','','CUSTOM-1069294-Badge','','inherit','closed','closed','','custom-1069294-badge','','','2021-11-17 15:18:28','2021-11-17 20:18:28','',6,'/wp-content/uploads/sites/1503150/2021/11/CUSTOM-1069294-Badge.jpg',0,'attachment','image/jpeg',0),(48281,1251,'2021-11-17 03:05:45','2021-11-17 08:05:45','','PGI_01_ID175944739_df738a9498761b9c8568d1b34962d041-Badge','','inherit','closed','closed','','pgi_01_id175944739_df738a9498761b9c8568d1b34962d041-badge','','','2021-11-17 15:18:00','2021-11-17 20:18:00','',6,'/wp-content/uploads/sites/1503150/2021/11/PGI_01_ID175944739_df738a9498761b9c8568d1b34962d041-Badge.jpg',0,'attachment','image/jpeg',0),(48285,1731,'2021-11-17 11:09:25','2021-11-17 16:09:25','','Zombie','','inherit','closed','closed','','zombie','','','2021-11-17 15:17:18','2021-11-17 20:17:18','',48173,'/wp-content/uploads/sites/1503150/2021/11/Zombie.png',0,'attachment','image/png',0),(48287,1731,'2021-11-17 11:14:31','2021-11-17 16:14:31','','women-owned-2021','','inherit','closed','closed','','women-owned-2021','','','2021-11-17 15:52:47','2021-11-17 20:52:47','',6,'/wp-content/uploads/sites/1503150/2021/11/women-owned-2021.jpg',0,'attachment','image/jpeg',0),(48329,1731,'2021-11-22 13:26:25','2021-11-22 18:26:25','','Justice-WIlliams','','inherit','closed','closed','','justice-williams','','','2021-11-30 07:55:45','2021-11-30 12:55:45','',46191,'/wp-content/uploads/sites/1503150/2021/11/Justice-WIlliams.jpg',0,'attachment','image/jpeg',0),(48362,1731,'2021-11-29 09:57:17','2021-11-29 14:57:17','','AdobeStock_258696218-mobile','','inherit','closed','closed','','adobestock_258696218-mobile','','','2021-11-29 09:57:17','2021-11-29 14:57:17','',6,'/wp-content/uploads/sites/1503150/2021/11/AdobeStock_258696218-mobile.jpg',0,'attachment','image/jpeg',0),(48365,1731,'2021-11-29 10:05:21','2021-11-29 15:05:21','','AdobeStock_258696218-desktop','','inherit','closed','closed','','adobestock_258696218-desktop','','','2021-11-29 10:05:21','2021-11-29 15:05:21','',6,'/wp-content/uploads/sites/1503150/2021/11/AdobeStock_258696218-desktop.jpg',0,'attachment','image/jpeg',0),(48410,26,'2021-11-29 16:29:42','2021-11-29 21:29:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Legal Assistants & Paralegals\" _builder_version=\"4.18.0\" _module_preset=\"default\" header_font=\"|600||||on|||\" header_text_color=\"#211865\" width=\"75%\" module_alignment=\"center\" custom_margin=\"||15px||false|false\" custom_padding=\"15px||15px||false|false\" hover_enabled=\"0\" border_width_bottom=\"4px\" border_color_bottom=\"#211865\" border_style_bottom=\"double\" global_colors_info=\"{}\" width_last_edited=\"on|desktop\" sticky_enabled=\"0\" width_tablet=\"75%\" width_phone=\"75%\"]<h1 style=\"text-align: center;\">Legal Assistants &amp; Paralegals</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"TMD\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Thomas_Dickinson_pp.jpg\" alt=\"legal analyst Thomas M. Dickinson\" title_text=\"Thomas_Dickinson_pp\" url=\"/about/thomas-m-dickinson/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Thomas M. Dickinson</span></h2>\n<h2><span style=\"color: #003366;\">Office Manager</span></h2>\n<p>Prior to joining <span class=\"nap-item nap-item--name\">The Law Offices of Melissa A. Day, PLLC</span>, Tom worked for Special Funds Conservation Committee for 23 years. During his tenure at Special Funds, Tom defended the interests ... <a role=\"link\" href=\"/about/thomas-m-dickinson/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"ENC\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Elena_Camp_pp.jpg\" alt=\"Assistant Office Manager Elena N. Camp\" title_text=\"Elena_Camp_pp\" url=\"/about/elena-n-camp/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Elena N. Camp</span></h2>\n<h2><span style=\"color: #003366;\">Billing Manager</span></h2>\n<p>Elena is excited to a part of a lively group whose foremost goal is to foster strong partnerships with their clients, leading to a proactive rather than a reactive approach. <a role=\"link\" href=\"/about/elena-n-camp/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"RCB\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Rebecca_Brashear_pp.jpg\" alt=\"legal assistant Rebecca C. Brashear\" title_text=\"Rebecca_Brashear_pp\" url=\"/about/rebecca-c-brashear/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Rebecca C. Brashear</span></h2>\n<h2><span style=\"color: #003366;\">Claims Supervisor</span></h2>\n<p>Rebecca comes to us with a strong background in workers’ compensation as a legal assistant having advocated for the claimants. When the opportunity arose for her to see workers’ compensation ... <a role=\"link\" href=\"/about/rebecca-c-brashear/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"JMC\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Jillian_Chavers_pp.jpg\" alt=\"Hearing Coordinator Jillian M. Chavers\" title_text=\"Jillian_Chavers_pp\" url=\"/about/jillian-m-chavers/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Jillian M. Chavers</span></h2>\n<h2><span style=\"color: #003366;\">Hearing Coordinator</span></h2>\n<p>Jillian comes to us with extensive experience in the legal field. She holds an associate degree in paralegal studies from Bryan and Stratton College, where she graduated with highest honors. <a role=\"link\" href=\"/about/jillian-m-chavers/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"DHF\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Daniel_Flynn-1_pp.jpg\" alt=\"Deposition Coordinator Daniel H. Flynn\" title_text=\"Daniel_Flynn-1_pp\" url=\"/about/daniel-h-flynn/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Daniel H. Flynn</span></h2>\n<h2><span style=\"color: #003366;\">Billing Clerk</span></h2>\n<p>Daniel is originally from Syracuse, New York, and moved to Buffalo in 2013 to attend Buffalo State College. He graduated in 2017 with a bachelor’s degree in history. He is currently ... <a role=\"link\" href=\"/about/daniel-h-flynn/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"JLG\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Jody_Guiher_pp.jpg\" alt=\"legal assistant Jody L. Guiher\" title_text=\"Jody_Guiher_pp\" url=\"/about/jody-l-guiher/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Jody L. Guiher</span></h2>\n<h2><span style=\"color: #003366;\">Deposition Coordinator</span></h2>\n<p>Jody is a retired army combat veteran. Jody has served 13 years in the military with one combat tour in Baghdad, Iraq and one combat tour in Afghanistan. In the ... <a role=\"link\" href=\"/about/jody-l-guiher/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"JLM\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Jenny_Malkowski_pp.jpg\" alt=\"legal assistant Jenny L. Malkowski\" title_text=\"Jenny_Malkowski_pp\" url=\"/about/jenny-l-malkowski/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Jenny L. Malkowski</span></h2>\n<h2><span style=\"color: #003366;\">Medical Records Coordinator</span></h2>\nJenny graduated from Erie Community College with an associate degree in business administration. She has worked extensively in the legal field for more than 10 years in various areas of ... <a role=\"link\" href=\"/about/jenny-l-malkowski/\">Read more</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"JCW\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/Justice-WIlliams.jpg\" alt=\"photo of legal assistant Justice C. Williams\" title_text=\"Justice-WIlliams\" url=\"/about/justice-c-williams/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Justice C. Williams</span></h2>\n<h2><span style=\"color: #003366;\">Deposition Coordinator</span></h2>\n<p>Justice came to us fresh out of college with the associate’s degree as an applied science paralegal. She has always had a deep interest in law and is ... <a role=\"link\" href=\"/about/justice-c-williams/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"DFD\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/Atty_Danielle-Draschan.jpg\" alt=\"photo of Legal Assistant Danielle F. Draschan \" title_text=\"Atty_Danielle-Draschan\" url=\"/about/danielle-f-draschan/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Danielle F. Draschan</span></h2>\n<h2><span style=\"color: #003366;\">Legal Assistant</span></h2>\n<p>Danielle graduated from Daemen College with a Bachelor’s Degree in Paralegal Studies. During her time in college, she enjoyed being a member of the Paralegal club, where she and the ... <a role=\"link\" href=\"/about/danielle-f-draschan/\">Read More</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"JMS\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/Atty_Jessica-Stevens.jpg\" alt=\"photo of Legal Assistant Jessica M. Stevens\" title_text=\"Atty_Jessica-Stevens\" url=\"/about/jessica-m-stevens/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Jessica M. Stevens</span></h2>\n<h2><span style=\"color: #003366;\">Legal Assistant</span></h2>\n<p>Jessie Stevens is a Legal Assistant and the first person you see when you enter our office. In addition to reception, she provides support to our deposition and hearings teams. <a role=\"link\" href=\"/about/jessica-m-stevens/\">Read More</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"CNN\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/11/Atty_Corrine-Newman.jpg\" alt=\"photo of Legal Assistant Corrine N. Newman\" title_text=\"Atty_Corrine-Newman\" url=\"/about/corrine-n-newman/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Corrine N. Newman</span></h2>\n<h2><span style=\"color: #003366;\">Billing Clerk</span></h2>\n<p>Corrine is a born and raised Western New Yorker who just recently moved back home. She is part of a military family who has moved quite a bit over the last 15 years. She wanted to move back ... <a role=\"link\" href=\"/about/corrine-n-newman/\">Read More</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"KXK\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Atty_Kelesy-Kunze.jpg\" alt=\"photo of Executive Assistant Kelesy Kunze\" title_text=\"Atty_Kelesy-Kunze\" url=\"/about/kelsey-x-kunz/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Kelsey Kunz</span></h2>\n<h2><span style=\"color: #003366;\">Executive Assistant</span></h2>\n<p>Kelsey joins The Law Offices of Melissa A. Day as the Executive Assistant to the Managing Partners. This position provides full administrative and executive support by assisting ... <a role=\"link\" href=\"/about/kelsey-x-kunz/\">Read More</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"AMR\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Alexandra-Rizk-300x300-1.jpg\" alt=\"Photo of Alexandra-Rizk\" title_text=\"Alexandra-Rizk-300x300\" url=\"/about/alexandra-m-rizk/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Alexandra M. Rizk</span></h2>\n<h2><span style=\"color: #003366;\">Legal Assistant</span></h2>\n<p>Alexandra, or Ali for short, is originally from Texas and graduated with a bachelor’s degree in Art History from the University of Houston ... <a role=\"link\" href=\"/about/alexandra-m-rizk/\">Read More</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"MJD\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Maxwell-Doldan-300x300-1.jpg\" alt=\"Photo of Maxwell-Doldan\" title_text=\"Maxwell-Doldan-300x300\" url=\"/about/maxwell-j-doldan/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Maxwell J. Doldan</span></h2>\n<h2><span style=\"color: #003366;\">Legal Assistant</span></h2>\n<p>Maxwell has always had ambitions of pursuing a career in law and has dreams of becoming an attorney ... <a role=\"link\" href=\"/about/maxwell-j-doldan/\">Read More</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"KAJ\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Kierria_Jones-300x300-1.jpg\" alt=\"Kierria_Jones\" title_text=\"Kierria_Jones-300x300\" url=\"/about/kierria-a-jones/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Kierria A. Jones</span></h2>\n<h2><span style=\"color: #003366;\">Legal Assistant</span></h2>\n<p>Kierria Jones is a Legal Assistant who attended Bryant and Stratton College where she obtained her Associates Degree for Paralegal Studies and is still attending for her Bachelor’s in Business Management ... <a role=\"link\" href=\"/about/kierria-a-jones/\">Read More</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"SXO\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Sabina-Ogric-300x300_3.jpg\" alt=\"placeholder\" title_text=\"Sabina Ogric - 300x300_3\" url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjUwNDMzIn19@\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Sabina Photo\" _builder_version=\"4.18.0\" _dynamic_attributes=\"url\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Bio summary\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_2_font_size=\"29px\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"28px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><span style=\"color: #003366;\">Sabina Ogric</span></h2>\n<h2><span style=\"color: #003366;\">Legal Assistant</span></h2>\n<p>Sabina graduated from Niagara University with a Bachelor’s degree in Criminal Justice and Criminology with a minor in Sociology. Sabina was born and raised here in Buffalo ... <a role=\"link\" href=\"https://thelomad.com/getmad.today/home/about/sabina-ogric/\">Read More</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Legal Assistants and Paralegals','','publish','closed','closed','','legal-assistants-and-paralegals','','','2022-09-20 12:11:48','2022-09-20 16:11:48','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=48410',0,'page','',0),(48418,1731,'2022-09-15 10:10:42','2021-11-29 21:40:14',' ','','','publish','closed','closed','','48418','','','2022-09-15 10:10:42','2022-09-15 14:10:42','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=48418',3,'nav_menu_item','',0),(48423,1251,'2021-11-30 02:33:21','2021-11-30 07:33:21','','logo_e','','inherit','closed','closed','','logo_e','','','2021-11-30 07:54:36','2021-11-30 12:54:36','',0,'/wp-content/uploads/sites/1503150/2021/11/logo_e.png',0,'attachment','image/png',0),(48497,502,'2021-11-30 11:06:06','2021-11-30 16:06:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.3.2\" background_color=\"#ffffff\"][et_pb_row make_equal=\"on\" admin_label=\"Row1\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.3.2\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h1><span style=\"color: #000080;\">Workers\' Compensation Team</span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row1\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Melissa_Ann_Day_pp.jpg\" alt=\"photo of attorney Melissa A. Day\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h2>Melissa A. Day</h2>\n<h3>Managing Attorney</h3>\n<p>Owner and managing attorney of [nap_names id=\"FIRM-NAME-3\"], in Amherst, exclusively practices workers’ compensation defense. Melissa began her practice defending workers’ compensation insurance carriers. <a href=\"/attorney/day-melissa-a/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row2\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" alt=\"photo of attorney James B. Cousins\" url=\"/attorney/cousins-james-b/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/about/jenny-l-malkowski/\" hover_enabled=\"0\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h2>Jenny L. Malkowski</h2>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h3><span style=\"color: #003366;\">James B. Cousins</span></h3>\n<h3><span style=\"color: #003366;\">Partner</span></h3>\n<p>James has dedicated his entire career to the practice of workers’ compensation law, honing both his knowledge of the hyper-technical and fact-sensitive case law as well as his litigation skills. <a role=\"link\" href=\"/attorney/cousins-james-b\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row3\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Brian_Prince-1_pp.jpg\" alt=\"photo of attorney Brian K. Prince\" url=\"/attorney/prince-brian-k/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/about/jenny-l-malkowski/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h2>Jenny L. Malkowski</h2>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h3><span style=\"color: #003366;\">Brian K. Prince</span></h3>\n<h3><span style=\"color: #003366;\">Associate Attorney</span></h3>\n<p>Brian has spent the majority of his career practicing workers’ compensation law at the Special Funds Conservation Committee, where he completed over 5,500 hearings across western and central New York. <a role=\"link\" href=\"/attorney/prince-brian-k/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row5\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Shannon_Mackey_pp.jpg\" alt=\"photo of associate attorney Shannan M. Mackey\" url=\"/attorney/mackey-shannan-m-/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/about/jenny-l-malkowski/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h2>Jenny L. Malkowski</h2>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h3><span style=\"color: #003366;\">Shannan M. Mackey</span></h3>\n<h3><span style=\"color: #003366;\">Associate Attorney</span></h3>\n<p>Shannan has exclusively practiced workers’ compensation defense for the Special Funds Conservation Committee from 2013 through 2018.  At Special Funds, Shannan specialized in litigation regarding weaning from opioid narcotics. <a role=\"link\" href=\"/attorney/mackey-shannan-m-/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row7\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Paul_Kornacki_pp.jpg\" alt=\"photo of associate attorney Paul B. Kornacki\" url=\"/attorney/kornacki-paul-b-/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/about/jenny-l-malkowski/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h2>Jenny L. Malkowski</h2>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h3><span style=\"color: #003366;\">Paul Kornacki</span></h3>\n<h3><span style=\"color: #003366;\">Associate Attorney</span></h3>\n<p>Paul is an associate attorney practicing New York state workers’ compensation law exclusively. Prior to joining [nap_names id=\"FIRM-NAME-1\"], Paul successfully represented claimants for 17 years. <a role=\"link\" href=\"/attorney/kornacki-paul-b-/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row7\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/Cassie_Christman_pp.jpg\" alt=\"photo of associate attorney Cassandra E. Christman\" url=\"/attorney/christman-cassandra-e/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/about/jenny-l-malkowski/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h2>Jenny L. Malkowski</h2>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h3><span style=\"color: #003366;\">Cassandra E. Christman</span></h3>\n<h3><span style=\"color: #003366;\">Associate Attorney</span></h3>\n<p>Cassandra comes to  [nap_names id=\"FIRM-NAME-1\"] after working as a family and housing attorney for veterans. She is now a key contributor on the worker\'s compensation legal team. <a role=\"link\" href=\"/attorney/christman-cassandra-e/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row9\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Melanie_Daly-1_pp.jpg\" alt=\"photo of associate attorney Melanie A. Daly\" url=\"/attorney/daly-melanie-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/about/jenny-l-malkowski/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h2>Jenny L. Malkowski</h2>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h3><span style=\"color: #003366;\">Melanie A. Daly</span></h3>\n<h3><span style=\"color: #003366;\">Associate Attorney</span></h3>\n<p>Melanie is an associate attorney who was admitted to practice in the state of New York in 2017. Prior work experience includes investigations for National Security Clearances, Melanie worked as ... <a role=\"link\" href=\"/attorney/daly-melanie-a/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row10\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Neil_Deigelman-1_pp.jpg\" alt=\"photo of associate attorney Neil A. Diegelman\" url=\"/attorney/diegelman-neil-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/about/jenny-l-malkowski/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h2>Jenny L. Malkowski</h2>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h3><span style=\"color: #003366;\">Neil A. Diegelman</span></h3>\n<h3><span style=\"color: #003366;\">Associate Attorney</span></h3>\n<p>Neil began practicing workers’ compensation defense at the Special Funds Conservation Committee. Neil’s primary focus has continued, defending insurance carriers, third-party administrators and self-insured employers. Over five years of handling ... <a role=\"link\" href=\"/attorney/diegelman-neil-a/\">Read More</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row11\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Alexis_Hatten-1_pp.jpg\" alt=\"photo of associate attorney Alexis D. Hatten\" url=\"/attorney/hatten-alexis-d/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/about/jenny-l-malkowski/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h2>Jenny L. Malkowski</h2>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h3><span style=\"color: #003366;\">Alexis D. Hatten</span></h3>\n<h3><span style=\"color: #003366;\">Associate Attorney</span></h3>\n<p>Alexis is a 2012 graduate of Albany Law School and 2009 graduate from Loyola University Maryland. During law school, Alexis interned with the New York State Office of the State ... <a role=\"link\" href=\"/attorney/hatten-alexis-d/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row6\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Katrina_Gray_pp.jpg\" alt=\"photo of associate attorney Katrina Gray\" url=\"/attorney/gray-katrina/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/about/jenny-l-malkowski/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h2>Jenny L. Malkowski</h2>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h3><span style=\"color: #003366;\">Katrina Gray </span></h3>\n<h3><span style=\"color: #003366;\">Associate Attorney</span></h3>\n<p>Katrina Gray comes to [nap_names id=\"FIRM-NAME-1\"], after having representing injured workers in workers’ compensation claims. This experience allows her understanding and anticipation of strategy. <a role=\"link\" href=\"/attorney/gray-katrina/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Row8\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" disabled=\"on\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Vicki_L_Buehler-1_pp.jpg\" alt=\"associate attorney Vicki L. Buehler\" url=\"/attorney/buehler-vicki-l/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/about/jenny-l-malkowski/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h2>Jenny L. Malkowski</h2>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h3><span style=\"color: #003366;\">Vicki Buehler</span></h3>\n<h3><span style=\"color: #003366;\">Associate Attorney</span></h3>\n<p>Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law. Prior to joining [nap_names id=\"FIRM-NAME-1\"], she successfully represented claimants. <a role=\"link\" href=\"/attorney/buehler-vicki-l/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row12\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Brendan_Shannon_pp.jpg\" alt=\"photo of associate attorney Brendan T. Shannon\" url=\"/attorney/shannon-brendan-t/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/about/jenny-l-malkowski/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h2>Jenny L. Malkowski</h2>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h3><span style=\"color: #003366;\">Brendan T. Shannon</span></h3>\n<h3><span style=\"color: #003366;\">Associate Attorney</span></h3>\n<p>Brendan presently works as a law clerk, pending admission to the New York State Bar; after which, he will practice as an associate attorney. Notably, Brendan passed the New York ... <a role=\"link\" href=\"/attorney/shannon-brendan-t/\">Read More</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Row3\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/Andrew_Gould_pp.jpg\" alt=\"photo of associate attorney Andrew Gould\" url=\"/attorney/gould-andrew/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||on|||#211865|\" text_text_color=\"#211865\" text_font_size=\"23px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" custom_margin=\"||10px||false|false\" link_option_url=\"/about/jenny-l-malkowski/\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h2>Jenny L. Malkowski</h2>[/et_pb_text][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#ffffff\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h3><span style=\"color: #003366;\">Andrew Gould</span></h3>\n<h3><span style=\"color: #003366;\">Associate Attorney</span></h3>\n<p>Andrew has spent the majority of his career practicing workers’ compensation law at the Special Funds Conservation Committee, where he completed over 5,500 hearings across western and central New York. <a role=\"link\" href=\"/attorney/gould-andrew/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" disabled_on=\"off|off|off\" admin_label=\"Row4\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/KMM-250x250-1.jpg\" alt=\"photo of attorney Kristin M. Machelor\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h3>Kristen M. Machelor</h3>\n<h3>Of Counsel</h3>\n<p>Admitted to practice in New York 1999. Education: SUNY at Buffalo School of Law, J.D. 1998 SUNY at Buffalo, B.A. 1994 Kristin Machelor has been defending workers’ compensation claims since 2005. <a role=\"link\" href=\"/attorney/-machelor-kristin-m/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" disabled_on=\"off|off|off\" admin_label=\"Row4\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"30px||||false|false\" locked=\"off\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Mary_Fran_Schnorr-1_pp.jpg\" alt=\"photo of attorney Mary Frances Schnorr\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#ffffff\" header_3_text_color=\"#211865\" header_4_text_color=\"#ffffff\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\"]<h3>Mary Frances Schnorr</h3>\n<h3>Of Counsel</h3>\n<p>Mary Frances comes to [nap_names id=\"FIRM-NAME-1\"] with more than three decades of experience. Her experience and insights into workers\' compensation laws and procedures has been a great asset to our legal team. <a role=\"link\" href=\"/attorney/frances-mary/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','workers comp backup team 11-30-2021','','publish','closed','closed','','workers-comp-backup-team-11-30-2021','','','2021-11-30 11:06:06','2021-11-30 16:06:06','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_pb_layout/workers-comp-backup-team-11-30-2021/',0,'et_pb_layout','',0),(48502,2010,'2021-11-30 11:24:36','2021-11-30 16:24:36','','desktop-logo','','inherit','closed','closed','','desktop-logo','','','2021-12-06 11:35:12','2021-12-06 16:35:12','',0,'/wp-content/uploads/sites/1503150/2021/11/desktop-logo.png',0,'attachment','image/png',0),(48505,2010,'2021-11-30 11:34:52','2021-11-30 16:34:52','','bannerslide1','','inherit','closed','closed','','bannerslide1','','','2021-11-30 11:34:52','2021-11-30 16:34:52','',6,'/wp-content/uploads/sites/1503150/2021/11/bannerslide1.jpeg',0,'attachment','image/jpeg',0),(48507,2010,'2021-11-30 11:35:13','2021-11-30 16:35:13','','bannerslid2','','inherit','closed','closed','','bannerslid2','','','2021-11-30 11:35:13','2021-11-30 16:35:13','',6,'/wp-content/uploads/sites/1503150/2021/11/bannerslid2.jpeg',0,'attachment','image/jpeg',0),(48508,2010,'2021-11-30 11:35:30','2021-11-30 16:35:30','','bannerslide3','','inherit','closed','closed','','bannerslide3','','','2021-11-30 11:35:30','2021-11-30 16:35:30','',6,'/wp-content/uploads/sites/1503150/2021/11/bannerslide3.jpeg',0,'attachment','image/jpeg',0),(48512,2010,'2021-11-30 11:47:14','2021-11-30 16:47:14','','Mobile-banner','','inherit','closed','closed','','mobile-banner','','','2021-11-30 11:47:14','2021-11-30 16:47:14','',6,'/wp-content/uploads/sites/1503150/2021/11/Mobile-banner.jpg',0,'attachment','image/jpeg',0),(48516,1805,'2021-11-30 12:45:31','2021-11-30 17:45:31','','Mobile-banner','','inherit','closed','closed','','mobile-banner-2','','','2021-11-30 12:45:31','2021-11-30 17:45:31','',6,'/wp-content/uploads/sites/1503150/2021/11/Mobile-banner-1.jpg',0,'attachment','image/jpeg',0),(48525,1805,'2021-11-30 12:59:11','2021-11-30 17:59:11','','bannerslide1-2','','inherit','closed','closed','','bannerslide1-2','','','2021-11-30 12:59:11','2021-11-30 17:59:11','',6,'/wp-content/uploads/sites/1503150/2021/11/bannerslide1-2.jpg',0,'attachment','image/jpeg',0),(48527,1805,'2021-11-30 13:01:21','2021-11-30 18:01:21','','CUSTOM-975884-1','','inherit','closed','closed','','custom-975884-1-2','','','2021-11-30 13:01:21','2021-11-30 18:01:21','',6,'/wp-content/uploads/sites/1503150/2021/11/CUSTOM-975884-1.jpg',0,'attachment','image/jpeg',0),(48528,1805,'2021-11-30 13:01:23','2021-11-30 18:01:23','','MULTI-114764-1-ap3','','inherit','closed','closed','','multi-114764-1-ap3-3','','','2021-11-30 13:01:23','2021-11-30 18:01:23','',6,'/wp-content/uploads/sites/1503150/2021/11/MULTI-114764-1-ap3.jpg',0,'attachment','image/jpeg',0),(48529,1805,'2021-11-30 13:01:25','2021-11-30 18:01:25','','women-owned-2021','','inherit','closed','closed','','women-owned-2021-2','','','2021-11-30 13:01:25','2021-11-30 18:01:25','',6,'/wp-content/uploads/sites/1503150/2021/11/women-owned-2021-1.jpg',0,'attachment','image/jpeg',0),(48530,1805,'2021-11-30 13:01:27','2021-11-30 18:01:27','','CUSTOM-870784-cmyk','','inherit','closed','closed','','custom-870784-cmyk-2','','','2021-11-30 13:01:27','2021-11-30 18:01:27','',6,'/wp-content/uploads/sites/1503150/2021/11/CUSTOM-870784-cmyk.png',0,'attachment','image/png',0),(48531,1805,'2021-11-30 13:01:31','2021-11-30 18:01:31','','CUSTOM-1069294-Badge','','inherit','closed','closed','','custom-1069294-badge-2','','','2021-11-30 13:01:31','2021-11-30 18:01:31','',6,'/wp-content/uploads/sites/1503150/2021/11/CUSTOM-1069294-Badge-1.jpg',0,'attachment','image/jpeg',0),(48532,1805,'2021-11-30 13:01:33','2021-11-30 18:01:33','','women2020','','inherit','closed','closed','','women2020-2','','','2021-11-30 13:01:33','2021-11-30 18:01:33','',6,'/wp-content/uploads/sites/1503150/2021/11/women2020-1.jpg',0,'attachment','image/jpeg',0),(48533,1805,'2021-11-30 13:01:34','2021-11-30 18:01:34','','101814-cmyk-1','','inherit','closed','closed','','101814-cmyk-1-2','','','2021-11-30 13:01:34','2021-11-30 18:01:34','',6,'/wp-content/uploads/sites/1503150/2021/11/101814-cmyk-1.png',0,'attachment','image/png',0),(48534,1731,'2021-11-30 13:05:36','2021-11-30 18:05:36','','Episode29-LawyersandFriends','','inherit','closed','closed','','episode29-lawyersandfriends','','','2021-11-30 13:05:36','2021-11-30 18:05:36','',48173,'/wp-content/uploads/sites/1503150/2021/11/Episode29-LawyersandFriends.jpg',0,'attachment','image/jpeg',0),(48536,1731,'2021-11-30 13:06:29','2021-11-30 18:06:29','','Episode28-LawyersandFriends','','inherit','closed','closed','','episode28-lawyersandfriends','','','2021-11-30 13:06:29','2021-11-30 18:06:29','',48173,'/wp-content/uploads/sites/1503150/2021/11/Episode28-LawyersandFriends.jpg',0,'attachment','image/jpeg',0),(48538,1731,'2021-11-30 13:07:08','2021-11-30 18:07:08','','Episode27-LawyersandFriends','','inherit','closed','closed','','episode27-lawyersandfriends','','','2021-11-30 13:07:08','2021-11-30 18:07:08','',48173,'/wp-content/uploads/sites/1503150/2021/11/Episode27-LawyersandFriends.jpg',0,'attachment','image/jpeg',0),(48539,1731,'2021-11-30 13:08:21','2021-11-30 18:08:21','','Episode26-LawyersandFriends','','inherit','closed','closed','','episode26-lawyersandfriends','','','2021-11-30 13:08:21','2021-11-30 18:08:21','',48173,'/wp-content/uploads/sites/1503150/2021/11/Episode26-LawyersandFriends.jpg',0,'attachment','image/jpeg',0),(48540,1731,'2021-11-30 13:09:27','2021-11-30 18:09:27','','Episode25-LawyersandFriends','','inherit','closed','closed','','episode25-lawyersandfriends','','','2021-11-30 13:09:27','2021-11-30 18:09:27','',48173,'/wp-content/uploads/sites/1503150/2021/11/Episode25-LawyersandFriends.jpg',0,'attachment','image/jpeg',0),(48541,1731,'2021-11-30 13:10:54','2021-11-30 18:10:54','','Episode24-LawyersandFriends','','inherit','closed','closed','','episode24-lawyersandfriends','','','2021-11-30 13:10:54','2021-11-30 18:10:54','',48173,'/wp-content/uploads/sites/1503150/2021/11/Episode24-LawyersandFriends.jpg',0,'attachment','image/jpeg',0),(48542,1731,'2021-11-30 13:11:44','2021-11-30 18:11:44','','Episode23-LawyersandFriends','','inherit','closed','closed','','episode23-lawyersandfriends','','','2021-11-30 13:11:44','2021-11-30 18:11:44','',48173,'/wp-content/uploads/sites/1503150/2021/11/Episode23-LawyersandFriends.jpg',0,'attachment','image/jpeg',0),(48543,1731,'2021-11-30 13:12:29','2021-11-30 18:12:29','','Episode22-LawyersandFriend','','inherit','closed','closed','','episode22-lawyersandfriend','','','2021-11-30 13:12:29','2021-11-30 18:12:29','',48173,'/wp-content/uploads/sites/1503150/2021/11/Episode22-LawyersandFriend.jpg',0,'attachment','image/jpeg',0),(48547,1731,'2021-11-30 13:20:55','2021-11-30 18:20:55','','NewsletterVolume4','','inherit','closed','closed','','newslettervolume4','','','2021-11-30 13:20:55','2021-11-30 18:20:55','',46244,'/wp-content/uploads/sites/1503150/2021/11/NewsletterVolume4.jpg',0,'attachment','image/jpeg',0),(48551,1731,'2021-11-30 13:24:40','2021-11-30 18:24:40','','NewsletterVolume3','','inherit','closed','closed','','newslettervolume3','','','2021-11-30 13:24:40','2021-11-30 18:24:40','',46244,'/wp-content/uploads/sites/1503150/2021/11/NewsletterVolume3.jpg',0,'attachment','image/jpeg',0),(48552,1731,'2021-11-30 13:26:31','2021-11-30 18:26:31','','NewsletterVolume2','','inherit','closed','closed','','newslettervolume2','','','2021-11-30 13:26:31','2021-11-30 18:26:31','',46244,'/wp-content/uploads/sites/1503150/2021/11/NewsletterVolume2.jpg',0,'attachment','image/jpeg',0),(48606,19,'2022-05-04 10:51:49','2022-05-04 14:51:49','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-scaled.jpeg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.3.2\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.3.2\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.3.2\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/01/machelor-kristin-m.jpg\" _builder_version=\"4.14.2\" custom_margin=\"||20px||false|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Full Name\" module_class=\"fl-attorney-title\" _builder_version=\"4.14.2\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h1>Kristin M. Machelor</h1>[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.3.2\" text_text_color=\"#211865\" disabled=\"on\" global_colors_info=\"{}\"]<p>Nickname: Cassie</p>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.3.2\" text_font=\"|600|||||||\" text_text_color=\"#027acb\" text_font_size=\"24px\" header_font=\"||||||||\" header_2_text_color=\"#211865\" header_3_font=\"||||||||\" header_3_text_color=\"#000000\" custom_padding=\"5px||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Me:</h2>[/et_pb_text][fl_people_single element=\"phone\" admin_label=\"Person Detail Element - Phone Number\" module_class=\"fl-darklinks\" _builder_version=\"4.3.2\" module_text_color=\"#211865\" custom_margin=\"0px||10px\" custom_padding=\"0px||0px\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Email Button - Short Code\" module_class=\"fl-email-btn\" _builder_version=\"4.14.2\" link_font=\"||||||||\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||25px||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>[email_me_form form_id=\"3\" post_id=\"48606\"]</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.29.3\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Practice Areas\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"||20px\" custom_padding_tablet=\"0px||26px||false\" custom_padding_phone=\"0px||20px||false\" custom_padding_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h2>Practice Areas</h2>[/et_pb_text][fl_people_single element=\"practice_areas\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Practice Areas\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Current Employment Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Current Employment Position</h2>[/et_pb_text][fl_people_single element=\"current_positions\" admin_label=\"Person Detail Element - Current Employment Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Bar Admissions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Bar Admissions</h2>[/et_pb_text][fl_people_single element=\"bar_admissions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Bar Admissions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Education\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Education</h2>[/et_pb_text][fl_people_single element=\"education\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Education\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][fl_people_single element=\"bio\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Biography\" _builder_version=\"4.3.2\" text_orientation=\"left\" custom_padding=\"||15px||false|false\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Biography\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Biography</h2>[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Published Works\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Published Works</h2>[/et_pb_text][fl_people_single element=\"published_works\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Published Works\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Representative Cases\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Cases</h2>[/et_pb_text][fl_people_single element=\"representative_cases\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Representative Cases\" _builder_version=\"3.24\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Fraternities or Sororities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Fraternities or Sororities</h2>[/et_pb_text][fl_people_single element=\"fraternity_sororities\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Fraternities or Sororities\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Professional Associations\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Associations</h2>[/et_pb_text][fl_people_single element=\"professional_assoc\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Professional Associations\" _builder_version=\"3.24\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Certified Legal Specialties\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Certified Legal Specialties</h2>[/et_pb_text][fl_people_single element=\"specialties\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Certified Legal Specialties\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Honors\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Honors</h2>[/et_pb_text][fl_people_single element=\"honors\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Honors\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Classes & Seminars\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Classes & Seminars</h2>[/et_pb_text][fl_people_single element=\"classes_seminars\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Classes & Seminars\" _builder_version=\"3.24\" text_orientation=\"left\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Clients\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Clients</h2>[/et_pb_text][fl_people_single element=\"representative_clients\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Clients\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"References\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>References</h2>[/et_pb_text][fl_people_single element=\"references\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - References\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Past Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Past Positions</h2>[/et_pb_text][fl_people_single element=\"past_positions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Past Positions\" _builder_version=\"3.24\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Languages\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Languages</h2>[/et_pb_text][fl_people_single element=\"languages\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Languages\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Ancillary Businesses\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Ancillary Businesses</h2>[/et_pb_text][fl_people_single element=\"ancillary_businesses\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Ancillary Businesses\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][/et_pb_column][/et_pb_row][/et_pb_section]','Machelor, Kristin M.','','publish','closed','closed','','machelor-kristin-m','','','2022-05-04 10:51:49','2022-05-04 14:51:49','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/attorney/machelor-kristin-m/',0,'people','',0),(48685,26,'2022-01-04 04:02:41','2022-01-04 09:02:41','<h1>Alexandra M. Rizk</h1>\r\n<img class=\"alignnone size-full wp-image-51313\" src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Alexandra-Rizk-300x300-1.jpg\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Legal Assistant</strong>\r\n<h2>Contact Me:</h2>\r\n<a href=\"tel:+1-716-407-0304\">(716) 407-0304</a>\r\n\r\n<a class=\"btn-email-staff\" href=\"mailto:arizk@madwcdefense.com\">Email Me</a>\r\n\r\n<span style=\"color: #211865;\">Alexandra, or Ali for short, is originally from Texas and graduated with a bachelor’s degree in Art History from the University of Houston. Houston is also where she taught and wrote art curriculum for one of the largest school districts in Texas! She Moved to Buffalo in the Spring of 2020 and loves everything about this city: The food, the sports, and yes, the weather!</span>\r\n\r\n<span style=\"color: #211865;\">Outside of work, Ali enjoys painting with oils and spending time with her girlfriend and their two dogs.</span>','Alexandra M. Rizk','','publish','closed','closed','','alexandra-m-rizk','','','2022-09-23 08:44:33','2022-09-23 12:44:33','',48410,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=48685',0,'page','',0),(48689,26,'2022-01-04 04:21:30','2022-01-04 09:21:30','<h1>Kierria A. Jones</h1>\r\n<img class=\"alignnone size-full wp-image-51314\" src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Kierria_Jones-300x300-1.jpg\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Legal Assistant</strong>\r\n<h2>Contact Me:</h2>\r\n<a role=\"link\" href=\"tel:+1-716-250-9503\" data-wpel-link=\"internal\">(716) 250-9503</a>\r\n\r\n<a class=\"btn-email-staff\" role=\"link\" href=\"mailto:kjones@madwcdefense.com\">Email Me</a>\r\n\r\n<span style=\"color: #211865;\">Kierria Jones is a Legal Assistant who attended Bryant and Stratton College where she obtained her Associates Degree for Paralegal Studies and is still attending for her Bachelor’s in Business Management. She is eager to learn and expand her knowledge in Workers Compensation.</span>\r\n\r\n<span style=\"color: #211865;\">When she isn’t in the office, she enjoys long car rides, music, cuddling with her dogs and retail therapy.</span>','Kierria A. Jones','','publish','closed','closed','','kierria-a-jones','','','2022-09-23 08:50:25','2022-09-23 12:50:25','',48410,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=48689',0,'page','',0),(48691,26,'2022-01-04 04:26:30','2022-01-04 09:26:30','<h1>Maxwell J. Doldan</h1>\r\n<img class=\"alignnone size-full wp-image-51315\" src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Maxwell-Doldan-300x300-1.jpg\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Legal Assistant</strong>\r\n<h2>Contact Me:</h2>\r\n<a role=\"link\" href=\"tel:+1-716-755-4353\" data-wpel-link=\"internal\">(716) 755-4353</a>\r\n\r\n<a class=\"btn-email-staff\" role=\"link\" href=\"mailto:mdoldan@madwcdefense.com\">Email Me</a>\r\n\r\n<span style=\"color: #211865;\">Maxwell joined the team as a legal assistant. He has since become more involved in the firm\'s marketing initiatives and continues to grow in that capacity. He has prior experience in workers’ compensation law, assisting with claims on the claimant side.</span>\r\n\r\n<span style=\"color: #211865;\">Maxwell and his partner Kristen welcomed twins to their family in April of 2022, a son and a daughter. They spend much of their time doting upon their newborn children and making memories with them. </span>\r\n\r\n<span style=\"color: #211865;\">He is a dedicated member of the worship team at his home church, Nickel City church. He loves music and writes and records music often, occasionally performing live in the Buffalo area. Board games are also a favorite pastime, as well as binge-watching shows with the family. Above all-else, he loves to connect with people and learn about the stories of others’ lives. He hopes to encourage others throughout his journeys and learn from those he gets to meet.</span>','Maxwell J. Doldan','','publish','closed','closed','','maxwell-j-doldan','','','2022-09-23 08:49:32','2022-09-23 12:49:32','',48410,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=48691',0,'page','',0),(48716,19,'2022-05-04 10:51:15','2022-05-04 14:51:15','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-scaled.jpeg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.3.2\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.3.2\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.3.2\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Brian_Prince-1_pp.jpg\" disabled_on=\"on|on|on\" _builder_version=\"4.3.2\" custom_margin=\"||20px||false|false\" disabled=\"on\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/02/Suki-Harada.jpg\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Full Name\" module_class=\"fl-attorney-title\" _builder_version=\"4.14.2\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h1>Satoko (Suki) Harada</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.3.2\" text_font=\"|600|||||||\" text_text_color=\"#027acb\" text_font_size=\"24px\" header_font=\"||||||||\" header_2_text_color=\"#211865\" header_3_font=\"||||||||\" header_3_text_color=\"#000000\" custom_padding=\"5px||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Me:</h2>[/et_pb_text][fl_people_single element=\"phone\" admin_label=\"Person Detail Element - Phone Number\" module_class=\"fl-darklinks\" _builder_version=\"4.3.2\" module_font=\"||||on|||#211865|\" module_text_color=\"#211865\" custom_margin=\"0px||10px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Email Button - Short Code\" module_class=\"fl-email-btn\" _builder_version=\"4.3.2\" link_font=\"||||||||\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||25px||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>[email_me_form form_id=\"3\" post_id=\"46091\"]</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.29.3\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Practice Areas\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"||20px\" custom_padding_tablet=\"0px||26px||false\" custom_padding_phone=\"0px||20px||false\" custom_padding_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h2>Practice Areas</h2>[/et_pb_text][fl_people_single element=\"practice_areas\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Practice Areas\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Current Employment Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Current Employment Position</h2>[/et_pb_text][fl_people_single element=\"current_positions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Current Employment\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Bar Admissions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Bar Admissions</h2>[/et_pb_text][fl_people_single element=\"bar_admissions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Bar Admissions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Professional Associations\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Associations</h2>[/et_pb_text][fl_people_single element=\"professional_assoc\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Professional Associations\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Education\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Education</h2>[/et_pb_text][fl_people_single element=\"education\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Education\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Honors\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Honors</h2>[/et_pb_text][fl_people_single element=\"honors\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Honors\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Published Works\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Published Works</h2>[/et_pb_text][fl_people_single element=\"published_works\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Published Works\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2>Tenure at firm</h2>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Content\" _builder_version=\"4.14.8\" text_text_color=\"#000000\" custom_padding=\"|||15px|false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<ul>\n<li>Joined the firm 12/31/2021</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Biography\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Biography</h2>[/et_pb_text][fl_people_single element=\"bio\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Biography\" _builder_version=\"4.3.2\" text_orientation=\"left\" custom_padding=\"||15px||false|false\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Cases\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Cases</h2>[/et_pb_text][fl_people_single element=\"representative_cases\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Cases\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Fraternities or Sororities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Fraternities or Sororities</h2>[/et_pb_text][fl_people_single element=\"fraternity_sororities\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Fraternities or Sororities\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Certified Legal Specialties\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Certified Legal Specialties</h2>[/et_pb_text][fl_people_single element=\"specialties\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Certified Legal Specialties\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Classes & Seminars\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Classes & Seminars</h2>[/et_pb_text][fl_people_single element=\"classes_seminars\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Classes & Seminars\" _builder_version=\"3.24\" text_orientation=\"left\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Clients\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Clients</h2>[/et_pb_text][fl_people_single element=\"representative_clients\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Clients\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"References\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>References</h2>[/et_pb_text][fl_people_single element=\"references\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - References\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Past Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Past Positions</h2>[/et_pb_text][fl_people_single element=\"past_positions\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Past Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Languages\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Languages</h2>[/et_pb_text][fl_people_single element=\"languages\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Languages\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Ancillary Businesses\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Ancillary Businesses</h2>[/et_pb_text][fl_people_single element=\"ancillary_businesses\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Ancillary Businesses\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][/et_pb_column][/et_pb_row][/et_pb_section]','Harada, Satoko (Suki)','','publish','closed','closed','','harada-satoko-suki','','','2022-08-11 15:21:39','2022-08-11 19:21:39','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/attorney/harada-satoko-suki-x/',0,'people','',0),(48717,19,'2022-05-04 10:51:26','2022-05-04 14:51:26','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-scaled.jpeg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.3.2\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.3.2\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.3.2\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Brian_Prince-1_pp.jpg\" disabled_on=\"on|on|on\" _builder_version=\"4.3.2\" custom_margin=\"||20px||false|false\" disabled=\"on\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/02/Bing-huang.jpg\" disabled_on=\"off|off|off\" _builder_version=\"4.14.2\" custom_margin=\"||20px||false|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Full Name\" module_class=\"fl-attorney-title\" _builder_version=\"4.14.2\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h1>Bingchen Huang</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.3.2\" text_font=\"|600|||||||\" text_text_color=\"#027acb\" text_font_size=\"24px\" header_font=\"||||||||\" header_2_text_color=\"#211865\" header_3_font=\"||||||||\" header_3_text_color=\"#000000\" custom_padding=\"5px||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Me:</h2>[/et_pb_text][fl_people_single element=\"phone\" admin_label=\"Person Detail Element - Phone Number\" module_class=\"fl-darklinks\" _builder_version=\"4.3.2\" module_font=\"||||on|||#211865|\" module_text_color=\"#211865\" custom_margin=\"0px||10px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Email Button - Short Code\" module_class=\"fl-email-btn\" _builder_version=\"4.3.2\" link_font=\"||||||||\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||25px||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>[email_me_form form_id=\"3\" post_id=\"46091\"]</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.29.3\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Practice Areas\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"||20px\" custom_padding_tablet=\"0px||26px||false\" custom_padding_phone=\"0px||20px||false\" custom_padding_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h2>Practice Areas</h2>[/et_pb_text][fl_people_single element=\"practice_areas\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Practice Areas\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Current Employment Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Current Employment Position</h2>[/et_pb_text][fl_people_single element=\"current_positions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Current Employment\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Bar Admissions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Bar Admissions</h2>[/et_pb_text][fl_people_single element=\"bar_admissions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Bar Admissions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Professional Associations\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Associations</h2>[/et_pb_text][fl_people_single element=\"professional_assoc\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Professional Associations\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Education\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Education</h2>[/et_pb_text][fl_people_single element=\"education\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Education\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Pro-Bono Activities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pro-Bono Activities</h2>[/et_pb_text][fl_people_single element=\"pro_bonos\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Pro-Bono Activities\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Honors\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Honors</h2>[/et_pb_text][fl_people_single element=\"honors\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Honors\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Tenure at firm</h2>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Content\" _builder_version=\"4.14.8\" text_text_color=\"#000000\" custom_padding=\"|||15px|false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<ul>\n<li>Joined the firm 12/31/2021</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Biography\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Biography</h2>[/et_pb_text][fl_people_single element=\"bio\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Biography\" _builder_version=\"4.3.2\" text_orientation=\"left\" custom_padding=\"||15px||false|false\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Cases\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Cases</h2>[/et_pb_text][fl_people_single element=\"representative_cases\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Cases\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Fraternities or Sororities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Fraternities or Sororities</h2>[/et_pb_text][fl_people_single element=\"fraternity_sororities\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Fraternities or Sororities\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Certified Legal Specialties\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Certified Legal Specialties</h2>[/et_pb_text][fl_people_single element=\"specialties\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Certified Legal Specialties\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Classes & Seminars\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Classes & Seminars</h2>[/et_pb_text][fl_people_single element=\"classes_seminars\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Classes & Seminars\" _builder_version=\"3.24\" text_orientation=\"left\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Clients\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Clients</h2>[/et_pb_text][fl_people_single element=\"representative_clients\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Clients\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"References\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>References</h2>[/et_pb_text][fl_people_single element=\"references\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - References\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Past Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Past Positions</h2>[/et_pb_text][fl_people_single element=\"past_positions\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Past Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Languages\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Languages</h2>[/et_pb_text][fl_people_single element=\"languages\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Languages\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Ancillary Businesses\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Ancillary Businesses</h2>[/et_pb_text][fl_people_single element=\"ancillary_businesses\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Ancillary Businesses\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][/et_pb_column][/et_pb_row][/et_pb_section]','Huang, Bingchen','','publish','closed','closed','','huang-bingchen','','','2022-08-11 15:23:25','2022-08-11 19:23:25','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/attorney/huang-bingchen-x/',0,'people','',0),(48823,26,'2022-01-12 20:58:24','2022-01-13 01:58:24','<h1>Kelsey Kunz</h1>\r\n<img class=\"alignnone size-medium wp-image-48007\" src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Atty_Kelesy-Kunze-300x300.jpg\" alt=\"photo of Executive Assistant Kelesy Kunze\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Executive Assistant</strong>\r\n<h2>Contact Me:</h2>\r\n<a role=\"link\" href=\"tel:+1-716-755-2445\" data-wpel-link=\"internal\">(716) 755-2445</a>\r\n\r\n<a class=\"btn-email-staff\" role=\"link\" href=\"mailto:kkunz@madwcdefense.com\">Email Me</a>\r\n\r\n<span style=\"color: #211865;\">Kelsey joins The Law Offices of Melissa A. Day as the Executive Assistant to the Managing Partners. This position provides full administrative and executive support by assisting in day-to-day operations.</span>\r\n\r\n<span style=\"color: #211865;\">Prior to joining the Law Offices of Melissa A. Day, Kelsey was the Office Manager for a family law and criminal defense focused firm in North Dakota. She also previously worked for an interior design studio where she supervised new build and remodel projects while managing the retail store front. The 5 years of experience in management has given her valuable experience in business operations. She attended the University of Mary in Bismarck, ND where she earned her Bachelor of Arts Degree in Business Administration and played for the Women’s Soccer Team.</span>\r\n\r\n<span style=\"color: #211865;\">Kelsey grew up in Mandan, ND and presently lives in Buffalo, NY with her wife, 2 dogs and a cat. She loves the outdoors and travels as much as she can. In her free time, she likes to play soccer, ride her bike and go on adventures with her dogs as much as she can.</span>','Kelsey Kunz','','publish','closed','closed','','kelsey-x-kunz','','','2022-09-23 08:43:35','2022-09-23 12:43:35','',48410,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=48823',0,'page','',0),(48859,10,'2022-08-16 11:40:41','2022-01-26 16:39:48','','New York Workers’ Compensation Forum','','publish','closed','closed','','new-york-workers-compensation-forum','','','2022-08-16 11:40:41','2022-08-16 15:40:41','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=48859',12,'nav_menu_item','',0),(48861,10,'2022-09-15 10:10:42','2022-01-26 16:47:37','','New York Workers’ Compensation Forum','','publish','closed','closed','','new-york-workers-compensation-forum-2','','','2022-09-15 10:10:42','2022-09-15 14:10:42','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=48861',10,'nav_menu_item','',0),(48934,25,'2022-02-11 15:30:22','2022-02-11 20:30:22','Successfully arguing the influential case of Burns v. Varriale, 9 N.Y. 3d 207 (2007), has been the highlight of Melissa Day\'s career as an attorney. You can now watch a video of the oral argument from this case - <a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/676362013\"><strong>click here</strong></a> to watch the video.\r\n\r\nThe video does require a password to view. You can request a password by sending an e-mail to Melissa Day at <a role=\"link\" href=\"mailto:mday@getMAD.today\">mday@getMAD.today</a>','Oral Argument Video, Burns v. Varriale','','publish','closed','closed','','oral-argument-video-burns-v-varriale','','','2022-08-31 09:17:02','2022-08-31 13:17:02','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=48934',0,'post','',0),(48964,0,'2022-03-02 09:05:28','2022-03-02 14:05:28','','NicolinaOstwald','','inherit','closed','closed','','nicolinaostwald','','','2022-03-02 10:29:02','2022-03-02 15:29:02','',45925,'/wp-content/uploads/sites/1503150/2022/03/NicolinaOstwald.jpg',0,'attachment','image/jpeg',0),(49019,19,'2022-05-04 10:51:42','2022-05-04 14:51:42','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-scaled.jpeg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\" collapsed=\"on\" theme_builder_area=\"post_content\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.3.2\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\" background_enable_color=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" global_colors_info=\"{}\" collapsed=\"off\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_3,2_3\" make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.3.2\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.3.2\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2022/05/Maria-Lua_pp.jpg\" _builder_version=\"4.14.8\" custom_margin=\"||20px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" alt=\"Maria-Lua\" title_text=\"Maria-Lua_pp\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text admin_label=\"Full Name\" module_class=\"fl-attorney-title\" _builder_version=\"4.14.8\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" hover_enabled=\"0\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h1>Maria Lua </h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.3.2\" text_font=\"|600|||||||\" text_text_color=\"#027acb\" text_font_size=\"24px\" header_font=\"||||||||\" header_2_text_color=\"#211865\" header_3_font=\"||||||||\" header_3_text_color=\"#000000\" custom_padding=\"5px||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Contact Me:</h2>[/et_pb_text][fl_people_single element=\"phone\" admin_label=\"Person Detail Element - Phone Number\" module_class=\"fl-darklinks\" _builder_version=\"4.3.2\" module_text_color=\"#211865\" custom_margin=\"0px||10px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/fl_people_single][et_pb_text admin_label=\"Email Button - Short Code\" module_class=\"fl-email-btn\" _builder_version=\"4.14.8\" link_font=\"||||||||\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||25px||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>[email_me_form form_id=\"3\" post_id=\"49019\"]</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.29.3\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Practice Areas\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"||20px\" custom_padding_tablet=\"0px||26px||false\" custom_padding_phone=\"0px||20px||false\" custom_padding_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Practice Areas</h2>[/et_pb_text][fl_people_single element=\"practice_areas\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Practice Areas\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/fl_people_single][et_pb_text admin_label=\"Current Employment Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Current Employment Position</h2>[/et_pb_text][fl_people_single element=\"current_positions\" admin_label=\"Person Detail Element - Current Employment Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Bar Admissions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Bar Admissions</h2>[/et_pb_text][fl_people_single element=\"bar_admissions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Bar Admissions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Professional Associations\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Professional Associations and Memberships</h2>[/et_pb_text][fl_people_single element=\"professional_assoc\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element -Professional Associations\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Education\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Education</h2>[/et_pb_text][fl_people_single element=\"education\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Education\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/fl_people_single][et_pb_text disabled_on=\"on|on|off\" admin_label=\"Pro-Bono Activities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Pro-Bono Activities</h2>[/et_pb_text][fl_people_single element=\"pro_bonos\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Pro-Bono Activities\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Honors\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" disabled=\"on\"]<h2>Honors</h2>[/et_pb_text][fl_people_single element=\"honors\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Honors\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" disabled=\"on\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Published Works\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Published Works</h2>[/et_pb_text][fl_people_single element=\"published_works\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Published Works\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Tenure at firm</h2>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Content\" _builder_version=\"4.14.8\" text_text_color=\"#000000\" custom_padding=\"|||15px|false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<ul>\n<li>February 2022</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Legal Superpower label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" custom_padding=\"15px||15px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Your Legal Superpower</h2>[/et_pb_text][et_pb_text admin_label=\"Legal superpower content\" _builder_version=\"4.14.8\" text_text_color=\"#000000\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>My legal superpower is I eat writing assignments for breakfast.</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Pets label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Pets and Hobbies</h2>[/et_pb_text][et_pb_text admin_label=\"Pets content\" _builder_version=\"4.14.8\" text_text_color=\"#000000\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Pets :\n<ul>\n<li>Waffle the Kuya Baby aka “Best Boy” - American Staffordshire</li>\n<li>Kyuubi the Destroyer aka “Handsome Boy” - Rottweiler-Labrador</li>\n</ul>\n</li>\n</ul>\n<ul>\n<li>Hobbies:\n<ul>\n<li>Hiking</li>\n<li>Being in the mountains</li>\n<li>Playing the ukulele</li>\n<li>Contemplating the meaning of life</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Fraternities or Sororities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Fraternities or Sororities</h2>[/et_pb_text][fl_people_single element=\"fraternity_sororities\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Fraternities or Sororities\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Biography\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Biography</h2>[/et_pb_text][fl_people_single element=\"bio\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Biography\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" custom_padding=\"||15px||false|false\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Certified Legal Specialties\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Certified Legal Specialties</h2>[/et_pb_text][fl_people_single element=\"specialties\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Certified Legal Specialties\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Classes & Seminars\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Classes & Seminars</h2>[/et_pb_text][fl_people_single element=\"classes_seminars\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Classes & Seminars\" _builder_version=\"3.24\" text_orientation=\"left\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Clients\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Representative Clients</h2>[/et_pb_text][fl_people_single element=\"representative_clients\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Clients\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"References\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>References</h2>[/et_pb_text][fl_people_single element=\"references\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - References\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/fl_people_single][et_pb_text disabled_on=\"on|off|on\" admin_label=\"Past Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Past Positions</h2>[/et_pb_text][fl_people_single element=\"past_positions\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Past Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Languages\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Languages</h2>[/et_pb_text][fl_people_single element=\"languages\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Languages\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Ancillary Businesses\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Ancillary Businesses</h2>[/et_pb_text][fl_people_single element=\"ancillary_businesses\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Ancillary Businesses\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/fl_people_single][/et_pb_column][/et_pb_row][/et_pb_section]','Lua, Maria','','publish','closed','closed','','lua-maria','','','2022-05-04 12:21:00','2022-05-04 16:21:00','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/attorney/lua-maria/',0,'people','',0),(49089,25,'2022-05-26 14:57:02','2022-05-26 18:57:02','In the fall of 2021, our fabulous and fearless leader, Melissa A. Day, was sought out by Leaders Voice USA to provide enriching guidance and impart her extensive knowledge in the realm of Worker’s Compensation Law and managing a law firm. The team at Leaders Voice USA, an up-and-coming e-magazine and professional community, conducted an interview with Melissa, discussing her experiences as a Worker’s Compensation defense attorney, her successes in the face of adversity and her best practices and insightful suggestions to attorneys in this area of law.\r\n\r\nThis month, we’re thrilled to announce that Leaders Voice USA published an article that highlights Melissa’s interview and offers a breadth of authoritative and practical wisdom. This article can be found <u><a href=\"https://thelomad.com/getmad.today/wp-contentleadersvoiceusa.com/melissa-day-managing-partner-the-law-offices-of-melissa-a-day-pllc/\">here</a></u> within the Leaders Voice USA official website. Alternatively, you can also copy and paste this link into the address bar of your browser:\r\n<em>\r\n<a href=\"https://thelomad.com/getmad.today/wp-contentleadersvoiceusa.com/melissa-day-managing-partner-the-law-offices-of-melissa-a-day-pllc/\">https://thelomad.com/getmad.today/wp-contentleadersvoiceusa.com/melissa-day-managing-partner-the-law-offices-of-melissa-a-day-pllc/</a></em>\r\n\r\nAfter perusing the article, we’d love to hear from you! Whether you prefer social media, email or calling our office, your feedback is valued and appreciated.\r\n\r\n<em>     Leaders</em> <em>Voice USA missions is to give due credit and highlight the work of key contributors in the healthcare, legal and insurance industries. Leaders Voice USA makes every effort to lend a voice to thought leaders of these industries and empowers them to share their journeys, insights, vision and principles for success. For more on Leaders Voice USA, visit <a href=\"https://thelomad.com/getmad.today/wp-contentleadersvoiceusa.com/\">https://thelomad.com/getmad.today/wp-contentleadersvoiceusa.com/</a>.\r\n­</em>','Interview with Leaders Voice USA','','publish','closed','closed','','interview-with-leaders-voice-usa','','','2022-08-31 09:17:02','2022-08-31 13:17:02','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=49089',0,'post','',0),(49100,26,'2022-07-11 14:58:36','2022-07-11 18:58:36','','NewsletterVolume1','','inherit','closed','closed','','newslettervolume1','','','2022-07-11 14:58:36','2022-07-11 18:58:36','',0,'/wp-content/uploads/sites/1503150/2022/07/NewsletterVolume1.pdf',0,'attachment','application/pdf',0),(49128,26,'2022-08-02 09:25:58','2022-08-02 13:25:58','','LOMADMagazineVol13July2022','','inherit','closed','closed','','lomadmagazinevol13july2022','','','2022-08-02 09:25:58','2022-08-02 13:25:58','',0,'/wp-content/uploads/sites/1503150/2022/08/LOMADMagazineVol13July2022.pdf',0,'attachment','application/pdf',0),(49130,26,'2022-08-02 09:29:22','2022-08-02 13:29:22','','LOMADMagazineVol13July2022Cover','','inherit','closed','closed','','lomadmagazinevol13july2022cover','','','2022-08-02 09:29:22','2022-08-02 13:29:22','',46244,'/wp-content/uploads/sites/1503150/2022/08/LOMADMagazineVol13July2022Cover.png',0,'attachment','image/png',0),(49133,26,'2022-08-02 09:58:12','2022-08-02 13:58:12','','LOMADMagazineVolume11May2022','','inherit','closed','closed','','lomadmagazinevolume11may2022','','','2022-08-02 09:58:12','2022-08-02 13:58:12','',0,'/wp-content/uploads/sites/1503150/2022/08/LOMADMagazineVolume11May2022.pdf',0,'attachment','application/pdf',0),(49134,26,'2022-08-02 09:58:22','2022-08-02 13:58:22','','LOMADMagazineVolume11May2022Cover','','inherit','closed','closed','','lomadmagazinevolume11may2022cover','','','2022-08-02 09:58:22','2022-08-02 13:58:22','',0,'/wp-content/uploads/sites/1503150/2022/08/LOMADMagazineVolume11May2022Cover.png',0,'attachment','image/png',0),(49139,26,'2022-08-02 10:04:27','2022-08-02 14:04:27','','LOMADMagazineVolume12June2022Cover','','inherit','closed','closed','','lomadmagazinevolume12june2022cover','','','2022-08-02 10:04:27','2022-08-02 14:04:27','',46244,'/wp-content/uploads/sites/1503150/2022/08/LOMADMagazineVolume12June2022Cover.png',0,'attachment','image/png',0),(49140,26,'2022-08-02 10:04:38','2022-08-02 14:04:38','','LOMADMagazineVolume12June2022','','inherit','closed','closed','','lomadmagazinevolume12june2022','','','2022-08-02 10:04:38','2022-08-02 14:04:38','',46244,'/wp-content/uploads/sites/1503150/2022/08/LOMADMagazineVolume12June2022.pdf',0,'attachment','application/pdf',0),(49174,1,'2022-08-11 15:18:55','2022-08-11 19:18:55','[et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\" template_type=\"module\"]<h2>Tenure at firm</h2>[/et_pb_text]','Tenure - title','','publish','closed','closed','','tenure-title','','','2022-08-11 15:18:55','2022-08-11 19:18:55','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_pb_layout/tenure-title/',0,'et_pb_layout','',0),(49176,1,'2022-08-11 15:19:41','2022-08-11 19:19:41','[et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Content\" _builder_version=\"4.14.8\" text_text_color=\"#000000\" custom_padding=\"|||15px|false|false\" locked=\"off\" global_colors_info=\"{}\" template_type=\"module\"]<ul>\n<li>Joined the firm 12/10/2020</li>\n</ul>[/et_pb_text]','Tenure - Content','','publish','closed','closed','','tenure-content','','','2022-08-11 15:19:41','2022-08-11 19:19:41','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_pb_layout/tenure-content/',0,'et_pb_layout','',0),(49182,1,'2022-08-11 15:30:21','2022-08-11 19:30:21','[et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Melissa A. Day\" module_class=\"fl-feature\" _builder_version=\"4.3.2\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" hover_enabled=\"0\" locked=\"off\" template_type=\"row\" collapsed=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"2_5\" _builder_version=\"4.3.2\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Melissa_Ann_Day_pp.jpg\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" _builder_version=\"4.3.2\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.3.2\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.14.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" hover_enabled=\"0\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2><span style=\"color: #003366;\">Melissa A. Day</span></h2>\n<h2><span style=\"color: #003366;\">Managing Attorney</span></h2>\n<p>My Legal Superpower: Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist. <a href=\"/attorney/day-melissa-a/\">Read more</a></p>[/et_pb_text][/et_pb_column][/et_pb_row]','Attorney Profile Row','','publish','closed','closed','','attorney-profile-row','','','2022-08-18 08:31:13','2022-08-18 12:31:13','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_pb_layout/attorney-profile-row/',0,'et_pb_layout','',0),(49188,1,'2022-08-11 15:40:55','2022-08-11 19:40:55','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" hover_enabled=\"0\" locked=\"off\" template_type=\"section\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,2_3\" make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.3.2\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.3.2\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_image _builder_version=\"4.14.8\" custom_margin=\"||20px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text admin_label=\"Full Name\" module_class=\"fl-attorney-title\" _builder_version=\"4.14.8\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" hover_enabled=\"0\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.14.8\" text_font=\"|600|||||||\" text_text_color=\"#027acb\" text_font_size=\"24px\" header_font=\"||||||||\" header_2_text_color=\"#211865\" header_3_font=\"||||||||\" header_3_text_color=\"#000000\" custom_padding=\"5px||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]\r\n<h2>Contact Me:</h2>\r\n[/et_pb_text][fl_people_single element=\"phone\" admin_label=\"Person Detail Element - Phone Number\" module_class=\"fl-darklinks\" _builder_version=\"4.3.2\" module_text_color=\"#211865\" custom_margin=\"0px||10px\" custom_padding=\"0px||0px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/fl_people_single][et_pb_text admin_label=\"Email Button - Short Code\" module_class=\"fl-email-btn\" _builder_version=\"4.3.2\" link_font=\"||||||||\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||25px||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"]\r\n\r\n[email_me_form form_id=\"3\" post_id=\"48168\"]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.29.3\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Practice Areas\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"||20px\" custom_padding_tablet=\"0px||26px||false\" custom_padding_phone=\"0px||20px||false\" custom_padding_last_edited=\"on|desktop\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]\r\n<h2>Practice Areas</h2>\r\n[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" admin_label=\"Text\"][/et_pb_text][et_pb_text admin_label=\"Current Employment Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]\r\n<h2>Current Employment Position</h2>\r\n[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" admin_label=\"Text\"][/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Bar Admissions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]\r\n<h2>Bar Admissions</h2>\r\n[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Professional Associations\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]\r\n<h2>Professional Associations and Memberships</h2>\r\n[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Education\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]\r\n<h2>Education</h2>\r\n[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Pro-Bono Activities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]\r\n<h2>Pro-Bono Activities</h2>\r\n[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Honors\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]\r\n<h2>Honors</h2>\r\n[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Published Works\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]\r\n<h2>Published Works</h2>\r\n[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" admin_label=\"Text\"][/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]\r\n<h2>Tenure at firm</h2>\r\n[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Content\" _builder_version=\"4.14.8\" text_text_color=\"#000000\" custom_padding=\"|||15px|false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]\r\n<ul>\r\n 	<li>Joined the firm 12/10/2020</li>\r\n</ul>\r\n[/et_pb_text][et_pb_text admin_label=\"Legal Superpower label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" custom_padding=\"15px||15px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]\r\n<h2>Your Legal Superpower</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Legal superpower content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>Writing and Being Extremely Thorough</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n[/et_pb_text][et_pb_text admin_label=\"Pets label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]\r\n<h2>Pets and Hobbies</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Pets content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>Dogs &gt; Cats</li>\r\n 	<li>Hobbies: Movies, reading, and football (Go Bills!)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Fraternities or Sororities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]\r\n<h2>Fraternities or Sororities</h2>\r\n[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Biography\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]\r\n<h2>Biography</h2>\r\n[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Certified Legal Specialties\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]\r\n<h2>Certified Legal Specialties</h2>\r\n[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" admin_label=\"Text\"][/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Classes &amp; Seminars\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]\r\n<h2>Classes &amp; Seminars</h2>\r\n[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Clients\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]\r\n<h2>Representative Clients</h2>\r\n[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"References\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]\r\n<h2>References</h2>\r\n[/et_pb_text][et_pb_text disabled_on=\"on|off|on\" admin_label=\"Past Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]\r\n<h2>Past Positions</h2>\r\n[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','People Section','','publish','closed','closed','','people-section','','','2022-08-18 08:38:18','2022-08-18 12:38:18','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_pb_layout/people-section/',0,'et_pb_layout','',0),(49190,23,'2022-08-11 16:01:33','2022-08-11 20:01:33','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"INTERNAL PAGE BANNER\" module_class=\"fl-internal_banner\" _builder_version=\"4.3.2\" background_color=\"#000000\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,85,145,0.8)\" background_color_gradient_end=\"#211865\" background_color_gradient_overlays_image=\"on\" background_image=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_236812913-scaled.jpeg\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"250px||170px||false|false\" custom_padding_tablet=\"50px||50px||true|false\" custom_padding_phone=\"25px||25px||true|false\" background_last_edited=\"on|phone\" background_image_tablet=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-T.jpg\" background_image_phone=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/08/AdobeStock_180103616-M.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_module=\"47118\" saved_tabs=\"all\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Internal Page Banner\" _builder_version=\"4.3.2\" width=\"90%\" width_last_edited=\"off|desktop\" module_alignment_last_edited=\"off|phone\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.29.3\" background_enable_color=\"off\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.3.2\" text_font=\"Playfair Display|600|||||||\" text_text_color=\"#ffffff\" text_font_size=\"38px\" text_line_height=\"1.35em\" header_font=\"Fjalla One||||||||\" background_enable_color=\"off\" text_orientation=\"center\" custom_padding=\"||||false|false\" text_font_size_tablet=\"35px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Breaking The Mold Of The Assembly Line Workers’ Compensation Firm By Building Client-Based Defense Partnerships</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.3.2\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.3.2\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Vicki_L_Buehler-1_pp.jpg\" _builder_version=\"4.14.8\" custom_margin=\"||20px||false|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Full Name\" module_class=\"fl-attorney-title\" _builder_version=\"4.14.8\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h1>Vicki L. Buehler</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.3.2\" text_font=\"|600|||||||\" text_text_color=\"#027acb\" text_font_size=\"24px\" header_font=\"||||||||\" header_2_text_color=\"#211865\" header_3_font=\"||||||||\" header_3_text_color=\"#000000\" custom_padding=\"5px||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Me:</h2>[/et_pb_text][et_pb_text admin_label=\"Phone Number\" _builder_version=\"4.14.8\" _module_preset=\"default\" text_font=\"Metropolis Thin||||||||\" link_option_url=\"tel:+1-585-444-1368\" global_colors_info=\"{}\"]<p>(585) 444-1368</p>[/et_pb_text][et_pb_text admin_label=\"Email Button - Short Code\" module_class=\"fl-email-btn\" _builder_version=\"4.3.2\" link_font=\"||||||||\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||25px||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>[email_me_form form_id=\"3\" post_id=\"48168\"]</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.29.3\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Practice Areas\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"||20px\" custom_padding_tablet=\"0px||26px||false\" custom_padding_phone=\"0px||20px||false\" custom_padding_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h2>Practice Areas</h2>[/et_pb_text][fl_people_single element=\"practice_areas\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Practice Areas\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text admin_label=\"Current Employment Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Current Employment Position</h2>[/et_pb_text][fl_people_single element=\"current_positions\" admin_label=\"Person Detail Element - Current Employment Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Bar Admissions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Bar Admissions</h2>[/et_pb_text][fl_people_single element=\"bar_admissions\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Bar Admissions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Professional Associations\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Associations and Memberships</h2>[/et_pb_text][fl_people_single element=\"professional_assoc\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element -Professional Associations\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Education\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Education</h2>[/et_pb_text][fl_people_single element=\"education\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Education\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Pro-Bono Activities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pro-Bono Activities</h2>[/et_pb_text][fl_people_single element=\"pro_bonos\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Pro-Bono Activities\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Honors\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Honors</h2>[/et_pb_text][fl_people_single element=\"honors\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Honors\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Published Works\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Published Works</h2>[/et_pb_text][fl_people_single element=\"published_works\" disabled_on=\"off|off|off\" admin_label=\"Person Detail Element - Published Works\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Tenure at firm</h2>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Content\" _builder_version=\"4.14.8\" text_text_color=\"#000000\" custom_padding=\"|||15px|false|false\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>Joined the firm 12/10/2020</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Legal Superpower label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" custom_padding=\"15px||15px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Your Legal Superpower</h2>[/et_pb_text][et_pb_text admin_label=\"Legal superpower content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>...</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Pets label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pets and Hobbies</h2>[/et_pb_text][et_pb_text admin_label=\"Pets content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>...</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Fraternities or Sororities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Fraternities or Sororities</h2>[/et_pb_text][fl_people_single element=\"fraternity_sororities\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Fraternities or Sororities\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Biography\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Biography</h2>[/et_pb_text][fl_people_single element=\"bio\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Biography\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" custom_padding=\"||15px||false|false\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Certified Legal Specialties\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Certified Legal Specialties</h2>[/et_pb_text][fl_people_single element=\"specialties\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Certified Legal Specialties\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Classes & Seminars\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Classes & Seminars</h2>[/et_pb_text][fl_people_single element=\"classes_seminars\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Classes & Seminars\" _builder_version=\"3.24\" text_orientation=\"left\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Clients\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Clients</h2>[/et_pb_text][fl_people_single element=\"representative_clients\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Representative Clients\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"References\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>References</h2>[/et_pb_text][fl_people_single element=\"references\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - References\" _builder_version=\"3.24\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|off|on\" admin_label=\"Past Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Past Positions</h2>[/et_pb_text][fl_people_single element=\"past_positions\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Past Positions\" _builder_version=\"4.3.2\" module_text_color=\"#000000\" text_orientation=\"left\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Languages\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Languages</h2>[/et_pb_text][fl_people_single element=\"languages\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Languages\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Ancillary Businesses\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Ancillary Businesses</h2>[/et_pb_text][fl_people_single element=\"ancillary_businesses\" disabled_on=\"on|on|on\" admin_label=\"Person Detail Element - Ancillary Businesses\" _builder_version=\"3.24\" module_font=\"||||||||\" module_font_size=\"16px\" custom_margin=\"0px||15px\" custom_padding=\"0px||0px\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"][/fl_people_single][/et_pb_column][/et_pb_row][/et_pb_section]','Vicki L. Buehler','','publish','closed','closed','','buehler-vicki-l','','','2022-08-11 16:11:39','2022-08-11 20:11:39','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?post_type=people&#038;p=49190',0,'people','',0),(49203,1,'2022-08-16 11:20:19','2022-08-16 15:20:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" background_color=\"#f5f5f5\" custom_padding=\"20px||20px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"|20px|||false|false\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><strong>LOMAD Event Calendar</strong></h2>[/et_pb_text][et_pb_text admin_label=\"Event Calendar overview\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_font=\"Playfair Display||||||||\" text_text_color=\"#211865\" background_color=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"]<p>From conferences and CLE seminars to virtual meetings and webinars, you can find our team engaged in the NYS Workers\' Compensation community throughout the year!</p>\n<p>Included below is calendar view of our office\'s upcoming events. For more information on any of our events, contact our office via phone at <a href=\"tel: 7166160111\">(716) 616-0111</a> via email at <a href=\"mailto:hearings@madwcdefense.com\">hearings@madwcdefense.com.</a></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_code admin_label=\"Google Calendar embed\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<iframe src=\"https://calendar.google.com/calendar/embed?src=mail%40madwcdefense.com&ctz=America%2FNew_York\" style=\"border: 0\" width=\"800\" height=\"600\" frameborder=\"0\" scrolling=\"no\"></iframe>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','LOMAD Event Calendar','','publish','closed','closed','','lomad-event-calendar','','','2022-09-19 13:51:54','2022-09-19 17:51:54','',45926,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=49203',0,'page','',0),(49220,1,'2022-09-15 10:10:42','2022-08-16 15:26:30',' ','','','publish','closed','closed','','49220','','','2022-09-15 10:10:42','2022-09-15 14:10:42','',45926,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=49220',13,'nav_menu_item','',0),(49222,1,'2022-08-16 11:40:48','2022-08-16 15:40:45','','','','publish','closed','closed','','49222','','','2022-08-16 11:40:48','2022-08-16 15:40:48','',45926,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?p=49222',16,'nav_menu_item','',0),(49237,1,'2022-08-19 16:26:37','2022-08-19 20:26:37','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Melissa A. Day\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Melissa_Ann_Day_pp.jpg\" alt=\"photo of attorney Melissa A. Day\" title_text=\"Melissa_Ann_Day_pp\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - MAD\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" border_width_all=\"3px\" border_color_all=\"#FFFFFF\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" custom_css_before_last_edited=\"on|desktop\"][/et_pb_image][et_pb_text admin_label=\"Melissa A. Day\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">Melissa A. Day</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:7162047477\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"MAD Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" hover_enabled=\"0\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Practice Areas</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Workers’ Compensation</li>\n<li>Subrogation</li>\n<li>Personal Injury Defense</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Current Employment Position</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Mistress of the LOMAD Universe, a/k/a Managing Partner</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Bar Admissions</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>New York, 1997</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Professional Associations and Memberships</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>New York State Bar Association\n<ul>\n<li>Executive Committee Member | Torts, Insurance &amp; Compensation Law Section</li>\n</ul>\n</li>\n<li>CLM</li>\n<li>New York Self-Insurers Association</li>\n<li>Buffalo Claims Association</li>\n<li>Self-Insurers Association of the Niagara Frontier</li>\n<li>New York Workers’ Compensation Bar Association</li>\n<li>Erie County Bar Association</li>\n<li>Secretary | Syracuse Claims Association</li>\n<li>Upstate RIMS</li>\n<li>Board Member | Kids’ Chance NY</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Education</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li><strong>Notre Dame Law School</strong>, South Bend, Indiana\n<ul>\n<li>J.D. – 1996</li>\n</ul>\n</li>\n<li><strong>Canisius College</strong>\n<ul>\n<li>B.A. – 1993</li>\n<li>Major: English</li>\n</ul>\n</li>\n<li><strong>Nardin Academy</strong>\n<ul>\n<li>1984</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Verdicts/Settlements/Cases of Note/Favorite Win</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li><u>Burns v. Varriale</u>, 9 N.Y. 3d 207 (2007). Perfecting an argument proposed by Steven M. Licht, Esq., and successfully arguing this influential case at the Court of Appeals is the highlight of my career as an attorney, but having the privilege or working with the team at LOMAD is the highlight of my entire professional career. <a href=\"https://thelomad.com/getmad.today/wp-contentvimeo.com/676362013\" data-wpel-link=\"internal\">Click here</a> to see a video of the oral argument.</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pro-Bono Activities</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Board Member of Kids’ Chance of New York</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Honors</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Largest Women-Owned Businesses Buffalo – 2019, 2020, 2021</li>\n<li>Largest Buffalo Law Firms – 2020 and 2021</li>\n<li>Finalist Best Places to Work Buffalo – 2021</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Published Works</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Founder of and regular contributor to the Linkedin Group, “New York Workers’ Compensation Forum” in September 2009 – Currently nearly 1900 members</li>\n<li>Executive producer of a monthly live TV Show/Webinar titled, “Lawyers &amp; Friends.” c. Presenter at numerous for profit and not for profit seminars on New York Workers’ Compensation</li>\n<li>Presenter at numerous for profit and not for profit seminars on New York Workers’ Compensation</li>\n<li>Contributing author: Licht, Esq., Steven M., “The Special Disability Fund, The Fund for Reopened Cases and Special Funds Conservation Committee”. Workers’ Compensation Law and Practice in New York. Editors-in-Chief Steven M. Scotti and John Sweeny. Albany, NY: New York State Bar Association (2011)</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Tenure at firm</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>I was there at the LOMAD Big Bang on 01/01/2013</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Your Legal Superpower</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Using my weird, bent way of looking at the world to study the language of a statute and find defenses where none were previously thought to exist.</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_24  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pets and Hobbies</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_25  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Pets\n<ul>\n<li>Mush, the incorrigible Husky</li>\n<li>Bear, the Lab-mix Galoot</li>\n<li>Poof, the One-Eyed Calico</li>\n<li>Sweet Pea, the Drain Bamaged Taco Cat</li>\n<li>Herbie, the Love Bug</li>\n</ul>\n</li>\n<li>Hobbies\n<ul>\n<li>Theater – movies and musicals</li>\n<li>Professional Figure Skater in a past life</li>\n<li>Kayaking and Biking</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Melissa A. Day','','publish','closed','closed','','melissa-a-day','','','2022-12-05 11:29:12','2022-12-05 16:29:12','',46191,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=49237',0,'page','',0),(49248,1,'2022-08-19 12:09:57','2022-08-19 16:09:57','[et_pb_button button_url=\"https://thelomad.com/getmad.today/wp-content%91ninja_form%20id=3%93\" button_text=\"EMAIL ME\" button_text_last_edited=\"off|desktop\" _builder_version=\"4.14.8\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"21px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#211865\" button_icon=\"&#xe010;||divi||400\" template_type=\"module\" global_colors_info=\"{}\" admin_label=\"EMAIL ME Button\"][/et_pb_button]','EMAIL ME BUTTON','','publish','closed','closed','','email-me-button-2','','','2022-08-19 12:11:34','2022-08-19 16:11:34','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_pb_layout/email-me-button-2/',0,'et_pb_layout','',0),(49272,1,'2022-08-19 13:09:35','2022-08-19 17:09:35','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.3.2\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" template_type=\"section\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.3.2\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.3.2\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/10/Melissa_Ann_Day_pp.jpg\" admin_label=\"Image - MAD\" _builder_version=\"4.14.8\" custom_margin=\"||20px||false|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Melissa A. Day\" module_class=\"fl-attorney-title\" _builder_version=\"4.14.8\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px||false|false\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h1>Melissa A. Day</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.14.8\" text_font=\"|600|||||||\" text_text_color=\"#027acb\" text_font_size=\"24px\" header_font=\"||||||||\" header_2_text_color=\"#211865\" header_3_font=\"||||||||\" header_3_text_color=\"#000000\" custom_padding=\"5px||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Me:</h2>\r[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" admin_label=\"Phone Number\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.29.3\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Practice Areas\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"||20px\" custom_padding_tablet=\"0px||26px||false\" custom_padding_phone=\"0px||20px||false\" custom_padding_last_edited=\"on|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h2>Practice Areas</h2>\r[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text admin_label=\"Current Employment Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Current Employment Position</h2>\r[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Bar Admissions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Bar Admissions</h2>\r[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Professional Associations\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Associations and Memberships</h2>\r[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Education\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Education</h2>\r[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Pro-Bono Activities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pro-Bono Activities</h2>\r[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Honors\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Honors</h2>\r[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Published Works\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Published Works</h2>\r[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Tenure at firm</h2>\r[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Content\" _builder_version=\"4.14.8\" text_text_color=\"#000000\" custom_padding=\"|||15px|false|false\" locked=\"off\" global_colors_info=\"{}\"]<ul>\r\n 	<li>Joined the firm 12/10/2020</li>\r\n</ul>\r[/et_pb_text][et_pb_text admin_label=\"Legal Superpower label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" custom_padding=\"15px||15px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Your Legal Superpower</h2>\r[/et_pb_text][et_pb_text admin_label=\"Legal superpower content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>Writing and Being Extremely Thorough</li>\r\n</ul>\r\n</li>\r\n</ul>\r[/et_pb_text][et_pb_text admin_label=\"Pets label\" _builder_version=\"4.3.2\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pets and Hobbies</h2>\r[/et_pb_text][et_pb_text admin_label=\"Pets content\" _builder_version=\"4.3.2\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>Dogs &gt; Cats</li>\r\n 	<li>Hobbies: Movies, reading, and football (Go Bills!)</li>\r\n</ul>\r\n</li>\r\n</ul>\r[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Fraternities or Sororities\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Fraternities or Sororities</h2>\r[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Biography\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Biography</h2>\r[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Certified Legal Specialties\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Certified Legal Specialties</h2>\r[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Classes & Seminars\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Classes &amp; Seminars</h2>\r[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Clients\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Clients</h2>\r[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"References\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>References</h2>\r[/et_pb_text][et_pb_text disabled_on=\"on|off|on\" admin_label=\"Past Positions\" _builder_version=\"4.3.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Past Positions</h2>\r[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','BACKUP - Attorney Profile','','publish','closed','closed','','backup-attorney-profile','','','2022-08-19 14:10:44','2022-08-19 18:10:44','',0,'https://duplicate-3602675.findlaw5.flsitebuilder.com/blog/et_pb_layout/backup-attorney-profile/',0,'et_pb_layout','',0),(49273,1,'2022-08-19 13:16:32','2022-08-19 17:16:32','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"James B. Cousins\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/James_Cousins_pp.jpg\" alt=\"photo of attorney James B. Cousins\" title_text=\"James_Cousins_pp\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - JBC\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#FFFFFF\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" custom_css_before_last_edited=\"on|desktop\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text admin_label=\"James B. Cousins\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h1 style=\"text-align: center;\">James B. Cousins</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:7166505284\" hover_enabled=\"0\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text admin_label=\"JBC Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" hover_enabled=\"0\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Practice Areas</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Workers’ Compensation</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Current Employment Position</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Partner</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Bar Admissions</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>New York</li>\n<li>U.S. District Court Western District of New York</li>\n<li>U.S. Bankruptcy Court Western District of New York</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Professional Associations and Memberships</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>ECBA</li>\n<li>BCA</li>\n<li>SIANF</li>\n<li>NYSIA</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Representative Cases</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Yonkosky v. Town of Hamburg</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Education</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li><strong>State University of New York, Buffalo School of Law</strong>, Buffalo, New York</li>\n<li><strong>Dickinson College</strong></li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pro-Bono Activities</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Chairperson</li>\n<li>Board of Trustees</li>\n<li>Zion UCC</li>\n<li>Tonawanda</li>\n<li>OIC for Personnel and Administration (S1)</li>\n<li>10th Area Command</li>\n<li>NY; Captain</li>\n<li>AG, New York Guard</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Honors</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>American Bankruptcy Institute Medal of Excellence</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Tenure at firm</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Joined the firm in 2013</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Your Legal Superpower</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Each and every one of them.</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pets and Hobbies</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>1 “track adopted” greyhound “Jed” fka PowerAid in his racing days. </li>\n<li>I love to play golf, but don’t get to as often. </li>\n<li>Service to others is a hobby – I spend a lot of my free time – such as it is – serving the State of New York in the Guard and serving my congregation at my church.</li>\n</ul>\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','James Cousins','','publish','closed','closed','','james-cousins','','','2022-09-15 12:06:11','2022-09-15 16:06:11','',46191,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=49273',0,'page','',0),(49287,1,'2022-08-19 13:46:30','2022-08-19 17:46:30','','LOMAD_EMAIL_ME_Button','','inherit','closed','closed','','lomad_email_me_button','','','2022-08-19 13:46:30','2022-08-19 17:46:30','',49273,'/wp-content/uploads/sites/1503150/2022/08/LOMAD_EMAIL_ME_Button.png',0,'attachment','image/png',0),(49299,1,'2022-08-19 16:17:55','2022-08-19 20:17:55','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Brian K. Prince\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Brian_Prince-1_pp.jpg\" alt=\"photo of attorney Brian K. Prince\" title_text=\"Brian_Prince-1_pp\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - BKP\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#FFFFFF\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" custom_css_before_last_edited=\"on|desktop\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text admin_label=\"Brian K. Prince\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h1 style=\"text-align: center;\">Brian K. Prince</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:7163132794\" hover_enabled=\"0\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text admin_label=\"BKP Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" hover_enabled=\"0\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Practice Areas</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Workers’ Compensation Law</li>\n<li>Insurance Defense</li>\n<li>Family Law</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Current Employment Position</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Senior Associate</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Bar Admissions</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>New York, 2013</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Professional Associations and Memberships</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>New York State Workers’ Compensation Forum</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Verdicts/Settlements/Cases of Note/Favorite Win</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>My favorite win is Legacy Health Care (WCB# G0031412, January 4, 2021), which was my first Board Panel win on the issue of extreme hardship. Claimant tried to manipulate their income figures and expenses using an improper allocation of above and below the line expenses, and also threw their hands up instead of actually trying to do things on their end to reduce the amount of “hardship” they’d experience. Needless to say, we shined a light on all their tricks and the Board Panel wasn’t fooled by them.</li>\n<li>My first disallowance when I first started Workers’ Compensation for a claimant who requested time off work, was denied, and just so happened to have an accident the day before the time she previously requested off is one of my favorite wins. We were able to get concessions from her PA that she never disclosed a work accident to him, but actually denied any accident. This was my favorite case because it was my first time taking claimant testimony and I got plenty of objections which would make me stumble and more nervous, and I felt humiliated for asking so many questions about the inconsistencies in the record because “asked and answered” was a frequent objection. However, my intuition was correct and I prevailed on the same inconsistencies claimant’s counsel continued to object to questions regarding.</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Education</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li><strong>SUNY Buffalo Law School, University at Buffalo</strong>, Buffalo, New York\n<ul>\n<li>Juris Doctor – 2012</li>\n</ul>\n</li>\n<li><strong>Clarkson University</strong>\n<ul>\n<li>B.A. – 2008</li>\n<li>Honors: Rugby Team, Coach</li>\n<li>Honors: Rugby Team, Treasury</li>\n<li>Honors: Rugby Team, Referee</li>\n<li>Major: Interdisciplinary Engineering and Management</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pro-Bono Activities</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>None, unless not freaking out on people slowly getting off an airplane counts</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Honors</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Federal district court summer clerkship</li>\n<li>Rugby Referee</li>\n<li>Married an Orthopedic Surgeon</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Published Works</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Changes: The New Post-Classification Standard and Extreme Hardship</li>\n<li>Extreme Hardship or Just the Regular Kind</li>\n<li>Permanency: A Perspective on New York’s Guidelines</li>\n<li>Special Considerations: the MVPs of the 2017 Schedule Loss of Use Guidelines</li>\n<li>Sun Tzu and the art of Workers’ Compensation: A Crash Course on Litigation, Wait… Consequential What?: A Medical Approach to Consequential Injuries.</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Tenure at firm</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Joined the firm 05/05/2017</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Your Legal Superpower</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Talking with my wife. Having been with my wife since the start of her second year of orthopedic surgery residency, we’ve discussed probably thousands of cases at this point: hers, mine, and the one case where she actually did the surgery on my case. As such I have familiarity with the medical jargon doctors use (so they can’t really try to “doctor speak” me to death on depositions as I can process it in real-time), a good understanding of how the human body operates, a knowledge of where to look for unfamiliar medical issues and, if all else fails, someone who’ll gladly talk about medical issues with me.</li>\n</ul>\n<p>&nbsp;</p>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_24  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pets and Hobbies</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_25  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>2 dogs: Lilly, a lab-mix and Eli, a hound-mix (and yes, realized after the fact that we have dogs Eli and Lilly) who visits the local dog park with me on a daily basis, when we’re not hanging out at home.</li>\n</ul>\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Brian K. Prince','','publish','closed','closed','','brian-k-prince','','','2022-09-15 12:03:59','2022-09-15 16:03:59','',46191,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=49299',0,'page','',0),(49303,1,'2022-08-19 16:10:24','2022-08-19 20:10:24','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Shannan M. Mackey\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Shannon_Mackey_pp.jpg\" alt=\"photo of associate attorney Shannan M. Mackey\" title_text=\"Shannon_Mackey_pp\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - SMM\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#FFFFFF\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" custom_css_before_last_edited=\"on|desktop\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text admin_label=\"Shannan M. Mackey\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h1 style=\"text-align: center;\">Shannan M. Mackey</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:7162500687\" hover_enabled=\"0\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text admin_label=\"SMM Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" hover_enabled=\"0\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Practice Areas</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Workers’ Compensation</li>\n<li>Litigation</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Current Employment Position</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Associate Attorney</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Bar Admissions</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>New York, 2013</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Professional Associations and Memberships</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Buffalo Claims Associate</li>\n<li>New York State Academy of Trial Lawyers</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Verdicts/Settlements/Cases of Note/Favorite Win</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Favorite win was a fraud claim with a permanent disqualification in front of a notoriously picky WCLJ. Our firm was tapped into the case late and there were some issues with the prior litigation. The claimant was working at a laundromat, but claimed that she was not getting paid and was just in training. We had surveillance that helped with that issue but the Board lost the digital audio recording of the claimant’s testimony. So, the claimant essentially got a redo of her testimony after she had already seen all our evidence. She was thus able to change her testimony and tailor it to our proofs. Where we were able to focus was the claimant’s assertion that she was not paid until AFTER we raised fraud and she disclosed her work-activity because she was training without pay for four months. She at first asserted that she received retroactive checks, when we asked for a copy she then said it was direct deposit. The Judge directed her to provide banking records, and she gave incomplete records for a secondary account that showed very little activity. We pointed out that it also did not show the direct deposit of her Workers’ Compensation payments, and provided payment proofs and the information that she had that undisclosed account. We obtained a permanent disqualification despite fate interfering and giving her a second chance. The reason it is my favorite win though, is that while I do not like to judge people, her background check revealed several convictions for cruelty to animals due to her participation in a dog fighting ring. So, it was an unequivocal victory where even claimant’s counsel was happy we triumphed. (Although he gave a heck of a fight for a client he hated, and never let on he hated them until the end.)</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Education</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li><strong>Albany Law School of Union University</strong>, Albany, New York\n<ul>\n<li>J.D. – 2012</li>\n</ul>\n</li>\n<li><strong>University of Notre Dame</strong>\n<ul>\n<li>B.S. – 2006</li>\n<li>Honors: Fulbright award</li>\n<li>Major: Political Science, Philosophy, and Russian and Eastern European Studies and Philosophy, certificate in non profit administration</li>\n</ul>\n</li>\n<li><strong>KORA Russian Language Center through the Department of State</strong>, Vladimir\n<ul>\n<li>2004</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pro-Bono Activities</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Was coaching my daughter’s travel softball team as the baserunning/fielding coach, but the 12u girls have far outpaced my ability and I know when I am outmatched, 2019 to 2021</li>\n<li>Domestic Violence/Pro Se Divorce clinic at LawNY, 2014 to 2017</li>\n<li>Girl Scout troop leader, 2014 to 2018</li>\n<li>Girl Scout Volunteer and Mentor, 2018 to Present</li>\n<li>Teach for America Teacher in Marvell Arkansas, 2006 to 2008</li>\n<li>English Teacher in Vladmir Russian in orphanage and prison, 2004</li>\n<li>Triage Cancer Center Volunteer, 2021</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Honors</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Big East Championship</li>\n<li>Big East Academic All-Star</li>\n<li>Partial Athletic Scholarship at the University of Notre Dame</li>\n<li>Undergraduate Fulbright Award</li>\n<li>Albany Law School Journal of Science and Technology</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Published Works</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>The Art of the Expert Deposition</li>\n<li>Special Funds Continuing Legal Education course</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Tenure at firm</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Joined the firm October 2018</li>\n<li> </li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Your Legal Superpower</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>My ability to see the entirety of a case, even last minute.  I can see the entire battlefield the way Payton Manning sees a defense.</li>\n<li>I am often underestimated in testimony.  I have been told that Claimant’s will often comment to that counsel about how they hope that nice attorney is there, this especially comes in handy for fraud claims when they assume that my kind smile, affirmative comments, and cordial nature means that I believe them.</li>\n</ul>\n<p>&nbsp;</p>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_24  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pets and Hobbies</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_25  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Noble- a 2.5 year old Chihuahua and Jack Russell Terrier we rescued 2 years ago</li>\n<li>Emmy Grace- a 3.5 year old Chihuahua and Miniature Pinscher mix we rescued 1 year ago</li>\n<li>Wojo – a 9 year old black cat we rescued as a kitten</li>\n<li>Adult tap dancing taught by a former Rockette who puts on a fantastic Christmas show</li>\n<li>Swimming and being a travel softball coach (happily recently demoted back to regular travel softball mom, which means I don’t have to fill in to run bases during practice and I can stop showing off the slides and dives that I always regret the next day)</li>\n</ul>\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Shannan M. Mackey','','publish','closed','closed','','shannan-m-mackey','','','2022-09-15 12:01:37','2022-09-15 16:01:37','',46191,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=49303',0,'page','',0),(49307,1,'2022-08-19 16:03:03','2022-08-19 20:03:03','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Paul B. Kornacki\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Paul_Kornacki_pp.jpg\" alt=\"photo of associate attorney Paul B. Kornacki\" title_text=\"Paul_Kornacki_pp\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - PBK\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#FFFFFF\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" custom_css_before_last_edited=\"on|desktop\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text admin_label=\"Paul B. Kornacki\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h1 style=\"text-align: center;\">Paul B. Kornacki</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:7162506627\" hover_enabled=\"0\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text admin_label=\"PBK Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" hover_enabled=\"0\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Practice Areas</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Workers’ Compensation Defense</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Current Employment Position</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Associate Attorney</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Bar Admissions</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>New York</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Professional Associations and Memberships</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Bar Association of Erie County</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Verdicts/Settlements/Cases of Note/Favorite Win</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Most recent, finding of 114-a with permanent disqualification.</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Education</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li><strong>University of Toledo College of Law</strong>, Toledo, Ohio\n<ul>\n<li>J.D.</li>\n</ul>\n</li>\n<li><strong>SUNY at Fredonia and SUNY at Buffalo</strong></li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Tenure at firm</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Joined the firm 4/22/2019</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Your Legal Superpower</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>20 plus years of experience in Workers’ Compensation</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Hobbies</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Watching/playing soccer</li>\n<li>Reading</li>\n<li>Hiking</li>\n</ul>\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Paul B. Kornacki','','publish','closed','closed','','paul-b-kornacki','','','2022-09-15 11:58:53','2022-09-15 15:58:53','',46191,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=49307',0,'page','',0),(49312,1,'2022-08-19 15:56:51','2022-08-19 19:56:51','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Cassandra E. Christman\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/Cassie_Christman_pp.jpg\" alt=\"photo of associate attorney Cassandra E. Christman\" title_text=\"Cassie_Christman_pp\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - CEC\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#FFFFFF\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" custom_css_before_last_edited=\"on|desktop\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text admin_label=\"Cassandra E. Christman\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<div class=\"et_pb_module et_pb_text et_pb_text_0 fl-attorney-title  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h1 style=\"text-align: center;\">Cassandra E. Christman</h1>\n</div>\n</div>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:7167081759\" hover_enabled=\"0\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text admin_label=\"CEC Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" hover_enabled=\"0\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Practice Areas</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Workers’ Compensation</li>\n<li>Former Family and Housing Attorney for Veterans</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Current Employment Position</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Associate Attorney</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Bar Admissions</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>New York, 2018</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Verdicts/Settlements/Cases of Note/Favorite Win</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>My favorite win was a disallowance for a claimant who was alleging chemical exposure in the work place, but was never exposed to the chemical. This was a favorite win because all the doctors, including the IME, unanimously gave causal relationship. However, just in time for writing the Memorandum of Law, a new Third Department case came down stating that if the doctor’s opinions are based on a faulty premise, they are not credible. The case had a very similar fact pattern including an IME which also gave causal relationship. Through witness testimony we were able to prove the chemical exposure claimant alleged occurred never actually occurred, and therefore every doctor in the claim based their opinion of the faulty premise that there was an exposure. The claim was ultimately disallowed, as the WCLJ credited the testimony of the lay witnesses over the claimant.</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Education</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li><strong>University at Buffalo Law School</strong>, Buffalo, New York\n<ul>\n<li>Juris Doctor – 2017</li>\n</ul>\n</li>\n<li><strong>State University of New York FMCC</strong>, New York</li>\n<li><strong>State University of New York Polytechnic Institute</strong>, New York\n<ul>\n<li>B.S., Bachelor of Science</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pro-Bono Activities</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Executive Chair of the Community Veterans Engagement Board of WNY</li>\n<li>Former Veterans Treatment Court Mentor</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Tenure at firm</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Joined the firm 11/12/2019</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Your Legal Superpower</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>\n<ul>\n<li>Writing and Being Extremely Thorough</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pets and Hobbies</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>No pets. Hobbies include traveling, spending time with family, and playing softball.</li>\n</ul>\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Cassandra E. Christman','','publish','closed','closed','','cassandra-e-christman','','','2022-09-15 11:56:39','2022-09-15 15:56:39','',46191,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=49312',0,'page','',0),(49316,1,'2022-08-19 15:52:07','2022-08-19 19:52:07','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Melanie A. Daly\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Melanie_Daly-1_pp.jpg\" alt=\"photo of associate attorney Melanie A. Daly\" title_text=\"Melanie_Daly-1_pp\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - MXD\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" border_width_all=\"3px\" border_color_all=\"#FFFFFF\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" custom_css_before_last_edited=\"on|desktop\"][/et_pb_image][et_pb_text admin_label=\"Melanie A. Daly\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">Melanie A. Daly</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:7166505262\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"MXD Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" hover_enabled=\"0\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<div class=\"et_pb_module et_pb_text et_pb_text_36  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Practice Areas</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_20\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\">Workers’ Compensation Defense</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_37  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Current Employment Position</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_21\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\">Associate Attorney</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_38  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Bar Admissions</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_22\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\">New York, 2017</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_39  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Professional Associations</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_23\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\">New York Bar Association</li>\n<li class=\"bio-list__item\">Erie County Bar Association</li>\n<li class=\"bio-list__item\">Buffalo Claims Association</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_40  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Verdicts/Settlements/Cases of Note/Favorite Win</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_41  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Shutting down the winged scapula that came from left field.</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_42  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Education</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_24\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\"><strong>Nova Southeastern University Shepard Broad Law Center</strong>, Ft. Lauderdale, Florida\n<ul>\n<li>Juris Doctorate - 2015</li>\n</ul>\n</li>\n<li class=\"bio-list__item\"><strong>Niagara University</strong>\n<ul>\n<li>Master of Science - 2008</li>\n<li>Major: Criminal Justice Administration</li>\n</ul>\n</li>\n<li class=\"bio-list__item\"><strong>SUNY Fredonia</strong>\n<ul>\n<li>B.A., Bachelor of Arts - 2006</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_43  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pro-Bono Activities</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_25\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\">Volunteering at the Soup Kitchen</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_44  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Tenure at firm</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_45  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>I started 01/13/2020.</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_46  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Your Legal Superpower</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_47  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Extrasensory Perception for Inconsistencies</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_48  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pets and Hobbies</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_49  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>My favorite hobbies include spending time with my six children, ages ranging 1-9 which includes two sets of twins, making sure every one of them laugh at least once every day.</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_50  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Published Works</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_26\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\">Editor of LOMAD Magazine</li>\n</ul>\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Melanie A. Daly','','publish','closed','closed','','melanie-a-daly','','','2022-09-15 11:53:50','2022-09-15 15:53:50','',46191,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=49316',0,'page','',0),(49322,1,'2022-08-19 15:46:47','2022-08-19 19:46:47','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Neil A. Diegelman\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Neil_Deigelman-1_pp.jpg\" alt=\"photo of associate attorney Neil A. Diegelman\" title_text=\"Neil_Deigelman-1_pp\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - NAD\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" border_width_all=\"3px\" border_color_all=\"#FFFFFF\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" custom_css_before_last_edited=\"on|desktop\"][/et_pb_image][et_pb_text admin_label=\"Neil A. Diegelman\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">Neil A. Diegelman</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:7166505286\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"NAD Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_2 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Practice Areas</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_3 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Workers’ Compensation</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_4 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Current Employment Position</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Associate Attorney</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_6 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Bar Admissions</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_7 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>New York</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_8 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Professional Associations and Memberships</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_9 et_pb_text_align_left et_pb_bg_layout_light\"> </div>\n<div class=\"et_pb_module et_pb_text et_pb_text_10 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Education</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_11 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li><strong>University at Buffalo Law School</strong>, Buffalo, New York\n<ul>\n<li>Honors: Buffalo Environmental Law Journal and Buffalo Journal of Gender, Law &amp; Social Policy</li>\n</ul>\n</li>\n<li><strong>Buffalo State College</strong>\n<ul>\n<li>B.S., Bachelor of Science</li>\n<li>Major: Business Administration</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_12 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pro-Bono Activities</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_13 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Buffalo Niagara River Cleanups</li>\n<li>Dog-Foster Dad for Queen City Pitties</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_14 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Honors</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_15 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Juris Doctor Cum Laude</li>\n<li>Bachelor of Science in Business Administration Summa Cum Laude</li>\n<li>Eagle Scout</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_16 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Tenure at firm</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_17 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Joined the firm 08/30/2021</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_18 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Verdicts/Settlements/Cases of Note/Favorite Win</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_19 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>My first disallowance when I first started Workers’ Compensation for a claimant who requested time off work, was denied, and just so happened to have an accident the day before the time she previously requested off is one of my favorite wins. We were able to get concessions from her PA that she never disclosed a work accident to him, but actually denied any accident. This was my favorite case because it was my first time taking claimant testimony and I got plenty of objections which would make me stumble and more nervous, and I felt humiliated for asking so many questions about the inconsistencies in the record because “asked and answered” was a frequent objection. However, my intuition was correct and I prevailed on the same inconsistencies claimant’s counsel continued to object to questions regarding.</li>\n<li>One of my favorite wins at the trial level involved an established right ankle injury (crush) and the claimant was also alleging a direct injury to the back. The claimant was working in construction and was assigned to dump bins of debris out into a waiting garbage truck. The claimant’s foot was injured by the garbage truck and the debris bin. The claimant alleged that after he injured his foot, he fell backwards striking his back causing injuries. We took the deep dive and contacted other employees who were working with the claimant on the accident date. Every employer-eyewitness testified that the claimant injured his right foot and then sat down to await medical attention. Further, the medical reports did not state a direct back injury until months later. Based on the overwhelming evidence that we were able to produce, we prevailed on having the back injury disallowed from the claim. The WCLJ found our three employer witnesses were more credible than the claimant in describing the accident, and that the claimant did not have the complaints until a few months later. This was a great win as the claim was then limited to the right ankle injury without expanding the sites of injury.</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_20 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Your Legal Superpower</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_21 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>\n<ul>\n<li>Writing and Being Extremely Thorough</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_22 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pets and Hobbies</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_23 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>My wife and I foster pit bull dogs through Queen City Pitties, a foster to adoption dog-rescue agency. So, we have a revolving door of dogs in and out.</li>\n<li>My hobbies include travel, hiking, woodwork, house remodel and renovation work. I am an avid cyclist and enjoy kayaking. Beyond my personal and professional life, I enjoy quiet, peaceful meditation time with a view of the sunset, a few clouds and a breeze</li>\n</ul>\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Neil A. Diegelman','','publish','closed','closed','','neil-a-diegelman','','','2022-09-15 11:52:52','2022-09-15 15:52:52','',46191,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=49322',0,'page','',0),(49326,1,'2022-08-19 15:40:03','2022-08-19 19:40:03','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Brendan T. Shannon\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Brendan_Shannon_pp.jpg\" alt=\"photo of associate attorney Brendan T. Shannon\" title_text=\"Brendan_Shannon_pp\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - BTS\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" border_width_all=\"3px\" border_color_all=\"#FFFFFF\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" custom_css_before_last_edited=\"on|desktop\"][/et_pb_image][et_pb_text admin_label=\"Brendan T. Shannon\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">Brendan T. Shannon</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:7169704858\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"BTS Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" hover_enabled=\"0\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<div class=\"et_pb_module et_pb_text et_pb_text_3 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Practice Areas</h2>\n<ul>\n<li>Workers’ Compensation</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_4 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Current Employment Position</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Associate Attorney</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_6 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Bar Admissions</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_7 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>New York</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_8 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Professional Associations and Memberships</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_9 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>NYSBA</li>\n<li>Erie County Bar Association</li>\n<li>ABA</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_10 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Education</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_11 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li><strong>University at Buffalo Law School</strong>, Buffalo, New York\n<ul>\n<li>2020</li>\n<li>Honors: <em>cum laude</em></li>\n</ul>\n</li>\n<li><strong>Canisius College</strong>\n<ul>\n<li>2017</li>\n<li>Honors: <em>magna cum laude</em></li>\n</ul>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_12 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pro-Bono Activities</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_13 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Interned for Judge Lawrence J. Vilardo</li>\n<li>United States District Judge for the Western District of New York , 01/2020 to 05/2020</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_14 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Honors</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_15 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Center for Computer-Assisted Legal Instruction (CALI) Excellence for the Future Award for earning the highest grade in Torts, as a first-year law student</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_16 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Tenure at firm</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_17 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Joined the firm 12/10/2020</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_18 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Your Legal Superpower</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_19 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>\n<ul>\n<li>Writing and Being Extremely Thorough</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_20 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pets and Hobbies</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_21 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Dogs &gt; Cats</li>\n<li>Hobbies: Movies, reading, and football (Go Bills!)</li>\n</ul>\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Brendan T. Shannon','','publish','closed','closed','','brendan-t-shannon','','','2022-09-15 11:45:44','2022-09-15 15:45:44','',46191,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=49326',0,'page','',0),(49331,1,'2022-08-19 15:36:34','2022-08-19 19:36:34','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Andrew P. Gould\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/Andrew_Gould_pp.jpg\" alt=\"photo of associate attorney Andrew Gould\" title_text=\"Andrew_Gould_pp\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - APG\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#FFFFFF\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" custom_css_before_last_edited=\"on|desktop\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text admin_label=\"Andrew P. Gould\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">Andrew P. Gould</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:5187086570\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"APG Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" hover_enabled=\"0\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<div class=\"et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n<h2 class=\"et_pb_text_inner\">Practice Areas</h2>\n<ul>\n<li>Workers’ Compensation</li>\n</ul>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Current Employment Position</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Associate Attorney</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Bar Admissions</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>New York</li>\n<li>New Jersey</li>\n<li>Pennsylvania</li>\n<li>United States Court of Appeals for the Third Circuit</li>\n<li>U.S. District Court District of New Jersey</li>\n<li>U.S. District Court Eastern District of Pennsylvania</li>\n<li>U.S. District Court Middle District of Pennsylvania</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Professional Associations and Memberships</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Pennsylvania Bar Association</li>\n<li>New Jersey Bar Association</li>\n<li>New York Bar Association</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Education</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li><strong>St. Bonaventure</strong>\n<ul>\n<li>B.A. – 2008</li>\n</ul>\n</li>\n<li><strong>Western Michigan University Thomas M. Cooley Law School</strong>\n<ul>\n<li>J.D. – 2011</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pro-Bono Activities</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>St. Bonaventure Alumni SHARE</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Honors</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Rising Stars Workers’ Compensation Attorneys in Pennsylvania</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Tenure at firm</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Since May 2021</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Your Legal Superpower</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Teleportation—can jump from one case to the next as the situation calls</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pets and Hobbies</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Hobbies: fishing, hunting, writing stories, hiking, kayaking , making balloon animals</li>\n</ul>\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Andrew Gould','','publish','closed','closed','','andrew-gould','','','2022-09-15 11:32:37','2022-09-15 15:32:37','',46191,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=49331',0,'page','',0),(49336,1,'2022-08-19 15:32:27','2022-08-19 19:32:27','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Bingchen Huang\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Bing-Huang300x300.jpg\" alt=\"Photo of Bing-huang\" title_text=\"Bing-Huang300x300\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - BXH\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#FFFFFF\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" custom_css_before_last_edited=\"on|desktop\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text admin_label=\"Bingchen Huang\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">Bingchen Huang</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:7166505718\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"BXH Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Practice Areas</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Workers’ Compensation</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Current Employment Position</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Associate Attorney</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Bar Admissions</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>New York, 2022</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Professional Associations and Memberships</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>New York State Bar Association</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Education</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li><strong>Washington University School of Law</strong>, St. Louis, Missouri\n<ul>\n<li>Juris Doctor – 2021</li>\n</ul>\n</li>\n<li><strong>Columbia University</strong>\n<ul>\n<li>Master of Science – 2016</li>\n</ul>\n</li>\n<li><strong>Tsinghua University</strong>\n<ul>\n<li>Bachelor of Engineering – 2014</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pro-Bono Activities</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Clerk externship for the Honorable Judge Fleissig, United States District Court for the Eastern District of Missouri</li>\n<li>Student attorney in WashU Law Entrepreneurship &amp; Intellectual Property Clinic</li>\n<li>Research Legal Intern for Missouri Public Service Commission</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Honors</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Juris Doctor Cum Laude</li>\n<li>McDonnell International Scholars Cohort 2018</li>\n<li>WashU Law School Honors Scholars (yearly GPA top 10% 2019)</li>\n<li>WashU Law School Dean’s Service Award</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\"> </div>\n<div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Tenure at firm</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Joined the firm 12/13/2021</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\"> </div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\"> </div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_52 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\"> </div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Bingchen Huang','','publish','closed','closed','','bingchen-huang','','','2022-09-23 08:30:46','2022-09-23 12:30:46','',46191,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=49336',0,'page','',0),(49340,1,'2022-08-19 15:22:19','2022-08-19 19:22:19','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Satoko (Suki) Harada\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Suki-Harada-300x300-1.jpg\" alt=\"Photo of Suki-Harada\" title_text=\"Suki-Harada-300x300\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - SXH\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#FFFFFF\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" custom_css_before_last_edited=\"on|desktop\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text admin_label=\"Satoko (Suki) Harada\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">Satoko (Suki) Harada</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:7167554355\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"SXH Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Practice Areas</h2>\n<ul>\n<li>Workers’ Compensation</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Current Employment Position</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Associate Attorney</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Bar Admissions</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>State of Maryland</li>\n<li>State of New York</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Professional Associations and Memberships</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>New York State Bar Association</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Education</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li><strong>University of Baltimore School of Law</strong>, Baltimore, Maryland\n<ul>\n<li>Juris Doctor</li>\n</ul>\n</li>\n<li><strong>Buffalo State College</strong></li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Honors</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Vice President, University of Baltimore School of Law Moot Court Board</li>\n<li>Recent Developments Editor, University of Baltimore Law Forum Editorial Board</li>\n<li>Event Operations Manager, Night Lights Music Festival</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Published Works</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Master Financial, Inc. v. Crowder, 40 U. Balt. L.F. 131 (2009).</li>\n<li>Additional Barriers to Breaking the Silence, 41 U. Balt. L.F. 150 (2011).</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Tenure at firm</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Joined the firm 12/13/2021</li>\n</ul>\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Satoko (Suki) Harada','','publish','closed','closed','','satoko-suki-harada','','','2022-09-23 08:31:12','2022-09-23 12:31:12','',46191,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=49340',0,'page','',0),(49344,1,'2022-08-19 15:28:32','2022-08-19 19:28:32','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Maria C. Lua\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Maria-Lua300X300.jpg\" alt=\"Maria Lua\" title_text=\"Maria-Lua300X300\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - MCL\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#FFFFFF\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" custom_css_before_last_edited=\"on|desktop\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text admin_label=\"Maria C. Lua\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">Maria C. Lua</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:7162760118\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"MCL Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Practice Areas</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Workers’ Compensation</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Current Employment Position</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Associate Attorney</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Bar Admissions</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>New York, 2021</li>\n<li>Philippines, 2018</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Professional Associations and Memberships</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>New York State Bar Association</li>\n<li>Integrated Bar of the Philippines</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Education</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li><strong>University of the Philippines College of Law</strong>, Quezon City\n<ul>\n<li>Juris Doctor – 2017</li>\n</ul>\n</li>\n<li><strong>University of the Philippines College of Social Sciences and Philosophy</strong>\n<ul>\n<li>BA Philosophy – 2012</li>\n</ul>\n</li>\n<li><strong>University of Santo Tomas, High School</strong>\n<ul>\n<li>2012</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pro-Bono Activities</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>U.P. Office of Legal Aid – 2016-2017</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Tenure at firm</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>February 2022</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Your Legal Superpower</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>My legal superpower is I eat writing assignments for breakfast.</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pets and Hobbies</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Pets :\n<ul>\n<li>Waffle the Kuya Baby aka “Best Boy” – American Staffordshire</li>\n<li>Kyuubi the Destroyer aka “Handsome Boy” – Rottweiler-Labrador</li>\n</ul>\n</li>\n<li>Hobbies:\n<ul>\n<li>Hiking</li>\n<li>Being in the mountains</li>\n<li>Playing the ukulele</li>\n<li>Contemplating the meaning of life</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Maria Lua','','publish','closed','closed','','maria-lua','','','2022-09-23 08:31:49','2022-09-23 12:31:49','',46191,'https://duplicate-3602675.findlaw5.flsitebuilder.com/?page_id=49344',0,'page','',0),(49382,1,'2022-08-29 10:46:21','2022-08-29 14:46:21','/*\r\n	|--------------------------------------------------------------------------\r\n	| MJD - Mobile Menu - 9-2022\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n\r\n/* X icon in expanded mobile menu */\r\n\r\n.mobile_nav.opened .mobile_menu_bar:before {\r\ncontent: \'\\4d\';\r\n}\r\n\r\n/* Center-align moble menu items */\r\n.et_mobile_menu li {\r\ntext-align:center !important;\r\n}\r\n  \r\n.et_mobile_menu li li, .et_mobile_menu li ul {\r\npadding-left:0 !important;\r\n}\r\n\r\n/* Make mobile menu fullwidth */\r\n.et_mobile_menu {\r\nmin-width: 100vw;\r\nmargin-left: 0vw;\r\n}\r\n\r\n/* Make the mobile menu full height */\r\n.et_mobile_menu {\r\nmin-height:100vh !important;\r\nmin-height: -webkit-fill-available;\r\npadding-top:50px !important;\r\n}\r\nhtml {\r\nheight: -webkit-fill-available;\r\n}\r\n\r\n/*\r\n	|-------------------------------------------------------------------------- \r\n	| Table of Contents\r\n	|-------------------------------------------------------------------------- \r\n\r\n		General\r\n		Typography\r\n		Links\r\n		Buttons\r\n		Forms\r\n		Form Disclaimer\r\n		Header\r\n		Footer\r\n		Home Page\r\n		Internal Layout\r\n		Blog\r\n		Attorney Profiles\r\n		PPC\r\n		VFI\r\n\r\n	*/\r\n\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n	| General\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n\r\n	/* Set cursor for anchors without HREF */\r\n	a:not([href]) {\r\n		cursor: default;\r\n	}\r\n\r\n	/* Prevent NAP phone numbers from breaking mid-word */\r\n	.nap-item--phone {\r\n		white-space: nowrap;\r\n	}\r\n\r\n	/* Hide empty paragraph tags */\r\n	p:empty {\r\n		display: none;\r\n	}\r\n\r\n	/* Remove bottom margin on single post pages */\r\n	.single .et_pb_post {\r\n		margin-bottom: 0;\r\n	}\r\n\r\n	/* Remove margin from Brightcove video */\r\n	figure.c-brightcove {\r\n		margin: 0;\r\n	}\r\n\r\n	/* Fixes FontAwesome load issue where multiple icons initially appear */\r\n	#fl-template.fl-template .et_pb_custom_button_icon:before {\r\n		display: none !important;\r\n	}\r\n\r\n	#fl-template.fl-template .et_pb_custom_button_icon.divi_font_awesome_icon:before {\r\n		display:inline-block !important;\r\n	}\r\n\r\n	/* Sets image width for featured images in search results */\r\n	.search .entry-featured-image-url img {\r\n		width: 200px!important;\r\n	} \r\n\r\n	/* Remove animation for mobile devices */\r\n	@media (max-width: 768px) {\r\n		.et_had_animation, .et_animated {\r\n			animation: none !important;\r\n			transform: none !important;\r\n			opacity: 1!important;\r\n		}\r\n	}\r\n\r\n	/* Reverse order of column stacking for row on mobile */\r\n	@media (max-width: 980px) {\r\n		.fl-reverse-column-order {\r\n			display: flex;\r\n			flex-direction: column-reverse;\r\n		 }\r\n	}\r\n\r\n	/* Vertically Align Items */\r\n	@media (min-width: 981px) {\r\n		.fl-align-center {\r\n			display: flex;\r\n			align-items: center;\r\n		 }\r\n	}\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Typography\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	html {\r\n		font-size: 18px;\r\n	}\r\n\r\n	body,\r\n	input,\r\n	textarea,\r\n	select {\r\n		font-weight: unset;\r\n		line-height: 1.5;\r\n	}\r\n\r\n	p,\r\n	.et_pb_text ol,\r\n	.et_pb_text ul {\r\n		padding-bottom: 1.5em;\r\n	}\r\n\r\n	hr {\r\n		border: 0.5px solid rgba(0, 0, 0, 0.2);\r\n	}\r\n\r\n	blockquote {\r\n		margin-top: 0;\r\n		margin-bottom: 1.5em;\r\n	}\r\n\r\n	h1,\r\n	h2,\r\n	h3,\r\n	h4,\r\n	h5,\r\n	h6 {\r\n		padding-top: 1.5rem;\r\n		padding-bottom: 1.5rem;\r\n		font-weight: unset;\r\n		line-height: 1.2;\r\n		overflow-wrap: normal;\r\n	}\r\n\r\n	/* Remove the top padding from a header if it’s the first child */\r\n	h1:first-child,\r\n	h2:first-child,\r\n	h3:first-child,\r\n	h4:first-child,\r\n	h5:first-child,\r\n	h6:first-child {\r\n		padding-top: 0;\r\n	}\r\n\r\n	/* Remove the bottom padding from a header if it’s the last child */\r\n	h1:last-child,\r\n	h2:last-child,\r\n	h3:last-child,\r\n	h4:last-child,\r\n	h5:last-child,\r\n	h6:last-child {\r\n		padding-bottom: 0;\r\n	}\r\n\r\n	/* Reset button font weight and line height */\r\n	.et_pb_button {\r\n		font-weight: unset;\r\n		line-height: 1.2 !important;\r\n	}\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Links\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/* Dark links (dark links on a light background) */\r\n	/* .fl-darklinks a:link,\r\n	.fl-darklinks a:visited {\r\n		color: #1c5285 !important;\r\n		text-decoration: underline;\r\n	} */\r\n\r\n	.fl-darklinks a:hover,\r\n	.fl-darklinks a:focus,\r\n	.fl-darklinks a:active {\r\n		color: #000000 !important;\r\n		text-decoration: none;\r\n	}\r\n\r\n	/* Light links (light links on a dark background) */\r\n	/* .fl-lightlinks a:link,\r\n	.fl-lightlinks a:visited {\r\n		color: #ccdceb !important;\r\n		text-decoration: underline;\r\n	} */\r\n\r\n	.fl-lightlinks a:hover,\r\n	.fl-lightlinks a:focus,\r\n	.fl-lightlinks a:active {\r\n		color: #211865 !important;\r\n		text-decoration: none;\r\n	}\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Buttons\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/* Form submit buttons */\r\n	.fl-short-form input[type=\'button\'],\r\n	.fl-long-form input[type=\'button\'],\r\n	.fl-attorney-form .nf-form-content input[type=\'button\'] {\r\n		height: auto !important;\r\n		padding: 15px 30px !important;\r\n		color: #ffffff !important;\r\n		background: #1c5285 !important;\r\n		border: none !important;\r\n		border-width: 0px !important;\r\n		border-radius: 0px !important;\r\n		font-family: inherit !important;\r\n		font-size: inherit !important;\r\n		font-weight: inherit !important;\r\n		line-height: 1.2 !important;\r\n		letter-spacing: 0px !important;\r\n		text-transform: none !important;\r\n		cursor: pointer !important;\r\n		transition: all 0.2s ease-out !important;\r\n	}\r\n\r\n	/* Form submit buttons hover */\r\n	.fl-short-form input[type=\'button\']:hover,\r\n	.fl-long-form input[type=\'button\']:hover,\r\n	.fl-attorney-form .nf-form-content input[type=\'button\']:hover {\r\n		color: #ffffff !important;\r\n		background: #000000 !important;\r\n	}\r\n\r\n	/* Email me button */\r\n	.fl-email-attorney a.et_pb_email_attorney {\r\n		height: auto !important;\r\n		padding: 15px 30px !important;\r\n		color: #ffffff !important;\r\n		background: #1c5285 !important;\r\n		border: none !important;\r\n		border-width: 0px !important;\r\n		border-radius: 0px !important;\r\n		font-family: inherit !important;\r\n		font-size: inherit !important;\r\n		font-weight: inherit !important;\r\n		line-height: 1em !important;\r\n		letter-spacing: 0px !important;\r\n		text-transform: none !important;\r\n		cursor: pointer !important;\r\n		transition: all 0.2s ease-out !important;\r\n	}\r\n\r\n	/* Email me button hover */\r\n	.fl-email-attorney a.et_pb_email_attorney:hover {\r\n		padding: 15px 30px !important;\r\n		color: #ffffff !important;\r\n		background: #000000 !important;\r\n		border: none !important;\r\n		border-radius: 0px !important;\r\n		letter-spacing: 0px !important;\r\n		cursor: pointer !important;\r\n	}\r\n\r\n	/* Back to top button */\r\n	.et_pb_scroll_top.et-pb-icon {\r\n\r\n	} \r\n\r\n	/* Back to top button hover */\r\n	.et_pb_scroll_top.et-pb-icon:hover {\r\n\r\n	}\r\n\r\n	/* \r\n	|-------------------------------------------------------------------------- \r\n	| Forms\r\n	|-------------------------------------------------------------------------- \r\n	*/ \r\n\r\n	/* Remove max width and padding */ \r\n	.nf-form-content {\r\n		padding: 0 !important;\r\n		max-width: 100% !important;\r\n	}\r\n\r\n	/* Hide Short Form – Contact Page, Thank You Page */\r\n	.page-contact .fl-short-form-section,\r\n	.page-contact .fl-short-form,\r\n	.page-thank-you .fl-short-form-section,\r\n	.page-thank-you .fl-short-form {\r\n		display: none;\r\n	}\r\n\r\n	/* Fixes checkboxes on Long Form */\r\n	.nf-form-content label,\r\n	.fl-long-form .nf-form-content label {\r\n		line-height: 25px!important;\r\n	}\r\n\r\n	.checkbox-container .nf-field-element,\r\n	.listcheckbox-container .nf-field-element input[type=\"checkbox\"],\r\n	.fl-long-form .checkbox-container .nf-field-element,\r\n	.fl-long-form .listcheckbox-container .nf-field-element input[type=\"checkbox\"] {\r\n		opacity: 1!important;\r\n	}\r\n\r\n	.listcheckbox-container .nf-field-element label:after,\r\n	.fl-long-form .listcheckbox-container .nf-field-element label:after {\r\n		left: -30px !important;\r\n	}\r\n\r\n	.nf-form-content .listcheckbox-wrap li {\r\n		margin-bottom: 10px!important;\r\n	}\r\n\r\n	/* Changes Error Message, Required Symbol when Short Form is set to light text */\r\n	.fl-short-form.et_pb_bg_layout_dark .nf-error .nf-error-msg,\r\n	.fl-short-form.et_pb_bg_layout_dark .ninja-forms-req-symbol,\r\n	.fl-short-form.et_pb_bg_layout_dark .nf-error-msg {\r\n		color: #FF0000 !important;\r\n	}\r\n\r\n	/* Customize Short Form styles - enable, as needed */\r\n\r\n	/* Short Form Field Sytles */\r\n	/*.fl-short-form .nf-form-content .list-select-wrap .nf-field-element>div,\r\n	.fl-short-form .nf-form-content input:not([type=button]),\r\n	.fl-short-form .nf-form-content textarea,\r\n	.fl-short-form .nf-form-content .list-select-wrap .nf-field-element>div:focus,\r\n	.fl-short-form .nf-form-content input:not([type=button]):focus,\r\n	.fl-short-form .nf-form-content textarea:focus {\r\n		background: ;\r\n		border: ;\r\n		border-radius: ;\r\n		box-shadow: ;\r\n		color: ;\r\n	}*/\r\n\r\n	/* Short Form Field Placeholder Text */\r\n	/*.fl-short-form .nf-form-content .list-select-wrap .nf-field-element>div::placeholder,\r\n	.fl-short-form .nf-form-content input:not([type=button])::placeholder,\r\n	.fl-short-form .nf-form-content textarea::placeholder {\r\n		color: ;\r\n	}*/\r\n\r\n	/* Short Form Field Label Text */\r\n	/*.fl-short-form .nf-field-label label {\r\n		font-family: ;\r\n		text-transform: ;\r\n		font-weight: ;\r\n	}*/\r\n\r\n	/* Short Form Error Message */\r\n	/*.fl-short-form .nf-error.field-wrap .nf-field-element:after {\r\n		background: !important;\r\n		color: !important;\r\n	}*/\r\n\r\n	/* Short Form Required Symbol */\r\n	/*.fl-short-form .nf-error-msg,\r\n	.fl-short-form .ninja-forms-req-symbol {\r\n		color: !important;\r\n	}*/\r\n\r\n	/* Short Form Field Error */\r\n	/*.fl-short-form .nf-error .ninja-forms-field {\r\n	 * 	border: 1px solid !important;\r\n	}*/\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Form Disclaimer\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	.fl-disclaimer {\r\n		max-height: 0;\r\n		opacity: 0;\r\n		overflow: hidden;\r\n		transition: opacity 0.15s ease-in, max-height 0.15s ease-in 0.15s;\r\n	}\r\n\r\n	.fl-disclaimer.active {\r\n		opacity: 1;\r\n		transition: opacity 0.15s ease-out 0.15s, max-height 0.15s ease-out;\r\n	}\r\n\r\n	.fl-disclaimer__inner {\r\n		position: relative;\r\n		margin-top: 25px;\r\n		padding: 20px;\r\n		border: 1px solid rgba(0, 0, 0, 0.2);\r\n		background: #fff;\r\n		font-size: 14px;\r\n		color: black;\r\n		transform: scale(0.95);\r\n		transition: transform 0.15s ease-out;\r\n	}\r\n\r\n	.fl-disclaimer.active .fl-disclaimer__inner {\r\n		transform: scale(1);\r\n		transition: transform 0.15s ease-out 0.15s;\r\n	}\r\n\r\n	.fl-disclaimer__icon {\r\n		display: inline-block;\r\n		vertical-align: top;\r\n		font-family: dashicons;\r\n	} \r\n\r\n	.fl-disclaimer__close {\r\n		position: absolute;\r\n		top: 0;\r\n		right: 0;\r\n		display: flex;\r\n		justify-content: center;\r\n		padding: 5px;\r\n		font-family: dashicons;\r\n		font-size: 16px;\r\n		cursor: pointer;\r\n		transition: .15s ease-out;\r\n	}\r\n\r\n	.fl-disclaimer__close:hover, .fl-disclaimer__close:focus {\r\n		opacity: 0.5;\r\n	}\r\n\r\n	/* Fixes form disclaimer popup icons not showing. */\r\n	.dashicons-info {\r\n		vertical-align: bottom;\r\n	}\r\n\r\n	.dashicons-info:before {\r\n		content: \"\\f335\";\r\n	}\r\n\r\n	.dashicons-no-alt {\r\n		padding-top: 0;\r\n	}\r\n\r\n	.dashicons-no-alt:before {\r\n		font-family: FontAwesome;\r\n		content: \"f00d\";\r\n	} \r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Header\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Footer\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Home Page\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Internal Layout\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Blog\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/* Adds space above Monarch share buttons */\r\n	.single-post .et_social_inline {\r\n		margin-top: 30px!important;\r\n	}\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| Attorney Profiles\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/* Indents bulleted lists on attorney profiles */\r\n	.type-people .fl_people_single ul.bio-list {\r\n		padding-left: 30px;\r\n	}\r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| PPC\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/* PPC Form Button */\r\n	.fl-ppc-form input[type=’button’] {\r\n		height: auto !important;\r\n		padding: 15px 30px !important;\r\n		color: #ffffff !important;\r\n		background: #1c5285 !important;\r\n		border: none !important;\r\n		border-width: 0px !important;\r\n		border-radius: 0px !important;\r\n		font-family: inherit !important;\r\n		font-size: inherit !important;\r\n		font-weight: inherit !important;\r\n		line-height: 1.2 !important;\r\n		letter-spacing: 0px !important;\r\n		text-transform: none !important;\r\n		cursor: pointer !important;\r\n		transition: all 0.2s ease-out !important;\r\n	}\r\n\r\n	/* PPC Form Button Hover */\r\n	.fl-ppc-form input[type=’button’]:hover {\r\n		color: #ffffff !important;\r\n		background: #000000 !important;\r\n	}\r\n\r\n	/* PPC Dark links (dark links on a light background) */\r\n	.fl-ppc-darklinks a:link,\r\n	.fl-ppc-darklinks a:visited {\r\n		color: #1c5285 !important;\r\n		text-decoration: underline;\r\n	}\r\n\r\n	.fl-ppc-darklinks a:hover,\r\n	.fl-ppc-darklinks a:focus,\r\n	.fl-ppc-darklinks a:active {\r\n		color: #000000 !important;\r\n		text-decoration: none;\r\n	}\r\n\r\n	/* PPC Light links (light links on a dark background) */\r\n	.fl-ppc-lightlinks a:link,\r\n	.fl-ppc-lightlinks a:visited {\r\n		color: #ccdceb !important;\r\n		text-decoration: underline;\r\n	} \r\n\r\n	.fl-ppc-lightlinks a:hover,\r\n	.fl-ppc-lightlinks a:focus,\r\n	.fl-ppc-lightlinks a:active {\r\n		color: #ffffff !important;\r\n		text-decoration: none;\r\n	} \r\n\r\n	/*\r\n	|-------------------------------------------------------------------------- \r\n	| VFI\r\n	|-------------------------------------------------------------------------- \r\n	*/\r\n\r\n	/* Visual Focus Indicator (VFI) across entire site. */\r\n	a:focus,\r\n	form .ninja-forms-field.nf-element[type=button]:focus,\r\n	input[type=search]:focus,\r\n	form.search-form input.search-submit:focus,\r\n	form.et_pb_searchform input.et_pb_searchsubmit:focus,\r\n	select:focus,\r\n	.nf-form-content input:focus,\r\n	.nf-form-content textarea:focus,\r\n	.nf-form-content .checkbox-label-focused:after,\r\n	.swiper-buttton-container div:focus {\r\n		outline: #000 2px dotted!important;\r\n		outline-offset: 0!important;\r\n		box-shadow: 0 0 0 2px #fff!important;\r\n		border-radius: 0!important;\r\n	} \r\n\r\n	/* Allows VFIs to be seen on blog share buttons */\r\n	.single-post a.et_social_share.keyboard-outline,\r\n	.et_social_icons_container a:focus {\r\n		outline: #fff 2px dotted!important;\r\n		outline-offset: -4px!important;\r\n	} \r\n\r\n	/* Allows VFIs to be seen on carousel links, blurb links, logo links */\r\n	.dica_divi_carousel a,\r\n	.et_pb_main_blurb_image a,\r\n	.et_pb_menu__logo a {\r\n		display: table!important;\r\n	}\r\n\r\n	/* Allows VFIs to be seen on logo links */\r\n	.et_pb_menu__logo a {\r\n		outline-offset: -2px!important;\r\n	}\r\n\r\n	/* Allows VFIs to be seen on carousel links */\r\n	.dica_divi_carousel a,\r\n	.et_pb_image a {\r\n		display: inline-block!important;\r\n	}\r\n\r\n	/* Allows VFIs to be seen on radio buttons */\r\n	.listradio-wrap .nf-field-element input {\r\n		display: initial!important;\r\n	}\r\n\r\n	/* Fixes tabbing and Visual Focus Indicators (VFIs) working properly in the main menu (in older sites) */\r\n	.nav li.et-hover>ul {\r\n		opacity: 1;\r\n		visibility: visible;\r\n	}\r\n	/*\r\n	|------------------------------------------------------------------\r\n	|       1.  Verical center/end\r\n	|------------------------------------------------------------------\r\n	*/\r\n	/* Vertically center header elements */\r\n	.fl-vertical-center {\r\n		display: flex;\r\n		flex-direction: column;\r\n		justify-content: center;\r\n	}\r\n	/* Vertically end header elements */\r\n	.fl-vertical-end {\r\n		display: flex;\r\n		flex-direction: column;\r\n		justify-content: flex-end;\r\n	}\r\n	body{overflow-x: hidden !important;}\r\n	.et_pb_row{\r\n	max-width: 1366px!important;\r\n	padding:0px !important;\r\n	}\r\n.fl-banner-row{\r\n	max-width: 100% !important;\r\n	width:100% !important;\r\n}\r\n	#fl-sticky-mobile-menu {\r\n		width: 100% !important;\r\n	}\r\n	/*\r\n	|------------------------------------------------------------------\r\n	|       2.   Light Links & Dark Links\r\n	|------------------------------------------------------------------\r\n	*/\r\n	.fl-lightlinks a,#email_attorney a{color: #fff !important; text-decoration:underline !important;}\r\n	.fl-lightlinks a:hover, .fl-lightlinks a:focus, .fl-lightlinks a:active,#email_attorney a:hover{color:#fff !important;text-decoration:none !important;}\r\n	.fl-darklinks a{color: #211865 !important;\r\n	  text-decoration:underline !important;\r\n	}\r\n	.fl-darklinks a:hover, .fl-darklinks a:focus, .fl-darklinks a:active{color:#000 !important;\r\n	text-decoration:none !important;}\r\n	.fl-inner-left a,.fl-blog-left a{text-decoration:underline !important;}\r\n	.fl-inner-left a:hover,.fl-blog-left a:hover{text-decoration:none !important;}\r\n	.fl-blog-left h2.entry-title a{text-decoration:none !important;}\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n			  3. Desktop Header\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n	@media all and (min-width: 981px) {\r\n	  .fl-center{\r\n		display: flex;\r\n		flex-direction: column;\r\n		justify-content: center;\r\n	  }\r\n	  .fl-desk-header .nav li.menu-item--depth-0 a:hover{\r\n		opacity:1 !important;\r\n	  }\r\n	  .fl-desk-header .nav li.menu-item--depth-0>a{\r\n		color: #fff !important;\r\n		padding: 13px 0 0 !important;\r\n	  }\r\n	  .fl-desk-header .nav li.current-menu-item>a, .fl-desk-header .nav li>a:hover{opacity:1 !important; color: #fff !important;}\r\n		.fl-desk-header li.menu-item--depth-0:last-child{\r\n			padding-right: 0px !important;\r\n		}\r\n		.fl-desk-header .et-menu li li a{\r\n			padding: 10px !important;\r\n			width:240px !important;\r\n		color: #211865 !important;\r\n		font-size: 17px !important;\r\n		}\r\n		.fl-desk-header .et-menu-nav>ul ul{padding:0px !important;\r\n	  margin-top:5px !important;}\r\n		.fl-desk-header .nav li li{\r\n		padding:0px !important;\r\n		background-color: #ffff;\r\n	  }\r\n	  .fl-desk-header .nav li.menu-item--depth-0{\r\n		padding:0px !important;\r\n		margin:0px 20px 0px 20px!important;\r\n	  }\r\n	  .fl-desk-header .nav li.menu-item--depth-0:last-child{\r\n		padding-right:0px !important;\r\n		margin-right:0px !important;\r\n	  }\r\n	  .lm-ignoreme .nav ul li a:hover, .fl-desk-header ul.sub-menu li.current-menu-item>a, .fl-desk-header .et_pb_menu .nav li ul.sub-menu a:hover,.fl-desk-header .et_pb_menu .nav li ul.sub-menu li.current-menu-item>a{\r\n		background-color: #2e5591!important;\r\n		color: #fff !important;\r\n	  }\r\n	  .fl-desk-header .et_pb_menu_0_tb_header.et_pb_menu .nav li ul.sub-menu li.current-menu-item>a {\r\n		  background-color: #ed7f66 !important;\r\n		color: #fff !important;\r\n	  }\r\n	  .fl-desk-header .et_pb_menu_0_tb_header.et_pb_menu .nav li ul.sub-menu li.current-menu-item ul li a:hover{\r\n		  background-color: #ed7f66 !important;\r\n		color: #000 !important;\r\n	  }\r\n	   .fl-desk-header .et_pb_menu_inner_container{\r\n		float:none !important;\r\n	  } \r\n	  .fl-desk-header .et_pb_menu ul li>a {\r\n		padding: 0px 0px 8px !important;\r\n		color:#870821 !important;\r\n	}\r\n	  .fl-desk-header .et-menu .menu-item-has-children>a {\r\n		padding-right: 20px !important;}\r\n	  .fl-desk-header .et_pb_menu .nav li ul.sub-menu a {\r\n		padding: 50px 15px !important;\r\n		font-size: 17px !important;\r\n	   background: #fbeace !important;\r\n		color: #000 !important;\r\n	}\r\n	  .fl-desk-header .et-menu-nav .menu-item--depth-1>ul {\r\n		margin-top: 20px !important;\r\n	}\r\n	.fl-desk-header .et-menu .menu-item-has-children:hover>a {\r\n		color: #fff !important;\r\n	}\r\n	.fl-desk-header .nav li>a:before {\r\n		content: \"\";\r\n	  border-top: #fff solid 4px;\r\n		position: absolute;\r\n		width: 1%;\r\n		left: 0;\r\n		top: -15px;\r\n		transition: all 1s;\r\n	   opacity:0;\r\n	}\r\n	.fl-desk-header .nav li.current-menu-item>a:before,.fl-desk-header .nav li>a:hover:before  {\r\n	   width: 100%;\r\n		opacity: 1;\r\n	}\r\n	\r\n	  .fl-desk-header .et-menu li li.menu-item-has-children>a:first-child:after {\r\n		right: 10px !important;\r\n	}\r\n	  .fl-desk-header .et-menu .menu-item-has-children>a:first-child:after {\r\n		right: -15px;\r\n		top: 15px;\r\n	}\r\n	}\r\n	@media (max-width:1440px) and (min-width:981px){\r\n	  .fl-desk-header .nav li.menu-item--depth-0{\r\n		margin: 0px 8px 0px 8px!important;\r\n	  }\r\n	}\r\n	header{background:#000 !important;}\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n	|    4. Mobile Header Columns\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n	 #fl-template .mobile_menu_bar:after{\r\n	  color:#fff !important;\r\n	}\r\n	.fl-mobile-menu.et_pb_menu ul li a{\r\n	  opacity:1 !important;\r\n	}\r\n	.fl-mobile-menu.et_pb_menu ul li.current-menu-item>a{ \r\n		color: #211865 !important;\r\n	  }\r\n	#fl-template .et_pb_menu .et_mobile_menu .menu-item-has-children.visible>a.fl-toggle-icon, #main-header #fl-template .et_mobile_menu .menu-item-has-children.visible>a.fl-toggle-icon{\r\n	  transform: rotate(0deg) !important;\r\n	}\r\n	#fl-template .et_pb_menu .et_mobile_menu .menu-item-has-children>a.fl-toggle-icon{\r\n	  right:0px !important;\r\n	}\r\n	#main-header #fl-template .et_mobile_menu .menu-item-has-children>a.fl-toggle-icon{\r\n	  right:5px !important;\r\n	}\r\n	#fl-template .et_mobile_menu { width: 100vw; height: calc(100vh - 50px); padding-bottom: 350px; overflow: auto; }\r\n	@media (max-width:457px){\r\n	  .fl-logo {\r\n		width: 200px!important;\r\n	}\r\n	}\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n	|    5. Practice Area\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n	.fl-prac-module:hover .et_pb_main_blurb_image img{\r\n		filter: brightness(0) invert(1);\r\n		transform: rotateY( 360deg);\r\n		transition: all ease-out .6s;\r\n	}\r\n	.fl-prac-module h3.et_pb_module_header {\r\n		padding-bottom: 0px !important;\r\n	}\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n					  Module3\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n	.fl-list ul {\r\n		padding-bottom: 0px !important;\r\n	}\r\n	.fl-list ul li {\r\n		padding-left: 1.5em;\r\n		margin-bottom: 10px;\r\n	}\r\n	.fl-feature.et_pb_equal_columns {\r\n		max-width: 900px !important;\r\n	}\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n		Testimonial slider CSS\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n		.fl-testimonials .et_pb_slide_description, .et_pb_slider_fullwidth_off .et_pb_slide_description {\r\n		width: auto; margin: auto; padding: 0px !important; }\r\n		.fl-testimonials .et-pb-arrow-prev { left: 1px !important; opacity: 1 !important; top:55px !important; }\r\n		.fl-testimonials .et-pb-arrow-next { right: 1px !important; opacity: 1 !important; top:55px !important; }\r\n		.fl-testimonials h2.et_pb_slide_title { padding-bottom: 20px; }\r\n		.fl-testimonials .et_pb_slider:hover .et-pb-arrow-next { right: 0; }\r\n		.fl-testimonials .et_pb_slider:hover .et-pb-arrow-prev { left: 0; }\r\n		.fl-testimonials .et_pb_slide { padding: 5% 10%; }\r\n		.fl-testimonials .et_pb_slide_content { text-shadow: none !important; }\r\n		.fl-testimonials span { font-size: 17px !important; }\r\n	.fl-testimonials  .et-pb-controllers {\r\n		position: absolute;\r\n		bottom: 0px;\r\n		left: 0;\r\n		width: 100%;\r\n		text-align: center;\r\n		z-index: 10;\r\n	}\r\n	.fl-testimonials .et-pb-controllers .et-pb-active-control {\r\n		color: #fff!important;\r\n		background-color: #004993!important;\r\n	}\r\n	.fl-testimonials .et-pb-controllers a {\r\n		width: 12px!important;\r\n		height: 12px!important;\r\n		border: 2px solid #004993!important;\r\n		background-color: #efefef!important;\r\n		color: #6d6d6d!important;\r\n		opacity: 1!important;\r\n	}\r\n/***********Banner fullwidth slider************/\r\n\r\n}\r\n	/*\r\n	|--------------------------------------------------------------------------\r\n					   Short Form\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n\r\n	.fl-short-form::-webkit-input-placeholder { /* Edge */\r\n	  color:#333 !important;\r\n	  opacity:1 !important;\r\n	}\r\n\r\n	.fl-short-form::-ms-input-placeholder { /* Internet Explorer 10-11 */\r\n	  color:#333 !important;\r\n	  opacity:1 !important;\r\n	}\r\n	.fl-short-form::-moz-input-placeholder{\r\n	  color:#333 !important;\r\n	  opacity: 1 !important;}\r\n\r\n	.fl-short-form::placeholder {\r\n	  color:#333 !important;\r\n	  opacity:1 !important;\r\n	}\r\n	.fl-short-form .nf-field-container .field-wrap .nf-element::placeholder {\r\n		color: #333;\r\n	  opacity:1 !important;\r\n	  font-size:16px !important;\r\n	}\r\n	.fl-short-form .nf-form-content input[type=button] {\r\n		background: #fff !important;\r\n		color: #211865 !important;\r\n		font-size: 17px !important;\r\n		font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\r\n		padding: 15px 25px !important;\r\n		cursor: pointer;\r\n	  line-height: 20px !important;\r\n	letter-spacing: 1px;\r\n	  float:right !important;\r\n	 text-transform: uppercase !important;\r\n	  font-weight: 400 !important;\r\n	  filter:none !important;\r\n	 } \r\n	.fl-short-form .nf-form-content input[type=button]:hover{\r\n	   background: #2e5591 !important;\r\n	  color: #fff !important;\r\n	}\r\n	.fl-short-form .nf-form-content {padding-top: 30px !important;}\r\n	.fl-short-form .nf-form-fields-required {text-align: center !important;\r\n	font-size:18px !important;}\r\n	.fl-short-from .form-links{\r\n	  text-align:left !important;\r\n	  font-size: 17px !important;\r\n	}\r\n	.fl-short-form .nf-form-content textarea.ninja-forms-field {\r\n		height: 170px;\r\n		width: 99.5%!important;\r\n		float: left!important;\r\n	}\r\n	@media (max-width:980px){\r\n	  .fl-short-form .nf-form-content input[type=button]{\r\n		padding: 15px 25px!important;\r\n		font-size:14px !important;\r\n	  }\r\n	  .fl-short-form .nf-form-fields-required{\r\n		text-align: center !important;\r\n	  }\r\n	}\r\n	@media (min-width: 600px){\r\n	.fl-short-form .nf-row .nf-cell:nth-child(3) {padding-right: 0px!important;}\r\n	}\r\n	.fl-short-form .nf-error-msg,.fl-short-form .ninja-forms-req-symbol {color:#000 !important;}\r\n	@media (max-width: 600px){\r\n	.fl-short-form .form-links,.fl-disclaimer.active {\r\n	  float: left!important;\r\n	  text-align:left !important;}\r\n	  .fl-short-form .nf-form-content input[type=button]{padding:15px 35px !important;\r\n		font-size:18px !important; \r\n	  float:none !important;}\r\n	}\r\n	.fl-short-form .nf-form-content .list-select-wrap .nf-field-element>div, .fl-short-form .nf-form-content input:not([type=button]), .fl-short-form .nf-form-content textarea{\r\n	  border-width: 1px!important;\r\n		border-color: #c4c4c4 !important;\r\n		background: #fff !important;\r\n		color: #000 !important;\r\n	}\r\n	@media (max-width:350px){\r\n	  .fl-short-form .nf-form-content input[type=button]{\r\n		padding: 15px 10px!important;\r\n		font-size: 14px!important;\r\n	  }\r\n	}\r\n	.fl-short-form input[type=email], .fl-long-form input[type=email]{padding-right:50px !important;}\r\n	.fl-short-form .nf-form-content label {\r\n		font-size: 14px !important;\r\n	}\r\n	@media (min-width:980px){\r\n	  .page-id-46220 #contactform .et_pb_row {\r\n		max-width: 100% !important;\r\n	}\r\n	}\r\n	.fl-short-form .nf-field-container {\r\n		margin-bottom: 15px !important;\r\n	}\r\n@media (max-width:980px){\r\n	.fl-short-form .nf-row:nth-child(3) .nf-cell {\r\n    width: 100%!important;\r\n}\r\n	.fl-short-form .nf-form-content input[type=button]{\r\n		float: none !important;\r\n	}\r\n}\r\n	 /*\r\n	|--------------------------------------------------------------------------\r\n	| Form Disclaimer iCOn Fix\r\n	|--------------------------------------------------------------------------\r\n	*/\r\n	.dashicons-info:before {\r\n	   content: \"70\" !important;\r\n	font-weight: 900 !important;\r\n	font-family: \'ETmodules\' !important;\r\n	}\r\n	.dashicons-no-alt:before {\r\n	content: \"4d\" !important;\r\n	  font-weight: 900 !important;\r\n	font-family: \'ETmodules\' !important;\r\n	}\r\n	.fl-disclaimer__close {\r\n	font-family: ETmodules !important;\r\n	}\r\n	.fl-disclaimer__icon {\r\n	font-family: ETmodules !important;\r\n	font-weight: 900 !important;\r\n	}\r\n	@media(max-width:450px){\r\n	  h1,h2,h3,h4{\r\n		word-break:keep-all;\r\n	  }\r\n	  .fl-cta-button{\r\n		font-size:18px !important;\r\n	  }\r\n	  .fl-image {\r\n		max-width: 250px!important;\r\n	}\r\n	}\r\n	/*\r\n	|------------------------------------------------------------------\r\n	|      animation setting css\r\n	|------------------------------------------------------------------\r\n	*/\r\n	@media (max-width: 768px) {\r\n	.et_had_animation, .et_animated {\r\n	   animation: none!important;\r\n	   transform: none!important;\r\n	   opacity: 1!important;\r\n	}\r\n	}\r\n	.fl-attorney .et_pb_blurb_container {\r\n		padding: 18px 0 0!important;\r\n	}\r\n	/*\r\n		|--------------------------------------------------------------------------\r\n		| Innerpage\r\n		|--------------------------------------------------------------------------\r\n		*/\r\n	/* Show parent pages */\r\n	  .fl-sidebar .menu-practice-areas-container > ul > li {\r\n		display: block;\r\n	  margin-bottom: 12px !important;\r\n	  }\r\n\r\n	  /* Show related child pages */\r\n	  .fl-sidebar .menu-practice-areas-container .current-menu-item > ul > li,\r\n	  .fl-sidebar .menu-practice-areas-container .current-menu-parent > ul > li,\r\n	  .fl-sidebar .menu-practice-areas-container .current-menu-grandparent > ul > li  {\r\n		display: block;\r\n	  }\r\n	  .fl-sidebar .menu-item-has-children.current-menu-item > a::after,\r\n	  .fl-sidebar .menu-item-has-children.current-menu-parent > a::after {\r\n		  content: \"\";\r\n	  }\r\n\r\n	  /* style sub menu */\r\n	  .fl-sidebar .sub-menu {\r\n		margin-top: .5em;\r\n		text-transform: initial;\r\n		font-weight: 400;\r\n	  }\r\n\r\n	  /* style parent pages */\r\n	  .fl-sidebar .menu-practice-areas-container > ul > li {\r\n		font-weight: 400;\r\n	  }\r\n	.fl-sidebar ul.menu,#fl-sidebar-blog ul, #fl-sidebar-blog .textwidget p {\r\n		margin: 0px 0px 0px 22px;\r\n	}\r\n	.fl-sidebar li a{color:#fff !important;\r\n	  text-decoration:none !important;}\r\n	.fl-sidebar li.current-menu-item>a,.fl-sidebar li a:hover,.fl-sidebar .menu-practice-areas-container>ul>li.menu-item.menu-item-has-children.current-menu-parent.menu-item--depth-0>a, .fl-sidebar li.menu-item.menu-item-has-children.current-menu-parent.menu-item--depth-1>a {\r\n		color: #fff !important;\r\n	text-decoration:underline !important;}\r\n	.fl-sidebar h4.widgettitle {\r\n		border-bottom: 2px dotted #fff;\r\n		padding-bottom: 15px!important;\r\n		margin-bottom: 25px;\r\n	}\r\n	.fl-sidebar .menu-practice-areas-container>ul>li{\r\n	  margin-top: 12px !important;\r\n	}\r\n	.fl-inner-left .et_pb_section, .fl-inner-left .et_pb_row {\r\n		padding: 0;\r\n	}\r\n	.fl-inner-left h1,.fl-inner-left h2, .fl-inner-left h3 {\r\n		padding: 10px 0px 22px !important;\r\n	  line-height: 1.25em !important;\r\n	}\r\n	.fl-inner-left p,.fl-row-attorney p, .fl-row-attorney li ,.fl-inner-left li{\r\n		padding-bottom: 15px;\r\n	  font-size: 18px;\r\n		line-height: 1.5em;\r\n	}\r\n	.fl-inner-left ul {\r\n		padding-bottom: 15px;\r\n	}\r\n	.fl-inner-left .simple-sitemap-page .children{\r\n	  margin-top: 10px;\r\n	}\r\n	.et_pb_widget_area{\r\n	  border:3px solid #fff !important;\r\n	}\r\n	@media (max-width:980px){\r\n	  .fl-inner-left h1,.fl-inner-left h2, .fl-inner-left h3,.fl-row-attorney h1{\r\n		font-size: 30px !important;\r\n		line-height: 1.25em !important;\r\n	  }\r\n	  .fl-row-attorney h2,.fl-row-attorney h3{\r\n		font-size:24px !important;\r\n		line-height: 1.25em !important;\r\n	  }\r\n	}\r\n	@media (max-width:768px){\r\n	  .fl-inner-left h1, .fl-inner-left h2, .fl-inner-left h3, .fl-row-attorney h1{\r\n		font-size:28px !important;\r\n		line-height: 1.25em !important;\r\n	  }\r\n	  .fl-row-attorney h2,.fl-row-attorney h3{\r\n		font-size:24px !important;\r\n		line-height: 1.25em !important;\r\n	  }\r\n	}\r\n	.fl-sidebar h2.widgettitle {\r\n		padding-bottom: 10px !important;\r\n	}\r\n	/*\r\n		|--------------------------------------------------------------------------\r\n		| Contact Page\r\n		|--------------------------------------------------------------------------\r\n		*/\r\n	/************Hidden shortform in contact page*********************/\r\n	.page-id-45927 #contactform {\r\n		display: none !important;\r\n	}\r\n	.fl-long-form {\r\n		margin-top: 30px;\r\n	}\r\n	.fl-long-form .nf-form-content input[type=button],#email_attorney .nf-form-content input[type=button],body.et-db #et-boc .fl-email-btn .et_pb_button{\r\n		background: #211865 !important;\r\n		color: #fff !important;\r\n		font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\r\n		padding: 15px 30px!important;\r\n		cursor: pointer;\r\n		line-height: 20px!important;\r\n		letter-spacing: 1px !important;\r\n	  	font-weight: 400;\r\n	  	text-transform: uppercase !important;\r\n	}\r\n	.fl-long-form .nf-form-content input[type=button]:hover,#email_attorney .nf-form-content input[type=button]:hover,body.et-db #et-boc .fl-email-btn .et_pb_button:hover{\r\n	    background:#000!important;\r\n		color:#fff   !important;\r\n	}\r\n	.checkbox-container .nf-field-element, .listcheckbox-container .nf-field-element input[type=\"checkbox\"]{\r\n	  opacity: 0;}\r\n	.fl-long-form .nf-form-content .ninja-forms-field{\r\n	  color:#000 !important;\r\n	}\r\n	#email_attorney .nf-form-content input:not([type=button]), #email_attorney .nf-form-content textarea{\r\n	  color:#000 !important;\r\n	}\r\n	.fl-email-me a.et_pb_button {\r\n		padding: 15px 30px !important;\r\n		color: #000!important;\r\n		border-radius: 60px 0 60px 60px!important;\r\n	}\r\n	.fl-email-me a.et_pb_button:hover {\r\n		padding: 15px 30px !important;\r\n		color: #000!important;\r\n		border-radius: 60px 60px 60px 60px!important;\r\n	}\r\n		#email_attorney {\r\n    background: #2e5591!important;\r\n}\r\n\r\n	 /* Remove duplicate checkboxes */\r\n	.fl-long-form .list-checkbox-wrap input[type=”checkbox”] {\r\n	   opacity: 0;\r\n	 }\r\n\r\n	 /* Correct line-height alignment issue after duplicate checkboxes have been removed */\r\n	.fl-long-form .list-checkbox-wrap li label{\r\n	  line-height:1.4em !important;\r\n	}\r\n	.fl-long-form .nf-form-fields-required,.fl-long-form .form-links,.fl-short-form .form-links,.fl_people_single a {\r\n		font-size: 18px !important;\r\n	}\r\n\r\n\r\n	/* --------------------------------\r\n	Blog Right side content\r\n	--------------------------------- */\r\n	@media (min-width: 981px){\r\n	  #fl-sidebar-blog{ width: 30% !important; }\r\n	  .et_pb_column #fl-sidebar-blog{ width: 100% !important; }\r\n	  #fl-sidebar-blog .et_pb_widget.widget_media_image img{ max-width: 95% !important;}\r\n	}\r\n	#fl-sidebar-blog { padding: 30px !important; margin-bottom: 0px;}\r\n	#fl-sidebar-blog .et_pb_widget{ float: none; width: 100%; margin-bottom: 30px;}\r\n\r\n	#fl-sidebar-blog a{ color: #fff !important;\r\n	  text-decoration:none !important;}\r\n	#fl-sidebar-blog a:hover { color: #fff !important;\r\n	text-decoration:underline !important;}\r\n	/* Sidebar WidgetTitle */\r\n	#fl-sidebar-blog .widgettitle { font-weight: 600; font-size: 32px; color: #fff;\r\n	padding-bottom: 17px !important;}\r\n\r\n	/* Sidebar List */\r\n	#fl-sidebar-blog .et_pb_widget ul{ list-style-type: circle; padding-left: 20px;}\r\n	#fl-sidebar-blog .et_pb_widget ul li { padding-left: 0px; position: relative; color: #fff;\r\n	margin-bottom: 25px;}\r\n	#fl-sidebar-blog .et_pb_widget ul li a { color: #fff;\r\n	text-decoration:none !important;}\r\n	#fl-sidebar-blog .et_pb_widget ul li a:hover { color: #fff !important;\r\n	text-decoration:underline !important;}\r\n\r\n	/* Sidebar Search Bar */\r\n	#fl-sidebar-blog input.search-field{\r\n	  padding: 0 14px;\r\n	  border: none !important;\r\n		width: 63%;\r\n	  height:50px;\r\n	  margin-right: 5px;\r\n	}\r\n	#fl-sidebar-blog input[type=\'submit\']{\r\n	   width:32%;\r\n		 height:50px !important;\r\n		 font-size:14px;\r\n		 line-height: 20px !important;\r\n		 cursor: pointer!important;\r\n		background: #fff !important;;\r\n		color: #211865 !important;\r\n		font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\r\n	  vertical-align: middle;\r\n		letter-spacing: 1px;\r\n	  border:1px solid transparent !important;\r\n	}\r\n	#fl-sidebar-blog input[type=\'submit\']:hover{\r\n	  background: #318bb4 !important;\r\n	  color: #fff !important;\r\n	}\r\n	#fl-sidebar-blog::-webkit-input-placeholder {\r\n	  color: #333 !important;\r\n	  font-size:16px;\r\n	  line-height:20px;\r\n	}\r\n	#fl-sidebar-blog :-ms-input-placeholder { \r\n	  color: #333 !important;\r\n	  font-size:16px;\r\n	  line-height:20px;\r\n	}\r\n	#fl-sidebar-blog ::placeholder {\r\n	  color: #333  !important;\r\n	  font-size:16px;\r\n	  line-height:20px;\r\n	}\r\n	.fl-blog-left article {\r\n		margin-bottom: 30px !important;\r\n	}\r\n	.fl-blog-left .post-content-inner {\r\n		padding-bottom: 7px !important;\r\n	}\r\n	.fl-blog-left article p.post-meta {\r\n		margin-bottom: 8px !important;\r\n	}\r\n	.fl-blog-left h2.entry-title {\r\n		padding: 0 0 18px !important;\r\n	}\r\n	.fl-blog-left h1 {\r\n		padding: 0 0 18px !important;\r\n	  font-size: 40px !important;\r\n	}\r\n	.fl-blog-left .et_social_inline {\r\n		margin-top: 25px !important;\r\n	}\r\n	@media (max-width:767px){\r\n	  .fl-blog-left h2{\r\n		font-size: 32px !important;\r\n	  }\r\n	  .fl-blog-left h1{\r\n		font-size: 35px !important;\r\n	  }\r\n	}\r\n	@media (max-width:400px){\r\n	 #fl-sidebar-blog input[type=\'submit\'] {\r\n		width: 40%;\r\n		font-size: 14px;\r\n		letter-spacing: 0px;\r\n		margin-top: 2px;\r\n	}\r\n	#fl-sidebar-blog input.search-field {\r\n		width: 45%;\r\n	}\r\n	}\r\n	.fl-row-attorney ul{\r\n	  padding-bottom:12px !important;\r\n	}\r\n	#email_attorney span.ninja-forms-req-symbol,.fl-long-form .ninja-forms-req-symbol {\r\n		color: #FF0000 !important;\r\n	}\r\n	#fl-sidebar-blog  input::placeholder{\r\n	color:#333 !important;\r\n	font-weight:600;\r\n	}\r\n	.fl-inner-left .alignright,.fl-inner-left article img,.fl-inner-left figure img,.fl-inner-left img {\r\n		margin: 5px 10px 15px !important;\r\n		display: block !important;\r\n		float: none !important;\r\n	}\r\n\r\n	.fl-cta-button-mobile .et_pb_text_inner{\r\n	  line-height:3em !important;\r\n	}\r\n\r\n	@media(max-width:450px){\r\n	  h1,h2,h3,h4{\r\n		word-break:keep-all;\r\n	  }\r\n	  .fl-cta-button{\r\n		font-size:18px !important;\r\n	  }\r\n	  .fl-image {\r\n		max-width: 250px!important;\r\n	}\r\n	}\r\n.mfp-close-btn-in .mfp-close {\r\n    color: #fff;\r\n    opacity: 1;\r\n}\r\n.fl-row-attorney h2 {\r\n    padding-bottom: 10px !important;\r\n}\r\n/*\r\n|--------------------------------------------------------------------------\r\n          Banner\r\n|--------------------------------------------------------------------------\r\n*/\r\n.fl-banner-slider .et-pb-active-slide .et_pb_slide_description {\r\nanimation-name: none;}\r\n\r\n.fl-banner-slider .et-pb-controllers a {\r\n   width: 14px !important;\r\n   height: 14px !important;\r\n   opacity: 1 !important;\r\n   background-color: 000 !important;\r\n   border: 2px solid #fff !important;\r\n	color:#fff !important;\r\n}\r\n.fl-banner-slider .et-pb-controllers a.et-pb-active-control {\r\n   background-color: #fff !important;\r\n	color:#000 !important;\r\n}\r\n.fl-banner-slider .et-pb-controllers {\r\n   position: absolute;\r\n   bottom: 60px;\r\n   left: 0;\r\n   width: 100%;\r\n   text-align: center;\r\n   z-index: 10;\r\n}\r\n.fl-banner-slider .et_pb_slide_description\r\n{\r\n	padding:19% 0 !important;\r\n}\r\n/*Mobile Slider */\r\n.fl-disable-lightbox .et-pb-controllers a{\r\n	background-color: #fff !important;\r\n}\r\n.fl-disable-lightbox .et_pb_bg_layout_light .et-pb-controllers .et-pb-active-control{\r\n	background-color: #fff !important;\r\n}\r\n.fl-disable-lightbox .et-pb-slider-arrows{display: none !important;}\r\n.fl-disable-lightbox .et-pb-controllers{display:block !important;}\r\n/* Disable click effect of image */\r\n.fl-disable-lightbox a { pointer-events: none;}\r\n.fl-disable-lightbox .et_overlay {display: none !important;}\r\n/*Mobile Slider */\r\n.fl-disable-lightbox .et-pb-slider-arrows,\r\n.fl-disable-lightbox .et-pb-controllers{display:none !important;}\r\n/* Disable click effect of image */\r\n.fl-disable-lightbox a { pointer-events: none;}\r\n.fl-disable-lightbox .et_overlay {display: none !important;}\r\n@media(min-width:980px) and (max-width:1140px){\r\n	.fl-menu li{margin-left:14px !important;}\r\n}\r\n@media all and (max-width: 350px){\r\n	.fl-border-style-left .et_pb_image_wrap:after{display:none !important}\r\n	.fl-border-style-right .et_pb_image_wrap:after{display:none !important;}\r\n}\r\n\r\n\r\n.nf-form-content .nf-field-container .nf-field .nf-field-element input[type=button]:focus {\r\n    outline: #000 2px dotted!important;\r\n    outline-offset: 0!important;\r\n    box-shadow: 0 0 0 2px #fff!important;\r\n    border-radius: 0!important; }\r\n\r\n\r\n/*---call btn misalign for text spacing*/\r\n.fl-3-column a{\r\n    line-height: 2.5!important;\r\n}\r\n\r\n#fl-template .mobile_menu_bar:after{\r\n	font-size: 16px!important;\r\n}\r\n\r\n.mobile_menu_bar{\r\n	top:-6px!important;\r\n}\r\n.parent-pageid-45925 #main-content .fl-inner-left.fl-darklinks h2{\r\n	font-size: 23px !important;\r\n	padding-top: 5px !important;\r\n	padding-bottom: 10px !important;\r\n}\r\n.et_pb_post_content_0_tb_body.et_pb_post_content a.btn-email-staff {\r\n	display: inline-block;\r\n    background: #211865!important;\r\n    color: #fff!important;\r\n    font-size: 19px!important;\r\n    font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif!important;\r\n    padding: 15px 30px!important;\r\n    cursor: pointer;\r\n    line-height: 20px!important;\r\n    letter-spacing: 1px!important;\r\n    font-weight: 700;\r\n    text-transform: uppercase!important;\r\n    text-decoration: none !important;\r\n    text-align: center;\r\n	margin-bottom: 20px;\r\n}\r\n.et_pb_post_content_0_tb_body.et_pb_post_content a.btn-email-staff:hover,\r\n.et_pb_post_content_0_tb_body.et_pb_post_content a.btn-email-staff:focus{\r\n	background: #000 !important;\r\n	color: #fff !important;\r\n}\r\n\r\n\r\n.simple-sitemap-container-6310c0e0dae11.tab-enabled input:checked+label {\r\n    background-color: #fff;\r\n}\r\n\r\n@media screen and (min-width: 981px) {\r\n.sub-menu {\r\n	min-width: 300px;\r\n}\r\n#top-menu li li a {\r\n    width: 260px;\r\n	/* Extra - Reduce padding on list items */\r\n	padding: 4px 12px;\r\n	}\r\n}','Divi','','publish','closed','closed','','divi','','','2022-09-19 15:46:15','2022-09-19 19:46:15','',0,'https://thelomad.com/getmad.today/blog/2022/08/divi/',0,'custom_css','',0),(49388,1,'2022-08-29 11:18:25','2022-08-29 15:18:25','','LOMAD-Icons_Hands-in_black','','inherit','open','closed','','lomad-icons_hands-in_black','','','2022-08-29 11:18:25','2022-08-29 15:18:25','',6,'https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LOMAD-Icons_Hands-in_black.png',0,'attachment','image/png',0),(49389,1,'2022-08-29 11:18:30','2022-08-29 15:18:30','','LOMAD-Icons_Hands-in_blue','','inherit','open','closed','','lomad-icons_hands-in_blue','','','2022-08-29 11:18:30','2022-08-29 15:18:30','',6,'https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LOMAD-Icons_Hands-in_blue.png',0,'attachment','image/png',0),(49390,1,'2022-08-29 11:20:18','2022-08-29 15:20:18','','LOMAD-Icons_Gavel','','inherit','open','closed','','lomad-icons_gavel','','','2022-08-29 11:20:18','2022-08-29 15:20:18','',6,'https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LOMAD-Icons_Gavel.png',0,'attachment','image/png',0),(49391,1,'2022-08-29 11:20:19','2022-08-29 15:20:19','','LOMAD-Icons_TV','','inherit','open','closed','','lomad-icons_tv','','','2022-08-29 11:20:19','2022-08-29 15:20:19','',6,'https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LOMAD-Icons_TV.png',0,'attachment','image/png',0),(49395,1,'2022-08-29 11:32:31','2022-08-29 15:32:31','','LOMAD - Hands In - 100x100','','inherit','open','closed','','lomad-hands-in-100x100','','','2022-08-29 11:32:31','2022-08-29 15:32:31','',6,'https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LOMAD-Hands-In-100x100-1.png',0,'attachment','image/png',0),(49398,1,'2022-08-29 11:37:26','2022-08-29 15:37:26','','LOMAD Icons - TV blue - 100 x 100','','inherit','open','closed','','lomad-icons-tv-blue-100-x-100','','','2022-08-29 11:37:26','2022-08-29 15:37:26','',6,'https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LOMAD-Icons-TV-blue-100-x-100.png',0,'attachment','image/png',0),(49406,1,'2022-08-29 12:06:53','2022-08-29 16:06:53','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwentytwo','','','2022-08-29 12:06:53','2022-08-29 16:06:53','',0,'https://thelomad.com/getmad.today/blog/2022/08/wp-global-styles-twentytwentytwo/',0,'wp_global_styles','',0),(49452,1,'2022-08-29 13:59:52','2022-08-29 17:59:52','[lwp_divi_breadcrumbs before_text=\"  \" font_icon=\"&#x39;||divi||400\" use_before_icon=\"off\" link_color=\"#211865\" separator_color=\"#211865\" current_text_color=\"#211865\" _builder_version=\"4.18.0\" _module_preset=\"default\" module_font_size=\"18px\" background_color=\"#FFFFFF\" hover_enabled=\"0\" template_type=\"module\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/lwp_divi_breadcrumbs]','LOMAD Breadcrumbs','','publish','closed','closed','','lomad-breadcrumbs','','','2022-08-29 14:04:36','2022-08-29 18:04:36','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/lomad-breadcrumbs/',0,'et_pb_layout','',0),(49642,1,'2022-08-30 10:45:28','2022-08-30 14:45:28','[et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Vicki L. Buehler\" module_class=\"fl-feature\" _builder_version=\"4.16\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\" template_type=\"row\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Vicki_L_Buehler-1_pp.jpg\" alt=\"associate attorney Vicki L. Buehler\" title_text=\"Vicki_L_Buehler-1_pp\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - VLB\" _builder_version=\"4.18.0\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" border_width_all=\"3px\" border_color_all=\"#ffffff\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Vicki L. Buehler\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1>Vicki L. Buehler</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>Contact Me:</h2>[/et_pb_text][et_pb_text admin_label=\"Phone Number\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><a href=\"tel:5854441368\">(585) 444-1368</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"VLB Temp Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2>​</h2>\n<p>Vicki is an associate attorney who has spent the past nine years exclusively practicing workers’ compensation law. Prior to joining [nap_names id=\"FIRM-NAME-3\"], she successfully represented claimants for over eight years in a small, Binghamton-based practice. This experience has given her a unique insight into the views and strategies deployed by claimants’ counsel and into the workers\' compensation board’s approach to claims and issues. She has a great understanding of the legal and medical requirements necessary to form and support winning arguments.</p>\n<p>Vicki grew up in Weedsport, New York. She earned her bachelor\'s degree in human resources from LeMoyne College in Syracuse. She earned her law degree from Syracuse University.</p>\n<p>In her spare time, Vicki enjoys reading, hiking, baking, and exploring the Southern Tier area. She shares her home in Binghamton with her cat, Zachary.</p>[/et_pb_text][/et_pb_column][/et_pb_row]','TEMP - Attorney Bio Row','','publish','closed','closed','','temp-attorney-bio-row','','','2022-08-30 10:45:28','2022-08-30 14:45:28','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/temp-attorney-bio-row/',0,'et_pb_layout','',0),(49644,1,'2022-08-30 10:55:41','2022-08-30 14:55:41','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Kristin Machelor\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/08/KMM-e1527081490125.jpg\" alt=\"photo of attorney Mary Frances Schnorr\" title_text=\"KMM-e1527081490125\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - KMM2\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" border_width_all=\"3px\" border_color_all=\"#FFFFFF\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" custom_css_before_last_edited=\"on|desktop\"][/et_pb_image][et_pb_text admin_label=\"Kristin M. Machelor\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">Kristin M. Machelor</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:7168038710\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"KMM2 Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2><strong>Practice Areas</strong></h2>\n<ul>\n<li>WCL</li>\n<li>Municipal Law</li>\n<li>Labor &amp; Employment</li>\n</ul>\n<h2><strong>Current Employment Position</strong></h2>\n<ul>\n<li>Of Counsel</li>\n</ul>\n<h2><strong>Bar Admissions</strong></h2>\n<ul>\n<li>New York, 1999</li>\n<li>U.S. District Court Western District of New York, 2000</li>\n</ul>\n<h2><strong>Education</strong></h2>\n<ul>\n<li><strong>State University of New York, Buffalo School of Law</strong>, Buffalo, New York\n<ul>\n<li>J.D. – 1998</li>\n</ul>\n</li>\n<li><strong>State University of New York at Buffalo</strong>, New York\n<ul>\n<li>B.A. – 1994</li>\n<li>Major: English and Philosophy</li>\n</ul>\n</li>\n</ul>\n<h2><strong>Representative Cases</strong></h2>\n<ul>\n<li>125 A.D.3d 1074, 2015</li>\n<li>143 A.D.3d 1107, 2016</li>\n</ul>\n<h2><strong>Professional Associations</strong></h2>\n<ul>\n<li>Erie County Bar Association, Workers’ Compensation Committee, Member</li>\n<li>New York State Bar Association, Local Government Committee, Member</li>\n</ul>\n<h2><strong>Past Positions</strong></h2>\n<ul>\n<li>Erie County Sheriff’s Office, Assistant County Attorney, 2000 to 2005</li>\n<li>Bouvier O’Connor, Associate, 1998 to 2000</li>\n<li>Hamberger &amp; Weiss, Partner</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Kristin M. Machelor','','publish','closed','closed','','kristin-m-machelor','','','2022-09-15 10:53:30','2022-09-15 14:53:30','',46191,'https://thelomad.com/getmad.today/?page_id=49644',0,'page','',0),(49650,1,'2022-08-30 11:12:35','2022-08-30 15:12:35','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Mary Frances Schnorr\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Mary_Fran_Schnorr-1_pp.jpg\" alt=\"photo of attorney Mary Frances Schnorr\" title_text=\"Mary_Fran_Schnorr-1_pp\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - MFS\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#FFFFFF\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" custom_css_before_last_edited=\"on|desktop\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text admin_label=\"Mary Frances Schnorr\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">Mary Frances Schnorr</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:7162476567\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"MFS Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2>​</h2>\n<div class=\"et_pb_module et_pb_text et_pb_text_37  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Practice Areas</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_21\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\">Workers’ Compensation</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_38  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Current Employment Position</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_22\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\">Of Counsel</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_39  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Bar Admissions</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_23\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\">New York, 1985</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_43  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Education</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_25\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\"><strong>Brooklyn Law School</strong>, Brooklyn, New York\n<ul>\n<li>J.D. - 1984</li>\n</ul>\n</li>\n<li class=\"bio-list__item\"><strong>College of New Rochelle - BA 1979</strong></li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_47  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Tenure at firm</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_48  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>1.25 days and counting</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_49  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Your Legal Superpower</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_50  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>\n<ul>\n<li>Listening carefully</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_51  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Hobbies</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_52  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>\n<ul>\n<li>Sculling</li>\n<li>Stained Glass</li>\n<li>Family Geneology</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Mary Frances Schnorr','','publish','closed','closed','','mary-frances-schnorr','','','2022-09-15 10:46:20','2022-09-15 14:46:20','',46191,'https://thelomad.com/getmad.today/?page_id=49650',0,'page','',0),(49704,1,'2022-08-30 13:27:36','2022-08-30 17:27:36','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text content_tablet=\"<h2>Workers\' Compensation Practice Aids</h2>\" content_phone=\"<h2>Workers\' Compensation <br />Practice Aids</h2>\" content_last_edited=\"on|phone\" admin_label=\"Workers\' Comp Practice Aids\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_orientation=\"center\" width=\"85%\" module_alignment=\"center\" custom_margin=\"||15px||false|false\" custom_margin_tablet=\"||15px||false|false\" custom_margin_phone=\"||15px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"20px||7px||false|false\" border_radii=\"off||||\" border_width_bottom=\"4px\" border_color_bottom=\"#211865\" border_style_bottom=\"double\" global_colors_info=\"{}\" custom_padding__hover_enabled=\"off|desktop\"]<h2>Workers\' Compensation Practice Aids</h2>[/et_pb_text][et_pb_text admin_label=\"...\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_font=\"Playfair Display||||||||\" text_text_color=\"#211865\" custom_padding=\"6px||50px||false|false\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">We have assembled the current data related to PPD caps, max benefit rates and SLU/PHP. We invite you to leverage these when handling your claims!</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"row\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" front_content=\"PPD CAPS\" front_background_color=\"#211865\" back_background_color=\"#FFFFFF\" content_max_width=\"540px\" flipbox_min_height=\"150px\" admin_label=\"PPD Caps\" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|700|||||||\" front_body_text_color=\"#FFFFFF\" front_body_font_size=\"27px\" back_body_text_color=\"#211865\" back_body_font_size=\"17px\" width=\"89%\" module_alignment=\"center\" custom_margin=\"|10px|||false|false\" custom_margin_tablet=\"|10px|||false|false\" custom_margin_phone=\"|10px|10px||false|false\" custom_margin_last_edited=\"on|phone\" link_option_url=\"https://thelomad.com/getmad.today/client-resources/workers-compensation-practice-aids/ppd-caps/https://thelomad.com/getmad.today/client-resources/workers-compensation-practice-aids/ppd-caps/\" front_body_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p><span style=\"color: #000000;\">Figures related to PPD Benefits</span></p>[/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" front_content=\"MAX RATES\" front_background_color=\"#211865\" back_background_color=\"#FFFFFF\" content_max_width=\"540px\" flipbox_min_height=\"150px\" admin_label=\"Max Rates\" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|700|||||||\" front_body_text_color=\"#FFFFFF\" front_body_font_size=\"27px\" back_body_text_color=\"#211865\" back_body_font_size=\"17px\" width=\"89%\" module_alignment=\"center\" custom_margin=\"|10px|||false|false\" custom_margin_tablet=\"|10px|||false|false\" custom_margin_phone=\"|10px|10px||false|false\" custom_margin_last_edited=\"on|phone\" link_option_url=\"https://thelomad.com/getmad.today/client-resources/workers-compensation-practice-aids/max-rates/\" front_body_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p><span style=\"color: #000000;\">NYS Benefit Rate Maximums</span></p>[/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" front_content=\"SLU/PHP\" front_background_color=\"#211865\" back_background_color=\"#FFFFFF\" content_max_width=\"540px\" flipbox_min_height=\"150px\" admin_label=\"SLU/PHP\" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|700|||||||\" front_body_text_color=\"#FFFFFF\" front_body_font_size=\"27px\" back_body_text_color=\"#211865\" back_body_font_size=\"17px\" width=\"89%\" module_alignment=\"center\" custom_margin=\"|10px|||false|false\" custom_margin_tablet=\"|10px|||false|false\" custom_margin_phone=\"|8px|||false|false\" custom_margin_last_edited=\"on|phone\" link_option_url=\"https://thelomad.com/getmad.today/client-resources/workers-compensation-practice-aids/slu-php/\" front_body_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p>PHP &amp; Weeks of Compensation by injury site</p>[/el_advanced_flipbox][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_position=\"center\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" min_height=\"45px\" custom_padding=\"34px||||false|false\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"NYS Workers\' Compensation Forum\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_font=\"Playfair Display||||||||\" text_text_color=\"#211865\" width=\"100%\" module_alignment=\"center\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\">We also invite you to connect with the NYS Workers\' Compensation Forum on LinkedIn!</p>\n<p style=\"text-align: center;\">The group was created in September of 2009 by our fearless leader Melissa Day. It has since provided a forum for all stakeholders to share articles, hold discussions and comment about New York\'s Workers\' Compensation.</p>\n<p style=\"text-align: center;\">Click the graphic to the right to visit the forum LinkedIn page!</p>[/et_pb_text][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/08/NYS-WC-Forum-Homepage_transparent.png\" title_text=\"NYS WC Forum Homepage_transparent\" url=\"https://www.linkedin.com/groups/2302270/\" align=\"center\" admin_label=\"NYS WC Forum Homepage\" _builder_version=\"4.18.0\" _module_preset=\"default\" module_alignment=\"center\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Workers\' Compensation Practice Aids','','publish','closed','closed','','workers-compensation-practice-aids','','','2022-09-19 13:35:46','2022-09-19 17:35:46','',46229,'https://thelomad.com/getmad.today/?page_id=49704',0,'page','',0),(49713,1,'2022-08-30 13:44:58','2022-08-30 17:44:58','[el_advanced_flipbox _builder_version=\"4.18.0\" _module_preset=\"default\" front_content=\"PPD CAPS\" front_background_color=\"#211865\" front_background_enable_color=\"on\" back_background_color=\"#FFFFFF\" back_background_enable_color=\"on\" hover_enabled=\"0\" sticky_enabled=\"0\" front_body_text_color=\"#FFFFFF\" front_body_font=\"Playfair Display SC|700|||||||\" front_body_font_size=\"27px\" front_body_text_shadow_style=\"preset1\" back_body_text_color=\"#211865\" back_body_font_size=\"17px\" flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" custom_margin=\"|10px|||false|false\" content_max_width=\"540px\" flipbox_min_height=\"100px\" width=\"89%\" template_type=\"module\"]<p><span style=\"color: #000000;\">Figures related to PPD Benefits</span></p>[/el_advanced_flipbox]','WC Practice Aids - Buttons','','publish','closed','closed','','wc-practice-aids-buttons','','','2022-08-30 13:44:58','2022-08-30 17:44:58','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/wc-practice-aids-buttons/',0,'et_pb_layout','',0),(49768,1,'2022-08-30 14:32:03','2022-08-30 18:32:03','','NYS WC Forum Homepage_transparent','','inherit','closed','closed','','nys-wc-forum-homepage_transparent','','','2022-08-30 14:32:03','2022-08-30 18:32:03','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/08/NYS-WC-Forum-Homepage_transparent.png',0,'attachment','image/png',0),(49788,1,'2022-08-30 15:26:22','2022-08-30 19:26:22','[et_pb_sidebar area=\"et_pb_widget_area_1\" admin_label=\"Sidebar\" module_class=\"fl-sidebar fl-lightlinks\" _builder_version=\"4.18.0\" header_font=\"|600|||||||\" header_text_align=\"left\" header_text_color=\"#ffffff\" header_font_size=\"35px\" body_font_size=\"18px\" background_color=\"#211865\" custom_margin_tablet=\"20px||||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"40px|45px|40px|45px|true|true\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" scroll_vertical_motion=\"19|63|63|100|4|0|-4\" header_font_size_tablet=\"30px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_color_right_tablet=\"\" border_color_right_phone=\"\" border_color_right_last_edited=\"on|desktop\" box_shadow_style=\"preset1\" box_shadow_vertical=\"0px\" box_shadow_blur=\"0px\" box_shadow_spread=\"3px\" box_shadow_color=\"#211865\" saved_tabs=\"all\" template_type=\"module\" global_colors_info=\"{}\"][/et_pb_sidebar]','LOMAD Sidebar','','publish','closed','closed','','lomad-sidebar','','','2022-08-30 15:26:22','2022-08-30 19:26:22','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/lomad-sidebar/',0,'et_pb_layout','',0),(49949,1,'2022-08-31 14:04:37','2022-08-31 18:04:37','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LOMADtv-logo_2_transparent.png\" title_text=\"LOMADtv logo_2_transparent\" admin_label=\"LOMADtv Logo\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"38%\" module_alignment=\"center\" global_colors_info=\"{}\"][/et_pb_image][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" admin_label=\"Divider\" _builder_version=\"4.18.0\" _module_preset=\"default\" module_alignment=\"center\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_text admin_label=\"LOMADtv Intro\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_padding=\"||22px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">LOMADtv is our firm\'s exclusive video broadcasting platform.</h2>\n<h6 style=\"text-align: center;\">Since 2016, The Law Offices of Melissa A. Day has regularly produced and published a variety of educational content pertaining to NYS Workers\' Compensation Law. Each month, the firm attorneys cover a wide range of topics and provide relevant case examples and perspective to enrich the knowledge of those who tune in.</h6>\n<h5 style=\"text-align: center;\">We invite you to check out LOMADtv and discover the method to our \"MAD-ness!\"</h5>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" module_alignment=\"center\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Click on the picture below...\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_font=\"Playfair Display SC||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"15px\" background_color=\"#211865\" transform_scale_linked=\"off\" width=\"80%\" module_alignment=\"center\" custom_margin=\"-12px||-35px||false|false\" custom_padding=\"||||false|false\" border_color_all=\"#EDF000\" border_width_top=\"4px\" border_color_top=\"#211865\" border_style_top=\"double\" border_width_right=\"4px\" border_color_right=\"#211865\" border_style_right=\"double\" border_width_bottom=\"4px\" border_color_bottom=\"#211865\" border_style_bottom=\"double\" border_width_left=\"4px\" border_color_left=\"#211865\" border_style_left=\"double\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Click on the picture below to join us live<br />on the 4th Friday of each month at 12:00 p.m. (est)<br />for the next installment of our series<br /><strong>“Lawyers and Friends!\"</strong></p>[/et_pb_text][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/holiday-photoChristmas2021.png\" alt=\"holiday-photo\" title_text=\"holiday-photoChristmas2021\" url=\"https://v.ringcentral.com/conf/on/109954692\" url_new_window=\"on\" admin_label=\"2021 Christmas Party\" _builder_version=\"4.18.0\" _module_preset=\"default\" transform_scale=\"91%|91%\" transform_translate=\"0px|50px\" transform_translate_linked=\"off\" custom_margin=\"|24px|||false|false\" custom_padding=\"0px||75px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Studio Audience Reviews\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_font=\"Playfair Display SC||||||||\" text_text_color=\"#FFFFFF\" text_line_height=\"0.7em\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" background_color=\"#211865\" custom_margin=\"-12px||6px||false|false\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p style=\"text-align: center;\"><strong><span style=\"text-decoration: underline;\">Studio Audience Reviews</span></strong></p>\n<p>​</p>[/et_pb_text][et_pb_accordion _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_accordion_item title=\"Insightful Webinar Series\" open=\"on\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h6>The monthly webinar series on basic NY workers’ compensation compensability presented by the Law Offices of Melissa A. Day has been an educational, approachable and insightful look into the cornerstones of our profession.</h6>\n<h6>The material has given a straightforward introduction to those new to the industry while also providing a welcome refresher course to our seasoned adjusters.</h6>\n<h6>Most importantly, these webinars have opened up a dialogue in our office for continued discussion between our staff and have encouraged thoughtful questions, and a renewed passion for learning which has been truly invaluable to us.</h6>\n<h6>We at FCS greatly appreciate the time, research, dedication, and hard work that your attorneys have put into these presentations and we will continue to attend and enjoy them as they are presented.</h6>\n<h6>Thank you!</p>\n<p>-<em>Missy Krupka, Claims Manager, FCS Administrators, Inc.</em>-</h6>[/et_pb_accordion_item][et_pb_accordion_item title=\"Really Good Informative Webinars\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<h6>I sent this to our adjusters as I’ve attended a couple of their webinars…these are really good informational webinars. Email mday@getMAD.today to register for either or both series.</h6>\n<h6>The Breakfast Club are morning webinars that are held once a month on Friday. The Basic Issues of Compensability series is a lunch time series happening monthly on a Monday.</h6>\n<h6>They have different presenters and record the presentations as well and post them to this page for future viewing. If there is a specific webinar you want to view in the archives just email <a href=\"mailto:mday@getMAD.today\">mday@getMAD.today</a> for a password.</h6>\n<h6>-<strong><em>Erin Greco, </em><em>Service Improvement Specialist</em></strong>-</h6>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" module_alignment=\"center\" custom_margin=\"12px||||false|false\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_text admin_label=\"Latest Content\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_padding=\"||15px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Latest LOMADtv Content:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"|0px|||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" admin_label=\"Video 1\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_padding=\"|6px|||false|false\" global_colors_info=\"{}\"][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" back_button_display=\"on\" back_button_text=\"Watch Now\" back_button_url=\"https://www.youtube.com/watch?v=jO4MwIK8nzs\" back_button_target=\"on\" admin_label=\"Episode 39\" module_id=\"lm-ignore-this-one\" module_class=\"lm-ignore-this-one\" front_background_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LF-Ep.-39-345x200-1.png\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_back_button=\"on\" back_button_text_size=\"17px\" back_button_text_color=\"#FFFFFF\" back_button_bg_color=\"#211865\" back_button_icon=\"&#xf167;||fa||400\" custom_margin=\"||15px||false|false\" custom_padding=\"||||false|false\" link_option_url_new_window=\"on\" border_color_all_front_box=\"#211865\" border_color_all_back_box=\"#211865\" box_shadow_style_front_box=\"preset1\" box_shadow_style_back_box=\"preset1\" global_colors_info=\"{}\"]<h5 class=\"style-scope ytd-watch-metadata\" style=\"text-align: center;\"><strong>Lawyers &amp; Friends | Episode 39</strong><br />Labor Market Detachment:<br />Overview and Recent Jurisprudence</h5>[/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"1_4\" admin_label=\"Video 2\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_padding=\"|5px|||false|false\" global_colors_info=\"{}\"][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" back_button_display=\"on\" back_button_text=\"Watch now\" back_button_url=\"https://www.youtube.com/watch?v=L-Wk9fFB3iM&t\" admin_label=\"Episode 38\" front_background_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LF-Ep.-38-340x200-1.png\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_back_button=\"on\" back_button_text_size=\"17px\" back_button_text_color=\"#FFFFFF\" back_button_bg_color=\"#211865\" back_button_icon=\"&#xf167;||fa||400\" custom_margin=\"||15px||false|false\" link_option_url_new_window=\"on\" border_color_all_front_box=\"#211865\" border_color_all_back_box=\"#211865\" box_shadow_style_front_box=\"preset1\" box_shadow_style_back_box=\"preset1\" global_colors_info=\"{}\"]<h5 class=\"style-scope ytd-watch-metadata\" style=\"text-align: center;\"><strong>Lawyers &amp; Friends | Episode 38<br /></strong>COMP 101: <br />101 Worker\'s Compensation Rules</h5>[/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"1_4\" admin_label=\"Video 3\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_padding=\"|5px|||false|false\" global_colors_info=\"{}\"][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" back_button_display=\"on\" back_button_text=\"Watch now\" back_button_url=\"https://www.youtube.com/watch?v=V0kejkSvfM0&t\" admin_label=\"Episode 37\" front_background_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LF-Ep.-37-340x200-1.png\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_back_button=\"on\" back_button_text_size=\"17px\" back_button_text_color=\"#FFFFFF\" back_button_bg_color=\"#211865\" back_button_icon=\"&#xf167;||fa||400\" custom_margin=\"||15px||false|false\" border_color_all_front_box=\"#211865\" border_color_all_back_box=\"#211865\" box_shadow_style_front_box=\"preset1\" box_shadow_style_back_box=\"preset1\" global_colors_info=\"{}\"]<h5 class=\"style-scope ytd-watch-metadata\" style=\"text-align: center;\"><strong>Lawyers &amp; Friends | Episode 37<br /></strong>The Seven Deadly Sins <br />and Workers\' Compensation</h5>[/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"1_4\" admin_label=\"Video 4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" back_button_display=\"on\" back_button_text=\"Watch now\" back_button_url=\"https://www.youtube.com/watch?v=K6cF5WFIIJM&t\" admin_label=\"Episode 36\" front_background_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LF-Ep.-36-340x200-1.png\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_back_button=\"on\" back_button_text_size=\"17px\" back_button_text_color=\"#FFFFFF\" back_button_bg_color=\"#211865\" back_button_icon=\"&#xf167;||fa||400\" border_color_all_front_box=\"#211865\" border_color_all_back_box=\"#211865\" box_shadow_style_front_box=\"preset1\" box_shadow_style_back_box=\"preset1\" global_colors_info=\"{}\"]<h5 class=\"style-scope ytd-watch-metadata\" style=\"text-align: center;\"><strong>Lawyers &amp; Friends | Episode 36<br /></strong>Full Steam Ahead!<br />All Aboard for Onboard <br />and the New MTGs!</h5>[/el_advanced_flipbox][/et_pb_column][/et_pb_row][/et_pb_section]','LOMADtv','','publish','closed','closed','','lomadtv','','','2022-09-19 14:07:30','2022-09-19 18:07:30','',0,'https://thelomad.com/getmad.today/?page_id=49949',0,'page','',0),(49963,1,'2022-08-31 13:14:09','2022-08-31 17:14:09','','Episode 35 - Lawyers and Friends - copy','','inherit','closed','closed','','episode-35-lawyers-and-friends-copy','','','2022-08-31 13:14:09','2022-08-31 17:14:09','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/08/Episode-35-Lawyers-and-Friends-copy.png',0,'attachment','image/png',0),(49964,1,'2022-08-31 13:14:38','2022-08-31 17:14:38','','Episode 39 thumbnail','','inherit','closed','closed','','episode-39-thumbnail','','','2022-08-31 13:14:38','2022-08-31 17:14:38','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/08/Episode-39-thumbnail.png',0,'attachment','image/png',0),(49965,1,'2022-08-31 13:14:40','2022-08-31 17:14:40','','Episode 38 - Lawyers and Friends','','inherit','closed','closed','','episode-38-lawyers-and-friends','','','2022-08-31 13:14:40','2022-08-31 17:14:40','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/08/Episode-38-Lawyers-and-Friends.png',0,'attachment','image/png',0),(49966,1,'2022-08-31 13:14:42','2022-08-31 17:14:42','','Episode 37 - Lawyers and Friends','','inherit','closed','closed','','episode-37-lawyers-and-friends','','','2022-08-31 13:14:42','2022-08-31 17:14:42','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/08/Episode-37-Lawyers-and-Friends.png',0,'attachment','image/png',0),(49971,1,'2022-08-31 13:30:09','2022-08-31 17:30:09','','L&F Ep. 39 - 455x200','','inherit','closed','closed','','lf-ep-39-455x200','','','2022-08-31 13:30:09','2022-08-31 17:30:09','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LF-Ep.-39-455x200-1.png',0,'attachment','image/png',0),(49972,1,'2022-08-31 13:30:11','2022-08-31 17:30:11','','L&F Ep. 39 - 345x200','','inherit','closed','closed','','lf-ep-39-345x200','','','2022-08-31 13:30:11','2022-08-31 17:30:11','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LF-Ep.-39-345x200-1.png',0,'attachment','image/png',0),(49978,1,'2022-08-31 13:53:01','2022-08-31 17:53:01','','L&F Ep. 38 340x200','','inherit','closed','closed','','lf-ep-38-340x200','','','2022-08-31 13:53:01','2022-08-31 17:53:01','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LF-Ep.-38-340x200-1.png',0,'attachment','image/png',0),(49979,1,'2022-08-31 13:53:02','2022-08-31 17:53:02','','L&F Ep. 38 450x200','','inherit','closed','closed','','lf-ep-38-450x200','','','2022-08-31 13:53:02','2022-08-31 17:53:02','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LF-Ep.-38-450x200-1.png',0,'attachment','image/png',0),(49982,1,'2022-08-31 13:58:10','2022-08-31 17:58:10','','L&F Ep. 36 340x200','','inherit','closed','closed','','lf-ep-36-340x200','','','2022-08-31 13:58:10','2022-08-31 17:58:10','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LF-Ep.-36-340x200-1.png',0,'attachment','image/png',0),(49983,1,'2022-08-31 13:58:11','2022-08-31 17:58:11','','L&F Ep. 37 340x200','','inherit','closed','closed','','lf-ep-37-340x200','','','2022-08-31 13:58:11','2022-08-31 17:58:11','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LF-Ep.-37-340x200-1.png',0,'attachment','image/png',0),(50041,1,'2022-08-31 14:10:18','2022-08-31 18:10:18','','LOMADtv logo_2_transparent','','inherit','closed','closed','','lomadtv-logo_2_transparent','','','2022-08-31 14:10:18','2022-08-31 18:10:18','',49949,'https://thelomad.com/getmad.today/wp-content/uploads/2022/08/LOMADtv-logo_2_transparent.png',0,'attachment','image/png',0),(50069,1,'2022-08-31 15:32:01','2022-08-31 19:32:01','[et_pb_section fb_built=\"1\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"4.18.0\" custom_margin=\"-100px||375px||false|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" transform_translate=\"0px|250px\" transform_translate_linked=\"off\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Disclaimer\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h1>Disclaimer</h1>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"dotted\" divider_weight=\"9px\" admin_label=\"Divider\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_padding=\"25px||||false|false\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_text admin_label=\"Disclaimer Language\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_font=\"|800|||||||\" text_text_color=\"#000000\" background_enable_pattern_style=\"on\" background_pattern_style=\"diamonds\" background_pattern_color=\"rgba(216,216,216,0.38)\" background_pattern_transform=\"flip_vertical\" text_orientation=\"center\" custom_padding=\"15px||||false|false\" global_colors_info=\"{}\"]<p>The information you obtain at this site is not, nor is it intended to be, legal advice. You should consult an attorney for advice regarding your individual situation. We invite you to contact us and welcome your calls, letters and electronic mail. Contacting us does not create an attorney-client relationship. Please do not send any confidential information to us until such time as an attorney-client relationship has been established.</p>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"dotted\" divider_weight=\"9px\" admin_label=\"Divider\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_padding=\"25px||||false|false\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" make_equal=\"on\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"100%\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_css_main_element=\"width: 50%!important\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" front_use_icon=\"on\" front_font_icon=\"&#xe009;||divi||400\" back_button_display=\"on\" back_button_text=\"CLICK HERE\" back_button_url=\"thelomad.com/getmad.today\" back_background_color=\"#211865\" front_icon_color=\"#211865\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_back_button=\"on\" back_button_text_color=\"#211865\" back_button_bg_color=\"#FFFFFF\" back_button_border_color=\"RGBA(255,255,255,0)\" back_button_border_radius=\"3px\" module_alignment=\"center\" custom_margin=\"0px||40px||false|false\" custom_margin_tablet=\"0px||40px||false|false\" custom_margin_phone=\"0px||40px||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" custom_padding_tablet=\"||||false|false\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|desktop\" hover_enabled=\"0\" custom_css_main_element=\"width: 50%!important;||justify-content: center;\" global_colors_info=\"{}\" back_button_use_icon=\"off\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Return to Home</span></h3>[/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','Disclaimer','','publish','closed','closed','','lomad_disclaimer','','','2022-09-19 14:56:45','2022-09-19 18:56:45','',0,'https://thelomad.com/getmad.today/?page_id=50069',0,'page','',0),(50129,1,'2022-08-31 15:57:35','2022-08-31 19:57:35','[et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" template_type=\"row\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Disclaimer\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1>Disclaimer</h1>[/et_pb_text][et_pb_text admin_label=\"Disclaimer Language\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_padding=\"16px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<div id=\"main-content\" class=\"keyboard-outline\" tabindex=\"-1\" role=\"main\">\n<div class=\"et-l et-l--body\">\n<div class=\"et_builder_inner_content et_pb_gutters1\">\n<div class=\"et_pb_section et_pb_section_4_tb_body et_section_regular\">\n<div class=\"et_pb_row et_pb_row_2_tb_body\">\n<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_2_tb_body et_pb_css_mix_blend_mode_passthrough et-last-child\">\n<div class=\"et_pb_module et_pb_post_content et_pb_post_content_0_tb_body fl-darklinks fl-inner-left\">\n<p>The information you obtain at this site is not, nor is it intended to be, legal advice. You should consult an attorney for advice regarding your individual situation. We invite you to contact us and welcome your calls, letters and electronic mail. Contacting us does not create an attorney-client relationship. Please do not send any confidential information to us until such time as an attorney-client relationship has been established.</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<footer class=\"et-l et-l--footer\">\n<div class=\"et_builder_inner_content et_pb_gutters1\">\n<div class=\"et_pb_section et_pb_section_0_tb_footer et_pb_with_background et_section_regular\">\n<div class=\"et_pb_row et_pb_row_0_tb_footer\">\n<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0_tb_footer et_pb_css_mix_blend_mode_passthrough et-last-child\">\n<div class=\"et_pb_module et_pb_text et_pb_text_0_tb_footer et_pb_text_align_center et_pb_bg_layout_dark et_had_animation\">\n<div class=\"et_pb_text_inner\"> </div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</footer>\n<p>​</p>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"dotted\" divider_weight=\"13px\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][/et_pb_row]','LOMAD Disclaimer Row','','publish','closed','closed','','lomad-disclaimer-row','','','2022-08-31 15:57:35','2022-08-31 19:57:35','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/lomad-disclaimer-row/',0,'et_pb_layout','',0),(50149,1,'2022-08-31 16:11:17','2022-08-31 20:11:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_4,1_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"3_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" transform_translate=\"0px|250px\" transform_translate_linked=\"off\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Disclaimer\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"-200px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding=\"||15px||false|false\" sticky_enabled=\"0\"]<h1>Disclaimer</h1>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_text admin_label=\"Disclaimer Language\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_font=\"|800|||||||\" text_text_color=\"#000000\" background_enable_pattern_style=\"on\" background_pattern_style=\"diamonds\" background_pattern_color=\"rgba(216,216,216,0.38)\" background_pattern_transform=\"flip_vertical\" text_orientation=\"center\" custom_margin=\"||0px||false|false\" custom_padding=\"15px||15px||false|false\" global_colors_info=\"{}\"]<p>The information you obtain at this site is not, nor is it intended to be, legal advice. You should consult an attorney for advice regarding your individual situation. We invite you to contact us and welcome your calls, letters and electronic mail. Contacting us does not create an attorney-client relationship. Please do not send any confidential information to us until such time as an attorney-client relationship has been established.</p>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_position=\"bottom\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"right\" front_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-House-Icon.png\" front_background_color=\"#211865\" content_max_width=\"675px\" flipbox_min_height=\"164px\" _builder_version=\"4.18.0\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" front_body_font=\"|||||on|||\" back_general_settings_text_align=\"center\" back_body_font=\"Playfair Display SC|700||||on|||\" back_body_text_color=\"#211865\" back_body_font_size=\"24px\" transform_scale=\"98%|98%\" transform_translate=\"0px|-5px\" transform_translate_linked=\"off\" width=\"89%\" module_alignment=\"right\" custom_margin=\"75px||50px|40px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjYifX0=@\" global_colors_info=\"{}\"]<p>Return to LOMAD Homepage</p>[/el_advanced_flipbox][/et_pb_column][/et_pb_row][/et_pb_section]','Disclaimer','','publish','open','closed','','theme-builder-layout-6','','','2022-09-09 10:23:08','2022-09-09 14:23:08','',0,'https://thelomad.com/getmad.today/blog/et_body_layout/theme-builder-layout-6/',0,'et_body_layout','',0),(50151,1,'2022-08-31 16:12:09','2022-08-31 20:12:09','[et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" template_type=\"row\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" transform_translate=\"0px|250px\" transform_translate_linked=\"off\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Disclaimer\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h1>Disclaimer</h1>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"dotted\" divider_weight=\"9px\" admin_label=\"Divider\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_padding=\"25px||||false|false\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_text admin_label=\"Disclaimer Language\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_font=\"|800|||||||\" text_text_color=\"#000000\" background_enable_pattern_style=\"on\" background_pattern_style=\"diamonds\" background_pattern_color=\"rgba(216,216,216,0.38)\" background_pattern_transform=\"flip_vertical\" text_orientation=\"center\" custom_padding=\"15px||||false|false\" global_colors_info=\"{}\"]<p>The information you obtain at this site is not, nor is it intended to be, legal advice. You should consult an attorney for advice regarding your individual situation. We invite you to contact us and welcome your calls, letters and electronic mail. Contacting us does not create an attorney-client relationship. Please do not send any confidential information to us until such time as an attorney-client relationship has been established.</p>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"dotted\" divider_weight=\"9px\" admin_label=\"Divider\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_padding=\"25px||||false|false\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][/et_pb_row]','LOMAD Disclaimer (2.0)','','publish','closed','closed','','lomad-disclaimer-2-0','','','2022-08-31 16:12:09','2022-08-31 20:12:09','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/lomad-disclaimer-2-0/',0,'et_pb_layout','',0),(50194,1,'2022-08-31 16:30:46','2022-08-31 20:30:46','','Disclaimer','','publish','closed','closed','','disclaimer-2','','','2022-08-31 16:30:46','2022-08-31 20:30:46','',0,'https://thelomad.com/getmad.today/blog/et_template/disclaimer-2/',0,'et_template','',0),(50234,1,'2022-09-01 08:32:03','2022-09-01 12:32:03','[el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"right\" front_use_icon=\"on\" front_font_icon=\"&#xe074;||divi||400\" front_background_color=\"#211865\" front_icon_color=\"#FFFFFF\" front_use_icon_font_size=\"on\" front_icon_font_size=\"94px\" front_style_icon=\"on\" front_shape_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.18.0\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" back_general_settings_text_align=\"center\" back_body_font=\"Playfair Display SC|700|||||||\" back_body_text_color=\"#211865\" back_body_font_size=\"24px\" custom_margin=\"125px|||40px|false|false\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjYifX0=@\" global_colors_info=\"{}\" template_type=\"module\"]<p>Return to LOMAD Homepage</p>[/el_advanced_flipbox]','LOMAD Home Button 1','','publish','closed','closed','','lomad-home-button-1','','','2022-09-01 08:32:03','2022-09-01 12:32:03','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/lomad-home-button-1/',0,'et_pb_layout','',0),(50299,1,'2022-09-01 09:27:29','2022-09-01 13:27:29','','LOMAD House Icon','','inherit','closed','closed','','lomad-house-icon','','','2022-09-01 09:27:29','2022-09-01 13:27:29','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-House-Icon.png',0,'attachment','image/png',0),(50311,1,'2022-09-01 09:43:02','2022-09-01 13:43:02','','LOMAD - Hands In - 100x100 (1) (1)','','inherit','closed','closed','','lomad-hands-in-100x100-1-1','','','2022-09-01 09:43:02','2022-09-01 13:43:02','',6,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Hands-In-100x100-1-1.png',0,'attachment','image/png',0),(50324,1,'2022-09-01 10:25:09','2022-09-01 14:25:09','[simple-sitemap render=\'tab\']\r\n\r\n&nbsp;','Sitemap','','publish','closed','closed','','sitemap','','','2022-09-12 12:07:14','2022-09-12 16:07:14','',0,'https://thelomad.com/getmad.today/?page_id=50324',0,'page','',0),(50399,1,'2022-09-08 15:01:38','2022-09-08 19:01:38','','','','publish','closed','closed','','50399','','','2022-09-08 15:01:38','2022-09-08 19:01:38','',0,'https://thelomad.com/getmad.today/blog/nf_sub/50399/',0,'nf_sub','',0),(50433,1,'2022-09-09 08:12:54','2022-09-09 12:12:54','<h1>Sabina Ogric</h1>\r\n<img class=\"alignnone size-full wp-image-50977\" src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Sabina-Ogric-300x300_3.jpg\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Legal Assistant</strong>\r\n<h2>Contact Me:</h2>\r\n<a href=\"tel:7162760670\">(716) 276-0670</a>\r\n\r\n<a class=\"btn-email-staff\" href=\"mailto:sogric@madwcdefense.com\">Email Me</a>\r\n\r\n<span style=\"color: #211865;\">Sabina graduated from Niagara University with a Bachelor’s degree in Criminal Justice and Criminology with a minor in Sociology. Sabina was born and raised here in Buffalo, NY but her entire family is from Bosnia. When she was little, she learned to speak Bosnian fluently and continues to speak Bosnian on a daily basis. Sabina has always been interested in law and is always looking forward to learning more.</span>\r\n\r\n<span style=\"color: #211865;\">In her free time, Sabina likes to go shopping and spending time with the people she loves.</span>','Sabina Ogric','','publish','closed','closed','','sabina-ogric','','','2022-09-23 08:51:08','2022-09-23 12:51:08','',48410,'https://thelomad.com/getmad.today/?page_id=50433',0,'page','',0),(50437,1,'2022-09-09 08:25:00','2022-09-09 12:25:00','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Mary Frances Schnorr\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Tyler-J.-Eckert-300x300_3.jpg\" alt=\"photo of attorney Mary Frances Schnorr\" title_text=\"Tyler J. Eckert - 300x300_3\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - TJE\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#FFFFFF\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" custom_css_before_last_edited=\"on|desktop\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text admin_label=\"Mary Frances Schnorr\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1 style=\"text-align: center;\">Tyler J. Eckert</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:7164581842\" hover_enabled=\"0\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"TJE Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" hover_enabled=\"0\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<div class=\"et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Practice Areas</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\"> </div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Current Employment Position</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\"> </div>\n<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Bar Admissions</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\"> </div>\n<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Professional Associations and Memberships</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\"> </div>\n<div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Education</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\"> </div>\n<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pro-Bono Activities</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\"> </div>\n<div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Honors</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\"> </div>\n<div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Tenure at firm</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Joined the firm 12/10/2020</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Your Legal Superpower</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>&nbsp;</p>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pets and Hobbies</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_52  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\"> </div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Tyler J. Eckert','','publish','closed','closed','','tyler-j-eckert','','','2022-09-15 10:49:08','2022-09-15 14:49:08','',46191,'https://thelomad.com/getmad.today/?page_id=50437',0,'page','',0),(50529,1,'2022-09-09 10:24:23','2022-09-09 14:24:23','[et_pb_accordion open_toggle_text_color=\"#211865\" open_toggle_background_color=\"#d8d8d8\" closed_toggle_text_color=\"#211865\" closed_toggle_background_color=\"#d8d8d8\" toggle_icon=\"&#x3b;||divi||400\" icon_color=\"#211865\" _builder_version=\"4.18.0\" _module_preset=\"default\" toggle_text_color=\"#211865\" toggle_font=\"|700|||||||\" toggle_font_size=\"17px\" closed_toggle_font=\"|700|||||||\" body_text_color=\"#211865\" background_color=\"#211865\" border_color_all=\"#211865\" global_colors_info=\"{}\" template_type=\"module\"][et_pb_accordion_item title=\" May 2021\" open=\"on\" open_toggle_background_color=\"#d8d8d8\" closed_toggle_background_color=\"#d8d8d8\" icon_color=\"#211865\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/labor-market-attachment-and-retirement/\" data-wpel-link=\"internal\" role=\"link\">Labor Market Attachment and Retirement</a><br /></strong><em>May 24, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\" data-wpel-link=\"internal\" role=\"link\">Claim Disallowance With Unanimous Medical Opinion Giving Causal Relationship</a><br /></strong><em>May 17, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/employers-do-not-have-to-prove-prejudice-by-late-notice-but-it-certainly-doesnt-hurt-to-do-so/\" data-wpel-link=\"internal\" role=\"link\">Employers Do Not Have to Prove Prejudice by Late Notice, but it Certainly Doesn’t Hurt To Do So!</a><br /></strong><em>May 10, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\" data-wpel-link=\"internal\" role=\"link\">The Claimant’s Burden: Proving the Causal Relationship of an Injury</a><br /></strong><em>May 3, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"April 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/social-media-and-fraud-youd-be-surprised-what-people-post/\" data-wpel-link=\"internal\" role=\"link\">Social Media and Fraud – You’d Be Surprised What People Post!</a><br /></strong><em>April 26, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/never-give-in-disallowance-win/\" data-wpel-link=\"internal\" role=\"link\">Never Give In! Disallowance Win!</a><br /></strong><em>April 19, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/an-interesting-ime-development/\" data-wpel-link=\"internal\" role=\"link\">An “Interesting” IME Development</a></strong><strong><br /></strong><em>April 12, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/section-44-not-even-a-portion-of-liability-for-the-occupational-disease/\" data-wpel-link=\"internal\" role=\"link\">Section 44: Not Even a Portion of Liability For The Occupational Disease</a><br /></strong><em>April 5, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"March 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">When Do Work From Home Accidents Occur in the Scope and Course of Employment?</a><br /></strong><em>March 15, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/03/thoughts-on-thinking-a-strange-title-about-practicing-law/\">Thoughts on Thinking: A Strange Title About Practicing Law</a><br /></strong><em>March 8, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/03/genduso-and-total-joint-replacement-schedules/\">Genduso and Total Joint Replacement Schedules</a><br /></strong><em>March 1, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"February 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/occupational-disease-claims-after-matter-of-pinnacle-industries-ii-llc-2019-ny-wrk-comp-g2020587/\">Occupational Disease Claims after Matter of Pinnacle Industries II, LLC (2019 NY Wrk Comp G2020587)</a><br /></strong><em>February 22, 2021</em><strong><br /></strong></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/\">No Further Causally Related Disability Due to Intervening Unrelated Accident</a><br /></strong><em>February 15, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/independent-contractor-or-employee/\">Independent Contractor or Employee</a><br /></strong><em>February 8, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/no-error-of-law-or-fact-in-an-application-for-full-board-review/\">No Error of Law or Fact In An Application For Full Board Review</a><br /></strong><em>February 1, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"January 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">Fraud in the Family – Claimant Doing Other Work while Receiving Comp Benefits</a></strong><br /><em>January 25, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/how-change-in-conditions-for-classified-claimants-changed-drastically/\">How Change in Conditions for Classified Claimants Changed Drastically</a></strong><br />January 19, 2021</h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/success-with-wcl-section-18/\">Success with WCL Section 18</a></strong><br /><em>January 11, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">Doubling Down – 2 Hearing Loss Claims for the Same Claimant Denied on the Same Day</a></strong><br /><em>January 4, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2020\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2020/07/successful-disallowance/\"><strong>Successful Disallowance!</strong></a><br /><em>July 26, 2020</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2020/07/another-win-for-the-law-offices-of-melissa-a-day/\"><strong>Another Win for The Law Offices of Melissa A. Day!</strong></a><br /><em>July 22, 2020</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2020/07/a-win-for-the-law-offices-of-melissa-a-day/\"><strong>A Win for The Law Offices of Melissa A. Day</strong></a><br /><em>July 21, 2020</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2019\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/07/melissa-a-day-esq-invited-to-join-buffalo-business-first-leadership-trust/\"><strong>Melissa A. Day, Esq. invited to join Buffalo Business First Leadership Trust</strong></a><br /><em>July 30, 2019</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/05/claimants-conviction-of-unlawful-manufacture-of-methamphetamine-does-not-amount-to-a-violation-under-wcl-114-a/\"><strong>Claimant’s conviction of unlawful manufacture of methamphetamine does not amount to a violation under WCL 114-a.</strong></a><br /><em>May 31, 2019</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/\">Amendments to 2017 not retroactive if PPD claimant was not attached to labor market</a><br /></strong><em>May 31, 2019</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/05/lwec-incontinence/\"><strong>LWEC &amp; Incontinence</strong></a><br /><em>May 28, 2019</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/05/a-new-quest-begins/\"><strong>A New Quest Begins</strong><strong></strong></a><br /><em>May 21, 2019</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2018\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/12/appeals-inventory-and-forms/\"><strong>Appeals Inventory and Forms</strong></a><br /><em>December 17, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\"><strong>Review of Workers Compensation Board Schedule Loss of Use Frequently Asked Questions and New Permanency Forms</strong></a><br /><em>December 17, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/proposed-changes-submitted-seeking-to-expand-the-boards-legal-internship-program/\"><strong>Proposed Changes Submitted Seeking to Expand the Board’s Legal Internship Program</strong></a><br /><em>May 25, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/youre-claiming-what/\"><strong>You’re claiming what?!?</strong></a><br /><em>May 25, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/new-slu-guidelines-presentation-by-the-board/\"><strong>New SLU Guidelines Presentation by the Board</strong></a><br /><em>May 23, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/united-states-supreme-court-is-considering-a-petition-for-a-writ-of-certiorari-of-the-american-economy-decision/\"><strong>United States Supreme Court is Considering a Petition for a Writ of Certiorari Of the American Economy Decision</strong></a><br /><em>May 23, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/03/ricky-costner-jr-18-year-old-slain-by-a-deranged-co-worker-honored-by-family-and-friends/\"><strong>Ricky Costner Jr., 18 Year Old Slain by a Deranged Co-Worker, Honored by Family and Friends</strong></a><br /><em>March 31, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\"><strong>Schedule Loss of Use Awards – Grrrrrrrrr</strong></a><br /><em>March 31, 2018</em><br /><em></em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2017\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/10/court-of-appeals-upholds-2013-amendment-to-section-25-a-marking-the-end-for-the-fund-for-reopened-cases/\"><strong>Court of Appeals Upholds 2013 Amendment to Section 25-a – Marking the End for The Fund for Reopened Cases</strong></a><br /><em>October 26, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\"><strong>How to Avoid Bad Luck in Your Comp Claims This Friday the 13th – Some Basic Time Constraints for New York State Workers’ Compensation Claims to Keep in Mind</strong></a><br /><em>October 12, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\"><strong>Board Finds that Medical Treatment Guidelines Apply to Out of State Claimants</strong></a><br /><em>June 7, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/02/permanent-partial-disability-safety-netwhat-to-expect-from-wcl-%c2%a735/\"><strong>Permanent Partial Disability “Safety Net”…What to Expect from WCL §35</strong></a><br /><em>February 5, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/01/back-to-the-future-the-return-of-wcl-252-b-fact-finding-without-judges-and-legal-reasoning-without-lawyers/\"><strong>Back to the Future: The Return of WCL 25(2-b): Fact-Finding without Judges and Legal Reasoning without Lawyers</strong></a><br /><em>January 18, 2017</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2016\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/12/its-the-holiday-season/\"><strong>It’s the Holiday Season!</strong></a><br /><em>December 8, 2016</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/10/happy-hallo-wean/\"><strong>HAPPY HALLO-WEAN!</strong></a><br /><em>October 31, 2016</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/10/to-wean-or-not-to-wean-that-is-the-question/\"><strong>TO WEAN, OR NOT TO WEAN, THAT IS THE QUESTION.</strong></a><br /><em>October 25, 2016</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/04/reopened-cases/\"><strong>Reopened Cases</strong></a><br /><em>April 15, 2016</em><em></em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2015\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/11/ny-allows-employer-to/\"><strong>NY Allows Employer to…</strong></a><br /><em>November 28, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/11/an-employee-cannot-be/\"><strong>An Employee Cannot be…</strong></a><br /><em>November 23, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/10/vocational-and-functional/\"><strong>Vocational and Functional…</strong></a><br /><em>October 27, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/09/challenge-yourself/\"><strong>Challenge Yourself</strong></a><br /><em>September 19, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/09/labor-market-attachment-refresher/\"><strong>Labor Market Attachment Refresher</strong></a><br /><em>September 16, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/09/summer-is-almost-over/\"><strong>Summer is Almost Over!</strong></a><br /><em>September 7, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/claims-handling-performance/\"><strong>Claims Handling Performance</strong></a><br /><em>August 23, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/answers-to-the-quiz/\"><strong>Answers to the Quiz</strong></a><br /><em>August 10, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/average-wages/\"><strong>Average Wages?</strong></a><br /><em>August 7, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/non-acute-pain-treatment-guidelines/\"><strong>Non-Acute Pain Treatment Guidelines</strong></a><br /><em>August 5, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\"><strong>Test Your NY Workers’ Compensation Chops</strong></a><br />August 3, 2015</h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/07/liability-for-treatment-by-social-workers/\"><strong>Liability for Treatment by Social Workers</strong></a><br /><em>July 21, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/07/mds-jds-and-ttds/\"><strong>MDs, JDs AND TTDs</strong></a><br /><em>July 13, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/07/hot-dogs-or-hamburgers/\"><strong>HOT DOGS OR HAMBURGERS?</strong></a><br /><em>July 1, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/06/imes-the-next-summer-movie-blockbuster-or-just-another-ime-gone-bust/\"><strong>IMEs : The Next Summer Movie Blockbuster or Just Another IME Gone Bust?</strong></a><br /><em>June 29, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/06/wcbs-regulatory-agenda-may-include/\"><strong>WCB’s Regulatory Agenda May Include…</strong></a><br /><em>June 14, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/02/an-underwriting-nightmare-come-true/\"><strong>An Underwriting Nightmare Come True</strong></a><br /><em>February 5, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/02/hearing-loss-becomes-hearing-win/\"><strong>Hearing Loss becomes Hearing Win</strong></a><br /><em>February 5, 2015</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2014\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\"><strong>Non Acute Pain Medical Treatment Guidelines Offer a Framework for Controlling Costs Associated with Chronic Pain Management, Especially Opioid Use</strong></a><br /><em>November 24, 2014</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\"><strong>In Kigin v. WCB, the Court of Appeals upholds the presumption that treatment outside the MTGs is not medically necessary and the attending physician has the burden of proof of the need for a variance.</strong></a><br /><em>November 23, 2014</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\"><strong>The Law Offices of Melissa A. Day, PLLC Won a Finding of a 0% Loss of Wage Earning Capacity</strong></a><br /><em>November 22, 2014</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">Navigating the Low Back Medical Treatment Guidelines for Chiropractic Care</a><br /><em>Sseptember 12, 2014</em><br /></strong></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2013\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/12/did-you-know-the-board-has-retired-the-concept-of-the-compensable-retirement-the-death-knell-of-the-trifecta-zamora-and-the-so-called-compensable-retirement/\"><strong>DID YOU KNOW? THE BOARD HAS RETIRED THE CONCEPT OF THE COMPENSABLE RETIREMENT. The Death Knell of the Trifecta: Zamora and the so-called “Compensable Retirement”</strong></a><br /><em>December 17, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\"><strong>A Blind Leap across an Inscrutable Chasm – Arbitrary and Capricious Loss of Wage Earning Capacity (LWEC) Determinations</strong></a><br /><em>November 30, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\"><strong>LESS THAN TWELVE WEEKS REMAINING FOR WCL §25-a! Because Subject # 046-630 Contains Stricter Requirements for Reopening a Claim on the Issue of §25-a, Prudent Carriers and Employers May Want to Refer Applications to Defense Counsel</strong></a><br /><em>October 10, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\"><strong>BOARD PROCESS RE-ENGINEERING (“BPR”) – NY WORKERS’ COMPENSATION FORUM MEMBERS SHOULD BE INCLUDED IN THE DIALOGUE</strong></a><br /><em>September 13, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/08/did-you-know-the-2nd-circuit-certified-a-question-to-the-ny-court-of-appeals-on-the-exclusivity-provision-of-the-wcl/\"><strong>DID YOU KNOW? The 2nd Circuit certified a question to the NY Court of Appeals on the exclusivity provision of the WCL?</strong></a><br /><em>August 14, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\"><strong>DID YOU KNOW? Twenty Insurance Carriers Have Filed an Action Seeking to Obtain a Declaration that the Elimination of The Fund for Reopened Cases Is Unconstitutional.</strong></a><br /><em>August 3, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\"><strong>DID YOU KNOW? THE THIRD DEPARTMENT HOLDS THAT MEDICAL TREATMENT WHICH IS NOT SPECIFICALLY INCLUDED IN THE MTG IS PRESUMPTIVELY NOT MEDICALLY NECESSARY.</strong></a><br /><em>July 30 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\"><strong>DID YOU KNOW? AN EMPLOYER OR CARRIER MAY BE ABLE TO REOPEN A PPD CLAIM ON THE ISSUE OF LABOR MARKET ATTACHMENT.</strong></a><br /><em>July 13, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\"><strong>DID YOU KNOW? A bill being considered by the NY State Legislature which would create a presumption of permanent total disability for claimants who are found eligible for social security?</strong></a><br /><em>April 30, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/04/did-you-know-25-a-is-going-away/\"><strong>DID YOU KNOW? 25-A IS GOING AWAY.</strong></a><br /><em>April 6, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">DID YOU KNOW? A chiropractic variance request based on alleged functional improvements and expected continued improvements may not be granted if the chiropractor continues to find that the claimant is totally disabled.</a><br /><em>March 13, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\"><strong>DID YOU KNOW? The Federal Government Is Not Subject to the Jurisdiction of the NY Workers’ Compensation Board on a Theory of General/Special Employment?</strong></a><br /><em>February 23, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/02/did-you-know-governor-cuomos-budget-proposes-to-eliminate-mandatory-deposits-into-the-atf-and-to-close-the-fund-to-new-deposits/\"><strong>DID YOU KNOW? GOVERNOR CUOMO’S BUDGET PROPOSES TO ELIMINATE MANDATORY DEPOSITS INTO THE ATF AND TO CLOSE THE FUND TO NEW DEPOSITS?</strong></a><br />February 5, 2013</h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know-implementation-of-the-changes-to-the-mtg-has-been-delayed-until-march-1-2013/\"><strong>DID YOU KNOW? IMPLEMENTATION OF THE CHANGES TO THE MTG HAS BEEN DELAYED UNTIL MARCH 1, 2013.</strong></a><br /><em>January 22, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\"><strong>DID YOU KNOW? FACEBOOK PAGES ARE NOT CONSIDERED “SURVEILLANCE” THAT HAS TO BE DISCLOSED BEFORE A CLAIMANT TESTIFIES.</strong></a><br /><em>January 22, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know-wcl-%c2%a7153v-benefits-may-now-be-capped-under-wcl-%c2%a7153w/\"><strong>DID YOU KNOW? WCL §15(3)(v) BENEFITS MAY NOW BE CAPPED UNDER WCL §15(3)(w)</strong></a><br /><em>January 14, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/why-why-do-judges-even-set-deadlines-for-the-submission-of-memoranda-of-law/\"><strong>WHY? Why do judge’s even set deadlines for the submission of Memoranda of Law?</strong></a><br /><em>January 10, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know/\"><strong>DID YOU KNOW?</strong></a><br /><em>January 5, 2013</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][/et_pb_accordion]','LOMAD Blog Accordion Sidebar','','publish','closed','closed','','lomad-blog-accordion-sidebar','','','2022-09-09 10:24:23','2022-09-09 14:24:23','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/lomad-blog-accordion-sidebar/',0,'et_pb_layout','',0),(50531,1,'2022-09-09 10:26:02','2022-09-09 14:26:02','[et_pb_search placeholder=\"Looking for a topic?\" placeholder_color=\"#FFFFFF\" admin_label=\"LOMAD Blog Search\" module_class=\"lm-ignore\" _builder_version=\"4.18.0\" _module_preset=\"default\" button_font=\"Playfair Display||||||||\" button_font_size=\"16px\" form_field_font=\"Playfair Display|500|||||||\" form_field_font_size=\"17px\" background_color=\"#211865\" background_layout=\"dark\" custom_margin=\"||21px||false|false\" custom_padding=\"1em||1em||false|false\" border_radii=\"on||||\" global_colors_info=\"{}\" template_type=\"module\"][/et_pb_search]','LOMAD Blog Search','','publish','closed','closed','','lomad-blog-search','','','2022-09-09 10:26:02','2022-09-09 14:26:02','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/lomad-blog-search/',0,'et_pb_layout','',0),(50543,1,'2022-09-09 11:01:17','2022-09-09 15:01:17','','LOMAD Newsletter - Blue 2','','inherit','closed','closed','','lomad-newsletter-blue-2','','','2022-09-09 11:01:17','2022-09-09 15:01:17','',6,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Newsletter-Blue-2.png',0,'attachment','image/png',0),(50546,1,'2022-09-09 11:03:57','2022-09-09 15:03:57','','LOMAD Newsletter - Blue 3','','inherit','closed','closed','','lomad-newsletter-blue-3','','','2022-09-09 11:03:57','2022-09-09 15:03:57','',6,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Newsletter-Blue-3.png',0,'attachment','image/png',0),(50566,1,'2022-09-09 14:17:52','2022-09-09 18:17:52','This page is used for Divi Login Designer extension. It will not be visible to your readers. Do not delete it.','Divi Login Designer','','private','closed','closed','','divi-login-designer','','','2022-09-14 14:49:28','2022-09-14 18:49:28','',0,'https://thelomad.com/getmad.today/divi-login-designer/',0,'page','',0),(50572,1,'2022-09-09 14:30:54','2022-09-09 18:30:54','','LOMAD Magazine','','inherit','closed','closed','','lomad-magazine','','','2022-09-09 14:30:54','2022-09-09 18:30:54','',46229,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Magazine.png',0,'attachment','image/png',0),(50573,1,'2022-09-09 14:49:51','2022-09-09 18:49:51','','LOMAD tv (lighter)','','inherit','closed','closed','','lomad-tv-lighter','','','2022-09-09 14:49:51','2022-09-09 18:49:51','',46229,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-tv-lighter.png',0,'attachment','image/png',0),(50581,1,'2022-09-09 15:33:25','2022-09-09 19:33:25','','LOMAD Icons - TV white - 100 x 100','','inherit','closed','closed','','lomad-icons-tv-white-100-x-100','','','2022-09-09 15:33:25','2022-09-09 19:33:25','',46229,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Icons-TV-white-100-x-100.png',0,'attachment','image/png',0),(50582,1,'2022-09-09 15:40:55','2022-09-09 19:40:55','','LOMAD Newsletter - White','','inherit','closed','closed','','lomad-newsletter-white','','','2022-09-09 15:40:55','2022-09-09 19:40:55','',46229,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Newsletter-White.png',0,'attachment','image/png',0),(50583,1,'2022-09-09 15:43:12','2022-09-09 19:43:12','','LOMAD Calendar Icon White','','inherit','closed','closed','','lomad-calendar-icon-white','','','2022-09-09 15:43:12','2022-09-09 19:43:12','',46229,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Calendar-Icon-White.png',0,'attachment','image/png',0),(50618,1,'2022-09-12 09:19:50','2022-09-12 13:19:50','[et_pb_text admin_label=\"Workers\' Comp Practice Aids\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_orientation=\"center\" width=\"52%\" module_alignment=\"center\" custom_margin=\"||15px||false|false\" custom_padding=\"20px||7px||false|false\" border_radii=\"off||||\" border_width_bottom=\"4px\" border_color_bottom=\"#211865\" border_style_bottom=\"double\" global_colors_info=\"{}\" custom_padding__hover_enabled=\"off|desktop\" template_type=\"module\"]<h2>Workers\' Compensation Practice Aids</h2>[/et_pb_text]','New Page Title Text 2022','','publish','closed','closed','','new-page-title-text-2022','','','2022-09-12 09:19:50','2022-09-12 13:19:50','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/new-page-title-text-2022/',0,'et_pb_layout','',0),(50623,1,'2022-09-12 09:45:02','2022-09-12 13:45:02','','Client Resources_Title','','inherit','closed','closed','','client-resources_title','','','2022-09-12 09:45:02','2022-09-12 13:45:02','',46229,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Client-Resources_Title.png',0,'attachment','image/png',0),(50629,1,'2022-09-12 10:07:48','2022-09-12 14:07:48','[et_pb_text admin_label=\"...\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_padding=\"6px||50px||false|false\" global_colors_info=\"{}\" template_type=\"module\"]<p style=\"text-align: center;\">We have assembled the current data related to PPD caps, max benefit rates and SLU/PHP. We invite you to leverage these when handling your claims!</p>[/et_pb_text]','Title Underline','','publish','closed','closed','','title-underline','','','2022-09-12 10:07:48','2022-09-12 14:07:48','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/title-underline/',0,'et_pb_layout','',0),(50654,1,'2022-09-12 11:31:48','2022-09-12 15:31:48','','LOMAD Hands In 2 - blue','','inherit','closed','closed','','lomad-hands-in-2-blue','','','2022-09-12 11:31:48','2022-09-12 15:31:48','',46229,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Hands-In-2-blue-.png',0,'attachment','image/png',0),(50655,1,'2022-09-12 11:36:43','2022-09-12 15:36:43','','LOMAD Icon - Gavel - blue','','inherit','closed','closed','','lomad-icon-gavel-blue','','','2022-09-12 11:36:43','2022-09-12 15:36:43','',46229,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Icon-Gavel-blue.png',0,'attachment','image/png',0),(50664,1,'2022-09-12 11:51:10','2022-09-12 15:51:10','','LOMAD TV2 white','','inherit','closed','closed','','lomad-tv2-white','','','2022-09-12 11:51:10','2022-09-12 15:51:10','',46229,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-TV2-white.png',0,'attachment','image/png',0),(50698,1,'2022-09-15 10:10:42','2022-09-12 16:26:54','','Workers’ Compensation Practice Aids','','publish','closed','closed','','workers-compensation-practice-aids-2','','','2022-09-15 10:10:42','2022-09-15 14:10:42','',46229,'https://thelomad.com/getmad.today/?p=50698',6,'nav_menu_item','',0),(50700,1,'2022-09-12 12:48:50','2022-09-12 16:48:50','','@Fd2X@HoSi292','','inherit','closed','closed','','fd2xhosi292','','','2022-09-12 12:48:50','2022-09-12 16:48:50','',0,'https://thelomad.com/getmad.today/fd2xhosi292/',0,'attachment','image/jpeg',0),(50701,1,'2022-09-12 12:48:51','2022-09-12 16:48:51','','@Fd2X@HoSi294','','inherit','closed','closed','','fd2xhosi294','','','2022-09-12 12:48:51','2022-09-12 16:48:51','',0,'https://thelomad.com/getmad.today/fd2xhosi294/',0,'attachment','image/jpeg',0),(50702,1,'2022-09-12 12:48:52','2022-09-12 16:48:52','','@Fd2X@HoSi295','','inherit','closed','closed','','fd2xhosi295','','','2022-09-12 12:48:52','2022-09-12 16:48:52','',0,'https://thelomad.com/getmad.today/fd2xhosi295/',0,'attachment','image/jpeg',0),(50703,1,'2022-09-12 12:48:54','2022-09-12 16:48:54','','@Fd2X@HoSi293','','inherit','closed','closed','','fd2xhosi293','','','2022-09-12 12:48:54','2022-09-12 16:48:54','',0,'https://thelomad.com/getmad.today/fd2xhosi293/',0,'attachment','image/jpeg',0),(50708,1,'2022-09-12 14:00:33','2022-09-12 18:00:33','','Channel Trailer 1 (5-2022)','','inherit','closed','closed','','channel-trailer-1-5-2022','','','2022-09-12 14:00:33','2022-09-12 18:00:33','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Channel-Trailer-1-5-2022.mp4',0,'attachment','video/mp4',0),(50709,1,'2022-09-12 14:49:31','2022-09-12 18:49:31','','LOMAD Newsletter - Blue 3','','inherit','closed','closed','','lomad-newsletter-blue-3-2','','','2022-09-12 14:49:31','2022-09-12 18:49:31','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Newsletter-Blue-3-1.png',0,'attachment','image/png',0),(50710,1,'2022-09-12 14:51:41','2022-09-12 18:51:41','','lol','','inherit','closed','closed','','lol','','','2022-09-12 14:51:41','2022-09-12 18:51:41','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/lol.png',0,'attachment','image/png',0),(50711,1,'2022-09-12 14:57:39','2022-09-12 18:57:39','','lol 3','','inherit','closed','closed','','lol-3','','','2022-09-12 14:57:39','2022-09-12 18:57:39','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/lol-3.png',0,'attachment','image/png',0),(50712,1,'2022-09-12 14:58:58','2022-09-12 18:58:58','','@UnSiEKy2OTRPXdw','','inherit','closed','closed','','unsieky2otrpxdw','','','2022-09-12 14:58:58','2022-09-12 18:58:58','',0,'https://thelomad.com/getmad.today/unsieky2otrpxdw/',0,'attachment','image/jpeg',0),(50713,1,'2022-09-12 14:59:01','2022-09-12 18:59:01','','@UnSiYjVa-F9P9kk','','inherit','closed','closed','','unsiyjva-f9p9kk','','','2022-09-12 14:59:01','2022-09-12 18:59:01','',0,'https://thelomad.com/getmad.today/unsiyjva-f9p9kk/',0,'attachment','image/jpeg',0),(50714,1,'2022-09-12 14:59:04','2022-09-12 18:59:04','','@UnSiVCFxt2yT1eQ','','inherit','closed','closed','','unsivcfxt2yt1eq','','','2022-09-12 14:59:04','2022-09-12 18:59:04','',0,'https://thelomad.com/getmad.today/unsivcfxt2yt1eq/',0,'attachment','image/jpeg',0),(50715,1,'2022-09-12 14:59:07','2022-09-12 18:59:07','','@UnSi0FRJ2SCuY4k','','inherit','closed','closed','','unsi0frj2scuy4k','','','2022-09-12 14:59:07','2022-09-12 18:59:07','',0,'https://thelomad.com/getmad.today/unsi0frj2scuy4k/',0,'attachment','image/jpeg',0),(50735,1,'2022-09-13 11:16:08','2022-09-13 15:16:08','[et_pb_text admin_label=\"MFS Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" hover_enabled=\"0\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\" template_type=\"module\"]<h2>​</h2>\n<div class=\"et_pb_module et_pb_text et_pb_text_37 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Practice Areas</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_21\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\">Workers’ Compensation</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_38 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Current Employment Position</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_22\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\">Of Counsel</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_39 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Bar Admissions</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_23\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\">New York, 1985</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_43 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Education</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_25\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\"><strong>Brooklyn Law School</strong>, Brooklyn, New York\n<ul>\n<li>J.D. - 1984</li>\n</ul>\n</li>\n<li class=\"bio-list__item\"><strong>College of New Rochelle - BA 1979</strong></li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_47 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Tenure at firm</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_48 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>1.25 days and counting</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_49 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Your Legal Superpower</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_50 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>\n<ul>\n<li>Listening carefully</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_51 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Hobbies</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_52 et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>\n<ul>\n<li>Sculling</li>\n<li>Stained Glass</li>\n<li>Family Geneology</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>[/et_pb_text]','TEMP - Attorney Bio Text Block','','publish','closed','closed','','temp-attorney-bio-text-block','','','2022-09-13 11:16:08','2022-09-13 15:16:08','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/temp-attorney-bio-text-block/',0,'et_pb_layout','',0),(50747,1,'2022-09-14 09:43:22','2022-09-14 13:43:22','','','','publish','closed','closed','','50747','','','2022-09-14 09:43:22','2022-09-14 13:43:22','',0,'https://thelomad.com/getmad.today/blog/nf_sub/50747/',0,'nf_sub','',0),(50748,1,'2022-09-14 09:50:15','2022-09-14 13:50:15','','','','publish','closed','closed','','50748','','','2022-09-14 09:50:15','2022-09-14 13:50:15','',0,'https://thelomad.com/getmad.today/blog/nf_sub/50748/',0,'nf_sub','',0),(50749,1,'2022-09-14 09:52:20','2022-09-14 13:52:20','','','','publish','closed','closed','','50749','','','2022-09-14 09:52:20','2022-09-14 13:52:20','',0,'https://thelomad.com/getmad.today/blog/nf_sub/50749/',0,'nf_sub','',0),(50750,1,'2022-09-14 09:57:25','2022-09-14 13:57:25','','','','publish','closed','closed','','50750','','','2022-09-14 09:57:25','2022-09-14 13:57:25','',0,'https://thelomad.com/getmad.today/blog/nf_sub/50750/',0,'nf_sub','',0),(50751,1,'2022-09-14 10:00:38','2022-09-14 14:00:38','','','','publish','closed','closed','','50751','','','2022-09-14 10:00:38','2022-09-14 14:00:38','',0,'https://thelomad.com/getmad.today/blog/nf_sub/50751/',0,'nf_sub','',0),(50752,1,'2022-09-14 10:02:08','2022-09-14 14:02:08','','','','publish','closed','closed','','50752','','','2022-09-14 10:02:08','2022-09-14 14:02:08','',0,'https://thelomad.com/getmad.today/blog/nf_sub/50752/',0,'nf_sub','',0),(50753,1,'2022-09-14 10:03:05','2022-09-14 14:03:05','','','','publish','closed','closed','','50753','','','2022-09-14 10:03:05','2022-09-14 14:03:05','',0,'https://thelomad.com/getmad.today/blog/nf_sub/50753/',0,'nf_sub','',0),(50754,1,'2022-09-14 10:05:53','2022-09-14 14:05:53','','','','publish','closed','closed','','50754','','','2022-09-14 10:05:53','2022-09-14 14:05:53','',0,'https://thelomad.com/getmad.today/blog/nf_sub/50754/',0,'nf_sub','',0),(50755,1,'2022-09-14 10:09:03','2022-09-14 14:09:03','','','','publish','closed','closed','','50755','','','2022-09-14 10:09:03','2022-09-14 14:09:03','',0,'https://thelomad.com/getmad.today/blog/nf_sub/50755/',0,'nf_sub','',0),(50756,1,'2022-09-14 10:09:56','2022-09-14 14:09:56','','','','publish','closed','closed','','50756','','','2022-09-14 10:09:56','2022-09-14 14:09:56','',0,'https://thelomad.com/getmad.today/blog/nf_sub/50756/',0,'nf_sub','',0),(50757,1,'2022-09-14 10:11:28','2022-09-14 14:11:28','','','','publish','closed','closed','','50757','','','2022-09-14 10:11:28','2022-09-14 14:11:28','',0,'https://thelomad.com/getmad.today/blog/nf_sub/50757/',0,'nf_sub','',0),(50758,1,'2022-09-14 10:14:35','2022-09-14 14:14:35','','','','publish','closed','closed','','50758','','','2022-09-14 10:14:35','2022-09-14 14:14:35','',0,'https://thelomad.com/getmad.today/blog/nf_sub/50758/',0,'nf_sub','',0),(50759,1,'2022-09-14 10:17:29','2022-09-14 14:17:29','','','','publish','closed','closed','','50759','','','2022-09-14 10:17:29','2022-09-14 14:17:29','',0,'https://thelomad.com/getmad.today/blog/nf_sub/50759/',0,'nf_sub','',0),(50760,1,'2022-09-14 10:18:27','2022-09-14 14:18:27','','','','publish','closed','closed','','50760','','','2022-09-14 10:18:27','2022-09-14 14:18:27','',0,'https://thelomad.com/getmad.today/blog/nf_sub/50760/',0,'nf_sub','',0),(50761,1,'2022-09-14 10:20:55','2022-09-14 14:20:55','','','','publish','closed','closed','','50761','','','2022-09-14 10:20:55','2022-09-14 14:20:55','',0,'https://thelomad.com/getmad.today/blog/nf_sub/50761/',0,'nf_sub','',0),(50762,1,'2022-09-14 10:23:53','2022-09-14 14:23:53','','','','publish','closed','closed','','50762','','','2022-09-14 10:23:53','2022-09-14 14:23:53','',0,'https://thelomad.com/getmad.today/blog/nf_sub/50762/',0,'nf_sub','',0),(50765,1,'2022-09-14 10:30:28','2022-09-14 14:30:28','[et_pb_row column_structure=\"1_3,2_3\" make_equal=\"on\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" module_class=\"fl-row-attorney\" _builder_version=\"4.16\" custom_margin=\"0px||0px\" custom_padding=\"0px||0px\" global_colors_info=\"{}\" template_type=\"row\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|40px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/05/Maria-Lua300X300.jpg\" alt=\"Maria Lua\" title_text=\"Maria-Lua300X300\" admin_label=\"Image - MCL\" _builder_version=\"4.18.0\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" border_color_all=\"#FFFFFF\" border_style_all=\"none\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text admin_label=\"Maria Lua \" module_class=\"fl-attorney-title\" _builder_version=\"4.18.0\" text_font=\"||||||||\" text_text_color=\"#fd8308\" header_font=\"||||||||\" header_text_color=\"#211865\" header_font_size=\"35px\" header_2_font=\"||||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.25em\" custom_margin=\"0px||0px\" custom_padding=\"0px||10px|0px|false|false\" header_font_size_tablet=\"34px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_2_font_size_tablet=\"32px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h1>Maria Lua</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" text_font=\"|600|||||||\" text_text_color=\"#027acb\" text_font_size=\"24px\" header_font=\"||||||||\" header_2_text_color=\"#211865\" header_3_font=\"||||||||\" header_3_text_color=\"#000000\" custom_padding=\"5px||10px|5px|false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Me:</h2>[/et_pb_text][et_pb_text admin_label=\"Phone Number\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_padding=\"|||5px|false|false\" link_option_url=\"tel:+17163121371\" global_colors_info=\"{}\"]<p>(716) 312-1371</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|30px|||false|false\" custom_padding_tablet=\"|0px|||false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Practice Areas\" _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"||20px\" custom_padding_tablet=\"0px||26px||false\" custom_padding_phone=\"0px||20px||false\" custom_padding_last_edited=\"on|desktop\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2>Practice Areas</h2>\r[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"]<ul>\n<li>Workers’ Compensation</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Current Employment Positions\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Current Employment Position</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"]<ul>\n<li>Associate Attorney</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Bar Admissions\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Bar Admissions</h2>\r[/et_pb_text][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"]<ul>\n<li>New York, 2021</li>\n<li>Philippines, 2018</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Professional Associations\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#000000\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Associations and Memberships</h2>\r[/et_pb_text][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"]<ul>\n<li>New York State Bar Association</li>\n<li>Integrated Bar of the Philippines</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Education\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Education</h2>\r[/et_pb_text][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"]<ul>\n<li><strong>University of the Philippines College of Law</strong>, Quezon City\n<ul>\n<li>Juris Doctor - 2017</li>\n</ul>\n</li>\n<li><strong>University of the Philippines College of Social Sciences and Philosophy</strong>\n<ul>\n<li>BA Philosophy - 2012</li>\n</ul>\n</li>\n<li><strong>University of Santo Tomas, High School</strong>\n<ul>\n<li>2012</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Pro-Bono Activities\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pro-Bono Activities</h2>\r[/et_pb_text][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"]<ul>\n<li>U.P. Office of Legal Aid - 2016-2017</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Label\" _builder_version=\"4.16\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Tenure at firm</h2>\r[/et_pb_text][et_pb_text disabled_on=\"off|off|off\" admin_label=\"Tenure Content\" _builder_version=\"4.16\" text_text_color=\"#000000\" custom_padding=\"|||15px|false|false\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>February 2022</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Legal Superpower label\" _builder_version=\"4.16\" header_2_text_color=\"#211865\" custom_padding=\"15px||15px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>Your Legal Superpower</h2>\r[/et_pb_text][et_pb_text admin_label=\"Legal superpower content\" _builder_version=\"4.16\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>My legal superpower is I eat writing assignments for breakfast.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Pets label\" _builder_version=\"4.16\" header_2_text_color=\"#211865\" locked=\"off\" global_colors_info=\"{}\"]<h2>Pets and Hobbies</h2>\r[/et_pb_text][et_pb_text admin_label=\"Pets content\" _builder_version=\"4.16\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>Pets :\n<ul>\n<li>Waffle the Kuya Baby aka “Best Boy” – American Staffordshire</li>\n<li>Kyuubi the Destroyer aka “Handsome Boy” – Rottweiler-Labrador</li>\n</ul>\n</li>\n<li>Hobbies:\n<ul>\n<li>Hiking</li>\n<li>Being in the mountains</li>\n<li>Playing the ukulele</li>\n<li>Contemplating the meaning of life</li>\n</ul>\n</li>\n</ul>[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Honors\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Honors</h2>\r[/et_pb_text][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Published Works\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Published Works</h2>\r[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Fraternities or Sororities\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Fraternities or Sororities</h2>\r[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.16\" _module_preset=\"default\" disabled=\"on\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Biography\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Biography</h2>\r[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.16\" _module_preset=\"default\" disabled=\"on\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Certified Legal Specialties\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Certified Legal Specialties</h2>\r[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Text\" _builder_version=\"4.16\" _module_preset=\"default\" disabled=\"on\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Classes & Seminars\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Classes &amp; Seminars</h2>\r[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.16\" _module_preset=\"default\" disabled=\"on\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Representative Clients\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"|600|||||||\" header_6_text_color=\"#353535\" header_6_font_size=\"20px\" header_6_letter_spacing=\"1px\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Representative Clients</h2>\r[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.16\" _module_preset=\"default\" disabled=\"on\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"References\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>References</h2>\r[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" admin_label=\"Past Positions\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_2_text_color=\"#211865\" header_6_font=\"||||||||\" header_6_text_color=\"#353535\" custom_padding=\"15px||15px||false|false\" custom_padding_tablet=\"||||true|false\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|tablet\" disabled=\"on\" locked=\"off\" global_colors_info=\"{}\"]<h2>Past Positions</h2>\r[/et_pb_text][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.16\" _module_preset=\"default\" disabled=\"on\" global_colors_info=\"{}\"][/et_pb_text][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"4.16\" _module_preset=\"default\" disabled=\"on\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row]','TEMP - Full Atty Bio','','publish','closed','closed','','temp-full-atty-bio','','','2022-09-14 10:30:28','2022-09-14 14:30:28','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/temp-full-atty-bio/',0,'et_pb_layout','',0),(50771,1,'2022-09-14 10:43:13','2022-09-14 14:43:13','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Mary Frances Schnorr\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Vicki_L_Buehler-1_pp.jpg\" alt=\"associate attorney Vicki L. Buehler\" title_text=\"Vicki_L_Buehler-1_pp\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - VLB\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#FFFFFF\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" custom_css_before_last_edited=\"on|desktop\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text admin_label=\"Vicki L. Buehler\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">Vicki L. Buehler</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:5854441368\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"VLB Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Practice Areas</h2>\n<ul>\n<li>Workers’ Compensation</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Current Employment Position</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Associate Attorney</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Bar Admissions</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>New York, 2009</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Professional Associations and Memberships</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>New York State Bar Association</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Education</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li><strong>Syracuse University College of Law</strong>\n<ul>\n<li>Juris Doctor 2008</li>\n</ul>\n</li>\n<li><strong>LeMoyne College</strong>\n<ul>\n<li>Bachelor of Science 2005</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pro-Bono Activities</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Volunteer with Food Bank of the Southern Tier</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Tenure at firm</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Joined the firm January 2020</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Verdicts/Settlements/Cases of Note/Favorite Win</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>My favorite win was getting a law judge to disallow a claim under Section 10, which says there is no liability if the injury solely arises out of the claimant’s intoxication from alcohol or a controlled substance.  The claimant fell 150 feet off a cell tower (and miraculously survived with relatively minor injuries!).  He was rushed to the local ER where blood tests showed evidence of illegal drugs, including methamphetamines and marijuana. Although he denied using drugs and asserted the tox screen was false, he had a long history of drug abuse.  His employer testified that the claimant’s safety gear was checked and working properly, and the ER doctor testified that the drugs in the tox screen would likely cause impaired judgement and concentration, among other side effects. We argued that the claimant failed to properly secure his safety equipment due to impaired judgement and concentration caused by his usage of illegal drugs, as shown by his tox screen shortly after the accident, and that the claim should be disallow under Section 10. The judge agreed and disallowed the case.</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Pets and Hobbies</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>Pets:\n<ul>\n<li>Zach, my feline overlord, a 14 year old Maine Coon cuddle bug.</li>\n</ul>\n</li>\n<li>Hobbies\n<ul>\n<li>Movies, books, music, baking and hiking</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Vicki Buehler','','publish','closed','closed','','vicki-buehler','','','2022-09-15 10:59:58','2022-09-15 14:59:58','',46191,'https://thelomad.com/getmad.today/?page_id=50771',0,'page','',0),(50883,1,'2022-09-14 15:21:40','2022-09-14 19:21:40','[el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:7166505287\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\" template_type=\"module\"][/el_advanced_flipbox]','Atty Call Me button NEW','','publish','closed','closed','','atty-call-me-button-new','','','2022-09-14 15:21:40','2022-09-14 19:21:40','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/atty-call-me-button-new/',0,'et_pb_layout','',0),(50884,1,'2022-09-14 15:21:53','2022-09-14 19:21:53','[el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" hover_enabled=\"0\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" template_type=\"module\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/el_advanced_flipbox]','Atty Email Me button NEW','','publish','closed','closed','','atty-email-me-button-new','','','2022-09-14 16:16:21','2022-09-14 20:16:21','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/atty-email-me-button-new/',0,'et_pb_layout','',0),(50923,1,'2022-09-15 08:07:25','2022-09-15 12:07:25','','Headshot - Melissa Day - Sabina Orgric-1_pp','','inherit','closed','closed','','headshot-melissa-day-sabina-orgric-1_pp','','','2022-09-15 10:00:08','2022-09-15 14:00:08','',50433,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Headshot-Melissa-Day-Sabina-Orgric-1_pp.jpg',0,'attachment','image/jpeg',0),(50924,1,'2022-09-15 08:07:47','2022-09-15 12:07:47','','Headshot - Melissa Day - Tyler Eckert-1_pp','','inherit','closed','closed','','headshot-melissa-day-tyler-eckert-1_pp','','','2022-09-15 08:07:47','2022-09-15 12:07:47','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Headshot-Melissa-Day-Tyler-Eckert-1_pp.jpg',0,'attachment','image/jpeg',0),(50925,1,'2022-09-15 08:13:57','2022-09-15 12:13:57','','Sabina Ogric - 300x300','','inherit','closed','closed','','sabina-ogric-300x300','','','2022-09-15 08:13:57','2022-09-15 12:13:57','',50437,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Sabina-Ogric-300x300-1.png',0,'attachment','image/png',0),(50926,1,'2022-09-15 08:13:59','2022-09-15 12:13:59','','Tyler J. Eckert - 300x300','','inherit','closed','closed','','tyler-j-eckert-300x300','','','2022-09-15 08:13:59','2022-09-15 12:13:59','',50437,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Tyler-J.-Eckert-300x300-1.png',0,'attachment','image/png',0),(50969,1,'2022-09-15 08:53:44','2022-09-15 12:53:44','[et_pb_text admin_label=\"Katrina A. Gray\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" global_colors_info=\"{}\" template_type=\"module\"]<h1 style=\"text-align: center;\">Katrina A. Gray</h1>[/et_pb_text]','TEMP - Atty Name Block','','publish','closed','closed','','temp-atty-name-block','','','2022-09-15 08:53:44','2022-09-15 12:53:44','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/temp-atty-name-block/',0,'et_pb_layout','',0),(50970,1,'2022-09-15 08:53:56','2022-09-15 12:53:56','[et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\" template_type=\"module\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text]','TEMP - Contact Me Block','','publish','closed','closed','','temp-contact-me-block','','','2022-09-15 08:53:56','2022-09-15 12:53:56','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/temp-contact-me-block/',0,'et_pb_layout','',0),(50971,1,'2022-09-15 08:54:10','2022-09-15 12:54:10','[et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\" template_type=\"module\"][/et_pb_divider]','TEMP - Atty Divider Block','','publish','closed','closed','','temp-atty-divider-block','','','2022-09-15 08:54:10','2022-09-15 12:54:10','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/temp-atty-divider-block/',0,'et_pb_layout','',0),(50977,1,'2022-09-15 10:04:42','2022-09-15 14:04:42','','Sabina Ogric - 300x300_3','','inherit','closed','closed','','sabina-ogric-300x300_3','','','2022-09-15 10:04:42','2022-09-15 14:04:42','',50433,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Sabina-Ogric-300x300_3.jpg',0,'attachment','image/jpeg',0),(50980,1,'2022-09-15 10:07:47','2022-09-15 14:07:47','','Tyler J. Eckert - 300x300_3','','inherit','closed','closed','','tyler-j-eckert-300x300_3','','','2022-09-15 10:07:47','2022-09-15 14:07:47','',50437,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Tyler-J.-Eckert-300x300_3.jpg',0,'attachment','image/jpeg',0),(51005,1,'2022-09-15 10:39:33','2022-09-15 14:39:33','[et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Mary_Fran_Schnorr-1_pp.jpg\" alt=\"photo of attorney Mary Frances Schnorr\" title_text=\"Mary_Fran_Schnorr-1_pp\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - MFS\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" border_width_all=\"3px\" border_color_all=\"#211865\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" template_type=\"module\"][/et_pb_image]','TEMP - Atty Profile Photo (MFS)','','publish','closed','closed','','temp-atty-profile-photo-mfs','','','2022-09-15 10:39:33','2022-09-15 14:39:33','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/temp-atty-profile-photo-mfs/',0,'et_pb_layout','',0),(51009,1,'2022-09-15 10:42:48','2022-09-15 14:42:48','[et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Mary Frances Schnorr\" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\" template_type=\"row\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/10/Mary_Fran_Schnorr-1_pp.jpg\" alt=\"photo of attorney Mary Frances Schnorr\" title_text=\"Mary_Fran_Schnorr-1_pp\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - MFS\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#211865\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" custom_css_before_last_edited=\"on|desktop\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text admin_label=\"Mary Frances Schnorr\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">Mary Frances Schnorr</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:7162476567\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME \" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"MFS Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h2>​</h2>\n<div class=\"et_pb_module et_pb_text et_pb_text_37  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Practice Areas</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_21\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\">Workers’ Compensation</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_38  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Current Employment Position</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_22\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\">Of Counsel</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_39  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Bar Admissions</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_23\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\">New York, 1985</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_43  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Education</h2>\n</div>\n</div>\n<div class=\"et_pb_module fl_people_single fl_people_single_25\">\n<div class=\"et_pb_module_inner\">\n<ul class=\"bio-list\">\n<li class=\"bio-list__item\"><strong>Brooklyn Law School</strong>, Brooklyn, New York\n<ul>\n<li>J.D. - 1984</li>\n</ul>\n</li>\n<li class=\"bio-list__item\"><strong>College of New Rochelle - BA 1979</strong></li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_47  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Tenure at firm</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_48  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>1.25 days and counting</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_49  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Your Legal Superpower</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_50  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>\n<ul>\n<li>Listening carefully</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_51  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Hobbies</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_52  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<ul>\n<li>\n<ul>\n<li>Sculling</li>\n<li>Stained Glass</li>\n<li>Family Geneology</li>\n</ul>\n</li>\n</ul>\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row]','TEMP - MFS Atty Bio Row','','publish','closed','closed','','temp-mfs-atty-bio-row','','','2022-09-15 10:42:48','2022-09-15 14:42:48','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/temp-mfs-atty-bio-row/',0,'et_pb_layout','',0),(51121,1,'2022-09-16 11:13:50','0000-00-00 00:00:00','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" admin_label=\"Attorney Profile Section\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Attorney XXX Row \" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/male-placeholder300x300.png\" alt=\"photo of attorney Melissa A. Day\" title_text=\"male-placeholder300x300\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - XXX\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" border_width_all=\"3px\" border_color_all=\"#FFFFFF\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" custom_css_before_last_edited=\"on|desktop\"][/et_pb_image][et_pb_text admin_label=\"ATTORNEY NAME\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">Hiam A. Attorney</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME (ATTORNEY ONLY)\" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:7166160111\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][et_pb_text admin_label=\"CALL ME (STAFF ONLY)\" _builder_version=\"4.18.0\" _module_preset=\"default\" link_option_url=\"tel:7166160111\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">(716) 616-0111</p>[/et_pb_text][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME (ATTORNEY ONLY)\" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME (STAFF ONLY)\" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"mail:xxxxx@madwcdefense.com\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"XXX Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" hover_enabled=\"0\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','New Attorney/Staff','','draft','closed','closed','','','','','2022-09-16 11:13:50','2022-09-16 15:13:50','',0,'https://thelomad.com/getmad.today/?page_id=51121',0,'page','',0),(51122,1,'2022-09-15 14:26:00','2022-09-15 18:26:00','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|phone\" admin_label=\"Attorney Profile Section\" _builder_version=\"4.16\" background_enable_color=\"off\" custom_margin=\"0px||0px\" custom_padding=\"55px||55px||true|false\" bottom_divider_color=\"rgba(255,255,255,0.45)\" bottom_divider_height=\"130px\" bottom_divider_flip=\"horizontal\" locked=\"off\" template_type=\"section\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" make_equal=\"on\" admin_label=\"Attorney XXX Row \" module_class=\"fl-feature\" _builder_version=\"4.18.0\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_margin=\"|0px||0px|false|true\" locked=\"off\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.18.0\" global_colors_info=\"{}\"][et_pb_image alt=\"photo of attorney Melissa A. Day\" title_text=\"Melissa_Ann_Day_pp\" url=\"/attorney/day-melissa-a/\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|tablet\" admin_label=\"Image - XXX\" _builder_version=\"4.18.0\" custom_padding=\"||30px|15px|false|false\" custom_padding_tablet=\"||30px||false|false\" custom_padding_phone=\"||30px||false|false\" custom_padding_last_edited=\"on|phone\" border_width_all=\"3px\" border_color_all=\"#FFFFFF\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" custom_css_before_last_edited=\"on|desktop\"][/et_pb_image][et_pb_text admin_label=\"ATTORNEY NAME\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"10px||||false|false\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">ATTORNEY NAME</h1>[/et_pb_text][et_pb_text admin_label=\"Contact Me\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"5px||10px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><strong>Contact Me:</strong></h2>[/et_pb_text][et_pb_divider color=\"#211865\" divider_style=\"double\" divider_weight=\"4px\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"85%\" module_alignment=\"center\" min_height=\"45px\" global_colors_info=\"{}\"][/et_pb_divider][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"CALL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe090;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" back_use_icon_font_size=\"on\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"CALL ME (ATTORNEY ONLY)\" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"left\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" link_option_url=\"tel:7162047477\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][et_pb_text admin_label=\"CALL ME (STAFF ONLY)\" _builder_version=\"4.18.0\" _module_preset=\"default\" link_option_url=\"tel:7166160111\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">(716) 616-0111</p>[/et_pb_text][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME (ATTORNEY ONLY)\" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"https://thelomad.com/getmad.today/contact/\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][el_advanced_flipbox flipbox_layout=\"layout3\" layout3_flip_style=\"bottom\" flip_speed=\"350ms\" front_content=\"EMAIL ME\" back_use_icon=\"on\" back_font_icon=\"&#xe010;||divi||400\" front_background_color=\"#FFFFFF\" back_background_color=\"#211865\" back_icon_color=\"#FFFFFF\" content_max_width=\"215px\" flipbox_min_height=\"55px\" admin_label=\"EMAIL ME (STAFF ONLY)\" _builder_version=\"4.18.0\" _module_preset=\"default\" front_body_font=\"Playfair Display SC|900|||||||\" front_body_text_color=\"#211865\" front_body_font_size=\"21px\" front_body_line_height=\"1.2em\" back_body_font=\"Playfair Display SC|900|||||||\" back_body_text_color=\"#FFFFFF\" back_body_font_size=\"21px\" transform_translate=\"0px|-15px\" transform_translate_linked=\"off\" module_alignment=\"center\" custom_margin=\"15px|||0px|false|false\" custom_padding=\"||||false|false\" link_option_url=\"mail:xxxxx@madwcdefense.com\" border_width_all_front_box=\"3px\" border_color_all_front_box=\"#211865\" global_colors_info=\"{}\"][/el_advanced_flipbox][/et_pb_column][et_pb_column type=\"3_5\" module_class=\"fl-center\" _builder_version=\"4.16\" custom_padding=\"|||30px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text admin_label=\"XXX Bio\" _builder_version=\"4.18.0\" text_font=\"Montserrat||||||||\" text_text_color=\"#211865\" text_font_size=\"18px\" text_line_height=\"1.4em\" header_text_color=\"#ffffff\" header_2_text_color=\"#003366\" header_2_font_size=\"28px\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#ffffff\" header_6_text_color=\"#ffffff\" hover_enabled=\"0\" header_2_font_size_tablet=\"\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"center\" text_orientation_phone=\"\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','TEMPLATE - Attorney Profile','','publish','closed','closed','','template-attorney-profile','','','2022-09-16 11:14:01','2022-09-16 15:14:01','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/template-attorney-profile/',0,'et_pb_layout','',0),(51131,1,'2022-09-16 09:52:34','2022-09-16 13:52:34','','male-placeholder300x300','','inherit','closed','closed','','male-placeholder300x300','','','2022-09-16 09:52:34','2022-09-16 13:52:34','',51121,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/male-placeholder300x300.png',0,'attachment','image/png',0),(51147,1,'2022-09-16 15:31:30','2022-09-16 19:31:30','[et_pb_section fb_built=\"1\" disabled_on=\"on|on|off\" _builder_version=\"4.18.0\" background_color=\"#211865\" custom_padding=\"20px||20px||true\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" text_font=\"|500|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_2_text_color=\"#000000\" text_orientation=\"right\" module_alignment=\"center\" custom_margin_tablet=\"20px||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">If you are tired of being treated like a number, call The Law Offices of Melissa A. Day at <span style=\"text-decoration: underline;\"><span style=\"color: #ffffff;\"><strong><a href=\"tel:7166160111\" style=\"color: #ffffff; text-decoration: underline;\">(716) 616-0111</a></strong></span></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" make_equal=\"on\" disabled_on=\"on|on|off\" _builder_version=\"4.18.0\" background_color=\"#211865\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.18.0\" custom_padding=\"|||\" custom_css_main_element=\"width: 25%!important;\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Logo-190x120-1.jpg\" alt=\"LOMAD\" title_text=\"LOMAD Logo - 190x120\" url=\"/\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"4.18.0\" width=\"100%\" custom_css_main_element=\"width: 100%!important;\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.18.0\" custom_padding=\"|||\" custom_css_main_element=\"width: 100%!important;\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_menu menu_id=\"12\" menu_style=\"centered\" active_link_color=\"#d8d8d8\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#211865\" dropdown_menu_text_color=\"#211865\" dropdown_menu_active_link_color=\"#d8d8d8\" mobile_menu_text_color=\"#FFFFFF\" cart_icon_color=\"RGBA(255,255,255,0)\" search_icon_color=\"RGBA(255,255,255,0)\" menu_icon_color=\"#FFFFFF\" _builder_version=\"4.18.0\" _module_preset=\"default\" menu_font=\"Playfair Display|600||||on|||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"22px\" menu_line_height=\"1.5em\" background_color=\"#211865\" module_alignment=\"center\" custom_padding=\"30px||||false|false\" custom_padding_tablet=\"30px||||false|false\" custom_padding_phone=\"30px||||false|false\" custom_padding_last_edited=\"on|desktop\" custom_css_main_element=\"width: 100%!important\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_css_main_element=\"width: 25%!important;\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2021/09/MWBE-Logo-300x141-1.png\" alt=\"Empire State Development New York State Certified Women-Owned Business Enterprise\" title_text=\"MWBE-Logo-300x141\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"220px\" module_alignment=\"right\" height=\"112px\" custom_padding=\"4px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" url=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/MinorityAndWomenCertificate-1.pdf\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|off|on\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_color=\"#211865\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_margin=\"0px||||false|false\" custom_padding=\"35px||||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Logo-190x120-1.jpg\" title_text=\"LOMAD Logo - 190x120\" url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoiaG9tZV91cmwiLCJzZXR0aW5ncyI6e319@\" align=\"center\" admin_label=\"LOMAD Logo\" _builder_version=\"4.18.0\" _dynamic_attributes=\"url\" _module_preset=\"default\" background_color=\"#211865\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" make_equal=\"on\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_color=\"#211865\" width=\"100%\" module_alignment=\"center\" height=\"65px\" custom_margin=\"||-27px|0px|false|false\" custom_padding=\"20px||80px|0px|false|false\" sticky_position=\"top\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_padding=\"|0px|||false|false\" custom_css_main_element=\"width: 33%!important;\" global_colors_info=\"{}\"][et_pb_menu menu_id=\"12\" menu_style=\"centered\" active_link_color=\"#2E5591\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_text_color=\"#211865\" dropdown_menu_active_link_color=\"#2E5591\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#211865\" cart_icon_color=\"RGBA(255,255,255,0)\" search_icon_color=\"RGBA(255,255,255,0)\" menu_icon_color=\"#FFFFFF\" menu_icon_font_size=\"38px\" _builder_version=\"4.18.0\" _module_preset=\"default\" menu_font=\"Playfair Display||||||||\" menu_text_color=\"#211865\" background_color=\"#2E5591\" custom_padding=\"17px||17px||false|false\" custom_padding_tablet=\"17px||17px||false|false\" custom_padding_phone=\"20px||20px||false|false\" custom_padding_last_edited=\"on|tablet\" custom_css_before=\"||\" custom_css_main_element=\"width: 142px!important;||height: 62px!important;	||||\" global_colors_info=\"{}\" custom_css_main_element_last_edited=\"on|phone\" custom_css_main_element_tablet=\"||height: 100%important;\" custom_css_main_element_phone=\"width: 142px!important;||height: 62px!important;	\"][/et_pb_menu][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_css_main_element=\"width: 34%!important;\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://thelomad.com/getmad.today/contact\" button_text=\"EMAIL\" button_alignment=\"center\" button_alignment_tablet=\"center\" button_alignment_phone=\"center\" button_alignment_last_edited=\"on|tablet\" disabled_on=\"off|off|on\" admin_label=\"EMAIL Button (mobile)\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_button=\"on\" button_icon=\"&#xe010;||divi||400\" button_icon_placement=\"left\" button_on_hover=\"off\" custom_margin=\"0px||||false|false\" custom_padding=\"20px||20px||false|false\" custom_css_main_element=\"width: 100%!important;\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_css_main_element=\"width: 33%!important;\" global_colors_info=\"{}\"][et_pb_button button_url=\"tel:7166160111\" button_text=\"CALL\" button_alignment=\"center\" admin_label=\"CALL Button (mobile)\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#2E5591\" button_icon=\"&#xe090;||divi||400\" button_icon_color=\"#FFFFFF\" button_icon_placement=\"left\" button_on_hover=\"off\" custom_padding=\"20px||20px||false|false\" custom_css_main_element=\"width: 100%!important;\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Contact - No short form in footer','','publish','open','closed','','header','','','2022-09-23 08:59:44','2022-09-23 12:59:44','',0,'https://thelomad.com/getmad.today/blog/et_header_layout/header/',0,'et_header_layout','',0),(51148,1,'2022-09-16 15:31:45','2022-09-16 19:31:45','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.18.0\" background_color=\"#3d3d3d\" background_image=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/holiday-photoChristmas2021-1400x662-1.png\" background_blend=\"overlay\" custom_padding=\"80px||80px||true\" custom_padding_tablet=\"\" custom_padding_phone=\"50px||50px||true\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.18.0\" background_enable_image=\"off\" global_colors_info=\"{}\" disabled_on=\"on|on|off\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" custom_padding=\"|||\" custom_css_main_element=\"width: 100%!important\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact/Refer a Claim \" _builder_version=\"4.18.0\" text_font=\"||||||||\" header_2_text_color=\"#FFFFFF\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2>Contact/Refer a Claim</h2>[/et_pb_text][et_pb_text admin_label=\"Ninja Form - Contact/Refer a Claim (New)\" _builder_version=\"4.18.0\" module_alignment=\"center\" custom_margin=\"50px||\" animation_style=\"fade\" hover_enabled=\"0\" custom_css_main_element=\"width: 100%!important\" global_colors_info=\"{}\" custom_css_main_element_last_edited=\"on|phone\" sticky_enabled=\"0\" custom_css_main_element_phone=\"width: 65%!important\" custom_css_main_element__hover_enabled=\"off|desktop\" disabled_on=\"off|off|off\" custom_css_main_element_tablet=\"width: 100%!important\"]<table class=\"nf-table-display\">\n<tbody class=\"forms-collection\">\n<tr>\n<td>[ninja_form id=5]</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"LOMAD Client Satisfaction Survey\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_font=\"|600|||||||\" custom_margin=\"15px||15px||false|false\" link_option_url=\"https://docs.google.com/forms/d/e/1FAIpQLSeybcb4WQoN_KwbKjb3EOtvdsFBnl8itSfHRaTZwFlWCUfijQ/viewform?embedded=true%22\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">LOMAD Client Satisfaction Survey</h2>[/et_pb_text][et_pb_button button_url=\"https://docs.google.com/forms/d/e/1FAIpQLSeybcb4WQoN_KwbKjb3EOtvdsFBnl8itSfHRaTZwFlWCUfijQ/viewform?embedded=true%22\" button_text=\"TAKE SURVEY\" button_alignment=\"center\" button_text_tablet=\"TAKE SURVEY\" button_text_phone=\"TAKE SURVEY\" button_text_last_edited=\"on|desktop\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#211865\" button_font=\"||||||||\" custom_margin=\"||35px||false|false\" custom_padding=\"||||false|false\" box_shadow_style=\"preset3\" box_shadow_vertical=\"10px\" box_shadow_blur=\"10px\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_color=\"#211865\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" background_color=\"#211865\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.18.0\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"45px||||false|false\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/likegetMAD.today\" icon_color=\"#211865\" use_icon_font_size=\"on\" icon_font_size=\"22px\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_color=\"#FFFFFF\" background_enable_color=\"on\" custom_button=\"on\" button_text_size=\"0px\" button_bg_color=\"#FFFFFF\" border_radii=\"on|0px|0px|0px|0px\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"https://www.linkedin.com/company/the-law-offices-of-melissa-a-day-pllc/\" icon_color=\"#211865\" use_icon_font_size=\"on\" icon_font_size=\"22px\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_color=\"#FFFFFF\" background_enable_color=\"on\" border_radii=\"on|0px|0px|0px|0px\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]linkedin[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text admin_label=\"Attorney Advertising\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_font=\"|700|||||||\" text_text_color=\"#FFFFFF\" custom_padding=\"10px||10px||false|false\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">ATTORNEY ADVERTISING – PRIOR RESULTS DO NOT GUARANTEE SIMILAR OUTCOME</p>[/et_pb_text][et_pb_text admin_label=\"Firm Address\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_font=\"|600|||||||\" text_text_color=\"#FFFFFF\" custom_padding=\"10px||10px||false|false\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_4_tb_footer  et_pb_text_align_center et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p style=\"text-align: center;\"><span class=\"nap-item nap-item--name\">The Law Offices of Melissa A. Day, PLLC</span><br /><span class=\"nap-item nap-item--address\">636 N French Rd<br />Suite 3<br />Amherst, NY 14228</span></p>\n</div>\n</div>[/et_pb_text][et_pb_text admin_label=\"Footer Tag\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_padding=\"20px||15px||false|false\" global_colors_info=\"{}\"]<div class=\"flfooterbrand\">\n<p style=\"text-align: center;\">© 2022<span> </span><span style=\"text-decoration: underline;\"><strong><span style=\"color: #ffffff; text-decoration: underline;\"><a href=\"https://lawyers.findlaw.com/profile/view/5239763_1\" target=\"_blank\" data-wpel-link=\"external\" rel=\"noopener noreferrer\" role=\"link\" style=\"color: #ffffff; text-decoration: underline;\">The Law Offices of Melissa A. Day, PLLC</a></span><br /></strong></span>All Rights Reserved | <span style=\"color: #ffffff;\"><a href=\"https://thelomad.com/getmad.today/lomad_disclaimer\" title=\"Disclaimer - The Law Offices of Melissa A. Day\" style=\"color: #ffffff; text-decoration: underline;\">Disclaimer</a></span> | <span style=\"text-decoration: underline;\"><span style=\"color: #ffffff;\"><a href=\"thelomad.com/getmad.today/sitemap\" style=\"color: #ffffff;\">Site Map</a></span></span></p>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','LOMADtv','','publish','open','closed','','footer','','','2022-09-20 14:15:17','2022-09-20 18:15:17','',0,'https://thelomad.com/getmad.today/blog/et_footer_layout/footer/',0,'et_footer_layout','',0),(51149,1,'2022-09-16 15:31:47','2022-09-16 19:31:47','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.21\" custom_padding=\"80px||80px||true\" custom_padding_phone=\"50px||50px||true\" background_color=\"#f5f5f5\"][et_pb_row _builder_version=\"3.21\"][et_pb_column type=\"4_4\" _builder_version=\"3.21\"][et_pb_text text_orientation=\"center\" _builder_version=\"3.21\" text_font=\"||||||||\"]<h2>How Can We Help?</h2>\n[/et_pb_text][et_pb_text max_width=\"600px\" _builder_version=\"3.21\" custom_margin=\"50px||\" module_alignment=\"center\"]<p class=\"p1\">[nf_tp_form redirect_id=0 form_id=2]</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.21\" custom_padding=\"80px||80px||true\" custom_padding_phone=\"50px||50px||true\"][et_pb_row _builder_version=\"3.21\"][et_pb_column type=\"4_4\" _builder_version=\"3.21\"][et_pb_text _builder_version=\"3.21\" text_font=\"||||||||\" text_orientation=\"center\"]<h2>Office Location</h2>\n<p class=\"p1\">[nap_names id=\"FIRM-NAME-1\"]<br />[nap_address id=\"ADDRESS-1\" line1=\"true\" line2=\"true\" city=\"true\" state=\"true\" postcode=\"true\" ]<br />Phone: [nap_phone id=\"LOCAL-CT-NUMBER-1\"]<br /><a href=\"#\">Map &amp; Directions</a></p>[/et_pb_text][et_pb_button url_new_window=\"on\" button_text=\"Review The Firm\" button_alignment=\"center\" _builder_version=\"3.21\" custom_margin=\"50px||\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.21\" background_color=\"#000000\" custom_padding=\"50px||50px||true|false\" custom_padding_phone=\"30px||30px||true\"][et_pb_row _builder_version=\"3.0.48\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Copyright\" _builder_version=\"3.21\" text_orientation=\"center\" background_layout=\"dark\" text_font=\"||||||||\" text_font_size=\"15px\"]<p>[FLFooterTag]</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Footer','','publish','open','closed','','footer-2','','','2022-09-16 15:31:47','2022-09-16 19:31:47','',0,'https://thelomad.com/getmad.today/blog/et_footer_layout/footer-2/',0,'et_footer_layout','',0),(51150,1,'2022-09-16 15:31:53','2022-09-16 19:31:53','','Theme Builder','','publish','closed','closed','','theme-builder','','','2022-09-16 15:31:53','2022-09-16 19:31:53','',0,'https://thelomad.com/getmad.today/blog/et_theme_builder/theme-builder/',0,'et_theme_builder','',0),(51151,1,'2022-09-16 15:31:53','2022-09-16 19:31:53','','Default Website Template','','publish','closed','closed','','default-website-template','','','2022-09-16 15:31:53','2022-09-16 19:31:53','',0,'https://thelomad.com/getmad.today/blog/et_template/default-website-template/',0,'et_template','',0),(51152,1,'2022-09-16 15:33:24','2022-09-16 19:33:24','','Homepage','','publish','closed','closed','','homepage','','','2022-09-16 15:33:24','2022-09-16 19:33:24','',0,'https://thelomad.com/getmad.today/blog/et_template/homepage/',0,'et_template','',0),(51157,1,'2022-09-16 15:45:00','2022-09-16 19:45:00','','LOMAD Logo - 190x120','','inherit','closed','closed','','lomad-logo-190x120','','','2022-09-16 15:45:00','2022-09-16 19:45:00','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/LOMAD-Logo-190x120-1.jpg',0,'attachment','image/jpeg',0),(51195,1,'2022-09-19 10:27:31','2022-09-19 14:27:31','','holiday-photoChristmas2021','','inherit','closed','closed','','holiday-photochristmas2021','','','2022-09-19 10:27:31','2022-09-19 14:27:31','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/holiday-photoChristmas2021.png',0,'attachment','image/png',0),(51196,1,'2022-09-19 10:28:52','2022-09-19 14:28:52','','holiday-photoChristmas2021-1400x662','','inherit','closed','closed','','holiday-photochristmas2021-1400x662','','','2022-09-19 10:28:52','2022-09-19 14:28:52','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/holiday-photoChristmas2021-1400x662-1.png',0,'attachment','image/png',0),(51204,1,'2022-09-19 11:30:02','2022-09-19 15:30:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_css_main_element=\"width: 100%!important\" global_colors_info=\"{}\"][lwp_divi_breadcrumbs _builder_version=\"4.18.0\" _module_preset=\"default\" module_font=\"Playfair Display||||||||\" module_text_color=\"#211865\" module_font_size=\"20px\" custom_padding=\"15px||15px||false|false\" border_color_all=\"#211865\" border_width_bottom=\"4px\" border_style_bottom=\"double\" global_colors_info=\"{}\"][/lwp_divi_breadcrumbs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.18.0\" _module_preset=\"default\" collapsed=\"on\"][et_pb_fullwidth_header _builder_version=\"4.18.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_color=\"RGBA(255,255,255,0)\" hover_enabled=\"0\" sticky_enabled=\"0\" admin_label=\"Fullwidth Header\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" collapsed=\"off\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_css_main_element=\"width: 75%!important\" global_colors_info=\"{}\"][et_pb_post_content _builder_version=\"4.18.0\" _module_preset=\"default\" header_text_color=\"#211865\" header_2_text_color=\"#211865\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#211865\" header_6_text_color=\"#211865\" custom_padding=\"0px||100px||false|false\" global_colors_info=\"{}\"][/et_pb_post_content][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_css_main_element=\"width: 25%!important\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Melissa-and-James-backtoback-1000x667-1.jpg\" title_text=\"Melissa-and-James-backtoback-1000x667\" align=\"center\" force_fullwidth=\"on\" admin_label=\"JBC + MAD Sidebar\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_enable_image=\"off\" module_alignment=\"center\" custom_margin=\"||||false|false\" custom_padding=\"||0px|29px|false|false\" sticky_limit_top=\"row\" sticky_limit_bottom=\"row\" global_colors_info=\"{}\"][/et_pb_image][et_pb_sidebar area=\"et_pb_widget_area_1\" admin_label=\"LOMAD Sidebar 2\" module_class=\"fl-sidebar fl-lightlinks\" _builder_version=\"4.18.0\" header_font=\"|600|||||||\" header_text_align=\"left\" header_text_color=\"#ffffff\" header_font_size=\"35px\" body_font=\"Playfair Display||||||||\" body_font_size=\"17px\" background_color=\"#211865\" custom_margin=\"50px|-45px|||false|false\" custom_margin_tablet=\"20px||||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"20px|45px|20px|0px|true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" sticky_limit_top=\"row\" sticky_limit_bottom=\"row\" scroll_vertical_motion=\"19|63|63|100|4|0|-4\" header_font_size_tablet=\"30px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_color_right_tablet=\"\" border_color_right_phone=\"\" border_color_right_last_edited=\"on|desktop\" box_shadow_style=\"preset1\" box_shadow_vertical=\"0px\" box_shadow_blur=\"0px\" box_shadow_spread=\"3px\" box_shadow_color=\"#211865\" saved_tabs=\"all\" global_colors_info=\"{}\"][/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.18.0\" _module_preset=\"default\" collapsed=\"on\"][et_pb_fullwidth_header _builder_version=\"4.18.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_color=\"RGBA(255,255,255,0)\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section]','Specific Pages: Workers\' Compensation Team','','publish','open','closed','','theme-builder-layout','','','2022-09-20 14:15:16','2022-09-20 18:15:16','',0,'https://thelomad.com/getmad.today/blog/et_body_layout/theme-builder-layout/',0,'et_body_layout','',0),(51206,1,'2022-09-19 11:30:13','2022-09-19 15:30:13','','Default Website Template','','publish','closed','closed','','default-website-template-2','','','2022-09-19 11:30:13','2022-09-19 15:30:13','',0,'https://thelomad.com/getmad.today/blog/et_template/default-website-template-2/',0,'et_template','',0),(51207,1,'2022-09-19 11:30:13','2022-09-19 15:30:13','','Homepage','','publish','closed','closed','','homepage-2','','','2022-09-19 11:30:13','2022-09-19 15:30:13','',0,'https://thelomad.com/getmad.today/blog/et_template/homepage-2/',0,'et_template','',0),(51208,1,'2022-09-19 11:30:13','2022-09-19 15:30:13','','Specific Pages: Workers\' Compensation Team','','publish','closed','closed','','specific-pages-workers-compensation-team','','','2022-09-19 11:30:13','2022-09-19 15:30:13','',0,'https://thelomad.com/getmad.today/blog/et_template/specific-pages-workers-compensation-team/',0,'et_template','',0),(51211,1,'2022-09-19 11:37:25','2022-09-19 15:37:25','','Specific Pages: Workers\' Compensation Team','','publish','closed','closed','','specific-pages-workers-compensation-team-2','','','2022-09-19 11:37:25','2022-09-19 15:37:25','',0,'https://thelomad.com/getmad.today/blog/et_template/specific-pages-workers-compensation-team-2/',0,'et_template','',0),(51218,1,'2022-09-19 11:46:58','2022-09-19 15:46:58','[et_pb_sidebar area=\"et_pb_widget_area_1\" admin_label=\"LOMAD Sidebar 2\" module_class=\"fl-sidebar fl-lightlinks\" _builder_version=\"4.18.0\" header_font=\"|600|||||||\" header_text_align=\"left\" header_text_color=\"#ffffff\" header_font_size=\"35px\" body_font=\"Playfair Display||||||||\" body_font_size=\"17px\" background_color=\"#211865\" custom_margin=\"100px|-45px|||false|false\" custom_margin_tablet=\"20px||||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"25px|45px|25px|0px|true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" scroll_vertical_motion=\"19|63|63|100|4|0|-4\" header_font_size_tablet=\"30px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_color_right_tablet=\"\" border_color_right_phone=\"\" border_color_right_last_edited=\"on|desktop\" box_shadow_style=\"preset1\" box_shadow_vertical=\"0px\" box_shadow_blur=\"0px\" box_shadow_spread=\"3px\" box_shadow_color=\"#211865\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"module\"][/et_pb_sidebar]','LOMAD Sidebar 2','','publish','closed','closed','','lomad-sidebar-2','','','2022-09-19 11:46:58','2022-09-19 15:46:58','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/lomad-sidebar-2/',0,'et_pb_layout','',0),(51219,1,'2022-09-19 11:47:14','2022-09-19 15:47:14','[lwp_divi_breadcrumbs _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"15px||15px||false|false\" border_color_all=\"#211865\" module_font=\"Playfair Display||||||||\" module_text_color=\"#211865\" module_font_size=\"20px\" border_width_bottom=\"4px\" border_style_bottom=\"double\" template_type=\"module\"][/lwp_divi_breadcrumbs]','LOMAD Breadcrumbs','','publish','closed','closed','','lomad-breadcrumbs-2','','','2022-09-19 11:47:14','2022-09-19 15:47:14','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/lomad-breadcrumbs-2/',0,'et_pb_layout','',0),(51236,1,'2022-09-19 12:08:08','2022-09-19 16:08:08','','Melissa-and-James-backtoback-1000x667','','inherit','closed','closed','','melissa-and-james-backtoback-1000x667','','','2022-09-19 12:08:08','2022-09-19 16:08:08','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Melissa-and-James-backtoback-1000x667-1.jpg',0,'attachment','image/jpeg',0),(51247,1,'2022-09-19 12:27:44','2022-09-19 16:27:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][lwp_divi_breadcrumbs _builder_version=\"4.18.0\" _module_preset=\"default\" module_font=\"Playfair Display||||||||\" module_text_color=\"#211865\" module_font_size=\"20px\" custom_padding=\"15px||15px||false|false\" border_color_all=\"#211865\" border_width_bottom=\"4px\" border_style_bottom=\"double\" global_colors_info=\"{}\"][/lwp_divi_breadcrumbs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.18.0\" _module_preset=\"default\" collapsed=\"off\"][et_pb_fullwidth_header _builder_version=\"4.18.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_color=\"RGBA(255,255,255,0)\" hover_enabled=\"0\" sticky_enabled=\"0\" title=\"LOMAD News, Events & Articles\" title_text_color=\"#211865\" text_orientation=\"center\" title_font=\"|700|||on|on|||\" title_font_size=\"40px\" title_letter_spacing=\"1px\" height=\"155px\" custom_margin=\"-17px||0px||false|false\" custom_padding=\"||||false|false\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_css_main_element=\"width: 75%!important\" global_colors_info=\"{}\"][et_pb_blog _builder_version=\"4.18.0\" _module_preset=\"default\" include_categories=\"all\" show_thumbnail=\"off\" show_author=\"off\" show_pagination=\"off\" hover_enabled=\"0\" sticky_enabled=\"0\" show_more=\"on\"][/et_pb_blog][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_css_main_element=\"width: 25%!important\" global_colors_info=\"{}\"][et_pb_search placeholder=\"Looking for a topic?\" placeholder_color=\"#FFFFFF\" admin_label=\"LOMAD Blog Search\" module_class=\"lm-ignore\" _builder_version=\"4.18.0\" _module_preset=\"default\" button_font=\"Playfair Display||||||||\" button_font_size=\"16px\" form_field_font=\"Playfair Display|500|||||||\" form_field_font_size=\"17px\" background_color=\"#211865\" background_layout=\"dark\" custom_margin=\"||21px||false|false\" custom_padding=\"1em||1em||false|false\" border_radii=\"on||||\" global_colors_info=\"{}\"][/et_pb_search][et_pb_accordion open_toggle_text_color=\"#211865\" open_toggle_background_color=\"#d8d8d8\" closed_toggle_text_color=\"#211865\" closed_toggle_background_color=\"#d8d8d8\" toggle_icon=\"&#x3b;||divi||400\" icon_color=\"#211865\" _builder_version=\"4.18.0\" _module_preset=\"default\" toggle_text_color=\"#211865\" toggle_font=\"|700|||||||\" toggle_font_size=\"17px\" closed_toggle_font=\"|700|||||||\" body_text_color=\"#211865\" background_color=\"#211865\" border_color_all=\"#211865\" global_colors_info=\"{}\"][et_pb_accordion_item title=\" May 2021\" open_toggle_background_color=\"#d8d8d8\" closed_toggle_background_color=\"#d8d8d8\" icon_color=\"#211865\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"on\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/labor-market-attachment-and-retirement/\" data-wpel-link=\"internal\" role=\"link\">Labor Market Attachment and Retirement</a><br /></strong><em>May 24, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\" data-wpel-link=\"internal\" role=\"link\">Claim Disallowance With Unanimous Medical Opinion Giving Causal Relationship</a><br /></strong><em>May 17, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/employers-do-not-have-to-prove-prejudice-by-late-notice-but-it-certainly-doesnt-hurt-to-do-so/\" data-wpel-link=\"internal\" role=\"link\">Employers Do Not Have to Prove Prejudice by Late Notice, but it Certainly Doesn’t Hurt To Do So!</a><br /></strong><em>May 10, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\" data-wpel-link=\"internal\" role=\"link\">The Claimant’s Burden: Proving the Causal Relationship of an Injury</a><br /></strong><em>May 3, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"April 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/social-media-and-fraud-youd-be-surprised-what-people-post/\" data-wpel-link=\"internal\" role=\"link\">Social Media and Fraud – You’d Be Surprised What People Post!</a><br /></strong><em>April 26, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/never-give-in-disallowance-win/\" data-wpel-link=\"internal\" role=\"link\">Never Give In! Disallowance Win!</a><br /></strong><em>April 19, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/an-interesting-ime-development/\" data-wpel-link=\"internal\" role=\"link\">An “Interesting” IME Development</a></strong><strong><br /></strong><em>April 12, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/section-44-not-even-a-portion-of-liability-for-the-occupational-disease/\" data-wpel-link=\"internal\" role=\"link\">Section 44: Not Even a Portion of Liability For The Occupational Disease</a><br /></strong><em>April 5, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"March 2021\" open=\"off\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">When Do Work From Home Accidents Occur in the Scope and Course of Employment?</a><br /></strong><em>March 15, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/03/thoughts-on-thinking-a-strange-title-about-practicing-law/\">Thoughts on Thinking: A Strange Title About Practicing Law</a><br /></strong><em>March 8, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/03/genduso-and-total-joint-replacement-schedules/\">Genduso and Total Joint Replacement Schedules</a><br /></strong><em>March 1, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"February 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/occupational-disease-claims-after-matter-of-pinnacle-industries-ii-llc-2019-ny-wrk-comp-g2020587/\">Occupational Disease Claims after Matter of Pinnacle Industries II, LLC (2019 NY Wrk Comp G2020587)</a><br /></strong><em>February 22, 2021</em><strong><br /></strong></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/\">No Further Causally Related Disability Due to Intervening Unrelated Accident</a><br /></strong><em>February 15, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/independent-contractor-or-employee/\">Independent Contractor or Employee</a><br /></strong><em>February 8, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/no-error-of-law-or-fact-in-an-application-for-full-board-review/\">No Error of Law or Fact In An Application For Full Board Review</a><br /></strong><em>February 1, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"January 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">Fraud in the Family – Claimant Doing Other Work while Receiving Comp Benefits</a></strong><br /><em>January 25, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/how-change-in-conditions-for-classified-claimants-changed-drastically/\">How Change in Conditions for Classified Claimants Changed Drastically</a></strong><br />January 19, 2021</h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/success-with-wcl-section-18/\">Success with WCL Section 18</a></strong><br /><em>January 11, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">Doubling Down – 2 Hearing Loss Claims for the Same Claimant Denied on the Same Day</a></strong><br /><em>January 4, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2020\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2020/07/successful-disallowance/\"><strong>Successful Disallowance!</strong></a><br /><em>July 26, 2020</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2020/07/another-win-for-the-law-offices-of-melissa-a-day/\"><strong>Another Win for The Law Offices of Melissa A. Day!</strong></a><br /><em>July 22, 2020</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2020/07/a-win-for-the-law-offices-of-melissa-a-day/\"><strong>A Win for The Law Offices of Melissa A. Day</strong></a><br /><em>July 21, 2020</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2019\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/07/melissa-a-day-esq-invited-to-join-buffalo-business-first-leadership-trust/\"><strong>Melissa A. Day, Esq. invited to join Buffalo Business First Leadership Trust</strong></a><br /><em>July 30, 2019</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/05/claimants-conviction-of-unlawful-manufacture-of-methamphetamine-does-not-amount-to-a-violation-under-wcl-114-a/\"><strong>Claimant’s conviction of unlawful manufacture of methamphetamine does not amount to a violation under WCL 114-a.</strong></a><br /><em>May 31, 2019</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/\">Amendments to 2017 not retroactive if PPD claimant was not attached to labor market</a><br /></strong><em>May 31, 2019</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/05/lwec-incontinence/\"><strong>LWEC &amp; Incontinence</strong></a><br /><em>May 28, 2019</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/05/a-new-quest-begins/\"><strong>A New Quest Begins</strong><strong></strong></a><br /><em>May 21, 2019</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2018\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/12/appeals-inventory-and-forms/\"><strong>Appeals Inventory and Forms</strong></a><br /><em>December 17, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\"><strong>Review of Workers Compensation Board Schedule Loss of Use Frequently Asked Questions and New Permanency Forms</strong></a><br /><em>December 17, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/proposed-changes-submitted-seeking-to-expand-the-boards-legal-internship-program/\"><strong>Proposed Changes Submitted Seeking to Expand the Board’s Legal Internship Program</strong></a><br /><em>May 25, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/youre-claiming-what/\"><strong>You’re claiming what?!?</strong></a><br /><em>May 25, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/new-slu-guidelines-presentation-by-the-board/\"><strong>New SLU Guidelines Presentation by the Board</strong></a><br /><em>May 23, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/united-states-supreme-court-is-considering-a-petition-for-a-writ-of-certiorari-of-the-american-economy-decision/\"><strong>United States Supreme Court is Considering a Petition for a Writ of Certiorari Of the American Economy Decision</strong></a><br /><em>May 23, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/03/ricky-costner-jr-18-year-old-slain-by-a-deranged-co-worker-honored-by-family-and-friends/\"><strong>Ricky Costner Jr., 18 Year Old Slain by a Deranged Co-Worker, Honored by Family and Friends</strong></a><br /><em>March 31, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\"><strong>Schedule Loss of Use Awards – Grrrrrrrrr</strong></a><br /><em>March 31, 2018</em><br /><em></em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2017\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/10/court-of-appeals-upholds-2013-amendment-to-section-25-a-marking-the-end-for-the-fund-for-reopened-cases/\"><strong>Court of Appeals Upholds 2013 Amendment to Section 25-a – Marking the End for The Fund for Reopened Cases</strong></a><br /><em>October 26, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\"><strong>How to Avoid Bad Luck in Your Comp Claims This Friday the 13th – Some Basic Time Constraints for New York State Workers’ Compensation Claims to Keep in Mind</strong></a><br /><em>October 12, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\"><strong>Board Finds that Medical Treatment Guidelines Apply to Out of State Claimants</strong></a><br /><em>June 7, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/02/permanent-partial-disability-safety-netwhat-to-expect-from-wcl-%c2%a735/\"><strong>Permanent Partial Disability “Safety Net”…What to Expect from WCL §35</strong></a><br /><em>February 5, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/01/back-to-the-future-the-return-of-wcl-252-b-fact-finding-without-judges-and-legal-reasoning-without-lawyers/\"><strong>Back to the Future: The Return of WCL 25(2-b): Fact-Finding without Judges and Legal Reasoning without Lawyers</strong></a><br /><em>January 18, 2017</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2016\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/12/its-the-holiday-season/\"><strong>It’s the Holiday Season!</strong></a><br /><em>December 8, 2016</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/10/happy-hallo-wean/\"><strong>HAPPY HALLO-WEAN!</strong></a><br /><em>October 31, 2016</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/10/to-wean-or-not-to-wean-that-is-the-question/\"><strong>TO WEAN, OR NOT TO WEAN, THAT IS THE QUESTION.</strong></a><br /><em>October 25, 2016</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/04/reopened-cases/\"><strong>Reopened Cases</strong></a><br /><em>April 15, 2016</em><em></em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2015\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/11/ny-allows-employer-to/\"><strong>NY Allows Employer to…</strong></a><br /><em>November 28, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/11/an-employee-cannot-be/\"><strong>An Employee Cannot be…</strong></a><br /><em>November 23, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/10/vocational-and-functional/\"><strong>Vocational and Functional…</strong></a><br /><em>October 27, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/09/challenge-yourself/\"><strong>Challenge Yourself</strong></a><br /><em>September 19, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/09/labor-market-attachment-refresher/\"><strong>Labor Market Attachment Refresher</strong></a><br /><em>September 16, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/09/summer-is-almost-over/\"><strong>Summer is Almost Over!</strong></a><br /><em>September 7, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/claims-handling-performance/\"><strong>Claims Handling Performance</strong></a><br /><em>August 23, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/answers-to-the-quiz/\"><strong>Answers to the Quiz</strong></a><br /><em>August 10, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/average-wages/\"><strong>Average Wages?</strong></a><br /><em>August 7, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/non-acute-pain-treatment-guidelines/\"><strong>Non-Acute Pain Treatment Guidelines</strong></a><br /><em>August 5, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\"><strong>Test Your NY Workers’ Compensation Chops</strong></a><br />August 3, 2015</h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/07/liability-for-treatment-by-social-workers/\"><strong>Liability for Treatment by Social Workers</strong></a><br /><em>July 21, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/07/mds-jds-and-ttds/\"><strong>MDs, JDs AND TTDs</strong></a><br /><em>July 13, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/07/hot-dogs-or-hamburgers/\"><strong>HOT DOGS OR HAMBURGERS?</strong></a><br /><em>July 1, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/06/imes-the-next-summer-movie-blockbuster-or-just-another-ime-gone-bust/\"><strong>IMEs : The Next Summer Movie Blockbuster or Just Another IME Gone Bust?</strong></a><br /><em>June 29, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/06/wcbs-regulatory-agenda-may-include/\"><strong>WCB’s Regulatory Agenda May Include…</strong></a><br /><em>June 14, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/02/an-underwriting-nightmare-come-true/\"><strong>An Underwriting Nightmare Come True</strong></a><br /><em>February 5, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/02/hearing-loss-becomes-hearing-win/\"><strong>Hearing Loss becomes Hearing Win</strong></a><br /><em>February 5, 2015</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2014\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\"><strong>Non Acute Pain Medical Treatment Guidelines Offer a Framework for Controlling Costs Associated with Chronic Pain Management, Especially Opioid Use</strong></a><br /><em>November 24, 2014</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\"><strong>In Kigin v. WCB, the Court of Appeals upholds the presumption that treatment outside the MTGs is not medically necessary and the attending physician has the burden of proof of the need for a variance.</strong></a><br /><em>November 23, 2014</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\"><strong>The Law Offices of Melissa A. Day, PLLC Won a Finding of a 0% Loss of Wage Earning Capacity</strong></a><br /><em>November 22, 2014</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">Navigating the Low Back Medical Treatment Guidelines for Chiropractic Care</a><br /><em>Sseptember 12, 2014</em><br /></strong></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2013\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/12/did-you-know-the-board-has-retired-the-concept-of-the-compensable-retirement-the-death-knell-of-the-trifecta-zamora-and-the-so-called-compensable-retirement/\"><strong>DID YOU KNOW? THE BOARD HAS RETIRED THE CONCEPT OF THE COMPENSABLE RETIREMENT. The Death Knell of the Trifecta: Zamora and the so-called “Compensable Retirement”</strong></a><br /><em>December 17, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\"><strong>A Blind Leap across an Inscrutable Chasm – Arbitrary and Capricious Loss of Wage Earning Capacity (LWEC) Determinations</strong></a><br /><em>November 30, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\"><strong>LESS THAN TWELVE WEEKS REMAINING FOR WCL §25-a! Because Subject # 046-630 Contains Stricter Requirements for Reopening a Claim on the Issue of §25-a, Prudent Carriers and Employers May Want to Refer Applications to Defense Counsel</strong></a><br /><em>October 10, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\"><strong>BOARD PROCESS RE-ENGINEERING (“BPR”) – NY WORKERS’ COMPENSATION FORUM MEMBERS SHOULD BE INCLUDED IN THE DIALOGUE</strong></a><br /><em>September 13, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/08/did-you-know-the-2nd-circuit-certified-a-question-to-the-ny-court-of-appeals-on-the-exclusivity-provision-of-the-wcl/\"><strong>DID YOU KNOW? The 2nd Circuit certified a question to the NY Court of Appeals on the exclusivity provision of the WCL?</strong></a><br /><em>August 14, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\"><strong>DID YOU KNOW? Twenty Insurance Carriers Have Filed an Action Seeking to Obtain a Declaration that the Elimination of The Fund for Reopened Cases Is Unconstitutional.</strong></a><br /><em>August 3, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\"><strong>DID YOU KNOW? THE THIRD DEPARTMENT HOLDS THAT MEDICAL TREATMENT WHICH IS NOT SPECIFICALLY INCLUDED IN THE MTG IS PRESUMPTIVELY NOT MEDICALLY NECESSARY.</strong></a><br /><em>July 30 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\"><strong>DID YOU KNOW? AN EMPLOYER OR CARRIER MAY BE ABLE TO REOPEN A PPD CLAIM ON THE ISSUE OF LABOR MARKET ATTACHMENT.</strong></a><br /><em>July 13, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\"><strong>DID YOU KNOW? A bill being considered by the NY State Legislature which would create a presumption of permanent total disability for claimants who are found eligible for social security?</strong></a><br /><em>April 30, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/04/did-you-know-25-a-is-going-away/\"><strong>DID YOU KNOW? 25-A IS GOING AWAY.</strong></a><br /><em>April 6, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">DID YOU KNOW? A chiropractic variance request based on alleged functional improvements and expected continued improvements may not be granted if the chiropractor continues to find that the claimant is totally disabled.</a><br /><em>March 13, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\"><strong>DID YOU KNOW? The Federal Government Is Not Subject to the Jurisdiction of the NY Workers’ Compensation Board on a Theory of General/Special Employment?</strong></a><br /><em>February 23, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/02/did-you-know-governor-cuomos-budget-proposes-to-eliminate-mandatory-deposits-into-the-atf-and-to-close-the-fund-to-new-deposits/\"><strong>DID YOU KNOW? GOVERNOR CUOMO’S BUDGET PROPOSES TO ELIMINATE MANDATORY DEPOSITS INTO THE ATF AND TO CLOSE THE FUND TO NEW DEPOSITS?</strong></a><br />February 5, 2013</h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know-implementation-of-the-changes-to-the-mtg-has-been-delayed-until-march-1-2013/\"><strong>DID YOU KNOW? IMPLEMENTATION OF THE CHANGES TO THE MTG HAS BEEN DELAYED UNTIL MARCH 1, 2013.</strong></a><br /><em>January 22, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\"><strong>DID YOU KNOW? FACEBOOK PAGES ARE NOT CONSIDERED “SURVEILLANCE” THAT HAS TO BE DISCLOSED BEFORE A CLAIMANT TESTIFIES.</strong></a><br /><em>January 22, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know-wcl-%c2%a7153v-benefits-may-now-be-capped-under-wcl-%c2%a7153w/\"><strong>DID YOU KNOW? WCL §15(3)(v) BENEFITS MAY NOW BE CAPPED UNDER WCL §15(3)(w)</strong></a><br /><em>January 14, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/why-why-do-judges-even-set-deadlines-for-the-submission-of-memoranda-of-law/\"><strong>WHY? Why do judge’s even set deadlines for the submission of Memoranda of Law?</strong></a><br /><em>January 10, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know/\"><strong>DID YOU KNOW?</strong></a><br /><em>January 5, 2013</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.18.0\" _module_preset=\"default\" collapsed=\"on\"][et_pb_fullwidth_header _builder_version=\"4.18.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_color=\"RGBA(255,255,255,0)\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section]','LOMAD Blog - Main Page','','publish','open','closed','','theme-builder-layout-5','','','2022-09-20 14:15:16','2022-09-20 18:15:16','',0,'https://thelomad.com/getmad.today/blog/et_body_layout/theme-builder-layout-5/',0,'et_body_layout','',0),(51249,1,'2022-09-19 12:28:16','2022-09-19 16:28:16','','Default Website Template','','publish','closed','closed','','default-website-template-3','','','2022-09-19 12:28:16','2022-09-19 16:28:16','',0,'https://thelomad.com/getmad.today/blog/et_template/default-website-template-3/',0,'et_template','',0),(51250,1,'2022-09-19 12:28:16','2022-09-19 16:28:16','','Homepage','','publish','closed','closed','','homepage-3','','','2022-09-19 12:28:16','2022-09-19 16:28:16','',0,'https://thelomad.com/getmad.today/blog/et_template/homepage-3/',0,'et_template','',0),(51251,1,'2022-09-19 12:28:16','2022-09-19 16:28:16','','Specific Pages: Workers\' Compensation Team','','publish','closed','closed','','specific-pages-workers-compensation-team-3','','','2022-09-19 12:28:16','2022-09-19 16:28:16','',0,'https://thelomad.com/getmad.today/blog/et_template/specific-pages-workers-compensation-team-3/',0,'et_template','',0),(51252,1,'2022-09-19 12:28:16','2022-09-19 16:28:16','','Specific Pages: LOMAD News, Events, and Articles','','publish','closed','closed','','specific-pages-lomad-news-events-and-articles','','','2022-09-19 12:28:16','2022-09-19 16:28:16','',0,'https://thelomad.com/getmad.today/blog/et_template/specific-pages-lomad-news-events-and-articles/',0,'et_template','',0),(51253,1,'2022-09-19 12:29:26','2022-09-19 16:29:26','','LOMAD Blog - Main Page','','publish','closed','closed','','specific-pages-lomad-news-events-and-articles-2','','','2022-09-19 13:17:25','2022-09-19 17:17:25','',0,'https://thelomad.com/getmad.today/blog/et_template/specific-pages-lomad-news-events-and-articles-2/',0,'et_template','',0),(51261,1,'2022-09-19 13:10:26','2022-09-19 17:10:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][lwp_divi_breadcrumbs _builder_version=\"4.18.0\" _module_preset=\"default\" module_font=\"Playfair Display||||||||\" module_text_color=\"#211865\" module_font_size=\"20px\" custom_padding=\"15px||15px||false|false\" border_color_all=\"#211865\" border_width_bottom=\"4px\" border_style_bottom=\"double\" global_colors_info=\"{}\"][/lwp_divi_breadcrumbs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.18.0\" _module_preset=\"default\" collapsed=\"on\"][et_pb_fullwidth_header _builder_version=\"4.18.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_color=\"RGBA(255,255,255,0)\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_css_main_element=\"width: 75%!important\" global_colors_info=\"{}\"][et_pb_post_content _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_post_content][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_css_main_element=\"width: 25%!important\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Melissa-and-James-backtoback-1000x667-1.jpg\" title_text=\"Melissa-and-James-backtoback-1000x667\" align=\"center\" force_fullwidth=\"on\" admin_label=\"JBC + MAD Sidebar\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_enable_image=\"off\" module_alignment=\"center\" custom_margin=\"||||false|false\" custom_padding=\"||0px|29px|false|false\" sticky_limit_top=\"row\" sticky_limit_bottom=\"row\" global_colors_info=\"{}\"][/et_pb_image][et_pb_sidebar area=\"et_pb_widget_area_1\" admin_label=\"LOMAD Sidebar 2\" module_class=\"fl-sidebar fl-lightlinks\" _builder_version=\"4.18.0\" header_font=\"|600|||||||\" header_text_align=\"left\" header_text_color=\"#ffffff\" header_font_size=\"35px\" body_font=\"Playfair Display||||||||\" body_font_size=\"17px\" background_color=\"#211865\" custom_margin=\"100px|-45px|||false|false\" custom_margin_tablet=\"20px||||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"25px|45px|25px|0px|true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" scroll_vertical_motion=\"19|63|63|100|4|0|-4\" header_font_size_tablet=\"30px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_color_right_tablet=\"\" border_color_right_phone=\"\" border_color_right_last_edited=\"on|desktop\" box_shadow_style=\"preset1\" box_shadow_vertical=\"0px\" box_shadow_blur=\"0px\" box_shadow_spread=\"3px\" box_shadow_color=\"#211865\" saved_tabs=\"all\" global_colors_info=\"{}\"][/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.18.0\" _module_preset=\"default\" collapsed=\"on\"][et_pb_fullwidth_header _builder_version=\"4.18.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_color=\"RGBA(255,255,255,0)\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section]','Careers + WC Practice Aids (and subs) + LOMAD Event Calendar','','publish','open','closed','','theme-builder-layout-7','','','2022-09-20 14:15:17','2022-09-20 18:15:17','',0,'https://thelomad.com/getmad.today/blog/et_body_layout/theme-builder-layout-7/',0,'et_body_layout','',0),(51264,1,'2022-09-19 13:11:47','2022-09-19 17:11:47','','Default Website Template','','publish','closed','closed','','default-website-template-4','','','2022-09-19 13:11:47','2022-09-19 17:11:47','',0,'https://thelomad.com/getmad.today/blog/et_template/default-website-template-4/',0,'et_template','',0),(51265,1,'2022-09-19 13:11:47','2022-09-19 17:11:47','','Homepage','','publish','closed','closed','','homepage-4','','','2022-09-19 13:11:47','2022-09-19 17:11:47','',0,'https://thelomad.com/getmad.today/blog/et_template/homepage-4/',0,'et_template','',0),(51266,1,'2022-09-19 13:11:47','2022-09-19 17:11:47','','Specific Pages: Workers\' Compensation Team','','publish','closed','closed','','specific-pages-workers-compensation-team-4','','','2022-09-19 13:11:47','2022-09-19 17:11:47','',0,'https://thelomad.com/getmad.today/blog/et_template/specific-pages-workers-compensation-team-4/',0,'et_template','',0),(51267,1,'2022-09-19 13:11:47','2022-09-19 17:11:47','','Specific Pages: LOMAD News, Events, and Articles','','publish','closed','closed','','specific-pages-lomad-news-events-and-articles-3','','','2022-09-19 13:11:47','2022-09-19 17:11:47','',0,'https://thelomad.com/getmad.today/blog/et_template/specific-pages-lomad-news-events-and-articles-3/',0,'et_template','',0),(51268,1,'2022-09-19 13:11:47','2022-09-19 17:11:47','','Specific Pages: Careers','','publish','closed','closed','','specific-pages-careers','','','2022-09-19 13:11:47','2022-09-19 17:11:47','',0,'https://thelomad.com/getmad.today/blog/et_template/specific-pages-careers/',0,'et_template','',0),(51270,1,'2022-09-19 13:13:50','2022-09-19 17:13:50','[et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Melissa-and-James-backtoback-1000x667-1.jpg\" title_text=\"Melissa-and-James-backtoback-1000x667\" align=\"center\" force_fullwidth=\"on\" admin_label=\"JBC + MAD Sidebar\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_enable_image=\"off\" module_alignment=\"center\" custom_margin=\"||||false|false\" custom_padding=\"||0px|29px|false|false\" sticky_limit_top=\"row\" sticky_limit_bottom=\"row\" global_colors_info=\"{}\" template_type=\"module\"][/et_pb_image]','JBC + MAD Sidebar Photo','','publish','closed','closed','','jbc-mad-sidebar-photo','','','2022-09-19 13:13:50','2022-09-19 17:13:50','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/jbc-mad-sidebar-photo/',0,'et_pb_layout','',0),(51271,1,'2022-09-19 13:14:45','2022-09-19 17:14:45','','Careers + WC Practice Aids (and subs) + LOMAD Event Calendar','','publish','closed','closed','','specific-pages-careers-2','','','2022-09-19 13:50:47','2022-09-19 17:50:47','',0,'https://thelomad.com/getmad.today/blog/et_template/specific-pages-careers-2/',0,'et_template','',0),(51273,1,'2022-09-19 13:15:47','2022-09-19 17:15:47','','Default Website Template','','publish','closed','closed','','default-website-template-6','','','2022-09-19 13:15:47','2022-09-19 17:15:47','',0,'https://thelomad.com/getmad.today/blog/et_template/default-website-template-6/',0,'et_template','',0),(51274,1,'2022-09-19 13:15:47','2022-09-19 17:15:47','','Homepage','','publish','closed','closed','','homepage-5','','','2022-09-19 13:15:47','2022-09-19 17:15:47','',0,'https://thelomad.com/getmad.today/blog/et_template/homepage-5/',0,'et_template','',0),(51275,1,'2022-09-19 13:15:47','2022-09-19 17:15:47','','Specific Pages: Workers\' Compensation Team','','publish','closed','closed','','specific-pages-workers-compensation-team-5','','','2022-09-19 13:15:47','2022-09-19 17:15:47','',0,'https://thelomad.com/getmad.today/blog/et_template/specific-pages-workers-compensation-team-5/',0,'et_template','',0),(51276,1,'2022-09-19 13:15:47','2022-09-19 17:15:47','','LOMAD Blog -','','publish','closed','closed','','lomad-blog','','','2022-09-19 13:15:47','2022-09-19 17:15:47','',0,'https://thelomad.com/getmad.today/blog/et_template/lomad-blog/',0,'et_template','',0),(51277,1,'2022-09-19 13:15:47','2022-09-19 17:15:47','','Careers +','','publish','closed','closed','','careers','','','2022-09-19 13:15:47','2022-09-19 17:15:47','',0,'https://thelomad.com/getmad.today/blog/et_template/careers/',0,'et_template','',0),(51278,1,'2022-09-19 13:16:02','2022-09-19 17:16:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][lwp_divi_breadcrumbs _builder_version=\"4.18.0\" _module_preset=\"default\" module_font=\"Playfair Display||||||||\" module_text_color=\"#211865\" module_font_size=\"20px\" custom_padding=\"15px||15px||false|false\" border_color_all=\"#211865\" border_width_bottom=\"4px\" border_style_bottom=\"double\" global_colors_info=\"{}\"][/lwp_divi_breadcrumbs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_padding=\"|25px|||false|false\" custom_css_main_element=\"width: 75%!important\" global_colors_info=\"{}\"][et_pb_post_title author=\"off\" comments=\"off\" featured_image=\"off\" _builder_version=\"4.18.0\" _module_preset=\"default\" meta_font=\"|600|||||||\" meta_text_color=\"#211865\" global_colors_info=\"{}\"][/et_pb_post_title][et_pb_post_content _builder_version=\"4.18.0\" _module_preset=\"default\" text_text_color=\"#211865\" custom_padding=\"25px|50px|25px|50px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_post_content][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_css_main_element=\"width: 25%!important\" global_colors_info=\"{}\"][et_pb_search placeholder=\"Looking for a topic?\" placeholder_color=\"#FFFFFF\" admin_label=\"LOMAD Blog Search\" module_class=\"lm-ignore\" _builder_version=\"4.18.0\" _module_preset=\"default\" button_font=\"Playfair Display||||||||\" button_font_size=\"16px\" form_field_font=\"Playfair Display|500|||||||\" form_field_font_size=\"17px\" background_color=\"#211865\" background_layout=\"dark\" custom_margin=\"||21px||false|false\" custom_padding=\"1em||1em||false|false\" border_radii=\"on||||\" global_colors_info=\"{}\"][/et_pb_search][et_pb_accordion open_toggle_text_color=\"#211865\" open_toggle_background_color=\"#d8d8d8\" closed_toggle_text_color=\"#211865\" closed_toggle_background_color=\"#d8d8d8\" toggle_icon=\"&#x3b;||divi||400\" icon_color=\"#211865\" _builder_version=\"4.18.0\" _module_preset=\"default\" toggle_text_color=\"#211865\" toggle_font=\"|700|||||||\" toggle_font_size=\"17px\" closed_toggle_font=\"|700|||||||\" body_text_color=\"#211865\" background_color=\"#211865\" border_color_all=\"#211865\" global_colors_info=\"{}\"][et_pb_accordion_item title=\" May 2021\" open=\"on\" open_toggle_background_color=\"#d8d8d8\" closed_toggle_background_color=\"#d8d8d8\" icon_color=\"#211865\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/labor-market-attachment-and-retirement/\" data-wpel-link=\"internal\" role=\"link\">Labor Market Attachment and Retirement</a><br /></strong><em>May 24, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/claim-disallowance-with-unanimous-medical-opinion-giving-causal-relationship/\" data-wpel-link=\"internal\" role=\"link\">Claim Disallowance With Unanimous Medical Opinion Giving Causal Relationship</a><br /></strong><em>May 17, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/employers-do-not-have-to-prove-prejudice-by-late-notice-but-it-certainly-doesnt-hurt-to-do-so/\" data-wpel-link=\"internal\" role=\"link\">Employers Do Not Have to Prove Prejudice by Late Notice, but it Certainly Doesn’t Hurt To Do So!</a><br /></strong><em>May 10, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/05/the-claimants-burden-proving-the-causal-relationship-of-an-injury/\" data-wpel-link=\"internal\" role=\"link\">The Claimant’s Burden: Proving the Causal Relationship of an Injury</a><br /></strong><em>May 3, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"April 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/social-media-and-fraud-youd-be-surprised-what-people-post/\" data-wpel-link=\"internal\" role=\"link\">Social Media and Fraud – You’d Be Surprised What People Post!</a><br /></strong><em>April 26, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/never-give-in-disallowance-win/\" data-wpel-link=\"internal\" role=\"link\">Never Give In! Disallowance Win!</a><br /></strong><em>April 19, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/an-interesting-ime-development/\" data-wpel-link=\"internal\" role=\"link\">An “Interesting” IME Development</a></strong><strong><br /></strong><em>April 12, 2021</em></h6>\n</li>\n<li>\n<h6 class=\"entry-title\"><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/04/section-44-not-even-a-portion-of-liability-for-the-occupational-disease/\" data-wpel-link=\"internal\" role=\"link\">Section 44: Not Even a Portion of Liability For The Occupational Disease</a><br /></strong><em>April 5, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"March 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/03/when-do-work-from-home-accidents-occur-in-the-scope-and-course-of-employment/\">When Do Work From Home Accidents Occur in the Scope and Course of Employment?</a><br /></strong><em>March 15, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/03/thoughts-on-thinking-a-strange-title-about-practicing-law/\">Thoughts on Thinking: A Strange Title About Practicing Law</a><br /></strong><em>March 8, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/03/genduso-and-total-joint-replacement-schedules/\">Genduso and Total Joint Replacement Schedules</a><br /></strong><em>March 1, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"February 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/occupational-disease-claims-after-matter-of-pinnacle-industries-ii-llc-2019-ny-wrk-comp-g2020587/\">Occupational Disease Claims after Matter of Pinnacle Industries II, LLC (2019 NY Wrk Comp G2020587)</a><br /></strong><em>February 22, 2021</em><strong><br /></strong></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/no-further-causally-related-disability-due-to-intervening-unrelated-accident/\">No Further Causally Related Disability Due to Intervening Unrelated Accident</a><br /></strong><em>February 15, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/independent-contractor-or-employee/\">Independent Contractor or Employee</a><br /></strong><em>February 8, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/02/no-error-of-law-or-fact-in-an-application-for-full-board-review/\">No Error of Law or Fact In An Application For Full Board Review</a><br /></strong><em>February 1, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"January 2021\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/fraud-in-the-family-claimant-doing-other-work-while-receiving-comp-benefits/\">Fraud in the Family – Claimant Doing Other Work while Receiving Comp Benefits</a></strong><br /><em>January 25, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/how-change-in-conditions-for-classified-claimants-changed-drastically/\">How Change in Conditions for Classified Claimants Changed Drastically</a></strong><br />January 19, 2021</h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/success-with-wcl-section-18/\">Success with WCL Section 18</a></strong><br /><em>January 11, 2021</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2021/01/doubling-down-2-hearing-loss-claims-for-the-same-claimant-denied-on-the-same-day/\">Doubling Down – 2 Hearing Loss Claims for the Same Claimant Denied on the Same Day</a></strong><br /><em>January 4, 2021</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2020\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2020/07/successful-disallowance/\"><strong>Successful Disallowance!</strong></a><br /><em>July 26, 2020</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2020/07/another-win-for-the-law-offices-of-melissa-a-day/\"><strong>Another Win for The Law Offices of Melissa A. Day!</strong></a><br /><em>July 22, 2020</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2020/07/a-win-for-the-law-offices-of-melissa-a-day/\"><strong>A Win for The Law Offices of Melissa A. Day</strong></a><br /><em>July 21, 2020</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2019\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/07/melissa-a-day-esq-invited-to-join-buffalo-business-first-leadership-trust/\"><strong>Melissa A. Day, Esq. invited to join Buffalo Business First Leadership Trust</strong></a><br /><em>July 30, 2019</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/05/claimants-conviction-of-unlawful-manufacture-of-methamphetamine-does-not-amount-to-a-violation-under-wcl-114-a/\"><strong>Claimant’s conviction of unlawful manufacture of methamphetamine does not amount to a violation under WCL 114-a.</strong></a><br /><em>May 31, 2019</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2019/05/amendments-to-2017-not-retroactive-if-ppd-claimant-was-not-attached-to-labor-market/\">Amendments to 2017 not retroactive if PPD claimant was not attached to labor market</a><br /></strong><em>May 31, 2019</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/05/lwec-incontinence/\"><strong>LWEC &amp; Incontinence</strong></a><br /><em>May 28, 2019</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2019/05/a-new-quest-begins/\"><strong>A New Quest Begins</strong><strong></strong></a><br /><em>May 21, 2019</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2018\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/12/appeals-inventory-and-forms/\"><strong>Appeals Inventory and Forms</strong></a><br /><em>December 17, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/12/review-of-workers-compensation-board-schedule-loss-of-use-frequently-asked-questions-and-new-permanency-forms/\"><strong>Review of Workers Compensation Board Schedule Loss of Use Frequently Asked Questions and New Permanency Forms</strong></a><br /><em>December 17, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/proposed-changes-submitted-seeking-to-expand-the-boards-legal-internship-program/\"><strong>Proposed Changes Submitted Seeking to Expand the Board’s Legal Internship Program</strong></a><br /><em>May 25, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/youre-claiming-what/\"><strong>You’re claiming what?!?</strong></a><br /><em>May 25, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/new-slu-guidelines-presentation-by-the-board/\"><strong>New SLU Guidelines Presentation by the Board</strong></a><br /><em>May 23, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/05/united-states-supreme-court-is-considering-a-petition-for-a-writ-of-certiorari-of-the-american-economy-decision/\"><strong>United States Supreme Court is Considering a Petition for a Writ of Certiorari Of the American Economy Decision</strong></a><br /><em>May 23, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/03/ricky-costner-jr-18-year-old-slain-by-a-deranged-co-worker-honored-by-family-and-friends/\"><strong>Ricky Costner Jr., 18 Year Old Slain by a Deranged Co-Worker, Honored by Family and Friends</strong></a><br /><em>March 31, 2018</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2018/03/schedule-loss-of-use-awards-grrrrrrrrr/\"><strong>Schedule Loss of Use Awards – Grrrrrrrrr</strong></a><br /><em>March 31, 2018</em><br /><em></em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2017\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/10/court-of-appeals-upholds-2013-amendment-to-section-25-a-marking-the-end-for-the-fund-for-reopened-cases/\"><strong>Court of Appeals Upholds 2013 Amendment to Section 25-a – Marking the End for The Fund for Reopened Cases</strong></a><br /><em>October 26, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/10/how-to-avoid-bad-luck-in-your-comp-claims-this-friday-the-13th-some-basic-time-constraints-for-new-york-state-workers-compensation-claims-to-keep-in-mind/\"><strong>How to Avoid Bad Luck in Your Comp Claims This Friday the 13th – Some Basic Time Constraints for New York State Workers’ Compensation Claims to Keep in Mind</strong></a><br /><em>October 12, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/06/board-finds-that-medical-treatment-guidelines-apply-to-out-of-state-claimants/\"><strong>Board Finds that Medical Treatment Guidelines Apply to Out of State Claimants</strong></a><br /><em>June 7, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/02/permanent-partial-disability-safety-netwhat-to-expect-from-wcl-%c2%a735/\"><strong>Permanent Partial Disability “Safety Net”…What to Expect from WCL §35</strong></a><br /><em>February 5, 2017</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2017/01/back-to-the-future-the-return-of-wcl-252-b-fact-finding-without-judges-and-legal-reasoning-without-lawyers/\"><strong>Back to the Future: The Return of WCL 25(2-b): Fact-Finding without Judges and Legal Reasoning without Lawyers</strong></a><br /><em>January 18, 2017</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2016\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/12/its-the-holiday-season/\"><strong>It’s the Holiday Season!</strong></a><br /><em>December 8, 2016</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/10/happy-hallo-wean/\"><strong>HAPPY HALLO-WEAN!</strong></a><br /><em>October 31, 2016</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/10/to-wean-or-not-to-wean-that-is-the-question/\"><strong>TO WEAN, OR NOT TO WEAN, THAT IS THE QUESTION.</strong></a><br /><em>October 25, 2016</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2016/04/reopened-cases/\"><strong>Reopened Cases</strong></a><br /><em>April 15, 2016</em><em></em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2015\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/11/ny-allows-employer-to/\"><strong>NY Allows Employer to…</strong></a><br /><em>November 28, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/11/an-employee-cannot-be/\"><strong>An Employee Cannot be…</strong></a><br /><em>November 23, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/10/vocational-and-functional/\"><strong>Vocational and Functional…</strong></a><br /><em>October 27, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/09/challenge-yourself/\"><strong>Challenge Yourself</strong></a><br /><em>September 19, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/09/labor-market-attachment-refresher/\"><strong>Labor Market Attachment Refresher</strong></a><br /><em>September 16, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/09/summer-is-almost-over/\"><strong>Summer is Almost Over!</strong></a><br /><em>September 7, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/claims-handling-performance/\"><strong>Claims Handling Performance</strong></a><br /><em>August 23, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/answers-to-the-quiz/\"><strong>Answers to the Quiz</strong></a><br /><em>August 10, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/average-wages/\"><strong>Average Wages?</strong></a><br /><em>August 7, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/non-acute-pain-treatment-guidelines/\"><strong>Non-Acute Pain Treatment Guidelines</strong></a><br /><em>August 5, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/08/test-your-ny-workers-compensation-chops/\"><strong>Test Your NY Workers’ Compensation Chops</strong></a><br />August 3, 2015</h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/07/liability-for-treatment-by-social-workers/\"><strong>Liability for Treatment by Social Workers</strong></a><br /><em>July 21, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/07/mds-jds-and-ttds/\"><strong>MDs, JDs AND TTDs</strong></a><br /><em>July 13, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/07/hot-dogs-or-hamburgers/\"><strong>HOT DOGS OR HAMBURGERS?</strong></a><br /><em>July 1, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/06/imes-the-next-summer-movie-blockbuster-or-just-another-ime-gone-bust/\"><strong>IMEs : The Next Summer Movie Blockbuster or Just Another IME Gone Bust?</strong></a><br /><em>June 29, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/06/wcbs-regulatory-agenda-may-include/\"><strong>WCB’s Regulatory Agenda May Include…</strong></a><br /><em>June 14, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/02/an-underwriting-nightmare-come-true/\"><strong>An Underwriting Nightmare Come True</strong></a><br /><em>February 5, 2015</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2015/02/hearing-loss-becomes-hearing-win/\"><strong>Hearing Loss becomes Hearing Win</strong></a><br /><em>February 5, 2015</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2014\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2014/11/non-acute-pain-medical-treatment-guidelines-offer-a-framework-for-controlling-costs-associated-with-chronic-pain-management-especially-opioid-use/\"><strong>Non Acute Pain Medical Treatment Guidelines Offer a Framework for Controlling Costs Associated with Chronic Pain Management, Especially Opioid Use</strong></a><br /><em>November 24, 2014</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2014/11/in-kigin-v-wcb-the-court-of-appeals-upholds-the-presumption-that-treatment-outside-the-mtgs-is-not-medically-necessary-and-the-attending-physician-has-the-burden-of-proof-of-the-need-for-a-variance/\"><strong>In Kigin v. WCB, the Court of Appeals upholds the presumption that treatment outside the MTGs is not medically necessary and the attending physician has the burden of proof of the need for a variance.</strong></a><br /><em>November 23, 2014</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2014/11/the-law-offices-of-melissa-a-day-pllc-won-a-finding-of-a-0-loss-of-wage-earning-capacity/\"><strong>The Law Offices of Melissa A. Day, PLLC Won a Finding of a 0% Loss of Wage Earning Capacity</strong></a><br /><em>November 22, 2014</em></h6>\n</li>\n<li>\n<h6><strong><a href=\"https://thelomad.com/getmad.today/blog/2014/09/navigating-the-low-back-medical-treatment-guidelines-for-chiropractic-care/\">Navigating the Low Back Medical Treatment Guidelines for Chiropractic Care</a><br /><em>Sseptember 12, 2014</em><br /></strong></h6>\n</li>\n</ul>[/et_pb_accordion_item][et_pb_accordion_item title=\"2013\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<ul>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/12/did-you-know-the-board-has-retired-the-concept-of-the-compensable-retirement-the-death-knell-of-the-trifecta-zamora-and-the-so-called-compensable-retirement/\"><strong>DID YOU KNOW? THE BOARD HAS RETIRED THE CONCEPT OF THE COMPENSABLE RETIREMENT. The Death Knell of the Trifecta: Zamora and the so-called “Compensable Retirement”</strong></a><br /><em>December 17, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/11/a-blind-leap-across-an-inscrutable-chasm-arbitrary-and-capricious-loss-of-wage-earning-capacity-lwec-determinations/\"><strong>A Blind Leap across an Inscrutable Chasm – Arbitrary and Capricious Loss of Wage Earning Capacity (LWEC) Determinations</strong></a><br /><em>November 30, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/10/less-than-twelve-weeks-remaining-for-wcl-%c2%a725-a-because-subject-046-630-contains-stricter-requirements-for-reopening-a-claim-on-the-issue-of-%c2%a725-a-prudent-carriers-and-employers-may-want/\"><strong>LESS THAN TWELVE WEEKS REMAINING FOR WCL §25-a! Because Subject # 046-630 Contains Stricter Requirements for Reopening a Claim on the Issue of §25-a, Prudent Carriers and Employers May Want to Refer Applications to Defense Counsel</strong></a><br /><em>October 10, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/09/board-process-re-engineering-bpr-ny-workers-compensation-forum-members-should-be-included-in-the-dialogue/\"><strong>BOARD PROCESS RE-ENGINEERING (“BPR”) – NY WORKERS’ COMPENSATION FORUM MEMBERS SHOULD BE INCLUDED IN THE DIALOGUE</strong></a><br /><em>September 13, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/08/did-you-know-the-2nd-circuit-certified-a-question-to-the-ny-court-of-appeals-on-the-exclusivity-provision-of-the-wcl/\"><strong>DID YOU KNOW? The 2nd Circuit certified a question to the NY Court of Appeals on the exclusivity provision of the WCL?</strong></a><br /><em>August 14, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/08/did-you-know-twenty-insurance-carriers-have-filed-an-action-seeking-to-obtain-a-declaration-that-the-elimination-of-the-fund-for-reopened-cases-is-unconstitutional/\"><strong>DID YOU KNOW? Twenty Insurance Carriers Have Filed an Action Seeking to Obtain a Declaration that the Elimination of The Fund for Reopened Cases Is Unconstitutional.</strong></a><br /><em>August 3, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/07/did-you-know-the-third-department-holds-that-medical-treatment-which-is-not-specifically-included-in-the-mtg-is-presumptively-not-medically-necessary/\"><strong>DID YOU KNOW? THE THIRD DEPARTMENT HOLDS THAT MEDICAL TREATMENT WHICH IS NOT SPECIFICALLY INCLUDED IN THE MTG IS PRESUMPTIVELY NOT MEDICALLY NECESSARY.</strong></a><br /><em>July 30 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/07/did-you-know-an-employer-or-carrier-may-be-able-to-reopen-a-ppd-claim-on-the-issue-of-labor-market-attachment/\"><strong>DID YOU KNOW? AN EMPLOYER OR CARRIER MAY BE ABLE TO REOPEN A PPD CLAIM ON THE ISSUE OF LABOR MARKET ATTACHMENT.</strong></a><br /><em>July 13, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/04/did-you-know-a-bill-being-considered-by-the-ny-state-legislature-which-would-create-a-presumption-of-permanent-total-disability-for-claimants-who-are-found-eligible-for-social-security/\"><strong>DID YOU KNOW? A bill being considered by the NY State Legislature which would create a presumption of permanent total disability for claimants who are found eligible for social security?</strong></a><br /><em>April 30, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/04/did-you-know-25-a-is-going-away/\"><strong>DID YOU KNOW? 25-A IS GOING AWAY.</strong></a><br /><em>April 6, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/03/did-you-know-a-chiropractic-variance-request-based-on-alleged-functional-improvements-and-expected-continued-improvements-may-not-be-granted-if-the-chiropractor-continues-to-find-that-the-claimant-is/\">DID YOU KNOW? A chiropractic variance request based on alleged functional improvements and expected continued improvements may not be granted if the chiropractor continues to find that the claimant is totally disabled.</a><br /><em>March 13, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/02/did-you-know-the-federal-government-is-not-subject-to-the-jurisdiction-of-the-ny-workers-compensation-board-on-a-theory-of-general-special-employment/\"><strong>DID YOU KNOW? The Federal Government Is Not Subject to the Jurisdiction of the NY Workers’ Compensation Board on a Theory of General/Special Employment?</strong></a><br /><em>February 23, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/02/did-you-know-governor-cuomos-budget-proposes-to-eliminate-mandatory-deposits-into-the-atf-and-to-close-the-fund-to-new-deposits/\"><strong>DID YOU KNOW? GOVERNOR CUOMO’S BUDGET PROPOSES TO ELIMINATE MANDATORY DEPOSITS INTO THE ATF AND TO CLOSE THE FUND TO NEW DEPOSITS?</strong></a><br />February 5, 2013</h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know-implementation-of-the-changes-to-the-mtg-has-been-delayed-until-march-1-2013/\"><strong>DID YOU KNOW? IMPLEMENTATION OF THE CHANGES TO THE MTG HAS BEEN DELAYED UNTIL MARCH 1, 2013.</strong></a><br /><em>January 22, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know-facebook-pages-are-not-considered-surveillance-that-has-to-be-disclosed-before-a-claimant-testifies/\"><strong>DID YOU KNOW? FACEBOOK PAGES ARE NOT CONSIDERED “SURVEILLANCE” THAT HAS TO BE DISCLOSED BEFORE A CLAIMANT TESTIFIES.</strong></a><br /><em>January 22, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know-wcl-%c2%a7153v-benefits-may-now-be-capped-under-wcl-%c2%a7153w/\"><strong>DID YOU KNOW? WCL §15(3)(v) BENEFITS MAY NOW BE CAPPED UNDER WCL §15(3)(w)</strong></a><br /><em>January 14, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/why-why-do-judges-even-set-deadlines-for-the-submission-of-memoranda-of-law/\"><strong>WHY? Why do judge’s even set deadlines for the submission of Memoranda of Law?</strong></a><br /><em>January 10, 2013</em></h6>\n</li>\n<li>\n<h6><a href=\"https://thelomad.com/getmad.today/blog/2013/01/did-you-know/\"><strong>DID YOU KNOW?</strong></a><br /><em>January 5, 2013</em></h6>\n</li>\n</ul>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section]','LOMAD Blog - Single Post','','publish','open','closed','','specific-pages-lomad-news-events-and-articles','','','2022-09-26 11:34:33','2022-09-26 15:34:33','',0,'https://thelomad.com/getmad.today/blog/et_body_layout/specific-pages-lomad-news-events-and-articles/',0,'et_body_layout','',0),(51280,1,'2022-09-19 13:17:25','2022-09-19 17:17:25','','LOMAD Blog - Single Post','','publish','closed','closed','','lomad-blog-main-page-copy','','','2022-09-19 13:35:06','2022-09-19 17:35:06','',0,'https://thelomad.com/getmad.today/blog/et_template/lomad-blog-main-page-copy/',0,'et_template','',0),(51284,1,'2022-09-19 13:19:47','2022-09-19 17:19:47','','Default Website Template','','publish','closed','closed','','default-website-template-7','','','2022-09-19 13:19:47','2022-09-19 17:19:47','',0,'https://thelomad.com/getmad.today/blog/et_template/default-website-template-7/',0,'et_template','',0),(51285,1,'2022-09-19 13:19:47','2022-09-19 17:19:47','','Homepage','','publish','closed','closed','','homepage-6','','','2022-09-19 13:19:47','2022-09-19 17:19:47','',0,'https://thelomad.com/getmad.today/blog/et_template/homepage-6/',0,'et_template','',0),(51286,1,'2022-09-19 13:19:47','2022-09-19 17:19:47','','Specific Pages: Workers\' Compensation Team','','publish','closed','closed','','specific-pages-workers-compensation-team-6','','','2022-09-19 13:19:47','2022-09-19 17:19:47','',0,'https://thelomad.com/getmad.today/blog/et_template/specific-pages-workers-compensation-team-6/',0,'et_template','',0),(51287,1,'2022-09-19 13:19:47','2022-09-19 17:19:47','','LOMAD Blog - Main Page','','publish','closed','closed','','lomad-blog-main-page','','','2022-09-19 13:19:47','2022-09-19 17:19:47','',0,'https://thelomad.com/getmad.today/blog/et_template/lomad-blog-main-page/',0,'et_template','',0),(51288,1,'2022-09-19 13:19:47','2022-09-19 17:19:47','','Careers +','','publish','closed','closed','','careers-2','','','2022-09-19 13:19:47','2022-09-19 17:19:47','',0,'https://thelomad.com/getmad.today/blog/et_template/careers-2/',0,'et_template','',0),(51289,1,'2022-09-19 13:19:47','2022-09-19 17:19:47','','LOMAD Blog - Single Post','','publish','closed','closed','','lomad-blog-single-post','','','2022-09-19 13:19:47','2022-09-19 17:19:47','',0,'https://thelomad.com/getmad.today/blog/et_template/lomad-blog-single-post/',0,'et_template','',0),(51307,1,'2022-09-19 13:54:03','2022-09-19 17:54:03','','Bing-Huang300x300','','inherit','closed','closed','','bing-huang300x300','','','2022-09-19 13:54:03','2022-09-19 17:54:03','',46191,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Bing-Huang300x300.jpg',0,'attachment','image/jpeg',0),(51308,1,'2022-09-19 13:54:04','2022-09-19 17:54:04','','female-placeholder300x300','','inherit','closed','closed','','female-placeholder300x300','','','2022-09-19 13:54:04','2022-09-19 17:54:04','',46191,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/female-placeholder300x300.png',0,'attachment','image/png',0),(51310,1,'2022-09-19 13:56:29','2022-09-19 17:56:29','','Maria-Lua300X300','','inherit','closed','closed','','maria-lua300x300','','','2022-09-19 13:56:29','2022-09-19 17:56:29','',46191,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Maria-Lua300X300.jpg',0,'attachment','image/jpeg',0),(51311,1,'2022-09-19 13:56:30','2022-09-19 17:56:30','','Suki-Harada-300x300','','inherit','closed','closed','','suki-harada-300x300','','','2022-09-19 13:56:30','2022-09-19 17:56:30','',46191,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Suki-Harada-300x300-1.jpg',0,'attachment','image/jpeg',0),(51313,1,'2022-09-19 13:58:26','2022-09-19 17:58:26','','Alexandra-Rizk-300x300','','inherit','closed','closed','','alexandra-rizk-300x300','','','2022-09-19 13:58:26','2022-09-19 17:58:26','',48410,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Alexandra-Rizk-300x300-1.jpg',0,'attachment','image/jpeg',0),(51314,1,'2022-09-19 13:58:27','2022-09-19 17:58:27','','Kierria_Jones-300x300','','inherit','closed','closed','','kierria_jones-300x300','','','2022-09-19 13:58:27','2022-09-19 17:58:27','',48410,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Kierria_Jones-300x300-1.jpg',0,'attachment','image/jpeg',0),(51315,1,'2022-09-19 13:58:28','2022-09-19 17:58:28','','Maxwell-Doldan-300x300','','inherit','closed','closed','','maxwell-doldan-300x300','','','2022-09-19 13:58:28','2022-09-19 17:58:28','',48410,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Maxwell-Doldan-300x300-1.jpg',0,'attachment','image/jpeg',0),(51320,1,'2022-09-19 14:03:07','2022-09-19 18:03:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][lwp_divi_breadcrumbs _builder_version=\"4.18.0\" _module_preset=\"default\" module_font=\"Playfair Display||||||||\" module_text_color=\"#211865\" module_font_size=\"20px\" custom_padding=\"15px||15px||false|false\" border_color_all=\"#211865\" border_width_bottom=\"4px\" border_style_bottom=\"double\" global_colors_info=\"{}\"][/lwp_divi_breadcrumbs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.18.0\" _module_preset=\"default\" collapsed=\"on\"][et_pb_fullwidth_header _builder_version=\"4.18.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_color=\"RGBA(255,255,255,0)\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_css_main_element=\"width: 75%!important\" global_colors_info=\"{}\"][et_pb_post_content _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_post_content][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_css_main_element=\"width: 25%!important\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Melissa-and-James-backtoback-1000x667-1.jpg\" title_text=\"Melissa-and-James-backtoback-1000x667\" align=\"center\" force_fullwidth=\"on\" admin_label=\"JBC + MAD Sidebar\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_enable_image=\"off\" module_alignment=\"center\" custom_margin=\"||||false|false\" custom_padding=\"||0px|29px|false|false\" sticky_limit_top=\"row\" sticky_limit_bottom=\"row\" global_colors_info=\"{}\"][/et_pb_image][et_pb_sidebar area=\"et_pb_widget_area_1\" admin_label=\"LOMAD Sidebar 2\" module_class=\"fl-sidebar fl-lightlinks\" _builder_version=\"4.18.0\" header_font=\"|600|||||||\" header_text_align=\"left\" header_text_color=\"#ffffff\" header_font_size=\"35px\" body_font=\"Playfair Display||||||||\" body_font_size=\"17px\" background_color=\"#211865\" custom_margin=\"100px|-45px|||false|false\" custom_margin_tablet=\"20px||||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"25px|45px|25px|0px|true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" scroll_vertical_motion=\"19|63|63|100|4|0|-4\" header_font_size_tablet=\"30px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_color_right_tablet=\"\" border_color_right_phone=\"\" border_color_right_last_edited=\"on|desktop\" box_shadow_style=\"preset1\" box_shadow_vertical=\"0px\" box_shadow_blur=\"0px\" box_shadow_spread=\"3px\" box_shadow_color=\"#211865\" saved_tabs=\"all\" global_colors_info=\"{}\"][/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.18.0\" _module_preset=\"default\" collapsed=\"on\"][et_pb_fullwidth_header _builder_version=\"4.18.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_color=\"RGBA(255,255,255,0)\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section]','LOMAD Newsletter','','publish','open','closed','','careers-wc-practice-aids-and-subs-lomad-event-calendar','','','2022-09-20 14:15:17','2022-09-20 18:15:17','',0,'https://thelomad.com/getmad.today/blog/et_body_layout/careers-wc-practice-aids-and-subs-lomad-event-calendar/',0,'et_body_layout','',0),(51322,1,'2022-09-19 14:03:47','2022-09-19 18:03:47','','Default Website Template','','publish','closed','closed','','default-website-template-8','','','2022-09-19 14:03:47','2022-09-19 18:03:47','',0,'https://thelomad.com/getmad.today/blog/et_template/default-website-template-8/',0,'et_template','',0),(51323,1,'2022-09-19 14:03:47','2022-09-19 18:03:47','','Homepage','','publish','closed','closed','','homepage-7','','','2022-09-19 14:03:47','2022-09-19 18:03:47','',0,'https://thelomad.com/getmad.today/blog/et_template/homepage-7/',0,'et_template','',0),(51324,1,'2022-09-19 14:03:47','2022-09-19 18:03:47','','Specific Pages: Workers\' Compensation Team','','publish','closed','closed','','specific-pages-workers-compensation-team-7','','','2022-09-19 14:03:47','2022-09-19 18:03:47','',0,'https://thelomad.com/getmad.today/blog/et_template/specific-pages-workers-compensation-team-7/',0,'et_template','',0),(51325,1,'2022-09-19 14:03:47','2022-09-19 18:03:47','','LOMAD Blog - Main Page','','publish','closed','closed','','lomad-blog-main-page-2','','','2022-09-19 14:03:47','2022-09-19 18:03:47','',0,'https://thelomad.com/getmad.today/blog/et_template/lomad-blog-main-page-2/',0,'et_template','',0),(51326,1,'2022-09-19 14:03:47','2022-09-19 18:03:47','','Careers + WC Practice Aids (and subs) + LOMAD Event Calendar','','publish','closed','closed','','careers-wc-practice-aids-and-subs-lomad-event-calendar','','','2022-09-19 14:03:47','2022-09-19 18:03:47','',0,'https://thelomad.com/getmad.today/blog/et_template/careers-wc-practice-aids-and-subs-lomad-event-calendar/',0,'et_template','',0),(51327,1,'2022-09-19 14:03:47','2022-09-19 18:03:47','','LOMAD Blog - Single Post','','publish','closed','closed','','lomad-blog-single-post-2','','','2022-09-19 14:03:47','2022-09-19 18:03:47','',0,'https://thelomad.com/getmad.today/blog/et_template/lomad-blog-single-post-2/',0,'et_template','',0),(51328,1,'2022-09-19 14:03:47','2022-09-19 18:03:47','','LOMADtv + LOMAD Newsletter','','publish','closed','closed','','lomadtv-lomad-newsletter','','','2022-09-19 14:03:47','2022-09-19 18:03:47','',0,'https://thelomad.com/getmad.today/blog/et_template/lomadtv-lomad-newsletter/',0,'et_template','',0),(51329,1,'2022-09-19 14:03:49','2022-09-19 18:03:49','','LOMAD Newsletter','','publish','closed','closed','','lomadtv-lomad-newsletter-2','','','2022-09-19 14:10:12','2022-09-19 18:10:12','',0,'https://thelomad.com/getmad.today/blog/et_template/lomadtv-lomad-newsletter-2/',0,'et_template','',0),(51335,1,'2022-09-19 14:08:15','2022-09-19 18:08:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][lwp_divi_breadcrumbs _builder_version=\"4.18.0\" _module_preset=\"default\" module_font=\"Playfair Display||||||||\" module_text_color=\"#211865\" module_font_size=\"20px\" custom_padding=\"15px||15px||false|false\" border_color_all=\"#211865\" border_width_bottom=\"4px\" border_style_bottom=\"double\" global_colors_info=\"{}\"][/lwp_divi_breadcrumbs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.18.0\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.18.0\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_post_content _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_post_content][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.18.0\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.18.0\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section]','LOMADtv','','publish','open','closed','','careers-wc-practice-aids-and-subs-lomad-event-calendar-2','','','2022-09-20 14:15:17','2022-09-20 18:15:17','',0,'https://thelomad.com/getmad.today/blog/et_body_layout/careers-wc-practice-aids-and-subs-lomad-event-calendar-2/',0,'et_body_layout','',0),(51338,1,'2022-09-19 14:09:47','2022-09-19 18:09:47','','Default Website Template','','publish','closed','closed','','default-website-template-9','','','2022-09-19 14:09:47','2022-09-19 18:09:47','',0,'https://thelomad.com/getmad.today/blog/et_template/default-website-template-9/',0,'et_template','',0),(51339,1,'2022-09-19 14:09:47','2022-09-19 18:09:47','','Homepage','','publish','closed','closed','','homepage-8','','','2022-09-19 14:09:47','2022-09-19 18:09:47','',0,'https://thelomad.com/getmad.today/blog/et_template/homepage-8/',0,'et_template','',0),(51340,1,'2022-09-19 14:09:47','2022-09-19 18:09:47','','Specific Pages: Workers\' Compensation Team','','publish','closed','closed','','specific-pages-workers-compensation-team-8','','','2022-09-19 14:09:47','2022-09-19 18:09:47','',0,'https://thelomad.com/getmad.today/blog/et_template/specific-pages-workers-compensation-team-8/',0,'et_template','',0),(51341,1,'2022-09-19 14:09:47','2022-09-19 18:09:47','','LOMAD Blog - Main Page','','publish','closed','closed','','lomad-blog-main-page-3','','','2022-09-19 14:09:47','2022-09-19 18:09:47','',0,'https://thelomad.com/getmad.today/blog/et_template/lomad-blog-main-page-3/',0,'et_template','',0),(51342,1,'2022-09-19 14:09:47','2022-09-19 18:09:47','','Careers + WC Practice Aids (and subs) + LOMAD Event Calendar','','publish','closed','closed','','careers-wc-practice-aids-and-subs-lomad-event-calendar-2','','','2022-09-19 14:09:47','2022-09-19 18:09:47','',0,'https://thelomad.com/getmad.today/blog/et_template/careers-wc-practice-aids-and-subs-lomad-event-calendar-2/',0,'et_template','',0),(51343,1,'2022-09-19 14:09:47','2022-09-19 18:09:47','','LOMAD Blog - Single Post','','publish','closed','closed','','lomad-blog-single-post-3','','','2022-09-19 14:09:47','2022-09-19 18:09:47','',0,'https://thelomad.com/getmad.today/blog/et_template/lomad-blog-single-post-3/',0,'et_template','',0),(51344,1,'2022-09-19 14:09:47','2022-09-19 18:09:47','','LOMAD Newsletter','','publish','closed','closed','','lomad-newsletter','','','2022-09-19 14:09:47','2022-09-19 18:09:47','',0,'https://thelomad.com/getmad.today/blog/et_template/lomad-newsletter/',0,'et_template','',0),(51345,1,'2022-09-19 14:09:47','2022-09-19 18:09:47','','LOMADtv','','publish','closed','closed','','lomadtv','','','2022-09-19 14:09:47','2022-09-19 18:09:47','',0,'https://thelomad.com/getmad.today/blog/et_template/lomadtv/',0,'et_template','',0),(51346,1,'2022-09-19 14:10:12','2022-09-19 18:10:12','','LOMADtv','','publish','closed','closed','','lomadtv-2','','','2022-09-19 14:10:12','2022-09-19 18:10:12','',0,'https://thelomad.com/getmad.today/blog/et_template/lomadtv-2/',0,'et_template','',0),(51366,1,'2022-09-19 15:07:07','2022-09-19 19:07:07','','2022 Largest Buffalo law firms','','inherit','closed','closed','','2022-largest-buffalo-law-firms','','','2022-09-19 15:07:07','2022-09-19 19:07:07','',6,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2022-Largest-Buffalo-law-firms.jpg',0,'attachment','image/jpeg',0),(51396,1,'2022-09-20 12:18:27','2022-09-20 16:18:27','','Theme Builder Layout','','publish','open','closed','','theme-builder-layout','','','2022-09-20 12:18:27','2022-09-20 16:18:27','',0,'https://thelomad.com/getmad.today/blog/et_footer_layout/theme-builder-layout/',0,'et_footer_layout','',0),(51397,1,'2022-09-20 12:19:39','2022-09-20 16:19:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"LOMAD Client Satisfaction Survey\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_font=\"|600|||||||\" custom_margin=\"15px||15px||false|false\" link_option_url=\"https://docs.google.com/forms/d/e/1FAIpQLSeybcb4WQoN_KwbKjb3EOtvdsFBnl8itSfHRaTZwFlWCUfijQ/viewform?embedded=true%22\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">LOMAD Client Satisfaction Survey</h2>[/et_pb_text][et_pb_button button_url=\"https://docs.google.com/forms/d/e/1FAIpQLSeybcb4WQoN_KwbKjb3EOtvdsFBnl8itSfHRaTZwFlWCUfijQ/viewform?embedded=true%22\" button_text=\"TAKE SURVEY\" button_alignment=\"center\" button_text_tablet=\"TAKE SURVEY\" button_text_phone=\"TAKE SURVEY\" button_text_last_edited=\"on|desktop\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#211865\" button_font=\"||||||||\" custom_margin=\"||35px||false|false\" custom_padding=\"||||false|false\" box_shadow_style=\"preset3\" box_shadow_vertical=\"10px\" box_shadow_blur=\"10px\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','LOMAD Client Satisfaction Survey (Section)','','publish','closed','closed','','lomad-client-satisfaction-survey-section','','','2022-09-20 12:19:39','2022-09-20 16:19:39','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/lomad-client-satisfaction-survey-section/',0,'et_pb_layout','',0),(51399,1,'2022-09-20 12:19:46','2022-09-20 16:19:46','','Default Website Template','','publish','closed','closed','','default-website-template-10','','','2022-09-20 12:19:46','2022-09-20 16:19:46','',0,'https://thelomad.com/getmad.today/blog/et_template/default-website-template-10/',0,'et_template','',0),(51400,1,'2022-09-20 12:19:46','2022-09-20 16:19:46','','Homepage','','publish','closed','closed','','homepage-9','','','2022-09-20 12:19:46','2022-09-20 16:19:46','',0,'https://thelomad.com/getmad.today/blog/et_template/homepage-9/',0,'et_template','',0),(51401,1,'2022-09-20 12:19:46','2022-09-20 16:19:46','','Specific Pages: Workers\' Compensation Team','','publish','closed','closed','','specific-pages-workers-compensation-team-9','','','2022-09-20 12:19:46','2022-09-20 16:19:46','',0,'https://thelomad.com/getmad.today/blog/et_template/specific-pages-workers-compensation-team-9/',0,'et_template','',0),(51402,1,'2022-09-20 12:19:46','2022-09-20 16:19:46','','LOMAD Blog - Main Page','','publish','closed','closed','','lomad-blog-main-page-4','','','2022-09-20 12:19:46','2022-09-20 16:19:46','',0,'https://thelomad.com/getmad.today/blog/et_template/lomad-blog-main-page-4/',0,'et_template','',0),(51403,1,'2022-09-20 12:19:46','2022-09-20 16:19:46','','Careers + WC Practice Aids (and subs) + LOMAD Event Calendar','','publish','closed','closed','','careers-wc-practice-aids-and-subs-lomad-event-calendar-3','','','2022-09-20 12:19:46','2022-09-20 16:19:46','',0,'https://thelomad.com/getmad.today/blog/et_template/careers-wc-practice-aids-and-subs-lomad-event-calendar-3/',0,'et_template','',0),(51404,1,'2022-09-20 12:19:46','2022-09-20 16:19:46','','LOMAD Blog - Single Post','','publish','closed','closed','','lomad-blog-single-post-4','','','2022-09-20 12:19:46','2022-09-20 16:19:46','',0,'https://thelomad.com/getmad.today/blog/et_template/lomad-blog-single-post-4/',0,'et_template','',0),(51405,1,'2022-09-20 12:19:46','2022-09-20 16:19:46','','LOMAD Newsletter','','publish','closed','closed','','lomad-newsletter-2','','','2022-09-20 12:19:46','2022-09-20 16:19:46','',0,'https://thelomad.com/getmad.today/blog/et_template/lomad-newsletter-2/',0,'et_template','',0),(51406,1,'2022-09-20 12:19:46','2022-09-20 16:19:46','','LOMADtv','','publish','closed','closed','','lomadtv-3','','','2022-09-20 12:19:46','2022-09-20 16:19:46','',0,'https://thelomad.com/getmad.today/blog/et_template/lomadtv-3/',0,'et_template','',0),(51407,1,'2022-09-20 12:19:47','2022-09-20 16:19:47','','Specific Pages: Contact','','publish','closed','closed','','specific-pages-contact','','','2022-09-20 12:19:47','2022-09-20 16:19:47','',0,'https://thelomad.com/getmad.today/blog/et_template/specific-pages-contact/',0,'et_template','',0),(51408,1,'2022-09-20 12:20:11','2022-09-20 16:20:11','[et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" background_color=\"#211865\" global_colors_info=\"{}\" template_type=\"row\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.18.0\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"45px||||false|false\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/likegetMAD.today\" icon_color=\"#211865\" use_icon_font_size=\"on\" icon_font_size=\"22px\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_color=\"#FFFFFF\" background_enable_color=\"on\" custom_button=\"on\" button_text_size=\"0px\" button_bg_color=\"#FFFFFF\" border_radii=\"on|0px|0px|0px|0px\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"https://www.linkedin.com/company/the-law-offices-of-melissa-a-day-pllc/\" icon_color=\"#211865\" use_icon_font_size=\"on\" icon_font_size=\"22px\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_color=\"#FFFFFF\" background_enable_color=\"on\" border_radii=\"on|0px|0px|0px|0px\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]linkedin[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text admin_label=\"Attorney Advertising\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_font=\"|700|||||||\" text_text_color=\"#FFFFFF\" custom_padding=\"10px||10px||false|false\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">ATTORNEY ADVERTISING – PRIOR RESULTS DO NOT GUARANTEE SIMILAR OUTCOME</p>[/et_pb_text][et_pb_text admin_label=\"Firm Address\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_font=\"|600|||||||\" text_text_color=\"#FFFFFF\" custom_padding=\"10px||10px||false|false\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_4_tb_footer  et_pb_text_align_center et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p style=\"text-align: center;\"><span class=\"nap-item nap-item--name\">The Law Offices of Melissa A. Day, PLLC</span><br /><span class=\"nap-item nap-item--address\">636 N French Rd<br />Suite 3<br />Amherst, NY 14228</span></p>\n</div>\n</div>[/et_pb_text][et_pb_text admin_label=\"Footer Tag\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_padding=\"20px||15px||false|false\" global_colors_info=\"{}\"]<div class=\"flfooterbrand\">\n<p style=\"text-align: center;\">© 2022<span> </span><span style=\"text-decoration: underline;\"><strong><span style=\"color: #ffffff; text-decoration: underline;\"><a href=\"https://lawyers.findlaw.com/profile/view/5239763_1\" target=\"_blank\" data-wpel-link=\"external\" rel=\"noopener noreferrer\" role=\"link\" style=\"color: #ffffff; text-decoration: underline;\">The Law Offices of Melissa A. Day, PLLC</a></span><br /></strong></span>All Rights Reserved | <span style=\"color: #ffffff;\"><a href=\"https://thelomad.com/getmad.today/lomad_disclaimer\" title=\"Disclaimer - The Law Offices of Melissa A. Day\" style=\"color: #ffffff; text-decoration: underline;\">Disclaimer</a></span> | <span style=\"text-decoration: underline;\"><span style=\"color: #ffffff;\"><a href=\"thelomad.com/getmad.today/sitemap\" style=\"color: #ffffff;\">Site Map</a></span></span></p>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row]','Footer very bottom (section)','','publish','closed','closed','','footer-very-bottom-section','','','2022-09-20 12:20:11','2022-09-20 16:20:11','',0,'https://thelomad.com/getmad.today/blog/et_pb_layout/footer-very-bottom-section/',0,'et_pb_layout','',0),(51409,1,'2022-09-20 12:20:17','2022-09-20 16:20:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" border_width_top=\"40px\" border_color_top=\"#211865\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"LOMAD Client Satisfaction Survey\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_font=\"|600|||||||\" custom_margin=\"15px||15px||false|false\" link_option_url=\"https://docs.google.com/forms/d/e/1FAIpQLSeybcb4WQoN_KwbKjb3EOtvdsFBnl8itSfHRaTZwFlWCUfijQ/viewform?embedded=true%22\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">LOMAD Client Satisfaction Survey</h2>[/et_pb_text][et_pb_button button_url=\"https://docs.google.com/forms/d/e/1FAIpQLSeybcb4WQoN_KwbKjb3EOtvdsFBnl8itSfHRaTZwFlWCUfijQ/viewform?embedded=true%22\" button_text=\"TAKE SURVEY\" button_alignment=\"center\" button_text_tablet=\"TAKE SURVEY\" button_text_phone=\"TAKE SURVEY\" button_text_last_edited=\"on|desktop\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#211865\" button_font=\"||||||||\" custom_margin=\"||35px||false|false\" custom_padding=\"||||false|false\" box_shadow_style=\"preset3\" box_shadow_vertical=\"10px\" box_shadow_blur=\"10px\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"#211865\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" background_color=\"#211865\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.18.0\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"45px||||false|false\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/likegetMAD.today\" icon_color=\"#211865\" use_icon_font_size=\"on\" icon_font_size=\"22px\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_color=\"#FFFFFF\" background_enable_color=\"on\" custom_button=\"on\" button_text_size=\"0px\" button_bg_color=\"#FFFFFF\" border_radii=\"on|0px|0px|0px|0px\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"https://www.linkedin.com/company/the-law-offices-of-melissa-a-day-pllc/\" icon_color=\"#211865\" use_icon_font_size=\"on\" icon_font_size=\"22px\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_color=\"#FFFFFF\" background_enable_color=\"on\" border_radii=\"on|0px|0px|0px|0px\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]linkedin[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text admin_label=\"Attorney Advertising\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_font=\"|700|||||||\" text_text_color=\"#FFFFFF\" custom_padding=\"10px||10px||false|false\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">ATTORNEY ADVERTISING – PRIOR RESULTS DO NOT GUARANTEE SIMILAR OUTCOME</p>[/et_pb_text][et_pb_text admin_label=\"Firm Address\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_font=\"|600|||||||\" text_text_color=\"#FFFFFF\" custom_padding=\"10px||10px||false|false\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_4_tb_footer  et_pb_text_align_center et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p style=\"text-align: center;\"><span class=\"nap-item nap-item--name\">The Law Offices of Melissa A. Day, PLLC</span><br /><span class=\"nap-item nap-item--address\">636 N French Rd<br />Suite 3<br />Amherst, NY 14228</span></p>\n</div>\n</div>[/et_pb_text][et_pb_text admin_label=\"Footer Tag\" _builder_version=\"4.18.0\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_padding=\"20px||15px||false|false\" global_colors_info=\"{}\"]<div class=\"flfooterbrand\">\n<p style=\"text-align: center;\">© 2022<span> </span><span style=\"text-decoration: underline;\"><strong><span style=\"color: #ffffff; text-decoration: underline;\"><a href=\"https://lawyers.findlaw.com/profile/view/5239763_1\" target=\"_blank\" data-wpel-link=\"external\" rel=\"noopener noreferrer\" role=\"link\" style=\"color: #ffffff; text-decoration: underline;\">The Law Offices of Melissa A. Day, PLLC</a></span><br /></strong></span>All Rights Reserved | <span style=\"color: #ffffff;\"><a href=\"https://thelomad.com/getmad.today/lomad_disclaimer\" title=\"Disclaimer - The Law Offices of Melissa A. Day\" style=\"color: #ffffff; text-decoration: underline;\">Disclaimer</a></span> | <span style=\"text-decoration: underline;\"><span style=\"color: #ffffff;\"><a href=\"thelomad.com/getmad.today/sitemap\" style=\"color: #ffffff;\">Site Map</a></span></span></p>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Contact - No short form in footer','','publish','open','closed','','theme-builder-layout-2','','','2022-09-20 14:15:17','2022-09-20 18:15:17','',0,'https://thelomad.com/getmad.today/blog/et_footer_layout/theme-builder-layout-2/',0,'et_footer_layout','',0),(51411,1,'2022-09-20 12:21:28','2022-09-20 16:21:28','','Contact - No short form in footer','','publish','closed','closed','','specific-pages-contact-2','','','2022-09-20 14:15:17','2022-09-20 18:15:17','',0,'https://thelomad.com/getmad.today/blog/et_template/specific-pages-contact-2/',0,'et_template','',0),(51412,1,'2022-09-20 12:21:39','2022-09-20 16:21:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_css_main_element=\"width: 100%!important\" global_colors_info=\"{}\"][lwp_divi_breadcrumbs _builder_version=\"4.18.0\" _module_preset=\"default\" module_font=\"Playfair Display||||||||\" module_text_color=\"#211865\" module_font_size=\"20px\" custom_padding=\"15px||15px||false|false\" border_color_all=\"#211865\" border_width_bottom=\"4px\" border_style_bottom=\"double\" global_colors_info=\"{}\"][/lwp_divi_breadcrumbs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.18.0\" _module_preset=\"default\" collapsed=\"on\"][et_pb_fullwidth_header _builder_version=\"4.18.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_color=\"RGBA(255,255,255,0)\" hover_enabled=\"0\" sticky_enabled=\"0\" admin_label=\"Fullwidth Header\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\" collapsed=\"off\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_css_main_element=\"width: 75%!important\" global_colors_info=\"{}\"][et_pb_post_content _builder_version=\"4.18.0\" _module_preset=\"default\" header_text_color=\"#211865\" header_2_text_color=\"#211865\" header_3_text_color=\"#211865\" header_4_text_color=\"#211865\" header_5_text_color=\"#211865\" header_6_text_color=\"#211865\" custom_padding=\"0px||100px||false|false\" global_colors_info=\"{}\"][/et_pb_post_content][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.18.0\" _module_preset=\"default\" custom_css_main_element=\"width: 25%!important\" global_colors_info=\"{}\"][et_pb_image src=\"https://thelomad.com/getmad.today/wp-content/uploads/2022/09/Melissa-and-James-backtoback-1000x667-1.jpg\" title_text=\"Melissa-and-James-backtoback-1000x667\" align=\"center\" force_fullwidth=\"on\" admin_label=\"JBC + MAD Sidebar\" _builder_version=\"4.18.0\" _module_preset=\"default\" background_enable_image=\"off\" module_alignment=\"center\" custom_margin=\"||||false|false\" custom_padding=\"||0px|29px|false|false\" sticky_limit_top=\"row\" sticky_limit_bottom=\"row\" global_colors_info=\"{}\"][/et_pb_image][et_pb_sidebar area=\"et_pb_widget_area_1\" admin_label=\"LOMAD Sidebar 2\" module_class=\"fl-sidebar fl-lightlinks\" _builder_version=\"4.18.0\" header_font=\"|600|||||||\" header_text_align=\"left\" header_text_color=\"#ffffff\" header_font_size=\"35px\" body_font=\"Playfair Display||||||||\" body_font_size=\"17px\" background_color=\"#211865\" custom_margin=\"50px|-45px|||false|false\" custom_margin_tablet=\"20px||||false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"20px|45px|20px|0px|true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" sticky_limit_top=\"row\" sticky_limit_bottom=\"row\" scroll_vertical_motion=\"19|63|63|100|4|0|-4\" header_font_size_tablet=\"30px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_color_right_tablet=\"\" border_color_right_phone=\"\" border_color_right_last_edited=\"on|desktop\" box_shadow_style=\"preset1\" box_shadow_vertical=\"0px\" box_shadow_blur=\"0px\" box_shadow_spread=\"3px\" box_shadow_color=\"#211865\" saved_tabs=\"all\" global_colors_info=\"{}\"][/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.18.0\" _module_preset=\"default\" collapsed=\"on\"][et_pb_fullwidth_header _builder_version=\"4.18.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_color=\"RGBA(255,255,255,0)\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section]','Contact - No short form in footer','','publish','open','closed','','specific-pages-workers-compensation-team','','','2022-09-20 14:15:17','2022-09-20 18:15:17','',0,'https://thelomad.com/getmad.today/blog/et_body_layout/specific-pages-workers-compensation-team/',0,'et_body_layout','',0),(51419,1,'2022-09-20 13:19:16','2022-09-20 17:19:16','','2017CaseLawUpdate','','inherit','closed','closed','','2017caselawupdate','','','2022-09-20 13:19:16','2022-09-20 17:19:16','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2017CaseLawUpdate.pdf',0,'attachment','application/pdf',0),(51420,1,'2022-09-20 13:19:18','2022-09-20 17:19:18','','2018CaseLawUpdate','','inherit','closed','closed','','2018caselawupdate','','','2022-09-20 13:19:18','2022-09-20 17:19:18','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2018CaseLawUpdate.pdf',0,'attachment','application/pdf',0),(51421,1,'2022-09-20 13:19:20','2022-09-20 17:19:20','','2019CaseLawUpdate','','inherit','closed','closed','','2019caselawupdate','','','2022-09-20 13:19:20','2022-09-20 17:19:20','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2019CaseLawUpdate.pdf',0,'attachment','application/pdf',0),(51422,1,'2022-09-20 13:19:23','2022-09-20 17:19:23','','2020CaseLawUpdate','','inherit','closed','closed','','2020caselawupdate','','','2022-09-20 13:19:23','2022-09-20 17:19:23','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2020CaseLawUpdate.pdf',0,'attachment','application/pdf',0),(51423,1,'2022-09-20 13:19:24','2022-09-20 17:19:24','','2021CaseLawUpdate','','inherit','closed','closed','','2021caselawupdate','','','2022-09-20 13:19:24','2022-09-20 17:19:24','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2021CaseLawUpdate.pdf',0,'attachment','application/pdf',0),(51424,1,'2022-09-20 13:19:26','2022-09-20 17:19:26','','2016CaseLawUpdate','','inherit','closed','closed','','2016caselawupdate','','','2022-09-20 13:19:26','2022-09-20 17:19:26','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2016CaseLawUpdate.pdf',0,'attachment','application/pdf',0),(51426,1,'2022-09-20 13:24:13','2022-09-20 17:24:13','','2018 Case Law Update - Cover','','inherit','closed','closed','','2018-case-law-update-cover','','','2022-09-20 13:24:13','2022-09-20 17:24:13','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2018-Case-Law-Update-Cover.png',0,'attachment','image/png',0),(51427,1,'2022-09-20 13:24:15','2022-09-20 17:24:15','','2017 Case Law Update - Cover','','inherit','closed','closed','','2017-case-law-update-cover','','','2022-09-20 13:24:15','2022-09-20 17:24:15','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2017-Case-Law-Update-Cover.png',0,'attachment','image/png',0),(51428,1,'2022-09-20 13:24:16','2022-09-20 17:24:16','','2016 Case Law Update - Cover','','inherit','closed','closed','','2016-case-law-update-cover','','','2022-09-20 13:24:16','2022-09-20 17:24:16','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2016-Case-Law-Update-Cover.png',0,'attachment','image/png',0),(51429,1,'2022-09-20 13:24:19','2022-09-20 17:24:19','','2021 Case Law Update - Cover','','inherit','closed','closed','','2021-case-law-update-cover','','','2022-09-20 13:24:19','2022-09-20 17:24:19','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2021-Case-Law-Update-Cover.png',0,'attachment','image/png',0),(51430,1,'2022-09-20 13:24:20','2022-09-20 17:24:20','','2020 Case Law Update - Cover','','inherit','closed','closed','','2020-case-law-update-cover','','','2022-09-20 13:24:20','2022-09-20 17:24:20','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2020-Case-Law-Update-Cover.png',0,'attachment','image/png',0),(51431,1,'2022-09-20 13:24:22','2022-09-20 17:24:22','','2019 Case Law Update - Cover','','inherit','closed','closed','','2019-case-law-update-cover','','','2022-09-20 13:24:22','2022-09-20 17:24:22','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/2019-Case-Law-Update-Cover.png',0,'attachment','image/png',0),(51461,1,'2022-09-23 08:59:06','2022-09-23 12:59:06','','MinorityAndWomenCertificate-1','','inherit','closed','closed','','minorityandwomencertificate-1','','','2022-09-23 08:59:06','2022-09-23 12:59:06','',0,'https://thelomad.com/getmad.today/wp-content/uploads/2022/09/MinorityAndWomenCertificate-1.pdf',0,'attachment','application/pdf',0),(51465,1,'2022-10-10 14:59:03','0000-00-00 00:00:00','Anyone else annoyed by claimants who were directed to wean two years ago that now <em>continually</em> file PARs for opioids?\n\nWe did it!  We were successful in obtaining a finding that the claimant should be weaned off their opioid narcotics.  In some cases, the treating doctor even agreed that the claimant should not be on the opioid narcotic medications and should be weaned.  Per usual, the carrier is directed to pay for the opioid narcotics during the weaning period.  We may even have a Board Panel Decision affirming this decision.\n\nHowever, it’s not the end of the story:  the doctor just decides he is not going to comply, or the claimant engages in a series of jumping doctors to thwart weaning, or the claimant starts billing the opioid narcotics through private insurance or Medicare but continues to bill you for the monthly visits to obtain the medications.  Add to that the PAR process which is onerous with quick turnarounds and level 3 reviews that are slipping past the MDO where the previously weaning direction is ignored.  All this negates successful litigation efforts and expense.\n\nSo, what can we do?  One thing we can do is object through C-8.1Bs to the treatment by the treating provider who is neither complying with the guidelines and the prior direction. The objection is for any treatment where the prescription opioid continues to be prescribed.  You can object even if it is just an office visit, even if there is other treatment provided, even if the provider is billing the opioids to another insurance carrier or there is self-pay.  If part of the office visit is prescribing the inappropriate medication, you need to object.  The objection on the C-8.1B should be outside the MTGs (#13), requires for treatment was denied (#3-F.3.e.iv is a good option), other (#12 with a citation to the NOD/MBPD directing weaning that the doctor is not following), and it may also be unrelated (if it is going to another carrier- because then it’s unrelated or fraudulent).\n\nTypically, there will then be a Proposed Decision finding this bill for the provider.  We will then need to object and present our arguments and caselaw at the hearing.  Typically, this has been successful.  In one case, the WCLJ actually refused to find the claimant “not responsible” because they had switched doctors to avoid the weaning.  Some of the WCLJs have mitigated and found the first set of C-8.1Bs for the provider with a notation in the NOD that the carrier is not responsible for any further office visits where the opioids are prescribed.','Navigating the Board\'s PARS System for Opioids','','draft','closed','closed','','','','','2022-10-10 14:59:03','2022-10-10 18:59:03','',0,'https://thelomad.com/getmad.today/?p=51465',0,'post','',0);
/*!40000 ALTER TABLE `cuB_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_redirection_404`
--

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

--
-- Dumping data for table `cuB_redirection_404`
--

LOCK TABLES `cuB_redirection_404` WRITE;
/*!40000 ALTER TABLE `cuB_redirection_404` DISABLE KEYS */;
INSERT INTO `cuB_redirection_404` VALUES (218060,'2025-06-12 18:21:36','/.git/config','https://thelomad.com/getmad.today','Mozilla/5.0 (webOS/1.3; U; en-US) AppleWebKit/525.27.1 (KHTML, like Gecko) Version/1.0 Safari/525.27.1 Desktop/1.0',NULL,404,'GET',NULL,''),(218061,'2025-06-12 18:21:45','/.git/config','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(218062,'2025-06-12 18:21:46','/.git/config','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:35.0) Gecko/20100101 Firefox/35.0',NULL,404,'GET',NULL,''),(218063,'2025-06-12 18:39:35','/.git/config','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36',NULL,404,'GET',NULL,''),(218064,'2025-06-12 18:42:50','/.git/config','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3835.0 Safari/537.36',NULL,404,'GET',NULL,''),(218065,'2025-06-12 18:42:51','/.git/config','http://thelomad.com/getmad.today','W3C_Validator/1.305.2.12 libwww-perl/5.64',NULL,404,'GET',NULL,''),(218066,'2025-06-14 04:24:29','/config.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11',NULL,404,'GET',NULL,''),(218067,'2025-06-14 04:24:48','/wp-content/plugins/divi-blurb-extended/readme.txt','http://thelomad.com/getmad.today','python-requests/2.32.3',NULL,404,'GET',NULL,''),(218068,'2025-06-14 04:24:54','/wp-content/themes/Divi/readme.txt','http://thelomad.com/getmad.today','python-requests/2.32.3',NULL,404,'GET',NULL,''),(218069,'2025-06-14 04:27:00','/config.json','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11',NULL,404,'GET',NULL,''),(218070,'2025-06-14 04:27:22','/wp-content/plugins/divi-blurb-extended/readme.txt','https://thelomad.com/getmad.today','python-requests/2.32.3',NULL,404,'GET',NULL,''),(218071,'2025-06-15 22:28:01','/wp-content/plugins/payu-india/readme.txt','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.1.2.3 Safari/537.36 Edg/121.0.623.86',NULL,404,'GET',NULL,''),(218072,'2025-06-16 01:58:04','/@vite/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218073,'2025-06-16 01:58:06','/actuator/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218074,'2025-06-16 01:58:08','/server','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218075,'2025-06-16 01:58:10','/.vscode/sftp.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218076,'2025-06-16 01:58:14','/debug/default/view?panel=config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218077,'2025-06-16 01:58:16','/v2/_catalog','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218078,'2025-06-16 01:58:18','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218079,'2025-06-16 01:58:20','/server-status','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218080,'2025-06-16 01:58:22','/login.action','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218081,'2025-06-16 01:58:24','/_all_dbs','https://thelomad.com/getmad.today','Mozilla/5.0 (l9scan/2.0.534313e2132323e2034323e2236313; +https://leakix.net)',NULL,404,'GET',NULL,''),(218082,'2025-06-16 01:58:26','/.DS_Store','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218083,'2025-06-16 01:58:28','/.env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218084,'2025-06-16 01:58:30','/.git/config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218085,'2025-06-16 01:58:32','/s/534313e2132323e2034323e2236313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218086,'2025-06-16 01:58:34','/config.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218087,'2025-06-16 01:58:35','/telescope/requests','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218088,'2025-06-16 01:58:37','/info.php','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218089,'2025-06-16 08:34:11','/ads.txt','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64; rv:137.0) Gecko/20100101 Firefox/137.0',NULL,404,'GET',NULL,''),(218090,'2025-06-16 08:34:17','/ads.txt','https://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64; rv:137.0) Gecko/20100101 Firefox/137.0',NULL,404,'GET',NULL,''),(218091,'2025-06-16 14:23:48','/wp-config.php.tmp','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7',NULL,404,'GET',NULL,''),(218092,'2025-06-16 14:23:49','/wp-config.tmp','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',NULL,404,'GET',NULL,''),(218093,'2025-06-16 14:23:49','/wp-config.php.orig','https://thelomad.com/getmad.today','Mozilla/5.0 (Mobile; Windows Phone 8.1; Android 4.0; ARM; Trident/7.0; Touch; rv:11.0; IEMobile/11.0; NOKIA; Lumia 930) like iPhone OS 7_0_3 Mac OS X AppleWebKit/537 (KHTML, like Gecko) Mobile Safari/537',NULL,404,'GET',NULL,''),(218094,'2025-06-16 14:23:49','/wp-config.php.bak','https://thelomad.com/getmad.today','Mozilla/5.0 (BlackBerry; U; BlackBerry 9850; en-US) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.115 Mobile Safari/534.11+',NULL,404,'GET',NULL,''),(218095,'2025-06-16 14:23:49','/wp-config.orig','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',NULL,404,'GET',NULL,''),(218096,'2025-06-16 14:23:52','/wp-config.php.copy','https://thelomad.com/getmad.today','Mozilla/5.0 (iPad; CPU OS 9_3_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13F69 Safari/601.1',NULL,404,'GET',NULL,''),(218097,'2025-06-16 14:23:53','/wp-config.txt','https://thelomad.com/getmad.today','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:50.0) Gecko/20100101 Firefox/50.0',NULL,404,'GET',NULL,''),(218098,'2025-06-16 14:23:53','/wp-config.old','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9',NULL,404,'GET',NULL,''),(218099,'2025-06-16 14:23:53','/wp-config.php.swp','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 7.0; SM-J730GM Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.111 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(218100,'2025-06-16 14:23:54','/wp-config.php.bck','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; NetCast; U) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.79 Safari/537.4 SmartTV/4.6',NULL,404,'GET',NULL,''),(218101,'2025-06-16 14:23:56','/wp-config.bak','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko',NULL,404,'GET',NULL,''),(218102,'2025-06-16 14:23:57','/wp-config.backup','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0.1 Safari/602.2.14',NULL,404,'GET',NULL,''),(218103,'2025-06-16 14:23:57','/wp-config.php.txt','https://thelomad.com/getmad.today','Mozilla/5.0 (Series40; Nokia2055/03.20; Profile/MIDP-2.1 Configuration/CLDC-1.1) Gecko/20100401 S40OviBrowser/5.0.0.0.31',NULL,404,'GET',NULL,''),(218104,'2025-06-16 14:23:57','/wp-config.php.old','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',NULL,404,'GET',NULL,''),(218105,'2025-06-16 14:23:58','/wp-config.copy','https://thelomad.com/getmad.today','BlackBerry8520/4.6.1.314 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/600',NULL,404,'GET',NULL,''),(218106,'2025-06-16 14:24:01','/wp-config.php.3','https://thelomad.com/getmad.today','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(218107,'2025-06-16 14:24:01','/wp-config.original','https://thelomad.com/getmad.today','Mozilla/5.0 (iPad; CPU OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(218108,'2025-06-16 14:24:02','/wp-config.php.backup','https://thelomad.com/getmad.today','Mozilla/5.0 (iPad; CPU OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(218109,'2025-06-16 14:24:04','/wp-config.php~','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.2 Safari/605.1.15',NULL,404,'GET',NULL,''),(218110,'2025-06-16 14:24:05','/wp-config.php_bak','https://thelomad.com/getmad.today','Mozilla/5.0 (iPad; CPU OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(218111,'2025-06-16 14:24:05','/wp-config.php.original','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.2 Safari/605.1.15',NULL,404,'GET',NULL,''),(218112,'2025-06-16 14:24:06','/wp-config.php.2','https://thelomad.com/getmad.today','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1',NULL,404,'GET',NULL,''),(218113,'2025-06-16 14:24:07','/wp-content/tmp','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 4.4.2; Nexus 4 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.114 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(218114,'2025-06-16 14:24:08','/wp-content/plugins/ninja-forms-conditionals/','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:30.0) Gecko/20100101 Firefox/30.0','https://thelomad.com/getmad.today/wp-content/plugins/ninja-forms-conditionals',404,'GET',NULL,''),(218115,'2025-06-16 14:24:09','/wp-config.back','https://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',NULL,404,'GET',NULL,''),(218116,'2025-06-16 14:24:09','/wp-config.php.1','https://thelomad.com/getmad.today','BlackBerry8520/4.6.1.272 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/120',NULL,404,'GET',NULL,''),(218117,'2025-06-16 14:24:10','/wp-content/themes/divi','https://thelomad.com/getmad.today','Mozilla/5.0 (iPhone; CPU iPhone OS 11_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(218118,'2025-06-16 14:24:11','/wp-config.php.back','https://thelomad.com/getmad.today','Mozilla/5.0 (iPad; CPU OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(218119,'2025-06-16 14:24:12','/wp-content/plugins/ninja-forms-multi-part/','https://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','https://thelomad.com/getmad.today/wp-content/plugins/ninja-forms-multi-part',404,'GET',NULL,''),(218120,'2025-06-16 14:24:13','/wp-content/plugins/breadcrumbs-divi-module/','https://thelomad.com/getmad.today','Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E188a Safari/601.1','https://thelomad.com/getmad.today/wp-content/plugins/breadcrumbs-divi-module',404,'GET',NULL,''),(218121,'2025-06-16 14:24:14','/wp-content/plugins/depicter/','https://thelomad.com/getmad.today','Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E188a Safari/601.1','https://thelomad.com/getmad.today/wp-content/plugins/depicter',404,'GET',NULL,''),(218122,'2025-06-16 14:24:15','/wp-content/uploads/','https://thelomad.com/getmad.today','BlackBerry7520/4.0.0 Profile/MIDP-2.0 Configuration/CLDC-1.1 UP.Browser/5.0.3.3 UP.Link/5.1.2.12 (Google WAP Proxy/1.0)','https://thelomad.com/getmad.today/wp-content/uploads',404,'GET',NULL,''),(218123,'2025-06-16 14:24:15','/wp-content/plugins/addons-for-divi/','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 5.1; HUAWEI CUN-L22 Build/HUAWEICUN-L22; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/62.0.3202.84 Mobile Safari/537.36','https://thelomad.com/getmad.today/wp-content/plugins/addons-for-divi',404,'GET',NULL,''),(218124,'2025-06-16 14:24:16','/wp-content/plugins/ninja-forms-style/','https://thelomad.com/getmad.today','Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4','https://thelomad.com/getmad.today/wp-content/plugins/ninja-forms-style',404,'GET',NULL,''),(218125,'2025-06-16 14:24:16','/wp-includes/','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','https://thelomad.com/getmad.today/wp-includes',404,'GET',NULL,''),(218126,'2025-06-16 21:30:30','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_443605491-1.jpg','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218127,'2025-06-16 21:32:41','/wp-content/uploads/2022/03/badge.jpg','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218128,'2025-06-16 21:33:41','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_209705558.jpeg','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218129,'2025-06-17 06:18:01','/.env','http://thelomad.com/getmad.today','python-requests/2.32.3',NULL,404,'GET',NULL,''),(218130,'2025-06-17 06:18:03','/.env','http://thelomad.com/getmad.today','python-requests/2.32.3',NULL,404,'GET',NULL,''),(218131,'2025-06-17 06:18:05','/.env.example','http://thelomad.com/getmad.today','python-requests/2.32.3',NULL,404,'GET',NULL,''),(218132,'2025-06-17 06:18:09','/.env.example','http://thelomad.com/getmad.today','python-requests/2.32.3',NULL,404,'GET',NULL,''),(218133,'2025-06-17 14:48:00','/login','https://thelomad.com/getmad.today','Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)',NULL,404,'GET',NULL,''),(218134,'2025-06-19 04:06:20','/wp-content/uploads/2022/03/badge.jpg','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com)',NULL,404,'GET',NULL,''),(218135,'2025-06-20 00:40:29','/@vite/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218136,'2025-06-20 00:40:31','/actuator/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218137,'2025-06-20 00:40:33','/server','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218138,'2025-06-20 00:40:34','/.vscode/sftp.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218139,'2025-06-20 00:40:37','/debug/default/view?panel=config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218140,'2025-06-20 00:40:39','/v2/_catalog','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218141,'2025-06-20 00:40:41','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218142,'2025-06-20 00:40:43','/server-status','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218143,'2025-06-20 00:40:45','/login.action','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218144,'2025-06-20 00:40:46','/_all_dbs','https://thelomad.com/getmad.today','Mozilla/5.0 (l9scan/2.0.534313e2132323e2034323e2236313; +https://leakix.net)',NULL,404,'GET',NULL,''),(218145,'2025-06-20 00:40:48','/.DS_Store','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218146,'2025-06-20 00:40:50','/.env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218147,'2025-06-20 00:40:52','/.git/config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218148,'2025-06-20 00:40:53','/s/534313e2132323e2034323e2236313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218149,'2025-06-20 00:40:55','/config.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218150,'2025-06-20 00:40:57','/telescope/requests','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218151,'2025-06-20 00:40:58','/info.php','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218152,'2025-06-20 13:52:37','/wp-content/plugins/fix/up.php','http://thelomad.com/getmad.today','Mozilla/5.0',NULL,404,'GET',NULL,''),(218153,'2025-06-20 13:52:39','/wp-content/plugins/fix/up.php','https://thelomad.com/getmad.today','Mozilla/5.0',NULL,404,'GET',NULL,''),(218154,'2025-06-20 19:56:25','/wp-content/themes/seotheme/db.php?u','http://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'GET',NULL,''),(218155,'2025-06-20 19:56:25','/wp-content/plugins/fix/up.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',NULL,404,'GET',NULL,''),(218156,'2025-06-20 19:56:25','/ALFA_DATA/alfacgiapi/perl.alfa','http://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(218157,'2025-06-20 19:56:26','/wp-plain.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(218158,'2025-06-20 19:56:33','/wp-content/themes/seotheme/db.php?u','http://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'GET',NULL,''),(218159,'2025-06-20 19:56:33','/wp-content/plugins/fix/up.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',NULL,404,'GET',NULL,''),(218160,'2025-06-20 19:56:34','/alfacgiapi/perl.alfa','http://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(218161,'2025-06-20 19:56:40','/wp-content/themes/seotheme/db.php?u','http://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'GET',NULL,''),(218162,'2025-06-20 19:56:41','/wp-content/plugins/fix/up.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',NULL,404,'GET',NULL,''),(218163,'2025-06-20 19:56:47','/wp-content/plugins/fix/up.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',NULL,404,'GET',NULL,''),(218164,'2025-06-20 19:56:47','/wp-content/themes/seotheme/db.php?u','http://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'GET',NULL,''),(218165,'2025-06-20 19:56:54','/wp-content/themes/seotheme/db.php?u','https://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'GET',NULL,''),(218166,'2025-06-20 19:56:59','/wp-content/plugins/apikey/apikey.php?test=hello','https://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(218167,'2025-06-20 19:57:02','/plugins/content/apismtp/apismtp.php?test=hello','https://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(218168,'2025-06-20 19:57:04','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(218169,'2025-06-20 19:57:06','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(218170,'2025-06-21 18:47:27','/wp-content/plugins/wp-job-portal/readme.txt','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/529.36 (KHTML, like Gecko) Chrome/120.1.2.3 Safari/537.36 Edg/121.0.2221.86',NULL,404,'GET',NULL,''),(218171,'2025-06-22 01:16:35','/@vite/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218172,'2025-06-22 01:16:37','/actuator/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218173,'2025-06-22 01:16:40','/server','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218174,'2025-06-22 01:16:42','/.vscode/sftp.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218175,'2025-06-22 01:16:47','/debug/default/view?panel=config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218176,'2025-06-22 01:16:49','/v2/_catalog','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218177,'2025-06-22 01:16:51','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218178,'2025-06-22 01:16:53','/server-status','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218179,'2025-06-22 01:16:56','/login.action','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218180,'2025-06-22 01:16:58','/_all_dbs','https://thelomad.com/getmad.today','Mozilla/5.0 (l9scan/2.0.534313e2132323e2034323e2236313; +https://leakix.net)',NULL,404,'GET',NULL,''),(218181,'2025-06-22 01:17:00','/.DS_Store','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218182,'2025-06-22 01:17:03','/.env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218183,'2025-06-22 01:17:06','/.git/config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218184,'2025-06-22 01:17:08','/s/534313e2132323e2034323e2236313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218185,'2025-06-22 01:17:11','/config.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218186,'2025-06-22 01:17:13','/telescope/requests','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218187,'2025-06-22 01:17:15','/info.php','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218188,'2025-06-23 01:32:51','/.env','https://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',NULL,404,'GET',NULL,''),(218189,'2025-06-23 05:52:32','/.env','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36',NULL,404,'GET',NULL,''),(218190,'2025-06-23 05:52:39','/.env','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',NULL,404,'GET',NULL,''),(218191,'2025-06-23 05:56:38','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/09/Crossword-EXF-Puzzle-and-Clues.png','https://thelomad.com/getmad.today','Mozilla/5.0 (compatible; imageSpider; scrapedia-receive@bytedance.com)',NULL,404,'GET',NULL,''),(218192,'2025-06-24 04:23:08','/@vite/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218193,'2025-06-24 04:23:10','/actuator/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218194,'2025-06-24 04:23:12','/server','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218195,'2025-06-24 04:23:13','/.vscode/sftp.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218196,'2025-06-24 04:23:17','/debug/default/view?panel=config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218197,'2025-06-24 04:23:20','/v2/_catalog','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218198,'2025-06-24 04:23:22','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218199,'2025-06-24 04:23:24','/server-status','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218200,'2025-06-24 04:23:25','/login.action','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218201,'2025-06-24 04:23:27','/_all_dbs','https://thelomad.com/getmad.today','Mozilla/5.0 (l9scan/2.0.534313e2132323e2034323e2236313; +https://leakix.net)',NULL,404,'GET',NULL,''),(218202,'2025-06-24 04:23:29','/.DS_Store','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218203,'2025-06-24 04:23:32','/.env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218204,'2025-06-24 04:23:34','/.git/config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218205,'2025-06-24 04:23:36','/s/534313e2132323e2034323e2236313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218206,'2025-06-24 04:23:38','/config.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218207,'2025-06-24 04:23:40','/telescope/requests','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218208,'2025-06-24 04:23:42','/info.php','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218209,'2025-06-25 07:28:49','/owa/auth/errorFE.aspx?httpCode=500','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',NULL,404,'GET',NULL,''),(218210,'2025-06-25 07:29:05','/owa/auth/errorFE.aspx?httpCode=500','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36','https://www.thelomad.com/getmad.today/owa/auth/errorFE.aspx?httpCode=500',404,'GET',NULL,''),(218211,'2025-06-25 07:29:14','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',NULL,404,'GET',NULL,''),(218212,'2025-06-25 07:29:21','/owa/auth/logon.aspx','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',NULL,404,'GET',NULL,''),(218213,'2025-06-25 07:29:32','/owa/auth/logon.aspx','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36','https://www.thelomad.com/getmad.today/owa/auth/logon.aspx',404,'GET',NULL,''),(218214,'2025-06-25 07:31:44','/version','https://thelomad.com/getmad.today','python-urllib3/2.3.0',NULL,404,'GET',NULL,''),(218215,'2025-06-25 07:31:54','/api/v1/pods','https://thelomad.com/getmad.today','python-urllib3/2.3.0',NULL,404,'GET',NULL,''),(218216,'2025-06-25 07:31:58','/wsman','http://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',NULL,404,'POST',NULL,''),(218217,'2025-06-25 07:31:58','/wsman','http://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',NULL,404,'POST',NULL,''),(218218,'2025-06-25 07:32:02','/RDWeb','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',NULL,404,'GET',NULL,''),(218219,'2025-06-25 07:32:05','/wsman','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',NULL,404,'POST',NULL,''),(218220,'2025-06-25 07:32:07','/wsman','https://www.thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',NULL,404,'POST',NULL,''),(218221,'2025-06-25 07:32:07','/dana-na/nc/nc_gina_ver.txt','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',NULL,404,'GET',NULL,''),(218222,'2025-06-25 07:32:30','/WebInterface/login.html','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218223,'2025-06-25 07:32:33','/_adminer.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218224,'2025-06-25 07:32:37','/_all_dbs','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218225,'2025-06-25 07:32:39','/deployment-config.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218226,'2025-06-25 07:32:42','/.ftpconfig','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218227,'2025-06-25 07:32:47','/_phpmyadmin/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218228,'2025-06-25 07:32:48','/.remote-sync.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218229,'2025-06-25 07:32:53','/account','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218230,'2025-06-25 07:32:55','/.vscode/ftp-sync.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218231,'2025-06-25 07:32:57','/.vscode/sftp.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218232,'2025-06-25 07:33:03','/admin','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218233,'2025-06-25 07:33:03','/sftp-config.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218234,'2025-06-25 07:33:05','/.idea/WebServers.xml','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218235,'2025-06-25 07:33:11','/admin.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218236,'2025-06-25 07:33:12','/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218237,'2025-06-25 07:33:19','/admin/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218238,'2025-06-25 07:33:22','/auth.html','http://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',NULL,404,'GET',NULL,''),(218239,'2025-06-25 07:33:26','/admin/index.html','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218240,'2025-06-25 07:33:27','/auth1.html','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',NULL,404,'GET',NULL,''),(218241,'2025-06-25 07:33:33','/Remote','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',NULL,404,'GET',NULL,''),(218242,'2025-06-25 07:33:33','/admin/login','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218243,'2025-06-25 07:33:35','/.git/config','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218244,'2025-06-25 07:33:41','/.svn/entries','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218245,'2025-06-25 07:33:42','/sslvpnLogin.html','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',NULL,404,'GET',NULL,''),(218246,'2025-06-25 07:33:43','/admin/login.html','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218247,'2025-06-25 07:33:48','/api/sonicos/auth','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',NULL,404,'GET',NULL,''),(218248,'2025-06-25 07:33:49','/.hg/hgrc','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218249,'2025-06-25 07:33:52','/.bzr/branch/branch.conf','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218250,'2025-06-25 07:33:56','/admin/login/?next=/admin/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218251,'2025-06-25 07:33:56','/api/sonicos/tfa','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',NULL,404,'GET',NULL,''),(218252,'2025-06-25 07:34:00','/cvsroot/config','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218253,'2025-06-25 07:34:04','/admin/phpmyadmin/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218254,'2025-06-25 07:34:09','/admin/spider.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218255,'2025-06-25 07:34:10','/administrator/components/com_joommyadmin/phpmyadmin/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218256,'2025-06-25 07:34:11','/dana-na/nc/nc_gina_ver.txt','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218257,'2025-06-25 07:34:13','/aims/ps/default.aspx','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218258,'2025-06-25 07:34:17','/bitrix/admin/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218259,'2025-06-25 07:34:22','/CFIDE/componentutils/login.cfm','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218260,'2025-06-25 07:34:26','/VirtualEms/Login.aspx','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218261,'2025-06-25 07:34:49','/common_page/login.html','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218262,'2025-06-25 07:34:54','/sitecore/admin/login.aspx','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218263,'2025-06-25 07:34:57','/.axiom/accounts/do.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218264,'2025-06-25 07:34:59','/solr/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218265,'2025-06-25 07:35:04','/.tugboat','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218266,'2025-06-25 07:35:05','/concerto/Login?goto=Central','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218267,'2025-06-25 07:35:09','/sphider/admin/admin.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218268,'2025-06-25 07:35:12','/.dockercfg','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218269,'2025-06-25 07:35:13','/login.jsp','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218270,'2025-06-25 07:35:21','/sql.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218271,'2025-06-25 07:35:21','/.docker/config.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218272,'2025-06-25 07:35:21','/mifs/c/d/android.html','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218273,'2025-06-25 07:35:30','/m_login.htm','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218274,'2025-06-25 07:35:31','/nagiosfusion/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218275,'2025-06-25 07:35:32','/glpi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218276,'2025-06-25 07:35:39','/mysql.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218277,'2025-06-25 07:35:40','/pagespeed_admin/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218278,'2025-06-25 07:35:43','/tiki-login.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218279,'2025-06-25 07:35:48','/html/setup.html','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218280,'2025-06-25 07:35:48','/home.html','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218281,'2025-06-25 07:35:51','/plc/webvisu.htm','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218282,'2025-06-25 07:35:55','/web/phpmyadmin/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218283,'2025-06-25 07:35:56','/jsp/index.jsp','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218284,'2025-06-25 07:35:59','/weblogin.htm','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218285,'2025-06-25 07:36:03','/www/start.html','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218286,'2025-06-25 07:36:04','/wp-content/plugins/adminer/adminer.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218287,'2025-06-25 07:36:05','/xampp/phpmyadmin/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218288,'2025-06-25 07:36:07','/sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html?saml2=disabled','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218289,'2025-06-25 07:36:11','/zdm/login_xdm_uc.jsp','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218290,'2025-06-25 07:36:12','/minio/bootstrap/v1/verify','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'POST',NULL,''),(218291,'2025-06-25 07:36:13','/minio/bootstrap/v1/verify','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'POST',NULL,''),(218292,'2025-06-25 07:36:17','/apps/graphapi/vendor/microsoft/microsoft-graph/tests/GetPhpInfo.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218293,'2025-06-25 07:36:20','/api/v1/system/platform?operation=testConnectivity','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218294,'2025-06-25 07:36:25','/zipkin/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218295,'2025-06-25 07:36:26','/server.login.xsi','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218296,'2025-06-25 07:36:30','/install/kaseyalatestversion.xml','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218297,'2025-06-25 07:36:32','/fpui/jsp/login.jsp','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218298,'2025-06-25 07:36:34','/atg/bcc','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218299,'2025-06-25 07:36:45','/photo/editor.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218300,'2025-06-25 07:36:47','/sensorlist.htm','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218301,'2025-06-25 07:36:48','/zimbraAdmin','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218302,'2025-06-25 07:36:52','/adfs/ls/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218303,'2025-06-25 07:36:56','/sonicui/7/login/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218304,'2025-06-25 07:36:58','/zenworks/jsp/fw/internal/Login.jsp','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218305,'2025-06-25 07:37:04','/cloud','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218306,'2025-06-25 07:37:08','/geoserver/web','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218307,'2025-06-25 07:37:14','/login.jsf','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218308,'2025-06-25 07:37:24','/wlm/login','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218309,'2025-06-25 07:37:24','/identityiq/login.jsf','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218310,'2025-06-25 07:37:26','/wp-content/plugins/really-simple-ssl/readme.txt','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218311,'2025-06-25 07:37:30','/saml2','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218312,'2025-06-25 07:37:32','/php/ztp_gate.php/.js.map','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218313,'2025-06-25 07:37:33','/allversions','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218314,'2025-06-25 07:37:38','/api/v1/version','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218315,'2025-06-25 07:37:41','/wp-content/plugins/cleantalk-spam-protect/readme.txt','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,404,'GET',NULL,''),(218316,'2025-06-26 07:11:02','/@vite/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218317,'2025-06-26 07:11:04','/actuator/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218318,'2025-06-26 07:11:06','/server','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218319,'2025-06-26 07:11:08','/.vscode/sftp.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218320,'2025-06-26 07:11:12','/debug/default/view?panel=config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218321,'2025-06-26 07:11:14','/v2/_catalog','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218322,'2025-06-26 07:11:16','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218323,'2025-06-26 07:11:18','/server-status','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218324,'2025-06-26 07:11:20','/login.action','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218325,'2025-06-26 07:11:22','/_all_dbs','https://thelomad.com/getmad.today','Mozilla/5.0 (l9scan/2.0.534313e2132323e2034323e2236313; +https://leakix.net)',NULL,404,'GET',NULL,''),(218326,'2025-06-26 07:11:24','/.DS_Store','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218327,'2025-06-26 07:11:26','/.env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218328,'2025-06-26 07:11:28','/.git/config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218329,'2025-06-26 07:11:30','/s/534313e2132323e2034323e2236313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218330,'2025-06-26 07:11:32','/config.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218331,'2025-06-26 07:11:34','/telescope/requests','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218332,'2025-06-26 07:11:36','/info.php','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218333,'2025-06-26 08:28:20','/wp-plain.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(218334,'2025-06-26 08:28:20','/ALFA_DATA/alfacgiapi/perl.alfa','http://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(218335,'2025-06-26 08:28:21','/wp-content/themes/seotheme/db.php?u','http://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'GET',NULL,''),(218336,'2025-06-26 08:28:26','/wp-content/plugins/fix/up.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',NULL,404,'GET',NULL,''),(218337,'2025-06-26 08:28:29','/wp-content/themes/seotheme/db.php?u','http://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'GET',NULL,''),(218338,'2025-06-26 08:28:30','/wp-content/plugins/fix/up.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',NULL,404,'GET',NULL,''),(218339,'2025-06-26 08:28:32','/alfacgiapi/perl.alfa','http://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(218340,'2025-06-26 08:28:34','/wp-content/themes/seotheme/db.php?u','http://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'GET',NULL,''),(218341,'2025-06-26 08:28:35','/wp-content/plugins/fix/up.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',NULL,404,'GET',NULL,''),(218342,'2025-06-26 08:28:38','/wp-content/themes/seotheme/db.php?u','https://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'GET',NULL,''),(218343,'2025-06-26 08:28:40','/wp-content/plugins/apikey/apikey.php?test=hello','https://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(218344,'2025-06-26 08:28:42','/plugins/content/apismtp/apismtp.php?test=hello','https://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(218345,'2025-06-26 08:28:44','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(218346,'2025-06-26 08:28:46','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(218347,'2025-06-26 10:12:07','/wp-content/plugins/fix/up.php','http://thelomad.com/getmad.today','Mozilla/5.0',NULL,404,'GET',NULL,''),(218348,'2025-06-26 14:58:44','/wp-content/plugins/WordPressCore/include.php','https://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(218349,'2025-06-26 14:58:49','/wp-content/plugins/WordPressCore/include.php','https://thelomad.com/getmad.today','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(218350,'2025-06-28 04:13:36','/.env','https://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) konqueror/4.14.10 Safari/537.21',NULL,404,'GET',NULL,''),(218351,'2025-06-28 21:56:31','/.git/config','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.155 Safari/537.36 OPR/31.0.1889.174',NULL,404,'GET',NULL,''),(218352,'2025-06-29 02:07:35','/ALFA_DATA/alfacgiapi','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218353,'2025-06-29 02:13:31','/wp-admin/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218354,'2025-06-29 02:15:13','/wp-content/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218355,'2025-06-29 02:16:46','/wp-includes/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218356,'2025-06-29 02:17:19','/.well-known/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218357,'2025-06-29 02:18:47','/files/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218358,'2025-06-29 02:19:56','/images/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218359,'2025-06-29 02:21:30','/css/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218360,'2025-06-29 02:21:46','/wp-admin/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218361,'2025-06-29 02:23:11','/wp-admin/css/about.php/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218362,'2025-06-29 02:23:54','/wp-includes/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218363,'2025-06-29 02:25:35','/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218364,'2025-06-29 02:26:33','/tmp_images/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218365,'2025-06-29 02:27:16','/wp-content/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218366,'2025-06-29 02:28:26','/assets/upload/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218367,'2025-06-29 02:29:20','/blog/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218368,'2025-06-29 02:30:11','/wp/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218369,'2025-06-29 02:31:22','/wordpress/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218370,'2025-06-29 02:32:45','/components/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218371,'2025-06-29 02:33:20','/upload/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218372,'2025-06-29 02:34:47','/uploads/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218373,'2025-06-29 02:35:42','/cgi-bin/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218374,'2025-06-29 02:36:35','/wp-content/themes/seotheme/db.php?u','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218375,'2025-06-29 02:38:09','/Telerik.Web.UI.WebResource.axd?type=rau','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218376,'2025-06-29 02:39:18','/deployment-config.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218377,'2025-06-29 02:39:46','/sftp-config.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218378,'2025-06-29 02:40:45','/sftp.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218379,'2025-06-29 02:42:05','/.git/config','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218380,'2025-06-29 02:43:16','/.ftpconfig','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218381,'2025-06-29 02:43:34','/config.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218382,'2025-06-29 02:45:02','/.aws/credentials','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218383,'2025-06-29 02:46:23','/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218384,'2025-06-29 02:47:18','/api/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218385,'2025-06-29 02:47:37','/backend/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218386,'2025-06-29 02:48:36','/core/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218387,'2025-06-29 02:49:45','/config/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218388,'2025-06-29 02:50:19','/sftp.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218389,'2025-06-29 16:03:51','/ALFA_DATA/alfacgiapi','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','http://www.thelomad.com/getmad.today/ALFA_DATA/alfacgiapi',404,'GET',NULL,''),(218390,'2025-06-29 16:10:40','/wp-admin/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218391,'2025-06-29 16:14:20','/wp-content/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218392,'2025-06-29 16:16:09','/wp-includes/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218393,'2025-06-29 16:18:20','/.well-known/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218394,'2025-06-29 16:20:01','/files/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218395,'2025-06-29 16:22:24','/images/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218396,'2025-06-29 16:25:39','/css/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218397,'2025-06-29 16:26:56','/wp-admin/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218398,'2025-06-29 16:31:11','/wp-admin/css/about.php/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218399,'2025-06-29 16:33:11','/wp-includes/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218400,'2025-06-29 16:33:30','/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218401,'2025-06-29 16:36:04','/tmp_images/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218402,'2025-06-29 16:39:05','/wp-content/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218403,'2025-06-29 16:40:05','/assets/upload/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218404,'2025-06-29 16:41:43','/blog/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218405,'2025-06-29 16:45:17','/wp/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218406,'2025-06-29 16:45:36','/wordpress/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218407,'2025-06-29 16:48:57','/components/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218408,'2025-06-29 16:50:57','/upload/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218409,'2025-06-29 16:51:59','/uploads/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218410,'2025-06-29 16:53:43','/cgi-bin/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218411,'2025-06-29 16:56:59','/wp-content/themes/seotheme/db.php?u','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218412,'2025-06-29 16:59:25','/Telerik.Web.UI.WebResource.axd?type=rau','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218413,'2025-06-29 17:01:55','/deployment-config.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218414,'2025-06-29 17:03:24','/sftp-config.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218415,'2025-06-29 17:04:06','/sftp.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218416,'2025-06-29 17:07:12','/.git/config','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218417,'2025-06-29 17:07:37','/.ftpconfig','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218418,'2025-06-29 17:09:52','/config.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218419,'2025-06-29 17:11:49','/.aws/credentials','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218420,'2025-06-29 17:12:52','/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218421,'2025-06-29 17:15:38','/api/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218422,'2025-06-29 17:16:38','/backend/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218423,'2025-06-29 17:19:01','/core/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218424,'2025-06-29 17:19:46','/config/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218425,'2025-06-29 17:21:54','/sftp.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218426,'2025-06-30 05:04:43','/wp-config.php.back','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/15.15063',NULL,404,'GET',NULL,''),(218427,'2025-06-30 05:04:43','/wp-config.orig','https://thelomad.com/getmad.today','Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413',NULL,404,'GET',NULL,''),(218428,'2025-06-30 05:04:43','/wp-config.php.txt','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 6.2; WOW64; Trident/7.0; rv:11.0) like Gecko',NULL,404,'GET',NULL,''),(218429,'2025-06-30 05:04:43','/wp-config.php.copy','https://thelomad.com/getmad.today','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1',NULL,404,'GET',NULL,''),(218430,'2025-06-30 05:04:43','/wp-config.old','https://thelomad.com/getmad.today','Mozilla/5.0 (Mobile; Windows Phone 8.1; Android 4.0; ARM; Trident/7.0; Touch; rv:11.0; IEMobile/11.0; NOKIA; Lumia 920) like iPhone OS 7_0_3 Mac OS X AppleWebKit/537 (KHTML, like Gecko) Mobile Safari/537',NULL,404,'GET',NULL,''),(218431,'2025-06-30 05:04:46','/wp-config.txt','https://thelomad.com/getmad.today','Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B100 Safari/602.1',NULL,404,'GET',NULL,''),(218432,'2025-06-30 05:04:47','/wp-config.php.2','https://thelomad.com/getmad.today','Mozilla/5.0 (BlackBerry; U; BlackBerry 9310; en-US) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.1.0.477 Mobile Safari/534.11+',NULL,404,'GET',NULL,''),(218433,'2025-06-30 05:04:47','/wp-config.copy','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; U; Android 4.0.4; pt-br; MZ608 Build/7.7.1-141-7-FLEM-UMTS-LA) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30',NULL,404,'GET',NULL,''),(218434,'2025-06-30 05:04:47','/wp-config.php.original','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 6.0.1; CPH1607 Build/MMB29M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/63.0.3239.111 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(218435,'2025-06-30 05:04:48','/wp-config.php.swp','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.79 Safari/537.36 Edge/14.14393',NULL,404,'GET',NULL,''),(218436,'2025-06-30 05:04:50','/wp-config.php.3','https://thelomad.com/getmad.today','BlackBerry8520/5.0.0.592 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/168',NULL,404,'GET',NULL,''),(218437,'2025-06-30 05:04:51','/wp-content/themes/divi','https://thelomad.com/getmad.today','Mozilla/5.0 (Series30Plus; Nokia225/20.10.11; Profile/Series30Plus Configuration/Series30Plus) Gecko/20100401 S40OviBrowser/3.8.1.2.0612',NULL,404,'GET',NULL,''),(218438,'2025-06-30 05:04:51','/wp-config.php.tmp','https://thelomad.com/getmad.today','BlackBerry9500/5.0.0.425 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/120',NULL,404,'GET',NULL,''),(218439,'2025-06-30 05:04:51','/wp-config.tmp','https://thelomad.com/getmad.today','Mozilla/5.0 (compatible; MSIE 10.0; Windows Phone 8.0; Trident/6.0; IEMobile/10.0; ARM; Touch; NOKIA; Lumia 920)',NULL,404,'GET',NULL,''),(218440,'2025-06-30 05:04:52','/wp-config.php.bak','https://thelomad.com/getmad.today','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_2 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C202 Safari/604.1',NULL,404,'GET',NULL,''),(218441,'2025-06-30 05:04:55','/wp-config.backup','https://thelomad.com/getmad.today','Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaE63-1/510.21.010; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413',NULL,404,'GET',NULL,''),(218442,'2025-06-30 05:04:55','/wp-config.php_bak','https://thelomad.com/getmad.today','Dalvik/1.6.0 (Linux; U; Android 4.1.1; BroadSign Xpress 1.0.14 B- (720) Build/JRO03H)',NULL,404,'GET',NULL,''),(218443,'2025-06-30 05:04:56','/wp-config.php.backup','https://thelomad.com/getmad.today','Mozilla/5.0 (Mobile; Windows Phone 8.1; Android 4.0; ARM; Trident/7.0; Touch; rv:11.0; IEMobile/11.0; Microsoft; Lumia 640 XL LTE) like iPhone OS 7_0_3 Mac OS X AppleWebKit/537 (KHTML, like Gecko) Mobile Safari/537',NULL,404,'GET',NULL,''),(218444,'2025-06-30 05:04:57','/wp-config.php.1','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_1) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0.1 Safari/602.2.14',NULL,404,'GET',NULL,''),(218445,'2025-06-30 05:04:58','/wp-config.php.orig','https://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64; rv:57.0) Gecko/20100101 Firefox/57.0',NULL,404,'GET',NULL,''),(218446,'2025-06-30 05:04:59','/wp-config.original','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko',NULL,404,'GET',NULL,''),(218447,'2025-06-30 05:05:00','/wp-config.back','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36',NULL,404,'GET',NULL,''),(218448,'2025-06-30 05:05:00','/wp-content/tmp','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.2 Safari/605.1.15',NULL,404,'GET',NULL,''),(218449,'2025-06-30 05:05:02','/wp-config.php~','https://thelomad.com/getmad.today','Mozilla/5.0 (Mobile; Windows Phone 8.1; Android 4.0; ARM; Trident/7.0; Touch; rv:11.0; IEMobile/11.0; NOKIA; Lumia 925) like iPhone OS 7_0_3 Mac OS X AppleWebKit/537 (KHTML, like Gecko) Mobile Safari/537',NULL,404,'GET',NULL,''),(218450,'2025-06-30 05:05:04','/wp-config.php.old','https://thelomad.com/getmad.today','BlackBerry8520/5.0.0.592 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/173',NULL,404,'GET',NULL,''),(218451,'2025-06-30 05:05:04','/wp-config.bak','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; U; Android 4.0.4; en-us; GT-S6012 Build/IMM76D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30',NULL,404,'GET',NULL,''),(218452,'2025-06-30 05:05:04','/wp-config.php.bck','https://thelomad.com/getmad.today','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)',NULL,404,'GET',NULL,''),(218453,'2025-06-30 05:05:06','/wp-content/plugins/ninja-forms-conditionals/','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:54.0) Gecko/20100101 Firefox/54.0','https://thelomad.com/getmad.today/wp-content/plugins/ninja-forms-conditionals',404,'GET',NULL,''),(218454,'2025-06-30 05:05:08','/wp-content/plugins/depicter/','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 4.4.2; ASUS_T00J Build/KVT49L) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/30.0.0.0 Safari/537.36','https://thelomad.com/getmad.today/wp-content/plugins/depicter',404,'GET',NULL,''),(218455,'2025-06-30 05:05:08','/wp-content/plugins/addons-for-divi/','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0','https://thelomad.com/getmad.today/wp-content/plugins/addons-for-divi',404,'GET',NULL,''),(218456,'2025-06-30 05:05:08','/wp-includes/','https://thelomad.com/getmad.today','Mozilla/5.0 (compatible; MSIE 10.0; Windows Phone 8.0; Trident/6.0; IEMobile/10.0; ARM; Touch; NOKIA; 909)','https://thelomad.com/getmad.today/wp-includes',404,'GET',NULL,''),(218457,'2025-06-30 05:05:09','/wp-content/plugins/breadcrumbs-divi-module/','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','https://thelomad.com/getmad.today/wp-content/plugins/breadcrumbs-divi-module',404,'GET',NULL,''),(218458,'2025-06-30 05:05:10','/wp-content/plugins/ninja-forms-style/','https://thelomad.com/getmad.today','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0_2 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A421 Safari/604.1','https://thelomad.com/getmad.today/wp-content/plugins/ninja-forms-style',404,'GET',NULL,''),(218459,'2025-06-30 05:05:11','/wp-content/plugins/ninja-forms-multi-part/','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 6.0; CAM-L21 Build/HUAWEICAM-L21; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/62.0.3202.84 Mobile Safari/537.36','https://thelomad.com/getmad.today/wp-content/plugins/ninja-forms-multi-part',404,'GET',NULL,''),(218460,'2025-06-30 05:05:11','/wp-content/uploads/','https://thelomad.com/getmad.today','Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1','https://thelomad.com/getmad.today/wp-content/uploads',404,'GET',NULL,''),(218461,'2025-06-30 11:41:02','/@vite/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218462,'2025-06-30 11:41:04','/actuator/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218463,'2025-06-30 11:41:06','/server','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218464,'2025-06-30 11:41:08','/.vscode/sftp.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218465,'2025-06-30 11:41:12','/debug/default/view?panel=config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218466,'2025-06-30 11:41:14','/v2/_catalog','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218467,'2025-06-30 11:41:16','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218468,'2025-06-30 11:41:18','/server-status','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218469,'2025-06-30 11:41:20','/login.action','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218470,'2025-06-30 11:41:22','/_all_dbs','https://thelomad.com/getmad.today','Mozilla/5.0 (l9scan/2.0.534313e2132323e2034323e2236313; +https://leakix.net)',NULL,404,'GET',NULL,''),(218471,'2025-06-30 11:41:24','/.DS_Store','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218472,'2025-06-30 11:41:26','/.env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218473,'2025-06-30 11:41:28','/.git/config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218474,'2025-06-30 11:41:30','/s/534313e2132323e2034323e2236313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218475,'2025-06-30 11:41:32','/config.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218476,'2025-06-30 11:41:34','/telescope/requests','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218477,'2025-06-30 11:41:35','/info.php','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218478,'2025-06-30 20:38:39','/getmad.today/','https://www.getmad.today','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(218479,'2025-07-02 10:40:16','/@vite/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218480,'2025-07-02 10:40:18','/actuator/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218481,'2025-07-02 10:40:21','/server','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218482,'2025-07-02 10:40:23','/.vscode/sftp.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218483,'2025-07-02 10:40:27','/debug/default/view?panel=config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218484,'2025-07-02 10:40:29','/v2/_catalog','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218485,'2025-07-02 10:40:32','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218486,'2025-07-02 10:40:34','/server-status','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218487,'2025-07-02 10:40:36','/login.action','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218488,'2025-07-02 10:40:39','/_all_dbs','https://thelomad.com/getmad.today','Mozilla/5.0 (l9scan/2.0.534313e2132323e2034323e2236313; +https://leakix.net)',NULL,404,'GET',NULL,''),(218489,'2025-07-02 10:40:41','/.DS_Store','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218490,'2025-07-02 10:40:44','/.env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218491,'2025-07-02 10:40:46','/.git/config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218492,'2025-07-02 10:40:48','/s/534313e2132323e2034323e2236313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218493,'2025-07-02 10:40:50','/config.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218494,'2025-07-02 10:40:52','/telescope/requests','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218495,'2025-07-02 10:40:54','/info.php','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218496,'2025-07-02 13:11:25','/.env','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 9; SM-G950U1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(218497,'2025-07-02 21:22:13','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/11/Justice-WIlliams-300x300.jpg','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218498,'2025-07-02 21:25:00','/attorney/gould-andrew/','http://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218499,'2025-07-02 21:25:05','/attorney/machelor-kristin-m/','http://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218500,'2025-07-02 21:25:09','/attorney/huang-bingchen/','http://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218501,'2025-07-02 21:25:13','/attorney/diegelman-neil-a/','http://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218502,'2025-07-02 21:25:16','/attorney/shannon-brendan-t/','http://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218503,'2025-07-02 21:25:39','/attorney/cousins-james-b/','http://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218504,'2025-07-02 21:25:42','/attorney/christman-cassandra-e/','http://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218505,'2025-07-02 21:25:53','/attorney/gray-katrina/','http://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218506,'2025-07-02 21:25:57','/attorney/gould-andrew/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218507,'2025-07-02 21:26:00','/attorney/machelor-kristin-m/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218508,'2025-07-02 21:26:04','/attorney/huang-bingchen/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218509,'2025-07-02 21:26:07','/attorney/diegelman-neil-a/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218510,'2025-07-02 21:26:09','/attorney/shannon-brendan-t/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218511,'2025-07-02 21:26:12','/attorney/cousins-james-b/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218512,'2025-07-02 21:26:19','/attorney/christman-cassandra-e/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218513,'2025-07-02 21:26:22','/attorney/gray-katrina/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218514,'2025-07-02 21:26:35','/attorney/shannon-brendan-t/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218515,'2025-07-02 21:31:33','/attorney/prince-brian-k/','http://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218516,'2025-07-02 21:31:36','/attorney/prince-brian-k/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218517,'2025-07-02 21:31:39','/attorney/daly-melanie-a/','http://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218518,'2025-07-02 21:31:42','/attorney/daly-melanie-a/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218519,'2025-07-02 21:32:46','/wp-contentduplicate-3602675.findlaw5.flsitebuilder.com/attorney/buehler-vicki-l/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218520,'2025-07-02 21:57:31','/attorney/mackey-shannan-m-/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218521,'2025-07-02 21:57:32','/attorney/mackey-shannan-m-/','http://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218522,'2025-07-02 22:02:29','/.well-known/security.txt','https://thelomad.com/getmad.today','Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)',NULL,404,'GET',NULL,''),(218523,'2025-07-02 22:13:08','/attorney/day-melissa-a/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218524,'2025-07-02 22:25:22','/attorney/harada-satoko-suki/','http://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218525,'2025-07-02 22:25:25','/attorney/harada-satoko-suki/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218526,'2025-07-02 22:28:13','/attorney/kornacki-paul-b-/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218527,'2025-07-02 22:28:15','/attorney/kornacki-paul-b-/','http://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218528,'2025-07-02 23:29:09','/wp-contentvimeo.com/676362013','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218529,'2025-07-03 00:07:45','/.well-known/security.txt','https://thelomad.com/getmad.today','Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)',NULL,404,'GET',NULL,''),(218530,'2025-07-03 01:06:33','/wp-content/uploads/2022/03/badge.jpg','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com)','https://thelomad.com/getmad.today/',404,'GET',NULL,''),(218531,'2025-07-03 15:10:20','/lomad-test4/','https://www.getmad.today','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(218532,'2025-07-04 13:42:22','/@vite/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218533,'2025-07-04 13:42:24','/actuator/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218534,'2025-07-04 13:42:26','/server','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218535,'2025-07-04 13:42:28','/.vscode/sftp.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218536,'2025-07-04 13:42:32','/debug/default/view?panel=config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218537,'2025-07-04 13:42:34','/v2/_catalog','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218538,'2025-07-04 13:42:36','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218539,'2025-07-04 13:42:38','/server-status','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218540,'2025-07-04 13:42:40','/login.action','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218541,'2025-07-04 13:42:42','/_all_dbs','https://thelomad.com/getmad.today','Mozilla/5.0 (l9scan/2.0.534313e2132323e2034323e2236313; +https://leakix.net)',NULL,404,'GET',NULL,''),(218542,'2025-07-04 13:42:44','/.DS_Store','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218543,'2025-07-04 13:42:46','/.env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218544,'2025-07-04 13:42:47','/.git/config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218545,'2025-07-04 13:42:49','/s/534313e2132323e2034323e2236313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218546,'2025-07-04 13:42:51','/config.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218547,'2025-07-04 13:42:53','/telescope/requests','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218548,'2025-07-04 13:42:54','/info.php','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218549,'2025-07-05 18:54:49','/.git/config','https://thelomad.com/getmad.today','ct‑git‑scanner/0.4',NULL,404,'GET',NULL,''),(218550,'2025-07-05 18:54:51','/.git/config','https://thelomad.com/getmad.today','ct‑git‑scanner/0.4','https://www.thelomad.com/getmad.today/.git/config',404,'GET',NULL,''),(218551,'2025-07-05 18:54:52','/.git/HEAD','https://thelomad.com/getmad.today','ct‑git‑scanner/0.4',NULL,404,'GET',NULL,''),(218552,'2025-07-05 18:54:54','/.git/HEAD','https://thelomad.com/getmad.today','ct‑git‑scanner/0.4','https://www.thelomad.com/getmad.today/.git/HEAD',404,'GET',NULL,''),(218553,'2025-07-05 23:46:07','/.git/config','https://thelomad.com/getmad.today','ct‑git‑scanner/0.4',NULL,404,'GET',NULL,''),(218554,'2025-07-05 23:46:09','/.git/config','https://thelomad.com/getmad.today','ct‑git‑scanner/0.4','https://www.thelomad.com/getmad.today/.git/config',404,'GET',NULL,''),(218555,'2025-07-05 23:46:09','/.git/HEAD','https://thelomad.com/getmad.today','ct‑git‑scanner/0.4',NULL,404,'GET',NULL,''),(218556,'2025-07-05 23:46:12','/.git/HEAD','https://thelomad.com/getmad.today','ct‑git‑scanner/0.4','https://www.thelomad.com/getmad.today/.git/HEAD',404,'GET',NULL,''),(218557,'2025-07-06 04:13:10','/wp-content/plugins/booking-calendar/readme.txt','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.1.2.3 Safari/537.36 Edg/121.0.623.86',NULL,404,'GET',NULL,''),(218558,'2025-07-06 14:08:15','/ALFA_DATA/alfacgiapi','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218559,'2025-07-06 14:13:14','/wp-admin/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218560,'2025-07-06 14:17:52','/wp-content/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218561,'2025-07-06 14:21:40','/wp-includes/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218562,'2025-07-06 14:24:28','/.well-known/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218563,'2025-07-06 14:26:28','/files/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218564,'2025-07-06 14:30:18','/images/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218565,'2025-07-06 14:33:35','/css/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218566,'2025-07-06 14:35:55','/wp-admin/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218567,'2025-07-06 14:40:30','/wp-admin/css/about.php/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218568,'2025-07-06 14:43:24','/wp-includes/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218569,'2025-07-06 14:45:35','/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218570,'2025-07-06 14:49:01','/tmp_images/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218571,'2025-07-06 14:52:25','/wp-content/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218572,'2025-07-06 14:53:44','/assets/upload/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218573,'2025-07-06 14:57:56','/blog/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218574,'2025-07-06 15:00:29','/wp/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218575,'2025-07-06 15:02:30','/wordpress/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218576,'2025-07-06 15:05:23','/components/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218577,'2025-07-06 15:08:26','/upload/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218578,'2025-07-06 15:11:30','/uploads/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218579,'2025-07-06 15:15:28','/cgi-bin/ALFA_DATA/alfacgiapi/','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218580,'2025-07-06 15:16:58','/wp-content/themes/seotheme/db.php?u','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218581,'2025-07-06 15:18:36','/Telerik.Web.UI.WebResource.axd?type=rau','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218582,'2025-07-06 15:21:37','/deployment-config.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218583,'2025-07-06 15:24:45','/sftp-config.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218584,'2025-07-06 15:27:28','/sftp.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218585,'2025-07-06 15:29:42','/.git/config','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218586,'2025-07-06 15:34:07','/.ftpconfig','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218587,'2025-07-06 15:36:17','/config.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218588,'2025-07-06 15:39:04','/.aws/credentials','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218589,'2025-07-06 15:39:58','/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218590,'2025-07-06 15:44:49','/api/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218591,'2025-07-06 15:46:17','/backend/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218592,'2025-07-06 15:49:00','/core/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218593,'2025-07-06 15:50:48','/config/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218594,'2025-07-06 15:53:21','/sftp.json','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',NULL,404,'GET',NULL,''),(218595,'2025-07-06 18:53:01','/@vite/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218596,'2025-07-06 18:53:03','/actuator/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218597,'2025-07-06 18:53:05','/server','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218598,'2025-07-06 18:53:07','/.vscode/sftp.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218599,'2025-07-06 18:53:11','/debug/default/view?panel=config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218600,'2025-07-06 18:53:13','/v2/_catalog','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218601,'2025-07-06 18:53:15','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218602,'2025-07-06 18:53:17','/server-status','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218603,'2025-07-06 18:53:19','/login.action','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218604,'2025-07-06 18:53:21','/_all_dbs','https://thelomad.com/getmad.today','Mozilla/5.0 (l9scan/2.0.534313e2132323e2034323e2236313; +https://leakix.net)',NULL,404,'GET',NULL,''),(218605,'2025-07-06 18:53:23','/.DS_Store','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218606,'2025-07-06 18:53:25','/.env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218607,'2025-07-06 18:53:27','/.git/config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218608,'2025-07-06 18:53:29','/s/534313e2132323e2034323e2236313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218609,'2025-07-06 18:53:31','/config.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218610,'2025-07-06 18:53:33','/telescope/requests','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218611,'2025-07-06 18:53:35','/info.php','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218612,'2025-07-07 00:02:17','/@vite/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218613,'2025-07-07 00:02:20','/actuator/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218614,'2025-07-07 00:02:21','/server','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218615,'2025-07-07 00:02:23','/.vscode/sftp.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218616,'2025-07-07 00:02:29','/debug/default/view?panel=config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218617,'2025-07-07 00:02:31','/v2/_catalog','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218618,'2025-07-07 00:02:33','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218619,'2025-07-07 00:02:35','/server-status','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218620,'2025-07-07 00:02:36','/login.action','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218621,'2025-07-07 00:02:38','/_all_dbs','https://thelomad.com/getmad.today','Mozilla/5.0 (l9scan/2.0.534313e2132323e2034323e2236313; +https://leakix.net)',NULL,404,'GET',NULL,''),(218622,'2025-07-07 00:02:40','/.DS_Store','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218623,'2025-07-07 00:02:42','/.env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218624,'2025-07-07 00:02:43','/.git/config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218625,'2025-07-07 00:02:45','/s/534313e2132323e2034323e2236313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218626,'2025-07-07 00:02:47','/config.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218627,'2025-07-07 00:02:49','/telescope/requests','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218628,'2025-07-07 00:02:50','/info.php','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218629,'2025-07-07 11:31:55','/wordpress','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218630,'2025-07-07 11:39:38','/Wordpress','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218631,'2025-07-07 11:42:04','/WORDPRESS','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218632,'2025-07-07 11:45:15','/WordPress','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218633,'2025-07-07 11:49:51','/wp','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218634,'2025-07-07 11:56:08','/Wp','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218635,'2025-07-07 11:58:24','/WP','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218636,'2025-07-07 12:05:35','/old','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218637,'2025-07-07 12:07:43','/Old','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218638,'2025-07-07 12:11:18','/OLD','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218639,'2025-07-07 12:17:01','/oldsite','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218640,'2025-07-07 12:33:35','/wp-old','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218641,'2025-07-07 12:37:11','/2022','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218642,'2025-07-07 12:42:57','/2023','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218643,'2025-07-07 12:46:36','/2024','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218644,'2025-07-07 12:52:47','/2017','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218645,'2025-07-07 12:57:55','/2020','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218646,'2025-07-07 13:00:40','/2019','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218647,'2025-07-07 13:02:53','/2018','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218648,'2025-07-07 13:10:15','/backup','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218649,'2025-07-07 13:26:08','/demo','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218650,'2025-07-07 13:28:09','/bc','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218651,'2025-07-07 13:32:20','/www','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218652,'2025-07-07 13:40:03','/WWW','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218653,'2025-07-07 13:41:49','/Www','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218654,'2025-07-07 13:47:35','/2021','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218655,'2025-07-07 13:51:55','/main','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218656,'2025-07-07 13:52:58','/old-site','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218657,'2025-07-07 13:58:08','/bk','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218658,'2025-07-07 14:04:19','/Backup','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218659,'2025-07-07 14:06:11','/BACKUP','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218660,'2025-07-07 14:08:48','/SHOP','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218661,'2025-07-07 14:14:11','/Shop','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218662,'2025-07-07 14:19:27','/shop','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218663,'2025-07-07 14:23:02','/bak','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218664,'2025-07-07 14:28:04','/sitio','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218665,'2025-07-07 14:34:10','/sito','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218666,'2025-07-07 14:51:22','/blog','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218667,'2025-07-07 14:54:00','/BLOG','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218668,'2025-07-07 14:57:08','/Blog','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',NULL,404,'HEAD',NULL,''),(218669,'2025-07-07 22:55:32','/.git/config','https://thelomad.com/getmad.today','SonyEricssonW660i/R6AD Browser/NetFront/3.3 Profile/MIDP-2.0 Configuration/CLDC-1.1',NULL,404,'GET',NULL,''),(218670,'2025-07-07 23:50:02','/.git/config','https://thelomad.com/getmad.today','Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 Nokia6120c/3.70; Profile/MIDP-2.0 Configuration/CLDC-1.1) AppleWebKit/413 (KHTML, like Gecko) Safari/413',NULL,404,'GET',NULL,''),(218671,'2025-07-08 04:33:43','/word%70ress/','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:89.0) Gecko/20100101 Firefox/89.0',NULL,404,'GET',NULL,''),(218672,'2025-07-08 06:47:53','/.git/HEAD','http://thelomad.com/getmad.today',NULL,NULL,404,'GET',NULL,''),(218673,'2025-07-08 06:47:55','/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218674,'2025-07-08 06:47:57','/phpinfo','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218675,'2025-07-08 06:47:59','/_profiler/phpinfo','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218676,'2025-07-08 06:48:01','/info.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218677,'2025-07-08 06:48:03','/index.html','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218678,'2025-07-08 06:48:05','/backend/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218679,'2025-07-08 06:48:07','/api/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218680,'2025-07-08 06:48:10','/env.backup','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218681,'2025-07-08 06:48:12','/phpinfo.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218682,'2025-07-08 06:48:14','/main/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218683,'2025-07-08 06:48:16','/.env.old','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218684,'2025-07-08 06:48:18','/api/config.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218685,'2025-07-08 06:48:20','/.aws/credentials','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218686,'2025-07-08 06:48:22','/lara/phpinfo.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218687,'2025-07-08 06:48:26','/core/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218688,'2025-07-08 06:48:28','/application.properties','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218689,'2025-07-08 06:48:30','/prod/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218690,'2025-07-08 06:48:33','/kyc/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218691,'2025-07-08 06:48:35','/aws/credentials','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218692,'2025-07-08 06:48:37','/laravael/core/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218693,'2025-07-08 06:48:40','/server-info.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218694,'2025-07-08 06:48:42','/.aws/config','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218695,'2025-07-08 06:48:45','/docker/app/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218696,'2025-07-08 06:48:47','/lara/info.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218697,'2025-07-08 06:48:49','/.env.prod','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218698,'2025-07-08 06:48:52','/config/local.yml','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218699,'2025-07-08 06:48:54','/secrets/aws_ses.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218700,'2025-07-08 06:48:56','/awsstats/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218701,'2025-07-08 06:48:58','/wp-config.php.bak','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218702,'2025-07-08 06:49:00','/admin/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218703,'2025-07-08 06:49:03','/config/storage.yml','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218704,'2025-07-08 06:49:05','/settings.py','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218705,'2025-07-08 06:49:08','/apps/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218706,'2025-07-08 06:49:12','/opt/aws/ses.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218707,'2025-07-08 06:49:15','/logs/aws/ses.log','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218708,'2025-07-08 06:49:18','/private/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218709,'2025-07-08 06:49:20','/docker-compose.yml','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218710,'2025-07-08 06:49:22','/.git/config','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218711,'2025-07-08 06:51:36','/.env','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(218712,'2025-07-08 08:43:13','/.git/config','https://thelomad.com/getmad.today','SAMSUNG-S8000/S8000XXIF3 SHP/VPP/R5 Jasmine/1.0 Nextreaming SMM-MMS/1.2.0 profile/MIDP-2.1 configuration/CLDC-1.1 FirePHP/0.3',NULL,404,'GET',NULL,''),(218713,'2025-07-08 09:28:20','/.env','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 9; SM-N950U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.89 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(218714,'2025-07-08 14:19:40','/@vite/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218715,'2025-07-08 14:19:42','/actuator/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218716,'2025-07-08 14:19:44','/server','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218717,'2025-07-08 14:19:46','/.vscode/sftp.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218718,'2025-07-08 14:19:50','/debug/default/view?panel=config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218719,'2025-07-08 14:19:52','/v2/_catalog','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218720,'2025-07-08 14:19:54','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218721,'2025-07-08 14:19:56','/server-status','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218722,'2025-07-08 14:19:58','/login.action','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218723,'2025-07-08 14:20:00','/_all_dbs','https://thelomad.com/getmad.today','Mozilla/5.0 (l9scan/2.0.534313e2132323e2034323e2236313; +https://leakix.net)',NULL,404,'GET',NULL,''),(218724,'2025-07-08 14:20:02','/.DS_Store','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218725,'2025-07-08 14:20:04','/.env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218726,'2025-07-08 14:20:06','/.git/config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218727,'2025-07-08 14:20:08','/s/534313e2132323e2034323e2236313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218728,'2025-07-08 14:20:10','/config.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218729,'2025-07-08 14:20:12','/telescope/requests','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218730,'2025-07-08 14:20:14','/info.php','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218731,'2025-07-08 14:33:31','/.git/config','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 6.0.1; SM-T550) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Safari/537.36',NULL,404,'GET',NULL,''),(218732,'2025-07-08 15:44:43','/.env','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(218733,'2025-07-08 16:26:10','/.git/HEAD','http://thelomad.com/getmad.today',NULL,NULL,404,'GET',NULL,''),(218734,'2025-07-08 16:26:12','/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218735,'2025-07-08 16:26:14','/phpinfo','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218736,'2025-07-08 16:26:16','/_profiler/phpinfo','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218737,'2025-07-08 16:26:18','/info.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218738,'2025-07-08 16:26:20','/index.html','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218739,'2025-07-08 16:26:22','/backend/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218740,'2025-07-08 16:26:25','/api/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218741,'2025-07-08 16:26:27','/env.backup','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218742,'2025-07-08 16:26:29','/phpinfo.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218743,'2025-07-08 16:26:31','/main/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218744,'2025-07-08 16:26:33','/.env.old','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218745,'2025-07-08 16:26:35','/api/config.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218746,'2025-07-08 16:26:37','/.aws/credentials','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218747,'2025-07-08 16:26:39','/lara/phpinfo.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218748,'2025-07-08 16:26:42','/core/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218749,'2025-07-08 16:26:44','/application.properties','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218750,'2025-07-08 16:26:46','/prod/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218751,'2025-07-08 16:26:48','/kyc/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218752,'2025-07-08 16:26:50','/aws/credentials','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218753,'2025-07-08 16:26:53','/laravael/core/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218754,'2025-07-08 16:26:55','/server-info.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218755,'2025-07-08 16:26:57','/.aws/config','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218756,'2025-07-08 16:26:59','/docker/app/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218757,'2025-07-08 16:27:01','/lara/info.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218758,'2025-07-08 16:27:03','/.env.prod','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218759,'2025-07-08 16:27:05','/config/local.yml','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218760,'2025-07-08 16:27:07','/secrets/aws_ses.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218761,'2025-07-08 16:27:09','/awsstats/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218762,'2025-07-08 16:27:11','/wp-config.php.bak','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218763,'2025-07-08 16:27:13','/admin/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218764,'2025-07-08 16:27:16','/config/storage.yml','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218765,'2025-07-08 16:27:18','/settings.py','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218766,'2025-07-08 16:27:21','/apps/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218767,'2025-07-08 16:27:23','/opt/aws/ses.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218768,'2025-07-08 16:27:25','/logs/aws/ses.log','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218769,'2025-07-08 16:27:27','/private/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218770,'2025-07-08 16:27:29','/docker-compose.yml','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218771,'2025-07-08 16:27:31','/.git/config','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218772,'2025-07-08 17:59:24','/config.json','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11',NULL,404,'GET',NULL,''),(218773,'2025-07-08 17:59:52','/wp-content/plugins/divi-blurb-extended/readme.txt','https://thelomad.com/getmad.today','python-requests/2.32.4',NULL,404,'GET',NULL,''),(218774,'2025-07-08 17:59:55','/wp-content/themes/Divi/readme.txt','https://thelomad.com/getmad.today','python-requests/2.32.4',NULL,404,'GET',NULL,''),(218775,'2025-07-08 23:24:02','/wp/wp-admin/setup-config.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64)',NULL,404,'GET',NULL,''),(218776,'2025-07-08 23:24:04','/blog/wp-admin/setup-config.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64)',NULL,404,'GET',NULL,''),(218777,'2025-07-08 23:24:06','/new/wp-admin/setup-config.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64)',NULL,404,'GET',NULL,''),(218778,'2025-07-09 06:28:58','/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218779,'2025-07-09 06:29:00','/phpinfo','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218780,'2025-07-09 06:29:02','/_profiler/phpinfo','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218781,'2025-07-09 06:29:04','/info.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218782,'2025-07-09 06:29:06','/index.html','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218783,'2025-07-09 06:29:08','/backend/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218784,'2025-07-09 06:29:10','/api/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218785,'2025-07-09 06:29:12','/env.backup','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218786,'2025-07-09 06:29:14','/phpinfo.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218787,'2025-07-09 06:29:17','/main/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218788,'2025-07-09 06:29:19','/.env.old','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218789,'2025-07-09 06:29:21','/api/config.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218790,'2025-07-09 06:29:23','/.aws/credentials','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218791,'2025-07-09 06:29:25','/lara/phpinfo.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218792,'2025-07-09 06:29:27','/core/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218793,'2025-07-09 06:29:29','/application.properties','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218794,'2025-07-09 06:29:31','/prod/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218795,'2025-07-09 06:29:33','/kyc/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218796,'2025-07-09 06:29:35','/aws/credentials','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218797,'2025-07-09 06:29:37','/laravael/core/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218798,'2025-07-09 06:29:39','/server-info.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218799,'2025-07-09 06:29:41','/.aws/config','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218800,'2025-07-09 06:29:43','/docker/app/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218801,'2025-07-09 06:29:45','/lara/info.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218802,'2025-07-09 06:29:47','/.env.prod','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218803,'2025-07-09 06:29:49','/config/local.yml','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218804,'2025-07-09 06:29:51','/secrets/aws_ses.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218805,'2025-07-09 06:29:54','/awsstats/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218806,'2025-07-09 06:29:56','/wp-config.php.bak','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218807,'2025-07-09 06:29:58','/admin/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218808,'2025-07-09 06:30:00','/config/storage.yml','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218809,'2025-07-09 06:30:02','/settings.py','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218810,'2025-07-09 06:30:04','/apps/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218811,'2025-07-09 06:30:06','/opt/aws/ses.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218812,'2025-07-09 06:30:08','/logs/aws/ses.log','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218813,'2025-07-09 06:30:10','/private/.env','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218814,'2025-07-09 06:30:12','/docker-compose.yml','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218815,'2025-07-09 06:30:14','/.git/config','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(218816,'2025-07-09 21:53:00','/.env','https://thelomad.com/getmad.today','Mozilla/5.0 (ZZ; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(218817,'2025-07-09 22:17:35','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/01/image002.png','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218818,'2025-07-09 22:17:43','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/01/image001.png','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218819,'2025-07-09 22:18:12','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/07/Hot-Dog-Dog-Costume1-300x196-300x196-1.jpg','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218820,'2025-07-09 22:21:52','/wp-contentpublications.budget.ny.gov/eBudget1314/fy1314artVIIbills/PPGGArticleVII.pdfhttps:/thelomad.com/getmad.today/wp-content','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218821,'2025-07-09 22:22:38','/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527345.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218822,'2025-07-09 22:23:24','/wp-contentwww.wcb.ny.gov/content/main/wclaws/Decisions/2015July/KistnerConcreteProductsInc.jsp','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218823,'2025-07-09 22:27:30','/blog/category/mad-news/thelomad.com/getmad.today/sitemap','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218824,'2025-07-09 22:28:27','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/08/pic-1-300x115-1.jpg','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218825,'2025-07-09 22:28:50','/blog/category/mad-news/thelomad.com/getmad.today/sitemap','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218826,'2025-07-09 22:29:26','/wp-contentwww.cdc.gov/vitalsigns/opioid-prescribing/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218827,'2025-07-09 22:30:00','/wp-contentleadersvoiceusa.com/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218828,'2025-07-09 22:31:03','/wp-contentwww.cdc.gov/drugoverdose/data/overdose.html','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218829,'2025-07-09 22:31:50','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2016/10/Opioid-Decision.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218830,'2025-07-09 22:32:59','/wp-contentwww.oasas.ny.gov/providerDirectory/index.cfm?search_type=2','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218831,'2025-07-09 22:34:57','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/08/poop.png','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218832,'2025-07-09 22:35:37','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/06/EBRB-1-finding-that-MTGs-apply-out-of-state_Redacted.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218833,'2025-07-09 22:35:57','/wp-contentwww.wcb.ny.gov/content/main/forms/c240.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218834,'2025-07-09 22:38:06','/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_1119.jsp','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218835,'2025-07-09 22:40:12','/wp-contentleadersvoiceusa.com/melissa-day-managing-partner-the-law-offices-of-melissa-a-day-pllc/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218836,'2025-07-09 22:40:44','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/08/pic-1.jpg','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218837,'2025-07-09 22:44:21','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/07/Hot-Dog-Dog-Costume1-300x196-1.jpg','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218838,'2025-07-09 22:46:35','/wp-contentwww.nycourts.gov/ctapps/Decisions/2014/Nov14/181opn14-Decision.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218839,'2025-07-09 22:46:39','/wp-contentwww.nycourts.gov/ctapps/Decisions/2017/Oct17/96opn17-Decision.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218840,'2025-07-09 22:48:07','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/01/SummaryRegChanges.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218841,'2025-07-09 22:48:10','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2016/04/25-a-Unconstitutional.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218842,'2025-07-09 22:48:14','/blog/category/firm-news/thelomad.com/getmad.today/sitemap','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218843,'2025-07-09 22:48:48','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2016/04/25-a-Unconstitutional.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218844,'2025-07-09 22:49:58','/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_1067.jsp','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218845,'2025-07-09 22:50:49','/wp-contentwww.lexis.com/research/buttonTFLink?_butInline=1&_butNum=8&_butStat=0&_butType=4&_butinfo=NY+WORK+COMP+14&_fmtstr=FULL&_m=4a71373fc4286b3769bffee9b62c30db&_md5=75bec0b2ce1d16a3c6da61614f25c57b&_startdoc=1&_xfercite=%3Ccite+cc%3D%22USA%22%3E%3C%21%5BCDATA%5B2015+NY+Wrk.+Comp.+LEXIS+5965%5D%5D%3E%3C%2Fcite%3E&docnum=3&wchp=dGLzVzB-zSkAb','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218846,'2025-07-09 22:50:52','/wp-contentwww.lexis.com/research/buttonTFLink?_butInline=1&_butNum=9&_butStat=0&_butType=4&_butinfo=NY+WORK+COMP+14&_fmtstr=FULL&_m=4a71373fc4286b3769bffee9b62c30db&_md5=26730495bb8eb27dee66bf357766c397&_startdoc=1&_xfercite=%3Ccite+cc%3D%22USA%22%3E%3C%21%5BCDATA%5B2015+NY+Wrk.+Comp.+LEXIS+5965%5D%5D%3E%3C%2Fcite%3E&docnum=3&wchp=dGLzVzB-zSkAb','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218847,'2025-07-09 22:51:03','/wp-contentwww.lexis.com/research/buttonTFLink?_butInline=1&_butNum=7&_butStat=0&_butType=4&_butinfo=NY+WORK+COMP+14&_fmtstr=FULL&_m=4a71373fc4286b3769bffee9b62c30db&_md5=7d957a56f4603e2ea6acfc6d96284951&_startdoc=1&_xfercite=%3Ccite+cc%3D%22USA%22%3E%3C%21%5BCDATA%5B2015+NY+Wrk.+Comp.+LEXIS+5965%5D%5D%3E%3C%2Fcite%3E&docnum=3&wchp=dGLzVzB-zSkAb','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218848,'2025-07-09 22:51:20','/wp-contentwww.wcb.ny.gov/content/main/hcpp/MedicalTreatmentGuidelines/Non-AcutePainMTG2014.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218849,'2025-07-09 22:51:49','/blog/category/im-mad/thelomad.com/getmad.today/sitemap','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218850,'2025-07-09 22:52:23','/wp-contentwww.wcb.ny.gov/content/main/hcpp/PrefProviderOrg/ActivePPOList.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218851,'2025-07-09 22:53:18','/wp-contentwww.wkbw.com/news/crime/Drug-Raids-In-Buffalo-123833394.html','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218852,'2025-07-09 22:53:25','/wp-contentwww.justice.gov/dea/divisions/nyc/2011/nyc061611a.shtml','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218853,'2025-07-09 22:54:33','/wp-contentwww.wcrinet.org/result/use_narcotics2_result.html','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218854,'2025-07-09 22:55:17','/blog/category/mad-news/page/2/thelomad.com/getmad.today/sitemap','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218855,'2025-07-09 22:55:51','/wp-contentwww.buffalonews.com/apps/pbcs.dll/article?AID=%2F20130310%2FCITYANDREGION%2F130319954%2F1010.','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218856,'2025-07-09 22:56:19','/wp-contentwww.crowdrise.com/rickycostnerjrculina/fundraiser/melissaday1/setup_success/member','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218857,'2025-07-09 22:56:49','/wp-contentgetmad.today/wp-content/uploads/2014/12/hallock_v._koubek.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218858,'2025-07-09 22:57:15','/blog/category/mad-news/page/3/thelomad.com/getmad.today/sitemap','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218859,'2025-07-09 22:57:49','/blog/category/mad-news/page/3/thelomad.com/getmad.today/sitemap','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218860,'2025-07-09 22:58:06','/blog/category/mad-news/page/4/thelomad.com/getmad.today/sitemap','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218861,'2025-07-09 22:58:48','/wp-contentwww.wcb.ny.gov/content/main/hcpp/ImpairmentGuidelines/SLU-FAQs.jsp','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218862,'2025-07-09 22:58:55','/blog/category/mad-news/page/5/thelomad.com/getmad.today/sitemap','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218863,'2025-07-09 22:59:40','/blog/category/mad-news/page/6/thelomad.com/getmad.today/sitemap','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218864,'2025-07-09 23:00:21','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2017/02/image002.jpg','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218865,'2025-07-09 23:00:32','/blog/category/mad-news/page/7/thelomad.com/getmad.today/sitemap','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218866,'2025-07-09 23:03:08','/attorney/harada-satoko-suki/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218867,'2025-07-09 23:03:15','/attorney/huang-bingchen/','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218868,'2025-07-09 23:07:48','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/08/Challenge-to-the-Closing-of-the-25-a-Fund.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218869,'2025-07-09 23:12:16','/wp-contentwww.nycourts.gov/reporter/3dseries/2018/2018_00586.htm','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218870,'2025-07-09 23:17:04','/wp-contentwww.nycourts.gov/reporter/3dseries/2007/2007_07498.htm','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218871,'2025-07-09 23:18:00','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2014/11/ZERO-PERCENT-LWEC-Redacted-.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218872,'2025-07-09 23:20:05','/wp-contentwww.bcnys.org/inside/wc/2010/crossexamregs.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218873,'2025-07-09 23:20:30','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/03/Hudson-Valley-DDSO.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218874,'2025-07-09 23:21:07','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/03/Hudson-Valley-DDSO.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218875,'2025-07-09 23:23:32','/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_630.jsp','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218876,'2025-07-09 23:24:31','/blog/category/nys-workers-compensation/page/3/thelomad.com/getmad.today/sitemap','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218877,'2025-07-09 23:25:21','/blog/category/nys-workers-compensation/page/2/thelomad.com/getmad.today/sitemap','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218878,'2025-07-09 23:25:39','/wp-content/uploads/2022/02/2020CaseLawUpdate.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218879,'2025-07-09 23:31:21','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/04/Senate-Bill-S76.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218880,'2025-07-09 23:31:50','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/04/Senate-Bill-S76.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218881,'2025-07-09 23:32:58','/blog/category/nys-workers-compensation/thelomad.com/getmad.today/sitemap','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218882,'2025-07-09 23:34:20','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/09/Crossword-EXF-Puzzle-and-Clues.png','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218883,'2025-07-09 23:34:50','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/09/Crossword-EXF-Puzzle-and-Clues.png','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218884,'2025-07-09 23:41:05','/blog/category/nys-workers-compensation/page/4/thelomad.com/getmad.today/sitemap','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218885,'2025-07-09 23:41:35','/blog/category/nys-workers-compensation/page/5/thelomad.com/getmad.today/sitemap','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218886,'2025-07-09 23:42:12','/blog/category/nys-workers-compensation/page/6/thelomad.com/getmad.today/sitemap','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218887,'2025-07-09 23:43:21','/blog/category/nys-workers-compensation/page/7/thelomad.com/getmad.today/sitemap','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218888,'2025-07-09 23:43:31','/blog/category/nys-workers-compensation/page/8/thelomad.com/getmad.today/sitemap','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218889,'2025-07-09 23:43:36','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2013/07/Treatment-Outside-MTG-is-Pre-Determined-as-Not-Medically-Necessary.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218890,'2025-07-09 23:44:05','/blog/category/nys-workers-compensation/page/8/thelomad.com/getmad.today/sitemap','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218891,'2025-07-09 23:44:17','/wp-contentadvance.lexis.com/Auth/Replay?targetUrl=%2FContentViewExternalAccess%3FdocId%3D%2Fshared%2Fdocument%2Fadministrative-materials%2Furn%3AcontentItem%3A539Y-D7R0-01WV-S0YJ-00000-00%26Hcsi%3D271075%26title%3D2011+NY+Wrk.+Comp.+LEXIS+2999%26vendorreportId%3D%26pageno%3D10%26activeRptr%3DPAGE_7559','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218892,'2025-07-09 23:44:52','/wp-contentdecisions.courts.state.ny.us/ad3/Decisions/2019/527808.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218893,'2025-07-09 23:45:00','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2016/10/pic.png','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218894,'2025-07-09 23:45:09','/wp-contentwww.supremecourt.gov/search.aspx?filename=%2Fdocket%2Fdocketfiles%2Fhtml%2Fpublic%2F17-1179.html','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218895,'2025-07-09 23:45:25','/wp-contentwww.wcb.ny.gov/content/main/SubjectNos/sn046_892.jsp','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218896,'2025-07-09 23:45:36','/wp-contentwww.supremecourt.gov/DocketPDF/17/17-1179/36170/20180221174511203_17-____%20--%20AEIC%20v.%20NY%20--%20cert.%20petition.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218897,'2025-07-09 23:45:51','/wp-contentwww.supremecourt.gov/DocketPDF/17/17-1179/25081/20171226172748924_Liberty%20Mutual%20-%20APPENDIX%20-%20cert.%20extension%20application.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218898,'2025-07-09 23:45:55','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2018/05/CourtBuilding-300x167-1.jpg','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218899,'2025-07-09 23:46:01','/wp-contentwww.supremecourt.gov/about/images/CourtBuilding.jpg','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218900,'2025-07-09 23:46:03','/wp-contentwww.supremecourt.gov/DocketPDF/17/17-1179/36170/20180221174511203_17-____%20--%20AEIC%20v.%20NY%20--%20cert.%20petition.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218901,'2025-07-09 23:46:15','/wp-contentwww.supremecourt.gov/DocketPDF/17/17-1179/25081/20171226172748924_Liberty%20Mutual%20-%20APPENDIX%20-%20cert.%20extension%20application.pdf','https://thelomad.com/getmad.today','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(218902,'2025-07-10 17:19:18','/admin-ajax.php','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 YaBrowser/19.7.0.1990 Yowser/2.5 Safari/537.36',NULL,404,'GET',NULL,''),(218903,'2025-07-10 17:19:19','/wp-emoji-release.min.js','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 9; LEX829) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/10.1 Chrome/71.0.3578.99 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(218904,'2025-07-10 17:19:30','/admin-ajax.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36',NULL,404,'GET',NULL,''),(218905,'2025-07-10 17:19:32','/wp-emoji-release.min.js','http://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36',NULL,404,'GET',NULL,''),(218906,'2025-07-10 17:20:38','/wp-emoji-release.min.js','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows Phone 8.1; ARM; Trident/7.0; Touch; rv:11.0; IEMobile/11.0; NOKIA; Lumia 530) like Gecko',NULL,404,'GET',NULL,''),(218907,'2025-07-10 17:20:39','/admin-ajax.php','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 9; ONEPLUS A6010) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(218908,'2025-07-10 17:20:50','/wp-emoji-release.min.js','http://thelomad.com/getmad.today','MobileSafari/600.1.4 CFNetwork/711.1.12 Darwin/14.0.0',NULL,404,'GET',NULL,''),(218909,'2025-07-10 17:20:50','/admin-ajax.php','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.7) Gecko/20060909 Firefox/1.5.0.7 MG(Novarra-Vision/6.9)',NULL,404,'GET',NULL,''),(218910,'2025-07-10 17:21:57','/wp-emoji-release.min.js','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; U; Android 8.1.0; zh-CN; EML-AL00 Build/HUAWEIEML-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 baidu.sogo.uc.UCBrowser/11.9.4.974 UWS/2.13.1.48 Mobile Safari/537.36 AliApp(DingTalk/4.5.11) com.alibaba.a',NULL,404,'GET',NULL,''),(218911,'2025-07-10 17:21:58','/admin-ajax.php','https://thelomad.com/getmad.today','Mozilla/5.0 (compatible; MSIE 10.0; Windows Phone 8.0; Trident/6.0; IEMobile/10.0; ARM; Touch; NOKIA; Lumia 920)',NULL,404,'GET',NULL,''),(218912,'2025-07-10 17:22:10','/admin-ajax.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 6.0; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0',NULL,404,'GET',NULL,''),(218913,'2025-07-10 17:22:10','/wp-emoji-release.min.js','http://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(218914,'2025-07-10 17:23:53','/admin-ajax.php','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0',NULL,404,'GET',NULL,''),(218915,'2025-07-10 17:23:55','/wp-emoji-release.min.js','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG-SM-G891A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(218916,'2025-07-10 17:24:07','/wp-emoji-release.min.js','http://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Safari/537.36',NULL,404,'GET',NULL,''),(218917,'2025-07-10 17:24:08','/admin-ajax.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 8.1.0; SM-T580) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Safari/537.36',NULL,404,'GET',NULL,''),(218918,'2025-07-10 17:25:16','/admin-ajax.php','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; U; Android 1.5; en-us; SPH-M900 Build/CUPCAKE) AppleWebKit/528.5  (KHTML, like Gecko) Version/3.1.2 Mobile Safari/525.20.1',NULL,404,'GET',NULL,''),(218919,'2025-07-10 17:25:16','/wp-emoji-release.min.js','https://thelomad.com/getmad.today','P3P Validator',NULL,404,'GET',NULL,''),(218920,'2025-07-10 17:25:30','/admin-ajax.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',NULL,404,'GET',NULL,''),(218921,'2025-07-10 17:25:30','/wp-emoji-release.min.js','http://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 9; Redmi Note 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.89 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(218922,'2025-07-10 17:26:39','/admin-ajax.php','https://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.81 Safari/537.36',NULL,404,'GET',NULL,''),(218923,'2025-07-10 17:26:39','/wp-emoji-release.min.js','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 8.0.0; HTC U Ultra) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.89 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(218924,'2025-07-10 17:26:53','/admin-ajax.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 9; Redmi Note 7 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(218925,'2025-07-10 17:26:53','/wp-emoji-release.min.js','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36',NULL,404,'GET',NULL,''),(218926,'2025-07-10 17:27:43','/wp-emoji-release.min.js','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 9; ONEPLUS A5000) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.89 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(218927,'2025-07-10 17:27:43','/admin-ajax.php','https://thelomad.com/getmad.today','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.80 Safari/537.36',NULL,404,'GET',NULL,''),(218928,'2025-07-10 17:28:03','/admin-ajax.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 9; SM-G950U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.89 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(218929,'2025-07-10 17:28:04','/wp-emoji-release.min.js','http://thelomad.com/getmad.today','Googlebot-Image/1.0',NULL,404,'GET',NULL,''),(218930,'2025-07-10 17:28:58','/admin-ajax.php','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 9; Pixel) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(218931,'2025-07-10 17:29:01','/wp-emoji-release.min.js','https://thelomad.com/getmad.today','Mozilla/5.0 (X11; U; Linux x86_64; en-us) AppleWebKit/534.35 (KHTML, like Gecko) Chrome/11.0.696.65 Safari/534.35 Puffin/2.9174AT',NULL,404,'GET',NULL,''),(218932,'2025-07-10 17:29:15','/admin-ajax.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 9; Pixel 3a) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.89 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(218933,'2025-07-10 17:29:15','/wp-emoji-release.min.js','http://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 9; Redmi Note 6 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(218934,'2025-07-10 17:30:05','/wp-emoji-release.min.js','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.25 Safari/537.36 Core/1.70.3722.400 QQBrowser/10.5.3738.400',NULL,404,'GET',NULL,''),(218935,'2025-07-10 17:30:08','/admin-ajax.php','https://thelomad.com/getmad.today','Mozilla/5.0 (Linux; Android 9; INE-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(218936,'2025-07-10 17:30:20','/admin-ajax.php','http://thelomad.com/getmad.today','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; BOLT/2.800) AppleWebKit/534.6 (KHTML, like Gecko) Version/5.0 Safari/534.6.3',NULL,404,'GET',NULL,''),(218937,'2025-07-10 17:30:24','/wp-emoji-release.min.js','http://thelomad.com/getmad.today','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36',NULL,404,'GET',NULL,''),(218938,'2025-07-10 19:10:19','/@vite/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218939,'2025-07-10 19:10:21','/actuator/env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218940,'2025-07-10 19:10:22','/server','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218941,'2025-07-10 19:10:24','/.vscode/sftp.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218942,'2025-07-10 19:10:27','/debug/default/view?panel=config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218943,'2025-07-10 19:10:28','/v2/_catalog','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218944,'2025-07-10 19:10:30','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218945,'2025-07-10 19:10:32','/server-status','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218946,'2025-07-10 19:10:33','/login.action','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218947,'2025-07-10 19:10:35','/_all_dbs','https://thelomad.com/getmad.today','Mozilla/5.0 (l9scan/2.0.534313e2132323e2034323e2236313; +https://leakix.net)',NULL,404,'GET',NULL,''),(218948,'2025-07-10 19:10:36','/.DS_Store','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218949,'2025-07-10 19:10:38','/.env','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218950,'2025-07-10 19:10:39','/.git/config','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218951,'2025-07-10 19:10:41','/s/534313e2132323e2034323e2236313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218952,'2025-07-10 19:10:42','/config.json','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218953,'2025-07-10 19:10:44','/telescope/requests','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218954,'2025-07-10 19:10:45','/info.php','https://thelomad.com/getmad.today','Go-http-client/1.1',NULL,404,'GET',NULL,''),(218955,'2025-07-12 14:14:13','/wp-contentthelomad.com/getmad.today/wp-content/uploads/2015/07/Hot-Dog-Dog-Costume1-300x196-300x196-1.jpg','https://getmad.today','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','https://getmad.today/2015/07/hot-dogs-or-hamburgers?full-site=true',404,'GET',NULL,''),(218956,'2025-07-12 14:15:43','/.git/config','https://mail.getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.19 Safari/537.36 OPR/64.0.3409.0 (Edition developer)',NULL,404,'GET',NULL,''),(218957,'2025-07-12 14:17:36','/wp-content/plugins/addons-for-divi/includes/customizer/css/brainaddons-customizer-preview.css?ver=3.5.0','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/getmad.today/wp-login.php?redirect_to=https%3A%2F%2Fthelomad.com/getmad.today%2Fwp-admin%2F&reauth=1',404,'GET',NULL,''),(218958,'2025-07-12 14:18:50','/wp-content/plugins/addons-for-divi/includes/customizer/css/brainaddons-customizer-preview.css?ver=3.5.0','https://thelomad.com/getmad.today','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/getmad.today/wp-login.php?redirect_to=https%3A%2F%2Fthelomad.com/getmad.today%2Fwp-admin%2F&reauth=1',404,'GET',NULL,''),(218959,'2025-07-12 14:48:22','/getmad.today/','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36 Edg/138.0.0.0',NULL,404,'GET',NULL,''),(218960,'2025-07-12 14:48:38','/getmad.today/','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:140.0) Gecko/20100101 Firefox/140.0',NULL,404,'GET',NULL,''),(218961,'2025-07-12 14:51:25','/getmad.today/?123','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:140.0) Gecko/20100101 Firefox/140.0',NULL,404,'GET',NULL,''),(218962,'2025-07-12 14:59:20','/getmad.today/?123','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:140.0) Gecko/20100101 Firefox/140.0',NULL,404,'GET',NULL,''),(218963,'2025-07-12 14:59:54','/getmad.today/?123','https://thelomad.com','Mozilla/5.0 (Windows NT 6.1; WOW64) SkypeUriPreview Preview/0.5 skype-url-preview@microsoft.com',NULL,404,'GET',NULL,''),(218964,'2025-07-12 14:59:55','/getmad.today/?123','https://thelomad.com','Mozilla/5.0 (Windows NT 6.1; WOW64) SkypeUriPreview Preview/0.5 skype-url-preview@microsoft.com',NULL,404,'GET',NULL,''),(218965,'2025-07-12 15:00:11','/getmad.today/?123','https://thelomad.com',NULL,NULL,404,'HEAD',NULL,''),(218966,'2025-07-12 15:00:13','/getmad.today/?123','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36 Edg/138.0.0.0','https://statics.teams.cdn.office.net/',404,'GET',NULL,''),(218967,'2025-07-12 15:00:24','/getmad.today/?123','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.7204.93 Safari/537.36',NULL,404,'GET',NULL,''),(218968,'2025-07-12 15:00:27','/getmad.today/?123','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.7204.93 Safari/537.36',NULL,404,'GET',NULL,''),(218969,'2025-07-12 15:01:43','/getmad.today/','http://thelomad.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(218970,'2025-07-12 15:02:00','/getmad.today/?123','http://thelomad.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(218971,'2025-07-12 15:02:47','/getmad.today/?123','https://thelomad.com','Mozilla/5.0 (Windows NT 6.1; WOW64) SkypeUriPreview Preview/0.5 skype-url-preview@microsoft.com',NULL,404,'GET',NULL,''),(218972,'2025-07-12 15:02:52','/getmad.today/?123','https://thelomad.com','Mozilla/5.0 (Windows NT 6.1; WOW64) SkypeUriPreview Preview/0.5 skype-url-preview@microsoft.com',NULL,404,'GET',NULL,''),(218973,'2025-07-12 15:04:03','/getmad.today/','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://server.getmad.today:2083/',404,'GET',NULL,''),(218974,'2025-07-12 15:04:26','/getmad.today/','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://server.getmad.today:2083/',404,'GET',NULL,''),(218975,'2025-07-12 15:12:58','/about/alexandra-m-rizk/','https://www.getmad.today','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)',NULL,404,'GET',NULL,''),(218976,'2025-07-12 15:15:52','/2015/09/labor-market-attachment-refresher/','https://www.getmad.today','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)',NULL,404,'GET',NULL,''),(218977,'2025-07-12 15:17:01','/wp-content/plugins/addons-for-divi/includes/customizer/css/brainaddons-customizer-preview.css?ver=3.5.0','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/wp-login.php?redirect_to=https%3A%2F%2Fthelomad.com%2Fwp-admin%2F&reauth=1',404,'GET',NULL,''),(218978,'2025-07-12 15:17:27','/wp-content/plugins/addons-for-divi/includes/customizer/css/brainaddons-customizer-preview.css?ver=3.5.0','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/wp-login.php?redirect_to=https%3A%2F%2Fthelomad.com%2Fwp-admin%2F&reauth=1',404,'GET',NULL,''),(218979,'2025-07-12 15:19:56','/~getmadto/','http://162.240.221.145','Mozilla/5.0 (Windows NT 6.1; WOW64) SkypeUriPreview Preview/0.5 skype-url-preview@microsoft.com',NULL,404,'GET',NULL,''),(218980,'2025-07-12 15:24:18','/wp-content/plugins/addons-for-divi/includes/customizer/css/brainaddons-customizer-preview.css?ver=3.5.0','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/wp-login.php?redirect_to=https%3A%2F%2Fthelomad.com%2Fwp-admin%2F&reauth=1',404,'GET',NULL,''),(218981,'2025-07-12 15:24:41','/getmad.today/wp-content/uploads/2022/09/LOMAD-Logo-190x120-1.jpg','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(218982,'2025-07-12 15:24:41','/getmad.today/wp-content/uploads/2022/09/2022-Largest-Buffalo-law-firms.jpg','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(218983,'2025-07-12 15:24:42','/getmad.today/wp-content/uploads/2021/09/MWBE-Logo-300x141-1.png','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(218984,'2025-07-12 15:24:43','/getmad.today/wp-content/uploads/2022/09/LOMAD-Hands-In-100x100-1-1.png','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(218985,'2025-07-12 15:24:44','/getmad.today/wp-content/uploads/2022/09/LOMAD-Newsletter-Blue-3.png','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(218986,'2025-07-12 15:24:45','/getmad.today/wp-content/uploads/2021/09/AdobeStock_209705558.jpeg','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(218987,'2025-07-12 15:24:45','/getmad.today/wp-content/uploads/2022/08/LOMAD-Icons-TV-blue-100-x-100.png','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(218988,'2025-07-12 15:24:46','/getmad.today/wp-content/uploads/2021/09/AdobeStock_443605491-1.jpg','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(218989,'2025-07-12 15:24:47','/getmad.today/wp-content/uploads/2021/11/bannerslide1-2.jpg','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(218990,'2025-07-12 15:24:48','/getmad.today/wp-content/uploads/2021/11/MULTI-114764-1-ap3.jpg','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(218991,'2025-07-12 15:24:48','/getmad.today/wp-content/uploads/2021/11/bannerslide3.jpeg','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(218992,'2025-07-12 15:24:49','/getmad.today/wp-content/uploads/2021/11/bannerslid2.jpeg','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(218993,'2025-07-12 15:24:49','/getmad.today/wp-content/uploads/2021/11/CUSTOM-975884-1.jpg','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(218994,'2025-07-12 15:24:51','/getmad.today/wp-content/uploads/2021/11/CUSTOM-1069294-Badge-1.jpg','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(218995,'2025-07-12 15:24:52','/getmad.today/wp-content/uploads/2021/11/CUSTOM-870784-cmyk.png','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(218996,'2025-07-12 15:24:52','/getmad.today/wp-content/uploads/2021/11/101814-cmyk-1.png','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(218997,'2025-07-12 15:24:53','/getmad.today/wp-content/uploads/2022/03/badge.jpg','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(218998,'2025-07-12 15:24:53','/getmad.today/wp-content/uploads/2021/11/women2020-1.jpg','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(218999,'2025-07-12 15:24:55','/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_209705558.jpeg','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(219000,'2025-07-12 15:24:55','/getmad.today/wp-contentthelomad.com/getmad.today/wp-content/uploads/2021/09/AdobeStock_443605491-1.jpg','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(219001,'2025-07-12 15:24:55','/getmad.today/wp-content/uploads/2022/09/holiday-photoChristmas2021-1400x662-1.png','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,''),(219002,'2025-07-12 15:24:55','/getmad.today/wp-content/uploads/2021/08/AdobeStock_108033031-D.jpg','https://thelomad.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36','https://thelomad.com/',404,'GET',NULL,'');
/*!40000 ALTER TABLE `cuB_redirection_404` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_redirection_groups`
--

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

--
-- Dumping data for table `cuB_redirection_groups`
--

LOCK TABLES `cuB_redirection_groups` WRITE;
/*!40000 ALTER TABLE `cuB_redirection_groups` DISABLE KEYS */;
INSERT INTO `cuB_redirection_groups` VALUES (1,'Redirections',1,1,'enabled',0),(2,'Modified Posts',1,1,'enabled',1),(3,'Redirections',1,1,'enabled',2),(4,'Modified Posts',1,1,'enabled',3),(5,'Global Rules',1,1,'enabled',4),(6,'URL Mapper Redirection',1,1,'enabled',5);
/*!40000 ALTER TABLE `cuB_redirection_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_redirection_items`
--

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

--
-- Dumping data for table `cuB_redirection_items`
--

LOCK TABLES `cuB_redirection_items` WRITE;
/*!40000 ALTER TABLE `cuB_redirection_items` DISABLE KEYS */;
INSERT INTO `cuB_redirection_items` VALUES (1,'/daniel-flynn/','/daniel-flynn','{\"source\":{\"flag_regex\":false}}',0,0,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/about/daniel-flynn/','url',NULL),(2,'/elena-n-camp/','/elena-n-camp','{\"source\":{\"flag_regex\":false}}',0,1,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/about/elena-n-camp/','url',NULL),(3,'/lomad-newsletter/','/lomad-newsletter','{\"source\":{\"flag_regex\":false}}',0,2,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/blog/lomad-newsletter/','url',NULL),(4,'/danielle-draschan/','/danielle-draschan','{\"source\":{\"flag_regex\":false}}',0,3,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/about/danielle-draschan/','url',NULL),(5,'/corrine-newman/','/corrine-newman','{\"source\":{\"flag_regex\":false}}',0,4,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/about/corrine-newman/','url',NULL),(6,'/francis-christiano/','/francis-christiano','{\"source\":{\"flag_regex\":false}}',0,5,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/about/francis-christiano/','url',NULL),(7,'/jessica-stevens/','/jessica-stevens','{\"source\":{\"flag_regex\":false}}',0,6,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/about/jessica-stevens/','url',NULL),(8,'/2013/01/did-you-know/','/2013/01/did-you-know','{\"source\":{\"flag_regex\":false}}',0,0,8,'2022-08-18 19:15:39',6,'enabled','url',301,'/blog/2013/01/','url',NULL),(9,'/about-us/','/about-us','{\"source\":{\"flag_regex\":false}}',0,1,490,'2022-08-19 21:14:47',6,'enabled','url',301,'/about/','url',NULL),(10,'/author/efourie/','/author/efourie','{\"source\":{\"flag_regex\":false}}',0,2,96,'2022-08-13 09:55:55',6,'enabled','url',301,'/blog','url',NULL),(11,'/author/jcousins/','/author/jcousins','{\"source\":{\"flag_regex\":false}}',0,3,123,'2022-08-15 18:03:08',6,'enabled','url',301,'/blog','url',NULL),(12,'/author/jcousins/page/2/','/author/jcousins/page/2','{\"source\":{\"flag_regex\":false}}',0,4,39,'2022-08-13 07:54:24',6,'enabled','url',301,'/blog','url',NULL),(13,'/author/mday/','/author/mday','{\"source\":{\"flag_regex\":false}}',0,5,177,'2022-08-20 15:47:37',6,'enabled','url',301,'/blog','url',NULL),(14,'/author/mday/page/10/','/author/mday/page/10','{\"source\":{\"flag_regex\":false}}',0,6,20,'2022-05-24 17:02:29',6,'enabled','url',301,'/blog','url',NULL),(15,'/author/mday/page/2/','/author/mday/page/2','{\"source\":{\"flag_regex\":false}}',0,7,89,'2022-08-13 10:49:10',6,'enabled','url',301,'/blog','url',NULL),(16,'/author/mday/page/3/','/author/mday/page/3','{\"source\":{\"flag_regex\":false}}',0,8,67,'2022-08-13 10:51:40',6,'enabled','url',301,'/blog','url',NULL),(17,'/author/mday/page/4/','/author/mday/page/4','{\"source\":{\"flag_regex\":false}}',0,9,68,'2022-08-13 10:50:48',6,'enabled','url',301,'/blog','url',NULL),(18,'/author/mday/page/5/','/author/mday/page/5','{\"source\":{\"flag_regex\":false}}',0,10,72,'2022-08-13 10:49:54',6,'enabled','url',301,'/blog','url',NULL),(19,'/author/mday/page/6/','/author/mday/page/6','{\"source\":{\"flag_regex\":false}}',0,11,46,'2022-08-13 07:17:04',6,'enabled','url',301,'/blog','url',NULL),(20,'/author/mday/page/7/','/author/mday/page/7','{\"source\":{\"flag_regex\":false}}',0,12,14,'2022-06-05 07:41:50',6,'enabled','url',301,'/blog','url',NULL),(21,'/author/mday/page/8/','/author/mday/page/8','{\"source\":{\"flag_regex\":false}}',0,13,12,'2022-05-09 14:59:17',6,'enabled','url',301,'/blog','url',NULL),(22,'/author/mday/page/9/','/author/mday/page/9','{\"source\":{\"flag_regex\":false}}',0,14,16,'2022-05-17 04:56:06',6,'enabled','url',301,'/blog','url',NULL),(23,'/author/mszeliga/','/author/mszeliga','{\"source\":{\"flag_regex\":false}}',0,15,132,'2022-08-21 21:17:30',6,'enabled','url',301,'/blog','url',NULL),(24,'/category/im-mad/','/category/im-mad','{\"source\":{\"flag_regex\":false}}',0,16,100,'2022-08-13 10:32:52',6,'enabled','url',301,'/blog','url',NULL),(25,'/category/im-mad/page/2/','/category/im-mad/page/2','{\"source\":{\"flag_regex\":false}}',0,17,44,'2022-08-13 07:34:24',6,'enabled','url',301,'/blog','url',NULL),(26,'/category/mad-news/','/category/mad-news','{\"source\":{\"flag_regex\":false}}',0,18,120,'2022-08-13 10:31:07',6,'enabled','url',301,'/blog','url',NULL),(27,'/category/mad-news/page/10/','/category/mad-news/page/10','{\"source\":{\"flag_regex\":false}}',0,19,18,'2022-03-01 11:19:26',6,'enabled','url',301,'/blog','url',NULL),(28,'/category/mad-news/page/11/','/category/mad-news/page/11','{\"source\":{\"flag_regex\":false}}',0,20,16,'2022-03-11 07:54:01',6,'enabled','url',301,'/blog','url',NULL),(29,'/category/mad-news/page/12/','/category/mad-news/page/12','{\"source\":{\"flag_regex\":false}}',0,21,8,'2022-03-13 11:42:18',6,'enabled','url',301,'/blog','url',NULL),(30,'/category/mad-news/page/13/','/category/mad-news/page/13','{\"source\":{\"flag_regex\":false}}',0,22,6,'2022-03-06 21:46:02',6,'enabled','url',301,'/blog','url',NULL),(31,'/category/mad-news/page/14/','/category/mad-news/page/14','{\"source\":{\"flag_regex\":false}}',0,23,6,'2022-02-16 13:46:41',6,'enabled','url',301,'/blog','url',NULL),(32,'/category/mad-news/page/15/','/category/mad-news/page/15','{\"source\":{\"flag_regex\":false}}',0,24,0,'0000-00-00 00:00:00',6,'enabled','url',301,'/blog','url',NULL),(33,'/category/mad-news/page/2/','/category/mad-news/page/2','{\"source\":{\"flag_regex\":false}}',0,25,63,'2022-08-13 10:30:13',6,'enabled','url',301,'/blog','url',NULL),(34,'/category/mad-news/page/3/','/category/mad-news/page/3','{\"source\":{\"flag_regex\":false}}',0,26,67,'2022-08-13 11:01:35',6,'enabled','url',301,'/blog','url',NULL),(35,'/category/mad-news/page/4/','/category/mad-news/page/4','{\"source\":{\"flag_regex\":false}}',0,27,44,'2022-08-13 07:32:45',6,'enabled','url',301,'/blog','url',NULL),(36,'/category/mad-news/page/5/','/category/mad-news/page/5','{\"source\":{\"flag_regex\":false}}',0,28,16,'2022-06-09 17:01:39',6,'enabled','url',301,'/blog','url',NULL),(37,'/category/mad-news/page/6/','/category/mad-news/page/6','{\"source\":{\"flag_regex\":false}}',0,29,20,'2022-04-07 13:42:56',6,'enabled','url',301,'/blog','url',NULL),(38,'/category/mad-news/page/7/','/category/mad-news/page/7','{\"source\":{\"flag_regex\":false}}',0,30,10,'2022-05-10 19:28:50',6,'enabled','url',301,'/blog','url',NULL),(39,'/category/mad-news/page/8/','/category/mad-news/page/8','{\"source\":{\"flag_regex\":false}}',0,31,18,'2022-03-18 22:36:02',6,'enabled','url',301,'/blog','url',NULL),(40,'/category/mad-news/page/9/','/category/mad-news/page/9','{\"source\":{\"flag_regex\":false}}',0,32,18,'2022-03-24 08:25:46',6,'enabled','url',301,'/blog','url',NULL),(41,'/category/nys-workers-compensation/','/category/nys-workers-compensation','{\"source\":{\"flag_regex\":false}}',0,33,135,'2022-08-17 14:44:18',6,'enabled','url',301,'/blog','url',NULL),(42,'/category/nys-workers-compensation/page/10/','/category/nys-workers-compensation/page/10','{\"source\":{\"flag_regex\":false}}',0,34,0,'0000-00-00 00:00:00',6,'enabled','url',301,'/blog','url',NULL),(43,'/category/nys-workers-compensation/page/11/','/category/nys-workers-compensation/page/11','{\"source\":{\"flag_regex\":false}}',0,35,2,'2022-04-28 08:02:07',6,'enabled','url',301,'/blog','url',NULL),(44,'/category/nys-workers-compensation/page/12/','/category/nys-workers-compensation/page/12','{\"source\":{\"flag_regex\":false}}',0,36,0,'0000-00-00 00:00:00',6,'enabled','url',301,'/blog','url',NULL),(45,'/category/nys-workers-compensation/page/13/','/category/nys-workers-compensation/page/13','{\"source\":{\"flag_regex\":false}}',0,37,0,'0000-00-00 00:00:00',6,'enabled','url',301,'/blog','url',NULL),(46,'/category/nys-workers-compensation/page/14/','/category/nys-workers-compensation/page/14','{\"source\":{\"flag_regex\":false}}',0,38,0,'0000-00-00 00:00:00',6,'enabled','url',301,'/blog','url',NULL),(47,'/category/nys-workers-compensation/page/15/','/category/nys-workers-compensation/page/15','{\"source\":{\"flag_regex\":false}}',0,39,0,'0000-00-00 00:00:00',6,'enabled','url',301,'/blog','url',NULL),(48,'/category/nys-workers-compensation/page/2/','/category/nys-workers-compensation/page/2','{\"source\":{\"flag_regex\":false}}',0,40,34,'2022-08-13 11:37:07',6,'enabled','url',301,'/blog','url',NULL),(49,'/category/nys-workers-compensation/page/3/','/category/nys-workers-compensation/page/3','{\"source\":{\"flag_regex\":false}}',0,41,40,'2022-06-29 05:15:11',6,'enabled','url',301,'/blog','url',NULL),(50,'/category/nys-workers-compensation/page/4/','/category/nys-workers-compensation/page/4','{\"source\":{\"flag_regex\":false}}',0,42,44,'2022-08-01 03:57:29',6,'enabled','url',301,'/blog','url',NULL),(51,'/category/nys-workers-compensation/page/5/','/category/nys-workers-compensation/page/5','{\"source\":{\"flag_regex\":false}}',0,43,10,'2022-02-22 09:01:47',6,'enabled','url',301,'/blog','url',NULL),(52,'/category/nys-workers-compensation/page/6/','/category/nys-workers-compensation/page/6','{\"source\":{\"flag_regex\":false}}',0,44,6,'2022-05-01 09:25:05',6,'enabled','url',301,'/blog','url',NULL),(53,'/category/nys-workers-compensation/page/7/','/category/nys-workers-compensation/page/7','{\"source\":{\"flag_regex\":false}}',0,45,10,'2022-03-19 13:10:35',6,'enabled','url',301,'/blog','url',NULL),(54,'/category/nys-workers-compensation/page/8/','/category/nys-workers-compensation/page/8','{\"source\":{\"flag_regex\":false}}',0,46,14,'2022-03-04 05:38:25',6,'enabled','url',301,'/blog','url',NULL),(55,'/category/nys-workers-compensation/page/9/','/category/nys-workers-compensation/page/9','{\"source\":{\"flag_regex\":false}}',0,47,2,'2021-11-28 19:07:10',6,'enabled','url',301,'/blog','url',NULL),(56,'/category/uncategorized/','/category/uncategorized','{\"source\":{\"flag_regex\":false}}',0,48,133,'2022-08-13 08:52:19',6,'enabled','url',301,'/blog','url',NULL),(58,'/client-resources/case-law-updates/','/client-resources/case-law-updates','{\"source\":{\"flag_regex\":false}}',0,50,151,'2022-08-13 12:24:20',6,'enabled','url',301,'/client-resources/case-law-updates-lomad-case-law-updates/','url',NULL),(59,'/client-resources/helpful-links/','/client-resources/helpful-links','{\"source\":{\"flag_regex\":false}}',0,51,246,'2022-08-21 04:46:40',6,'enabled','url',301,'/client-resources/','url',NULL),(60,'/client-resources/life-awards-2/','/client-resources/life-awards-2','{\"source\":{\"flag_regex\":false}}',0,52,139,'2022-08-19 18:49:04',6,'enabled','url',301,'/client-resources/','url',NULL),(61,'/client-resources/mt-rates/','/client-resources/mt-rates','{\"source\":{\"flag_regex\":false}}',0,53,127,'2022-08-18 19:12:02',6,'enabled','url',301,'/client-resources/max-rates/','url',NULL),(62,'/client-resources/permanency-guidelines/','/client-resources/permanency-guidelines','{\"source\":{\"flag_regex\":false}}',0,54,116,'2022-08-13 15:39:04',6,'enabled','url',301,'/client-resources/','url',NULL),(64,'/client-resources/sluphp/','/client-resources/sluphp','{\"source\":{\"flag_regex\":false}}',0,56,522,'2022-08-20 14:09:45',6,'enabled','url',301,'/client-resources/slu-php/','url',NULL),(65,'/contact-us/','/contact-us','{\"source\":{\"flag_regex\":false}}',0,57,4491,'2022-08-22 06:03:43',6,'enabled','url',301,'/contact/','url',NULL),(66,'/events/lomad-newsletter/','/events/lomad-newsletter','{\"source\":{\"flag_regex\":false}}',0,58,198,'2022-08-19 04:32:14',6,'enabled','url',301,'/blog/lomad-newsletter/','url',NULL),(67,'/merchandise/','/merchandise','{\"source\":{\"flag_regex\":false}}',0,59,156,'2022-08-18 04:51:37',6,'enabled','url',301,'/about/','url',NULL),(68,'/news-and-events-2','/news-and-events-2','{\"source\":{\"flag_regex\":false}}',0,60,37,'2022-08-13 06:22:22',6,'enabled','url',301,'/client-resources/','url',NULL),(69,'/ny-wc-blog/','/ny-wc-blog','{\"source\":{\"flag_regex\":false}}',0,61,200,'2022-08-21 05:27:13',6,'enabled','url',301,'/blog/','url',NULL),(70,'/ny-wc-blog/page/10/','/ny-wc-blog/page/10','{\"source\":{\"flag_regex\":false}}',0,62,12,'2022-05-29 14:39:56',6,'enabled','url',301,'/blog/','url',NULL),(71,'/ny-wc-blog/page/11/','/ny-wc-blog/page/11','{\"source\":{\"flag_regex\":false}}',0,63,22,'2022-08-21 15:03:13',6,'enabled','url',301,'/blog/','url',NULL),(72,'/ny-wc-blog/page/12/','/ny-wc-blog/page/12','{\"source\":{\"flag_regex\":false}}',0,64,22,'2022-07-20 22:54:10',6,'enabled','url',301,'/blog/','url',NULL),(73,'/ny-wc-blog/page/13/','/ny-wc-blog/page/13','{\"source\":{\"flag_regex\":false}}',0,65,20,'2022-08-11 16:49:02',6,'enabled','url',301,'/blog/','url',NULL),(74,'/ny-wc-blog/page/14/','/ny-wc-blog/page/14','{\"source\":{\"flag_regex\":false}}',0,66,26,'2022-08-13 06:09:26',6,'enabled','url',301,'/blog/','url',NULL),(75,'/ny-wc-blog/page/15/','/ny-wc-blog/page/15','{\"source\":{\"flag_regex\":false}}',0,67,0,'0000-00-00 00:00:00',6,'enabled','url',301,'/blog/','url',NULL),(76,'/ny-wc-blog/page/16/','/ny-wc-blog/page/16','{\"source\":{\"flag_regex\":false}}',0,68,0,'0000-00-00 00:00:00',6,'enabled','url',301,'/blog/','url',NULL),(77,'/ny-wc-blog/page/17/','/ny-wc-blog/page/17','{\"source\":{\"flag_regex\":false}}',0,69,2,'2021-11-23 21:12:52',6,'enabled','url',301,'/blog/','url',NULL),(78,'/ny-wc-blog/page/18/','/ny-wc-blog/page/18','{\"source\":{\"flag_regex\":false}}',0,70,0,'0000-00-00 00:00:00',6,'enabled','url',301,'/blog/','url',NULL),(79,'/ny-wc-blog/page/19/','/ny-wc-blog/page/19','{\"source\":{\"flag_regex\":false}}',0,71,0,'0000-00-00 00:00:00',6,'enabled','url',301,'/blog/','url',NULL),(80,'/ny-wc-blog/page/2/','/ny-wc-blog/page/2','{\"source\":{\"flag_regex\":false}}',0,72,154,'2022-08-13 11:25:43',6,'enabled','url',301,'/blog/','url',NULL),(81,'/ny-wc-blog/page/3/','/ny-wc-blog/page/3','{\"source\":{\"flag_regex\":false}}',0,73,46,'2022-08-13 08:02:53',6,'enabled','url',301,'/blog/','url',NULL),(82,'/ny-wc-blog/page/4/','/ny-wc-blog/page/4','{\"source\":{\"flag_regex\":false}}',0,74,22,'2022-07-07 06:59:28',6,'enabled','url',301,'/blog/','url',NULL),(83,'/ny-wc-blog/page/5/','/ny-wc-blog/page/5','{\"source\":{\"flag_regex\":false}}',0,75,14,'2022-06-05 06:52:09',6,'enabled','url',301,'/blog/','url',NULL),(84,'/ny-wc-blog/page/6/','/ny-wc-blog/page/6','{\"source\":{\"flag_regex\":false}}',0,76,24,'2022-07-01 23:34:14',6,'enabled','url',301,'/blog/','url',NULL),(85,'/ny-wc-blog/page/7/','/ny-wc-blog/page/7','{\"source\":{\"flag_regex\":false}}',0,77,22,'2022-07-24 16:37:59',6,'enabled','url',301,'/blog/','url',NULL),(86,'/ny-wc-blog/page/8/','/ny-wc-blog/page/8','{\"source\":{\"flag_regex\":false}}',0,78,14,'2022-06-18 02:45:04',6,'enabled','url',301,'/blog/','url',NULL),(87,'/ny-wc-blog/page/9/','/ny-wc-blog/page/9','{\"source\":{\"flag_regex\":false}}',0,79,10,'2022-06-23 12:34:40',6,'enabled','url',301,'/blog/','url',NULL),(88,'/tag/attorney/','/tag/attorney','{\"source\":{\"flag_regex\":false}}',0,80,92,'2022-08-13 09:03:22',6,'enabled','url',301,'/blog/','url',NULL),(89,'/tag/average-weekly-wage/','/tag/average-weekly-wage','{\"source\":{\"flag_regex\":false}}',0,81,77,'2022-08-22 01:08:48',6,'enabled','url',301,'/blog/','url',NULL),(90,'/tag/buffalo/','/tag/buffalo','{\"source\":{\"flag_regex\":false}}',0,82,111,'2022-08-13 10:08:27',6,'enabled','url',301,'/blog/','url',NULL),(91,'/tag/carrier/','/tag/carrier','{\"source\":{\"flag_regex\":false}}',0,83,86,'2022-08-13 09:07:00',6,'enabled','url',301,'/blog/','url',NULL),(92,'/tag/compensable/','/tag/compensable','{\"source\":{\"flag_regex\":false}}',0,84,108,'2022-08-20 02:53:46',6,'enabled','url',301,'/blog/','url',NULL),(93,'/tag/cost-containment/','/tag/cost-containment','{\"source\":{\"flag_regex\":false}}',0,85,87,'2022-08-13 10:41:33',6,'enabled','url',301,'/blog/','url',NULL),(94,'/tag/costs/','/tag/costs','{\"source\":{\"flag_regex\":false}}',0,86,142,'2022-08-13 08:21:29',6,'enabled','url',301,'/blog/','url',NULL),(95,'/tag/cost-savings/','/tag/cost-savings','{\"source\":{\"flag_regex\":false}}',0,87,81,'2022-08-13 10:13:20',6,'enabled','url',301,'/blog/','url',NULL),(96,'/tag/counsel/','/tag/counsel','{\"source\":{\"flag_regex\":false}}',0,88,109,'2022-08-13 10:39:52',6,'enabled','url',301,'/blog/','url',NULL),(97,'/tag/defense/','/tag/defense','{\"source\":{\"flag_regex\":false}}',0,89,117,'2022-08-19 15:40:41',6,'enabled','url',301,'/blog/','url',NULL),(98,'/tag/five-day-worker/','/tag/five-day-worker','{\"source\":{\"flag_regex\":false}}',0,90,46,'2022-08-13 07:52:37',6,'enabled','url',301,'/blog/','url',NULL),(99,'/tag/full-board-panel/','/tag/full-board-panel','{\"source\":{\"flag_regex\":false}}',0,91,83,'2022-08-13 10:40:39',6,'enabled','url',301,'/blog/','url',NULL),(100,'/tag/independent-medical-examination/','/tag/independent-medical-examination','{\"source\":{\"flag_regex\":false}}',0,92,104,'2022-08-13 13:54:51',6,'enabled','url',301,'/blog/','url',NULL),(101,'/tag/insurance/','/tag/insurance','{\"source\":{\"flag_regex\":false}}',0,93,101,'2022-08-13 10:12:37',6,'enabled','url',301,'/blog/','url',NULL),(102,'/tag/medical-treatment-guidelines/','/tag/medical-treatment-guidelines','{\"source\":{\"flag_regex\":false}}',0,94,74,'2022-08-13 11:49:40',6,'enabled','url',301,'/blog/','url',NULL),(103,'/tag/mitigation/','/tag/mitigation','{\"source\":{\"flag_regex\":false}}',0,95,80,'2022-08-13 08:59:17',6,'enabled','url',301,'/blog/','url',NULL),(104,'/tag/narcotics/','/tag/narcotics','{\"source\":{\"flag_regex\":false}}',0,96,88,'2022-08-13 09:40:09',6,'enabled','url',301,'/blog/','url',NULL),(105,'/tag/new-york/','/tag/new-york','{\"source\":{\"flag_regex\":false}}',0,97,96,'2022-08-13 09:01:44',6,'enabled','url',301,'/blog/','url',NULL),(106,'/tag/new-york-state-workers-compensation/','/tag/new-york-state-workers-compensation','{\"source\":{\"flag_regex\":false}}',0,98,76,'2022-08-13 12:11:48',6,'enabled','url',301,'/blog/','url',NULL),(107,'/tag/new-york-workers-compensation/','/tag/new-york-workers-compensation','{\"source\":{\"flag_regex\":false}}',0,99,50,'2022-08-13 07:44:39',6,'enabled','url',301,'/blog/','url',NULL),(108,'/tag/nexus/','/tag/nexus','{\"source\":{\"flag_regex\":false}}',0,100,97,'2022-08-13 09:38:25',6,'enabled','url',301,'/blog/','url',NULL),(109,'/tag/non-acute-pain/','/tag/non-acute-pain','{\"source\":{\"flag_regex\":false}}',0,101,113,'2022-08-21 06:26:27',6,'enabled','url',301,'/blog/','url',NULL),(110,'/tag/non-acute-pain-medical-treatment-guidelines/','/tag/non-acute-pain-medical-treatment-guidelines','{\"source\":{\"flag_regex\":false}}',0,102,45,'2022-08-13 12:45:07',6,'enabled','url',301,'/blog/','url',NULL),(111,'/tag/opioids/','/tag/opioids','{\"source\":{\"flag_regex\":false}}',0,103,99,'2022-08-13 09:02:34',6,'enabled','url',301,'/blog/','url',NULL),(112,'/tag/representation/','/tag/representation','{\"source\":{\"flag_regex\":false}}',0,104,93,'2022-08-21 23:34:20',6,'enabled','url',301,'/blog/','url',NULL),(113,'/tag/self-insured/','/tag/self-insured','{\"source\":{\"flag_regex\":false}}',0,105,82,'2022-08-13 10:39:03',6,'enabled','url',301,'/blog/','url',NULL),(114,'/tag/six-day-worker/','/tag/six-day-worker','{\"source\":{\"flag_regex\":false}}',0,106,51,'2022-08-13 07:51:44',6,'enabled','url',301,'/blog/','url',NULL),(115,'/tag/testimony/','/tag/testimony','{\"source\":{\"flag_regex\":false}}',0,107,152,'2022-08-20 08:10:20',6,'enabled','url',301,'/blog/','url',NULL),(116,'/tag/wcl-§-10/','/tag/wcl-%c2%a7-10','{\"source\":{\"flag_regex\":false}}',0,108,72,'2022-08-13 18:37:15',6,'enabled','url',301,'/blog/','url',NULL),(117,'/tag/wcl-§-211/','/tag/wcl-%c2%a7-211','{\"source\":{\"flag_regex\":false}}',0,109,68,'2022-08-13 08:19:54',6,'enabled','url',301,'/blog/','url',NULL),(118,'/tag/workers-compensation/','/tag/workers-compensation','{\"source\":{\"flag_regex\":false}}',0,110,78,'2022-08-20 14:29:52',6,'enabled','url',301,'/blog/','url',NULL),(119,'/tag/workers-compensation-defense/','/tag/workers-compensation-defense','{\"source\":{\"flag_regex\":false}}',0,111,86,'2022-08-20 03:12:23',6,'enabled','url',301,'/blog/','url',NULL),(120,'/team/careers/','/team/careers','{\"source\":{\"flag_regex\":false}}',0,112,42,'2022-08-11 18:56:49',6,'enabled','url',301,'/the-teams/careers/','url',NULL),(121,'/team/litigation-team/','/team/litigation-team','{\"source\":{\"flag_regex\":false}}',0,113,48,'2022-08-18 17:00:27',6,'enabled','url',301,'/the-teams/','url',NULL),(122,'/team/wc-staff/','/team/wc-staff','{\"source\":{\"flag_regex\":false}}',0,114,18,'2022-06-10 11:30:55',6,'enabled','url',301,'/the-teams/workers-compensation-team/','url',NULL),(123,'/team/workers-compensation-attorneys/','/team/workers-compensation-attorneys','{\"source\":{\"flag_regex\":false}}',0,115,26,'2022-07-12 22:30:58',6,'enabled','url',301,'/the-teams/workers-compensation-team/','url',NULL),(124,'/team_member/alexis-d-hatten/','/team_member/alexis-d-hatten','{\"source\":{\"flag_regex\":false}}',0,116,323,'2022-08-21 02:15:43',6,'enabled','url',301,'/attorney/hatten-alexis-d/','url',NULL),(125,'/team_member/brendan-t-shannon/','/team_member/brendan-t-shannon','{\"source\":{\"flag_regex\":false}}',0,117,148,'2022-08-22 10:29:06',6,'enabled','url',301,'/attorney/shannon-brendan-t/','url',NULL),(126,'/team_member/brian-k-prince/','/team_member/brian-k-prince','{\"source\":{\"flag_regex\":false}}',0,118,441,'2022-08-18 19:23:46',6,'enabled','url',301,'/attorney/prince-brian-k/','url',NULL),(127,'/team_member/cassandra-e-christman/','/team_member/cassandra-e-christman','{\"source\":{\"flag_regex\":false}}',0,119,432,'2022-08-19 23:06:17',6,'enabled','url',301,'/the-teams/workers-compensation-team/','url',NULL),(128,'/team_member/daniel-flynn/','/team_member/daniel-flynn','{\"source\":{\"flag_regex\":false}}',0,120,195,'2022-08-21 10:57:00',6,'enabled','url',301,'/about/daniel-flynn/','url',NULL),(129,'/team_member/elena-n-camp/','/team_member/elena-n-camp','{\"source\":{\"flag_regex\":false}}',0,121,249,'2022-08-21 20:25:56',6,'enabled','url',301,'/about/elena-n-camp/','url',NULL),(130,'/team_member/hannah-kim/','/team_member/hannah-kim','{\"source\":{\"flag_regex\":false}}',0,122,123,'2022-08-13 12:15:43',6,'enabled','url',301,'/about/hannah-kim/','url',NULL),(131,'/team_member/james-b-cousins/','/team_member/james-b-cousins','{\"source\":{\"flag_regex\":false}}',0,123,478,'2022-08-20 11:24:47',6,'enabled','url',301,'/attorney/cousins-james-b/','url',NULL),(132,'/team_member/jenny-malkowski/','/team_member/jenny-malkowski','{\"source\":{\"flag_regex\":false}}',0,124,157,'2022-08-15 12:33:53',6,'enabled','url',301,'/about/jenny-malkowski/','url',NULL),(133,'/team_member/jillian-chavers/','/team_member/jillian-chavers','{\"source\":{\"flag_regex\":false}}',0,125,106,'2022-08-22 07:14:03',6,'enabled','url',301,'/about/jillian-chavers/','url',NULL),(134,'/team_member/jody-guiher/','/team_member/jody-guiher','{\"source\":{\"flag_regex\":false}}',0,126,85,'2022-08-13 13:59:43',6,'enabled','url',301,'/about/jody-guiher/','url',NULL),(135,'/team_member/justice-c-williams/','/team_member/justice-c-williams','{\"source\":{\"flag_regex\":false}}',0,127,175,'2022-08-19 08:30:46',6,'enabled','url',301,'/about/justice-c-williams/','url',NULL),(136,'/team_member/katrina-gray/','/team_member/katrina-gray','{\"source\":{\"flag_regex\":false}}',0,128,359,'2022-08-18 09:34:33',6,'enabled','url',301,'/attorney/gray-katrina/','url',NULL),(137,'/team_member/kristin-m-machelor/','/team_member/kristin-m-machelor','{\"source\":{\"flag_regex\":false}}',0,129,485,'2022-08-20 01:43:31',6,'enabled','url',301,'/the-teams/workers-compensation-team/','url',NULL),(138,'/team_member/melanie-a-daly/','/team_member/melanie-a-daly','{\"source\":{\"flag_regex\":false}}',0,130,244,'2022-08-13 12:49:49',6,'enabled','url',301,'/attorney/daly-melanie-a/','url',NULL),(139,'/team_member/melissa-a-day/','/team_member/melissa-a-day','{\"source\":{\"flag_regex\":false}}',0,131,362,'2022-08-21 12:02:25',6,'enabled','url',301,'/attorney/day-melissa-a/','url',NULL),(140,'/team_member/najee-walker/','/team_member/najee-walker','{\"source\":{\"flag_regex\":false}}',0,132,341,'2022-08-20 03:15:51',6,'enabled','url',301,'/the-teams/workers-compensation-team/','url',NULL),(141,'/team_member/neil-a-diegelman/','/team_member/neil-a-diegelman','{\"source\":{\"flag_regex\":false}}',0,133,299,'2022-08-17 12:01:38',6,'enabled','url',301,'/attorney/diegelman-neil-a/','url',NULL),(142,'/team_member/paul-b-kornacki/','/team_member/paul-b-kornacki','{\"source\":{\"flag_regex\":false}}',0,134,357,'2022-08-20 21:48:09',6,'enabled','url',301,'/attorney/kornacki-paul-b-/','url',NULL),(143,'/team_member/rebecca-brashear/','/team_member/rebecca-brashear','{\"source\":{\"flag_regex\":false}}',0,135,240,'2022-08-17 21:14:08',6,'enabled','url',301,'/about/rebecca-brashear/','url',NULL),(144,'/team_member/shannan-m-mackey/','/team_member/shannan-m-mackey','{\"source\":{\"flag_regex\":false}}',0,136,223,'2022-08-20 02:54:00',6,'enabled','url',301,'/attorney/mackey-shannan-m-/','url',NULL),(145,'/team_member/susan-eick/','/team_member/susan-eick','{\"source\":{\"flag_regex\":false}}',0,137,107,'2022-08-13 12:18:12',6,'enabled','url',301,'/about/susan-eick/','url',NULL),(146,'/team_member/thomas-dickinson/','/team_member/thomas-dickinson','{\"source\":{\"flag_regex\":false}}',0,138,325,'2022-08-18 22:23:11',6,'enabled','url',301,'/about/thomas-dickinson/','url',NULL),(147,'/team_member/vicki-l-buehler/','/team_member/vicki-l-buehler','{\"source\":{\"flag_regex\":false}}',0,139,154,'2022-08-19 19:53:08',6,'enabled','url',301,'/attorney/buehler-vicki-l/','url',NULL),(148,'/the-team/','/the-team','{\"source\":{\"flag_regex\":false}}',0,140,137,'2021-12-30 15:54:11',6,'disabled','url',301,'/the-teams/workers-compensation-team/','url',NULL),(149,'/the-team/careers/','/the-team/careers','{\"source\":{\"flag_regex\":false}}',0,141,1016,'2022-01-12 06:57:58',6,'disabled','url',301,'/the-teams/careers/','url',NULL),(150,'/the-team/litigation-team/','/the-team/litigation-team','{\"source\":{\"flag_regex\":false}}',0,142,185,'2022-08-16 20:48:17',6,'enabled','url',301,'/the-teams/','url',NULL),(151,'/the-team/wc-team/','/the-team/wc-team','{\"source\":{\"flag_regex\":false}}',0,143,819,'2022-08-22 05:00:13',6,'enabled','url',301,'/the-teams/workers-compensation-team/','url',NULL),(152,'/amherst-workers-compensation-defense-law-office-2/','/amherst-workers-compensation-defense-law-office-2','{\"source\":{\"flag_regex\":false}}',0,7,54,'2022-08-09 22:33:12',2,'enabled','url',301,'/amherst-workers-compensation-defense-law-office/','url',NULL),(153,'/the-teams/','/the-teams','{\"source\":{\"flag_regex\":false}}',0,8,1541,'2025-07-02 19:23:58',2,'enabled','url',301,'/the-team/','url',NULL),(154,'/support-staff/','/support-staff','{\"source\":{\"flag_regex\":false}}',0,9,619,'2025-07-02 19:41:46',2,'enabled','url',301,'/legal-assistants-and-paralegals/','url',NULL),(155,'/webinars/','/webinars','{\"source\":{\"flag_regex\":false}}',0,10,1308,'2025-07-02 19:24:03',2,'enabled','url',301,'/lomadtv/','url',NULL),(156,'/about/daniel-flynn/','/about/daniel-flynn','{\"source\":{\"flag_regex\":false}}',0,11,228,'2022-08-21 11:29:42',2,'enabled','url',301,'/about/daniel-h-flynn/','url',NULL),(157,'/about/corrine-newman/','/about/corrine-newman','{\"source\":{\"flag_regex\":false}}',0,12,77,'2022-08-02 22:40:25',2,'enabled','url',301,'/about/corrine-n-newman/','url',NULL),(158,'/about/hannah-kim/','/about/hannah-kim','{\"source\":{\"flag_regex\":false}}',0,13,150,'2022-08-13 10:37:14',2,'enabled','url',301,'/about/hannah-e-kim/','url',NULL),(159,'/about/danielle-draschan/','/about/danielle-draschan','{\"source\":{\"flag_regex\":false}}',0,14,52,'2022-07-27 03:55:56',2,'enabled','url',301,'/about/danielle-f-draschan/','url',NULL),(160,'/about/jenny-malkowski/','/about/jenny-malkowski','{\"source\":{\"flag_regex\":false}}',0,15,178,'2022-08-21 12:43:57',2,'enabled','url',301,'/about/jenny-l-malkowski/','url',NULL),(161,'/about/jessica-stevens/','/about/jessica-stevens','{\"source\":{\"flag_regex\":false}}',0,16,62,'2022-08-20 09:05:31',2,'enabled','url',301,'/about/jessica-m-stevens/','url',NULL),(162,'/about/jillian-chavers/','/about/jillian-chavers','{\"source\":{\"flag_regex\":false}}',0,17,122,'2022-08-22 07:14:09',2,'enabled','url',301,'/about/jillian-m-chavers/','url',NULL),(163,'/about/jody-guiher/','/about/jody-guiher','{\"source\":{\"flag_regex\":false}}',0,18,143,'2022-08-19 09:45:20',2,'enabled','url',301,'/about/jody-l-guiher/','url',NULL),(164,'/about/rebecca-brashear/','/about/rebecca-brashear','{\"source\":{\"flag_regex\":false}}',0,19,243,'2022-08-21 00:58:08',2,'enabled','url',301,'/about/rebecca-c-brashear/','url',NULL),(165,'/about/thomas-dickinson/','/about/thomas-dickinson','{\"source\":{\"flag_regex\":false}}',0,20,364,'2022-08-18 22:23:13',2,'enabled','url',301,'/about/thomas-m-dickinson/','url',NULL),(167,'/attorney/kunz-kelsey-x/','/attorney/kunz-kelsey-x',NULL,0,22,64,'2022-08-08 00:58:52',2,'enabled','url',301,'/about/kelsey-x-kunz/','url',NULL),(168,'/blog/','/blog','{\"source\":{\"flag_regex\":false}}',0,22,855,'2022-08-22 01:08:50',2,'enabled','url',301,'/news-events-articles/','url',NULL),(169,'/attorney/harada-satoko-suki-x/','/attorney/harada-satoko-suki-x','{\"source\":{\"flag_regex\":false}}',0,23,421,'2025-07-09 21:03:07',2,'enabled','url',301,'/attorney/harada-satoko-suki/','url',NULL),(170,'/attorney/huang-bingchen-x/','/attorney/huang-bingchen-x','{\"source\":{\"flag_regex\":false}}',0,24,374,'2025-07-09 21:03:13',2,'enabled','url',301,'/attorney/huang-bingchen/','url',NULL),(171,'/blog/2022/06/interview-with-leaders-voice-usa/','/blog/2022/06/interview-with-leaders-voice-usa','{\"source\":{\"flag_regex\":false}}',0,25,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/blog/2022/05/interview-with-leaders-voice-usa/','url',NULL),(172,'/attorney/49190/','/attorney/49190','{\"source\":{\"flag_regex\":false}}',0,26,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/attorney/buehler-vicki-l/','url',NULL),(173,'/about/','/about','{\"source\":{\"flag_regex\":false}}',0,27,34,'2025-07-09 20:03:03',2,'enabled','url',301,'/home/about/','url',NULL),(174,'/bingchen-huang/','/bingchen-huang','{\"source\":{\"flag_regex\":false}}',0,28,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/the-team/workers-compensation-team/bingchen-huang/','url',NULL),(175,'/brendan-t-shannon/','/brendan-t-shannon','{\"source\":{\"flag_regex\":false}}',0,29,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/the-team/workers-compensation-team/brendan-t-shannon/','url',NULL),(176,'/the-team/workers-compensation-team/andrew-gould/','/the-team/workers-compensation-team/andrew-gould','{\"source\":{\"flag_regex\":false}}',0,30,0,'0000-00-00 00:00:00',2,'disabled','url',301,'/the-team/andrew-gould/','url',NULL),(177,'/the-team/andrew-gould/','/the-team/andrew-gould','{\"source\":{\"flag_regex\":false}}',0,31,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/the-team/workers-compensation-team/andrew-gould/','url',NULL),(178,'/the-team/backup-james-cousins/','/the-team/backup-james-cousins','{\"source\":{\"flag_regex\":false}}',0,32,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/the-team/workers-compensation-team/backup-james-cousins/','url',NULL),(179,'/the-team/workers-compensation-team/backup-james-cousins/','/the-team/workers-compensation-team/backup-james-cousins','{\"source\":{\"flag_regex\":false}}',0,33,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/the-team/workers-compensation-team/james-cousins/','url',NULL),(180,'/melissa-a-day/','/melissa-a-day','{\"source\":{\"flag_regex\":false}}',0,34,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/the-team/workers-compensation-team/melissa-a-day-2/','url',NULL),(181,'/the-team/workers-compensation-team/melissa-a-day-2/','/the-team/workers-compensation-team/melissa-a-day-2','{\"source\":{\"flag_regex\":false}}',0,35,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/the-team/workers-compensation-team/melissa-a-day/','url',NULL),(182,'/home/about/katrina-gray/','/home/about/katrina-gray','{\"source\":{\"flag_regex\":false}}',0,36,20,'2025-07-02 20:01:40',2,'enabled','url',301,'/the-team/workers-compensation-team/katrina-gray/','url',NULL),(183,'/mary-frances-schnorr/','/mary-frances-schnorr','{\"source\":{\"flag_regex\":false}}',0,37,18,'2025-07-02 19:28:41',2,'enabled','url',301,'/the-team/workers-compensation-team/mary-frances-schnorr/','url',NULL),(184,'/kristin-m-machelor/','/kristin-m-machelor','{\"source\":{\"flag_regex\":false}}',0,38,16,'2025-07-02 19:28:34',2,'enabled','url',301,'/the-team/workers-compensation-team/kristin-m-machelor/','url',NULL),(185,'/workers-compensation-practice-aids/','/workers-compensation-practice-aids','{\"source\":{\"flag_regex\":false}}',0,39,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/client-resources/workers-compensation-practice-aids/','url',NULL),(186,'/client-resources/slu-php/','/client-resources/slu-php','{\"source\":{\"flag_regex\":false}}',0,40,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/client-resources/workers-compensation-practice-aids/slu-php/','url',NULL),(187,'/client-resources/max-rates/','/client-resources/max-rates','{\"source\":{\"flag_regex\":false}}',0,41,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/client-resources/workers-compensation-practice-aids/max-rates/','url',NULL),(188,'/client-resources/ppd-caps/','/client-resources/ppd-caps','{\"source\":{\"flag_regex\":false}}',0,42,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/client-resources/workers-compensation-practice-aids/ppd-caps/','url',NULL),(189,'/disclaimer/','/disclaimer','{\"source\":{\"flag_regex\":false}}',0,43,30,'2025-06-09 15:31:29',2,'enabled','url',301,'/disclaimer-old/','url',NULL),(190,'/disclaimer/','/disclaimer','{\"source\":{\"flag_regex\":false}}',0,44,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/lomad_disclaimer/','url',NULL),(191,'/tyler-j-eckert/','/tyler-j-eckert','{\"source\":{\"flag_regex\":false}}',0,45,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/the-team/workers-compensation-team/tyler-j-eckert/','url',NULL),(192,'/home/about/alexandra-m-rizk/','/home/about/alexandra-m-rizk','{\"source\":{\"flag_regex\":false}}',0,46,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/legal-assistants-and-paralegals/alexandra-m-rizk/','url',NULL),(193,'/home/about/corrine-n-newman/','/home/about/corrine-n-newman','{\"source\":{\"flag_regex\":false}}',0,47,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/legal-assistants-and-paralegals/corrine-n-newman/','url',NULL),(194,'/home/about/danielle-f-draschan/','/home/about/danielle-f-draschan','{\"source\":{\"flag_regex\":false}}',0,48,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/legal-assistants-and-paralegals/danielle-f-draschan/','url',NULL),(195,'/home/about/elena-n-camp/','/home/about/elena-n-camp','{\"source\":{\"flag_regex\":false}}',0,49,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/legal-assistants-and-paralegals/elena-n-camp/','url',NULL),(196,'/home/about/jessica-m-stevens/','/home/about/jessica-m-stevens','{\"source\":{\"flag_regex\":false}}',0,50,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/legal-assistants-and-paralegals/jessica-m-stevens/','url',NULL),(197,'/home/about/jillian-m-chavers/','/home/about/jillian-m-chavers','{\"source\":{\"flag_regex\":false}}',0,51,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/legal-assistants-and-paralegals/jillian-m-chavers/','url',NULL),(198,'/home/about/justice-c-williams/','/home/about/justice-c-williams','{\"source\":{\"flag_regex\":false}}',0,52,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/legal-assistants-and-paralegals/justice-c-williams/','url',NULL),(199,'/home/about/kierria-a-jones/','/home/about/kierria-a-jones','{\"source\":{\"flag_regex\":false}}',0,53,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/legal-assistants-and-paralegals/kierria-a-jones/','url',NULL),(200,'/home/about/daniel-h-flynn/','/home/about/daniel-h-flynn','{\"source\":{\"flag_regex\":false}}',0,54,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/legal-assistants-and-paralegals/daniel-h-flynn/','url',NULL),(201,'/home/about/jenny-l-malkowski/','/home/about/jenny-l-malkowski','{\"source\":{\"flag_regex\":false}}',0,55,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/legal-assistants-and-paralegals/jenny-l-malkowski/','url',NULL),(202,'/home/about/jody-l-guiher/','/home/about/jody-l-guiher','{\"source\":{\"flag_regex\":false}}',0,56,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/legal-assistants-and-paralegals/jody-l-guiher/','url',NULL),(203,'/home/about/kelsey-x-kunz/','/home/about/kelsey-x-kunz','{\"source\":{\"flag_regex\":false}}',0,57,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/legal-assistants-and-paralegals/kelsey-x-kunz/','url',NULL),(204,'/home/about/rebecca-c-brashear/','/home/about/rebecca-c-brashear','{\"source\":{\"flag_regex\":false}}',0,58,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/legal-assistants-and-paralegals/rebecca-c-brashear/','url',NULL),(205,'/home/about/sabina-ogric/','/home/about/sabina-ogric','{\"source\":{\"flag_regex\":false}}',0,59,21,'2025-07-02 20:01:38',2,'enabled','url',301,'/legal-assistants-and-paralegals/sabina-ogric/','url',NULL),(206,'/home/about/thomas-m-dickinson/','/home/about/thomas-m-dickinson','{\"source\":{\"flag_regex\":false}}',0,60,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/legal-assistants-and-paralegals/thomas-m-dickinson/','url',NULL),(207,'/home/about/maxwell-j-doldan/','/home/about/maxwell-j-doldan','{\"source\":{\"flag_regex\":false}}',0,61,1,'2022-09-09 12:03:26',2,'enabled','url',301,'/legal-assistants-and-paralegals/maxwell-j-doldan/','url',NULL),(208,'/lomadtv-test-redesign/','/lomadtv-test-redesign','{\"source\":{\"flag_regex\":false}}',0,62,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/lomadtv/','url',NULL),(209,'/home/about/vicki-l-buehler/','/home/about/vicki-l-buehler','{\"source\":{\"flag_regex\":false}}',0,63,1,'2022-09-14 08:36:03',2,'enabled','url',301,'/home/about/vicki-l-buehler-old/','url',NULL),(210,'/client-resources/case-law-updates-lomad-case-law-updates/','/client-resources/case-law-updates-lomad-case-law-updates','{\"source\":{\"flag_regex\":false}}',0,64,0,'0000-00-00 00:00:00',2,'enabled','url',301,'/client-resources/lomad-case-law-updates/','url',NULL);
/*!40000 ALTER TABLE `cuB_redirection_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_redirection_logs`
--

DROP TABLE IF EXISTS `cuB_redirection_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_redirection_logs` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `created` datetime NOT NULL,
  `url` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `domain` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `sent_to` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `agent` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `referrer` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `http_code` int(11) unsigned NOT NULL DEFAULT '0',
  `request_method` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `request_data` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `redirect_by` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `redirection_id` int(11) unsigned DEFAULT NULL,
  `ip` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `created` (`created`),
  KEY `redirection_id` (`redirection_id`),
  KEY `ip` (`ip`)
) ENGINE=InnoDB AUTO_INCREMENT=64 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_redirection_logs`
--

LOCK TABLES `cuB_redirection_logs` WRITE;
/*!40000 ALTER TABLE `cuB_redirection_logs` DISABLE KEYS */;
INSERT INTO `cuB_redirection_logs` VALUES (48,'2025-07-02 21:23:58','/the-teams/','http://thelomad.com/getmad.today','/the-team/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,301,'GET',NULL,'redirection',153,''),(49,'2025-07-02 21:24:03','/webinars/','http://thelomad.com/getmad.today','/lomadtv/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,301,'GET',NULL,'redirection',155,''),(50,'2025-07-02 21:25:08','/attorney/huang-bingchen-x/','http://thelomad.com/getmad.today','/attorney/huang-bingchen/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,301,'GET',NULL,'redirection',170,''),(51,'2025-07-02 21:26:03','/attorney/huang-bingchen-x/','https://thelomad.com/getmad.today','/attorney/huang-bingchen/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,301,'GET',NULL,'redirection',170,''),(52,'2025-07-02 21:28:34','/kristin-m-machelor/','https://thelomad.com/getmad.today','/the-team/workers-compensation-team/kristin-m-machelor/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,301,'GET',NULL,'redirection',184,''),(53,'2025-07-02 21:28:41','/mary-frances-schnorr/','https://thelomad.com/getmad.today','/the-team/workers-compensation-team/mary-frances-schnorr/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,301,'GET',NULL,'redirection',183,''),(54,'2025-07-02 21:36:57','/about/','http://thelomad.com/getmad.today','/home/about/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,301,'GET',NULL,'redirection',173,''),(55,'2025-07-02 21:41:42','/support-staff/','https://thelomad.com/getmad.today','/legal-assistants-and-paralegals/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,301,'GET',NULL,'redirection',154,''),(56,'2025-07-02 21:41:46','/support-staff/','http://thelomad.com/getmad.today','/legal-assistants-and-paralegals/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,301,'GET',NULL,'redirection',154,''),(57,'2025-07-02 22:01:38','/home/about/sabina-ogric/','https://thelomad.com/getmad.today','/legal-assistants-and-paralegals/sabina-ogric/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,301,'GET',NULL,'redirection',205,''),(58,'2025-07-02 22:01:40','/home/about/katrina-gray/','https://thelomad.com/getmad.today','/the-team/workers-compensation-team/katrina-gray/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,301,'GET',NULL,'redirection',182,''),(59,'2025-07-02 22:25:21','/attorney/harada-satoko-suki-x/','http://thelomad.com/getmad.today','/attorney/harada-satoko-suki/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,301,'GET',NULL,'redirection',169,''),(60,'2025-07-02 22:25:24','/attorney/harada-satoko-suki-x/','https://thelomad.com/getmad.today','/attorney/harada-satoko-suki/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,301,'GET',NULL,'redirection',169,''),(61,'2025-07-09 22:03:03','/about/','https://thelomad.com/getmad.today','/home/about/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,301,'GET',NULL,'redirection',173,''),(62,'2025-07-09 23:03:07','/attorney/harada-satoko-suki-x/','https://thelomad.com/getmad.today','/attorney/harada-satoko-suki/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,301,'GET',NULL,'redirection',169,''),(63,'2025-07-09 23:03:13','/attorney/huang-bingchen-x/','https://thelomad.com/getmad.today','/attorney/huang-bingchen/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,301,'GET',NULL,'redirection',170,'');
/*!40000 ALTER TABLE `cuB_redirection_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_stream`
--

DROP TABLE IF EXISTS `cuB_stream`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_stream` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` bigint(20) unsigned NOT NULL DEFAULT '1',
  `blog_id` bigint(20) unsigned NOT NULL DEFAULT '1',
  `object_id` bigint(20) unsigned DEFAULT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_role` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `summary` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `connector` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `context` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `action` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `ip` varchar(39) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`ID`),
  KEY `site_id` (`site_id`),
  KEY `blog_id` (`blog_id`),
  KEY `object_id` (`object_id`),
  KEY `user_id` (`user_id`),
  KEY `created` (`created`),
  KEY `connector` (`connector`),
  KEY `context` (`context`),
  KEY `action` (`action`)
) ENGINE=MyISAM AUTO_INCREMENT=3530 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_stream`
--

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

--
-- Table structure for table `cuB_stream_meta`
--

DROP TABLE IF EXISTS `cuB_stream_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cuB_stream_meta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `record_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `meta_value` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `record_id` (`record_id`),
  KEY `meta_key` (`meta_key`(191)),
  KEY `meta_value` (`meta_value`(191))
) ENGINE=MyISAM AUTO_INCREMENT=36054 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cuB_stream_meta`
--

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

--
-- Table structure for table `cuB_term_relationships`
--

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

--
-- Dumping data for table `cuB_term_relationships`
--

LOCK TABLES `cuB_term_relationships` WRITE;
/*!40000 ALTER TABLE `cuB_term_relationships` DISABLE KEYS */;
INSERT INTO `cuB_term_relationships` VALUES (45904,6,0),(45904,7,0),(45904,8,0),(45904,9,0),(45905,2,0),(45905,7,0),(45905,8,0),(45905,9,0),(45906,6,0),(45906,7,0),(45906,8,0),(45906,9,0),(45907,2,0),(45907,7,0),(45907,8,0),(45907,9,0),(45966,10,0),(45967,10,0),(45968,10,0),(45969,10,0),(46327,13,0),(46327,14,0),(46329,13,0),(46329,14,0),(46331,13,0),(46331,14,0),(46332,13,0),(46332,14,0),(46335,13,0),(46335,14,0),(46337,13,0),(46337,14,0),(46338,13,0),(46338,14,0),(46339,13,0),(46339,14,0),(46340,13,0),(46340,14,0),(46341,13,0),(46341,14,0),(46342,13,0),(46342,14,0),(46343,13,0),(46343,14,0),(46344,13,0),(46344,14,0),(46345,13,0),(46345,14,0),(46346,13,0),(46346,14,0),(46347,13,0),(46347,14,0),(46348,13,0),(46348,14,0),(46350,13,0),(46350,14,0),(46351,13,0),(46351,14,0),(46352,13,0),(46352,14,0),(46367,13,0),(46367,14,0),(46368,13,0),(46368,14,0),(46369,13,0),(46369,14,0),(46370,13,0),(46370,14,0),(46371,13,0),(46371,14,0),(46372,13,0),(46372,14,0),(46373,13,0),(46373,14,0),(46374,13,0),(46374,14,0),(46375,13,0),(46375,14,0),(46376,13,0),(46376,14,0),(46377,13,0),(46377,14,0),(46377,15,0),(46378,13,0),(46378,14,0),(46378,15,0),(46380,13,0),(46380,14,0),(46380,15,0),(46381,13,0),(46381,14,0),(46381,15,0),(46383,13,0),(46383,14,0),(46383,15,0),(46384,13,0),(46384,14,0),(46385,13,0),(46385,14,0),(46386,13,0),(46386,14,0),(46387,13,0),(46387,14,0),(46387,15,0),(46388,13,0),(46388,14,0),(46413,13,0),(46413,14,0),(46414,13,0),(46414,14,0),(46415,14,0),(46415,15,0),(46418,13,0),(46418,14,0),(46419,13,0),(46419,14,0),(46420,13,0),(46420,14,0),(46421,13,0),(46422,13,0),(46423,13,0),(46426,14,0),(46431,13,0),(46433,13,0),(46436,13,0),(46439,13,0),(46442,13,0),(46444,13,0),(46445,13,0),(46446,13,0),(46448,13,0),(46450,14,0),(46478,13,0),(46479,13,0),(46480,13,0),(46480,14,0),(46482,13,0),(46486,13,0),(46489,13,0),(46492,13,0),(46493,13,0),(46496,13,0),(46496,14,0),(46499,13,0),(46500,13,0),(46500,14,0),(46501,13,0),(46501,14,0),(46502,14,0),(46503,14,0),(46504,14,0),(46506,14,0),(46508,14,0),(46509,14,0),(46511,14,0),(46512,14,0),(46540,14,0),(46541,14,0),(46543,14,0),(46546,14,0),(46549,14,0),(46551,13,0),(46551,14,0),(46553,14,0),(46555,14,0),(46557,14,0),(46559,14,0),(46561,14,0),(46563,14,0),(46564,14,0),(46565,14,0),(46668,10,0),(46669,10,0),(46670,10,0),(47118,9,0),(47118,16,0),(47118,17,0),(47119,9,0),(47119,16,0),(47119,17,0),(47121,9,0),(47121,16,0),(47121,18,0),(47123,7,0),(47138,7,0),(47151,9,0),(47151,16,0),(47151,18,0),(47166,7,0),(47169,7,0),(47184,7,0),(47213,12,0),(47214,12,0),(47215,12,0),(47292,10,0),(47293,10,0),(47294,10,0),(47295,10,0),(47296,10,0),(47297,10,0),(47298,10,0),(47299,10,0),(47305,12,0),(47307,12,0),(47308,12,0),(47311,12,0),(47312,12,0),(47313,12,0),(47516,12,0),(47518,12,0),(47667,7,0),(47697,7,0),(47728,10,0),(47854,10,0),(48126,7,0),(48418,12,0),(48497,7,0),(48497,8,0),(48497,9,0),(48859,10,0),(48861,12,0),(48934,4,0),(49089,4,0),(49174,8,0),(49174,9,0),(49174,18,0),(49174,19,0),(49176,8,0),(49176,9,0),(49176,18,0),(49176,19,0),(49182,8,0),(49182,9,0),(49182,19,0),(49182,20,0),(49188,8,0),(49188,9,0),(49188,17,0),(49188,19,0),(49220,12,0),(49222,10,0),(49248,8,0),(49248,9,0),(49248,18,0),(49248,19,0),(49272,8,0),(49272,9,0),(49272,17,0),(49272,19,0),(49406,21,0),(49452,9,0),(49452,16,0),(49452,18,0),(49452,22,0),(49642,8,0),(49642,9,0),(49642,19,0),(49642,20,0),(49713,8,0),(49713,9,0),(49713,18,0),(49713,22,0),(49788,8,0),(49788,9,0),(49788,18,0),(49788,22,0),(50129,8,0),(50129,9,0),(50129,20,0),(50129,22,0),(50149,7,0),(50151,8,0),(50151,9,0),(50151,20,0),(50151,22,0),(50234,8,0),(50234,9,0),(50234,18,0),(50234,22,0),(50529,8,0),(50529,9,0),(50529,18,0),(50531,8,0),(50531,9,0),(50531,18,0),(50618,8,0),(50618,9,0),(50618,18,0),(50618,22,0),(50629,8,0),(50629,9,0),(50629,18,0),(50629,22,0),(50698,12,0),(50735,8,0),(50735,9,0),(50735,18,0),(50735,19,0),(50765,8,0),(50765,9,0),(50765,19,0),(50765,20,0),(50883,8,0),(50883,9,0),(50883,18,0),(50883,19,0),(50884,8,0),(50884,9,0),(50884,18,0),(50969,8,0),(50969,9,0),(50969,18,0),(50969,19,0),(50970,8,0),(50970,9,0),(50970,18,0),(50970,19,0),(50971,8,0),(50971,9,0),(50971,18,0),(50971,19,0),(51005,8,0),(51005,9,0),(51005,18,0),(51005,19,0),(51009,8,0),(51009,9,0),(51009,19,0),(51009,20,0),(51122,8,0),(51122,9,0),(51122,17,0),(51122,23,0),(51147,7,0),(51148,7,0),(51149,7,0),(51204,7,0),(51218,8,0),(51218,9,0),(51218,18,0),(51218,22,0),(51219,8,0),(51219,9,0),(51219,18,0),(51219,22,0),(51247,7,0),(51261,7,0),(51270,8,0),(51270,9,0),(51270,18,0),(51270,22,0),(51278,7,0),(51320,7,0),(51335,7,0),(51396,7,0),(51397,8,0),(51397,9,0),(51397,17,0),(51397,24,0),(51408,8,0),(51408,9,0),(51408,20,0),(51408,24,0),(51409,7,0),(51412,7,0),(51465,4,0);
/*!40000 ALTER TABLE `cuB_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_term_taxonomy`
--

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

--
-- Dumping data for table `cuB_term_taxonomy`
--

LOCK TABLES `cuB_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `cuB_term_taxonomy` DISABLE KEYS */;
INSERT INTO `cuB_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'layout_category','',0,2),(3,3,'layout_category','',0,0),(4,4,'category','',0,2),(5,5,'layout_category','',0,0),(6,6,'layout_category','',5,2),(7,7,'layout_type','',0,5),(8,8,'scope','',0,36),(9,9,'module_width','',0,41),(10,10,'nav_menu','',0,19),(11,11,'nav_menu','',0,0),(12,12,'nav_menu','',0,15),(13,13,'category','',0,70),(14,14,'category','',0,74),(15,15,'category','',0,7),(16,16,'scope','',0,5),(17,17,'layout_type','',0,6),(18,18,'layout_type','',0,23),(19,19,'layout_category','',0,15),(20,20,'layout_type','',0,7),(21,21,'wp_theme','',0,1),(22,22,'layout_category','',0,11),(23,23,'layout_category','',0,1),(24,24,'layout_category','',0,2);
/*!40000 ALTER TABLE `cuB_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_termmeta`
--

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

--
-- Dumping data for table `cuB_termmeta`
--

LOCK TABLES `cuB_termmeta` WRITE;
/*!40000 ALTER TABLE `cuB_termmeta` DISABLE KEYS */;
INSERT INTO `cuB_termmeta` VALUES (1,10,'_aioseop_opengraph_settings','a:1:{s:35:\"aioseop_opengraph_settings_category\";s:7:\"article\";}'),(2,11,'_aioseop_opengraph_settings','a:1:{s:35:\"aioseop_opengraph_settings_category\";s:7:\"article\";}'),(3,12,'_aioseop_opengraph_settings','a:1:{s:35:\"aioseop_opengraph_settings_category\";s:7:\"article\";}'),(4,13,'_aioseop_opengraph_settings','a:1:{s:35:\"aioseop_opengraph_settings_category\";s:7:\"article\";}'),(5,14,'_aioseop_opengraph_settings','a:1:{s:35:\"aioseop_opengraph_settings_category\";s:7:\"article\";}'),(6,15,'_aioseop_opengraph_settings','a:1:{s:35:\"aioseop_opengraph_settings_category\";s:7:\"article\";}');
/*!40000 ALTER TABLE `cuB_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_terms`
--

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

--
-- Dumping data for table `cuB_terms`
--

LOCK TABLES `cuB_terms` WRITE;
/*!40000 ALTER TABLE `cuB_terms` DISABLE KEYS */;
INSERT INTO `cuB_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Header Layouts','mhmm_headers',0),(3,'Menu Layouts','mhmm_menus',0),(4,'Firm News','firm-news',0),(5,'Divi Ultimate Child Theme','divi-ultimate-child-theme',0),(6,'Footer','footer-divi-ultimate-child-theme',0),(7,'layout','layout',0),(8,'not_global','not_global',0),(9,'regular','regular',0),(10,'Main Nav','main-nav',0),(11,'Attorneys','attorneys',0),(12,'Practice Areas','practice-areas',0),(13,'MAD News','mad-news',0),(14,'NYS Workers Compensation','nys-workers-compensation',0),(15,'I\'m MAD','im-mad',0),(16,'global','global',0),(17,'section','section',0),(18,'module','module',0),(19,'Attorneys - Bio','attorneys-bio',0),(20,'row','row',0),(21,'twentytwentytwo','twentytwentytwo',0),(22,'New Blocks - 8/2022','new-blocks-8-2022',0),(23,'Template Blocks','template-blocks',0),(24,'Footer Elements','footer-elements',0);
/*!40000 ALTER TABLE `cuB_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_usermeta`
--

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

--
-- Dumping data for table `cuB_usermeta`
--

LOCK TABLES `cuB_usermeta` WRITE;
/*!40000 ALTER TABLE `cuB_usermeta` DISABLE KEYS */;
INSERT INTO `cuB_usermeta` VALUES (1,1,'nickname','mdoldan'),(2,1,'first_name','Maxwell'),(3,1,'last_name','Doldan'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'cuB_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'cuB_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','0'),(16,1,'jetpack_tracks_anon_id','jetpack:Ny1TTsG4sY8TtjoQ7D74HgLT'),(17,1,'session_tokens','a:2:{s:64:\"c9cc3030fdeb10effe55ef2789350ca3b386746b88c86770044cd1c7fd9b30b0\";a:4:{s:10:\"expiration\";i:1752516921;s:2:\"ip\";s:13:\"27.111.84.227\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36\";s:5:\"login\";i:1752344121;}s:64:\"1cf27bf34919fbb2eefc3050449700a4f9dc51a8ee2304aabd48e904157241cd\";a:4:{s:10:\"expiration\";i:1752519134;s:2:\"ip\";s:13:\"27.111.84.227\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36\";s:5:\"login\";i:1752346334;}}'),(18,1,'eig_last_login','2022-08-29T13:10:11+00:00'),(20,1,'_yoast_alerts_dismissed','a:1:{s:26:\"webinar-promo-notification\";b:1;}'),(22,1,'_yoast_wpseo_profile_updated','1661779935'),(28,1,'prime_mover_current_settings',''),(31,1,'prime_mover_default_user_role','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:73:{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:\"et_support_center\";b:1;s:24:\"et_support_center_system\";b:1;s:31:\"et_support_center_remote_access\";b:1;s:31:\"et_support_center_documentation\";b:1;s:27:\"et_support_center_safe_mode\";b:1;s:22:\"et_support_center_logs\";b:1;s:17:\"aioseo_manage_seo\";b:1;s:20:\"aioseo_page_analysis\";b:1;s:28:\"aioseo_page_general_settings\";b:1;s:29:\"aioseo_page_advanced_settings\";b:1;s:27:\"aioseo_page_schema_settings\";b:1;s:27:\"aioseo_page_social_settings\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:39:{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:20:\"aioseo_page_analysis\";b:1;s:28:\"aioseo_page_general_settings\";b:1;s:29:\"aioseo_page_advanced_settings\";b:1;s:27:\"aioseo_page_schema_settings\";b:1;s:27:\"aioseo_page_social_settings\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:15:{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:20:\"aioseo_page_analysis\";b:1;s:28:\"aioseo_page_general_settings\";b:1;s:29:\"aioseo_page_advanced_settings\";b:1;s:27:\"aioseo_page_schema_settings\";b:1;s:27:\"aioseo_page_social_settings\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:10:{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:20:\"aioseo_page_analysis\";b:1;s:28:\"aioseo_page_general_settings\";b:1;s:29:\"aioseo_page_advanced_settings\";b:1;s:27:\"aioseo_page_schema_settings\";b:1;s:27:\"aioseo_page_social_settings\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}'),(1397,1,'cuB_nf_form_preview_1','a:4:{s:2:\"id\";i:1;s:8:\"settings\";a:162:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";b:1;s:5:\"title\";s:9:\"Long Form\";s:10:\"created_at\";s:19:\"2019-07-29 17:32:52\";s:10:\"form_title\";s:9:\"Long Form\";s:17:\"default_label_pos\";s:5:\"above\";s:10:\"show_title\";s:1:\"0\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:9:\"logged_in\";s:1:\"0\";s:13:\"wrapper_class\";s:12:\"fl-long-form\";s:13:\"element_class\";s:0:\"\";s:3:\"key\";s:0:\"\";s:10:\"add_submit\";s:1:\"0\";s:8:\"currency\";s:0:\"\";s:18:\"unique_field_error\";s:50:\"A form with this value has already been submitted.\";s:17:\"not_logged_in_msg\";s:0:\"\";s:13:\"sub_limit_msg\";s:42:\"The form has reached its submission limit.\";s:12:\"calculations\";a:0:{}s:34:\"container_styles_show_advanced_css\";s:1:\"0\";s:30:\"title_styles_show_advanced_css\";s:1:\"0\";s:28:\"row_styles_show_advanced_css\";s:1:\"0\";s:32:\"row-odd_styles_show_advanced_css\";s:1:\"0\";s:36:\"success-msg_styles_show_advanced_css\";i:1;s:34:\"error_msg_styles_show_advanced_css\";s:1:\"0\";s:15:\"formContentData\";a:1:{i:0;a:6:{s:15:\"formContentData\";a:12:{i:0;a:2:{s:5:\"order\";i:1;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:34:\"personal_information_1534954814742\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";i:2;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"name_1534954806801\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:3;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"email_1534954365299\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";i:4;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"phone_1534954373936\";}s:5:\"width\";s:3:\"100\";}}}i:4;a:2:{s:5:\"order\";i:5;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:17:\"zip_1534954373399\";}s:5:\"width\";s:3:\"100\";}}}i:5;a:2:{s:5:\"order\";i:6;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:23:\"liststate_1534954369789\";}s:5:\"width\";s:3:\"100\";}}}i:6;a:2:{s:5:\"order\";i:7;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:33:\"contact_preferences_1534954782835\";}s:5:\"width\";s:3:\"100\";}}}i:7;a:2:{s:5:\"order\";i:8;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:48:\"how_would_you_like_to_be_contacted_1534954740097\";}s:5:\"width\";s:3:\"100\";}}}i:8;a:2:{s:5:\"order\";i:10;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:51:\"brief_description_of_your_legal_issue_1534954647282\";}s:5:\"width\";s:3:\"100\";}}}i:9;a:2:{s:5:\"order\";i:11;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:28:\"privacy_policy_1534954542111\";}s:5:\"width\";s:3:\"100\";}}}i:10;a:2:{s:5:\"order\";i:12;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:40:\"i_have_read_the_disclaimer_1534954562191\";}s:5:\"width\";s:3:\"100\";}}}i:11;a:2:{s:5:\"order\";i:13;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"send_1562680674669\";}s:5:\"width\";s:3:\"100\";}}}}s:5:\"order\";i:0;s:4:\"type\";s:4:\"part\";s:5:\"clean\";b:1;s:5:\"title\";s:10:\"Part Title\";s:3:\"key\";s:7:\"znhzdws\";}}s:19:\"changeEmailErrorMsg\";s:0:\"\";s:18:\"changeDateErrorMsg\";s:0:\"\";s:20:\"confirmFieldErrorMsg\";s:0:\"\";s:22:\"fieldNumberNumMinError\";s:0:\"\";s:22:\"fieldNumberNumMaxError\";s:0:\"\";s:22:\"fieldNumberIncrementBy\";s:0:\"\";s:23:\"formErrorsCorrectErrors\";s:0:\"\";s:21:\"validateRequiredField\";s:0:\"\";s:21:\"honeypotHoneypotError\";s:0:\"\";s:20:\"fieldsMarkedRequired\";s:0:\"\";s:14:\"drawerDisabled\";b:0;s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";s:20:\"repeatable_fieldsets\";s:0:\"\";s:10:\"conditions\";a:0:{}s:13:\"mp_breadcrumb\";i:1;s:15:\"mp_progress_bar\";i:1;s:17:\"mp_display_titles\";i:0;s:45:\"breadcrumb_container_styles_show_advanced_css\";i:0;s:43:\"breadcrumb_buttons_styles_show_advanced_css\";i:0;s:48:\"breadcrumb_button_hover_styles_show_advanced_css\";i:0;s:49:\"breadcrumb_active_button_styles_show_advanced_css\";i:0;s:47:\"progress_bar_container_styles_show_advanced_css\";i:0;s:42:\"progress_bar_fill_styles_show_advanced_css\";i:0;s:36:\"part_titles_styles_show_advanced_css\";i:0;s:45:\"navigation_container_styles_show_advanced_css\";i:0;s:40:\"previous_button_styles_show_advanced_css\";i:0;s:36:\"next_button_styles_show_advanced_css\";i:0;s:41:\"navigation_hover_styles_show_advanced_css\";i:0;s:23:\"container_styles_border\";s:0:\"\";s:23:\"container_styles_height\";s:0:\"\";s:23:\"container_styles_margin\";s:0:\"\";s:24:\"container_styles_padding\";s:0:\"\";s:22:\"container_styles_float\";s:0:\"\";s:19:\"title_styles_border\";s:0:\"\";s:19:\"title_styles_height\";s:0:\"\";s:18:\"title_styles_width\";s:0:\"\";s:22:\"title_styles_font-size\";s:0:\"\";s:19:\"title_styles_margin\";s:0:\"\";s:20:\"title_styles_padding\";s:0:\"\";s:18:\"title_styles_float\";s:0:\"\";s:17:\"row_styles_border\";s:0:\"\";s:16:\"row_styles_width\";s:0:\"\";s:20:\"row_styles_font-size\";s:0:\"\";s:17:\"row_styles_margin\";s:0:\"\";s:18:\"row_styles_padding\";s:0:\"\";s:21:\"row-odd_styles_border\";s:0:\"\";s:21:\"row-odd_styles_height\";s:0:\"\";s:20:\"row-odd_styles_width\";s:0:\"\";s:24:\"row-odd_styles_font-size\";s:0:\"\";s:21:\"row-odd_styles_margin\";s:0:\"\";s:22:\"row-odd_styles_padding\";s:0:\"\";s:35:\"success-msg_styles_background-color\";s:9:\"#d8d8d8A6\";s:25:\"success-msg_styles_border\";s:0:\"\";s:24:\"success-msg_styles_color\";s:7:\"#211865\";s:25:\"success-msg_styles_height\";s:0:\"\";s:24:\"success-msg_styles_width\";s:0:\"\";s:28:\"success-msg_styles_font-size\";s:4:\"22px\";s:25:\"success-msg_styles_margin\";s:0:\"\";s:26:\"success-msg_styles_padding\";s:0:\"\";s:27:\"success-msg_styles_advanced\";s:136:\"font-family: \'Playfair Display\',Georgia,\"Times New Roman\",serif !important;\nmargin: auto;\nwidth: 50%;\nmargin-left: 350px;\npadding: 27px\n\";s:23:\"error_msg_styles_border\";s:0:\"\";s:22:\"error_msg_styles_width\";s:0:\"\";s:26:\"error_msg_styles_font-size\";s:0:\"\";s:23:\"error_msg_styles_margin\";s:0:\"\";s:24:\"error_msg_styles_padding\";s:0:\"\";s:13:\"mp_prev_label\";s:0:\"\";s:13:\"mp_next_label\";s:0:\"\";s:34:\"breadcrumb_container_styles_border\";s:0:\"\";s:34:\"breadcrumb_container_styles_height\";s:0:\"\";s:33:\"breadcrumb_container_styles_width\";s:0:\"\";s:34:\"breadcrumb_container_styles_margin\";s:0:\"\";s:35:\"breadcrumb_container_styles_padding\";s:0:\"\";s:33:\"breadcrumb_container_styles_float\";s:0:\"\";s:32:\"breadcrumb_buttons_styles_border\";s:0:\"\";s:32:\"breadcrumb_buttons_styles_height\";s:0:\"\";s:31:\"breadcrumb_buttons_styles_width\";s:0:\"\";s:35:\"breadcrumb_buttons_styles_font-size\";s:0:\"\";s:32:\"breadcrumb_buttons_styles_margin\";s:0:\"\";s:33:\"breadcrumb_buttons_styles_padding\";s:0:\"\";s:31:\"breadcrumb_buttons_styles_float\";s:0:\"\";s:37:\"breadcrumb_button_hover_styles_border\";s:0:\"\";s:37:\"breadcrumb_button_hover_styles_height\";s:0:\"\";s:36:\"breadcrumb_button_hover_styles_width\";s:0:\"\";s:40:\"breadcrumb_button_hover_styles_font-size\";s:0:\"\";s:37:\"breadcrumb_button_hover_styles_margin\";s:0:\"\";s:38:\"breadcrumb_button_hover_styles_padding\";s:0:\"\";s:36:\"breadcrumb_button_hover_styles_float\";s:0:\"\";s:38:\"breadcrumb_active_button_styles_border\";s:0:\"\";s:38:\"breadcrumb_active_button_styles_height\";s:0:\"\";s:37:\"breadcrumb_active_button_styles_width\";s:0:\"\";s:41:\"breadcrumb_active_button_styles_font-size\";s:0:\"\";s:38:\"breadcrumb_active_button_styles_margin\";s:0:\"\";s:39:\"breadcrumb_active_button_styles_padding\";s:0:\"\";s:37:\"breadcrumb_active_button_styles_float\";s:0:\"\";s:36:\"progress_bar_container_styles_border\";s:0:\"\";s:36:\"progress_bar_container_styles_height\";s:0:\"\";s:35:\"progress_bar_container_styles_width\";s:0:\"\";s:36:\"progress_bar_container_styles_margin\";s:0:\"\";s:37:\"progress_bar_container_styles_padding\";s:0:\"\";s:35:\"progress_bar_container_styles_float\";s:0:\"\";s:31:\"progress_bar_fill_styles_border\";s:0:\"\";s:31:\"progress_bar_fill_styles_height\";s:0:\"\";s:31:\"progress_bar_fill_styles_margin\";s:0:\"\";s:32:\"progress_bar_fill_styles_padding\";s:0:\"\";s:25:\"part_titles_styles_border\";s:0:\"\";s:25:\"part_titles_styles_height\";s:0:\"\";s:24:\"part_titles_styles_width\";s:0:\"\";s:28:\"part_titles_styles_font-size\";s:0:\"\";s:25:\"part_titles_styles_margin\";s:0:\"\";s:26:\"part_titles_styles_padding\";s:0:\"\";s:24:\"part_titles_styles_float\";s:0:\"\";s:34:\"navigation_container_styles_border\";s:0:\"\";s:34:\"navigation_container_styles_height\";s:0:\"\";s:33:\"navigation_container_styles_width\";s:0:\"\";s:34:\"navigation_container_styles_margin\";s:0:\"\";s:35:\"navigation_container_styles_padding\";s:0:\"\";s:33:\"navigation_container_styles_float\";s:0:\"\";s:29:\"previous_button_styles_border\";s:0:\"\";s:29:\"previous_button_styles_height\";s:0:\"\";s:28:\"previous_button_styles_width\";s:0:\"\";s:32:\"previous_button_styles_font-size\";s:0:\"\";s:29:\"previous_button_styles_margin\";s:0:\"\";s:30:\"previous_button_styles_padding\";s:0:\"\";s:25:\"next_button_styles_border\";s:0:\"\";s:25:\"next_button_styles_height\";s:0:\"\";s:24:\"next_button_styles_width\";s:0:\"\";s:28:\"next_button_styles_font-size\";s:0:\"\";s:25:\"next_button_styles_margin\";s:0:\"\";s:26:\"next_button_styles_padding\";s:0:\"\";s:30:\"navigation_hover_styles_border\";s:0:\"\";s:30:\"navigation_hover_styles_height\";s:0:\"\";s:29:\"navigation_hover_styles_width\";s:0:\"\";s:33:\"navigation_hover_styles_font-size\";s:0:\"\";s:30:\"navigation_hover_styles_margin\";s:0:\"\";s:31:\"navigation_hover_styles_padding\";s:0:\"\";}s:6:\"fields\";a:12:{i:1;a:1:{s:8:\"settings\";a:35:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"1\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:20:\"Personal Information\";s:7:\"default\";s:11:\"<p><br></p>\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4049\";s:3:\"key\";s:34:\"personal_information_1534954814742\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:20:\"Personal Information\";s:9:\"field_key\";s:34:\"personal_information_1534954814742\";}}i:2;a:1:{s:8:\"settings\";a:44:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"2\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:9:\"firstname\";s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:18:\"name_1534954806801\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:11:\"contactName\";s:9:\"help_text\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"fname\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4053\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:4:\"Name\";s:9:\"field_key\";s:18:\"name_1534954806801\";s:5:\"value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"560px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"15\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:20:\"element_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:19:\"margin-left: 255px;\";}}i:3;a:1:{s:8:\"settings\";a:44:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"3\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:5:\"email\";s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:19:\"email_1534954365299\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:16:\"emailFromAddress\";s:9:\"help_text\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"email\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4056\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:5:\"Email\";s:9:\"field_key\";s:19:\"email_1534954365299\";s:5:\"value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"560px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:19:\"margin-left: 255px;\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"15\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:20:\"element_styles_float\";s:0:\"\";}}i:4;a:1:{s:8:\"settings\";a:50:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"4\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:5:\"phone\";s:5:\"label\";s:5:\"Phone\";s:3:\"key\";s:19:\"phone_1534954373936\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:12:\"contactPhone\";s:9:\"help_text\";s:0:\"\";s:4:\"mask\";s:14:\"(999) 999-9999\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"phone\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4059\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:5:\"Phone\";s:9:\"field_key\";s:19:\"phone_1534954373936\";s:5:\"value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"560px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:19:\"margin-left: 255px;\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"15\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:20:\"element_styles_float\";s:0:\"\";}}i:5;a:1:{s:8:\"settings\";a:50:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"5\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:3:\"zip\";s:5:\"label\";s:3:\"Zip\";s:3:\"key\";s:17:\"zip_1534954373399\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:10:\"contactZip\";s:9:\"help_text\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:3:\"zip\";s:23:\"personally_identifiable\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4062\";s:11:\"field_label\";s:3:\"Zip\";s:9:\"field_key\";s:17:\"zip_1534954373399\";s:5:\"value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"560px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:19:\"margin-left: 255px;\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"15\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:20:\"element_styles_float\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}}i:6;a:1:{s:8:\"settings\";a:64:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"6\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:9:\"liststate\";s:5:\"label\";s:9:\"US States\";s:3:\"key\";s:23:\"liststate_1534954369789\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"options\";a:54:{i:0;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Alabama\";s:5:\"value\";s:2:\"AL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:1;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Alaska\";s:5:\"value\";s:2:\"AK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:2;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Arizona\";s:5:\"value\";s:2:\"AZ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:2;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:3;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Arkansas\";s:5:\"value\";s:2:\"AR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:3;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:4;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"California\";s:5:\"value\";s:2:\"CA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:4;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:5;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Colorado\";s:5:\"value\";s:2:\"CO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:5;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:6;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:11:\"Connecticut\";s:5:\"value\";s:2:\"CT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:6;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:7;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Delaware\";s:5:\"value\";s:2:\"DE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:7;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:8;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Florida\";s:5:\"value\";s:2:\"FL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:8;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:9;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Georgia\";s:5:\"value\";s:2:\"GA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:9;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:10;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Hawaii\";s:5:\"value\";s:2:\"HI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:10;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:11;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Idaho\";s:5:\"value\";s:2:\"ID\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:11;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:12;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Illinois\";s:5:\"value\";s:2:\"IL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:12;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:13;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Indiana\";s:5:\"value\";s:2:\"IN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:13;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:14;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Iowa\";s:5:\"value\";s:2:\"IA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:14;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:15;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Kansas\";s:5:\"value\";s:2:\"KS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:15;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:16;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Kentucky\";s:5:\"value\";s:2:\"KY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:16;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:17;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Louisiana\";s:5:\"value\";s:2:\"LA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:17;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:18;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Maine\";s:5:\"value\";s:2:\"ME\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:18;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:19;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Maryland\";s:5:\"value\";s:2:\"MD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:19;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:20;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"Massachusetts\";s:5:\"value\";s:2:\"MA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:20;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:21;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Michigan\";s:5:\"value\";s:2:\"MI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:21;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:22;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Minnesota\";s:5:\"value\";s:2:\"MN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:22;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:23;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:11:\"Mississippi\";s:5:\"value\";s:2:\"MS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:23;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:24;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Missouri\";s:5:\"value\";s:2:\"MO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:24;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:25;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Montana\";s:5:\"value\";s:2:\"MT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:25;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:26;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Nebraska\";s:5:\"value\";s:2:\"NE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:26;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:27;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Nevada\";s:5:\"value\";s:2:\"NV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:27;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:28;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"New Hampshire\";s:5:\"value\";s:2:\"NH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:28;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:29;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"New Jersey\";s:5:\"value\";s:2:\"NJ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:29;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:30;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"New Mexico\";s:5:\"value\";s:2:\"NM\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:30;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:31;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"New York\";s:5:\"value\";s:2:\"NY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:31;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:32;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:14:\"North Carolina\";s:5:\"value\";s:2:\"NC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:32;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:33;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"North Dakota\";s:5:\"value\";s:2:\"ND\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:33;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:34;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Ohio\";s:5:\"value\";s:2:\"OH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:34;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:35;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Oklahoma\";s:5:\"value\";s:2:\"OK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:35;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:36;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:6:\"Oregon\";s:5:\"value\";s:2:\"OR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:36;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:37;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"Pennsylvania\";s:5:\"value\";s:2:\"PA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:37;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:38;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"Rhode Island\";s:5:\"value\";s:2:\"RI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:38;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:39;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:14:\"South Carolina\";s:5:\"value\";s:2:\"SC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:39;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:40;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:12:\"South Dakota\";s:5:\"value\";s:2:\"SD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:40;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:41;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Tennessee\";s:5:\"value\";s:2:\"TN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:41;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:42;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Texas\";s:5:\"value\";s:2:\"TX\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:42;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:43;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:4:\"Utah\";s:5:\"value\";s:2:\"UT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:43;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:44;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Vermont\";s:5:\"value\";s:2:\"VT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:44;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:45;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:8:\"Virginia\";s:5:\"value\";s:2:\"VA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:45;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:46;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:10:\"Washington\";s:5:\"value\";s:2:\"WA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:46;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:47;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"West Virginia\";s:5:\"value\";s:2:\"WV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:47;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:48;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:9:\"Wisconsin\";s:5:\"value\";s:2:\"WI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:48;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:49;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:7:\"Wyoming\";s:5:\"value\";s:2:\"WY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:49;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:50;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:13:\"Washington DC\";s:5:\"value\";s:2:\"DC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:50;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:51;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:48:\"ARMED FORCES AFRICA  CANADA  EUROPE  MIDDLE EAST\";s:5:\"value\";s:2:\"AE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:51;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:52;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:36:\"ARMED FORCES AMERICA (EXCEPT CANADA)\";s:5:\"value\";s:2:\"AA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:52;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:53;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:20:\"ARMED FORCES PACIFIC\";s:5:\"value\";s:2:\"AP\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";i:53;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}}s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:38:\"list_item_row_styles_show_advanced_css\";s:1:\"0\";s:40:\"list_item_label_styles_show_advanced_css\";s:1:\"0\";s:42:\"list_item_element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4065\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:9:\"US States\";s:9:\"field_key\";s:23:\"liststate_1534954369789\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"560px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:2:\"15\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"8.5px\";s:20:\"element_styles_float\";s:0:\"\";s:27:\"list_item_row_styles_border\";s:0:\"\";s:27:\"list_item_row_styles_height\";s:0:\"\";s:26:\"list_item_row_styles_width\";s:0:\"\";s:30:\"list_item_row_styles_font-size\";s:0:\"\";s:27:\"list_item_row_styles_margin\";s:0:\"\";s:28:\"list_item_row_styles_padding\";s:0:\"\";s:26:\"list_item_row_styles_float\";s:0:\"\";s:29:\"list_item_label_styles_border\";s:0:\"\";s:29:\"list_item_label_styles_height\";s:0:\"\";s:28:\"list_item_label_styles_width\";s:0:\"\";s:32:\"list_item_label_styles_font-size\";s:0:\"\";s:29:\"list_item_label_styles_margin\";s:0:\"\";s:30:\"list_item_label_styles_padding\";s:0:\"\";s:28:\"list_item_label_styles_float\";s:0:\"\";s:31:\"list_item_element_styles_border\";s:0:\"\";s:31:\"list_item_element_styles_height\";s:0:\"\";s:30:\"list_item_element_styles_width\";s:0:\"\";s:34:\"list_item_element_styles_font-size\";s:2:\"15\";s:31:\"list_item_element_styles_margin\";s:0:\"\";s:32:\"list_item_element_styles_padding\";s:5:\"8.5px\";s:30:\"list_item_element_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:19:\"margin-left: 255px;\";}}i:7;a:1:{s:8:\"settings\";a:35:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"7\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:19:\"Contact Preferences\";s:7:\"default\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4068\";s:3:\"key\";s:33:\"contact_preferences_1534954782835\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:19:\"Contact Preferences\";s:9:\"field_key\";s:33:\"contact_preferences_1534954782835\";}}i:8;a:1:{s:8:\"settings\";a:64:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"8\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:12:\"listcheckbox\";s:5:\"label\";s:35:\"How Would You Like To Be Contacted?\";s:3:\"key\";s:48:\"how_would_you_like_to_be_contacted_1534954740097\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"options\";a:2:{i:0;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Phone\";s:5:\"value\";s:5:\"phone\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";s:1:\"0\";s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:1;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";s:1:\"0\";s:5:\"label\";s:5:\"Email\";s:5:\"value\";s:5:\"email\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";s:5:\"order\";s:1:\"1\";s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}}s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:11:\"contactPref\";s:9:\"help_text\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:38:\"list_item_row_styles_show_advanced_css\";s:1:\"0\";s:40:\"list_item_label_styles_show_advanced_css\";s:1:\"0\";s:42:\"list_item_element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4071\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:35:\"How Would You Like To Be Contacted?\";s:9:\"field_key\";s:48:\"how_would_you_like_to_be_contacted_1534954740097\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"560px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:19:\"margin-left: 255px;\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:27:\"list_item_row_styles_border\";s:0:\"\";s:27:\"list_item_row_styles_height\";s:0:\"\";s:26:\"list_item_row_styles_width\";s:0:\"\";s:30:\"list_item_row_styles_font-size\";s:2:\"15\";s:27:\"list_item_row_styles_margin\";s:0:\"\";s:28:\"list_item_row_styles_padding\";s:5:\"8.5px\";s:26:\"list_item_row_styles_float\";s:0:\"\";s:29:\"list_item_label_styles_border\";s:0:\"\";s:29:\"list_item_label_styles_height\";s:0:\"\";s:28:\"list_item_label_styles_width\";s:0:\"\";s:32:\"list_item_label_styles_font-size\";s:0:\"\";s:29:\"list_item_label_styles_margin\";s:0:\"\";s:30:\"list_item_label_styles_padding\";s:0:\"\";s:28:\"list_item_label_styles_float\";s:0:\"\";s:31:\"list_item_element_styles_border\";s:0:\"\";s:31:\"list_item_element_styles_height\";s:0:\"\";s:30:\"list_item_element_styles_width\";s:0:\"\";s:34:\"list_item_element_styles_font-size\";s:2:\"15\";s:31:\"list_item_element_styles_margin\";s:0:\"\";s:32:\"list_item_element_styles_padding\";s:5:\"8.5px\";s:30:\"list_item_element_styles_float\";s:0:\"\";}}i:10;a:1:{s:8:\"settings\";a:49:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:2:\"10\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:8:\"textarea\";s:5:\"label\";s:37:\"Brief Description of Your Legal Issue\";s:3:\"key\";s:51:\"brief_description_of_your_legal_issue_1534954647282\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:11:\"formComment\";s:9:\"help_text\";s:0:\"\";s:12:\"textarea_rte\";s:0:\"\";s:18:\"disable_rte_mobile\";s:0:\"\";s:14:\"textarea_media\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4074\";s:11:\"field_label\";s:37:\"Brief Description of Your Legal Issue\";s:9:\"field_key\";s:51:\"brief_description_of_your_legal_issue_1534954647282\";s:5:\"value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"560px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:19:\"margin-left: 255px;\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:4:\"12.5\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:5:\"7.5px\";s:20:\"element_styles_float\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}}i:11;a:1:{s:8:\"settings\";a:36:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:2:\"11\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:0:\"\";s:7:\"default\";s:899:\"<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a>&nbsp;</div>\n<div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div>\n</div>\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4077\";s:3:\"key\";s:28:\"privacy_policy_1534954542111\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:0:\"\";s:9:\"field_key\";s:28:\"privacy_policy_1534954542111\";s:20:\"wrap_styles_advanced\";s:19:\"margin-left: 255px;\";}}i:12;a:1:{s:8:\"settings\";a:47:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:2:\"12\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:8:\"checkbox\";s:5:\"label\";s:26:\"I Have Read The Disclaimer\";s:3:\"key\";s:40:\"i_have_read_the_disclaimer_1534954562191\";s:9:\"label_pos\";s:5:\"right\";s:8:\"required\";s:1:\"1\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:14:\"readDisclaimer\";s:9:\"help_text\";s:0:\"\";s:13:\"default_value\";s:9:\"unchecked\";s:13:\"checked_value\";s:0:\"\";s:15:\"unchecked_value\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4080\";s:14:\"drawerDisabled\";b:0;s:7:\"default\";s:9:\"unchecked\";s:11:\"field_label\";s:26:\"I Have Read The Disclaimer\";s:9:\"field_key\";s:40:\"i_have_read_the_disclaimer_1534954562191\";s:5:\"value\";s:9:\"unchecked\";s:18:\"checked_calc_value\";s:0:\"\";s:20:\"unchecked_calc_value\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:5:\"560px\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:19:\"margin-left: 255px;\";s:19:\"label_styles_border\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";}}i:13;a:1:{s:8:\"settings\";a:36:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:2:\"13\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:6:\"submit\";s:5:\"label\";s:4:\"Send\";s:16:\"processing_label\";s:10:\"Processing\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:3:\"key\";s:18:\"send_1562680674669\";s:29:\"wrap_styles_show_advanced_css\";i:1;s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:45:\"submit_element_hover_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c4083\";s:14:\"drawerDisabled\";b:0;s:11:\"field_label\";s:4:\"Send\";s:9:\"field_key\";s:18:\"send_1562680674669\";s:18:\"wrap_styles_border\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:20:\"wrap_styles_advanced\";s:19:\"margin-left: 255px;\";s:21:\"element_styles_border\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:34:\"submit_element_hover_styles_border\";s:0:\"\";s:33:\"submit_element_hover_styles_width\";s:0:\"\";s:37:\"submit_element_hover_styles_font-size\";s:0:\"\";s:34:\"submit_element_hover_styles_margin\";s:0:\"\";s:35:\"submit_element_hover_styles_padding\";s:0:\"\";s:33:\"submit_element_hover_styles_float\";s:0:\"\";}}}s:7:\"actions\";a:5:{i:18;a:1:{s:8:\"settings\";a:28:{s:5:\"title\";N;s:3:\"key\";N;s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-09-14 08:57:34\";s:5:\"label\";s:17:\"Record Submission\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:10:\"conditions\";a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:2:\"to\";s:16:\"{wp:admin_email}\";s:8:\"reply_to\";s:0:\"\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:19:\"email_message_plain\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:11:\"success_msg\";s:42:\"Your form has been successfully submitted.\";s:12:\"redirect_url\";s:0:\"\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";s:1:\"0\";s:16:\"subs_expire_time\";s:2:\"90\";s:14:\"drawerDisabled\";s:0:\"\";}}i:19;a:1:{s:8:\"settings\";a:21:{s:5:\"title\";N;s:3:\"key\";N;s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-09-14 09:02:39\";s:5:\"label\";s:18:\"Email Confirmation\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:10:\"conditions\";a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:2:\"to\";s:27:\"{field:email_1534954365299}\";s:8:\"reply_to\";s:0:\"\";s:13:\"email_subject\";s:50:\"Your message to The Law Offices of Melissa A. Day \";s:13:\"email_message\";s:154:\"<p>Your message to The Law Offices of Melissa A. Day has been submitted and sent. A member of our team will be in touch soon!</p><p>{all_fields_table}</p>\";s:19:\"email_message_plain\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:14:\"drawerDisabled\";s:0:\"\";}}i:20;a:1:{s:8:\"settings\";a:21:{s:5:\"title\";N;s:3:\"key\";N;s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-09-14 09:02:39\";s:5:\"label\";s:18:\"Email Notification\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:10:\"conditions\";a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:2:\"to\";s:21:\"mail@madwcdefense.com\";s:8:\"reply_to\";s:0:\"\";s:13:\"email_subject\";s:30:\"New message from {field:name} \";s:13:\"email_message\";s:150:\"<p>A message has been received via the \"Contact/Refer a Claim\" form on the firm website. See the details below.&nbsp;</p><p>{all_fields_table}<br></p>\";s:19:\"email_message_plain\";s:0:\"\";s:9:\"from_name\";s:46:\"{field:name_1534954806801} (via LOMAD Website)\";s:12:\"from_address\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:25:\"hearings@madwcdefense.com\";s:3:\"bcc\";s:0:\"\";s:14:\"drawerDisabled\";s:0:\"\";}}i:21;a:1:{s:8:\"settings\";a:22:{s:5:\"title\";N;s:3:\"key\";N;s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-09-14 09:02:39\";s:5:\"label\";s:15:\"Success Message\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:10:\"conditions\";a:6:{s:9:\"collapsed\";b:0;s:7:\"process\";i:1;s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:2:\"to\";s:16:\"{wp:admin_email}\";s:8:\"reply_to\";s:0:\"\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:19:\"email_message_plain\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:11:\"success_msg\";s:379:\"<p style=\"text-align: center;\">Your message to The Law Offices of Melissa A. Day has been successfully submitted.</p><p style=\"text-align: center;\">A confirmation email was sent to {field:email_1534954365299}. Please check your junk/spam folder for the confirmation.</p><p style=\"text-align: center;\">Thank you for your submission! A member of our team will contact you soon.</p>\";s:14:\"drawerDisabled\";s:0:\"\";}}i:1;a:1:{s:8:\"settings\";a:14:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:7:\"handler\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2018-08-22 10:22:45\";s:5:\"label\";s:23:\"Send Notification Email\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:5:\"order\";s:1:\"0\";s:2:\"to\";s:21:\"mail@madwcdefense.com\";s:14:\"drawerDisabled\";s:0:\"\";s:6:\"parent\";s:1:\"2\";s:9:\"parent_id\";s:1:\"1\";}}}}'),(1155,25,'first_name','Melissa'),(1156,25,'last_name','Day'),(1154,25,'nickname','mday'),(1157,25,'description',''),(1158,25,'rich_editing','true'),(1159,25,'syntax_highlighting','true'),(1160,25,'comment_shortcuts','false'),(1161,25,'admin_color','fresh'),(1162,25,'use_ssl','0'),(1163,25,'show_admin_bar_front','true'),(1164,25,'locale',''),(1165,25,'cuB_capabilities','a:1:{s:17:\"advanced-customer\";b:1;}'),(1166,25,'cuB_user_level','7'),(1167,25,'dismissed_wp_pointers',''),(1168,25,'primary_blog','1502433'),(1169,25,'source_domain','3602675.findlaw5.flsitebuilder.com'),(1170,25,'timeout_stamp','1644356751'),(1171,25,'logout_flag','trid'),(1172,25,'euid','8c0fae7c-68c9-49b9-b6a0-b93b19330e71'),(1173,25,'mo_oauth_client_last_id_token','eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJERTBPVEF3UVVVMk16Z3hPRUpGTkVSRk5qUkRNakkzUVVFek1qZEZOVEJCUkRVMlJrTTRSZyJ9.eyJodHRwczovL3RyLmNvbS9wYXNzd29yZF91cGRhdGVkX2F0IjoiMjAyMi0wMi0wOFQyMDo0Mjo0MS45MTRaIiwiaHR0cHM6Ly90ci5jb20vZXVpZCI6IjhjMGZhZTdjLTY4YzktNDliOS1iNmEwLWI5M2IxOTMzMGU3MSIsImh0dHBzOi8vdHIuY29tL2Fzc2V0SUQiOiJhMjAwMTIyIiwibmlja25hbWUiOiJtZGF5IiwibmFtZSI6Im1kYXlAbWFkd2NkZWZlbnNlLmNvbSIsInBpY3R1cmUiOiJodHRwczovL3MuZ3JhdmF0YXIuY29tL2F2YXRhci9iNGJjODRjMGM3NmI2NmVkMTEzOThjOTM2YzdiODRlZj9zPTQ4MCZyPXBnJmQ9aHR0cHMlM0ElMkYlMkZjZG4uYXV0aDAuY29tJTJGYXZhdGFycyUyRm1kLnBuZyIsInVwZGF0ZWRfYXQiOiIyMDIyLTAyLTA4VDIwOjQzOjE2LjY4M1oiLCJlbWFpbCI6Im1kYXlAbWFkd2NkZWZlbnNlLmNvbSIsImVtYWlsX3ZlcmlmaWVkIjp0cnVlLCJpc3MiOiJodHRwczovL2F1dGgudGhvbXNvbnJldXRlcnMuY29tLyIsInN1YiI6ImF1dGgwfDYxY2RkMzExMzEwNTlhMTAxYTBmNjg3YiIsImF1ZCI6Ill4OHVlcFA1S2xEbGZMZ0FPQ3lTTWJXVXlQR05DcGg0IiwiaWF0IjoxNjQ0MzUyOTk4LCJleHAiOjE2NDQzODg5OTh9.FC29CZO78nCQB3TK_pCFHz3NOuNlyb-_oKftbvCF3gsCDFH1heZGMXs2Zi9CvZmThL0u8GNS8ov0Tb9b8TN8MGgLiSUZjwG-CeATM1L3PETBwqbabGBPT2jkSJpeXiHnCY5wh_29FmNxu_6WelqFn3vd_RIwd_PawdboDNmm6XusP645KwnUyJ6Nta0AM9sfLSxJv-mN_Ta2ulptny3ld4dNqEQkQl0J7asrlo4zNQIJErUYr0LjQq48ti8K6OPp1uJIEr8dFP7Yq5zHvvWYcDAm3yG80cHWt9cY2HECzVyt9RsCZ_mz0StB17TDJrYgxxQbxGYSFBK8uy0e1Bbs-w'),(1177,26,'first_name','Kelsey'),(1178,26,'last_name','Kunz'),(1176,26,'nickname','kkunz'),(1179,26,'description',''),(1180,26,'rich_editing','true'),(1181,26,'syntax_highlighting','true'),(1182,26,'comment_shortcuts','false'),(1183,26,'admin_color','fresh'),(1184,26,'use_ssl','0'),(1185,26,'show_admin_bar_front','true'),(1186,26,'locale',''),(1187,26,'cuB_capabilities','a:2:{s:8:\"customer\";b:1;s:15:\"unfiltered_html\";b:1;}'),(1188,26,'cuB_user_level','1'),(1189,26,'dismissed_wp_pointers',''),(1190,26,'primary_blog','1502433'),(1191,26,'source_domain','3602675.findlaw5.flsitebuilder.com'),(1192,26,'timeout_stamp','1660242969'),(1193,26,'logout_flag','trid'),(1194,26,'euid','1e1d4d32-6bad-4cea-9c1d-0272e46794ad'),(1195,26,'mo_oauth_client_last_id_token',''),(1196,26,'closedpostboxes_page','a:0:{}'),(1197,26,'metaboxhidden_page','a:2:{i:0;s:9:\"authordiv\";i:1;s:7:\"slugdiv\";}'),(1198,26,'meta-box-order_page','a:4:{s:15:\"acf_after_title\";s:23:\"acf-group_page_subtitle\";s:4:\"side\";s:98:\"pageparentdiv,page-goals,page-language,page-type,sub-nav,practice-areas,sub-page-type,postimagediv\";s:6:\"normal\";s:67:\"et_pb_layout,submitdiv,authordiv,postexcerpt,slugdiv,disovery_notes\";s:8:\"advanced\";s:44:\"et_monarch_settings,et_monarch_sharing_stats\";}'),(1199,26,'screen_layout_page','1'),(1205,26,'cuB_media_library_mode','grid'),(1206,26,'cuB_user-settings','imgsize=&libraryContent=browse&advImgDetails=show&editor=tinymce&editor_expand=on'),(1207,26,'cuB_user-settings-time','1657652586'),(1243,28,'first_name','Melanie'),(1242,28,'nickname','mdaly'),(1244,28,'last_name','Daly'),(1245,28,'description',''),(1246,28,'rich_editing','true'),(1247,28,'syntax_highlighting','true'),(1248,28,'comment_shortcuts','false'),(1249,28,'admin_color','fresh'),(1250,28,'use_ssl','0'),(1251,28,'show_admin_bar_front','true'),(1252,28,'locale',''),(1253,28,'cuB_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1254,28,'cuB_user_level','1'),(1255,28,'dismissed_wp_pointers',''),(1256,28,'primary_blog','1502433'),(1257,28,'source_domain','3602675.findlaw5.flsitebuilder.com'),(1261,1,'yim',''),(1262,1,'jabber',''),(1260,1,'aim',''),(1263,1,'primary_blog','1502433'),(1264,1,'source_domain','3602675.findlaw5.flsitebuilder.com'),(1265,1,'timeout_stamp','1660946268'),(1266,1,'logout_flag','trid'),(1267,1,'euid','7e5ba12e-4d37-4bcb-ba01-c4d53a7331b2'),(1268,1,'mo_oauth_client_last_id_token','eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJERTBPVEF3UVVVMk16Z3hPRUpGTkVSRk5qUkRNakkzUVVFek1qZEZOVEJCUkRVMlJrTTRSZyJ9.eyJodHRwczovL3RyLmNvbS9wYXNzd29yZF91cGRhdGVkX2F0IjoxNjYwMjM5NDU2LCJodHRwczovL3RyLmNvbS9ldWlkIjoiN2U1YmExMmUtNGQzNy00YmNiLWJhMDEtYzRkNTNhNzMzMWIyIiwiaHR0cHM6Ly90ci5jb20vYXNzZXRJRCI6ImEyMDAxMjIiLCJuaWNrbmFtZSI6Im1kb2xkYW4iLCJuYW1lIjoibWRvbGRhbkBtYWR3Y2RlZmVuc2UuY29tIiwicGljdHVyZSI6Imh0dHBzOi8vcy5ncmF2YXRhci5jb20vYXZhdGFyLzE1YTNmMWJhN2Q1Y2JiZmUxMTg1YzE2N2M0ODZlZjlmP3M9NDgwJnI9cGcmZD1odHRwcyUzQSUyRiUyRmNkbi5hdXRoMC5jb20lMkZhdmF0YXJzJTJGbWQucG5nIiwidXBkYXRlZF9hdCI6MTY2MDk0MjE4MSwiZW1haWwiOiJtZG9sZGFuQG1hZHdjZGVmZW5zZS5jb20iLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiaXNzIjoiaHR0cHM6Ly9hdXRoLnRob21zb25yZXV0ZXJzLmNvbS8iLCJzdWIiOiJhdXRoMHw2MmU5N2ExMjdhZGI2MDFjNTVhNDA3NTkiLCJhdWQiOiJZeDh1ZXBQNUtsRGxmTGdBT0N5U01iV1V5UEdOQ3BoNCIsImlhdCI6MTY2MDk0MjE4MywiZXhwIjoxNjYwOTc4MTgzfQ.CMRxSIuPPfgGDurlSlAI3MxkmsUXXayQM-trv8I6fMauHDtA4MGG1u13TcM0GLRJKuL9Uppa4_BGKIyxWEypSUxgDdYMh-X2CCIhFYmm16bNaY7Mn35Y4eXtVrVDJ1VVXAdH1ypjIFh8LD62wu1DBSE1fyVlHEIipmUk6Rqtrf9Iw1AaliOBzr-fdvzklDzERPGtJfo13c12hmNpazrYyUGHbgoJ2TjJPpatZnDxtLccfTk_OATsnnDf27kfKE9tUx_iPbDeigyaGLw6X9amJ6Yng0_wgu3EU39GKaPaIivwJJGwgvK9qQJieK5Oph0949CzkJ1VMp1c4U1DB0Mg5Q'),(1269,1,'nav_menu_recently_edited','12'),(1270,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:15:\"title-attribute\";i:2;s:11:\"css-classes\";i:3;s:3:\"xfn\";i:4;s:11:\"description\";}'),(1271,1,'metaboxhidden_nav-menus','a:6:{i:0;s:20:\"add-post-type-people\";i:1;s:26:\"add-post-type-landing-page\";i:2;s:15:\"add-post_format\";i:3;s:20:\"add-project_category\";i:4;s:15:\"add-project_tag\";i:5;s:11:\"add-posttag\";}'),(1272,1,'closedpostboxes_ninja-forms_page_nf-styling','a:0:{}'),(1273,1,'metaboxhidden_ninja-forms_page_nf-styling','a:0:{}'),(1274,1,'closedpostboxes_nf_import_export_forms','a:0:{}'),(1275,1,'metaboxhidden_nf_import_export_forms','a:0:{}'),(1276,1,'wp_1502433_nf_form_preview_3','a:4:{s:2:\"id\";i:3;s:8:\"settings\";a:74:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";b:1;s:5:\"title\";s:19:\"Email This Attorney\";s:10:\"created_at\";s:19:\"2019-03-08 18:06:57\";s:10:\"form_title\";s:19:\"Email This Attorney\";s:17:\"default_label_pos\";s:5:\"above\";s:10:\"show_title\";s:1:\"0\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:9:\"logged_in\";s:1:\"0\";s:13:\"wrapper_class\";s:16:\"fl-attorney-form\";s:13:\"element_class\";s:0:\"\";s:3:\"key\";s:0:\"\";s:10:\"add_submit\";s:1:\"0\";s:8:\"currency\";s:0:\"\";s:18:\"unique_field_error\";s:50:\"A form with this value has already been submitted.\";s:17:\"not_logged_in_msg\";s:0:\"\";s:13:\"sub_limit_msg\";s:42:\"The form has reached its submission limit.\";s:12:\"calculations\";a:0:{}s:34:\"container_styles_show_advanced_css\";s:1:\"0\";s:30:\"title_styles_show_advanced_css\";s:1:\"0\";s:28:\"row_styles_show_advanced_css\";s:1:\"0\";s:32:\"row-odd_styles_show_advanced_css\";s:1:\"0\";s:36:\"success-msg_styles_show_advanced_css\";s:1:\"0\";s:34:\"error_msg_styles_show_advanced_css\";s:1:\"0\";s:15:\"formContentData\";a:7:{i:0;a:2:{s:5:\"order\";i:1;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"name_1534955086592\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";i:2;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"email_1534954990561\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";i:3;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:19:\"phone_1534954991568\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";i:4;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:21:\"message_1534955077918\";}s:5:\"width\";s:3:\"100\";}}}i:4;a:2:{s:5:\"order\";i:6;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"html_1534955009205\";}s:5:\"width\";s:3:\"100\";}}}i:5;a:2:{s:5:\"order\";i:7;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:40:\"i_have_read_the_disclaimer_1534955054736\";}s:5:\"width\";s:3:\"100\";}}}i:6;a:2:{s:5:\"order\";i:8;s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";i:0;s:6:\"fields\";a:1:{i:0;s:18:\"send_1562680748375\";}s:5:\"width\";s:3:\"100\";}}}}s:14:\"drawerDisabled\";b:0;s:19:\"changeEmailErrorMsg\";s:0:\"\";s:18:\"changeDateErrorMsg\";s:0:\"\";s:20:\"confirmFieldErrorMsg\";s:0:\"\";s:22:\"fieldNumberNumMinError\";s:0:\"\";s:22:\"fieldNumberNumMaxError\";s:0:\"\";s:22:\"fieldNumberIncrementBy\";s:0:\"\";s:23:\"formErrorsCorrectErrors\";s:0:\"\";s:21:\"validateRequiredField\";s:0:\"\";s:21:\"honeypotHoneypotError\";s:0:\"\";s:20:\"fieldsMarkedRequired\";s:0:\"\";s:23:\"container_styles_border\";s:0:\"\";s:23:\"container_styles_height\";s:0:\"\";s:23:\"container_styles_margin\";s:0:\"\";s:24:\"container_styles_padding\";s:0:\"\";s:22:\"container_styles_float\";s:0:\"\";s:19:\"title_styles_border\";s:0:\"\";s:19:\"title_styles_height\";s:0:\"\";s:18:\"title_styles_width\";s:0:\"\";s:22:\"title_styles_font-size\";s:0:\"\";s:19:\"title_styles_margin\";s:0:\"\";s:20:\"title_styles_padding\";s:0:\"\";s:18:\"title_styles_float\";s:0:\"\";s:17:\"row_styles_border\";s:0:\"\";s:16:\"row_styles_width\";s:0:\"\";s:20:\"row_styles_font-size\";s:0:\"\";s:17:\"row_styles_margin\";s:0:\"\";s:18:\"row_styles_padding\";s:0:\"\";s:21:\"row-odd_styles_border\";s:0:\"\";s:21:\"row-odd_styles_height\";s:0:\"\";s:20:\"row-odd_styles_width\";s:0:\"\";s:24:\"row-odd_styles_font-size\";s:0:\"\";s:21:\"row-odd_styles_margin\";s:0:\"\";s:22:\"row-odd_styles_padding\";s:0:\"\";s:25:\"success-msg_styles_border\";s:0:\"\";s:25:\"success-msg_styles_height\";s:0:\"\";s:24:\"success-msg_styles_width\";s:0:\"\";s:28:\"success-msg_styles_font-size\";s:0:\"\";s:25:\"success-msg_styles_margin\";s:0:\"\";s:26:\"success-msg_styles_padding\";s:0:\"\";s:23:\"error_msg_styles_border\";s:0:\"\";s:22:\"error_msg_styles_width\";s:0:\"\";s:26:\"error_msg_styles_font-size\";s:0:\"\";s:23:\"error_msg_styles_margin\";s:0:\"\";s:24:\"error_msg_styles_padding\";s:0:\"\";s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";s:20:\"repeatable_fieldsets\";s:0:\"\";}s:6:\"fields\";a:7:{i:21;a:1:{s:8:\"settings\";a:26:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"1\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:9:\"firstname\";s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:18:\"name_1534955086592\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:11:\"contactName\";s:9:\"help_text\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"fname\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3242\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:4:\"Name\";s:9:\"field_key\";s:18:\"name_1534955086592\";s:5:\"value\";s:0:\"\";}}i:22;a:1:{s:8:\"settings\";a:26:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"2\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:5:\"email\";s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:19:\"email_1534954990561\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:16:\"emailFromAddress\";s:9:\"help_text\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"email\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3246\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:5:\"Email\";s:9:\"field_key\";s:19:\"email_1534954990561\";s:5:\"value\";s:0:\"\";}}i:23;a:1:{s:8:\"settings\";a:32:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"3\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:5:\"phone\";s:5:\"label\";s:5:\"Phone\";s:3:\"key\";s:19:\"phone_1534954991568\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:12:\"contactPhone\";s:9:\"help_text\";s:0:\"\";s:4:\"mask\";s:14:\"(999) 999-9999\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"phone\";s:23:\"personally_identifiable\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3249\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:5:\"Phone\";s:9:\"field_key\";s:19:\"phone_1534954991568\";s:5:\"value\";s:0:\"\";}}i:24;a:1:{s:8:\"settings\";a:31:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"4\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:8:\"textarea\";s:5:\"label\";s:7:\"Message\";s:3:\"key\";s:21:\"message_1534955077918\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:0:\"\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:11:\"formComment\";s:9:\"help_text\";s:0:\"\";s:12:\"textarea_rte\";s:0:\"\";s:18:\"disable_rte_mobile\";s:0:\"\";s:14:\"textarea_media\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3252\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:7:\"Message\";s:9:\"field_key\";s:21:\"message_1534955077918\";s:5:\"value\";s:0:\"\";}}i:25;a:1:{s:8:\"settings\";a:18:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"6\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:0:\"\";s:7:\"default\";s:948:\"<div class=\"form-links\">	<a href=\"/disclaimer/\" id=\"form-disclaimer-trigger\" title=\"Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.\">Disclaimer</a> | <a href=\"/privacy/\" target=\"_blank\">Privacy Policy</a></div><div id=\"fl-disclaimer\" class=\"fl-disclaimer\">	<div id=\"fl-disclaimer__inner\" class=\"fl-disclaimer__inner\">		<span class=\"fl-disclaimer__icon dashicons-info\" aria-hidden=\"true\"></span> Disclaimer: The use of the internet or this form for communication with the firm or any individual member of the firm does not establish an attorney-client relationship. Confidential or time-sensitive information should not be sent through this form.		<span id=\"fl-disclaimer__close\" class=\"fl-disclaimer__close dashicons-no-alt\"></span>	</div></div>\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3255\";s:3:\"key\";s:18:\"html_1534955009205\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:0:\"\";s:9:\"field_key\";s:18:\"html_1534955009205\";}}i:26;a:1:{s:8:\"settings\";a:27:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"7\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:8:\"checkbox\";s:5:\"label\";s:26:\"I Have Read The Disclaimer\";s:3:\"key\";s:40:\"i_have_read_the_disclaimer_1534955054736\";s:9:\"label_pos\";s:5:\"right\";s:8:\"required\";s:1:\"1\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"manual_key\";s:0:\"\";s:11:\"admin_label\";s:14:\"readDisclaimer\";s:9:\"help_text\";s:0:\"\";s:13:\"default_value\";s:9:\"unchecked\";s:13:\"checked_value\";s:7:\"Checked\";s:15:\"unchecked_value\";s:9:\"Unchecked\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3258\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:26:\"I Have Read The Disclaimer\";s:9:\"field_key\";s:40:\"i_have_read_the_disclaimer_1534955054736\";s:7:\"default\";s:9:\"unchecked\";s:5:\"value\";s:9:\"unchecked\";}}i:27;a:1:{s:8:\"settings\";a:18:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"8\";s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:6:\"submit\";s:5:\"label\";s:4:\"Send\";s:16:\"processing_label\";s:10:\"Processing\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:3:\"key\";s:18:\"send_1562680748375\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:45:\"submit_element_hover_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3261\";s:14:\"drawerDisabled\";s:0:\"\";s:11:\"field_label\";s:4:\"Send\";s:9:\"field_key\";s:18:\"send_1562680748375\";}}}s:7:\"actions\";a:1:{i:5;a:1:{s:8:\"settings\";a:14:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:7:\"handler\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2019-03-08 18:06:57\";s:5:\"label\";s:23:\"Send Notification Email\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"0\";s:2:\"to\";s:21:\"mail@madwcdefense.com\";s:14:\"drawerDisabled\";s:0:\"\";s:6:\"parent\";s:1:\"2\";s:9:\"parent_id\";s:1:\"3\";}}}}'),(1283,1,'cuB_user-settings','imgsize=&libraryContent=browse&editor=tinymce&hidetb=1'),(1284,1,'cuB_user-settings-time','1664206328'),(1285,1,'cuB_dashboard_quick_press_last_post_id','51466'),(1286,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"71.186.231.0\";}'),(1287,1,'_njt_fbv_default_folder','-2');
/*!40000 ALTER TABLE `cuB_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cuB_users`
--

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

--
-- Dumping data for table `cuB_users`
--

LOCK TABLES `cuB_users` WRITE;
/*!40000 ALTER TABLE `cuB_users` DISABLE KEYS */;
INSERT INTO `cuB_users` VALUES (1,'getmad.today','$P$BMdC3glHzQaXVHgvGoYT/tzEX7jsIz.','mdoldan','mdoldan@madwcdefense.com','','2022-08-02 19:25:04','',0,'Maxwell Doldan'),(25,'mday','$P$B0mgrIYGphhGwx4y407e4TkzLu1r201','mday','mday@madwcdefense.com','','2021-12-30 15:41:03','1660162535:$P$Bh1x5lEQT/EzSL5PAl5HRGd26qZRLr/',0,'Melissa Day'),(26,'kkunz','$P$BlWsPn4bvthnUThNyz20.ijw/SOl1n1','kkunz','kkunz@madwcdefense.com','','2021-12-30 15:51:46','1644612009:$P$BZqfphxYKTRX3A9lmNs7ZNcHV/6IMk/',0,'Kelsey Kunz'),(28,'mdaly','$P$BgFlqmerYimhKNmEgJTM6OeAMd9sI8/','mdaly','mdaly@madwcdefense.com','','2022-02-04 21:43:25','1644011006:$P$BxfpWx1cfdDGHLeOOYif4hzCd2uXH8.',0,'Melanie Daly');
/*!40000 ALTER TABLE `cuB_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2025-07-12 13:25:35
